:root {
    font-size: 16px;

	/* ----------------------------------------------------
	----------------------- colors
	---------------------------------------------------- */

    --white: #FFF;

    --black2: #151515;
    --black: #24292E;
    --blacklight: #353535;

    --graydark2: #555555;
    --graydark: #9B9B9B;
    --gray: #B6B6B6;
    --graylight: #D1D1D1;
    --graylight2: #E7E7E7;
    --graylight3: #f5f5f5;
    --graylight4: #f9f9f9;

    --success: #198754;
    --successlight: #d9f8ea;
    --error: #DC3545;
    --errorlight: #f2b7bd;

    --orangedark: #bf5a0b;
    --orange: #ff7306;

    --bluedark: #1e97ca;
    --blue: #4fb9e5;
    --bluelight: #72c7ea;
    --bluelight2: #c6e8f6;
    --bluelight3: #e8f6fb;
    --bluelight4: #f9fdfe;

    --reddark: #b60000;
    --red: #c43232;
    --redlight: #d36666;
    --redlight2: #e9b2b2;

    --purpledark: #866794;
    --purple: #A881BA;
    --purplelight: #c2a6ce;

    --greendark: #198754;
    --green: #469f76;
    --greenlight: #75b798;
    --greenlight2: #97c8b1;
    --greenlight3: #daebe3;
    --greenlight4: #f7fbf9;
    
    --greenpixdark: #398b7f;
    --greenpix: #48AFA0;
    --greenpixlight: #7bc9bd;

    --yellowdark: #2e2e2c;
    --yellow: #e9be60;

    --beigedark: #9e8568;
    --beige: #b29e87;
    --beigelight: #d0c4b6;

	/* ----------------------------------------------------
	----------------------- shadows
	---------------------------------------------------- */

    --shadow6: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    --shadow18: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    --shadow20: rgb(38, 57, 77) 0px 20px 30px -10px;

	/* ----------------------------------------------------
	----------------------- other
	---------------------------------------------------- */

    --modal-side-width: 0px;
}

@-webkit-keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
}

@keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
}

@-webkit-keyframes slide-from-right {
    0% { 
        width: 0px;
        opacity: 0;
    }
    100% { 
        width: var(--modal-side-width);
        max-width: 90vw;
        opacity: 1;
    }
}

@keyframes slide-from-right {
    0% { 
        width: 0px;
        opacity: 0;
    }
    100% { 
        width: var(--modal-side-width);
        max-width: 90vw;
        opacity: 1;
    }
}

@keyframes loadingElement {
    0% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

* {
    font-family: Arial, Helvetica, sans-serif !important;
    color: var(--black);
    scroll-behavior: smooth;
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    outline: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    background: var(--primary-color);
}

*::-webkit-scrollbar {
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    min-height: 30%;
}

*::-webkit-scrollbar {
    width: 4px;
}

*::-webkit-scrollbar-thumb:horizontal {
    min-width: 30%;
}

*::-webkit-scrollbar:horizontal {
    height: 6px;
}

*:focus {
    outline: none
}

b {
    font-weight: bolder;
}

a {
    text-decoration: none;
    color: var(--black);
}

.no-overflow {
    overflow: hidden !important;
}

.d-grid {
    display: grid !important;
    gap: 10px;
    align-items: center;
}

.d-flex {
    display: flex !important;
    gap: 10px;
    align-items: center;
}

.d-grid.center,
.d-flex.center{
    justify-content: center;
}

.d-grid.right,
.d-flex.right{
    justify-content: right;
}

.d-grid.space-between,
.d-flex.space-between{
    justify-content: space-between;
}

.d-none {
    display: none !important;
}

.d-unset {
    display: unset !important;
}

.d-compress {
    min-height: 0px !important;
    max-height: 0px !important;
    height: 0px !important;
    overflow: hidden !important;
    padding: 0px !important;
    margin: 0px !important;
    box-shadow: unset !important;
    border: 0px !important;
    transition: all 0.25s;
}

.d-compress * {
    min-height: 0px !important;
    max-height: 0px !important;
    height: 0px !important;
}

.no-events {
    pointer-events: none !important;
    cursor: default !important;
}

.glass-effect {
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    background-color: rgba(235, 235, 235, 0.6) !important;
    border: 1px solid rgba(210, 210, 210, 0.3)
}