/* =========================================================
   AL-QANTAARA AI
   PREMIUM SAAS ASSESSMENT
   Version 2.0
========================================================= */

:root{

    --primary:#4F46E5;
    --primary-hover:#4338CA;

    --background:#F8F7FF;
    --card:#FFFFFF;

    --heading:#16204D;
    --text:#667085;

    --border:#E8EBF4;

    --radius:20px;

    --shadow:
        0 12px 35px rgba(79,70,229,.08);

    --transition:.30s ease;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:var(--background);

    color:var(--text);

    font-family:"Poppins",sans-serif;

    line-height:1.6;

    -webkit-font-smoothing:antialiased;

}

img{

    max-width:100%;

    display:block;

}

button{

    cursor:pointer;

    font-family:inherit;

    transition:var(--transition);

}

textarea{

    font-family:inherit;

}

/* =========================================================
   MAIN LAYOUT
========================================================= */

.alq-wrapper{

    width:95%;
    max-width:1700px;

    margin:40px auto;

    display:grid;

    grid-template-columns:minmax(0,1fr) 320px;

    column-gap:40px;

    align-items:start;

}
.alq-left{
    width:100%;
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:28px;
}

.alq-right{

    width:100%;

    

}

/* =========================================================
   HERO SECTION
========================================================= */

.alq-hero{
    animation:fadeUp .7s ease;
    width:100%;
min-width:0;
    display:flex;

    justify-content:space-between;

    align-items:center;

    background:linear-gradient(
        135deg,
        #FCFBFF,
        #F3F0FF
    );

    border-radius:28px;

    padding:60px;

    box-shadow:var(--shadow);

    overflow:hidden;

    position:relative;

}

.alq-hero::before{
    filter:blur(10px);
animation:heroGlow 6s ease-in-out infinite;

    content:"";

    position:absolute;

    top:-120px;

    right:-120px;

    width:280px;

    height:280px;

    background:rgba(79,70,229,.06);

    border-radius:50%;

}

.alq-hero-left{

    width:70%;

    position:relative;

    z-index:2;

}

.alq-hero-left h1{

    font-size:52px;

    color:var(--heading);

    font-weight:700;

    line-height:1.15;

    margin-bottom:18px;

}

.alq-hero-left p{

    max-width:620px;

    color:var(--text);

    font-size:18px;

}

.alq-hero-right{

    width:30%;

    position:relative;

    z-index:2;

    display:flex;

    justify-content:flex-end;

}

.alq-hero-right img{

    width:190px;

    animation:floating 4s ease-in-out infinite;

    transition:transform .4s ease;

    transform-origin:center;

    filter:drop-shadow(0 18px 25px rgba(79,70,229,.15));

}
.alq-hero-right img:hover{

    animation-play-state:paused;

    transform:translateY(-10px) scale(1.05);

}
/* =========================================================
   ASSESSMENT OVERVIEW
========================================================= */

.alq-overview-card{
    animation:fadeRight .8s ease;

    background:var(--card);

    border-radius:24px;

    padding:32px;

    box-shadow:var(--shadow);

    position:sticky;

    top:120px;

}

.alq-overview-card h3{

    color:var(--heading);

    font-size:28px;

    margin-bottom:28px;

}

.alq-overview-card p{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid var(--border);

    font-size:15px;

}

.alq-overview-card p:last-child{

    border-bottom:none;

}

.alq-overview-card span{

    font-size:22px;

    font-weight:700;

    color:var(--primary);

}

/* =========================================================
   QUESTION CARD
========================================================= */

.alq-question-card{

    width:100%;
    display:block;

    background:#fff;

    border:1px solid #EEF2FF;

    border-radius:24px;

    padding:42px;

    margin-bottom:34px;

    box-shadow:0 6px 18px rgba(15,23,42,.05);

}
.alq-question-card:hover{

transform:translateY(-8px);

border-color:#4F46E5;

box-shadow:
0 25px 50px rgba(79,70,229,.12);

}

/* =========================================================
   PREMIUM QUESTION HEADER
========================================================= */

.alq-question-header{

    display:flex;

    align-items:flex-start;

    gap:22px;

    margin-bottom:26px;

}

