@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css');

@font-face {
    font-family: "primus_regular";
    src: url("../fonts/Primus_Regular.ttf");
}
html{
    font-family: "Almarai" !important;
}
.table,
.btn {
    --bs-btn-font-family: 'Almarai' !important;
}
:root{
    --theme-color: #196EC8;
    --theme-dark-color: #05487A;
    --theme-light-color: #2B86E5;
    --note-color: #62EDC2;
    --btn-home-border-color: #BDD8F4;
    --btn-home-border-radius: 15px;
    --white-color: #fff;
    --bs-btn-font-family:'Almarai' !important;
    --bs-font-sans-serif: 'Almarai' !important;
    --bs-font-monospace: 'Almarai' !important;
}
.note-color{
    color: var(--note-color);
}
.btn{
    display: inline-block;
    min-width: 250px;
    height: 80px;
    font-weight: 600;
    font-size: 30px;
    text-align: center;
    padding-bottom: 1rem;
    color: var(--theme-color);
    background-color: var(--white-color);
    border: 4px solid var(--theme-light-color);
    border-radius: var(--btn-home-border-radius);
    text-transform: capitalize;
}
.btn:focus,
.btn:hover{
    color: var(--white-color);
    background-color: var(--theme-color);
    border: 4px solid var(--theme-light-color);
}
.btn-theme{
    background: var(--theme-color);
    border: 4px solid var(--theme-light-color);
    color: var(--white-color);
    border-radius: 12px;
    transition: all .3s ease;
}
.btn-theme:focus,
.btn-theme:hover{
    background: var(--theme-dark-color);
    border: 4px solid var(--theme-dark-color);
    color: var(--white-color);
}

.lang-ar{
    direction: rtl;
}
.home-page{
    position: relative;
    width: 100%;
    height: 100vh;
}
.home-page .main-logo{
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 20px;
    width: 160px;
}
[dir="rtl"] .home-page .main-logo{
    left: auto;
    right: 20px;
}
.home-page .content{
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-page .main-pic{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-page .btn-option{
    position: absolute;
    bottom: 5rem;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 220px;
}
.home-page .btn-option{
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 220px;
}

.policy-card{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    max-height: calc(100vh - 150px);
    width: 100%;
    height: 100%;
    /* background: #FFFFFF; */
    background: linear-gradient(150.89deg, var(--theme-light-color) 13.44%, var(--theme-dark-color) 85.88%);
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
    border-radius: 27px;
    border: 4px solid var(--theme-light-color);
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.policy-card .head{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 10px;
}
.policy-card .head .title{
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 47px;
    text-align: center;
    color: #fff;
    text-transform: capitalize;
}
.policy-card .content{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.policy-card .content.category{
    justify-content: flex-start;
    gap: 30px;
    overflow-y: scroll;
    margin: 30px 0 0;
    scrollbar-color: var(--white-color) rgba(255, 255, 255, 0.3);
    scrollbar-width: thin;
}

.policy-card .content.category::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
}
.policy-card .content.category::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.3);
}
.policy-card .content.category::-webkit-scrollbar-thumb {
    background: var(--white-color);
}
.question-box-answers{
    max-height: 540px;
    overflow-y: scroll;
    scrollbar-color: var(--white-color) rgba(255, 255, 255, 0.3);
    scrollbar-width: thin;
    height: 100%;
    padding-inline-end: 2rem;
}
.question-box-answers::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
}
.question-box-answers::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.3);
}
.question-box-answers:-webkit-scrollbar-thumb {
    background: var(--white-color);
}

