@font-face {
    font-family: "gotham-rounded";
    src: url("../fonts/GothamRounded-Book.otf");
}

@font-face {
    font-family: "gotham-rounded";
    src: url("../fonts/GothamRounded-Bold.otf");
    font-weight: bold;
}

@font-face {
    font-family: "gotham-rounded";
    src: url("../fonts/GothamRounded-Medium.otf");
    font-weight: 600;
}

@font-face {
    font-family: "gotham-rounded";
    src: url("../fonts/GothamRounded-Light.otf");
    font-weight: 100;
}

body {
    font-family: "gotham-rounded", sans-serif;
}

main,
#page_content {
    height: 100vh;
}

.image-card {
    /* Make it act like an <img/> a bit more */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
}

.rounded-input {
    border-radius: 25px;
    /* Adjust the value to make corners more or less rounded */
    background-color: white;
    transition: border-color 0.3s;
    /* Smooth transition for border color */
    width: 100%;
    padding: 10px 56px 10px 40px;
}

.rounded-input::placeholder {
    color: #d3d3d3;
    font-size: 14px;
    /* Light grey color */
}

.circle-button-red {
    background: #ff0000;
    border-radius: 50px;
    height: 32px;
    width: 32px;
    position: absolute;
    top: 6px;
    right: 10px;
    border: none;
}

.glassmorphism {
    background: rgba(3, 3, 3, 0.25);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    border-radius: 22px;
    height: 100%;
    width: 100%;
}

.truncate-2 {
    overflow: hidden;
    display: -webkit-box;
    /* display 3 lines only */
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.c-indicators {
    width: 6px;
    height: 6px;
    padding: 0;
    border-radius: 100%;
    background: #b3b3b3;
    border: none;
    margin-right: 4px;
}

.c-indicators:hover {
    background: white;
    width: 8px;
    height: 8px;
}

.c-indicators.active {
    width: 8px;
    height: 8px;
    background: white;
}

.updated_news {
    font-size: 14px;
    color: white;
    cursor: pointer;
}

a {
    color: black;
}

a:hover {
    color: black;
}

.updated_news:hover {
    font-weight: 600;
    text-decoration: underline;
}

#dropdown_filter .dropdown-item.active {
    background-color: var(--bs-light);
    color: black;
}

#dropdown_filter .dropdown-item:hover {
    background-color: var(--bs-light);
}

#search_element {
    width: 50%;
}

.content {
    height: 260px;
}

.title-widget {
    font-size: 16px;
    text-align: center;
}

.img-news {
    object-fit: cover;
    min-height: 75%;
}

#btn_control_widget {
    font-size: 14px;
    padding: 8px 26px;
    margin-bottom: 8px;
}

.show-hide-position {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    width: fit-content;
}

#not_authenticate_menu {
    cursor: pointer;
    font-size: 0.8rem;
    padding: 12px;
    color: var(--bs-danger);
}

#authenticate_menu {
    padding: 10px;
}

.nav-menu {
    color: var(--bs-secondary);
    cursor: pointer;
    font-size: 2rem;
    object-fit: cover;
    height: 30px;
    width: 30px;
}

.list-notif {
    top: 40px;
    width: 500px;
}

.notif-avatar {
    display: flex;
}

.small-text {
    font-size: 10px;
}

.normal-text {
    font-size: 0.85rem;
}

#news_section .small-text {
    color: white;
}

#news_section .normal-text {
    color: white;
}

.restart-icon {
    color: white;
    transition: 2.5s;
}

.restart-icon.loading {
    -o-transform: rotate(720deg);
    -ms-transform: rotate(720deg);
    -moz-transform: rotate(720deg);
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
}

#floatingButton {
    position: absolute;
    bottom: 40px;
    right: 2px;
    width: 56px;
    height: 56px;
    background-color: white;
    color: var(--bs-danger);
    border: 2px solid var(--bs-danger);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 28px;
    /* Adjust the font size for the Material Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0.8;
}

#floatingButton:hover {
    background-color: var(--bs-danger);
    color: white;
    opacity: 1;
}

.floating-form {
    display: none;
    position: absolute;
    min-width: min(95%, 400px);
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 3;
    border-radius: 8px;
}

#closeFormButton {
    font-size: 24px;
    cursor: pointer;
}

.portal-logo {
    width: 230px;
}

.feature-item {
    height: 50%;
    width: 50%;
}

.feature-item div {
    height: 70%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px !important;
}

.feature-item span {
    font-size: 12px;
    color: white;
    margin-top: 4px;
}

.feature-item .feature-icon {
    color: white;
    font-size: 50px;
    transition: font-size 0.1s ease-out;
}

.feature-item .feature-icon:hover {
    color: var(--bs-danger);
    font-size: 56px;
    cursor: pointer !important;
}

#text_price {
    font-size: 24px;
}

.prevent-select {
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

/* Playback tutorial */
.circle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    opacity: 0.8;
    font-size: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-out;
}

