@font-face {
    font-family: 'Alagard';
    src: url('alagard.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    overflow: hidden;
    font-size: 1.25em;
    font-family: 'Lucida Console', 'Courier New', monospace;
    user-select: none;
}

#tutorialButton {
    display: flex;
    position: absolute;
    left: 0%;
    top: 0%;
    background-color: black;
    font-size: 0.75em;
    font-family: 'Lucida Console', 'Courier New', monospace;
    border: 1px solid white;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    padding: 5px;
}

    #tutorialButton:hover {
        background-color: teal;
    }

#tutorialCloseButton {
    position: absolute;
    text-align: center;
    width: 50%;
    left: 50%;
    bottom: 1%;
    padding: 5px;
    font-size: 0.5em;
    padding-left: 2px;
    padding-right: 2px;
    margin-bottom: 0%;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    margin-top: 10px;
    margin-bottom: 2px;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transform: translateX(-50%) translateY(100%);
}

    #tutorialCloseButton:hover {
        background-color: teal;
    }

#tutorialWindow {
    display: none;
    position: absolute;
    text-align: left;
    overflow-x: hidden;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    width: 50vw;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: 'Lucida Console', 'Courier New', monospace;
    padding: 5px;
    font-size: 0.5em;
    background-color: black;
    color: white;
    border-radius: 8px;
    border: 1px solid white;
    user-select: text;
}

    #tutorialWindow::-webkit-scrollbar {
        width: 12px;
        background-color: #0d0d0d;
    }

    #tutorialWindow::-webkit-scrollbar-thumb {
        background-color: darkGray;
        border: 1px solid white;
    }

#playerContainer {
    display: none;
    z-index: 99999;
    position: absolute;
    left: 0%;
    top: 50%;
    align-content: center;
    flex-direction: column;
    width: 10vw;
    max-height: 50vh;
    background-color: black;
    border: 1px solid white;
    border-radius: 0px 8px 8px 0px;
    border-left: none;
    transform: translateY(-50%);
}

#playerTable {
    position: relative;
    margin-top: 2px;
    margin-left: 2px;
    margin-right: 2px;
    font-size: 0.75em;
    left: 50%;
    color: white;
    background-color: black;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transform: translateX(-50%);
}

    #playerTable td {
        font-size: 0.75em;
    }

        #playerTable td.panelTitle {
            font-family: 'Lucida Console', 'Courier New', monospace;
            font-size: 1em;
            color: white;
            text-align: center;
            font-weight: bold;
            border-bottom: 1px solid white;
        }

#playerCloseButton {
    position: relative;
    text-align: center;
    width: 50%;
    left: 50%;
    bottom: 0%;
    padding: 5px;
    font-size: 0.5em;
    padding-left: 2px;
    padding-right: 2px;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    margin-top: 10px;
    margin-bottom: 2px;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transform: translateX(-50%);
}

    #playerCloseButton:hover {
        background-color: teal;
    }

#playerListContainer {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 30%;
    border: 1px solid gray;
    margin-left: 2px;
    margin-right: 2px;
}

    #playerListContainer::-webkit-scrollbar {
        width: 12px;
        background-color: #0d0d0d;
    }

    #playerListContainer::-webkit-scrollbar-thumb {
        background-color: darkGray;
        border: 1px solid white;
    }

#playerList {
    color: white;
    max-height: 30%;
    width: 100%;
    background-color: #05060a;
    border-collapse: collapse;
}

    #playerList tr {
        border-bottom: 1px solid darkgray;
        max-height: 1em;
    }

        #playerList tr:hover {
            background-color: #1f2030;
        }

    #playerList td {
        max-height: 1em;
        border: none;
        color: white;
        font-size: 0.5em;
        font-family: 'Lucida Console', 'Courier New', monospace;
        border-left: 1px solid #1a1a1a;
    }

.playerIcon {
    font-size: 2em;
    color: cyan;
    text-align: center;
}

#buildingContainer {
    display: none;
    z-index: 99999;
    position: absolute;
    right: 0%;
    top: 50%;
    align-content: center;
    flex-direction: column;
    width: 25vw;
    max-height: 50vh;
    background-color: black;
    border: 1px solid white;
    border-radius: 8px 0px 0px 8px;
    border-right: none;
    transform: translateY(-50%);
}

#buildingTable {
    position: relative;
    margin-top: 2px;
    margin-left: 2px;
    margin-right: 2px;
    font-size: 0.75em;
    left: 50%;
    color: white;
    background-color: black;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transform: translateX(-50%);
}

    #buildingTable td {
        font-size: 0.75em;
    }

        #buildingTable td.panelTitle {
            font-family: 'Lucida Console', 'Courier New', monospace;
            font-size: 1em;
            color: white;
            text-align: center;
            font-weight: bold;
            border-bottom: 1px solid white;
        }