.alq-question-number{

    width:48px;

    height:48px;

    border-radius:50%;

    background:linear-gradient(135deg,#4F46E5,#6D5BFF);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:15px;

    font-weight:700;

    flex-shrink:0;

    box-shadow:0 10px 20px rgba(79,70,229,.25);

}

.alq-question-header h3{

    font-size:26px;

    line-height:1.55;

    font-weight:600;

    color:#16204D;

}
/* =========================================================
   TEXTAREA
========================================================= */

.alq-answer{

    width:100%;

    min-height:260px;

    padding:24px;

    border:2px solid #EEF2FF;

    border-radius:18px;

    background:#FCFCFF;

    resize:vertical;

    font-size:16px;

    line-height:1.7;

    transition:.3s;

}

.alq-answer:focus{

    outline:none;

    border-color:#4F46E5;

    background:#fff;

    box-shadow:0 0 0 5px rgba(79,70,229,.08);

}
/* =========================================================
   BUTTONS
========================================================= */

.alq-actions{

    display:flex;

    justify-content:flex-end;

    gap:14px;

    margin-top:24px;

}

.alq-clear-btn,
.alq-save-btn,
.alq-submit-btn,
.alq-all-btn{

    height:50px;

    padding:0 28px;

    border:none;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        #4F46E5,
        #6D5BFF
    );

    color:#fff;

    font-size:15px;

    font-weight:600;

    transition:.3s;

    box-shadow:
        0 10px 20px rgba(79,70,229,.20);

}

.alq-clear-btn:hover,
.alq-save-btn:hover,
.alq-submit-btn:hover,
.alq-all-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 15px 30px rgba(79,70,229,.30);

}

/* =========================================================
   PREMIUM OVERVIEW CARD
========================================================= */

.alq-overview-card{

    background:#fff;

    border-radius:28px;

    padding:35px;

    box-shadow:0 18px 45px rgba(79,70,229,.08);

    position:sticky;

    top:120px;

    overflow:hidden;

}

.alq-overview-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:linear-gradient(
        90deg,
        #4F46E5,
        #8B5CF6
    );

}

.alq-overview-card h3{

    font-size:28px;

    color:#16204D;

    margin-bottom:30px;

}

.alq-overview-card p{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid #EEF2F7;

    font-size:16px;

}

.alq-overview-card p:last-child{

    border:none;

}

.alq-overview-card span{

    color:#4F46E5;

    font-size:22px;

    font-weight:700;

}

.alq-hero{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:linear-gradient(
        135deg,
        #FCFBFF,
        #F3F0FF
    );

    border-radius:28px;

    padding:42px  48px;

    box-shadow:0 18px 45px rgba(79,70,229,.08);

    position:relative;

    overflow:hidden;

}

.alq-hero::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    right:-120px;

    top:-120px;

    border-radius:50%;

    background:rgba(79,70,229,.05);

}

.alq-hero-left{

    width:65%;

    position:relative;

    z-index:2;

}

.alq-hero-left h1{

    font-size:54px;

    line-height:1.1;

    color:#16204D;

    margin-bottom:18px;

}

.alq-hero-left p{

    font-size:18px;

    color:#667085;

    max-width:600px;

}

.alq-hero-right{

    width:35%;

    display:flex;

    justify-content:flex-end;

    position:relative;

    z-index:2;

}

.alq-hero-right img{

    width:200px;

    transition:.4s;

}

.alq-hero-right img:hover{

    transform:translateY(-8px);

}
.alq-submit-section{

    margin:50px 0;

    display:flex;

    justify-content:center;

}

.alq-submit-btn{

    min-width:280px;

} 

/* =========================================================
   PROGRESS BAR
========================================================= */

.alq-progress{

    margin-bottom:30px;

}

.alq-progress-bar{

    width:100%;

    height:10px;

    background:#ECEBFF;

    border-radius:999px;

    overflow:hidden;

    margin-bottom:12px;

}

.alq-progress-bar span{

    display:block;

    height:100%;

    background:linear-gradient(
        90deg,
        #4F46E5,
        #8B5CF6
    );

    border-radius:999px;

    transition:.4s;

}

