@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {

    --custom-primary: #009CE7;
    --primary-hover: #007bb5;
    --dark-900: #13123A;
    --dark-950: #0D0C27;
    --gray-scale-900: #111827;
    --gray-scale-500: #6B7280;
    --gray-scale-700: #374151;
    --text-color: #32302E;
    --sub-color: #747688;
    --title: #120D26;
    --dark-700: #7A7A90;
    --dark-50: #EEEEF1;
    --dark-200: #E0E0E6;
    --dark-600: #9B9BAC;
    --dark-800: #4E4D6B;
    --primary-100: #E9EAF0;
    --primary-50: #F4F5F8;
    --primary-300: #BEC1D3;
    --primary-500: #9297B5;
    --primary-700: #666E98;
    --primary-900: #3B457B;
    --primary-950: #25306C;
    --primary-800: #515989;
    --white-color: #fff;
    --accent-yellow: #FFCC00;
    --secondary-950: #A92629;

    --bg-color: #FAFAFA;
    --input-bg: #ffffff;
    --input-border: #d0d5dd;
    --error-color: #d92d20;
    --success-color: #039855;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --main-font: "Nunito Sans", sans-serif;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--main-font);
    font-size: 14px;
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-900);
}

a {
    text-decoration: none;
}

button {
    background-color: unset;
    border: unset;
}

.mb-6 {
    margin-bottom: 6px;
}

