/*---------------------------------------------*/
input {
    outline: none;
    border: none;
    appearance: none;
    -webkit-appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px #f7f7f7 inset !important;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: none;
    -webkit-appearance: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

textarea {
    outline: none;
    border: none;
}

textarea:focus, input:focus {
    border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}


/*---------------------------------------------*/
.container {
    max-width: 1200px;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/

.bg0 {background-color: #fff;}
.bg1 {background-color: #f7f7f7;}


select {
    appearance: none;
    border: 1px solid #ccc;
    background: transparent;
    font-size: 1.2rem;
    margin-top: .5rem;
    color: #adadad;
    border-radius: 5px;
    padding: .35rem .5rem;
}

select option {
    padding:.35rem .5rem;
    font-size: 1rem;
}

select.done   {
    color:#000!important;
}


/*------------------------------------------------------------------
[  ]*/

.contact100-form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}



/*------------------------------------------------------------------
[  ]*/

em.h {
    margin: .3rem 1rem 0;
    color: #6b6868;
}

.wrap-input100 {
    width: 100%;
    position: relative;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding:.5rem 2rem .5rem  1.5rem;
    margin-top: 1rem;
}

.rs1-wrap-input100 {
    width: 42%;
}

.label-input100 {
    font-size: .9rem;
    color: #393939;
    line-height: 1.5;
    text-transform: uppercase;
    font-weight: 800;
}

.label-input100 span {
    color:#c00;
}

.input100 {
    display: block;
    width: 100%;
    background-color: transparent!important;
    font-size: 1.4rem;
    color: #555;
    line-height: 1.2;
}


/*---------------------------------------------*/
input.input100 {
    height: 40px;
}


textarea.input100 {
    min-height: 120px;
    padding-top: 9px;
    padding-bottom: 13px;
    font-family: lato;
}


.input100:focus + .focus-input100::before {
    width: 100%;
}

.has-val.input100 + .focus-input100::before {
    width: 100%;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    width: 100%;
}

.contact100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    background-color: #333333;
    border-radius: 25px;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.contact100-form-btn i {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.contact100-form-btn:hover {
    background-color: #00ad5f;
}

.contact100-form-btn:hover i {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 768px) {
    .rs1-wrap-input100 {
        width: 100%;
    }

    .wrap-input100 {
        margin-top: 1rem;
    }

}

@media (max-width: 576px) {
    .wrap-contact100 {
        padding: 62px 15px 90px 15px;
    }

    .wrap-input100 {
        padding: .5rem .6rem .3rem;
    }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    display: block;
    align-items: center;
    position: absolute;
    min-height: 40px;
    background-color: #f7f7f7;
    top: 1.6rem;
    left: 0px;
    padding: 0 90px 0 1.5rem;
    pointer-events: none;
    font-size: 1.3rem;
    color: #fa4251;
    line-height: 2.2;
    font-weight: 800;
}

.btn-hide-validate {
    font-size: 2rem;
    color: #fa4251;
    cursor: pointer;
    display: block;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 35px;
    right: 12px;
}

.rs1-alert-validate.alert-validate::before {
    background-color: #fff;
}

.true-validate::after {
    content: "âœ“";
    font-size: 2rem;
    color: #00ad5f;
    display: block;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 35px;
    right: 10px;
}


.button {
    padding: .5rem;
    background: #ccc;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top:1.5rem;
    display: block;
    max-width: 150px;
    text-align: center;
    font-weight: 700;
}
#photos {
    display: none;
}
#gallery {
    margin-top:1rem;
}
#gallery img {
    width: 75px;
    margin-bottom: 1rem;
    margin-right: 1rem;
    vertical-align: middle;
}
#progress-bar {
    display: none;
}
/*---------------------------------------------*/
@media (max-width: 576px) {
    .alert-validate::before {
        padding: 0 10px 0 10px;
    }

    .true-validate::after,
    .btn-hide-validate {
        right: 0px;
        width: 30px;
    }
}


/*==================================================================
[ Restyle Select2 ]*/

.select2-container {
    display: block;
    max-width: 100% !important;
    width: auto !important;
}

.select2-container .select2-selection--single {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    height: 40px;
    outline: none;
    position: relative;
}

/*------------------------------------------------------------------
[ in select ]*/
.select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 18px;
    color: #555555;
    line-height: 1.2;
    padding-left: 0px ;
    background-color: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.select2-selection__arrow b {
    display: none;
}

.select2-selection__arrow::before {
    content: '\f312';
    font-family: Material-Design-Iconic-Font;
    font-size: 18px;
    color: #555555;
}


/*------------------------------------------------------------------
[ Dropdown option ]*/
.select2-container--open .select2-dropdown {
    z-index: 1251;
    width: calc(100% + 2px);
    border: 0px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    left: -24px;

    box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .select2-container--open .select2-dropdown {
        left: -12px;
    }
}

.select2-dropdown--above {top: -38px;}
.select2-dropdown--below {top: 10px;}

.select2-container .select2-results__option[aria-selected] {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 24px;
}

@media (max-width: 576px) {
    .select2-container .select2-results__option[aria-selected] {
        padding-left: 12px;
    }
}

.select2-container .select2-results__option[aria-selected="true"] {
    background: #00ad5f;
    color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
    background: #00ad5f;
    color: white;
}

.select2-results__options {
    font-size: 14px;
    color: #555555;
    line-height: 1.2;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
    font-family: Poppins-Regular;
    font-size: 15px;
    color: #333333;
    line-height: 1.2;
}

.wrap-input100 .dropDownSelect2 .select2-container--open {
    width: 100% !important;
}

.wrap-input100 .dropDownSelect2 .select2-dropdown {
    width: calc(100% + 2px) !important;
}

/*==================================================================
[ Restyle Radio ]*/
.wrap-contact100-form-radio {
    width: 100%;
    padding: 15px 25px 0 25px;
}

.contact100-form-radio {
    padding-bottom: 5px;
}

.input-radio100 {
    display: none;
}

.label-radio100 {
    display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 18px;
    color: #555555;
    line-height: 1.2;
}

.label-radio100::before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #cdcdcd;
    background: #fff;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.label-radio100::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 6px solid transparent;
    background: #00ad5f;
    -moz-background-clip: padding;
    -webkit-background-clip: padding;
    background-clip: padding-box;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;

}

.input-radio100:checked + .label-radio100::after {
    display: block;
}





@media (max-width: 576px) {

    .wrap-contact100-form-radio {
        padding: 15px 0px 0 0px;
    }
}


/** ADDED BY TOM C **/
input[type=checkbox]
{
    -webkit-appearance:checkbox;
    margin-right: 15px;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}
.dropzone {
    background: #f7f7f7;
    min-height: auto;
    padding-bottom: 24px;
}

.dropzone, .dropzone * {
    box-sizing: inherit;
}

.dropzone > .dz-message {
    display: none;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: green;
}

.dz-error-mark svg {
    background: red;
    border-radius: 30px;
    color: white;
}

.dz-success-mark svg {
    background: green;
    border-radius: 30px;
    color: white;
}

.dropzone .dz-preview .dz-error-message {
    border: 1px #ccc solid;
    color: red;
    margin-top: 20px;
    background: #fff;
}

.alert-validate [type=checkbox] {
    margin-bottom: 45px;
}

.p0 {
    padding: 0;
}
/** END OF ADDED BY TOM C **/