#buildingCloseButton {
    position: relative;
    text-align: center;
    width: 50%;
    left: 50%;
    bottom: 0%;
    padding: 5px;
    font-size: 0.5em;
    padding-left: 2px;
    padding-right: 2px;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    margin-top: 10px;
    margin-bottom: 2px;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transform: translateX(-50%);
}

    #buildingCloseButton:hover {
        background-color: teal;
    }

#buildingListContainer {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 30%;
    border: 1px solid gray;
    margin-left: 2px;
    margin-right: 2px;
}

    #buildingListContainer::-webkit-scrollbar {
        width: 12px;
        background-color: #0d0d0d;
    }

    #buildingListContainer::-webkit-scrollbar-thumb {
        background-color: darkGray;
        border: 1px solid white;
    }

#buildingList {
    color: white;
    max-height: 30%;
    width: 100%;
    background-color: #05060a;
    border-collapse: collapse;
}

    #buildingList tr {
        border-bottom: 1px solid darkgray;
        max-height: 1em;
    }

        #buildingList tr:hover {
            background-color: #1f2030;
        }

    #buildingList td {
        max-height: 1em;
        border: none;
        color: white;
        font-size: 0.5em;
        font-family: 'Lucida Console', 'Courier New', monospace;
        border-left: 1px solid #1a1a1a;
    }

.buildingIcon {
    font-size: 1em;
    color: cyan;
    text-align: center;
}

#workbenchContainer {
    display: none;
    align-content: center;
    flex-direction: column;
    width: 40vw;
    height: 20vw;
    background-color: black;
    border: 1px solid white;
    border-radius: 8px;
    z-index: 1000;
}

#workbenchTable {
    position: relative;
    height: 50%;
    margin-top: 2px;
    margin-left: 2px;
    margin-right: 2px;
    font-size: 0.75em;
    left: 50%;
    color: white;
    background-color: black;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transform: translateX(-50%);
}

    #workbenchTable td {
        font-size: 0.75em;
    }

    #workbenchTable td.panelTitle {
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-size: 1em;
    color: white;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid white;
    }

#workbenchCloseButton {
    position: relative;
    text-align: center;
    width: 50%;
    left: 50%;
    bottom: 0%;
    padding: 5px;
    font-size: 0.5em;
    padding-left: 2px;
    padding-right: 2px;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    margin-top: 10px;
    margin-bottom: 2px;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transform: translateX(-50%);
}

    #workbenchCloseButton:hover {
        background-color: teal;
    }

.workbenchRetrieveButton {
    position: relative;
    text-align: center;
    height: 0.75em;
    padding-bottom: 2px;
    padding-top: 2px;
    padding-left: 2px;
    padding-right: 2px;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    max-height: 0.75em;
    font-family: 'Lucida Console', 'Courier New', monospace;
}

.workbenchRetrieveButton:hover {
    background-color: teal;
}

#workbenchItemListContainer {
    overflow-x: hidden;
    overflow-y: auto;
    height: 30%;
    border: 1px solid gray;
    margin-left: 2px;
    margin-right: 2px;
}

    #workbenchItemListContainer::-webkit-scrollbar {
        width: 12px;
        background-color: #0d0d0d;
    }

    #workbenchItemListContainer::-webkit-scrollbar-thumb {
        background-color: darkGray;
        border: 1px solid white;
    }

#workbenchItemList {
    color: white;
    max-height: 30%;
    width: 100%;
    background-color: #05060a;
    border-collapse: collapse;
}

    #workbenchItemList tr {
        border-bottom: 1px solid darkgray;
        max-height: 1em;
    }

        #workbenchItemList tr:hover {
            background-color: #1f2030;
        }

    #workbenchItemList td {
        max-height: 1em;
        border: none;
        color: white;
        font-size: 0.5em;
        font-family: 'Lucida Console', 'Courier New', monospace;
        border-left: 1px solid #1a1a1a;
    }

.workbenchItemIcon {
    font-size: 1em;
    color: cyan;
    text-align: center;
}

.workbenchMaterialIcon {
    width: 1em;
    height: 1em;
    max-width: 1em;
    max-height: 1em;
    animation: floorObjectAnim 2s infinite;
    text-align: center;
}

#deathPanel {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: 2px;
    margin-right: 2px;
    background-color: black;
    z-index: 99999;
    transform: translateX(-50%) translateY(-50%);
    border: 1px solid gray;
    border-radius: 8px;
}

#deathTable {
    align-content: center;
    text-align: center;
    font-family: 'Lucida Console', 'Courier New', monospace;
    color: white;
    border-collapse: collapse;
    margin-top: 5px;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 5px;
}

#deathPanelCloseButton {
    position: relative;
    text-align: center;
    width: 50%;
    left: 50%;
    bottom: 0%;
    padding: 5px;
    font-size: 0.5em;
    padding-left: 2px;
    padding-right: 2px;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    margin-top: 10px;
    margin-bottom: 2px;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transform: translateX(-50%);
}

