:root {
    --light-color: #eeeeee;
    --dark-color: #181818;
    --header-color: color-mix(in srgb, var(--light-color) 10%, #fff);
}

.text-light {
    color: var(--light-color) !important;
}.text-dark {
    color: var(--dark-color) !important;
}
.text-normal {
    line-height: normal;
    font-weight: normal;
}
.text-small {
    font-size: 90%;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color) !important;
}
.btn-primary:hover {
    background: var(--secondary-color) !important;
    color: var(--dark-color);
}


/* PADDING & MARGIN */
.pt-6, .py-6 {
    padding-top: 5% !important;
}
.pb-6, .py-6 {
    padding-bottom: 5% !important;
}
.pt-10, .py-10 {
    padding-top: 10% !important;
}
.pb-10, .py-10 {
    padding-bottom: 10% !important;
}
.ps-10, .px-10 {
    padding-left: 10% !important;
}
.pe-10, .px-10 {
    padding-right: 10% !important;
}
.ps-10, .px-10 {
    padding-left: 10vw !important;
}
.pe-10, .px-10 {
    padding-right: 10vw !important;
}
@media (min-width: 768px) {
    .pt-md-6, .py-md-6 {
        padding-top: 5% !important;
    }
    .pb-md-6, .py-6 {
        padding-bottom: 5% !important;
    }
    .pt-md-10, .py-md-10 {
        padding-top: 10% !important;
    }
    .pb-md-10, .py-10 {
        padding-bottom: 10% !important;
    }
    .ps-md-10, .px-md-10 {
        padding-left: 10vw !important;
    }
    .pe-md-10, .px-md-10 {
        padding-right: 10vw !important;
    }
    .ps-md-10, .px-md-10 {
        padding-left: 10vw !important;
    }
    .pe-md-10, .px-md-10 {
        padding-right: 10vw !important;
    }
    .h-md-100 {
        height: 100% !important;
    }
    .w-md-100 {
        width: 100% !important;
    }
    .w-md-50 {
        width: 50% !important;
    }
    .w-md-30vw {
        width: 35vw !important;
    }
    .w-md-20vw {
        width: 20vw !important;
    }
    .w-md-10vw {
        width: 10vw !important;
    }
}
@media (max-width: 767.98px) {
    .h-xs-100 {
        height: 100% !important;
    }
    .w-xs-100 {
        width: 100% !important;
    }
    .w-xs-50 {
        width: 50% !important;
    }
}
.mt--5, .my--5 {
    margin-top: -3rem !important;
}
.mb--5, .my--5 {
    margin-bottom: -3rem !important;
}
.ms--5, .mx--5 {
    margin-left: -3rem !important;
}
.me--5, .mx--5 {
    margin-right: -3rem !important;
}
@media (min-width: 768px) {
    .mt-md--5, .my-md--5 {
        margin-top: -3rem !important;
    }
    .mb-md--5, .my-md--5 {
        margin-bottom: -3rem !important;
    }
    .ms-md--5, .mx-md--5 {
        margin-left: -3rem !important;
    }
    .me-md--5, .mx-md--5 {
        margin-right: -3rem !important;
    }
}
@media (max-width: 767.98px) {
    .ms-xs-0, .mx-xs-0 {
        margin-left: 0 !important;
    }
    .me-xs-0, .mx-xs-0 {
        margin-right: 0 !important;
    }
}


/* SCROLLBAR */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
@media (max-width: 767.98px) {
    .no-scrollbar-xs::-webkit-scrollbar {
        display: none;
    }
    .no-scrollbar-xs {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
}
::-webkit-scrollbar { /* width */
    width: 5px;
    height: 1px !important;
}
::-webkit-scrollbar-track { /* Track */
    background: transparent;
    box-shadow: inset 0 0 5px silver;
    border-radius: 4px;
    border-left: 1.5px solid transparent;
    border-right: 1.5px solid transparent;
}
::-webkit-scrollbar-thumb { /* Handle */
    background: var(--dark-color);
    border-radius: 4px;
}
/* END-SCROLLBAR */

/* DRAGSCROLL */
.drag-scroll:hover::-webkit-scrollbar {
    width: 1px;
    height: 5px !important;
}
.drag-scroll {
    cursor: grab;
    overflow-x: scroll;
    user-select: none;
}
.drag-scroll .drag-content .pe-3:last-child {
    padding-right: 0 !important;
}
@media (max-width: 767.98px) {
    .drag-scroll .drag-content {
        width: 90vw !important;
    }
    .drag-scroll .drag-content.drag-container {
        width: max-content !important;
    }
    .drag-scroll .drag-content.drag-container > * {
        max-width: 90vw !important;
        min-width: 90vw !important;
        width: 90vw !important;
    }
    .drag-scroll .drag-content img {
        height: 400px !important;
    }
}
.cursor-default {
    cursor: default;
}
.cursor-pointer {
    cursor: pointer;
}
/* END-DRAGSCROLL */