.mb_2 {
    margin-bottom: 2px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-36 {
    margin-bottom: 36px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-40 {
    margin-bottom: 40px;
}

.gap-10 {
    gap: 10px;
}

.gap-12 {
    gap: 12px;
}

.mb-124 {
    margin-bottom: 124px;
}

.text-yellow {
    color: var(--accent-yellow);
}

.black-color {
    color: #000000
}

.dark-950 {
    color: var(--dark-950);
}

.opacity-80 {
    opacity: 80%;
}

.text-color {
    color: var(--text-color);
}

.dark-800 {
    color: var(--dark-800);
}

.primary-800 {
    color: var(--primary-800);
}

.primary-700 {
    color: var(--primary-700);
}

.fs-10 {
    font-size: 10px;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.big-heading {
    font-weight: 800;
    font-size: 36px;
    line-height: 48px;
    color: var(--primary-50);
}

.heading-1 {
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
}

.heading-2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

.heading-3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.heading-5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
}

.container {
    padding-inline: 16px;
}

.bg-primary {
    background-color: var(--custom-primary);
}

.sub-color {
    color: var(--sub-color);
}

.title-color {
    color: var(--title);
}

.iti__flag {
    width: 15.6px;
    height: 15.6px;
    border-radius: 50%;
}

.main-color,
.iti__country-name {
    color: var(--dark-900);
}

.text-dark-600 {
    color: var(--dark-600);
}

.text-dark-700,
.iti__dial-code {
    color: var(--dark-700)
}

.colored {
    color: var(--custom-primary);
}

.secondary-950 {
    color: var(--secondary-950);
}

.primary-900 {
    color: var(--primary-900)
}



.modal-backdrop {
    --bs-backdrop-bg: var(--dark-900);
}

.modal-backdrop.show {
    opacity: 0.3;
}

.close-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    padding: 28px 16px 48px 16px;
    border-radius: 50px;
}

.modal-body {
    padding: 0;
}


.modal.modal-bottom-sheet .modal-dialog {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    margin: 0;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease-out;
}

.modal.modal-bottom-sheet.show .modal-dialog {
    transform: translate(-50%, 0);
}

@keyframes failure-shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-5px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.modal.modal-failure.show .modal-content {
    animation: failure-shake 0.45s ease 0.5s both;
}

.mt-minus {
    margin-top: -19px;
}

.main-badge {
    padding: 2px 8px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 18px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-badge.red {
    background-color: #F6E9EA;
    color: #F6285F;
}

.main-badge.green {
    background-color: #F0F9F8;
    color: #12A58C;
}

.main-badge.grayed {
    color: #374151;
    background-color: var(--dark-50);
    font-weight: 500;
}

.red-badge {
    background-color: #BA5154;
    color: var(--white-color);
    height: 18px;
}

.grayed-badge {
    padding: 2px 8px;
    background-color: var(--primary-500);
    border-radius: 40px;
    color: var(--white-color);
    font-size: 12px;
    line-height: 18px;
    margin-left: 8px;
}

.colored-badge {
    padding: 4px 16px;
    color: var(--custom-primary);
    background: #009CE70F;
    border-radius: 32px;
    font-size: 12px;
    line-height: 18px;
    border: 1px solid var(--white-color);
}


.form-control {
    border: 1px solid var(--dark-200);
    border-radius: var(--radius-md);
    height: 48px;
    color: var(--dark-900);
    background: var(--white-950)
}

.form-control::placeholder {
    color: #C7C7D1;
}

.form-control:not(.search-input):focus,
.form-check-input:focus,
.custom-input-group:focus-within,
.iti__search-input:focus-visible {
    box-shadow: none;
    background-color: transparent;
    border-color: var(--primary-900);
    outline: none;
}

.form-check .form-check-input {
    height: 16px;
    width: 16px;
    border: 1.5px solid #E0E0E6;
    border-radius: 5px;
}

.form-check-input:checked {
    background-color: #0D0C27;
    border-color: #0D0C27;
}

.iti {
    width: 100%;
}

.iti .iti__selected-dial-code {
    color: var(--dark-900);
    margin-left: 2px;
}

.iti__tel-input {
    padding-left: 105px !important;
}

.iti__selected-country {
    border-right: 1px solid var(--primary-100);
    padding-right: 13px;
}

.iti__selected-country-primary {
    flex-direction: row-reverse;
    gap: 4px;
}

.iti__arrow {
    margin-left: var(--iti-arrow-padding);
    width: 9px;
    height: 5px;
    border: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cpath d='M0.902478 0.203524C0.983737 0.311106 1.22634 0.632269 1.37083 0.817409C1.66021 1.18822 2.05562 1.68094 2.48215 2.17221C2.91085 2.66595 3.36119 3.14681 3.76126 3.50031C3.96187 3.67756 4.1381 3.81225 4.28352 3.89992C4.42028 3.98237 4.50107 3.99951 4.50107 3.99951C4.50107 3.99951 4.57949 3.98236 4.71625 3.89992C4.86167 3.81225 5.03789 3.67757 5.2385 3.50031C5.63858 3.14682 6.08892 2.66595 6.51761 2.1722C6.94415 1.68093 7.33955 1.1882 7.62894 0.817388C7.77342 0.632246 8.01569 0.311537 8.09695 0.203953C8.2607 -0.0183953 8.57404 -0.0663527 8.79639 0.0974028C9.01874 0.261158 9.06624 0.574157 8.90248 0.796505L8.9013 0.798062C8.81618 0.910767 8.56477 1.24363 8.41729 1.43262C8.12137 1.8118 7.71441 2.31907 7.27271 2.82781C6.83316 3.33406 6.34938 3.85319 5.90064 4.2497C5.67684 4.44744 5.44998 4.62525 5.23253 4.75634C5.02882 4.87915 4.77089 5 4.49988 5C4.22887 5 3.97095 4.87914 3.76723 4.75633C3.54979 4.62525 3.32293 4.44744 3.09913 4.24969C2.65038 3.85319 2.1666 3.33406 1.72705 2.82782C1.28535 2.31909 0.878398 1.81182 0.58248 1.43264C0.434943 1.24359 0.183627 0.910858 0.0985977 0.798282L0.0975203 0.796855C-0.066236 0.574508 -0.0189723 0.261191 0.203375 0.097435C0.425716 -0.0663161 0.738718 -0.0188054 0.902478 0.203524Z' fill='%23161616'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.iti__arrow--up {
    transform: rotate(180deg);
}

.iti__search-input {
    height: 32px;
    padding-left: 12px;
}


.btn-primary {
    background-color: var(--custom-primary);
    border-color: var(--custom-primary);
    font-weight: 700;
}

.btn-outline-primary {
    color: var(--custom-primary);
    border: 1px solid var(--custom-primary);
    font-weight: 500;
    font-size: 14px;
}

.btn:hover {
    background-color: var(--primary-900);
    border-color: var(--primary-900);
}

.btn-outline-primary.btn-sm {
    padding: 4px 16px;
    background-color: var(--white-color);
}

.btn-outlined-primary-alt {
    color: var(--primary-800);
    padding: 10px;
    border-radius: 6px;
    height: 44px;
    font-size: 16px;
    font-weight: 800;
    border: 1px solid #A8ACC4;
}

.btn-block {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
    padding: 13px 20px;
    height: 52px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.white-btn {
    background-color: var(--white-color);
    color: var(--custom-primary);
    font-size: 16px;
    border: 1.5px solid #D3D6E2;
    padding: 8px 12px;
    border-radius: 12px;
}

.btn-dray {
    background-color: #D3D6E2;
    color: #4E4D6B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.btn-sm {
    border-radius: 6px;
    padding: 6.5px 8px;
    font-size: 14px;
    white-space: nowrap;
}

.sm-header {
    font-size: 14px;
    font-weight: 700;
}

.regular-text {
    font-size: 14px;
    color: var(--dark-700);
}

.icon-btn {
    width: 48px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}





.otp-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.otp-input {
    width: 48px;
    height: 48px;
    text-align: center;
    font-size: 18px;
}


.icon-container {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.icon-primary {
    background-color: var(--primary-950);
    color: var(--white-color);
}

.primary-950 {
    color: var(--primary-950);
}

.brd-btm {
    border-bottom: 1px solid #E5E7EB;
}

.course-body {
    padding: 6px 12px 16px 12px;
}


.custom-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #E0E0E6;
    padding-inline: 16px 14px;
    border-radius: var(--radius-md);
}

.custom-input-group .form-control {
    border: none;
}

.form-control.h-44 {
    height: 44px;
}

.custom-input-group .input-icon {
    font-size: 16px;
    color: #C7C7D1;
}

.custom-input-group .fa-lock {
    color: var(--primary-900);
}

.custom-input-group .fa-eye,
.custom-input-group .fa-eye-slash {
    color: #C7C7D1;
}







.home-header {
    background: linear-gradient(180deg, #0090e7 0%, #007bb5 100%);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 20px 20px 100px;

    color: white;
    position: relative;
    overflow: hidden;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header-icons .btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}


.speaker-card {
    min-width: 120px;
    text-align: center;
}

.partner-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
}

.img-80 {
    width: 80px;
}

/* 
.outlined-red-btn {
    color: #A92629;
    border: 1px solid #A92629;
    font-weight: 700;
} */

.speaker-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--custom-primary);
}

.speaker-role {
    font-size: 11px;
    color: var(--dark-700);
}


.promo-banner {
    background: #84bd00;

    border-radius: 20px;
    margin: 0 20px 30px;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-content {
    max-width: 60%;
    z-index: 1;
}

.promo-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
}

.btn-promo {
    background: white;
    color: var(--dark-900);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}


.partner-card {
    min-width: 100px;
    text-align: center;
}

.partner-logo-box {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px;
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
}

.partner-type {
    font-size: 12px;
    font-weight: 600;
    color: var(--custom-primary);
}

.partner-label {
    font-size: 11px;
    color: var(--dark-700);
}


.bottom-nav-spacer {
    height: 93px;
}




.nav-center-wrapper {
    position: relative;
    top: -35px;
}

.floating-home {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
    padding: 5px;
}

.floating-home-inner {
    width: 100%;
    height: 100%;
    background: var(--custom-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}




.dark-btn {
    background-color: var(--dark-950);
    color: var(--white-color);
    padding-block: 9px;
    font-weight: 800;
    font-size: 16px;
}





.menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item-card {
    background: white;
    border-radius: 16px;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--dark-900);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f2f4f7;
    transition: all 0.2s;
}

.menu-item-card:hover {
    border-color: var(--custom-primary);
}


.menu-item-card .accordion-button {
    color: var(--dark-900);
    font-weight: 500;
}

.menu-item-card .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.menu-item-card .accordion-button:not(.collapsed) {
    color: var(--custom-primary);
    background-color: transparent;
    box-shadow: none;
}


.accordion-button {
    --bs-accordion-btn-icon: none;
    --bs-accordion-btn-active-icon: none;
}


.accordion-button::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 7 13' fill='none'%3E%3Cpath d='M0.75 11.75L5.34317 7.22222C5.88561 6.6875 5.88561 5.8125 5.34317 5.27778L0.75 0.75' stroke='%2325306C' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 7px 13px;
    width: 7px;
    height: 13px;
    margin-left: auto;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M12.1462 7.19471C12.0243 7.03334 11.6604 6.5516 11.4436 6.27389C11.0096 5.71767 10.4165 4.97858 9.77665 4.24169C9.13361 3.50107 8.4581 2.77978 7.85799 2.24954C7.55707 1.98366 7.29274 1.78162 7.07461 1.65013C6.86945 1.52645 6.74827 1.50073 6.74827 1.50073C6.74827 1.50073 6.63064 1.52645 6.4255 1.65012C6.20738 1.78162 5.94304 1.98365 5.64213 2.24953C5.04201 2.77978 4.3665 3.50108 3.72346 4.2417C3.08366 4.9786 2.49055 5.7177 2.05647 6.27392C1.83975 6.55163 1.47634 7.0327 1.35446 7.19407C1.10883 7.52759 0.63882 7.59953 0.305298 7.3539C-0.0282253 7.10826 -0.0994742 6.63877 0.146159 6.30524L0.148077 6.3027C0.275917 6.13345 0.652817 5.63443 0.873949 5.35108C1.31783 4.7823 1.92826 4.02139 2.59081 3.25829C3.25013 2.49891 3.9758 1.72021 4.64892 1.12546C4.98462 0.828839 5.32491 0.562122 5.65108 0.365496C5.95665 0.18128 6.34355 0 6.75006 0C7.15657 0 7.54346 0.181286 7.84904 0.365502C8.1752 0.562128 8.51549 0.828843 8.85119 1.12546C9.52431 1.72021 10.25 2.4989 10.9093 3.25827C11.5719 4.02137 12.1823 4.78226 12.6262 5.35104C12.8474 5.63459 13.2244 6.13363 13.3519 6.30253L13.3536 6.30472C13.5992 6.63824 13.5283 7.10821 13.1948 7.35385C12.8613 7.59947 12.3918 7.52821 12.1462 7.19471Z' fill='%23161616'/%3E%3C/svg%3E");
    background-size: 14px 8px;
    width: 14px;
    height: 8px;
}


.menu-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #344054;
}



