:root {
    --gray: dimgray;
}

body {
    font-size: 17px;
    margin: 0;
    overscroll-behavior: none;
    overflow-x: hidden;
    overflow-y: scroll;
}

.container {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.clickable {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
}

.button {
    width: 140px;
    height: 22px;
    font-size: 80%;
    border-radius: 15px;
    margin: 2px;
    background-color: white;
    color: black;
    justify-content: center;
    align-items: center;
    display: flex;
}

.button,
.grow {
    transition: transform 0.1s ease
}

.clickable:hover {
    opacity: 0.8;
    cursor: pointer;
}

.button:hover,
.grow:hover {
    transform: scale(1.08);
    cursor: pointer
}

.button:active,
.grow:active {
    transform: scale(0.95);
}

.clickable:active,
.button:active,
.grow:active {
    opacity: 0.6;
}

.active {
    border: 4px solid white
}

.activeBanner {
    color: var(--bannerText);
    background-color: var(--banner) !important;
}

.selected {
    background-color: white !important;
    color: black !important;
}

.active:hover,
.active:active,
.activeBanner:hover,
.activeBanner:active,
.selected:hover,
.selected:active {
    opacity: 1 !important;
    cursor: default !important;
    transition: none !important;
    transform: none !important;
}

.loader {
    border: 6px solid dimgray;
    border-top: 6px solid var(--banner);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.divider {
    margin: 0 15px;
    border-left: 2px solid white;
    height: 35px;
}