/* ---------------- create account ------------------ */
.account-form,.account-form *{
    box-sizing: border-box;
}
.account-form{
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between; */
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}
.account-form .form-box label{
    color: #fff;
    display: block;
    margin-bottom: 2px;
    font-size: 0.8em;
}
.account-form .form-box .note-text{
    color: #fff;
    display: block;
    margin-bottom: 2px;
    font-size: 0.7em;
    font-style: italic;
    margin-top: 2px;
}
.account-form .form-box label.large-text{
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 10px;
}
.account-form .form-box{
    width: 100%;
    margin: 20px 0;
    color: #fff;
}
.account-form .form-box .error-msg{
    color: #fff;
  margin-top: 5px;
  font-size: 0.85em;
  font-weight: bold;
  background-color: #590808;
  padding: 5px 10px;
  border-radius: 5px;
}
.account-form .form-box.full-width{
    width: 100%;
}
.account-form input[type=text],
.account-form input[type=password],
.account-form input[type=email],
.account-form select,
.account-form textarea{
    border: 1px solid #fff;
    padding:  12px 20px;
    outline : none;
    border: none;
    border-radius:6px;
    color: #000;
    background-color: #fff;
    width: 100%;
    font-weight: bold;
}
.account-form input[type=text],
.account-form input[type=email],
.account-form select{
    height: 45px;
}
.account-form textarea{
    height: 150px;
}
.account-form input[type=text]:disabled,
.account-form input[type=password]:disabled,
.account-form input[type=email]:disabled,
.account-form select:disabled,
.account-form textarea:disabled{
    opacity: 0.4;
    cursor: not-allowed;
}
/* .select-input{
    width: 94%;
    margin: 10px 0;
    padding:  12px 20px;
    outline : none;
    border: none;
    border-radius:6px;
    color: rgba(0, 0, 0, 0.718) !important;
    background-color: #ffffff;
} */
/* @media only screen and (min-width: 1400px){
    .select-input{
        width: 90%;
    }
} */
.img-upload-wrapper{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.img-upload{
    display: flex;
    margin: 5px;
    align-items: center;
    width: calc(33% - 10px);
    border-radius: 6px;
    flex-direction: column;
    padding: 10px;
    background: #fff;
}
.img-upload .img-holder{
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-upload .img-holder img{
    line-height: 0;
    max-width: 100%;
    max-height: 150px;
}
.img-upload input{
    display: none;
    opacity: 0;
    width: 0;
    height: 0;
    position: relative;
    z-index: -1;
}
.img-upload a{
    display: block;
    margin-top: 10px;
}
.form-box .btn {
    padding: 8px 15px;
    border: none;
    background: none;
    outline: none;
    background: #c04c95;
    color: #ffffff;
    text-transform: uppercase;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 14%);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s linear;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-weight: bold;
    text-transform: uppercase;
}
.form-box .dob-wrapper{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #fff;
    padding: 5px;
    background: #fff;
    border-radius: 6px;
    color:#65abd5;
}
.form-box .dob-wrapper select{
    width: auto;
    border: 0;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 5px;
    text-align: center;
    height: auto;
}
.form-box .dob-wrapper span{
    margin: 0 10px;
    font-size: 30px;
    font-weight: bold;
}
.form-box .dob-wrapper span.text-holder{
    font-size: 14px;
    font-weight: normal;
    margin-top: 3px;
    line-height: 1em;
}
.range-container{
    position: relative;
    margin-top: 20px;
}
.range-container input{
    width: 100%;
}
.range-container .min-val,
.range-container .max-val{
    position: absolute;
    font-size: 11px;
    color: #fff;
}
.range-container .min-val{
    left: 5px;
    top:-12px;
}
.range-container .max-val{
    right: 5px;
    top:-12px;
}
.range-container .current-val{
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}
.form-box input[type=range]{
    width: 100%;
}
.form-box input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    border-radius: 10px;
    background: #fff;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
    height: 15px;
}
.form-box input[type=range]:hover {
    opacity: 1;
}
.form-box input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background: #c04c95;
    border-color: #fff;
    cursor: pointer;
}

.form-box input[type=range]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #c04c95;
    border-color: #fff;
    cursor: pointer;
}

.account-form .search-box{
    position: relative;
    max-width: 300px;
}
.account-form .search-box svg{
    position: absolute;
    right: 10px;
    top:50%;
    margin-top: -9px;
    width: 18px;
    height: 18px;
    fill: #fff;
}
.account-form .search-box input[type=text]{
    padding-right: 40px;
}

@media only screen and (max-width:600px){
   .img-upload {
        width: calc(50% - 10px);
    }


}
@media only screen and (max-width:450px){
    .form-box .dob-wrapper span {
        margin: 0 0px;
    }
    .form-box .dob-wrapper{
        justify-content: center;
    }
    .form-box .dob-wrapper select {
        padding: 5px;
        width: 60px;
    }
}