.special-events-banner {
    background: var(--custom-primary);
    border-radius: 14.7px;
    padding: 9.5px 16px;
    position: relative;
    overflow: hidden;
    min-height: 110px;
}

.banner-bg-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 20%;
}

.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ticket-card {
    background: var(--white-color);
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.ticket-left {
    flex: 1;
    padding: 24px 0 27px 13px;
    border: 1px solid var(--primary-100);
    border-right: none;
    border-radius: 10px 0 0 10px;
}

.ticket-right {
    width: 140px;
    padding: 16px 10px 16px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-100);
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.ticket-divider {
    width: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dashed-line {
    flex: 1;
    border-left: 2px dashed #F4F2F5;
    width: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.notch-top,
.notch-bottom {
    width: 32px;
    height: 27px;
    background-color: var(--bg-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border: 1px solid var(--primary-100);
}

.notch-top {
    top: -13px;
}

.notch-bottom {
    bottom: -16px;
}

.ellipse {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 21px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipse button::before {
    content: "...";
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 14px;
    background: var(--white-color);
    color: var(--primary-800);
    padding-inline: 4px;
}

.ellipse button {
    position: absolute;
    bottom: 0;
    right: 10px;
    background: white;
    padding-left: 18px;
    padding-right: 12px;
}

.main-header {
    padding-block: 40px 12px;
    /* padding-block: 53.8px 12px; */
    overflow: hidden;
    margin-bottom: 24px;
    height: 217px;
    background-repeat: no-repeat;
    background-size: cover;
}

.courses-details-header {
    background-image: url(../images/lecture.jpg);
    margin-bottom: 0;
}

.custom-header {
    background: var(--custom-primary);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    color: var(--dark-50);
}

.dark-header {
    background: var(--dark-900);
    padding-top: 40px;
}

.mt-minus-3 {
    margin-top: -16px;
}

.speaker-profile-header {
    background-image: url(../images/header-bg.png);
}

.about-header {
    background-image: url(../images/about-header-bg.svg);
}

.participants img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--white-color);
}

.participants img:not(:first-of-type) {
    margin-left: -12px;
}

.custom-header h6 {
    color: var(--dark-50);
    font-weight: 800;
}

.custom-header .container {
    position: relative;
    z-index: 2;
}

.custom-header .header-decor {
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-left-radius: 24px;
}

.header-icon-badge {
    position: relative;
    width: 32px;
    height: 32px;
    background: #FFFFFF4D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-dot {
    position: absolute;
    top: 6px;
    right: 4px;
    background: var(--secondary-950);
    color: var(--dark-50);
    font-size: 7px;
    width: 10px;
    height: 10px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon-badge:nth-child(2) .badge-dot {
    right: 8px;
}


.event-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
}

.markdent {
    width: 56px;
    height: 56px;
}

.search-container {
    position: relative;
    margin-top: 18px;
}

.search-input {
    border-radius: 12px;
    padding: 10px 10px 10px 48px;
    background-color: var(--bg-color);
    border: 1px solid var(--dark-200);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.overflow-y-auto::-webkit-scrollbar {
    display: none;
}

.filter-scroll {
    display: flex;
    overflow-x: auto;
    gap: 4px;
    scrollbar-width: none;
}

.filter-btn {
    padding: 5px 16px;
    height: 32px;
    white-space: nowrap;
    font-size: 12px;
    color: var(--custom-primary);
    background-color: transparent;
    border: 1px solid var(--primary-300);
    border-radius: 32px;
}

.filter-btn.active {
    background-color: var(--custom-primary);
    color: var(--primary-50);
    font-weight: 700;
    font-size: 14px;
    border-color: var(--custom-primary);
}

.filter-scroll::-webkit-scrollbar {
    display: none;
}

.speaker-avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.speaker-avatar-lg {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
}

.flag-badge {
    position: absolute;
    top: 8px;
    right: 4px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    object-fit: cover;
}


.btn-icon-white {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}


.lecture-card {
    min-width: 237px;
    background: var(--white-color);
    box-shadow: 0px 8px 30px 0px #5055880F;
    border-radius: 18px;
    overflow: hidden;
    padding: 9px 10px 19px 10px;
}

.lecture-img-box {
    height: 131px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
}





.date-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #FFFFFFB2;
    border-radius: 10px;
    font-size: 10px;
    text-align: center;
    min-width: 45px;
    height: 45px;
    color: var(--primary-900);
}

.date-badge .fw-bold {
    font-size: 18px;
}

.btn-favorite {
    border-radius: 50%;
    background: #F9FAFB;
    color: #FF383C;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lecture-card .btn-favorite {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
}


.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f2f4f7;
    margin-bottom: 20px;
}

.course-img-box {
    position: relative;
    height: 120px;
}

.course-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge-white {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--bg-color);
    color: var(--dark-900);
    font-size: 10px;
    border-radius: 6px;
    padding: 5px 8px;
    text-align: center;
    min-width: 40px;
}



.cart-header {
    background: white;

}

.cart-item {
    background: var(--white-color);
    border-radius: 16px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 4px 4px 0px #B15CDE08;

}

.cart-item-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.btn-delete {
    width: 30.4px;
    height: 28px;
    border-radius: 4px;
    background: #C7626424;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-delete:hover {
    background: #fee4e2;
}

.security-banner {
    background: #F5FAFF;
    border: 1px solid #B2DDFF;
    border-radius: 8px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    color: var(--dark-900);
    overflow: hidden;
}

.security-banner::before,
.section-header-strip::before,
.event-card-timeline::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.security-banner::before {
    width: 8px;
    background-color: rgba(21, 112, 239, 0.7);
    border-radius: 8px 0 0 8px;
}

.section-header-strip::before,
.event-card-timeline::before {
    width: 4px;
    border-radius: 4px 0 0 4px;
}

.event-card-timeline::before {
    background-color: var(--primary-950);
}


.section-header-strip {
    border-radius: 4px;
    padding-inline: 15px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: #454545;
    margin-bottom: 12px;
}

.section-header-strip.green {
    background: #34C75933;
}

.section-header-strip.green::before {
    background: #34C759;
}

.section-header-strip.red {
    background-color: #EED4D4;
}

.section-header-strip.red::before {
    background: #E23424;
}

.section-header-strip.blue {
    background: #0088FF33;

}

.section-header-strip.blue::before {
    background: #0088FF;
}

.summary-card {
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
}

.app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white-color);
    padding: 12px 16px 32px;
    z-index: 1000;
}