#gatePanel {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: 2px;
    margin-right: 2px;
    background-color: black;
    z-index: 99999;
    transform: translateX(-50%) translateY(-50%);
    border: 1px solid gray;
    border-radius: 8px;
}

#gateTable {
    align-content: center;
    text-align: center;
    font-family: 'Lucida Console', 'Courier New', monospace;
    color: white;
    border-collapse: collapse;
    margin-top: 5px;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 5px;
}

#gatePanelCloseButton {
    position: relative;
    text-align: center;
    width: 50%;
    left: 50%;
    bottom: 0%;
    padding: 5px;
    font-size: 0.5em;
    padding-left: 2px;
    padding-right: 2px;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    margin-top: 10px;
    margin-bottom: 2px;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transform: translateX(-50%);
}

#buildingTab {
    z-index: 99999;
    display: none;
    position: absolute;
    top: 50%;
    right: 0%;
    padding: 2px;
    border-radius: 8px 0 0 8px;
    border: 1px solid white;
    border-right: none;
    cursor: pointer;
    color: white;
    background-color: black;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transform: translateY(-50%);
}

    #buildingTab:hover {
        background-color: teal;
    }

#playerTab {
    z-index: 99999;
    display: none;
    position: absolute;
    top: 50%;
    left: 0%;
    padding: 2px;
    border-radius: 0px 8px 8px 0px;
    border: 1px solid white;
    border-left: none;
    cursor: pointer;
    color: white;
    background-color: black;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transform: translateY(-50%);
}

#resourcesContainer {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 1000;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    border: 1px solid white;
    border-top: none;
    /*box-shadow: 0px -5px 30px darkgray;*/
}

#resourcesTable {
    display: flex;
    border-collapse: collapse;
    justify-content: center;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
}

    #resourcesTable td {
        align-items: center;
        padding: 2px;
        padding-left: 5px;
        padding-right: 5px;
        text-align: center;
        font-family: 'Lucida Console', 'Courier New', monospace;
        color: white;
    }

.inventorySlot {
    width: 2vw;
    height: 2vw;
    border: 1px solid gray;
    background-color: black;
    color: white;
    text-align: center;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transition: background-color 0.3s ease;
}

    .inventorySlot:hover {
        background: rgb(0,36,61);
        background: -moz-radial-gradient(circle, rgba(0,36,61,1) 0%, rgba(0,7,38,1) 38%);
        background: -webkit-radial-gradient(circle, rgba(0,36,61,1) 0%, rgba(0,7,38,1) 38%);
        background: radial-gradient(circle, rgba(0,36,61,1) 0%, rgba(0,7,38,1) 38%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00243d",endColorstr="#000726",GradientType=1);
    }

    .inventorySlot.activeSlot {
        border: 1px solid gray;
        background: rgb(0,70,67);
        background: -moz-radial-gradient(circle, rgba(0,70,67,1) 0%, rgba(0,33,79,1) 50%, rgba(15,0,92,1) 100%);
        background: -webkit-radial-gradient(circle, rgba(0,70,67,1) 0%, rgba(0,33,79,1) 50%, rgba(15,0,92,1) 100%);
        background: radial-gradient(circle, rgba(0,70,67,1) 0%, rgba(0,33,79,1) 50%, rgba(15,0,92,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#004643",endColorstr="#0f005c",GradientType=1);
        animation: activeSlotAnim 2s linear infinite;
    }

td.inventoryTd {

}

.inventoryContent {
    width: 1.3em;
    height: 1.3em;
    overflow: hidden;
}

.itemName {
    width: 100%;
    font-size: 0.25em;
    text-align: center;
    max-width: 100%;
    max-height: 1em;
    overflow: visible;
    text-overflow: ellipsis;
}

.inventoryHotkey {
    border-top: 1px solid gray;
    font-size: 0.5em;
    font-family: 'Lucida Console', 'Courier New', monospace;
    padding: 0;
    margin-bottom: 2px;
}

#hungerBar {
    height: 5px;
    padding: 2px;
    margin: 0px;
    border: 1px solid white;
    background-color: black;
    background: linear-gradient(to right, darkyellow, black);
}

#staminaBar {
    height: 5px;
    padding: 2px;
    margin: 0px;
    border: 1px solid white;
    background-color: black;
    background: linear-gradient(to right, darkyellow, black);
}

#hitpointsBar {
    height: 5px;
    padding: 2px;
    margin: 0px;
    border: 1px solid white;
    background-color: black;
    background: linear-gradient(to right, darkyellow, black);
}

#zoomTable {
    padding: 5px;
    cursor: pointer;
    color: white;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    font-family: 'Lucida Console', 'Courier New', monospace;
}

