
/* Variables */
:root {
    --wb-gradient-biais: linear-gradient(315deg,rgb(242, 251, 252) 0%, rgb(199, 231, 255) 100%);
    --wb-gradient-horizontal: linear-gradient(180deg,rgba(242, 251, 252, 1) 0%, rgba(199, 231, 255, 1) 100%);
}


/* un padding car fuck le menu qui gene h24 */
.elementor-html #page #masthead{
    margin-bottom: 150px;
}

body {
    .wtb-container {
        border-radius: 15px;
        background-color: var(--wb-color-blue-lighter);
        padding: 25px;
    }

    .wtb-subtitle {
        font-size: 1rem;
        font-weight: 500;
        color: #fff !important;
        background-color: var(--wb-color-blue-dark) !important;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        width: fit-content;

        &.wtb-subtitle-light {
            color: var(--wb-color-blue-dark) !important;
            background-color: var(--wb-color-blue-lighter) !important;
        }

        &.wtb-subtitle-ondark {
            color: var(--wb-color-blue-dark) !important;
            background-color: #fff !important;
        }

    }

    .wtb-title-emoji {
        margin-right: 5px;
    }
}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1023px) {
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 575px) {
}


/* ====== MODAL SECTION ====== */
.wtb-modal {
    display: none;
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;

    &.show {
        display: flex;
        opacity: 1;
    }
    .modal-text {
        overflow: scroll;
    }
    .modal-content {
        position: relative;
        background: white;
        padding: 20px;
        border-radius: 10px;
        animation: wtbModalFadeIn 0.3s ease-out;
        height: fit-content;
        max-width: 50vw;
        max-height: 75vh;
        top: 150px;
    }
    .close {
        cursor: pointer;
        user-select: none;
    }
    .close.top-right {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
        font-weight: bold;
    }
    .close.center-bottom {
        display: block;
        margin: 20px auto 0;
        background: #f00;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    .wtb-modal {
        .modal-content {
            max-width: 75vw;
            top: 80px;
        }
    }
}
@media screen and (max-width: 575px) {
    .wtb-modal {
        .modal-content {
            max-width: 75vw;
            top: 40px;
        }
    }
}
/* ====== END MODAL SECTION ====== */


@media screen and (min-width: 1023px) {
    .w-lg-75 {
        width: 75% !important;
    }



}