.btn-block.h-44 {
    font-weight: 800;
    height: 44px;
    padding-block: 9px;
    border-radius: 6px;
}



.checkout-card {
    background-color: var(--white-color);
    border: 1px solid #F4E9FA;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #E9F5FF;
    color: var(--primary-950);
    font-size: 16px;
    border-radius: 5px;
    padding: 12px;
    cursor: pointer;
}

.checkout-card .payment-option-card:nth-of-type(3) img {
    width: 24px;
    height: 24px;
}

.payment-option-card:has(input:checked) {
    border-color: var(--custom-primary);
    background: #e0f2fe;
}

.custom-radio {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid var(--primary-950);
}

.custom-radio:checked {
    background-color: transparent;
    border-color: var(--primary-950);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23101828'/%3e%3c/svg%3e");
    background-size: 100% 100%;
}

.empty-container {
    min-height: 70vh;
}

.empty-icon img {
    width: 102px;
}



.notification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: transparent;
}

.notification-item.unread {
    background: var(--primary-50);
    border-left: 5px solid var(--custom-primary);
}

.notification-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #F4F5F8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-label {
    letter-spacing: 2px;
}

.bg-gryed {
    background-color: #EEEEF1;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.mark-read-link {
    color: #7BA205;
}

.unread .notification-icon {
    background: var(--bg-color);
}