.alq-progress-text{

    color:#4F46E5;

    font-size:14px;

}

.alq-stat{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid #EEF2F7;

}

.alq-stat:last-child{

    border:none;

}

.alq-stat span{

    color:#667085;

    font-size:15px;

}

.alq-stat strong{

    font-size:22px;

    color:#16204D;

}


/* =========================================================
   ACCORDION
========================================================= */

.alq-question-header{

    display:flex;

    align-items:center;

    gap:20px;

    cursor:pointer;

    position:relative;

}

.alq-question-number{

    background:linear-gradient(135deg,#4F46E5,#7C3AED);

    color:#fff;

    padding:8px 16px;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

    white-space:nowrap;

}

.alq-question-header h3{

    flex:1;

    margin:0;

}

.alq-toggle-icon{

    font-size:22px;

    color:#4F46E5;

    transition:.35s;

}

.alq-question-body{

    margin-top:25px;

}

.alq-question-card:not(.active) .alq-question-body{

    display:none;

}

.alq-question-card.active .alq-toggle-icon{

    transform:rotate(180deg);

}



/* ==========================================
   PREMIUM PAGE ANIMATIONS
========================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(30px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes floating{

    0%{
        transform:translateY(0px) rotate(0deg);
    }

    25%{
        transform:translateY(-6px) rotate(-2deg);
    }

    50%{
        transform:translateY(-12px) rotate(0deg);
    }

    75%{
        transform:translateY(-6px) rotate(2deg);
    }

    100%{
        transform:translateY(0px) rotate(0deg);
    }

}

.alq-hero::after{

    animation:blobFloat 8s ease-in-out infinite;

}

@keyframes blobFloat{

    0%,100%{

        transform:translate(0,0);

    }

    50%{

        transform:translate(-20px,15px);

    }

}

@keyframes heroGlow{

    0%,100%{

        transform:scale(1);

        opacity:.5;

    }

    50%{

        transform:scale(1.2);

        opacity:.9;

    }

}

.alq-question-card{

    opacity:0;

    transform:translateY(35px);

    animation:cardReveal .7s ease forwards;

}

.alq-question-card:nth-child(2){animation-delay:.1s;}
.alq-question-card:nth-child(3){animation-delay:.2s;}
.alq-question-card:nth-child(4){animation-delay:.3s;}
.alq-question-card:nth-child(5){animation-delay:.4s;}

@keyframes cardReveal{

from{

opacity:0;
transform:translateY(35px);

}

to{

opacity:1;
transform:translateY(0);

}

}
/* ==========================================
   TABLET (1024px)
========================================== */

/* ==========================================
   TABLET
========================================== */



/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .alq-wrapper{
        width:92%;
        margin:20px auto;
        gap:20px;
    }

    .alq-hero{
        flex-direction:column;
        text-align:center;
        padding:30px 20px;
        gap:25px;
    }

    .alq-hero-left,
    .alq-hero-right{
        width:100%;
    }

    .alq-hero-right{
        justify-content:center;
    }

    .alq-hero-right img{
        width:140px;
    }

    .alq-hero-left h1{
        font-size:34px;
    }

    .alq-hero-left p{
        font-size:15px;
    }

    .alq-question-card{
        padding:22px;
    }

    .alq-question-header{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .alq-question-number{
        width:42px;
        height:42px;
        font-size:13px;
    }

    .alq-question-header h3{
        font-size:20px;
        line-height:1.5;
    }

    .alq-answer{
        min-height:170px;
        padding:16px;
        font-size:15px;
    }

    .alq-actions{
        flex-direction:column;
        gap:12px;
    }

    .alq-actions button{
        width:100%;
    }

    .alq-submit-btn{
        width:100%;
        min-width:100%;
    }

}

/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width:480px){

    .alq-wrapper{
        width:95%;
    }

    .alq-hero{
        padding:25px 18px;
    }

    .alq-hero-left h1{
        font-size:28px;
    }

    .alq-hero-left p{
        font-size:14px;
    }

    .alq-hero-right img{
        width:115px;
    }

    .alq-question-card{
        padding:18px;
        border-radius:18px;
    }

    .alq-question-header h3{
        font-size:18px;
    }

    .alq-answer{
        min-height:140px;
        font-size:14px;
    }

    .alq-overview-card{
        padding:22px;
    }

}