.policy-card .policy-box{
    position: relative;
    cursor: pointer;
    color: #fff;
    padding: 15px 0px;
    max-width: 450px;
    min-height: 80px;
    width: 100%;
    border-radius: 16px;
    transition: all .3s ease;
}
/*
.policy-card .policy-box:hover,
.policy-card .policy-box:focus{
    background: linear-gradient(224.29deg, #61B24D 0%, #51B9B3 50.63%, #0293D2 101.27%);
}
*/
.policy-card .policy-box .title ,
.policy-card .policy-box .title {
    color: #fff !important;
}
.policy-card .policy-box:hover .title ,
.policy-card .policy-box:focus .title {
    color: #fff !important;
}
.policy-card .policy-box::before{
    position: absolute;
    content: "";
    width: 80px;
    height: 120px;
    top: 0;
    right: -30px;
    background-image: url(../img/border-right.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.policy-card .policy-box::after{
    position: absolute;
    content: "";
    width: 80px;
    height: 120px;
    top: 0;
    left: -30px;
    background-image: url(../img/border-left.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.policy-card .policy-box:last-child{
    margin-bottom: 0;
}
.policy-card .policy-box .title{
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 47px;
    text-align: center;
    color: #3F3F3F;
    margin-bottom: 0;
}
.btn-info-question{
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 2;
    cursor: pointer;
}
[dir="ltr"] .btn-info-question {
    right: auto;
    left: 2rem;
}
#modal-info-question .modal-dialog{
    max-width: 1000px;
    width: 100%;
    max-height: 615px;
    width: 100%;
    height: 100%;
    background: linear-gradient(150.89deg, var(--theme-light-color) 13.44%, var(--theme-dark-color) 85.88%);
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 80px;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
}
#modal-info-question .modal-content {
    position: relative;
}
#modal-info-question .modal-content .btn-close-modal{
    position: absolute;
    top: -50px;
    left: -50px;
    cursor: pointer;
    z-index: 2;
}
#modal-info-question .modal-content{
    background: transparent;
}
.modal-dialog{
    background: linear-gradient(150.89deg, var(--theme-light-color) 13.44%, var(--theme-dark-color) 85.88%);
}
.modal-dialog .modal-content{
    background: transparent;
}
.btn-close-modal svg path{
    fill: var(--white-color);
}
.btn-close-modal-content{
    padding: 1rem;
    height: 500px;
    overflow-y: scroll;
    scrollbar-color: var(--white-color) rgba(255, 255, 255, 0.3);
    scrollbar-width: thin;
}
.btn-close-modal-content .title{
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 24px;
}
.btn-close-modal-content .info{
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: var(--white-color);
}

.btn-close-modal-content::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
}
.btn-close-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.3);
}
.btn-close-modal-content::-webkit-scrollbar-thumb {
    background: var(--white-color);
}

.countdown{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: .5rem 2rem;
    padding-inline-start: 1rem;
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: var(--theme-color);
    background: rgba(255, 255, 255, 0.6);
    gap: 0.5rem;
    border-radius: 23px;
}
.countdown .icon svg{
    width: 24px;
    height: 24px;
    position: relative !important;
}
.countdown .icon svg [stroke]{
    stroke: var(--theme-color) !important
}
.countdown.end{
    color: rgba(220, 53, 53, 1);
    background-color: rgba(220, 53, 53, 0.15);
}
.countdown.end .icon svg [stroke]{
    stroke: rgba(220, 53, 53, 1);
}