.btn-pay {
    background-color: #BA5154;
    border-color: #BA5154;
    color: var(--white-color);
    border-radius: 10px;
    font-weight: 700;
    height: unset;
    padding: 6px 24px;
}

.summary-card .btn-pay {
    margin-top: 12px;
}

.notif-empty h5 {
    color: #344B67;
    line-height: 34px;
}

.notif-empty p {
    color: #344B67;
    font-size: 16px;
    line-height: 28px;
}





.available-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #25D366;
    color: white;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.06px;
    padding: 3px 8px;
    border-radius: 12px 0 12px 0;
}





.qr-code {
    background-image: url(../images/qr-bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 163px;
    display: flex;
    align-items: center;
}

.qr-code-img {
    width: 38%;
}

.qr-code-text {
    width: 62%;
}

.move-badge {
    background-color: var(--primary-900);
    color: var(--white-color);
    font-size: 16px;
    height: 30px;
}

.ticket {
    padding: 12px 29px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 69px;
    background-repeat: no-repeat;
}

.ticket.blue {
    background-image: url(../images/ticket-blue.svg);
}

.ticket.green {
    background-image: url(../images/ticket-green.svg);
}

.ticket.red {
    background-image: url(../images/ticket-red.svg);
}



.ticket-selection-card {
    background: transparent;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #E5E7EB;
    min-height: 173px;
    transition: all 0.2s;
}

.ticket-selection-card:has(input:checked) {
    background: var(--primary-950);
    color: var(--primary-50);
    border-color: var(--primary-950);
}

.card-price-text {
    font-size: 30px;
    color: var(--primary-950);
    font-weight: 700;
}

.card-currency-text {
    color: #7C83A7;
    margin-inline-start: 2px;
}

.card-date-text {
    font-size: 16px;
    color: var(--dark-700);
}

.ticket-selection-card:has(input:checked) .card-title-text,
.ticket-selection-card:has(input:checked) .card-price-text {
    color: white !important;
}

.ticket-selection-card:has(input:checked) .card-currency-text,
.ticket-selection-card:has(input:checked) .card-date-text,
.ticket-selection-card:has(input:checked) .ticket-icon-circle+span {
    color: var(--primary-50);
}

.ticket-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0px 4px 11px 0px #00000005;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 6px;
}

.ticket-icon-circle+span {
    font-size: 16px;
    color: var(--gray-scale-900)
}

.custom-radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--custom-primary);
    float: right;
}

