
@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300;400;500;600;700&display=swap');
* {
    font-family: "Signika Negative", sans-serif !important;
    scroll-behavior: smooth !important;
}
body{
    margin: 0;
    padding: 0;
    background-attachment: fixed;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #003F72;
}

.theme_btn {
    color: #FFFFFB;
    background: transparent;
    border: solid 2px #277fc7;
    border-radius: 8px;
}
.theme_btn.active{
    color: #FFFFFB !important;
    background: linear-gradient(270deg, #095799 0%, #228be1 50%, #0c83e7 100%) !important;
    border: #277fc7 !important;
    border-radius: 8px !important;
}
.theme_btn:hover {
    -webkit-animation: bounce 1s infinite alternate;
    -moz-animation: bounce 1s infinite alternate;
    animation: bounce 1s infinite alternate;
    color: white;
}
.card {
    border: 2px groove #00bbff !important;
}

.container-fluid, .row {
    margin: 0 !important;
    padding: 0 !important;
}

/* Width */
::-webkit-scrollbar {
    width: .65rem;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle (scroll thumb) */
::-webkit-scrollbar-thumb {
    background-color: #939194;
    border: 2px solid transparent;
    border-radius: 5px;
    background-clip: padding-box;
}

/* rotet screen */
#warning-message {
    display: none;
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 2000;
    background: rgba(255,255,255,1);
    height: 100vh;
}

@media only screen and (orientation: portrait) {
    #warning-message {
        display: block;
    }
}

@media only screen and (orientation: landscape) {
    #warning-message {
        display: none;
    }
}

/* Loader  */
.loading-spinner{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(5, 30, 55, 0.92); /* dark blue overlay */
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

/* spinner */
.lt-spinner{
    width:70px;
    height:70px;
    border:5px solid rgba(0, 180, 255, 0.15);
    border-top:5px solid #00c8ff;
    border-right:5px solid #0099ff;
    border-radius:50%;
    animation: ltSpin 0.9s linear infinite;
    box-shadow:0 0 20px rgba(0,200,255,0.6);
}

@keyframes ltSpin{
    100%{
        transform: rotate(360deg);
    }
}

/* status bar */
.status-bar {
    background: #003F72;
    padding: 0px 5px;
    width: 100%;
}

/*---- START for Rating star ----*/
.rating_start .rate-area {
    border-style: none;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
}

.rating_start .rate-area:not(:checked) > input {
    opacity: 0;
    position: absolute;
    top: 6rem;
    z-index: -1;
}

.rating_start .rate-area:not(:checked) > label {
    float: right;
    width: 0.9em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 4rem;
    color: lightgrey;
}

.rating_start .rate-area label::before {
    content: "\2605";
    font-family: Arial, sans-serif;
}

.rating_start .rate-area > input:checked ~ label {
    color: gold;
}

.rating_start .rate-area:not(:checked) > label:hover,
.rating_start .rate-area:not(:checked) > label:hover ~ label {
    color: gold;
}

.rating_start .rate-area > input:checked + label:hover,
.rating_start .rate-area > input:checked + label:hover ~ label,
.rating_start .rate-area > input:checked ~ label:hover,
.rating_start .rate-area > input:checked ~ label:hover ~ label,
.rating_start .rate-area > label:hover ~ input:checked ~ label {
    color: gold;
}


/* ===================================================== */
/* ================ CUSTOM MODAL END =================== */
/* ===================================================== */


/* MODAL BACKDROP */
.modal .custom-modal {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

/* MODAL BOX */
.custom-modal .modal-content {
    background: rgba(0, 63, 114, 0.85);
    border: 3px solid #0fc3ff;
    border-radius: 0.5rem;
    color: #fff;
}

/* CLOSE BUTTON */
.custom-modal .modal-close {
    position:absolute;
    top:-12px;
    right:-12px;
    width:38px;
    height:38px;
    border:none;
    background: white !important;
    border-radius:8px;
    font-size:24px;
    font-weight:700;
    color:#0dcaf0;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 0 10px rgba(13,202,240,0.6);
    transition:all .2s ease;
    opacity: 0.8;
}

.custom-modal .modal-close:hover {
    transform:scale(1.15);
    background:#0dcaf0;
    color:#000000;
}

/* HEADER */
.custom-modal .modal-header {
    background:#005da9;
    border-bottom:3px solid #16c0ff;
    text-align:center;
    padding: 0;
    height: 80px;
}

.custom-modal .modal-header .modal-title {
    color: #fff;
    font-weight:600;
    font-size:28px;
    margin:auto;
}

/* BODY */
.custom-modal .modal-body {
    padding: 20px;
    max-height: 75vh;
    overflow-y: auto;
}

/* scrollbar */
.custom-modal .modal-body::-webkit-scrollbar {
    width: 6px;
}

.custom-modal .modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* video Modal */
.custom-modal .modal-body .video-btn {
    color: #FFFFFB;
    background: transparent;
    border: solid 2px #277fc7;
    border-radius: 8px;
}

.custom-modal .modal-body .video-btn.active {
    color: #FFFFFB !important;
    background: linear-gradient(270deg, #095799 0%, #228be1 50%, #0c83e7 100%) !important;
    border: #277fc7 !important;
    border-radius: 8px !important;
}

/* =========================
FORM ELEMENTS
========================= */
.custom-modal .modal-body label {
    font-size: 16px;
    font-weight: 600;
    color: #e9e9e9;
    margin-bottom: 6px;
    cursor: pointer;
}

.custom-modal .modal-body .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px;
}

.custom-modal .modal-body .form-control:focus {
    border-color: #0dcaf0;
    box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.25);
}

.custom-modal .modal-body .card{
    border-width: 3px !important;
    border-style: groove !important;
    border-color: rgb(0, 187, 255) !important;
    border-image: initial !important;
}

/* =========================
OPTION BOX (RADIO / CHECKBOX)
========================= */
.custom-modal .modal-body .card .radio-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #dee2e6;
    font-weight: 500;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
}

