* {
    font-family: 'Quicksand', sans-serif;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.ui-datepicker-calendar {
    display: none;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

/* Color Radio Buttons */
[type="radio"].with-gap:checked+span:after {
    background-color: #6626a6 !important;
}
[type="radio"].with-gap:checked+span:before,
[type="radio"].with-gap:checked+span:after {
    border: 2px solid #6626a6 !important;
}

/* Color Checkbox Buttons */
.checkbox-indigo[type="checkbox"]:checked + span:before{
    border: 2px solid transparent;
    border-bottom: 2px solid #6626a6;
    border-right: 2px solid #6626a6;
    background: transparent;
}

/* Color Label & Underline */

.input-field input:focus + label {
    color: purple !important;
}
.row .input-field input:focus {
    border-bottom: 1px solid purple !important;
    box-shadow: 0 1px 0 0 purple !important
}

/* italic Label */ 
::-webkit-input-placeholder {
    font-style: italic;
 }
 :-moz-placeholder {
    font-style: italic;  
 }
 ::-moz-placeholder {
    font-style: italic;  
 }
 :-ms-input-placeholder {  
    font-style: italic; 
 }

 /* container width */
 .container {
    margin: 0 auto;
    max-width: 1280px;
    width: 90%;
  }
  @media only screen and (min-width: 601px) {
    .container {
      width: 90%;
    }
  }
  @media only screen and (min-width: 993px) {
    .container {
      width: 90%;
    }
  }