.question-card .head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.question-card .head .title{
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: var(--white-color);
    margin-bottom: 0;
}
.question-card .body{
    padding: 0 20px;
}
.question-card .body .question-box .title{
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
    min-width: 100%;
}
.question-card .body .question-box .question-answer{
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px 40px;
    padding-inline-end: 60px;
    overflow: hidden;
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 24px;
    cursor: pointer;
}
.question-card .body .question-box .question-answer.checked.true{
    background: rgba(0, 151, 60, 0.2);
    border: 2px solid #00973C;
}
.question-card .body .question-box .question-answer.checked.false{
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #FF0000;
}
.question-card .body .question-box .question-answer.checked::after{
    position: absolute;
    content: "";
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
}
[dir="rtl"] .question-card .body .question-box .question-answer.checked::after{
    right: auto;
    left: 1rem;
}
.question-card .body .question-box .question-answer.checked.true::after{
    content: "\f00c";
    background-color: #00973C;
}
.question-card .body .question-box .question-answer.checked.false::after{
    content: "\f00d";
    background-color: #FF0000;
}
.question-card .body .question-box.question-box-pic{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.question-card .body .question-box.question-box-pic .question-answer{
    max-width: calc((100% / 3) - 1rem);
    width: 100%;
    padding: 0;
}
.question-card .body .question-box.question-box-pic .question-answer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.question-card .body .question-box.question-box-pic .question-answer::after{
    top: 1rem;
    left: 1rem;
    transform: translate(0);
}
[dir="rtl"] .question-card .body .question-box.question-box-pic .question-answer::after{
    left: auto;
    right: 1rem;
}
.question-card .footer .btn{
    position: absolute;
    /*bottom: 20px;*/
    right: 53px;
    width: 200px;
    min-width: 200px;
    height: 60px;
    /*background: #196EC8;*/
    /*border: 4px solid #2B86E5;*/
    border-radius: 12px;
    font-size: 24px;
    padding-bottom: 10px;
}


.card-satuts .option img,
.question-card .footer img{
    height: 60px;
}

.card-satuts{
    text-align: center;
    /*padding: 2rem 5rem;*/
}
.card-satuts .title{
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: var(--white-color);
}
.card-satuts .img-icon{
    margin: 30px auto;
}
.card-satuts .title{
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    color: var(--white-color);
}
.card-satuts .info{
    font-family: 'Almarai';
    font-style: normal;
    font-weight: 400;
    /*font-size: 24px;*/
    line-height: 40px;
    text-align: center;
    color: var(--white-color);
    margin-bottom: 40px;
}
.card-satuts .option{
    display: flex;
    justify-content: space-between;
}
.card-satuts .option .btn{
    min-width: 200px;
    height: 60px;
    border-radius: 12px;
    border-width: 4px;
    font-size: 20px;
    padding-bottom: 10px;
}
.modal.show .modal-dialog {
    transform: none;
    transform: translateY(-50%);
    top: 50%;
}


.form{
    max-width: 520px;
    width: 100%;
    font-family: 'Almarai';
    margin: auto;
}
.form .form-group{
    margin-bottom: 5px;
}
.form .form-label{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white-color);
    text-transform: capitalize;
}
.form .form-control{
    padding: 24px 20px;
    width: 520px;
    height: 60px;
    margin-bottom: 20px;
    background: var(--white-color);
    border: 4px solid var(--white-color);
    border-radius: 15px;
}
.form .details{
    font-size: 20px;
    color: #fff;
    text-align: center;
}
.form .upload-pic{
    position: relative;
    text-align: center;
    width: 120px;
    height: 120px;
    margin: auto;
    margin-bottom: 50px;
}
.form .upload-pic .pic{
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 8px solid var(--theme-light-color);
    background-color: var(--white-color);
    overflow: hidden;
    cursor: pointer;
}
.form .upload-pic .pic svg path{
    stroke: var(--theme-color);
}
.form .upload-pic .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form .upload-pic .remove-pic{
    background-color: var(--theme-dark-color);
    color: var(--white-color);
    font-size: 32px;
    border-radius: 70px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute;
    top: 0;
    padding: 4px;
}
.form .btn{
    width: 100%;
    min-width: 200px;
    height: 70px;
    font-size: 20px;
    padding-bottom: 10px;
    font-weight: 600;
    border-radius: 12px;
    /*border-width: 4px;*/
}

.head-auth{
    position: relative;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 10px 10px !important;
}
.head-auth .user-card{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.head-auth .user-card .pic{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white-color);
    outline: 3px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
}
.head-auth .user-card .pic svg path{
    stroke: var(--theme-color);
}
.head-auth .user-card .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.head-auth .user-card .info{
    color: #fff;
}
.head-auth .user-card .info .name{
    font-size: 18px;
    font-weight: 600;
}
.head-auth .user-card .info .email{
    font-size: 14px;
    font-weight: 400;
}
.head-auth .user-card .info .group{
    font-size: 16px;
    font-weight: 400;
}
.head-auth .action{
    display: flex;
    gap: 0.5rem;
}
.head-auth .action .btn-icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width:  40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white-color);
    outline: 3px solid rgba(255, 255, 255, 0.25);
    transition: all .13s ease-in-out;
}
[dir="rtl"] .head-auth .action .btn-icon{
    transform: scaleX(-1);
}