.custom-modal .modal-body .card .radio-inline input[type="radio"],
.custom-modal .modal-body .card .radio-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #00dcff;
}

.custom-modal .modal-body .card .radio-inline span {
    line-height: 1.5;
}

.custom-modal .modal-body .card .radio-inline:has(input[type="radio"]:checked, input[type="checkbox"]:checked) {
    border-color: #00dcff;
    color: #00dcff;
    box-shadow: 0 2px 4px rgba(23, 162, 184, 0.15);
}

/* This makes both columns stretch equally. */
.custom-modal .modal-body .card .row > [class*="col-"] {
    display: flex;
}

/* ===================================================== */
/* ================ CUSTOM MODAL END =================== */
/* ===================================================== */



/* Badge for Quiz result */
.badge-success {
    background-color: #d4edda !important;
    color: #155724 !important;
    border-radius: 10px;
    border: 2px solid #28a745 !important;
    border-color: #28a745 !important;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
}

.badge-success::before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 8px;
    font-size: 1.1rem;
}

.badge-danger {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border: 2px solid #28a745 !important;
    border-radius: 10px;
    border-color: #dc3545 !important;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

.badge-danger::before {
    content: "✗ ";
    font-weight: bold;
    margin-right: 8px;
    font-size: 1.1rem;
}

.badge-info {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6 !important;
    border-radius: 10px;
    color: #6c757d;
}
/* End Badge for Quiz result */


/* START wave dote */
.wave-a {
    position: absolute;
}
.wave {
    width: 10px;
    height: 10px;
    border: 5px solid #fffdfd;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #000;
    z-index: 10;
    position: absolute;
}
.dot {
    border: 10px solid #fffdfd;
    background: transparent;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    height: 50px;
    width: 50px;
    -webkit-animation: wave 3s ease-out;
    -moz-animation: wave 3s ease-out;
    animation: wave 3s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
    opacity: 0;
}
@keyframes wave {
    0% {
        transform: scale(0);
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0.0;
    }
    25% {
        transform: scale(0);
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0.1;
    }
    50% {
        transform: scale(0.1);
        -moz-transform: scale(0.1);
        -webkit-transform: scale(0.1);
        opacity: 0.3;
    }
    75% {
        transform: scale(0.5);
        -moz-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.0;
    }
}
@-moz-keyframes wave {
    0% {
        transform: scale(0);
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0.0;
    }
    25% {
        transform: scale(0);
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0.1;
    }
    50% {
        transform: scale(0.1);
        -moz-transform: scale(0.1);
        -webkit-transform: scale(0.1);
        opacity: 0.3;
    }
    75% {
        transform: scale(0.5);
        -moz-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.0;
    }
}
@-webkit-keyframes wave {
    0% {
        transform: scale(0);
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0.0;
    }
    25% {
        transform: scale(0);
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0.1;
    }
    50% {
        transform: scale(0.1);
        -moz-transform: scale(0.1);
        -webkit-transform: scale(0.1);
        opacity: 0.3;
    }
    75% {
        transform: scale(0.5);
        -moz-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.0;
    }
}
/* START wave dote */

/* Show Stall map */
.outer {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}
.inner {
    margin: auto;
    width: auto;
}
img.map, map area{
    outline: none;
}

/* Footfall Text */
.footfall_text span {
    text-shadow: 0 0 10px #0188dc, 0 0 23px #0188dc, 0 0 36px #0188dc, 0 0 50px #0188dc, 0 0 63px #014E86, 0 0 75px #014E86, 0 0 88px #014E86, 0 0 100px #2aabd2;
    color: #f5dede;
    font-size: clamp(0px, 1.9vw, 2rem);
    text-align: center;
    animation: blink_text 7s infinite;
    -webkit-animation: blink_text 7s infinite;
}


.footer_area {
    text-align: center;
    position: fixed;
    width: 17%;

    bottom: 0;
    left: 50%;
    transform: translate(-50%, -45%);

    box-shadow: 2px 6px 12px rgba(0,0,0,0.5);
}
.footer_area:before,
.footer_area:after {
    border: 1.5em solid #085199;
    content: '';
    display: block;
    position: absolute;
    bottom: -1em;
    z-index: -1;
}
.footer_area:before {
    left: -2em;
    border-right-width: 1.5em;
    border-left-color: transparent;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}
.footer_area:after {
    right: -2em;
    border-left-width: 1.5em;
    border-right-color: transparent;
    box-shadow: -2px 2px 2px rgba(0,0,0,0.5);
}
.footer_area div#rank_n_coins:before,
.footer_area div#rank_n_coins:after {
    content: '';
    display: block;
    position: absolute;
    border-style: solid;
    border-color: #006eca transparent transparent transparent;
    bottom: -0.85em;
}
.footer_area div#rank_n_coins:before {
    left: 0;
    border-width: .9em 0 0 .9em;
}
.footer_area div#rank_n_coins:after {
    right: 0;
    border-width: .9em .9em 0 0;
}