.circle-btn:hover {
    width: 200px;
    height: 40px;
    opacity: 1;
    font-size: 14px;
    border-radius: 25px;
    color: white;
}

.circle-btn .icon-play {
    display: inline-block;
}

.circle-btn:hover .icon-play {
    display: none;
}

.circle-btn:hover .hover-text {
    display: inline-block;
}

.hover-text {
    display: none;
}

.circle-btn .icon-play i,
.hover-text i {
    font-size: 24px;
}

.cf-turnstile iframe {
    width: 100% !important;
}

#videoModal {
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
}

#videoModal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

#videoModal .modal-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
}

#videoModal .close-btn {
    z-index: 1;
    height: 20px;
    width: 20px;
    background-color: white;
    color: white !important;
    border-radius: 50%;
}

#videoModalLabel {
    font-size: 20px !important;
}

#videoPlayer {
    max-height: 80vh;
}

.otp-box {
    height: 50px;
    width: 50px;
    font-size: 24px !important;
    text-align: center;
}

.bg-alert-blue {
    background-color: #3fa2ff11;
    color: #3fa3ff;
}

.bg-alert-red {
    background-color: #ff3f3f11;
    color: #ff3f3f;
}

@media (max-width: 1200px) {
    #search_element {
        width: 60%;
    }

    .feature-item span {
        font-size: 10px;
    }

    .content {
        height: 220px;
    }

    #text_price {
        font-size: 18px;
    }

    .feature-item .feature-icon {
        font-size: 36px;
    }

    .feature-item .feature-icon:hover {
        font-size: 40px;
    }
}

/* Laptop */
@media (max-width: 992px) {
    #search_element {
        width: 75%;
    }

    .content {
        height: 150px;
    }

    .title-widget {
        font-size: 12px;
        text-align: start;
    }

    .img-news {
        height: 60%;
    }

    .updated_news {
        font-size: 12px;
    }

    #btn_control_widget {
        font-size: 12px;
    }

    .small-text {
        font-size: 8px;
    }

    .normal-text {
        font-size: 70%;
    }

    .restart-icon {
        color: white;
        font-size: 16px;
    }

    .feature-item div {
        border-radius: 10px !important;
    }

    .feature-item span {
        font-size: 6px;
    }

    .feature-item .feature-icon {
        font-size: 26px;
    }

    .feature-item .feature-icon:hover {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .otp-box {
        height: 40px;
        width: 40px;
        font-size: 18px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {

    body.mobile main,
    body.mobile #page_content {
        height: 87vh;
    }

    .content.no-title {
        height: 170px;
    }

    #search_element {
        width: 100%;
    }

    .show-hide-position {
        margin: 0 16px;
    }

    .title-widget {
        text-align: start;
        margin-left: 16px;
    }

    #not_authenticate_menu {
        font-size: 70%;
        padding: 8px;
    }

    #not_authenticate_menu .material-icons {
        font-size: 18px !important;
    }

    #authenticate_menu {
        padding: 8px;
    }

    .nav-menu {
        font-size: 1.5rem;
        height: 24px;
        width: 24px;
    }

    .list-notif {
        width: 280px;
    }

    .notif-avatar {
        display: none;
    }

    #notifications {
        font-size: 10px;
    }

    #floatingButton {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .portal-logo {
        width: 180px;
    }

    .circle-btn {
        width: 30px;
        height: 30px;
        font-size: 0px;
    }

    .circle-btn:hover {
        height: 30px;
        width: 150px;
        font-size: 10px;
    }

    .circle-btn .icon-play i,
    .hover-text i {
        font-size: 18px;
    }

    .customIntro * {
        font-size: 14px;
    }

    .customIntro .introjs-tooltip-title {
        font-size: 16px;
    }

    #videoModalLabel {
        font-size: 16px !important;
    }

    #videoModal .close-btn {
        height: 16px;
        width: 16px;
    }
}

@media (max-width: 350px) {
    #btn_control_widget {
        font-size: 10px;
        padding: 4px 10px;
    }
}

.bounce {
    animation: bounce 5s ease infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* INTRO JS CSS */
.customIntro * {
    color: var(--bs-secondary);
}

.introjs-tooltip {
    border-radius: 10px;
    padding: 8px;
}

.customIntro .introjs-tooltip-title {
    color: var(--bs-danger);
}