.head-auth .action .btn-icon svg path{
    stroke: var(--theme-color);
}
.head-auth .action .btn-icon:hover{
    outline: 12px solid rgba(255, 255, 255, 0.25);
}

.qr-card .details{
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
}
.qr-card .qr-box{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: var(--white-color);
    border-radius: 20px;
}
.qr-card .qr-box svg,
.qr-card .qr-box img{
    width: 200px;
    height: 200px;

}
.qr-card .btn{
    min-width: 200px;
    /*height: 60px;*/
    border-width: 4px;
    border-radius: 12px;
    font-size: 24px;
    padding-bottom: 10px;
}


.info-box {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 1rem;
    border-radius: 16px;
    z-index: 222;
    box-shadow: 0 3px 11px rgb(0, 0, 0, 0.1);
    max-width: 320px;
    width: 100%;
}
.info-box .timer{
    text-align: center;
    margin-bottom: 1rem;
}
.info-box .timer .countdown{
    display: inline-flex;
    background-color: #E0F1FB;
}
.info-box .timer .countdown .icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-card{
    background-color: var(--theme-color);
    border: 5px solid #62EDC2;
    outline: 5px solid var(--theme-dark-color);
    border-radius: 6px;
    color: var(--white-color);
    padding: 1.5rem;
}
.table-card table{
    width: 100%;
    border-spacing: 0;
}
.table-card table td,
.table-card table th{
    border-bottom: 1px solid var(--white-color);
    padding: .75rem;
}
.table-card table tr:last-child td,
.table-card table tr:last-child th{
    border-bottom: none
}
.click-elm{
    cursor: pointer;
}
.success-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-card{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.bar-card .bar-box{
    position: relative;
    width: 120px;
}
.bar-card .bar-box .column{
    position: relative;
    width: 120px;
    background-color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: 600;
    font-size: 60px;
}
.bar-card .bar-box:not(.first):nth-child(2) .column{
    height: 204px;
}
.bar-card .bar-box.first .column,
.bar-card .bar-box:nth-child(1) .column{
    position: relative;
    height: 224px;
    z-index: 2;
    background-color: var(--theme-dark-color);
}
.bar-card .bar-box:nth-child(3) .column{
    height: 184px;
}
.bar-card .bar-box .column::before{
    position: absolute;
    content: "";
    width:  100%;
    height: 20px;
    top: -20px;
    background-color: var(--theme-light-color);
}

.bar-card .bar-box:nth-child(1){
    order: 1
}
.bar-card .bar-box:nth-child(2){
    order: 2
}
.bar-card .bar-box:nth-child(2) .column::before{
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}
.bar-card .bar-box.first .column::before,
.bar-card .bar-box:nth-child(1) .column::before{
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
}
.bar-card .bar-box:nth-child(3) .column::before{
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
}

[dir="rtl"] .bar-card .bar-box:nth-child(2) .column::before{
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
}
[dir="rtl"] .bar-card .bar-box:nth-child(3) .column::before{
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}
.bar-card .bar-box .user-card{
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}
.bar-card .bar-box .user-card .crown{
    position: relative;
    z-index: 1;
    margin-bottom: -10px;
}
.bar-card .bar-box .user-card .pic{
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    color: var(--theme-light-color);
    background-color: var(--theme-dark-color);
    margin: auto;
    margin-bottom: 10px;
}
.bar-card .bar-box .user-card .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bar-card .bar-box .user-card .name{
    color: var(--white-color);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}
.bar-card .bar-box .user-card .point{
    display: inline-block;
    color: var(--white-color);
    background-color: var(--theme-color);
    border-radius: 12px;
    padding: .5rem 1rem;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
}
.result-card{
    background: #F5FAFF;
    border-radius: 24px;
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
}
.result-card .table{
    border-collapse: separate;
    border-spacing: 0 ;
    margin-bottom: 0;
}
.result-card tr td{
    vertical-align: middle;
    background-color: var(--white-color);
    border-spacing: 0;
    font-size: 14px;
}
.result-card tr td:first-child{
    border-start-start-radius: 24px;
    border-end-start-radius: 24px;
}
.result-card tr td:last-child{
    border-start-end-radius: 24px;
    border-end-end-radius: 24px;
}
.result-card .table .user-card{
    display: flex;
    align-items: center;
    gap: 10px;
}
.result-card .table .user-card .pic{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--white-color);
    background-color: var(--theme-color);
}
.result-card .table .user-card .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.result-card .table .user-card .name{
    font-size: 14px;
    font-weight: 600;
}

