/* CSS FOR FONT */
@font-face {
    font-family: 'Geist Variable VF';
    src: url('../fonts/Geist/GeistVariableVF.woff2') format('woff2');
    font-weight: 1 1000;
    font-stretch: 1% 100%;
    font-style: normal;
}

@font-face {
    font-family: 'Geist Black';
    src: url('../fonts/Geist/Geist-Black.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geist Bold';
    src: url('../fonts/Geist/Geist-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geist Light';
    src: url('../fonts/Geist/Geist-Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geist Medium';
    src: url('../fonts/Geist/Geist-Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geist Regular';
    src: url('../fonts/Geist/Geist-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geist Semibold';
    src: url('../fonts/Geist/Geist-SemiBold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geist Thin';
    src: url('../fonts/Geist/Geist-Thin.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geist Ultrablack';
    src: url('../fonts/Geist/Geist-UltraBlack.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geist Ultralight';
    src: url('../fonts/Geist/Geist-UltraLight.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* GENERAL [START] */
:root {
    --maincolor: #73af38;
}

html,body {
    margin:0;
    padding:0;
    background-color: white;
    font-family: 'Geist Regular', sans-serif;
    height:100%;
}

#page-container {
    height: 100%;
    transition: 0.2s;   
    background: white;
    min-height: 100%;
}

#page-content {
    display:flex;
    flex-direction: column;
    align-items: center; 
    gap:10px;
    width:100%;
    height:100%;
    min-height: 100vh;
    margin-top: 80px;
}

.pageTitle {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 20px;
    font-size: 25px;
    font-weight: bold;
    border-bottom: 1px solid lightgray;
}

/* GENERAL [END] */

/* Scroll bar START*/
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    ::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px rgb(255, 255, 255, 0); 
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: #c3c3c3; 
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #a5a5a5;
    }
/* Scroll bar END*/

/* GENERAL HTML ELEMENT [START] */

    select {
        padding: 5px;
        border-radius: 8px;
        font-size: 15px;
        border: 1px solid silver;
        cursor:pointer;
        font-family: 'Geist Regular', sans-serif;
    }

    input {
        padding: 5px;
        width: calc(100% - 16px); /* 8px x 2 */
        border-radius: 8px;
        font-size: 15px;
        border: 1px solid silver;
        font-family: 'Geist Regular', sans-serif;
    }

    input[type='checkbox'] {
        width: 50px;
        height: 50px;
    }

/* GENERAL HTML ELEMENT [END] */

/* MainBTN [START] */
    .MainBTN {
        align-items: center;
        background-color: #73af38;
        background: linear-gradient(316deg, #73af38, #648d39);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: .25rem;
        box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
        box-sizing: border-box;
        color: white;
        display: inline-flex;
        font-size: 16px;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
        justify-content: center;
        cursor: pointer;
        padding : 7px;
        text-decoration: none;
        transition: all 250ms;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
        vertical-align: baseline;
        width: auto;
        text-align: center;
        transition: all 250ms;
    }

    .MainBTN:hover,.MainBTN:focus {
        border-color: rgba(0, 0, 0, 0.15);
        box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    }

    .MainBTN:hover {
        transform: translateY(-1px);
    }

    .MainBTN:active {
        background-color: #F0F0F1;
        border-color: rgba(0, 0, 0, 0.15);
        box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
        color: rgba(0, 0, 0, 0.65);
        transform: translateY(0);
    }

    /* - de 800px */
    @media (max-width: 800px) {
        .MainBTN {
            font-size: 14px;
        }
    }

    /* - de 600px */
    @media (max-width: 600px) {
        .MainBTN {
            font-size: 13px;
        }
    }

    /* - de 500px */
    @media (max-width: 500px) {
        .MainBTN {
            font-size: 12px;
        }
    }

    /* - de 400px */
    @media (max-width: 400px) {
        .MainBTN {
            font-size: 11px;
        }
    }
/* MainBTN [END] */

/* Custom Filters [ START ] */

    .custom_filter_column.ASC:after {
        border-width: 0 8px 10px 8px;
        border-color: transparent transparent white transparent;
    }

    .custom_filter_column.DESC:after {
        border-width: 10px 8px 0 8px;
        border-color: white transparent transparent transparent;
    }

    .custom_filter_column.filterMainBTN.ASC:after {
        border-width: 0 8px 10px 8px;
        border-color: transparent transparent var(--blue1) transparent;
    }

    .custom_filter_column.filterMainBTN.DESC:after {
        border-width: 10px 8px 0 8px;
        border-color: var(--blue1) transparent transparent transparent;
    }

    .custom_filter_column.DESC:after, .custom_filter_column.ASC:after
    {
        content: '';
        margin-left: 5px;
        width: 0;
        height: 0;
        border-style: solid;
    }

/* Custom Filters [ END ] */

/* Main modal pop-up [START] */

    .modal {
        position: fixed;
        background: rgba(0, 0, 0, 0.314);
        height: 100%;
        width: 100%;
        top: 0px;
        left: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 50;
        transition: 0.2s;
    }

    .modal-content {
        border-radius: 10px;
        padding: 20px;
        background: white;
        display: flex;
        flex-direction: column;
        transition: 0.2s;
        scale: 0;
        max-width:80%;
        max-width: 1300px;
        box-shadow: 0px 0px 10px 5px #50505050;
        max-height: 80%;
        overflow-x: hidden;
        overflow-y: scroll;
    }

    .modal-close-btn {
        box-shadow: black 0px 0px 10px -3px;
        position: fixed;
        top: 0;
        right: 0;
        background: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        padding: 10px;
        margin: 20px;
        display: flex;
        font-size: 30px;
        font-weight: 900;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.2s;
        scale: 0;
        z-index: 1;
    }

    .modal-title {
        text-align:center;
        font-size: 18px;
    }

    .modal-close-btn:hover {
        scale: 1.05!important;
    }

/* Main modal pop-up [END] */