.ek_form_module{
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.16);
    padding: 20px;
}

.ek_question{
    background: #fafafd;
    margin: 25px 0;
    border-radius: 10px;
    padding: 12px;
}
.ek_question label{
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.ek_form_module .ek_question input{
    display: block;
    width: 100%;
    padding: 10px;
}


.ek_form_module .h2{
    font-size: 35px;
    font-family: "Work Sans", sans-serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

#ek-custom-form .ek_question:last-child{
    border-bottom: none;
}

.ek_form_module .btn-primary{
    background: #2e278e;
    border-radius: 30px;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    color: #fff;
    padding: 6px 25px;
    filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.16));
    transition-duration: 0.2s;
    border-color: #2e278e;
}

.question-item{
    display: flex;
    justify-content: space-between;

}
.question-item p{
    font-weight: bold;
}
.ek_form_module{
    padding-bottom: 100px;
}

.ek_form_module .sticky-support-btn {
    position: fixed;
    bottom: 20px;
    right: 50%;
    background: linear-gradient(to right, #58b5d8 0%, #2e278e 50.74%, #45177b 100%);
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s
    ease;
    z-index: 9999;
    cursor: pointer;
    display: none;
    transform: translateX(50%);
}


.ek_section legend{
    background: linear-gradient(to right, #58b5d8 0%, #2e278e 50.74%, #45177b 100%);
    padding: 10px 20px;
    border-radius: 30px;
    font-family: "Work Sans", sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #fff;
    margin-top: 60px;
    margin-bottom: 20px;
    padding-left: 60px;
    position: relative;
}
.ek_section h3{
    font-family: "Work Sans", sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #000;
}


.ek_section legend:before {
    content: "";
    width: 100px;
    height: 75px;
    background-image: url(img/tt2.png);
    display: inline-block;
    background-size: contain;
    position: absolute;
    left: 0;
    bottom: -5px;
    background-repeat: no-repeat;
    transform: translateX(-50%);
}

.ek_form_module .ek_section input{
    border-radius: 8px;
    background: #fff;
    border: 1px solid #2e278e;
    padding: 8px;
}
/* Modal */
.support-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.support-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.close-btn {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-btn:hover {
    color: red;
}

#ek-custom-form-new .ek_section{
    background: #fff;
}

.ek_question_radio{
    display: flex;
    gap: 30px;
}

.ek_question .ek_question_radio label {
    display: flex;
    width: auto;
}

.ek_question .ek_question_radio input {
    display: flex;
    width: auto;
    margin-right: 10px;
}

.ek_form_module .ek_section input {
    border-radius: 8px;
    background: #fff;
    border: 1px solid #2e278e;
    padding: 8px;
}

.ek_question .label_checkbox, .scenarios-choices label,.ek_question .label_true_false{
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #2e278e;
    padding: 12px 15px;
    cursor:pointer;
}

.ek_question .label_true_false{
    min-width: 140px;
}


.ek_question .label_checkbox input{
    width: auto;
}

.ek_question .label_checkbox:has(input:checked) ,
.scenarios-choices label:has(input:checked) ,
.scenarios-choices label:has(input:checked),
.ek_question .label_true_false:has(input:checked){
    background-color: #efebf7;
    border: 2px solid #007bff;
    color: #3372b4;
}

.scenarios-choices{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}