/* =========================================================
   MOBILE / TABLET - ASSESSMENT OVERVIEW FIRST
========================================================= */
@media (max-width:1024px){

    .alq-wrapper{
        display:flex;
        flex-direction:column;
        width:92%;
        margin:25px auto;
        gap:30px;
    }

    .alq-right{
        order:-1;
        width:100%;
    }

    .alq-left{
        order:1;
        width:100%;
    }

    .alq-overview-card{
        position:relative;
        top:auto;
        width:100%;
    }

}




/* =========================================================
   MOBILE BUTTONS + SPACING
========================================================= */

@media (max-width:600px){

    .alq-wrapper{
        width:94%;
        margin:20px auto;
        gap:24px;
    }

    .alq-hero{
        padding:28px 20px;
        border-radius:24px;
    }

    .alq-overview-card{
        padding:24px 20px;
        border-radius:24px;
    }

    .alq-question-card{
        padding:22px 18px;
        border-radius:20px;
    }

    .alq-question-header{
        gap:12px;
    }

    .alq-question-header h3{
        font-size:18px;
        line-height:1.5;
    }

    .alq-answer{
        min-height:160px;
        padding:16px;
        font-size:15px;
    }

    /* Keep Clear + Save side-by-side */
    .alq-actions{
        display:flex;
        flex-direction:row;
        gap:10px;
    }

    .alq-actions .alq-clear-btn,
    .alq-actions .alq-save-btn{
        width:50%;
        min-width:0;
        height:48px;
        padding:0 8px;
        font-size:13px;
    }

    .alq-sidebar-submit .alq-submit-btn{
        width:100%;
        min-width:100%;
        height:52px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width:380px){

    .alq-wrapper{
        width:93%;
    }

    .alq-question-card{
        padding:20px 16px;
    }

    .alq-question-header h3{
        font-size:17px;
    }

    .alq-actions .alq-clear-btn,
    .alq-actions .alq-save-btn{
        font-size:12px;
        padding:0 5px;
    }

}

/* =========================================================
   FINAL ANDROID MOBILE RESPONSIVE FIX
========================================================= */

@media (max-width: 600px) {

    /* Main wrapper */
    .alq-wrapper {
        width: 94%;
        max-width: 100%;
        margin: 18px auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Overview comes first */
    .alq-right {
        order: -1;
        width: 100%;
    }

    .alq-left {
        order: 1;
        width: 100%;
        gap: 20px;
    }

    /* Overview card */
    .alq-overview-card {
        width: 100%;
        padding: 24px 20px;
        margin: 0;
        border-radius: 22px;
        position: relative;
        top: auto;
        box-shadow: 0 10px 30px rgba(79,70,229,.08);
    }

    .alq-overview-card h3 {
        font-size: 25px;
        line-height: 1.25;
        margin-bottom: 22px;
    }

    /* Progress */
    .alq-progress {
        margin-bottom: 20px;
    }

    .alq-progress-bar {
        height: 8px;
        margin-bottom: 10px;
    }

    .alq-progress-text {
        font-size: 14px;
    }

    /* Overview statistics */
    .alq-stat {
        padding: 14px 0;
    }

    .alq-stat span {
        font-size: 14px;
    }

    .alq-stat strong {
        font-size: 20px;
    }

    /* Submit button */
    .alq-sidebar-submit {
        margin-top: 22px;
    }

    .alq-sidebar-submit .alq-submit-btn {
        width: 100%;
        min-width: 0;
        height: 52px;
        font-size: 15px;
    }

    /* Hero */
    .alq-hero {
        width: 100%;
        padding: 28px 20px;
        border-radius: 22px;
        flex-direction: column;
        text-align: center;
        gap: 22px;
    }

    .alq-hero-left,
    .alq-hero-right {
        width: 100%;
    }

    .alq-hero-left h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .alq-hero-left p {
        font-size: 14px;
        line-height: 1.6;
    }

    .alq-hero-right {
        justify-content: center;
    }

    .alq-hero-right img {
        width: 120px;
    }

    /* Question card */
    .alq-question-card {
        width: 100%;
        padding: 22px 18px;
        margin-bottom: 0;
        border-radius: 20px;
    }

    /* Question header */
    .alq-question-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
    }

    .alq-question-number {
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
    }

    .alq-question-header h3 {
        width: 100%;
        font-size: 18px;
        line-height: 1.5;
    }

    /* Answer box */
    .alq-answer {
        width: 100%;
        min-height: 155px;
        padding: 15px;
        border-radius: 16px;
        font-size: 14px;
        line-height: 1.6;
    }

    /* Buttons */
    .alq-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 18px;
    }

    .alq-actions button {
        width: 100%;
        height: 48px;
        padding: 0 18px;
        font-size: 14px;
    }

}

