input {
    font-family: 'Nunito', sans-serif;
}

.form label {
    display: block;
    margin: 10px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    color: #000;
}

.form input[type=text], 
.form input[type=tel], 
.form input[type=email], 
.form select,
.form textarea {
    -webkit-appearance:none;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    border: 1px solid #000;
    border-radius: 3px;
    outline: 0;
    padding: 10px;
    display: block;
    width: 100%;
    resize: none;
    box-sizing: border-box;
    margin-bottom: 10px;
    background: #fff;
}


.form.filters.margin-bottom {
    margin-bottom: 30px;
}

.form.filters input[type=text], 
.form.filters select {
    font-size: 15px;
    border: 0px;
    margin-bottom: 0px;
    border-radius: 3px;
}




select[multiple] option:checked{
  background: #F3CE3F -webkit-linear-gradient(bottom, #F3CE3F 0%, #F3CE3F 100%);
}



.form.filters label {
    position: relative;
    font-weight: 700;
    text-transform: none;
    font-size: 18px;
    color: #372810;
}


.form .label {
    position: relative;
}

.form .label input {
    padding-left: 27px;
}

.form .label .before {
    position: absolute;
    color: #9b9b9b;
    font-size: 12px;
    left: 7px;
    top: 10px;
}

.form .label .after {
    position: absolute;
    color: #9b9b9b;
    font-size: 12px;
    right: 7px;
    top: 10px;
}



.form optgroup.group {
    font-size: 20px;
    color: #F16529;
}

.form optgroup.group .category {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}


.form textarea {
    height: 155px;
}


.form .form-inline {
    display: flex;
    align-items: center;
}

.form .form-inline input {
    margin: 0 10px;
}

.control-group {
    display: inline-block;
    vertical-align: top;
    background: #fff;
    text-align: left;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    padding: 30px;
    width: 200px;
    height: 210px;
    margin: 10px;
}
.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
}



.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    border-radius: 5px;
    width: 20px;
    background: #fff;
}
.control--radio .control__indicator {
    border-radius: 50%;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
    background: #fff;
}
.control input:checked ~ .control__indicator {
    background: #0bdee7;
}

/*
.control input:checked ~ .control__indicator:before {
position: absolute;
    top: -4px;
    left: 7px;
    content: '•';
    color: #fff;
}*/



.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
    background: #56ab2f;
}
.control input:disabled ~ .control__indicator {
    background: #e1e4e9;
    opacity: 0.6;
    pointer-events: none;
}
.control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control__indicator:after {
    display: block;
}
.control--checkbox .control__indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0; 
    transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #fff;
}
.control--radio .control__indicator:after {
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #fff;
}
.control--radio input:disabled ~ .control__indicator:after {
    background: #7b7b7b;
}


.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 25px;
    border: 1px dashed #000;
    transition: 0.2s;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.file-drop-area.is-active {
    background-color: rgba(0, 0, 0, 0.05);
}

.fake-btn {
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.file-msg {
    font-size: small;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}
.file-input:focus {
    outline: none;
}





.radio {
  margin: 16px 0;
  display: block;
  cursor: pointer;
}
.radio input {
  display: none;
}
.radio input + span {
  line-height: 22px;
  height: 22px;
  padding-left: 22px;
      display: inline-block;
  position: relative;
  text-transform: none;
    font-weight: 500;
}
.radio input + span:not(:empty) {
  padding-left: 30px;
}
.radio input + span:before, .radio input + span:after {
  content: '';
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 50%;
  left: 0;
  top: 0;
  position: absolute;
}
.radio input + span:before {
  background: #D1D7E3;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2);
  transition: background 0.2s ease, -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2);
  transition: background 0.2s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2);
  transition: background 0.2s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2), -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2);
}
.radio input + span:after {
  background: #fff;
  -webkit-transform: scale(0.78);
          transform: scale(0.78);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
  transition: -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4), -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
}
.radio input:checked + span:before {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  background: #56ab2f;
}
.radio input:checked + span:after {
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}
.radio:hover input + span:before {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.radio:hover input + span:after {
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
}
.radio:hover input:checked + span:after {
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
}

