/*@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@100..900&display=swap');

:root {
    --primary-color: #635BFF;
    --primary-color-30: rgba(100, 92, 255, 0.3);
    --primary-color-10: rgba(100, 92, 255, 0.1);
    --secondary-color: rgba(10, 37, 64);
    --secondary-color-30: rgba(10, 37, 64, 0.3);
    --secondary-color-50: rgba(10, 37, 64, 0.5);
    --bengali-font: "Noto Sans Bengali", sans-serif;
}

*,html,body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}
.body-overflow-hidden {
    overflow: hidden;
}
img {
    user-select: none;
    -webkit-user-select: none; /* For WebKit browsers like Chrome, Safari */
    -moz-user-select: none;    /* For Firefox */
    -ms-user-select: none;     /* For Internet Explorer/Edge */
    user-drag: none;
    -webkit-user-drag: none;   /* For WebKit browsers */
    pointer-events: none;      /* Prevents all pointer events on the image */
}
.noto-sans-bengali-font {
    font-family: "Noto Sans Bengali", sans-serif;
    font-style: normal;
}

.area {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;

}
h1 {
    font-size: 37px;
    font-weight: 600;
    line-height: 50px;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h2 {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 600;
}
.container-title {
    font-size: 22px !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hide spin buttons in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

div.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    & div.child {
        position: relative;
        width: 600px;
        padding: 25px;
        background-color: #fff;
        height: auto;
        border-radius: 24px;
    }
    & div.child button.close {
        position: absolute;
        top: -55px;
        right: 0;
        height: 42px;
        width: 42px;
        background-color: #fff;
        border: 0;
        outline: none;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    & div.child button.close svg {
        height: 18px;
        width: 18px;
        display: flex;
    }
    & div.child button.close:hover svg {
        fill: var(--primary-color);
    }
    & div.child p.title {
        font-size: 22px;
        font-weight: 600;
    }
    & div.child p.subtitle {
        font-size: 17px;
        font-weight: 400;
        margin-top: 5px;
        color: #353535;
        margin-bottom: 20px;
    }
}
div.popup.confirmation div.child {
    width: 470px;
    & p.subtitle {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 24px;
    }
    & div.action-buttons {
        display: flex;
        align-items: center;
        margin-top: 20px;
        gap: 20px;
    }
    & div.action-buttons button {
        flex: 1;
        height: 38px;
        font-size: 15px;
        border-radius: 50px;
        border: 1px solid var(--secondary-color-50);
        font-weight: 600;
        text-transform: uppercase;
        transition: all 150ms ease-in-out;
        cursor: pointer;
    }
    & div.action-buttons button:nth-child(1) {
        background-color: transparent;
        color: var(--secondary-color);
    }
    & div.action-buttons button:nth-child(1):hover {
        background-color: var(--secondary-color);
        color: #fff;
    }
    & div.action-buttons button:nth-child(2) {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    & div.action-buttons button:nth-child(2):hover {
        opacity: 0.8;
    }
}
div.popup[data-visibility="hidden"],
div[data-visibility="hidden"] {
    display: none;
}
@media only screen and (max-width: 1040px) {
    h1 {
        font-size: 32px;
        /*font-weight: calc(32px + 13px);*/
    }
    h2 {
        font-size: 27px;
    }

    .container-title {
        font-size: 18px !important;
    }
    
}