/* =========================================================
   FINAL DESKTOP / LAPTOP LAYOUT FIX
   MAIN CONTENT LEFT + OVERVIEW RIGHT
========================================================= */

@media (min-width: 1025px) {

    .alq-wrapper {
        display: grid !important;

        grid-template-columns: minmax(0, 1fr) 320px !important;

        grid-template-areas:
            "main overview" !important;

        column-gap: 40px !important;

        align-items: start !important;

        width: 95% !important;

        max-width: 1700px !important;

        margin: 40px auto !important;
    }

    /* MAIN CONTENT = LEFT */
    .alq-left {
        grid-area: main !important;

        width: 100% !important;

        min-width: 0 !important;

        display: flex !important;

        flex-direction: column !important;

        gap: 28px !important;
    }

    /* OVERVIEW = RIGHT */
    .alq-right {
        grid-area: overview !important;

        width: 100% !important;

        min-width: 0 !important;
    }

    /* Overview card */
    .alq-overview-card {
        width: 100% !important;

        position: sticky !important;

        top: 120px !important;

        margin: 0 !important;

        box-sizing: border-box !important;
    }

    /* Hero stays full width of LEFT column */
    .alq-hero {
        width: 100% !important;

        box-sizing: border-box !important;
    }

    /* Questions stay full width of LEFT column */
    .alq-question-card {
        width: 100% !important;

        box-sizing: border-box !important;
    }

}
/* =========================================================
   AL-QANTAARA GRAPH QUESTION
   GRAPH DISPLAY FIX
========================================================= */

.alq-graph-wrapper {

    width: 100%;

    margin: 10px 0 30px;

    padding: 24px;

    background: #FCFCFF;

    border: 1px solid #EEF2FF;

    border-radius: 18px;

    overflow: hidden;

}


.alq-graph-title {

    color: #16204D;

    font-size: 17px;

    font-weight: 600;

    margin-bottom: 28px;

}


.alq-graph-bars {

    width: 100%;

    height: 280px;

    display: flex;

    align-items: flex-end;

    justify-content: space-around;

    gap: 20px;

    padding: 20px 10px 0;

    border-bottom: 1px solid #DDE2F0;

}


.alq-graph-column {

    flex: 1;

    min-width: 50px;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    align-items: center;

    position: relative;

}


.alq-graph-value {

    min-height: 24px;

    margin-bottom: 8px;

    color: #16204D;

    font-size: 13px;

    font-weight: 600;

    text-align: center;

}


.alq-graph-bar {

    width: 55px;

    min-height: 4px;

    background: linear-gradient(
        180deg,
        #6D5BFF,
        #4F46E5
    );

    border-radius: 10px 10px 0 0;

    transition:
        height .6s ease,
        transform .3s ease;

    box-shadow:
        0 8px 18px rgba(79,70,229,.18);

}


.alq-graph-bar:hover {

    transform: scaleX(1.06);

}


.alq-graph-label {

    width: 100%;

    margin-top: 12px;

    color: #667085;

    font-size: 13px;

    font-weight: 500;

    text-align: center;

    line-height: 1.4;

}


/* =========================================================
   GRAPH QUESTION MOBILE
========================================================= */

