* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'HelveticaNowText-Medium';
    background-color: #F3F3FE;
}

.logo {
    text-align: center;
    padding-top: 60px;
}

.logo img {
    height: 80px;
}

.form_group {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    margin: 20px auto;
}

.form_title {
    padding: 20px;
    border-bottom: 1px solid #dadada;
}

.form_title h3 {
    margin: 0;
    font-size: 20px;
    font-family: 'HelveticaNowText-Regular';
}

.form_section {
    padding: 20px;
}
.form_box{
    position: relative;
}
.form_box label {
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.star {
    color: red;
}

.input_box {
    width: 100% !important;
    padding: 8px;
    border: 1px solid #d1d1d1;
    outline: none;
    box-shadow: none;
    border-radius: 5px;
}
.input_box::placeholder{
    color: #000;
}
[input-type="text"] {
    width: 100%;
}
[input-type="date"] {
    width: 100%;
}


.bs-searchbox .form-control{
    display: none;
}
.dropdown-toggle::after{
    border-top: .3em solid #000;
}
.form_box {
    margin-bottom: 20px;
}

.select_box {
    width: 100%;
    font-family: 'HelveticaNowText-Medium';
    padding: 12px;

}

.data {
    border: none;
    box-sizing: border-box;
    outline: 0;
    padding: .75rem;
    position: relative;
    width: 100%;
    border: 1px solid #d1d1d1;
    font-family: 'HelveticaNowText-Medium';

}

.data::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    font-family: 'HelveticaNowText-Medium';

}

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
.container{
    margin-bottom: 20px !important;
}


.container input:checked~.checkmark {
    background-color: #e33c29;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked~.checkmark:after {
    display: block;
}

.container .checkmark:after {
    left: 10px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn_section{
    display: flex;
    justify-content: center;
}
.btn_section .submit_btn{
    padding: 10px 50px;
    background-color: #18bd5b;
    border: 0;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
}
.error_msg{
    background-color: #dc2626;
    color: #fff;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 5px;
    font-weight: normal;
    margin: 10px 0;
    display: inline-block;
}
.border_red{
    border: 1px solid #dc2626;
}




.file-input-container {
    position: relative;
    display: block;
}

.custom-file-label {
    background-color: #fbfcff;
    border: 1px solid #d1d1d1;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 120px;
    border-radius: 5px;
}

.custom-file-input {
    display: none;
}

.image-preview {
    position: relative;
    margin-top: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #d1d1d1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}

.file-name {
    font-size: 14px;
    margin-bottom: 0;
}

#previewImage {
    width: 50px;
    display: block;
    margin-right: 10px;
}
.img_description{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.delete_icon{
    width: 20px;
    cursor: pointer;
}
.upload_icon{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.upload_icon img{
    width: 50px;
}
.upload_icon h4{
    font-weight: normal;
    margin-bottom: 5px;
    font-size: 18px;
}
.upload_icon p{
    margin: 0;
    font-size: 14px;
    color: #bbbbbb;
}



/**new**/
.ofi_section{
    padding: 12px 16px;
    background-color: #F8F8F8;
    border: 1px solid #E4E4E4;
    border-radius: 5px;
    margin-bottom: 20px;
}
.ofi_title h3{
    color: #000;
    font-size: 16px;
    margin-bottom: 15px;
}
.ofi_section .input_box{
    background-color: transparent;
    border: 1px solid #E4E4E4;
}
.dropdown-toggle::after{
    border-top: .3em solid transparent;
}
.selectpicker{
    background-color: transparent !important;
}
.btn-light{
    background-color: transparent;
    box-shadow: none !important;
}
.btn-light:hover{
    background-color: transparent;
}
.btn-light:hover:focus{
    outline: none !important;
}
.bootstrap-select .dropdown-toggle:focus, .bootstrap-select>select.mobile-device:focus+.dropdown-toggle{
    outline: none !important;
}
.bootstrap-select .dropdown-menu li a:hover{
    background-color: #3665D0;
    color: #fff;
}
.bs-searchbox{
    display: none;
}

.upload__inputfile {
     width: 0.1px;
     height: 0.1px;
     opacity: 0;
     overflow: hidden;
     position: absolute;
     z-index: -1;
}
.upload__btn {
     display: inline-block;
     color: #fff;
     text-align: center;
     min-width: 150px;
     padding: 8px;
     transition: all 0.3s ease;
     cursor: pointer;
     border: 2px solid;
     background-color: #FF0000;
     border-color:  #FF0000;
     border-radius: 5px;
     line-height: 26px;
     font-size: 16px;
     position: relative;
     margin-bottom: 5px;
}
.upload__btn .star{
    position: absolute;
    top: -40%;
    right: -5%;
}
.upload__btn:hover {
     background-color: unset;
     color: #FF0000;
     transition: all 0.3s ease;
}
.upload__drag-area p{
    margin-bottom: 0;
}
.upload__btn-box {
     margin-bottom: 10px;
     text-align: center;
}
.upload__img-wrap {
     display: flex;
     flex-wrap: wrap;
     margin: 20px 0 0 0;
}
.upload__img-box {
     width: 100px;
     padding: 0 10px;
     margin-bottom: 12px;
}
.upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 0;
    line-height: 22px;
    z-index: 1;
    cursor: pointer;
    transform: translate(30%, -80%);
    text-align: center;
}
.upload__img-close:after {
     content: '\2716';
     font-size: 14px;
     color: white;
}
 .img-bg {
     background-repeat: no-repeat;
     background-position: center;
     background-size: cover;
     position: relative;
     padding-bottom: 100%;
}
.upload__btn p{
    margin: 0;
}

.dropdown-menu{
    height: 400px;
}


.speek_icon{
    border: 0;
    background: transparent;
    cursor: pointer;
}
.speek_icon img{
    width: 25px;
}

.speek_icon {
    background: none;
    border: none;
    cursor: pointer;
}
.red_btn {
    border: none;
    padding: 0;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    font-size: 1em;
    color: #fff;
    padding: 0;
    margin: 0;
    background: red;
    position: relative;
    z-index: 999;
    display: none;
    line-height: 30px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    position: relative;
}

.pulse-ring {
    content: '';
    width: 30px;
    height: 30px;
    background: red;
    border: 5px solid red;
    border-radius: 50%;
    position: absolute;
   
    animation: pulsate infinite 1.5s;
}
.pulse-ring.delay{
    animation-delay: 1s;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1, 1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.3, 1.3);
        opacity: 0;
    }
}
.reco_btn{
    position: absolute;
    right: 1%;
    top: 0;
    margin-top: 38px;
}
.audio{
    opacity: 0;
}
.reco_btn a:hover{
    color: #fff;
}
.upload__drag-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.upload__drag-area.dragover {
    border-color: #333;
}
.whisper_response_display_area{
    padding: 8px 50px 8px 8px;
}
.whisper_response_display_area_two{
    padding: 8px 50px 8px 8px;
}



@media (max-width: 1199.98px){
    .logo {
        padding-top: 30px;
    }
    .logo img {
        height: 60px;
    }
}
@media (max-width: 991.98px){
    .logo {
        padding-top: 20px;
    }
    .logo img {
        height: 50px;
    }
}
@media (max-width: 575.98px){
    .form_group {
        max-width: 500px;
    }
}
@media (max-width: 425.98px){
    .form_group {
        max-width: 400px;
    }
}

