/*01. custom radio ============================================*/
.box-radio-custom .box-radio-ct {
    display: block;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.box-radio-custom .box-radio-ct input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.box-checkmark {
    position: relative;
}
.box-radio-custom .checkmark {
    position: absolute;
    top: -20px;
    left: -20px;
    height: 14px;
    width: 14px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #000;
}
.box-radio-custom .box-radio-ct:hover input ~ .box-checkmark .checkmark {
    background-color: #ccc;
}
.box-radio-custom .box-radio-ct input:checked ~ .box-checkmark .checkmark {
    background-color: #2196F3;
}
.box-radio-custom .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.box-radio-custom .box-radio-ct input:checked ~ .box-checkmark .checkmark:after {
    display: block;
}
.box-radio-custom .box-radio-ct .checkmark:after {
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    transform: translate(-50%, -50%);
}
/*end 01. custom radio ========================================*/
.wrap-form-done .wpcf7-form {
    padding-top: 0px;
}
.wrap-form-done ::placeholder {
  color: #50ACF4;
  opacity: .5; 
}
.wrap-form-done .icon-close {
  font-size: 16px;
  font-weight: bold;
}
.wrap-form-done .modal-dialog {
    max-width: 800px;
    width: 100%;
    right: unset;
    left: 50%;
    transform: translateX(-50%) !important;
    margin: 0;
    top: 50px;
}
.wrap-form-done .modal-content{
    padding: 40px 20px 80px 20px;
    border-radius: 30px;
    border: unset;
}
.wrap-form-done button.close{
    border-radius: unset;
    background-color: #50ACF4;
    color: #000;
    width: 80px;
    border-radius: 15px;
    right: 20px;
    top: 30px;
    z-index: 999;
}
.wrap-form-done .modal {
   /* overflow-x: unset;
    overflow: unset;*/
    top: 0;
}
.wrap-form-done .tit-close{
    font-weight: bold;
    font-size: 12px;
    margin-left: 5px;
}
.wrap-form-done .box-tit-close{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.wrap-form-done .tit-info-doneform {
    font-size: 29px;
    font-weight: bold;
     text-align: center;
}
.wrap-form-done .tit-info-doneform .sm{
    display: block;
    font-size: 24px;

}
.wrap-form-done .desc{
    margin: 25px 0 40px;
}
.wrap-form-done .info-contact {
    display: flex;
    justify-content: flex-end;
    margin: 40px 0;
}
.box-form-done .form-control {
    border: 2px solid #50ACF4;
    border-radius: unset !important;
    color: #000;
}
.box-form-done .box-form {
    display: flex;
    margin-bottom: 10px;
}
.box-form-done .mb-form{
    margin-bottom: 35px ;
}
.box-form-done .tit-input {
    width: 220px;
    
}
.box-form-done .tit-input *{
    font-weight: bold;
}
.box-form-done .box-input {
    width: calc(100% - 220px);
}
.box-form-done .desc{
    margin: 10px 0 20px 0;
}
.btn-done-form {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #50ACF4;
    border: unset;
    cursor: pointer;
    padding: 30px 34px;
    border-radius: 45px;
    border: 1px solid #50ACF4;
}
.btn-done-form:hover{
    color: #50ACF4;
    background: #fff;
    border: 1px solid #50ACF4;
}
.btn-done-submit{
    margin-top: 40px;
}

.confirm .btn-done-submit {
    display: flex;
    justify-content: center;
}
.wrap-form-done .box-rd-form{
    justify-content: center;
    position: relative;
}
#select_date5-error,
#select_date6-error,
#select_date7-error {
    position: absolute;
    bottom: -15px;
}


/*mobile*/


@media screen and (max-width: 767px) {
    .wrap-form-done button.close{
        top: 15px;
    }
    .btn-done-form {
        font-size: 13px;
        padding: 20px 15px;
    }
    .box-form-done .box-form{
        flex-direction: column;
    }
    .box-form-done .tit-input,
    .box-form-done .box-input{
        width: 100%;
    }
    .box-form-done .tit-input{
        margin-bottom: 2px;
    }
}

@media screen and (max-width: 830px) {
  .wrap-form-done .modal-dialog{
    max-width: calc(100% - 30px);
  }
}