@media (max-width: 600px) {

    .alq-graph-wrapper {

        padding: 16px 10px;

        margin-bottom: 24px;

    }


    .alq-graph-title {

        font-size: 15px;

        margin-bottom: 20px;

    }


    .alq-graph-bars {

        height: 220px;

        gap: 8px;

        padding: 15px 4px 0;

    }


    .alq-graph-column {

        min-width: 0;

    }


    .alq-graph-bar {

        width: 30px;

        border-radius: 7px 7px 0 0;

    }


    .alq-graph-value {

        font-size: 11px;

        margin-bottom: 5px;

    }


    .alq-graph-label {

        font-size: 10px;

        margin-top: 8px;

        word-break: break-word;

    }

}

/* =========================================================
   AL-QANTAARA AI
   ASSESSMENT OPTIONS - CLEAN MOBILE/ DESKTOP LAYOUT
   Remove A/B/C/D letters and improve text wrapping
========================================================= */

/* Hide automatically generated A / B / C / D letters */
.alq-choice-letter {
    display: none !important;
}


/* Each answer option */
.alq-choice-option {
    width: 100% !important;

    display: grid !important;

    grid-template-columns: 24px minmax(0, 1fr) !important;

    align-items: start !important;

    column-gap: 12px !important;

    margin: 0 !important;

    padding: 10px 0 !important;

    box-sizing: border-box !important;

    cursor: pointer !important;
}


/* Radio button */
.alq-choice-option .alq-choice-input {
    display: block !important;

    width: 20px !important;

    height: 20px !important;

    min-width: 20px !important;

    margin: 3px 0 0 0 !important;

    padding: 0 !important;

    position: static !important;

    flex-shrink: 0 !important;
}


/* Answer text */
.alq-choice-text {
    display: block !important;

    width: 100% !important;

    min-width: 0 !important;

    margin: 0 !important;

    padding: 0 !important;

    color: #16204D !important;

    font-size: 17px !important;

    font-weight: 500 !important;

    line-height: 1.5 !important;

    text-align: left !important;

    white-space: normal !important;

    word-break: normal !important;

    overflow-wrap: break-word !important;
}


/* Space between answer choices */
.alq-choice-group {
    width: 100% !important;

    display: flex !important;

    flex-direction: column !important;

    gap: 4px !important;

    margin: 0 !important;

    padding: 0 !important;
}


/* Better hover experience */
.alq-choice-option:hover .alq-choice-text {
    color: #4F46E5 !important;
}


/* =========================================================
   MOBILE OPTIONS
========================================================= */

@media (max-width: 600px) {

    .alq-choice-option {
        grid-template-columns: 22px minmax(0, 1fr) !important;

        column-gap: 10px !important;

        padding: 9px 0 !important;
    }

    .alq-choice-option .alq-choice-input {
        width: 19px !important;

        height: 19px !important;

        min-width: 19px !important;

        margin-top: 3px !important;
    }

    .alq-choice-text {
        font-size: 16px !important;

        line-height: 1.45 !important;

        font-weight: 500 !important;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .alq-choice-option {
        grid-template-columns: 21px minmax(0, 1fr) !important;

        column-gap: 9px !important;
    }

    .alq-choice-option .alq-choice-input {
        width: 18px !important;

        height: 18px !important;

        min-width: 18px !important;
    }

    .alq-choice-text {
        font-size: 15px !important;

        line-height: 1.45 !important;
    }

}
@media (max-width:1024px){

    .alq-wrapper{
        display:flex !important;
        flex-direction:column !important;
        width:92% !important;
        margin:25px auto !important;
        gap:24px !important;
    }

    .alq-left{
        display:contents !important;
    }

    .alq-hero{
        width:100% !important;
        order:1 !important;
    }

    .alq-right{
        width:100% !important;
        order:2 !important;
    }

    .alq-overview-card{
        width:100% !important;
        position:relative !important;
        top:auto !important;
        margin:0 !important;
    }

    .alq-question-card{
        width:100% !important;
        order:3 !important;
        margin-bottom:24px !important;
    }

    .alq-sidebar-submit{
        width:100% !important;
        order:4 !important;
        display:flex !important;
        justify-content:center !important;
        margin:30px 0 50px !important;
    }

    .alq-sidebar-submit .alq-submit-btn{
        min-width:280px !important;
    }

}