#offlineWorldDiv {
    position: absolute;
    width: 70vw;
    height: 55vw;
    color: white;
    top: 50%;
    left: 50%;
    overflow: visible;
    transform: skew(-40deg, 20deg) rotate(0deg) translate(-50%, -25%);
    z-index: 0;
    font-size: 2.5em;
    pointer-events: none;
}

#offlineGradientDiv {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255);
    background: -moz-radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 70%);
    background: -webkit-radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 70%);
    background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
    pointer-events: none;
}

#worldContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skew(-40deg, 20deg) rotate(0deg);
    overflow: visible; /*hidden;*/
}

#worldBoundsContainer {
    width: 70vh;
    height: 55vh;
    outline: 5px ridge darkgray;
    background-color: black;
    color: white;
    transform: rotate(0deg) skew(0deg, 0deg);
    background-color: black;
    overflow: visible; /*hidden;*/
}

#worldInnerAreaDiv {
    position: absolute;
    padding: 0px;
    width: 100%;
    height: 100%;
    transform-origin: center;
    overflow: visible;
}

#worldDiv {
    position: absolute;
    width: 100%;
    height: 100%;
    color: white;
    overflow: visible;
    transform: rotate(0deg);
}

#worldShade {
    z-index: 300;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgb(255,255,255);
    background: -moz-radial-gradient(ellipse, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 50%);
    background: -webkit-radial-gradient(ellipse, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 50%);
    background: radial-gradient(ellipse, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
    transform-origin: center;
    background-position: center center;
    background-size: 106.75% 100%;
    transform: translateX(0%);
}

#objectsDiv {
    position: absolute;
    width: 100%;
    height: 100%;
    color: white;
    overflow: visible;
    transform: rotate(0deg);
}

#loginContainer {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 1);
    font-size: 0.75em;
    padding: 5px;
    font-family: 'Lucida Console', 'Courier New', monospace;
    z-index: 9999;
    flex-direction: column;
    display: flex;
}

#loginGameTitle {
    color: white;
    font-family: 'Alagard', monospace;
    font-size: 5em;
    text-align: center;
    order: 1;
    text-shadow: 0px 0px 30px gray;
    /*animation: gameTitleAnim 2s ease infinite;*/
}

#loginTable {
    display: block;
    text-align: center;
    border-collapse: collapse;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px;
    border-radius: 8px;
    border: 1px solid white;
    box-shadow: 0px 5px 20px #555555;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    order: 2;
}

#loginHeader {
    text-align: center;
    font-weight: bold;
}

.loginBottom {
    border-top: 1px solid gray;
    border-collapse: collapse;
    font-size: 0.75em;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 2px;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 75%, rgba(0,0,0,0.7) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 75%, rgba(0,0,0,0.7) 100%);
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 75%, rgba(0,0,0,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.loginOnlineCenter {
    text-shadow: 0px 0px 3px gray;
    border-collapse: collapse;
    font-size: 0.75em;
    text-align: center;
    padding-top: 2px;
    padding-bottom: 2px;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 75%, rgba(0,0,0,0.7) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 75%, rgba(0,0,0,0.7) 100%);
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 75%, rgba(0,0,0,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.loginOnlineBottom {
    text-shadow: 0px 0px 3px gray;
    border-bottom: 1px solid gray;
    border-collapse: collapse;
    font-size: 0.75em;
    text-align: center;
    padding-top: 2px;
    padding-bottom: 15px;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 75%, rgba(0,0,0,0.7) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 75%, rgba(0,0,0,0.7) 100%);
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,1) 75%, rgba(0,0,0,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.loginTextbox {
    width: 100%;
    padding: 5px;
    padding-right: 2px;
    padding-left: 2px;
    color: gray;
    border-radius: 8px;
    border: 1px solid white;
    background: rgb(0,22,85);
    background: -moz-linear-gradient(0deg, rgba(22,22,22,1) 0%, rgba(44,44,44,1) 12%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(22,22,22,1) 0%, rgba(44,44,44,1) 12%, rgba(0,0,0,1) 100%);
    background: linear-gradient(0deg, rgba(22,22,22,1) 0%, rgba(44,44,44,1) 12%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#555555",endColorstr="#000000",GradientType=1);
    font-family: 'Lucida Console', 'Courier New', monospace;
    margin-bottom: 2px;
    user-select: all;
}

.loginButton {
    width: 50%;
    padding: 5px;
    padding-left: 2px;
    padding-right: 2px;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    margin-bottom: 2px;
    font-family: 'Lucida Console', 'Courier New', monospace;
}

    .loginButton:hover {
        background-color: teal;
    }

.userMarker {
    color: white;
    text-shadow: 0 0 5px cyan;
}

.otherUserMarker {
    color: white;
    text-shadow: 0 0 5px red;
    animation: otherUserAnim 0.5s infinite;
}

#locationCell {
    height: 5vw;
    width: 5vw;
    background-color: black;
    border: 3px groove white;
    overflow: hidden;
}

#locationTable {
    height: 5vw;
    width: 5vw;
    background-color: black;
    border: none;
    color: white;
    overflow: hidden;
    border-collapse: collapse;
    font-size: 0.4em;
}

#locationYCell {
    border-bottom: 1px solid white;
}