.footfall_text span {
    text-shadow: 0 0 10px #0188dc, 0 0 23px #0188dc, 0 0 36px #0188dc, 0 0 50px #0188dc, 0 0 63px #014E86, 0 0 75px #014E86, 0 0 88px #014E86, 0 0 100px #2aabd2;
    color: #f5dede;
    text-align: center;
    animation: blink_text 7s infinite;
    -webkit-animation: blink_text 7s infinite;
}
.footer_area div#rank_n_coins {
    text-shadow: 0 0 10px #0188dc, 0 0 23px #0188dc, 0 0 36px #0188dc, 0 0 50px #0188dc, 0 0 63px #014E86, 0 0 75px #014E86, 0 0 88px #014E86, 0 0 100px #2aabd2;
    color: #f5dede;
    text-align: center;
    animation: blink_text 15s infinite;
    -webkit-animation: blink_text 15s infinite;

    margin: 0 auto;
    padding: .5rem .75rem;
    background-color: #033671;
    font-size: 20px;
}

#rank_n_coins .h4 {
    font-size: clamp(0.8rem, 2vw, 1.3rem) !important;
}

#rank_n_coins .h3 {
    font-size: clamp(1rem, 2.5vw, 1.45rem) !important;
}
@-webkit-keyframes blink_text {
    10%, 18%, 28%, 40%, 65%, 78%, 93% {
        color: #E8DFFF;
        text-shadow: 0 0 5px #2196F3, 0 0 15px #2196F3, 0 0 25px #2196F3, 0 0 35px #2196F3, 0 0 45px #03A9F4, 0 0 55px #03A9F4, 0 0 65px #03A9F4, 0 0 75px #00e2ff;
    }
    0%, 5%, 13%, 21%, 34%, 55%, 89% {
        color: #f2f2f2;
        text-shadow: 0 0 12px #0188dc, 0 0 25px #0188dc, 0 0 37px #0188dc, 0 0 50px #0188dc, 0 0 63px #014E86, 0 0 75px #014E86, 0 0 88px #014E86, 0 0 100px #2aabd2;
    }
    100% {
        color: #f9d5d8;
        text-shadow: 0 0 12px #0188dc, 0 0 25px #2196F3, 0 0 37px #0188dc, 0 0 50px #2196F3, 0 0 63px #014E86, 0 0 75px #03A9F4, 0 0 88px #014E86, 0 0 100px #03A9F4;
    }
}
@keyframes blink_text {
    10%, 18%, 28%, 40%, 65%, 78%, 93% {
        color: #E8DFFF;
        text-shadow: 0 0 5px #2196F3, 0 0 15px #2196F3, 0 0 25px #2196F3, 0 0 35px #2196F3, 0 0 45px #03A9F4, 0 0 55px #03A9F4, 0 0 65px #03A9F4, 0 0 75px #00e2ff;
    }
    0%, 5%, 13%, 21%, 34%, 55%, 89% {
        color: #f2f2f2;
        text-shadow: 0 0 12px #0188dc, 0 0 25px #0188dc, 0 0 37px #0188dc, 0 0 50px #0188dc, 0 0 63px #014E86, 0 0 75px #014E86, 0 0 88px #014E86, 0 0 100px #2aabd2;
    }
    100% {
        color: #f9d5d8;
        text-shadow: 0 0 12px #0188dc, 0 0 25px #2196F3, 0 0 37px #0188dc, 0 0 50px #2196F3, 0 0 63px #014E86, 0 0 75px #03A9F4, 0 0 88px #014E86, 0 0 100px #03A9F4;
    }
}