.custom-radio-circle+div {
    padding-top: 12px;
}

.ticket-selection-card:has(input:checked) .custom-radio-circle {
    border: 2px solid white;
    background-color: transparent;
    position: relative;
}

.ticket-selection-card:has(input:checked) .ticket-icon-circle {
    background-color: var(--primary-100);
}

.ticket-selection-card:has(input:checked) .custom-radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13.3px;
    height: 13.3px;
    background-color: var(--primary-50);
    border-radius: 50%;
}










.date-card {
    background: var(--white-color);
    border-radius: 10.91px;
    flex: 1;
    text-align: center;
    overflow: hidden;
    box-shadow: 0px 21.82px 21.82px 0px #0000000D;
    transition: all 0.2s;
    height: fit-content;
}

.date-content span {
    font-size: 15px;
}

.date-card.active .date-content span {
    font-size: 20px;
}

.date-top-bar {
    height: 10px;
    background: #bae6fd;
}

.date-card.active .date-top-bar {
    background: var(--custom-primary);
    height: 17.456050872802734px;
}

.date-card.active .heading-5 {
    font-size: 30px;
}

.date-content {
    padding: 3.75px;
}





.timeline-container {
    position: relative;
}

.timeline-row {
    display: flex;
    gap: 13px;
    position: relative;
}

.timeline-time {
    min-width: 60px;
    color: #454545;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.timeline-time .line {
    display: block;
    height: 16px;
    width: 3px;
    background-color: var(--primary-300);
    border-radius: 8px;
    padding-block: 4px;
}




.event-card-timeline {
    background: var(--primary-50);
    border-radius: 4px;
    padding: 4px 4.5px 5px 13.5px;
    flex: 1;
    position: relative;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-card-timeline .btn-favorite {
    width: 30px;
    height: 30px;
    font-size: 18px;
}


.exhibitor-card {
    background: var(--white-color);
    border-radius: 16px;
    height: 63.78742599487305px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0px 10px 20px 0px #0000000D;
}

.exhibitor-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}