.error-page,
.empty-result{
    text-align: center;
}
.error-page .pic,
.empty-result .pic{
    position: relative;
    max-width: 470px;
    margin: auto;
}
.empty-result .pic::before{
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 370px;
    height: 370px;
    border-radius: 50%;
    z-index: -1;
    background: #FFFFFF;
    opacity: 0.1;
}
.error-page .title,
.empty-result .title{
    font-size: 20px;
    font-weight: 800;
}
.error-page .title{
    font-size: 32px;
    margin-top: 24px;
}
[dir="rtl"] .btn-info-question img{
    transform: scaleX(-1);
}
.btn-start{
    height: 70px;
    line-height: 60px;
    padding-bottom: 0;
}
.text-sm{
    font-size: 80% !important;
}
.md{
    font-size: 90% !important;
}
.card-satuts .option .btn {
    min-width: 200px;
    height: 60px;
    line-height: 50px;
    border-radius: 12px;
    border-width: 4px;
    font-size: 20px;
    padding-bottom: 10px;
    padding: 0 2rem;
}
@media (max-width: 1440px){
    #modal-info-question .modal-dialog,
    .policy-card {
        max-width: 800px;
        height: auto;
        min-height: 300px;
        padding: 3rem 3rem 1.5rem;
    }
    .btn-close-modal-content {
        padding: 1rem;
        height: 480px;
    }
    #modal-info-question .modal-content .btn-close-modal {
        top: -30px;
        left: -30px;
    }
    .policy-card .head .title {
        font-size: 20px;
    }
    .policy-card .policy-box{
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .policy-card .policy-box .title{
        font-size: 20px;
    }
    .policy-card .policy-box::before,
    .policy-card .policy-box::after{
        width: 60px;
        height: 80px;
    }
    .policy-card .policy-box::before{
        right: -20px;
    }
    .policy-card .policy-box::after{
        left: -20px;
    }
    .countdown {
        border-radius: 50px;
        padding: 5px 20px;
        font-size: 14px;
        line-height: 27px;
        gap: 10px;
    }
    .countdown .icon svg{
        width: 20px;
        height: 20px;
    }
    .question-card .head .title{
        margin-bottom: 0;
    }
    .question-card .body .question-box .title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .question-card .body .question-box .question-answer {
        padding: 14px 20px;
        font-size: 16px;
        line-height: 27px;
        margin-bottom: 16px;
    }
    .question-card .body .question-box .question-answer.checked::after {
        font-size: 14px;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }
    .btn-option img{
        height: 100px;
    }
    .lang-ar img,
    .lang-en img{
        height: 80px;
    }
    .question-card .head{
        margin-bottom: 20px;
    }
    .btn {
        min-width: 220px;
        height: 60px;
        font-size: 20px;
        line-height: 1.5;
    }
    .btn {
        min-width: 180px;
        height: 50px;
    }
    .home-page .main-logo {
        top: 40px;
        left: 40px;
        width: 120px;
    }
    [dir="rtl"] .home-page .main-logo {
        left: auto;
        right: 40px;
    }
    .btn-info-question {
        position: absolute;
        bottom: 2rem;
        right: 2rem;
        width: 50px;
    }
    .btn-info-question img{
        width: 100%;
    }
    [dir="rtl"] .btn-info-question {
        right: auto;
        left: 2rem;
    }
    .home-page .main-pic{
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
    .policy-card {
        position: relative;
        top: auto;
        left: auto;
        transform: initial;
        margin: 2rem auto 0;
        padding: 1rem;
        height: 100%;
    }
    .head-auth {
        padding: 10px 20px !important;
    }
    .head-auth .user-card .pic {
        width: 50px;
        height: 50px;
    }
    .head-auth .user-card .info .name {
        font-size: 16px;
    }
    .head-auth .user-card .info .group,
    .head-auth .user-card .info .email{
        font-size: 12px;
    }
    .head-auth .action{
        gap: 1.2rem;
    }
    .head-auth .action .btn-icon {
        width: 40px;
        height: 40px;
    }
    .head-auth .action .btn-icon svg {
        width: 20px;
        height: 20px;
    }
    .policy-card .policy-box {
        padding: .5rem 1rem;
        height: auto;
        overflow-x: clip;
    }
    .policy-card .content.category{
        gap: 0 !important;
    }
    .question-box-answers {
        max-height: 300px;
    }
    .modal-lg, .modal-xl {
        --bs-modal-width: 600px;
    }
    .card-satuts .title {
        font-size: 16px;
    }
    .card-satuts .img-icon {
        max-width: 100px;
        margin: 0 auto;
        margin-bottom: 1rem;
    }
    .card-satuts .info {
        font-size: 14px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .card-satuts .option .btn {
        min-width: 180px;
        height: 50px;
        font-size: 16px;
        line-height: 1.5
    }
    .question-card .footer .btn {
        position: relative;
        bottom: auto;
        right: auto;
        width: 140px;
        min-width: 140px;
        height: 40px;
        font-size: 16px;
        padding-bottom: 10px;
        margin-top: 1rem;
    }
    .policy-card .head {
        padding: 1rem;
        margin-bottom: 20px;
    }
    .policy-card .content {
        gap: 30px;
    }
    .qr-card .details {
        font-size: 14px;
    }
    .qr-card .qr-box {
        padding: 20px;
    }
    .qr-card .btn {
        min-width: 180px;
        height: 50px;
        font-size: 16px;
        line-height: 1.5;
    }
    .bar-card .bar-box .user-card .name {
        font-size: 14px;
    }
    .bar-card .bar-box .column{
        font-size: 40px;
    }
    .bar-card .bar-box .user-card .point {
        font-size: 12px;
    }
    .bar-card .bar-box:not(.first):nth-child(2) .column {
        height: 124px;
    }
    .bar-card .bar-box.first .column, .bar-card .bar-box:nth-child(1) .column {
        position: relative;
        height: 144px;
    }
    .bar-card .bar-box:nth-child(3) .column {
        height: 104px;
    }
    .bar-card .bar-box .user-card {
        margin-bottom: 30px;
    }
    .bar-card .bar-box,
    .bar-card .bar-box .column {
        position: relative;
        width: 100px;
    }
    .form .upload-pic .pic,
    .form .upload-pic {
        position: relative;
        text-align: center;
        width: 80px;
        height: 80px;
    }
    .form .form-group{
        margin-bottom: 1rem;
    }
    .form .details {
        font-size: 16px;
    }
    .form .form-group.mt-5{
        margin-top: 1.5rem !important;
    }
    .form .form-label {
        font-weight: 700;
        font-size: 14px;
    }
    .form .form-control {
        padding: 14px 20px;
        width: 520px;
        height: 40px;
        border-radius: 12px;
    }
    .form .btn {
        min-width: 140px;
        height: 45px;
        font-size: 16px;
        line-height: 1.5;
    }
    .error-page .pic,
    .empty-result .pic {
        max-width: 270px;
    }
    .empty-result .pic::before {
        width: 200px;
        height: 200px;
    }
    .error-page .title{
        font-size: 24px;
    }
    .qr-card .qr-box svg, .qr-card .qr-box img {
        min-width: 165px;
        width: 220px;
        height: 220px;
    }
    .home-page .btn-option .btn{
        height: 60px;
    }
}
@media (max-width: 1024px) {
    .btn {
        min-width: 220px;
        height: 70px;
        font-size: 24px;
    }
    .home-page .btn-option{
        gap: 3rem;
    }
    .home-page .main-logo {
        position: relative;
        top: auto !important;
        left: auto !important;
        width: 140px;
    }
    [dir="rtl"] .home-page .main-logo {
        left: auto;
        right: 20px;
    }
    #modal-info-question .modal-dialog, .policy-card {
        padding: 1.5rem;
    }
    .btn-info-question {
        bottom: 1rem;
        right: 1rem;
    }
    .btn-info-question img{
        width: 40px;
    }
    .policy-card .content{
        position: relative;
        margin: 2rem auto;
    }
    .policy-card .policy-box .title {
        line-height: 1.5;
    }
    .head-auth .action {
        display: flex;
        gap: 1rem;
    }
    .head-auth {
        padding: 20px 30px !important;
    }
    .question-card .footer .btn {
        width: 200px;
        min-width: 200px;
        height: 50px;
        background: #196EC8;
        border: 4px solid #2B86E5;
        border-radius: 12px;
        font-size: 20px;
    }
    #modal-info-question .modal-content .btn-close-modal {
        top: 0;
        left: 0;
        background-color: var(--theme-color);
        border-radius: 6px;
        padding: 5px;
    }
    #modal-info-question .modal-content .btn-close-modal svg{
        width: 20px;
        height: 20px;
    }
}