@media screen and (max-width: 1366px) {
    .footer_area {
        width: 24%;
    }
}
@media screen and (max-width: 980px) {
    body {
        background-size: contain;
    }
}
@media only screen and (orientation: landscape) and (min-device-width: 480px) and (max-device-width: 1080px) {
    body {
        background-size: cover;
    }

    .footer_area {
        width: 35%;
    }
    .footer_area div#rank_n_coins {
        padding: 0.15em 0.5em;
    }
    .footer_area .h5 {
        font-size: 0.9rem;
    }
    .footer_area .h3 {
        font-size: 1.1rem;
    }
    .footer_area:before {
        border-width: 1em !important;
        bottom: -0.85em;
        left: -1em;
    }
    .footer_area:after {
        border-width: 1em !important;
        bottom: -0.85em;
        right: -1em;
    }
}


/* Toastify Custom CSS */
.toastify {
    max-width: 375px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
    display: flex;
    align-items: center;
}

/* Success */
.toast-success {
    background: linear-gradient(135deg, rgba(0, 70, 130, .95), rgba(0, 140, 255, .95)) !important;
}

/* Error */
.toast-danger {
    background: linear-gradient(135deg, rgba(0, 70, 130, .95), rgba(0, 110, 200, .95)) !important;
}

/* Warning */
.toast-warning {
    background: linear-gradient(135deg, rgba(0, 70, 130, .95), rgba(0, 110, 200, .95)) !important;
}

/* Info */
.toast-info {
    background: linear-gradient(135deg, rgba(0, 70, 130, .95), rgba(0, 140, 255, .95)) !important;
}

/* Close Button */
.toast-close {
    color: #fff !important;
    opacity: .9;
}

.toastify:hover {
    transform: translateY(-2px);
    transition: all .25s ease;
}
/* Content Layout */
.toast-content{
    display:flex;
    align-items:center;
    gap:12px;
}

/* Icon Common */
.toast-icon{
    width:28px;
    height:28px;
    min-width:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    font-size:16px;
    font-weight:700;

    animation: pulseGlow 1.5s infinite;
}

/* Success */
.success-icon{
    background:#00ff9d20;
    color:#00ff9d;
    box-shadow:0 0 15px #00ff9d;
}

/* Danger */
.danger-icon{
    background:#ff4d6d20;
    color:#ff4d6d;
    box-shadow:0 0 15px #ff4d6d;
}

/* Warning */
.warning-icon{
    background:#ffc10720;
    color:#ffc107;
    box-shadow:0 0 15px #ffc107;
}

/* Info */
.info-icon{
    background:#35d3ff20;
    color:#35d3ff;
    box-shadow:0 0 15px #35d3ff;
}

/* Message */
.toast-message{
    flex:1;
    line-height:1.4;
}