.exhibitor-logo-large {
    width: 120px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibitor-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card-small {
    background: var(--white-color);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #A8ACC4;
    position: relative;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-small>img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.download-btn {
    position: absolute;
    bottom: 6px;
    right: 5px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn img {
    width: 13.4px;
}



.info-card-item {
    flex: 1;
    text-align: center;
}

.vertical-divider {
    width: 1px;
    height: 41px;
    background: #E8E8EC;
}



.team-avatar {
    width: 52px;
    height: 52px;
    background: var(--primary-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}





.about-event-header {
    background: linear-gradient(180deg, #89f7fe 0%, #66a6ff 100%);
    padding: 20px 20px 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    color: white;
    margin-bottom: -20px;
}

.event-info-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.info-section {
    padding: 10px;
    text-align: center;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #0090e7;
    font-size: 18px;
}

.info-label {
    font-size: 12px;
    color: #667085;
    margin-bottom: 5px;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: #101828;
}






.transport-result-card {
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: 16px;
    padding: 14px;
}

.btn-md.btn-primary {
    padding-block: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}








.about-event-header {
    background: linear-gradient(180deg, #89f7fe 0%, #66a6ff 100%);
    padding: 20px 20px 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    color: white;
    margin-bottom: -20px;
}

.event-info-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.info-section {
    padding: 10px;
    text-align: center;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #0090e7;
    font-size: 18px;
}

.info-label {
    font-size: 12px;
    color: #667085;
    margin-bottom: 5px;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: #101828;
}

.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 140px;
    background: var(--bg-color);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #0090e7;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker i {
    color: white;
    font-size: 20px;
    transform: rotate(45deg);
}


.terms-content {
    padding: 0;
}

.terms-section {
    margin-bottom: 30px;
}

.terms-heading {
    font-size: 16px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 12px;
}

.terms-text {
    font-size: 14px;
    line-height: 1.6;
    color: #667085;
    margin-bottom: 12px;
}


.event-categories-header {
    background: linear-gradient(180deg, #2C3E50 0%, #34495E 100%);
    padding: 20px 20px 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    color: white;
    margin-bottom: 20px;
}

.category-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 160px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    mask-image: linear-gradient(to left, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%);
}

.category-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    z-index: 1;
}


.page-header {
    position: sticky;
    top: 0;
    background-color: var(--bg-color);
    z-index: 99;
    margin-bottom: 16px;
    box-shadow: 0px 8px 12px 0px #683BFC0D;
    display: flex;
    align-items: center;
    gap: 4px;
    padding-block: 16px;
}

.page-header a,
.bck-btn,
.icon-20 {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btns {
    padding: 6px 10px;
}

.page-header h6 {
    font-weight: 700;
}

.grid-row {
    --bs-gutter-x: 8px;
}

.avatar-36 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.absolute-flag {
    width: 11.4px;
    height: 11.4px;
    border-radius: 50%;
    top: 2px;
    right: -4px;
    position: absolute;
}

.white-box {
    padding: 20px 16px;
    box-shadow: 0px 8px 32px 0px #B15CDE1A;
    background-color: var(--white-color);
    border-radius: 16px;
}

.white-box.row-box {
    padding: 0 16px 16px;
    display: flex;
    align-items: end;
    gap: 8px;

}

.picked-up {
    margin-top: -70px;
}

.share-icons {
    color: #3C3E56;
    font-size: 13px;
    gap: 21px;
    max-width: 360px;
}

.share-icons button {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.share-icons button:not(:first-child) span {
    margin-top: -21px;
}

.app-footer span {
    color: var(--primary-950);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.app-footer h5 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-scale-900);
    line-height: 27px;
}

.app-footer div {
    border-bottom: 1px solid #E5E7EB;
    margin-inline: 13px;
    padding-block: 8px;
}

.dark-scale-900 {
    color: var(--gray-scale-900);
}

.gray-scale-500 {
    color: var(--gray-scale-500);
}

.gray-scale-700 {
    color: var(--gray-scale-700);
}

.partner-header {
    background-color: var(--dark-50);
    padding: 13px 16px;
}


.choices {
    margin-bottom: 0;
}

.choices__inner {
    border: 1px solid var(--dark-200);
    border-radius: 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 4px 16px;
    font-size: 14px;
}

.choices.is-open .choices__inner {
    border-color: var(--dark-900);
    border-radius: 12px 12px 0 0;
}

.choices__list--single {
    padding: 0;
    color: var(--dark-900);
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
    border-radius: 0 0 12px 12px;
    border-color: var(--dark-900) !important;
}



.choices__list--dropdown .choices__item {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark-900);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: var(--bg-color) !important;
    color: var(--custom-primary);
}

.choices__input {
    background-color: #f9fafb;
    border: 1px solid #d0d5dd;
    margin-bottom: 8px;
    padding: 8px 12px;
}


.choices[data-type*="select-one"]::after {
    border-color: #344054 transparent transparent transparent;
    border-width: 6px 6px 0 6px;
    right: 20px;
    margin-top: -3px;
}

.choices[data-type*="select-one"].is-open::after {
    border-color: transparent transparent #344054 transparent;
    border-width: 0 6px 6px 6px;
    margin-top: -3px;
}

.profile-avatar {
    position: relative;
    width: fit-content;
    margin-inline: auto;
}

.profile-avatar>img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.camera-icon {
    width: 20px;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 20px;
    border-radius: 4px;
    background-color: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-btn {
    padding: 5px 10px;
    flex: 1;
    font-size: 12px;
    color: var(--custom-primary);
    border: 1px solid #BEC1D3;
    border-radius: 32px;
}

.tab-btn.active {
    background-color: var(--custom-primary);
    color: var(--primary-50);
    font-weight: 700;
    font-size: 14px;
    border-color: var(--custom-primary);
}

.certification-card {
    border: 1px solid #B9B9B94D;
    background-color: var(--white-color);
    border-radius: 12px;
    margin-bottom: 10px;
}

.certification-card .img-certifcate {
    height: 100px;
}

.certificate-text {
    padding: 12px 8px 8px 8px;
}

.row-gutter-10 {
    --bs-gutter-x: 10px;
}

.btn-icon-grey {
    background-color: #D3D6E2;
    min-width: 28px;
    height: 28px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-card {
    display: flex;
    min-height: 144px;
    border-radius: 8px;
    overflow: hidden;
    background: #7BA205;
}


.banner-content {
    flex: 0 0 55%;
    padding: 4px 6px 4px 14px;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}




.banner-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 120px;
    border-bottom-left-radius: 120px;
    transform: scaleY(1.5);
}

.bg-gray {
    background-color: var(--bg-color);
}

.modal-body-scroll {
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body-scroll::-webkit-scrollbar {
    display: none;
}

.grid-row-12 {
    --bs-gutter-x: 12px;
}

.colored-card {
    border: 1px solid #B9B9B94D;
    color: #3C3C4399;
    box-shadow: none;
}

.colored-card .course-body {
    padding: 8px 12px;
}

.ellipse-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.event-banner {
    border-radius: 16px;
    overflow: hidden;
    height: 126px;
}

.event-banner img {
    margin-top: -10px;
}

.carousel-indicators {
    margin-bottom: 0;
    bottom: -30px;
}

.carousel-indicators [data-bs-target] {
    width: 6.51px;
    height: 6.51px;
    border-radius: 50%;
    opacity: 1;
    background-color: #D3D6E2;
}

.carousel-indicators .active {
    background-color: #91BC0E;
}

.banner-carousel {
    border-radius: 16px;
    margin-top: -42px;
}

.colored-carousel {
    padding: 12px;
    border-radius: 16px;
    background: #65B9FF3B;
}

.home-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 20px 12px 20px;
    background-color: var(--white-color);
    border-radius: 16px;
    color: var(--primary-950);
    position: relative;
    height: 106px;
    margin-bottom: 8px;
    overflow: hidden;
}

.card-shape {
    position: absolute;
    top: 0;
    left: 0;
}

.white-gray-btn {
    background-color: #F3F4F6;
    padding: 7px 23px;
    color: var(--dark-950);
    font-size: 12px;
    font-weight: 700;
    border-radius: 56px;
    width: fit-content;
}

.grid-row-15 {
    --bs-gutter-x: 15px;
}

.list-card {
    display: block;
    border-radius: 10px;
    height: 152px;
    margin-bottom: 18px;
}

.list-card-img {
    margin-right: -6px;
    height: 123px;
}

.list-card.blue {
    background: linear-gradient(180deg, #46B5F4 0%, #4F74D5 100%);
    height: 162px;
}

.list-card.orange {
    background: linear-gradient(180deg, #F4A446 0%, #D56F4F 100%);
}

.list-card.green {
    background: linear-gradient(180deg, #46F457 0%, #0F8729 100%);
}

.list-card.red {
    background: linear-gradient(180deg, #F44646 0%, #A20909 100%);

}

.list-card.move {
    background: linear-gradient(180deg, #F446E3 0%, #941487 100%);
}

.list-card.darkblue {
    background: linear-gradient(180deg, #0D09D0 0%, #060462 100%);
}

.list-card.yellow {
    background: linear-gradient(180deg, #F4A446 0%, #D57304 100%);

}

.list-card.maincolors {
    background: linear-gradient(180deg, #09D0AC 0%, #9795ED 100%);
}

.list-card h6 {
    padding-left: 11px;
    padding-bottom: 6px;
}

.list-card.blue h6 {
    margin-top: -8px;
}

.list-card.maincolors h6 {
    margin-top: -14px;
}

.list-card:not(.blue):not(.maincolors) h6 {
    margin-top: -20px;
}


.profile-header-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.profile-avatar-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-50);
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.profile-action-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-50);
    padding: 10px 16px;
    border-radius: 4px;
    box-shadow: 0px 2px 3px 0px #0000000D;
}

.profile-menu-list {
    margin-top: 24px;
}

.profile-menu-list .profile-action-card {
    background-color: var(--white-color);
    padding: 12px 16px;
}

.profile-menu-list .profile-action-card:not(:last-child) {
    margin-bottom: 8px;
}


.wavy-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
}

.nav-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2;
    padding-bottom: 10px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-500);
    font-size: 10px;
    gap: 4px;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.nav-item.active img {
    opacity: 1;
}

.nav-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

.floating-menu-btn {
    position: absolute;
    bottom: 35px;
    width: 50px;
    height: 50px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.floating-menu-btn img {
    width: 24px;
    height: 24px;
}

.navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10000;
    background: var(--white-color);
    box-shadow: 5px 4px 11px 0px #0000004F;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px 35px 0 0;
    z-index: 1000;
}

.navigation ul {
    display: flex;
    width: 100%;
    position: relative;
}

.navigation ul li {
    position: relative;
    list-style: none;
    flex: 1;
    height: 93px;
    z-index: 1;
}

/* link */
.navigation ul li a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    color: var(--dark-800);
    height: 100%;
    text-align: center;
}

.navigation ul li.active a {
    color: var(--custom-primary);
}

/* icon */
/* .navigation ul li a .icon {
    line-height: 75px;
    transition: 0.4s;
    z-index: 99;
} */

/* active icon lift */
/* .navigation ul li.active a .icon {
    transform: translateY(-49px);
} */

.navigation ul li.active a .icon svg path {
    stroke: var(--custom-primary);
}

/* text */
/* .navigation ul li a .text {
    position: absolute;
    font-size: 12px;
    color: var(--dark-800);
    transform: translateY(22px);
    transition: 0.4s;
}

.navigation ul li.active a .text {
    color: var(--custom-primary);
    font-weight: 700;
} */

/* INDICATOR */
/* .indicator {
    position: absolute;
    top: -27px;
    left: 50%;
    width: 54px;
    height: 54px;
    background: var(--white-color);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow:
        0 0 40px rgba(0, 0, 0, .1),
        0 0 0 1px rgba(255, 255, 255, .5) inset;
    transition: 0.4s cubic-bezier(.68, -0.55, .27, 1.55);
    z-index: 0;
} */

.visa-card {
    box-shadow: 0px 4px 10px 0px #458FFF33;
    padding: 20px 20px 20px 24px;
    background-color: #85B3F7;
    color: var(--white-color);
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.blur-shape {
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 114px;
    height: 178px;
    background: #003A92;
    filter: blur(25px);
    border-radius: 60% 40% 50% 70% / 60% 70% 40% 50%;
    opacity: 0.9;
}

.blur-shape-blue {
    position: absolute;
    width: 110px;
    height: 123px;
    background: #4E8BE6;
    filter: blur(10px);
    opacity: 1;
    top: -30px;
    left: -30px;
    border-radius:
        65% 35% 55% 45% / 70% 60% 40% 30%;
}

.visa-card .form-control {
    height: unset;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 800;
}

.img-66 {
    width: 66px;
}

.img-28 {
    width: 28px;
}