@font-face {
    font-family: 'GolosText';
    src: url('./fonts/GolosText.ttf');
}

@font-face {
    font-family: 'PixelifySans';
    src: url('./fonts/PixelifySans.ttf');
}

:root {
    --main-dark: #1D1D20;
    --lgrey: #f7f7f7;
    --grey: rgb(238, 238, 238);
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'GolosText';
    color: var(--main-dark);
    overflow: hidden;
}

* {
    font-family: 'GolosText';
}

input {
    font-family: 'GolosText';
    outline: none;
}

input::placeholder {
    font-family: 'GolosText';
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    user-select: none;
}

textarea {
    font-family: 'GolosText';
    outline: none;
}

textarea::placeholder {
    font-family: 'GolosText';
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    user-select: none;
}

.unselectable {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    user-select: none;
}

.mainScrollbar::-webkit-scrollbar {
    width: 12px;
    z-index: 1200;
}

.mainScrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.mainScrollbar::-webkit-scrollbar-thumb {
    background-color: #00000033;
    border-radius: 10px;
    border: 3px solid transparent;
    background-clip: content-box;
}

.mainScrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #0000004d;
}

.spinner16 {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
    animation: spin 0.4s linear infinite;
    border-top-color: transparent;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinner48 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-width: 4px;
    border-style: solid;
    animation: spin 0.4s linear infinite;
    border-top-color: transparent !important;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}