@media (max-width: 768px) {
    .head-auth .user-card .pic {
        width: 60px;
        height: 60px;
    }
    .head-auth .action .btn-icon {
        width: 40px;
        height: 40px;
    }
    .head-auth .user-card .info .name {
        font-size: 20px;
    }
    .head-auth .user-card .info .group,
    .head-auth .user-card .info .email {
        font-size: 14px;
    }
    .question-card .footer .btn {
        padding-bottom: 0;
        font-size: 16px;
    }
    .question-card .footer .btn {
        width: 170px;
        min-width: 170px;
    }
    .card-satuts {
        padding: 1rem;
    }
    .card-satuts .img-icon{
        width: 80px;
        margin: 30px auto;
    }
    .card-satuts .info {
        font-size: 16px;
    }
    .card-satuts .option .btn {
        min-width: 170px;
        height: 50px;
        font-size: 16px;
    }
    .qr-card .head .title {
        margin-bottom: 0;
    }
    .result-box{
        max-height: max-content;
    }
}
@media (max-width: 500px) {
    .home-page .main-logo {
        width: 140px;
    }

    .card-satuts .btn,
    .qr-card .btn,
    .btn {
        min-width: 140px;
        height: 50px;
        font-weight: 700;
        font-size: 16px;
    }
    .home-page .btn-option{
        gap: 1rem;
    }
    .policy-card .head-auth {
        flex-direction: column;
        gap: 1rem;
    }
    .head-auth .action {
        display: flex;
        gap: 2rem;
    }
    .policy-card .policy-box{
        height: auto;
    }
    .policy-card .policy-box .title {
        font-size: 16px;
    }
    .question-card .body {
        padding: 0;
    }
    .card-satuts .option .btn {
        min-width: 140px;
    }
    .qr-card .details {
        font-size: 16px;
        font-weight: 600;
        text-align: center;
    }
    .account-type .head .title,
    .result-box .head .title,
    .qr-card .head .title {
        margin-bottom: 0;
    }
    .bar-card .bar-box,
    .bar-card .bar-box .column{
        width: 100px;
        font-size: 50px;
    }
    .result-card{
        display: none;
    }
    .form .details {
        font-size: 16px;
    }
    .form .form-control {
        max-width: 520px;
        width: 100%;
        height: 50px;
        padding: 1rem;
    }
    .form .form-label {
        font-weight: 700;
        font-size: 16px;
    }
    .form .btn {
        min-width: 140px;
        height: 50px;
        font-size: 16px;
    }
    .policy-card {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .form .upload-pic,
    .form .upload-pic .pic {
        width: 90px;
        height: 90px;
    }
    .policy-card .head {
        padding: 10px 20px;
    }
}
