:root {
    --list-bg-color: rgb(238, 238, 238);
    --list-border-color: rgb(180, 180, 180);
    --list-text-color: rgb(145, 140, 140);
    --list-text-shadow: rgb(255, 255, 255);
    --tile-height: 100px;
    --tile-width: 100px;
    --border-white-1: 0px solid rgba(255, 255, 255, 0.7);
    --border-black-1: 0px solid rgba(0, 0, 0, 0.7);
    --windows-gray-xp: rgb(212, 208, 200);
    --windows-gray-nt: rgb(192, 192, 192);
    --group-title: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: Arial;
    height: 100vh;
    background-color: var(--windows-gray-xp);
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    /*
                background-image: repeating-linear-gradient(90deg, hsla(253, 0%, 96%, 0.05) 0px, hsla(253, 0%, 96%, 0.05) 1px, transparent 1px, transparent 104px), repeating-linear-gradient(0deg, hsla(253, 0%, 96%, 0.05) 0px, hsla(253, 0%, 96%, 0.05) 1px, transparent 1px, transparent 104px), repeating-linear-gradient(0deg, hsla(253, 0%, 96%, 0.07) 0px, hsla(253, 0%, 96%, 0.07) 1px, transparent 1px, transparent 26px), repeating-linear-gradient(90deg, hsla(253, 0%, 96%, 0.07) 0px, hsla(253, 0%, 96%, 0.07) 1px, transparent 1px, transparent 26px), linear-gradient(45deg, hsl(213, 62%, 51%), hsl(213, 62%, 51%));
                */
}

.tile {
    opacity: 1;
    min-height: var(--tile-height);
    min-width: var(--tile-width);
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    box-shadow: rgba(50, 50, 93, 0.35) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 2px;
    border: 3px outset;
}

.tile:hover,
.tile:active {
    border: 3px inset;
    box-shadow: rgba(50, 50, 93, 0) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.container-slider {
    font-family: sans-serif;
    scroll-snap-type: x mandatory;
    display: flex;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
}

.dial-group {
    border-right: 1px solid white;
    min-width: 100vw;
    height: 100vh;
    scroll-snap-align: start;
    text-align: center;
    position: relative;
    outline: 0px solid red;
}

.dial-group h2 {
    margin-right: 20px;
    margin-left: 5px;
    border: 3px inset;
    padding: 2px;
    background-color: darkgrey;
    color: white;
    font-family: var(--group-title);
    font-weight: normal;
    font-size: 11px;
    text-transform: uppercase;
}

.container-dials {
    margin-right: 20px;
    margin-left: 5px;
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(auto-fill, minmax(var(--tile-width), 1fr));
    grid-template-areas: "sd01 sd02 sd03" "sd04 sd05 sd06" "sd07 sd08 sd09" "sd10 sd11 sd12" "sd13 sd14 sd15" "sd16 sd17 sd18";
}

#dial-golem {
    grid-area: sd14;
}

@media(max-width:540px) {}

a.clickable-dial {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-size: 70%;
    text-indent: -9999px;
    white-space: nowrap;
}

a.clickable-dial:hover,
a.clickable-dial:active {
    opacity: 0.85;
    background-size: cover;
}