#attackButton {
    height: 100%;
}

#runButton {
    height: 100%;
}

#walkButton {
    width: 10vw;
    height: 2vw;
}

#pickupButton {
    height: 100%;
}

#useButton {
    height: 100%;
}

#actionContainer {
    bottom: 0px;
    position: fixed;
    display: flex;
    flex-direction: column;
    display: none;
}

#actionWindow {
    position: relative;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2px;
    display: flex;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px 8px 0 0;
    border: 1px solid white;
    box-shadow: 0px 10px 30px darkgray;
    border-bottom: none;
    font-family: 'Lucida Console', 'Courier New', monospace;
    z-index: 999;
}

#actionTable {
    position: relative;
    width: 100%;
    height: 100%;
    color: white;
    overflow: hidden;
}
    #actionTable.td {
        position: relative;
        font-family: 'Lucida Console', 'Courier New', monospace;
        color: white;
        overflow: hidden;
        background-color: black;
        width: 100%;
        height: 100%;
    }

.zoomLevelTag {
    background-color: black;
    color: white;
    font-family: 'Lucida Console', 'Courier New', monospace;
    border: 1px solid white;
    border-radius: 8px;
}

    .zoomLevelTag.zoomActiveX1 {
        background: rgb(0,85,85);
        background: -moz-linear-gradient(90deg, rgba(0,85,85,1) 0%, rgba(0,37,85,1) 50%, rgba(0,2,83,1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(0,85,85,1) 0%, rgba(0,37,85,1) 50%, rgba(0,2,83,1) 100%);
        background: linear-gradient(90deg, rgba(0,85,85,1) 0%, rgba(0,37,85,1) 50%, rgba(0,2,83,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#005555",endColorstr="#000253",GradientType=1);
    }
    .zoomLevelTag.zoomActiveX2 {
        background: rgb(0,2,83);
        background: -moz-linear-gradient(90deg, rgba(0,2,83,1) 0%, rgba(10,0,85,1) 50%, rgba(34,0,85,1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(0,2,83,1) 0%, rgba(10,0,85,1) 50%, rgba(34,0,85,1) 100%);
        background: linear-gradient(90deg, rgba(0,2,83,1) 0%, rgba(10,0,85,1) 50%, rgba(34,0,85,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000253",endColorstr="#220055",GradientType=1);
    }
    .zoomLevelTag.zoomActiveX4 {
        background: rgb(34,0,85);
        background: -moz-linear-gradient(90deg, rgba(34,0,85,1) 0%, rgba(48,0,85,1) 50%, rgba(83,0,76,1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(34,0,85,1) 0%, rgba(48,0,85,1) 50%, rgba(83,0,76,1) 100%);
        background: linear-gradient(90deg, rgba(34,0,85,1) 0%, rgba(48,0,85,1) 50%, rgba(83,0,76,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#220055",endColorstr="#53004c",GradientType=1);
    }
    /* [ITEMLABEL] */
.objectTile {
    z-index: 150;
    transform: skew(0deg, 0deg);
    animation: floorObjectAnim 2s infinite;
}

    .objectTile:hover::before {
        content: "🖑";
        text-shadow: none;
        font-size: 1em;
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        color: white;
    }

    .objectTile:hover {
        animation: none;
        text-shadow: 1px 1px 0px white, 0px 0px 5px white;
    }

    .objectTile.unknown {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.woodlog {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.fruit {
        font-size: 0.7em;
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.fiber {
        font-size: 0.7em;
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.hammeraxe {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.stone {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.pick {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.iron {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.gold {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.goldcoin {
        font-size: 0.5em;
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.woodbow {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.woodenarrow {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.stonearrow {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.explosivearrow {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.wandofchaos {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.chargeofchaos {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.healingseal {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

    .objectTile.screws {
        transform: skew(+40deg, -20deg) translate(-50%, -50%);
    }

.playerTile {
    z-index: 150;
    transform: skew(+40deg, -20deg) translate(-50%, -50%);
}

.otherPlayerTile {
    z-index: 150;
    transform: skew(+40deg, -20deg) translate(-50%, -50%);
}

    .otherPlayerTile:hover {
        text-shadow: 0px 0px 10px red;
    }

.otherPlayerNamespace {
    z-index: 450;
    display: flex;
    text-align: center;
    padding: 2px;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transform: skew(+40deg, -20deg) translate(-50%, -100%);
}

.inventoryItem {
    /*[ITEMLABEL]*/
    z-index: 200;
    text-align: center;
    transform: translateX(-50%) translateY(-50%);
    animation: floorObjectAnim 2s infinite;
}
    .inventoryItem.empty {
        animation: emptyObjectAnim 2s infinite;
    }

    .inventoryItem.unknown {
    }

    .inventoryItem.woodlog {
    }

    .inventoryItem.fiber {
    }

    .inventoryItem.fruit {
    }

    .inventoryItem.hammerpick {
    }

    .inventoryItem.stone {
    }

    .inventoryItem.iron {
    }

    .inventoryItem.gold {
    }

    .inventoryItem.goldcoin {
        font-size: 0.75em;
    }

    .inventoryItem.woodenbow {
    }

    .inventoryItem.woodenarrow {
    }

    .inventoryItem.stonearrow {
    }

    .inventoryItem.explosivearrow {
    }

    .inventoryItem.wandofchaos {
    }

    .inventoryItem.chargeofchaos {
    }

    .inventoryItem.healingseal {
    }

    .inventoryItem.screws {
    }

.dynamicTile {
    z-index: 100;
    transform: skew(0deg, 0deg); /* translateY(-27%)*/
}

    .dynamicTile:hover {
        animation: none;
        text-shadow: 0px 0px 10px cyan;
    }

    .dynamicTile:hover::before {
        content: "⛯";
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%) translateY(-100%);
        color: white;
    }

.dynamicTile.workbench {
    transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    animation: worldToolAnim 1s infinite;
}

    .dynamicTile.workbench:hover {
        text-shadow: 0px 0px 10px cyan;
        animation: none;
    }

.worldTile {
    z-index: 100;
    transform: skew(0deg, 0deg); /* translateY(-27%)*/
}

    .worldTile:hover {
        text-shadow: 0 0 5px white;
    }

    .worldTile:hover::before {
        content: "↓";
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        color: white;
    }

.worldTile.trail {
    transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
}

    .worldTile.stones {
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.house {
        transform: skew(+40deg, -20deg);
        animation: houseAnim 1s infinite;
    }

    .worldTile.woodwall {
        transform: skew(+40deg, -20deg);
    }

    .worldTile.crop {
        transform: skew(+40deg, -20deg);
        transform: skew(+0deg, +0deg) translate(100%, 0%);
    }

        .worldTile.crop:hover {
            text-shadow: 0 0 5px green;
        }

            .worldTile.crop:hover::before {
                transform: skew(+40deg, -20deg) translateX(-100%);
                content: "↓";
                color: cyan;
            }

    .worldTile.basicGround {
        z-index: 50;
        text-align: center;
        transform: skew(0deg, 0deg) translateX(-50%) translateY(-50%);
    }

        .worldTile.basicGround:hover {
            text-shadow: 0 0 5px white;
        }

            .worldTile.basicGround:hover::before {
                content: "↓";
                position: absolute;
                top: -15px;
                left: 50%;
                transform: skew(+40deg, -20deg) translateX(-50%);
                color: white;
            }

    .worldTile.water {
        z-index: 50;
        text-align: center;
        transform: skew(0deg, 0deg) translateX(-50%) translateY(-50%);
    }

        .worldTile.water:hover {
            text-shadow: 0 0 5px red;
        }

            .worldTile.water:hover::before {
                transform: skew(+40deg, -20deg) translateX(-100%);
                content: "X";
                color: red;
            }

    .worldTile.woodbridge {
        transform: skew(+40deg, -20deg);
        transform: skew(+0deg, +0deg) translate(100%, 0%);
        z-index: 100;
    }

        .worldTile.woodbridge:hover {
            text-shadow: 0 0 5px red;
        }

            .worldTile.woodbridge:hover::before {
                transform: skew(+40deg, -20deg) translateX(-100%);
                content: "↓";
                color: lightgreen;
            }

    .worldTile.road {
        transform: skew(+40deg, -20deg);
        transform: skew(+0deg, +0deg) translate(100%, 0%);
        z-index: 100;
    }

        .worldTile.road:hover {
            text-shadow: 0 0 5px red;
        }

            .worldTile.road:hover::before {
                transform: skew(+40deg, -20deg) translateX(-100%);
                content: "↓";
                color: lightgreen;
            }

    .worldTile.trap {
        transform: skew(+40deg, -20deg);
        transform: skew(+0deg, +0deg) translate(100%, 0%);
        z-index: 100;
    }

        .worldTile.trap:hover {
            text-shadow: 0 0 5px red;
        }

            .worldTile.trap:hover::before {
                transform: skew(+40deg, -20deg) translateX(-100%);
                content: "‼";
                color: red;
            }

    .worldTile.forest {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.mountain {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

        .worldTile.mountain:hover {
            text-shadow: 0 0 5px red;
        }

            .worldTile.mountain:hover::before {
                content: "X";
                color: red;
            }

    .worldTile.grass {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.deadforest {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.deadgrass {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.statue {
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.grave {
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.buildingruins {
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.codedgate {
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
        animation: gateAnim 0.5s infinite;
    }

    .worldTile.cavedown {
        text-shadow: 0px 0px 5px white;
        transform: translateX(-50%) translateY(-50%);
        animation: caveAnim 1s infinite;
    }

    .worldTile.caveup {
        text-shadow: 0px 0px 5px black;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
        animation: caveAnim 1s infinite;
    }

    .worldTile.stonearc {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.floortilegray {
        color: gray;
        transform: translateX(-50%) translateY(-50%);
    }

    .worldTile.floortiledarkgray {
        color: darkslategray;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.span.stonearc {
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.undergroundrock {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.undergroundfloorrock {
        text-align: center;
        transform: translateX(-50%) translateY(-50%);
    }

    .worldTile.undergroundmud {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.undergroundgrassmud {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.woodenwall {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.stonewall {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.ironwall {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.crop {
        text-align: center;
        transform: translateX(-50%) translateY(-50%);
    }

    .worldTile.dumptile {
        text-align: center;
        transform: translateX(-50%) translateY(-50%);
    }

    .worldTile.lamp {
        opacity: 1;
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
        animation: lampAnim 1s infinite;
    }

    .worldTile.house {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.pillar {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

    .worldTile.floortrap {
        text-align: center;
        transform: translateX(-50%) translateY(-50%);
    }

    .worldTile.ruins {
        text-align: center;
        transform: skew(+40deg, -20deg) translateX(-50%) translateY(-50%);
    }

.toggleActionButton {
    width: 5vw;
    padding: 5px;
    cursor: pointer;
    border: none;
    outline: none;
    color: white;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    overflow: hidden;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transition: background-color 0.3s ease;
}

    .toggleActionButton.toggleActive {
        background: rgb(0,94,94);
        background: -moz-radial-gradient(circle, rgba(0,94,94,1) 0%, rgba(0,15,89,1) 50%, rgba(8,0,73,1) 100%);
        background: -webkit-radial-gradient(circle, rgba(0,94,94,1) 0%, rgba(0,15,89,1) 50%, rgba(8,0,73,1) 100%);
        background: radial-gradient(circle, rgba(0,94,94,1) 0%, rgba(0,15,89,1) 50%, rgba(8,0,73,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#005e5e",endColorstr="#080049",GradientType=1);
    }

    .toggleActionButton:hover {
        background-color: teal;
    }

.pushButton {
    width: 5vw;
    padding: 5px;
    cursor: pointer;
    border: none;
    outline: none;
    color: white;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    font-family: 'Lucida Console', 'Courier New', monospace;
    transition: background-color 0.3s ease;
}

    .pushButton.pushActive {
        background: rgb(0,135,79);
        background: -moz-radial-gradient(circle, rgba(0,135,79,1) 0%, rgba(0,73,57,1) 50%, rgba(0,55,74,1) 100%);
        background: -webkit-radial-gradient(circle, rgba(0,135,79,1) 0%, rgba(0,73,57,1) 50%, rgba(0,55,74,1) 100%);
        background: radial-gradient(circle, rgba(0,135,79,1) 0%, rgba(0,73,57,1) 50%, rgba(0,55,74,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00874f",endColorstr="#00374a",GradientType=1);
    }

    .pushButton:hover {
        background-color: teal;
    }

#eatButton {
}

.customizationContainer {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    padding: 10px;
    flex-direction: column;
    color: white;
    border-radius: 0px 8px 8px 0px;
    border: 1px solid white;
    border-left: none;
    background-color: black;
    box-shadow: -5px 0px 30px darkgray;
    display: none;
}

#customizationTextbox {
    width: 30px;
    padding: 5px;
    color: white;
    border-radius: 8px;
    border: 1px solid white;
    background-color: #022a36;
    font-family: 'Lucida Console', 'Courier New', monospace;
    text-align: center;
    user-select: all;
}

.customizationButton {
    padding: 5px;
    padding-left: 3px;
    padding-right: 3px;
    margin-top: 2px;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    font-family: 'Lucida Console', 'Courier New', monospace;
}

    .customizationButton:hover {
        background-color: teal;
    }

.chatButton {
    width: 100%;
    padding: 5px;
    padding-left: 0px;
    padding-right: 0px;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    margin-bottom: 2px;
    margin-right: 0px;
    font-family: 'Lucida Console', 'Courier New', monospace;
}

    .chatButton:hover {
        background-color: teal;
    }

#chatTextbox {
    width: 100%;
    padding: 5px;
    padding-right: 2px;
    padding-left: 2px;
    color: white;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
    margin-left: 0px;
    font-family: 'Lucida Console', 'Courier New', monospace;
    margin-bottom: 2px;
    z-index: 9999;
    user-select: text;
    left: 50%;
}

.chatblob {
    display: flex;
    z-index: 500;
    opacity: 0.7;
    align-content: center;
    text-align: center;
    user-select: text;
    color: white;
    font-size: 0.5em;
    padding: 5px;
    padding-right: 2px;
    padding-left: 2px;
    font-family: 'Lucida Console', 'Courier New', monospace;
    border-radius: 8px;
    border: 1px solid white;
    background-color: black;
}

#chatTable {
    align-content: center;
}

.audioPanelTable {
    z-index: 999999;
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    color: white;
    padding: 0px;
    font-family: 'Lucida Console', 'Courier New', monospace;
    border-radius: 8px 0 0 0;
    border: 1px solid white;
    background-color: black;
    border-right: none;
    border-bottom: none;
}

.titleDiv {
    z-index: 999999;
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    font-size: 0.5em;
    user-select: text;
    opacity: 0.3;
    color: white;
    padding: 0px;
    font-family: 'Lucida Console', 'Courier New', monospace;
}

@keyframes gateAnim {
    0% {
        text-shadow: 0px 0px 10px green;
    }

    50% {
        text-shadow: 0px 0px 10px cyan;
    }

    100% {
        text-shadow: 0px 0px 10px green;
    }
}

@keyframes caveAnim {
    0% {
        text-shadow: 0px 0px 10px black;
    }

    50% {
        text-shadow: 0px 0px 10px magenta;
    }

    100% {
        text-shadow: 0px 0px 10px black;
    }
}

@keyframes worldToolAnim {
    0% {
        text-shadow: 1px 1px 0px blue;
    }

    50% {
        text-shadow: 1px 1px 0px orange;
    }

    100% {
        text-shadow: 1px 1px 0px blue;
    }
}

@keyframes emptyObjectAnim {
    0% {
        text-shadow: 1px 1px 0px gray;
    }

    50% {
        text-shadow: 1px 1px 0px white;
    }

    100% {
        text-shadow: 1px 1px 0px gray;
    }
}

@keyframes floorObjectAnim {
    0% {
        text-shadow: 1px 1px 0px darkorange;
    }

    50% {
        text-shadow: 1px 1px 0px cyan;
    }

    100% {
        text-shadow: 1px 1px 0px darkorange;
    }
}

@keyframes floorFoodObjectAnim {
    0% {
        text-shadow: 1px 1px 0px magenta;
    }

    50% {
        text-shadow: 1px 1px 0px blue;
    }

    100% {
        text-shadow: 1px 1px 0px magenta;
    }
}

@keyframes activeSlotAnim {
    0% {
        border: 1px solid darkorange;
    }
    50% {
        border: 1px solid cyan;
    }
    100% {
        border: 1px solid darkorange;
    }
}

@keyframes otherUserAnim {
    0% {
        text-shadow: 0 0 3px red;
    }

    50% {
        text-shadow: 0 0 5px red;
    }

    100% {
        text-shadow: 0 0 3px red;
    }
}

@keyframes houseAnim {
    0% {
        text-shadow: 0 0 3px darkgray;
    }

    50% {
        text-shadow: 0 0 5px white;
    }

    100% {
        text-shadow: 0 0 3px darkgray;
    }
}

@keyframes lampAnim {
    0% {
        text-shadow: 0 0 5px yellow;
    }

    50% {
        text-shadow: 0 0 7px orange;
    }

    100% {
        text-shadow: 0 0 5px yellow;
    }
}

@keyframes gameTitleAnim {
    0% {
        text-shadow: 5px 5px 0px #080030;
    }

    50% {
        text-shadow: 5px 5px 0px #002e30;
    }

    100% {
        text-shadow: 5px 5px 0px #080030;
    }
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 7rem;
}

    input[type="range"]:focus {
        outline: none;
    }

    input[type="range"]::-webkit-slider-runnable-track {
        background-color: #5e5e5e;
        border-radius: 0.5rem;
        height: 0.25rem;
    }

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        margin-top: -2px;
        background-color: #00d1c3;
        border-radius: 0.5rem;
        height: 0.5rem;
        width: 1rem;
    }

    input[type="range"]:focus::-webkit-slider-thumb {
        outline: 3px solid #00d1c3;
        outline-offset: 0.125rem;
    }

    input[type="range"]::-moz-range-track {
        background-color: #5e5e5e;
        border-radius: 0.5rem;
        height: 0.25rem;
    }

    input[type="range"]::-moz-range-thumb {
        background-color: #00d1c3;
        border: none;
        border-radius: 0.5rem;
        height: 0.5rem;
        width: 1rem;
    }

    input[type="range"]:focus::-moz-range-thumb {
        outline: 3px solid #00d1c3;
        outline-offset: 0.125rem;
    }