:root {
    --disabled: #959495;

    /* Light */
    --color1: rgb(200, 200, 200);
    --color2: rgb(180, 180, 180);
    --color3: rgb(220, 220, 220);
    --color4: rgb(230, 230, 230);
    --color5: rgb(200, 200, 100);
    --color6: rgb(255, 255, 255);
    --color7: rgb(240, 240, 240);
    --color8: rgb(150, 150, 150);
    --color9: rgb(120, 120, 120);
    --colorText: rgb(0, 0, 0);
    --colorTextAlt: rgb(30, 30, 30);
    --colorLink: rgb(0, 0, 255);
    --colorFlash: rgb(255, 255, 0.7);
    --colorBox: rgba(150, 150, 150, .6);
    --colorBoxLight: rgba(150, 150, 150, .4);
    --colorBackgroundSidebar: rgba(200, 200, 200, .4);
    --colorQuestCompleteBackground: rgb(7, 173, 7);
    --colorQuestCompleteBorderText: rgb(0, 0, 0);
    --colorQuestIncompleteBackground: rgb(200, 200, 0);
    --colorQuestIncompleteBorderText: rgb(0, 0, 0);

    /* Dark */
    /*
    --color1: rgb(22, 27, 34);
    --color2: rgb(13, 17, 23);
    --color3: rgb(46, 50, 59);
    --color4: rgb(56, 60, 69);
    --color5: rgb(46, 50, 59);
    --color6: rgb(22, 27, 34);
    --color7: rgb(46, 50, 59);
    --color8: rgb(61, 65, 74);
    --color9: rgb(46, 50, 59);
    --colorText: rgb(201, 209, 217);
    --colorTextAlt: rgb(181, 189, 197);
    --colorLink: rgb(88, 166, 255);
    --colorFlash: rgb(150, 150, 0.7);
    --colorBox: rgba(50, 50, 50, .6);
    --colorBoxLight: rgba(50, 50, 50, .4);
    --colorBackgroundSidebar: rgba(22, 27, 34, .75);
    --colorQuestCompleteBackground: rgb(46, 50, 59);
    --colorQuestCompleteBorderText: rgb(7, 173, 7);
    --colorQuestIncompleteBackground: rgb(46, 50, 59);
    --colorQuestIncompleteBorderText: rgb(200, 200, 0);
    */
}

body::-webkit-scrollbar {
    display: none;
}

* {
    font-family: 'Calibri', 'Roboto', sans-serif;
}

body {
    background-color: black;
    color: var(--colorText);
    overflow: hidden !important;
}

@-moz-document url-prefix() {
    html,body{overflow: hidden !important;}
}

a, a:visited {
    color: var(--colorText);
}

button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#beta {
    position: absolute;
    bottom: 0;
    left: 10px;
    z-index: 999 !important;
    font-weight: bolder;
    font-size: 5vw;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: white;
}

.body {
    display: none;
    touch-action: manipulation;
}

.background-img {
    position: fixed;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    z-index: -1;
}

.img {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
}

.outer {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.box {
    box-shadow: inset 0vw 0vw 0vw .075vw gray;
    display: inline-grid;
    background-color: transparent;
    color: rgba(255, 255, 255, 0);
    transition: background-color .25s linear;
    position: relative;
}

.box.visible {
    box-shadow: inset .025vw .025vw .025vw .025vw black;
}

.box:not(.visible):hover {
    background-color: rgba(200, 200, 200, .25);
    transition-duration: 0s;
}

.potential {
    background-color: rgba(255, 255, 100, .5);
    box-shadow: inset 0vw 0vw 0vw .075vw black;
}

.potential.visible {
    background-color: rgba(255, 255, 100, .25);
    box-shadow: inset .025vw .025vw .025vw .025vw black;
}

.selected {
    background-color: rgba(100, 255, 100, .5);
    box-shadow: inset 0vw 0vw 0vw .075vw black;
}

.selected.visible {
    background-color: rgba(100, 255, 100, .25);
    box-shadow: inset .025vw .025vw .025vw .025vw black;
}

.gray {
    background-color: var(--colorBox);
    box-shadow: inset 0vw 0vw 0vw .075vw black;
}

.gray.visible {
    background-color: var(--colorBoxLight);
    box-shadow: inset .025vw .025vw .025vw .025vw black;
}

.potential:not(.visible):hover {
    background-color: rgba(255, 255, 100, .33);
}

.selected:not(.visible):hover {
    background-color: rgba(100, 255, 100, .33);
}

.gray:not(.visible):hover {
    background-color: var(--colorBoxLight);
}

.recent.unlocked:not(.mobile), .recent.potential:not(.mobile) {
    background-color: var(--colorFlash);
    animation: glowing 750ms infinite;
}

.recent.selected:not(.mobile) {
    background-color: rgba(255, 0, 0, .7);
    animation: glowing 750ms infinite;
}

.recent.gray:not(.mobile) {
    background-color: rgba(255, 255, 255, 0.7);
    animation: glowing 750ms infinite;
}

.blacklisted {
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: inset 0vw 0vw 0vw .075vw black;
}

.blacklisted.visible {
    background-color: rgba(0, 0, 0, .4);
    box-shadow: inset .025vw .025vw .025vw .025vw black;
}

.blacklisted:not(.visible):hover {
    background-color: rgba(0, 0, 0, .4);
}

.recent.blacklisted:not(.mobile) {
    background-color: rgba(0, 0, 0, .85);
    animation: glowing 750ms infinite;
}

.box.locked {
    background-color: rgba(0, 255, 255, .33);
    box-shadow: inset 0vw 0vw 0vw .15vw rgb(0, 170, 170);
    position: relative;
}

.box.locked .icon {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    z-index: 10;
}

.box.locked .icon::before {
    font-family: "FontAwesome";
    content: "\f129";
    color: rgba(0, 255, 255, .75);
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-text-fill-color: rgba(0, 255, 255, .75);
    -webkit-text-stroke-width: .033em;
    -webkit-text-stroke-color: rgba(0, 0, 0, .75);
    pointer-events: none;
}

.box.locked.visible {
    background-color: rgba(0, 255, 255, .25);
    box-shadow: inset 0vw 0vw 0vw .05vw rgb(0, 170, 170);
}

.box.locked:hover {
    background-color: rgba(0, 255, 255, .25);
}

@keyframes glowing {
    0%, 100% { box-shadow: 0 0 10px black; }
    50% { box-shadow: 0 0 30px black; }
}

.menu {
    position: fixed;
    top: 60px;
    z-index: 99 !important;
    width: min(14vw, 150px);
    height: min(3.5vw, 30px);
}

.pick {
    background-color: rgb(115, 220, 115);
    width: 100%;
    height: 100%;
    font-size: min(2vw, 20px);
    color: white;
    display: block;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
}

.pick:hover {
    background-color: rgb(80, 195, 80);
}

.pick:active {
    background-color: rgb(150, 180, 150);
}

.unpick {
    background-color: rgb(230, 115, 115);
    width: 100%;
    height: 100%;
    font-size: min(2vw, 20px);
    color: white;
    display: none;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
}

.unpick:hover {
    background-color: rgb(195, 80, 80);
}

.unpick:active {
    background-color: rgb(180, 150, 150);
}

.roll2 {
    background-color: rgb(100, 125, 225);
    width: 100%;
    height: 100%;
    font-size: min(2vw, 20px);
    color: white;
    display: none;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
}

.roll2:hover {
    background-color: rgb(75, 100, 200);
}

.roll2:active {
    background-color: rgb(150, 150, 180);
}

.center {
    position: absolute;
    background-color: rgb(0, 165, 165);
    width: 100%;
    height: 175%;
    font-size: min(2vw, 20px);
    color: white;
    display: block;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
    cursor: pointer;
}

.center:hover {
    background-color: rgb(0, 190, 190);
}

.center:active {
    background-color: rgb(130, 150, 150);
}

#leader {
    background-color: rgb(0, 165, 165);
    color: white;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
    cursor: pointer;
}

#leader:hover {
    background-color: rgb(0, 190, 190);
}

.menu2 {
    position: fixed;
    z-index: 99 !important;
    right: 10px;
    top: 60px;
    width: min(12.5vw, 165px);
    height: min(3.5vw, 30px);
}

button.menu2 {
    cursor: pointer;
}

.text:not(.home) {
    background-color: var(--color1);
    height: auto;
    font-size: min(1.5vw, 20px);
    color: var(--colorText);
    display: block;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menu3 {
    position: fixed;
    z-index: 99 !important;
    bottom: min(3.5vw, 30px);
    left: 10px;
    width: min(15vw, 200px);
    height: 2vw;
}

#chunkInfo2 {
    border-width: 0px 1px 1px 1px;
}

.menu5 {
    position: fixed;
    z-index: 99 !important;
    bottom: 20px;
    width: 100%;
    pointer-events: none;
}

.menu6 {
    position: fixed;
    z-index: 99 !important;
    left: 0px;
    top: 60px;
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.menu7 {
    display: none;
    position: fixed;
    z-index: 99 !important;
    bottom: min(11vw, 130px);
    width: min(15vw, 200px);
    height: 2vw;
    right: 10px;
}

#recentChunksTitle {
    background-color: rgb(100, 100, 100);
    color: rgb(240, 240, 240);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 0px 5px;
}

#recentChunks1, #recentChunks2, #recentChunks3, #recentChunks4, #recentChunks5 {
    border-width: 0px 1px 1px 1px;
    cursor: default;
}

.menu8 {
    display: none;
    position: fixed;
    z-index: 99 !important;
    top: max(25vh, 225px);
    left: 10px;
    width: min(30vw, 400px);
    height: 2vw;
}

.infostartup {
    font-size: min(1.5vw, 22px);
    margin-right: 15px;
}

.infoid, #infomonsters, #infonpcs, #infospawns, #infoshops, #infofeatures, #infoquests, #infoclues, #infoconnections, #infochallenges {
    display: none;
}

.infoid {
    font-size: min(2.15vw, 24px);
    padding-right: 16px;
    -webkit-transition: background-color 1000ms ease-in-out;
    -ms-transition: background-color 1000ms ease-in-out;
    transition: background-color 1000ms ease-in-out;
}

.infoid.new {
    background-color:  var(--colorFlash);
}

.infocontribute {
    border-top: solid 1px;
    font-size: min(1.25vw, 15px);
}

.menu9 {
    display: none;
    position: fixed;
    z-index: 99 !important;
    top: 60px;
    right: 10px;
    width: min(25vw, 400px);
    height: 2vw;
}

.menu9 .panel.visible {
    max-height: 48vh !important;
}

.menu10 {
    display: none;
    position: fixed;
    z-index: 99 !important;
    bottom: 0px;
    left: 50%;
    width: 300px;
    height: 75px;
    transform: translateX(-50%);
}

.menu10 > div {
    position: relative;
}

.questcontent {
    position: absolute;
    bottom: 0;
    width: 300px;
}

.gitgeddes {
    word-break: break-all;
}

.description {
    font-size: 1.25vw;
    width: 90%;
    margin: auto;
}

.url {
    margin-top: 25px;
    font-size: 2vw;
    border: solid;
    border-width: 1px;
}

#import2 {
    border: 2px solid rgb(50, 50, 150);
    background-color: rgb(100, 100, 255);
    color: white;
    margin-bottom: 20px;
    margin-top: 20px;
    height: 4vw;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    line-height: .75vw;
}

.exit {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

#import2:hover {
    background-color: rgb(75, 75, 225);
}

#import2:disabled {
    border: 2px solid var(--color8);
    background-color: rgb(225, 225, 225);
    color: var(--colorText);
    cursor: not-allowed;
}

.username {
    margin-top: 25px;
    font-size: 2vw;
    border: solid;
    border-width: 1px;
}

#highscoreoptin {
    border: 2px solid rgb(50, 50, 150);
    background-color: rgb(100, 100, 255);
    color: white;
    margin-bottom: 20px;
    margin-top: 20px;
    height: 4vw;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    line-height: .75vw;
}

#highscoreoptin:hover {
    background-color: rgb(75, 75, 225);
}

#highscoreoptin:disabled {
    border: 2px solid var(--color8);
    background-color: rgb(225, 225, 225);
    color: var(--colorText);
    cursor: not-allowed;
}

#populateButton {
    text-decoration: none;
}

#highscoreoptin2 {
    border: 2px solid rgb(50, 50, 150);
    background-color: rgb(100, 100, 255);
    color: white;
    margin-bottom: 20px;
    margin-top: 20px;
    height: 4vw;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    line-height: .75vw;
}

#highscoreoptin2:hover {
    background-color: rgb(75, 75, 225);
}

.highest {
    background-color: rgb(255, 50, 150);
    width: min(8vw, 125px);
    height: 100%;
    font-size: min(1.2vw, 20px);
    color: white;
    display: inline;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    margin: auto;
    pointer-events: auto;
}

.highest:hover {
    background-color: rgb(225, 25, 125);
}

.highest:active {
    background-color: rgb(200, 75, 175);
}

.highest { /*//TEMP (no bis tasks)*/
    background-color: rgb(66, 55, 60);
    cursor: not-allowed;
}

.highest:hover { /*//TEMP (no bis tasks)*/
    background-color: rgb(66, 55, 60);
}

.highest:active { /*//TEMP (no bis tasks)*/
    background-color: rgb(66, 55, 60);
}

.highest2 {
    background-color: rgb(100, 100, 225);
    width: min(8vw, 125px);
    height: 100%;
    font-size: min(1.2vw, 20px);
    color: white;
    display: inline;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    margin: auto;
    pointer-events: auto;
}

.highest2:hover {
    background-color: rgb(75, 75, 200);
}

.highest2:active {
    background-color: rgb(125, 125, 175);
}

.icon-lock {
    width: 50px;
    margin: 0px auto;
    pointer-events: none;
    font-size: 44px;
    color: black;
}

.lock-closed {
    cursor: pointer;
    pointer-events: auto;
}

.lock-box {
    display: none;
    float: left;
    text-align: center;
    width: 100%;
}

.inner-lock {
    width: min(8%, 100px);
    margin: auto;
    pointer-events: all;
}

.lock-pin {
    width: 85%;
    font-size: min(2.5vw, 16px);
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.animated {
    animation-duration: .5s;
    animation-fill-mode: both;
}

.wrong {
    border: 2px solid red;
}

@keyframes shake {
    0%, 100% {transform: translateX(0);}
    10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
    20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.shake {
    animation-name: shake;
}

#lock-unlock {
    outline: none;
    width: 100%;
    font-size: min(2vw, 18px);
    z-index: 9998 !important;
    cursor: pointer;
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    transition-duration: .5s;
    border: 2px solid rgb(50, 50, 150);
    background-color: rgb(100, 100, 255);
    color: white;
}

#lock-unlock:hover {
    background-color: rgb(75, 75, 225);
}

#lock-unlock:disabled {
    border: 2px solid var(--color8);
    background-color: rgb(225, 225, 225);
    color: var(--colorText);
    cursor: not-allowed;
}

.toggle {
    width: 100%;
    height: 100%;
    font-size: min(2vw, 18px);
    color: white;
    display: block;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
}

.toggle.on {
    background-color: rgb(75, 200, 75);
}

.toggle.off {
    background-color: rgb(200, 75, 75);
}

.toggle.on:hover {
    background-color: rgb(50, 175, 50);
}

.toggle.off:hover {
    background-color: rgb(175, 50, 50);
}

.toggle.on:active {
    background-color: rgb(120, 180, 120);
}

.toggle.off:active {
    background-color: rgb(180, 120, 120);
}

#toggleNeighbors, #toggleRemove {
    margin-bottom: 25px;
}

.label {
    font-family: 'Calibri', 'Roboto Condensed', sans-serif;
    pointer-events: none;
    color: white;
    margin: auto;
    width: 100%;
    line-height: 0;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.box:not(.quality) > .label {
    transform: translateY(-10%);
}

.box.quality > .label {
    transform: translateY(-20%);
}

.box:not(.quality) > .chunkId {
    display: none;
    height: 0;
}

.ui-loader-header {
    display: none;
}

.loading {
    position: fixed;
    z-index: 99999 !important;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(22, 27, 34);
    pointer-events: none;
}

.loading-inner {
    display: block;
    margin: auto;
    width: 15vh;
    height: 15vh;
    position: relative;
    border: 10px solid rgb(201, 209, 217);
    background-color: aliceblue;
    top: 42.5vh;
    animation: loader 3s infinite ease;
    pointer-events: none;
}

.loading-hint-1 {
    text-align: center;
    margin-top: 32vh;
    width: 100%;
    position: fixed;
    top: 0px;
    font-size: 48px;
    color: rgb(201, 209, 217);
    pointer-events: none;
}

.loading-hint-2 {
    text-align: center;
    margin-top: 65vh;
    width: 100%;
    position: fixed;
    top: 0px;
    font-size: 24px;
    color: rgb(201, 209, 217);
    pointer-events: none;
}
  
@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }

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

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.content, .content2a, .content2b, .content3a {
    border: solid;
    width: 30%;
    margin: auto;
    text-align: center;
    margin-top: 4%;
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 150);
    background-color: var(--color6);
}

.content8 {
    border: solid;
    width: 30%;
    margin: auto;
    text-align: center;
    margin-top: 4%;
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 150);
    background-color: var(--color6);
}

.content9 {
    border: solid;
    width: 60%;
    max-height: 100%;
    min-width: 500px;
    max-width: 750px;
    margin: auto;
    text-align: center;
    margin-top: 2vh;
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 150);
    background-color: var(--color6);
    font-size: 18px;
    overflow-y: auto;
}

.inner-content9 {
    padding: 0px 20px 0px 20px;
    text-align: left;
}

.inner-content9 > .indent {
    text-indent: 25px;
}
.inner-content9 > .centered {
    text-align: center;
}

.inner-content9 h2, .inner-content9 p {
    margin-block-start: 15px;
    margin-block-end: 15px;
}


.avatar > img {
    border-radius: 100%;
    border: solid;
}

.patreon-link {
    text-align: center;
    margin-bottom: 15px;
    font-size: 24px;
}

.title {
    font-size: 3.5vw;
    border-bottom: solid;
    background-color: var(--color4);
    padding-top: 10px;
    padding-bottom: 10px;
}

.block {
    margin-bottom: 22px;
    width: 100%;
}

#page1extra > .block {
    margin-top: 22px;
}

.or {
    display: inline-block;
    font-size: 2.5vw;
    margin-bottom: 22px;
    margin-left: auto;
    margin-right: auto;
}

.left {
    float: left;
    margin-left: 20px;
}

.right {
    float: right;
    margin-right: 20px;
}

.hr {
    display: inline-block;
    width: 6vw;
    border-color: lightgray;
    margin-top: 1.5vw;
}

.button {
    outline: none;
    width: 75%;
    font-size: 2.25vw;
    cursor: pointer;
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    transition-duration: .5s;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#unlock-entry {
    height: 4vw;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    line-height: .75vw;
}

#create, #unlock-entry {
    border: 2px solid rgb(50, 50, 150);
    background-color: rgb(100, 100, 255);
    color: white;
}

#create:hover, #unlock-entry:hover {
    background-color: rgb(75, 75, 225);
}

#mid, #proceed {
    border: 2px solid rgb(50, 50, 50);
    background-color: var(--color6);
    color: var(--colorText);
}

#mid:hover, #proceed:hover {
    background-color: var(--color7);
}

#create2 {
    border: 2px solid rgb(50, 50, 150);
    background-color: rgb(100, 100, 255);
    color: white;
}

#create2:hover {
    background-color: rgb(75, 75, 225);
}

#create2:disabled, #unlock-entry:disabled {
    border: 2px solid var(--color8);
    background-color: rgb(225, 225, 225);
    color: black;
    cursor: not-allowed;
}

#access, #change-pin {
    border: 2px solid rgb(50, 50, 150);
    background-color: rgb(100, 100, 255);
    color: white;
    margin-bottom: 20px;
}

#access:hover, #change-pin:hover {
    background-color: rgb(75, 75, 225);
}

#access:disabled, #change-pin:disabled {
    border: 2px solid var(--color8);
    background-color: rgb(225, 225, 225);
    color: var(--colorText);
    cursor: not-allowed;
}

#newmid {
    border: solid;
    border-radius: 5px;
    background-color: rgb(250, 250, 250);
    font-size: 3vw;
    width: 33%;
    margin: auto;
    margin-bottom: 25px;
}

.entry-content {
    position: fixed;
    z-index: 9999 !important;
    border: solid;
    width: 30%;
    margin: auto;
    text-align: center;
    -ms-transform: translate(112.5%, 20%);
    transform: translate(112.5%, 20%);
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 150);
    background-color: var(--color6);
}

.import-content {
    position: absolute;
    z-index: 9998 !important;
    border: solid;
    width: 30%;
    margin: auto;
    text-align: center;
    -ms-transform: translate(112.5%, 20%);
    transform: translate(112.5%, 20%);
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 150);
    background-color: var(--color6);
}

.highscore-content {
    position: absolute;
    z-index: 9998 !important;
    border: solid;
    width: 30%;
    margin: auto;
    text-align: center;
    -ms-transform: translate(112.5%, 20%);
    transform: translate(112.5%, 20%);
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 150);
    background-color: var(--color6);
}

.help-content {
    position: fixed;
    z-index: 999 !important;
    border: solid;
    width: 30%;
    margin: auto;
    text-align: center;
    -ms-transform: translate(112.5%, 20%);
    transform: translate(112.5%, 20%);
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 150);
    background-color: var(--color6);
}

.help-link-block {
    margin: auto;
    width: 80%;
    padding-bottom: 20px;
    font-size: 1.25vw;
}

.text-link {
    text-decoration: underline;
    cursor: pointer;
}

.or-help {
    display: inline-block;
    font-size: 2.5vw;
    margin-left: auto;
    margin-right: auto;
}

.dismiss-help {
    cursor: pointer;
    transition-duration: .25s;
    text-decoration: underline;
}

.dismiss-help:hover {
    color: rgb(100, 100, 255);
}

.sticker-content {
    position: absolute;
    z-index: 9998 !important;
    border: solid;
    width: 30%;
    margin: auto;
    text-align: center;
    -ms-transform: translate(112.5%, 20%);
    transform: translate(112.5%, 20%);
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 150);
    background-color: white;
}

.home.text {
    font-size: 2vw;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
}

.p, .a {
    font-size: 1.25vw
}

.home.text2 {
    font-size: 2vw;
    font-weight: bold;
}

.desc {
    width: 90%;
    margin: auto;
}

.warning {
    font-size: 1.5vw;
}

.pin.new {
    width: 40%;
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 30px;
}

.back {
    transition-duration: .5s;
    cursor: pointer;
}

.back:hover {
    background-color: rgb(75, 75, 225);
    color: white;
    border-color: black;
}

.pin.entry {
    width: 40%;
    font-size: 2.5vw;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 25px;
}

.mid, .pin.old, .mid-old, .pin.old2 {
    width: 40%;
    font-size: 2.5vw;
    text-align: center;
    margin-top: 5px;
}

.mid-err, .pin-err, .url-err {
    color: red;
    visibility: hidden;
    margin-bottom: 10px;
}

.pin.old2.second {
    margin-bottom: 35px;
}

.link-outer {
    width: 90%;
    margin: auto;
    border: solid;
    border-radius: 5px;
    background-color: rgb(250, 250, 250);
    padding: 5px;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spin {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

.imgDiv {
	position: absolute;
	overflow: hidden;
    width: 4128px;
}

.btnDiv {
	position: absolute;
	top: 0;
	left: 0;

	display: grid;
	grid-gap: 0px;
	grid-template-columns: repeat(43, 2.3256% [col-start]);
	grid-template-rows: repeat(25, 4% [row-start]);

	overflow: hidden;
	width: 100%;
    height: 100%;
}

.map {
	float: left;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.escape-hint {
    display: none;
    position: absolute;
    top: 5vw;
    font-size: 52px;
    z-index: 999 !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: white;
    text-align: center;
    pointer-events: none;
}

.test-hint {
    display: none;
    position: absolute;
    top: 10vh;
    font-size: min(2.75vw, 52px);
    z-index: 999 !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: white;
    text-align: center;
    pointer-events: none;
    width: 100%;
}

.test-hint .subtext {
    display: block;
    font-size: min(1.25vw, 24px);
}

.settings {
    display: none;
    position: absolute;
    top: 4px;
    right: .5vw;
    z-index: 999 !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    transition-duration: .5s;
    font-size: 44px;
}

.settings:hover {
    color: rgb(100, 100, 255) !important;
}

.settings.whirl {
    -webkit-animation: spinner 300ms linear;
    -moz-animation: spinner 300ms linear;
    -ms-animation: spinner 300ms linear;
    -o-animation: spinner 300ms linear;
    animation: spinner 300ms linear;
}

.settings.smallspin {
    -webkit-animation: spinner2 300ms linear;
    -moz-animation: spinner2 300ms linear;
    -ms-animation: spinner2 300ms linear;
    -o-animation: spinner2 300ms linear;
    animation: spinner2 300ms linear;
}

.settings-menu {
    z-index: 999 !important;
    display: none;
    width: min(23vw, 250px);
    font-size: min(1.5vw, 16px);
    background-color: var(--color4);
    position: absolute;
    right: .5vw;
    top: 51px;
    border: solid black 1px;
}

.item {
    cursor: pointer;
    background-color: var(--color5);
    margin: 4px 4px 4px 4px;
    height: min(2vw, 25px);
    line-height: min(2vw, 25px);
    padding-left: 2px;
}

.item:hover {
    background-color: var(--color1);
}

.pic {
    float: right;
    margin-top: .33vw;
    margin-right: .25vw;
}

.item-on {
    background-color: rgb(125, 230, 125);
}

.item-off {
    background-color: rgb(230, 125, 125);
}

.topnav {
    z-index: 999 !important;
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    border: solid;
    border-width: 0 0 2px 0;
    background-color: var(--color1);
}

.topnav i {
    -webkit-text-fill-color: black;
    -webkit-text-stroke-width: 0.045em;
    -webkit-text-stroke-color: #868080;
}

.topnav i:hover {
    -webkit-text-stroke-color: rgb(100, 100, 255);
}

@-webkit-keyframes spinner2 {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(60deg);
        -moz-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        -o-transform: rotate(60deg);
        transform: rotate(60deg);
    }
}
@-moz-keyframes spinner2 {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(60deg);
        -moz-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        -o-transform: rotate(60deg);
        transform: rotate(60deg);
    }
}
@-o-keyframes spinner2 {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(60deg);
        -moz-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        -o-transform: rotate(60deg);
        transform: rotate(60deg);
    }
}
@keyframes spinner2 {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(60deg);
        -moz-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        -o-transform: rotate(60deg);
        transform: rotate(60deg);
    }
}

.gohome {
    position: absolute;
    transition-duration: .5s;
    cursor: pointer;
    top: 2px;
    left: 65px;
    font-size: 40px;
    font-weight: bold;
}

.gohome:hover {
    color: rgb(50, 50, 205);
}

.gohighscore {
    position: absolute;
    transition-duration: .5s;
    cursor: pointer;
    top: 4px;
    right: 60px;
    font-size: 44px;
}

.gohighscore:hover {
    color: rgb(100, 100, 255);
}

.gobugreport {
    position: absolute;
    transition-duration: .5s;
    cursor: pointer;
    top: 4px;
    right: 60px;
    font-size: 44px;
}

.gobugreport:hover {
    color: rgb(100, 100, 255);
}

.godocumentation {
    position: absolute;
    transition-duration: .5s;
    cursor: pointer;
    top: 4px;
    right: 180px;
    font-size: 44px;
}

.godocumentation:hover {
    color: rgb(100, 100, 255);
}

.godiscord {
    position: absolute;
    transition-duration: .5s;
    cursor: pointer;
    top: 4px;
    right: 115px;
    font-size: 44px;
}

.godiscord:hover {
    color: rgb(100, 100, 255);
}

.gopatreon {
    position: absolute;
    transition-duration: .5s;
    cursor: pointer;
    top: 4px;
    right: 225px;
    font-size: 44px;
    color: #f96854;
    -webkit-text-fill-color: #f96854 !important;
    -webkit-text-stroke-width: 3px !important;
    -webkit-text-stroke-color: black !important;
}

.gopatreon:hover {
    color: rgb(100, 100, 255);
    -webkit-text-stroke-color: rgb(50, 50, 205) !important;
}

.gosearch {
    position: absolute;
    transition-duration: .5s;
    cursor: pointer;
    top: 4px;
    left: 360px;
    font-size: 44px;
}

.gosearch:hover {
    color: rgb(100, 100, 255);
}

.about-button {
    position: absolute;
    transition-duration: .5s;
    cursor: pointer;
    left: 5px;
    font-size: 4.5vh;
    text-decoration: none;
}

.about-button:hover {
    color: rgb(100, 100, 255);
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
}

.help-button {
    position: absolute;
    transition-duration: .5s;
    cursor: pointer;
    top: 3px;
    right: 270px;
    font-size: 44px;
    text-decoration: none;
}

.help-button:hover {
    color: rgb(100, 100, 255);
}

.toptitle {
    font-size: 40px;
    top: 2px;
    width: 100%;
    margin-left: 4vw;
    text-align: left;
    position: absolute;
    pointer-events: none;
}

.toptitle2-outer {
    font-size: 40px;
    top: 2px;
    width: 100%;
    text-align: center;
    position: absolute;
    pointer-events: none;
    font-weight: bolder;
}

.chunkId {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.none {
    text-decoration: none;
}

.chunk {
    cursor: pointer;
    color: var(--colorLink);
}

.chunk:hover {
    text-decoration: underline;
}

.none > .chunk {
    cursor: default;
    color: var(--colorText);
}

.none > .chunk:hover {
    text-decoration: none;
}

.rank-rows {
    font-size: 2.5vw; 
    width: 100%;
}

.blank {
    cursor: default;
    background-color: var(--color1);
}

.panel:not(.visible) {
    max-height: 0;
    overflow: hidden;
    display: none;
}

.panel.visible {
    max-height: 250px;
    font-size: min(1.5vw, 14.5px);
    text-align: left;
    padding-left: 10px;
    overflow-y: auto;
    overflow-x: clip;
    padding-bottom: 5px;
}

.menu8 .panel.visible {
    max-height: min(10vh, 200px);
}

.panel-active .challenge {
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    padding-right: 10%;
    background-color: var(--color3);
    margin-right: 15px;
    position: relative;
}

.challenge.hide-backlog span.burger {
    display: none;
}

.challenge > input:disabled, .area > input:disabled {
    cursor: not-allowed;
}

.challenge .link, .challenge .internal-link, .area .link {
    pointer-events: all;
    color: inherit;
}

.panel-areas > div {
    margin-right: 10px;
}

.area {
    border: solid 1px var(--color2);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    background-color: var(--color3);
}

.area .radio__label {
    color: var(--colorText);
}

.arrow {
    font-weight: bold;
    cursor: pointer;
    color: #2d2d79;
}

.burger {
    cursor: pointer;
    font-size: max(1.65vh, 14px);
    margin-left: 5px;
    transition: color .5s;
    pointer-events: all;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3%;
}

.burger.hidden-burger {
    display: none;
}

.panel-completed .arrow.hidden-burger {
    display: none;
}

.burger:hover {
    color: gray;
}

.panel-backlog .burger {
    position: unset;
}

.exp {
    display: inline-block;
    min-width: 20px;
    padding-right: 10px;
}

.accordion {
    border-top: solid 1px;
    padding: 0px 5px 8px 5px;
    cursor: pointer;
    font-weight: bolder;
    font-size: min(2.15vw, 3.5vh, 26px);
    transition: 0.4s;
    text-align: left;
    padding-left: 25px;
    margin-bottom: -3.5px;
}

.accordion:hover {
    background-color: var(--color8);
}

.panel-close {
    cursor: pointer;
    margin-top: 0px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px !important;
}

.calculating {
    overflow-y: hidden !important;
    text-align: center !important;
    min-height: 20px;
}

.outer-loading-bar {
    border: solid;
    border-width: 1px;
    background-color: var(--color3);
    margin: 5px 10px 0px 10px;
    height: 10px;
    position: relative;
}

.inner-loading-bar {
    background-color: var(--colorTextAlt);
    width: 0%;
    height: 100%;
    display: block;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
}

.loading-bar-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color2);
    font-weight: bold;
}

#challengesactive {
    border-top: none !important;
}

#challengesactive .num-tasks {
    color: var(--colorTextAlt);
    font-size: min(1.55vw, 2.5vh, 20px);
    margin-left: 10px;
}

.bold {
    font-weight: bolder;
}

.link {
    color: var(--colorText);
    text-decoration: underline;
    cursor: pointer;
}

.maplink {
    color: blue !important;
}

.hiddenInfo {
    position: fixed;
    display: none;
    top: max(25vh, 225px);
    z-index: 100;
    border: dashed 2px black;
    padding: 7px 10px 11px 14px;
    font-size: 24px;
    border-radius: 100px;
    cursor: pointer;
    background-color: rgba(200, 200, 200, .75);
    transition: .5s;
    color: black;
}

.hiddenInfo:hover {
    background-color: rgba(200, 200, 200, .25);
}

.help {
    position: relative;
    float: right;
    margin-right: 10px;
    color: #666666;
}

.help2 {
    position: relative;
    float: none;
    font-weight: bold;
    margin-right: 0px;
    color: var(--colorLink);
}

.help .tooltiptext {
    visibility: hidden;
    width: 220px;
    background-color: rgb(179, 179, 179);
    color: black;
    text-align: center;
    border: 1px black solid;
    padding: 5px 0;
    font-size: 14px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 150%;
}

.help:hover .tooltiptext {
    visibility: visible;
}

.quest-icon {
    cursor: pointer;
    transition: color .5s;
}

.quest-icon:hover {
    color: gray;
}

.info-icon {
    cursor: pointer;
    transition: color .5s;
    margin-left: 5px;
}

.info-icon:hover {
    color: rgb(100, 100, 255);
}

.challenge-icon {
    cursor: pointer;
    transition: color .5s;
}

.challenge-icon:hover {
    color: gray;
}

.valid-chunk {
    color: rgb(50, 150, 50);
}

.click {
    cursor: pointer;
    text-decoration: underline;
}

.highlightAllQuest {
    border-bottom: solid 1px black;
}

.highlightAllQuest > span {
    font-size: 14px;
    cursor: pointer;
    color: rgb(61, 61, 61);
    transition: color .5s;
    text-decoration: underline;
}

.highlightAllQuest >span:hover {
    color: var(--colorText);
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 21vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    position: relative;
    background-color: var(--color1);
    margin: auto;
    width: 30%;
    height: 30%;
    border: solid black;
}

.modal .topbar {
    height: 7%;
    background-color: var(--color2);
    border-bottom: solid black 1px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

#myModal4 {
    padding-top:16vh !important;
}

#myModal4 > .modal-content {
    height: 60%;
    width: 45%;
    background-color: var(--color1);
    color: var(--colorText);
}

#myModa20 > .modal-content {
    height: 25%;
}

#myModal > .modal-content {
    height: 60%;
    width: 45%;
}

#myModal8 > .modal-content {
    height: 25%;
    width: 25%;
    margin-top: 1.5%;
}

#myModal10 > .modal-content {
    height: 50%;
    width: 35%;
}

#myModal11 > .modal-content {
    margin-top: -2.5%;
    width: 30%;
    height: 40%;
}

#myModal12 > .modal-content {
    height: 67%;
    width: 45%;
    margin-top: -5%;
}

#myModal12_2 > .modal-content {
    height: 67%;
    width: 45%;
    margin-top: -5%;
}

#myModal13 > .modal-content {
    height: 55%;
}

#myModal14 > .modal-content {
    height: 25%;
    width: 25%;
    margin-top: 1.5%;
}

#myModal15 > .modal-content {
    height: 60%;
    width: 40%;
    margin-top: -2.5%;
}

#myModal16 > .modal-content {
    height: 50%;
    width: 35%;
}

#myModal30 > .modal-content {
    height: 40%;
    width: 35%;
}

#myModal29 > .modal-content {
    height: 50%;
    width: 35%;
}

#myModal17 > .modal-content {
    height: 60%;
    width: 40%;
    margin-top: -2.5%;
}

#myModal18 {
    padding-top: 16vh !important;
}

#myModal18 > .modal-content {
    height: 60%;
    width: 45%;
    background-color: var(--color1);
    color: var(--colorText);
}

#myModal26 {
    padding-top:16vh !important;
}

#myModal26 > .modal-content {
    height: 60%;
    width: 45%;
    background-color: var(--color1);
    color: var(--colorText);
}

#myModal21 > .modal-content {
    height: 60%;
    width: 40%;
    margin-top: -2.5%;
}

#myModal23 > .modal-content {
    height: 70%;
    width: 40%;
    margin-top: -5%;
}

.manual-close {
    cursor: pointer;
    margin-top: 0px;
    position: absolute;
    top: 0;
    right: 0;
}

.challenge-title {
    height: 9%;
    font-size: 1.7vh;
    overflow-y: hidden;
}

.challenge-data {
    overflow-y: auto;
    height: 91%;
    padding-left: 20px;
    padding-right: 20px;
}

.challenge-data > .result-item {
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    background-color: var(--color3);
    margin-right: 15px;
}

#searchManual {
    margin-top: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
    width: 35%;
    font-size: 2vh;
}

.open-manual-outer-outer-container {
    border-top: 1px solid;
    display: none;
}

.open-manual-outer-container {
    border-top: 1px solid;
    display: none;
    font-size: min(1.75vw, 2.75vh, 26px);
}

.open-manual-outer {
    cursor: pointer;
    text-decoration: underline;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.open-manual-outer:hover {
    color: rgb(100, 100, 255);
}

.open-manual-outer > i {
    margin-right: 5px;
}

.open-manual-container {
    border-top: 1px solid;
    display: none;
}

.open-manual {
    cursor: pointer;
    text-decoration: underline;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.open-manual:hover {
    color: rgb(100, 100, 255);
}

.open-manual > i {
    margin-right: 5px;
}

.open-rules-container {
    border-top: 1px solid;
    font-size: min(1.75vw, 2.75vh, 26px);
}

.open-rules {
    cursor: pointer;
    text-decoration: underline;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.open-rules:hover {
    color: rgb(100, 100, 255);
}

.open-rules > i {
    margin-right: 5px;
}

.open-random-container {
    border-top: 1px solid;
    display: none;
}

.open-random {
    cursor: pointer;
    text-decoration: underline;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.open-random:hover {
    color: rgb(100, 100, 255);
}

.open-random > i {
    margin-right: 5px;
}

.open-monsters-container {
    border-top: 1px solid;
    display: none;
}

.open-monsters {
    cursor: pointer;
    text-decoration: underline;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.open-monsters:hover {
    color: rgb(100, 100, 255);
}

.open-monsters > i {
    margin-right: 5px;
}

.open-complete-container {
    border-top: 1px solid;
    display: none;
    font-size: min(1.75vw, 2.75vh, 26px);
}

.open-complete {
    cursor: pointer;
    text-decoration: underline;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.open-complete:hover {
    color: rgb(100, 100, 255);
}

.open-complete > i {
    margin-right: 5px;
}

.beta-text {
    display: none;
    position: absolute;
    right: -15px;
    top: 2px;
    transform: rotate(33deg);
    font-weight: bold;
    color: red;
    font-size: 30px;
    text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
    pointer-events: none;
}

.exp .pic {
    line-height: .5;
}

.mini.avatar img {
    border: solid 2px black;
    width: 45px;
    height: 45px;
}

.active-context-menu {
    display: none;
    z-index: 1000;
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--color2);
    white-space: nowrap;
    font-family: sans-serif;
    background: var(--color1);
    color: var(--colorText);
    border-radius: 5px;
    padding: 0;
}

.active-context-menu li {
    padding: 8px 12px;
    cursor: pointer;
    list-style-type: none;
    transition: all .3s ease;
    user-select: none;
}

.active-context-menu li:hover {
    background-color: var(--color3);
}

.backlog-context-menu {
    display: none;
    z-index: 1000;
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--color2);
    white-space: nowrap;
    font-family: sans-serif;
    background: var(--color1);
    color: var(--colorText);
    border-radius: 5px;
    padding: 0;
}

.backlog-context-menu li {
    padding: 8px 12px;
    cursor: pointer;
    list-style-type: none;
    transition: all .3s ease;
    user-select: none;
}

.backlog-context-menu li:hover {
    background-color: var(--color3);
}

.questfilter-context-menu {
    display: none;
    z-index: 1000;
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--color2);
    white-space: nowrap;
    font-family: sans-serif;
    background: var(--color1);
    color: var(--colorText);
    border-radius: 5px;
    padding: 0;
    z-index: 99999;
}

.questfilter-context-menu li {
    padding: 8px 12px;
    cursor: pointer;
    list-style-type: none;
    transition: all .3s ease;
    user-select: none;
}

.questfilter-context-menu li:hover {
    background-color: var(--color3);
}

.details-title {
    font-size: 2.6vh;
    padding-left: 10px;
    max-height: 20%;
    min-height: 20%;
    overflow-y: hidden;
}

.details-subtitle {
    text-transform: capitalize;
    font-size: 20px;
}

.details-data {
    overflow-y: scroll;
    height: 73%;
    padding-left: 10px;
}

.details-data .red {
    color: red;
}

.details-data .special {
    color: var(--colorLink);
}

.alts-title {
    font-size: 36;
    padding-left: 10px;
    max-height: 20%;
    min-height: 20%;
    text-align: center;
    font-weight: bold;
    overflow-y: hidden;
}

.alts-data {
    overflow-y: scroll;
    height: 73%;
    padding-left: 10px;
}

.alts-data > .results {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.alt-challenge {
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    padding-right: 10%;
    background-color: var(--color3);
    margin-right: 15px;
    position: relative;
}

.add-title {
    font-size: 3.8vh;
    padding-left: 10px;
    max-height: 20%;
    min-height: 20%;
    text-align: center;
    font-weight: bold;
    overflow-y: hidden;
}

.add-data {
    height: 73%;
    padding-left: 10px;
}

.add-item {
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    font-size: 3.25vh;
    text-align: center;
}

.notes-title {
    font-size: min(2vw, 24px);
    padding: 0px 10px;
    height: 30%;
    overflow-y: hidden;
}

.notes-data {
    text-align: center;
    height: 47%;
}

.notes-data > textarea {
    resize: none;
    width: 90%;
    height: 100%;
}

.notes-footer {
    height: 23%;
}

.settings-title {
    font-size: 4.5vh;
    padding-left: 10px;
    max-height: 9%;
    min-height: 9%;
    text-align: center;
    background-color: var(--color1);
    overflow-y: hidden;
}

.settings-data {
    overflow-y: scroll;
    height: 90%;
    padding-left: 10px;
    padding-right: 10px;
    border-top: solid 1px;
}

.setting-category {
    font-size: 28px;
    font-weight: bold;
}

.setting-subcategory {
    font-size: 14px;
    font-style: italic;
}

.setting {
    font-size: 18px;
    font-weight: normal;
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 5px;
    padding: 2px;
    background-color: var(--color3);
    position: relative;
}

.setting > input {
    position: absolute;
}

.setting > span {
    padding-left: 22px;
    display: block;
}

.setting > input:disabled {
    cursor: not-allowed;
}

.extraspace {
    padding-left: 80px !important;
}

.reset-challenge-color {
    position: absolute;
    font-size: 14px;
    margin-left: 60px;
    margin-top: 5px;
    cursor: pointer;
}

.reset-default-sticker-color {
    position: absolute;
    font-size: 14px;
    margin-left: 60px;
    margin-top: 5px;
    cursor: pointer;
}

.rules-title {
    font-size: 4.5vh;
    padding-left: 10px;
    max-height: 9%;
    min-height: 9%;
    text-align: center;
    background-color: var(--color2);
    overflow-y: hidden;
}

.rules-subtitle {
    padding: 0px 15px;
    background-color: var(--color2);
    font-size: 1.65vh;
    text-align: center;
    max-height: 10%;
    min-height: 10%;
}

.rules-data {
    overflow-y: scroll;
    height: 80.5%;
    padding-left: 10px;
    padding-right: 10px;
    border-top: solid 1px;
}

.show-rule-details-btn {
    margin-top: 30px;
}

.show-rule-details-btn > span {
    border: 1px solid black;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--color4);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    margin: auto;
    display: block;
    width: 33%;
}

.show-rule-details-btn > span:hover {
    background-color: var(--color3);
}

.intro-subcategory, .presets-subcategory {
    margin-bottom: 20px;
    font-size: 16px !important;
    font-style: normal !important;
}

.show-rule-back-btn {
    padding: 10px 0px;
}

.show-rule-back-btn > span {
    cursor: pointer;
    font-size: 18px;
    color: var(--colorLink);
    text-decoration: underline;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.show-rule-back-btn > span:hover {
    color: var(--colorTextAlt);
}

#rules-data > .panel.visible {
    max-height: none;
    padding-right: 10px;
}

#rules-data > .accordion {
    background-color: var(--color2);
    margin-bottom: -1px;
    border: 1px solid;
    padding-bottom: 5px;
}

#rules-data > .accordion:hover {
    background-color: var(--color3);
}

#rules-data > .bottom-spacing {
    padding: 10px;
}

.rule-category {
    font-size: 28px;
    font-weight: bold;
    text-decoration: underline;
}

.rule-minicategory {
    font-size: 22px;
    font-weight: bold;
}

.rule-subcategory {
    font-size: 14px;
    font-style: italic;
}

.rule {
    font-size: 18px;
    font-weight: normal;
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 5px;
    padding: 2px;
    background-color: var(--color3);
    position: relative;
}

.rule > input {
    position: absolute;
}

.rule > span {
    padding-left: 22px;
    display: block;
}

.rule > input:disabled {
    cursor: not-allowed;
}

.subrule {
    margin-left: 20px;
}

#myModal4 > .modal-content {
    max-width: 600px;
}

.rules-presets {
    margin: 10px;
}

.preset-button {
    display: inline-block;
    border: 1px solid black;
    padding: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--color1);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.preset-button:hover {
    background-color: var(--color4);
}

.preset-button > span {
    font-size: 14px;
    font-style: italic;
    font-weight: normal;
}

.chunkhistory-title {
    font-size: 4.5vh;
    padding-left: 10px;
    max-height: 9%;
    min-height: 9%;
    text-align: center;
    background-color: var(--color2);
    overflow-y: hidden;
}

.chunkhistory-subtitle {
    padding: 0px 15px;
    background-color: var(--color2);
    font-size: 1.65vh;
    text-align: center;
    max-height: 10%;
    min-height: 10%;
}

.chunkhistory-data {
    overflow-y: auto;
    height: 80.5%;
    padding-left: 10px;
    padding-right: 10px;
    border-top: solid 1px;
}

.history-item {
    display: flex;
    align-items: center;
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    background-color: var(--color3);
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.history-item > span {
    width: 50%;
    padding-left: 10px;
    margin-left: 10px;
    font-size: 20px;
    color: var(--colorTextAlt);
}

.history-item > span > b {
    color: var(--colorText);
}

.history-item .item1 {
    border-right: solid 1px var(--color8);
    text-align: center;
}

.canvas-graph-outer {
    text-align: center;
}

#canvas-graph {
    border: solid black;
    margin: 25px;
}

.average-rolltime-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

#myModal7 > .modal-content {
    height: 60%;
    width: 45%;
    background-color: var(--color4);
    max-width: 600px;
}

#myModal22 > .modal-content {
    max-width: 400px;
    height: 35%;
}

#myModal28 > .modal-content {
    max-width: 400px;
    height: 35%;
}

#myModal5 > .modal-content {
    max-width: 400px;
}

#myModal6 > .modal-content {
    max-width: 400px;
}

#myModal9 > .modal-content {
    height: 25%;
    width: 25%;
    margin-top: 1.5%;
}

.preset-title {
    font-size: 24px;
    font-weight: bold;
    padding-top: 0px;
    max-height: 20%;
    min-height: 20%;
    line-height: 50px;
    text-align: center;
    background-color: var(--color1);
    overflow-y: hidden;
}

.preset-subtitle {
    padding: 0px 15px;
    background-color: var(--color4);
    font-size: 18px;
    text-align: center;
    border-top: solid 1px;
    height: 80%;
}

.preset-data > div {
    float: right;
    margin-right: 10px;
    margin-top: -55px;
    display: flex;
}

.preset-warn {
    margin-top: 30px;
    font-size: 20px;
}

.preset-cancel {
    padding: 10px;
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.preset-proceed {
    border: solid 1px black;
    background-color: rgb(75, 200, 75);
    padding: 10px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.preset-proceed:hover {
    background-color: rgb(50, 175, 50);
}

.random-title {
    font-size: 24px;
    font-weight: bold;
    padding-top: 0px;
    max-height: 20%;
    min-height: 20%;
    line-height: 6vh;
    text-align: center;
    background-color: var(--color2);
    overflow-y: hidden;
}

.random-subtitle {
    padding: 0px 15px;
    background-color: var(--color1);
    font-size: max(1.7vh, 12px);
    text-align: center;
    border-top: solid 1px;
    height: 80%;
}

.random-data > div {
    float: right;
    margin-right: 10px;
    margin-top: -55px;
    display: flex;
}

#random-dropdown-container {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
}

#random-dropdown {
    font-size: 2.55vh;
    width: 200px;
}

.random-cancel {
    padding: 10px;
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.random-proceed {
    border: solid 1px black;
    background-color: rgb(75, 200, 75);
    padding: 10px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.random-proceed.disabled {
    background-color: rgb(125, 125, 125);
    cursor: not-allowed;
}

.random-proceed:not(.disabled):hover {
    background-color: rgb(50, 175, 50);
}

.slayer-locked-title {
    font-size: 3vh;
    font-weight: bold;
    padding-top: 0px;
    max-height: 15%;
    min-height: 15%;
    line-height: 5vh;
    text-align: center;
    background-color: var(--color2);
    overflow-y: hidden;
}

.slayer-locked-subtitle {
    padding: 0px 15px;
    background-color: var(--color1);
    font-size: 1.7vh;
    text-align: center;
    border-top: solid 1px;
    height: 85%;
}

.slayer-locked-data > div {
    float: right;
    margin-right: 10px;
    margin-top: -7vh;
    display: flex;
    height: 15%;
}

#slayer-locked-dropdown-container {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 45%;
}

#slayer-locked-dropdown {
    font-size: 2.65vh;
    width: 200px;
}

#slayer-locked-input-container {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 60%;
    font-size: 20px;
}

.slayer-locked-cancel {
    padding: 10px;
    font-size: 2vh;
    margin-right: 10px;
    cursor: pointer;
}

.slayer-locked-proceed {
    border: solid 1px black;
    background-color: rgb(75, 200, 75);
    padding: 1vh;
    color: white;
    font-size: 2vh;
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.slayer-locked-proceed.disabled {
    background-color: rgb(125, 125, 125);
    cursor: not-allowed;
}

.slayer-locked-proceed:not(.disabled):hover {
    background-color: rgb(50, 175, 50);
}

.passive-skill-title {
    font-size: 3vh;
    font-weight: bold;
    padding-top: 0px;
    max-height: 15%;
    min-height: 15%;
    line-height: 5vh;
    text-align: center;
    background-color: var(--color2);
    overflow-y: hidden;
}

.passive-skill-subtitle {
    padding: 0px 15px;
    background-color: var(--color1);
    font-size: min(1.5vw, 16px);
    text-align: center;
    border-top: solid 1px;
    height: 85%;
}

.passive-skill-data > div {
    float: right;
    margin-right: 10px;
    margin-top: -7vh;
    display: flex;
    height: 15%;
}

#passive-skill-input-container {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 55%;
    font-size: 20px;
}

.passive-skill-cancel {
    padding: 10px;
    font-size: 2vh;
    margin-right: 10px;
    cursor: pointer;
}

.passive-skill-proceed {
    border: solid 1px black;
    background-color: rgb(75, 200, 75);
    padding: 1vh;
    color: white;
    font-size: 2vh;
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.passive-skill-proceed.disabled {
    background-color: rgb(125, 125, 125);
    cursor: not-allowed;
}

.passive-skill-proceed:not(.disabled):hover {
    background-color: rgb(50, 175, 50);
}

#cancel-notes-button {
    float: right;
    padding: 20px 10px;
    cursor: pointer;
    font-size: 20px;
}

#submit-notes-button {
    background-color: gray;
    width: 100px;
    font-size: 20px;
    color: white;
    float: right;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    margin: 20px 10px;
}

#submit-notes-button:hover {
    background-color: rgb(80, 80, 80);
}

.marker {
    font-size: min(1.8vw, 20px);
    font-weight: bold;
    cursor: pointer;
    background-color: var(--color2);
    margin-right: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
    border-radius: 10px;
    position: relative;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.marker:hover {
    background-color: var(--color8);
}

.challenge.stay-hidden {
    display: none;
}

.marker > span {
    margin-left: 30px;
}

.expand-button {
    margin-left: 10px;
    position: absolute;
}

.expand-button.fa-caret-right {
    margin-left: 15px !important;
    margin-top: 2px;
}

.challenge-data > .results {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.results .holder {
    margin-top: -50px;
}

.results .topline {
    font-size: 32px;
}

.results .bottomline {
    font-size: 18px;
}

.random-list {
    padding: 10px;
    margin-right: 10px;
    cursor: pointer;
    position: absolute;
    left: 0px;
    bottom: 0px;
    font-size: 14px;
    color: var(--colorLink);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.random-list:hover {
    color: rgb(100, 100, 255);
}

.randomlist-title {
    font-size: 36px;
    text-align: center;
    max-height: 20%;
    min-height: 20%;
    overflow-y: hidden;
}

.randomlist-data {
    height: 80%;
    overflow: auto;
}

.randomlist-item {
    position: relative;
    font-size: 20px;
    padding-left: 10px;
}

.randomlist-item > span {
    position: absolute;
    right: 10px;
    cursor: pointer;
    color: rgb(50, 50, 50);
}

.randomlist-data > .results {
    text-align: center;
    font-size: 24px;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
    margin-top: -15px;
}

.statserror-title {
    font-size: 30px;
    text-align: center;
    max-height: 50%;
    min-height: 50%;
    font-weight: bold;
    padding: 0px 10px;
    overflow-y: hidden;
}

.statserror-subtitle {
    height: 30%;
    padding: 0px 10px;
}

.statserror-footer {
    position: relative;
    height: 20%;
}

#submit-statserror-button {
    background-color: gray;
    width: 100px;
    font-size: 20px;
    color: white;
    float: right;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    margin: 10px;
}

#submit-statserror-button:hover {
    background-color: var(--color8);
}

.searchchunks-title {
    font-size: 3.25vh;
    text-align: center;
    max-height: 10%;
    min-height: 10%;
    font-weight: bold;
    padding: 0px 10px;
    background-color: var(--color2);
    overflow-y: hidden;
}

.searchchunks-subtitle {
    height: 10%;
    padding: 0px 15px;
    background-color: var(--color2);
    font-size: min(1.35vw, 16px);
}

.searchchunks-searchcontainer {
    height: 8%;
    padding: 0px 15px;
    background-color: var(--color2);
    font-size: 1.7vh;
}

input#searchChunks {
    font-size: 2.1vh;
}

.searchchunks-data {
    height: 72%;
    padding: 0px 25px;
    overflow-y: auto;
}

.searchchunks-data > .results {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.search-header {
    font-size: 32px;
}

.search-result > span {
    margin-left: 5px;
    font-size: 24px;
    cursor: pointer;
    text-decoration: underline;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.search-result > span:hover {
    color: gray;
}

.searchdetails-title {
    font-size: 30px;
    text-align: center;
    max-height: 25%;
    min-height: 25%;
    font-weight: bold;
    padding: 0px 10px;
    overflow-y: hidden;
}

.searchdetails-data {
    margin-left: 5px;
    font-size: 20px;
    overflow-y: auto;
    height: 75%;
}

.searchdetails-data > .results {
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    background-color: var(--color3);
    margin-right: 15px;
}

.searchchunks-data > .search-result {
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    background-color: var(--color3);
    margin-right: 15px;
}

.highest-title {
    font-size: 1.2vw;
    display: inline-flex;
    width: 100%;
    font-weight: bold;
    height: 10%;
    background-color: var(--color2);
    overflow-y: hidden;
}

.highest-data {
    overflow-y: auto;
    height: 90%;
}

.highest-subtitle {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.highest2-title {
    font-size: 1.2vw;
    display: inline-flex;
    width: 100%;
    font-weight: bold;
    height: 7%;
    background-color: var(--color2);
    overflow-y: hidden;
}

.highest2-data {
    overflow-y: auto;
    height: 93%;
}

.highest2-subtitle {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

.Quests-body > .results {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.complete-title {
    font-size: 3.9vh;
    font-weight: bold;
    padding-top: 0px;
    max-height: 20%;
    min-height: 20%;
    line-height: 5.5vh;
    text-align: center;
    background-color: var(--color1);
}

.complete-data {
    margin: 0px 15px;
    font-size: 2vh;
    display: flex;
    align-items: center;
    height: 55%;
}

.complete-footer {
    height: 25%;
}

#submit-complete-button {
    background-color: rgb(75, 200, 75);
    width: 125px;
    font-size: 2.2vh;
    color: white;
    float: right;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    margin: 10px;
}

#submit-complete-button:hover {
    background-color: rgb(50, 175, 50);
}

.style-button {
    padding: 10px 1vw;
    text-align: center;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.style-button:hover {
    background-color: var(--color8);
}

.style-button.active-tab {
    background-color: var(--color9);
}

.style-body > .row {
    display: flex;
    align-items: center;
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    background-color: var(--color3);
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.Skills-body > .row {
    width: 90%;
}

.Skills-body > .row.row-header {
    background-color: var(--color2);
}

.Clues-body > .row {
    width: 90%;
}

.Clues-body > .row.row-header {
    background-color: var(--color2);
}

.Shooting_Stars-body > .row {
    width: 90%;
}

.Shooting_Stars-body > .row.row-header {
    background-color: var(--color2);
}

.slot-text {
    margin-left: 20px;
    font-size: 24px;
}

.skill-text {
    padding-left: 10px;
    margin-left: 10px;
    font-size: 20px;
    width: 65%;
    border-left: solid 1px var(--color8);
    border-right: solid 1px var(--color8);
}

.skill-icon-wrapper {
    width: 25px;
    text-align: center;
}

.skill-button {
    width: 28%;
    font-size: 19px;
    text-align: center;
}

.skill-button.active > .methods-button {
    cursor: pointer;
    text-decoration: underline;
    font-weight: bold;
    display: inline-block;
}

.skill-button.active > .methods-button:hover {
    color: rgb(100, 100, 255);
}

.icon-table-header {
    font-size: 18px;
    font-weight: bold;
    width: 25px;
}

.text-table-header {
    padding-left: 10px;
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    width: 65%;
    border-left: solid 1px var(--color8);
    border-right: solid 1px var(--color8);
}

.button-table-header {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 28.2%;
}

.clue-possible {
    padding-left: 10px;
    margin-left: 10px;
    font-size: 20px;
    width: 45%;
    text-align: center;
    border-left: solid 1px var(--color8);
    border-right: solid 1px var(--color8);
}

.clue-tier {
    width: 120px;
    font-size: 20px;
}

.clue-tier .tier-icon {
    margin-right: 10px;
}

.clue-percent {
    width: 30%;
    font-size: 19px;
    text-align: center;
}

.tier-table-header {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 120px;
}

.possible-table-header {
    padding-left: 10px;
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 45%;
    border-left: solid 1px var(--color8);
    border-right: solid 1px var(--color8);
}

.percent-table-header {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 30%;
}

.star-sites {
    padding-left: 10px;
    margin-left: 10px;
    font-size: 20px;
    width: 30%;
    text-align: center;
    border-left: solid 1px var(--color8);
}

.star-region {
    width: 70%;
    font-size: 20px;
    text-align: center;
}

.region-table-header {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 70%;
}

.sites-table-header {
    padding-left: 10px;
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: 30%;
    border-left: solid 1px var(--color8);
}

.style-body > .row.total {
    background-color: var(--color2);
    border-color: rgb(200, 200, 0);
    margin-bottom: 20px;
}

.methods-data {
    height: 93%;
    overflow-y: auto;
    font-size: 24px;
}

.methods-data > .skill-method {
    display: flex;
    align-items: center;
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 10px;
    padding: 2px;
    padding-left: 5px;
    background-color: var(--color3);
}

.x-num-input {
    width: 75px;
    pointer-events: all;
}

.rare-num-input {
    width: 75px;
    pointer-events: all;
}

.addEquipment {
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    font-size: 20px;
    text-decoration: underline;
}

.addEquipment:hover {
    color: rgb(100, 100, 255);
}

.add-equipment-title {
    font-size: min(2vw, 4vh, 24px);
    font-weight: bold;
    padding-top: 0px;
    max-height: 7%;
    min-height: 7%;
    line-height: 5vh;
    text-align: center;
}

.add-equipment-subtitle {
    padding: 0px 15px;
    font-size: min(1.15vw, 1.75vh, 16px);
    text-align: center;
    height: 15%;
}

.add-equipment-searchcontainer {
    height: 8%;
    padding: 0px 15px;
    font-size: 1.7vh;
}

input#searchAddEquipment {
    font-size: 2.1vh;
}

.add-equipment-data {
    height: 70%;
    padding: 0px 25px;
    overflow-y: auto;
}

.add-equipment-data > .results {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.add-equipment-data > .search-equipment-result {
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    background-color: var(--color3);
    margin-right: 15px;
}

.search-equipment-result > span {
    margin-left: 5px;
    font-size: 24px;
    cursor: pointer;
    text-decoration: underline;
}

.search-equipment-result input {
    margin-right: 10px;
}

.backlogSources-container {
    text-align: center;
    padding: 5px;
}

.backlogSources {
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    font-size: 20px;
    text-decoration: underline;
}

.backlogSources:hover {
    color: rgb(100, 100, 255);
}

.backlogSources > i {
    margin-right: 5px;
}

.backlog-sources-title {
    font-size: min(3vw, 4vh, 36px);
    font-weight: bold;
    padding-top: 0px;
    max-height: 7%;
    min-height: 7%;
    line-height: 5vh;
    text-align: center;
}

.backlog-sources-subtitle {
    padding: 0px 15px;
    font-size: min(1.15vw, 1.75vh, 16px);
    text-align: center;
    height: 10%;
}

.backlog-sources-searchcontainer {
    height: 8%;
    padding: 0px 15px;
    font-size: 1.7vh;
}

input#searchBacklogSources {
    font-size: 2.1vh;
}

.backlog-sources-data {
    height: 75%;
    padding: 0px 25px;
    overflow-y: auto;
}

.backlog-sources-data > .results {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.backlog-sources-data > .search-sources-result {
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    background-color: var(--color3);
    margin-right: 15px;
}

.search-sources-result > span {
    margin-left: 5px;
    font-size: 24px;
}

.search-sources-result input {
    margin-right: 10px;
}

.monsters-title {
    font-size: min(3vw, 3.7vh, 36px);
    font-weight: bold;
    padding-top: 0px;
    max-height: 7%;
    min-height: 7%;
    line-height: 50px;
    text-align: center;
}

.monsters-subtitle {
    padding: 0px 15px;
    font-size: min(1.15vw, 1.75vh, 16px);
    text-align: center;
    height: 12%;
}

.monsters-searchcontainer {
    height: 8%;
    padding: 0px 15px;
    font-size: 1.7vh;
}

input#searchMonsters {
    font-size: 2.1vh;
}

.monsters-data {
    height: 73%;
    padding: 0px 25px;
    overflow-y: auto;
}

.monsters-data > .results {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.monsters-data > .search-monsters-result {
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    background-color: var(--color3);
    margin-right: 15px;
}

.search-monsters-result > span {
    margin-left: 5px;
    font-size: 24px;
}

.search-monsters-result input {
    margin-right: 10px;
}

.tosearchdetails {
    cursor: pointer;
    text-decoration: underline;
}

.chunk-sticker {
    width: auto;
    height: auto;
    position: absolute;
    right: 5px;
    top: 5px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    transition-property: color;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.chunk-sticker i {
    -webkit-text-stroke-width: 0.05em;
    -webkit-text-stroke-color: black;
}

.chunk-sticker.clicky {
    pointer-events: auto;
}

.chunk-sticker.clicky.signedIn {
    cursor: pointer;
}

.chunk-sticker.clicky:hover {
    color: rgb(220, 220, 220);
}

.chunk-sticker.hidden-sticker {
    opacity: 0;
    display: none;
    color: var(--colorText);
}

.box:hover .chunk-sticker {
    opacity: 1;
}

.sticker-chunk {
    font-weight: bold;
    display: block;
}

.sticker-title {
    font-size: 30px;
    text-align: center;
    max-height: 25%;
    min-height: 25%;
    padding: 0px 10px;
    border-bottom: 1px solid;
}

.sticker-data-container {
    font-size: 30px;
    text-align: center;
    max-height: 63%;
    min-height: 63%;
    padding: 0px 10px;
    overflow-y: auto;
    background-color: var(--color4);
}

.sticker-option-container {
    padding: 10px;
    border: solid;
    margin: 10px;
    cursor: pointer;
    display: inline-block;
    width: 35px;
    min-height: 30px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    border-color: var(--colorText);
}

.sticker-option-container > img {
    max-width: 35px;
}

.sticker-option-container.black-outline > i {
    -webkit-text-stroke-width: 0.05em;
    -webkit-text-stroke-color: black;
}

.sticker-option-container.unset-option {
    color: rgb(100, 100, 100);
    border: dashed;
}

.selected-sticker {
    border-color: rgb(50, 175, 50);
}

.sticker-option-container:hover {
    border-color: rgb(75, 75, 225);
}

.sticker-notes-data {
    text-align: center;
    height: 20%;
    margin-top: 15px;
}

.sticker-notes-data > textarea {
    resize: none;
    width: 90%;
    height: 100%;
    font-size: 18px;
}

.sticker-footer {
    height: 13%;
    border-top: 1px solid;
}

#cancel-sticker-button {
    float: right;
    padding: 20px 10px;
    cursor: pointer;
    font-size: 20px;
}

#submit-sticker-button {
    background-color: gray;
    width: 100px;
    font-size: 20px;
    color: white;
    float: right;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    margin: 20px 10px;
}

#submit-sticker-button:hover {
    background-color: rgb(80, 80, 80);
}

.blacklist-label {
    color: white;
    margin: auto;
    z-index: 1;
    font-weight: bold;
    background-color: rgba(0, 0, 0, .75);
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.blacklist-label.hidden-blacklist-label {
    opacity: 0;
    display: none;
}

.box:hover .blacklist-label {
    opacity: 1;
}

.sticker-color-data {
    padding: 10px;
}

.sticker-color-picker-label {
    font-size: 24px;
}

.tooltiptext-sticker {
    visibility: hidden;
    max-width: 220px;
    width: max-content;
    background-color: rgb(179, 179, 179);
    color: black;
    text-align: center;
    border: 1px black solid;
    padding: 5px;
    font-size: 14px;
    position: absolute;
    top: 5px;
    left: 150%;
    word-wrap: break-word;
    z-index: 1;
}

.chunk-sticker:hover .tooltiptext-sticker {
    visibility: visible;
}

.slayer-header {
    font-size: 26px;
    text-align: center;
    padding: 10px;
}

.slayer-locked-status.red {
    color: red;
}

.slayer-locked-status.green {
    color: green;
}

.slayer-unlock-container {
    font-size: 26px;
    text-align: center;
    padding: 10px;
}

.slayer-unlock-button {
    cursor: pointer;
    text-decoration: underline;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.slayer-unlock-button:hover {
    color: green;
}

.slayer-unlock-button > i {
    margin-right: 10px;
}

.slayer-lock-container {
    font-size: 26px;
    text-align: center;
    padding: 10px;
}

.slayer-lock-button {
    cursor: pointer;
    text-decoration: underline;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.slayer-lock-button:hover {
    color: rgb(100, 100, 255);
}

.slayer-lock-button > i {
    margin-right: 5px;
}

.background-img-23 {
    position: absolute;
    top: 0px;
    left: 0px;
    filter: blur(0.1vw) brightness(50%);
    min-width: 100%;
    min-height: 100%;
}

.roll-chunk-title {
    font-size: 36px;
    padding-left: 10px;
    max-height: 8%;
    min-height: 8%;
    text-align: center;
    font-weight: bold;
}

.roll-chunk-subtitle {
    font-size: 28px;
    padding-left: 10px;
    max-height: 7%;
    min-height: 7%;
    text-align: center;
    font-weight: bold;
}

.roll-chunk-data {
    max-height: 72%;
    min-height: 72%;
    top: 10%;
}

.roll-chunk-outer {
    position: absolute;
    top: -.25vh;
    left: calc(50% - 8vh);
    z-index: 1;
}

.roll-chunk-outer2 {
    position: absolute;
    top: -.25vh;
    left: calc(50% - 8vh);
    z-index: 1;
}

.roll-chunk-inner {
    width: 16vh;
    height: 16vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    color: white;
    font-weight: bold;
}

.roll-chunk-window-outer {
    position: absolute;
    left: calc(50% - 8vh);
    border: solid 3px;
    height: 48vh;
    width: 16vh;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow: hidden;
}

.roll-chunk-window-outer2 {
    position: absolute;
    left: calc(70% - 8vh);
    border: solid 3px;
    height: 48vh;
    width: 16vh;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow: hidden;
}

.roll-chunk-window1 {
    width: 16vh;
    height: 16vh;
    margin-top: -.1vh;
    margin-left: -.1vh;
    z-index: 2;
    position: absolute;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.25) 100%);
}

.roll-chunk-window2 {
    border-top: solid 0.5vh;
    border-bottom: solid 0.5vh;
    width: 16vh;
    height: 15.5vh;
    margin-top: 15.9vh;
    margin-left: -0.1vh;
    z-index: 3;
    position: absolute;
}

.roll-chunk-window3 {
    width: 16vh;
    height: 16vh;
    margin-top: 31.9vh;
    margin-left: -.1vh;
    z-index: 2;
    position: absolute;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.25) 100%);
}

.chunk-window-child1::before {
    font-family: "FontAwesome";
    content: "\f054";
    color: var(--colorText);
    position: fixed;
    margin-left: -9vh;
    margin-top: 1px;
    -webkit-text-fill-color: var(--colorText);
    -webkit-text-stroke-width: .045em;
    -webkit-text-stroke-color: rgba(0, 0, 0, 1);
    pointer-events: none;
    font-size: 15vh;
    animation: wave-horizontal 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}

.chunk-window-child1::after {
    font-family: "FontAwesome";
    content: "\f053";
    color: var(--colorText);
    position: fixed;
    margin-left: 15vh;
    margin-top: 1px;
    -webkit-text-fill-color: var(--colorText);
    -webkit-text-stroke-width: .045em;
    -webkit-text-stroke-color: rgba(0, 0, 0, 1);
    pointer-events: none;
    font-size: 15vh;
    animation: wave-invert-horizontal 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}

.chunk-window-child2::before {
    font-family: "FontAwesome";
    content: "\f054";
    color: var(--colorText);
    position: fixed;
    margin-left: -14vh;
    margin-top: 1px;
    -webkit-text-fill-color: var(--colorText);
    -webkit-text-stroke-width: .045em;
    -webkit-text-stroke-color: rgba(0, 0, 0, 1);
    pointer-events: none;
    font-size: 15vh;
    animation: wave-horizontal 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}

.chunk-window-child2::after {
    font-family: "FontAwesome";
    content: "\f053";
    color: var(--colorText);
    position: fixed;
    margin-left: 20vh;
    margin-top: 1px;
    -webkit-text-fill-color: var(--colorText);
    -webkit-text-stroke-width: .045em;
    -webkit-text-stroke-color: rgba(0, 0, 0, 1);
    pointer-events: none;
    font-size: 15vh;
    animation: wave-invert-horizontal 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}

.chunk-window-child3::before {
    font-family: "FontAwesome";
    content: "\f054";
    color: var(--colorText);
    position: fixed;
    margin-left: -19vh;
    margin-top: 1px;
    -webkit-text-fill-color: var(--colorText);
    -webkit-text-stroke-width: .045em;
    -webkit-text-stroke-color: rgba(0, 0, 0, 1);
    pointer-events: none;
    font-size: 15vh;
    animation: wave-horizontal 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}

.chunk-window-child3::after {
    font-family: "FontAwesome";
    content: "\f053";
    color: var(--colorText);
    position: fixed;
    margin-left: 25vh;
    margin-top: 1px;
    -webkit-text-fill-color: var(--colorText);
    -webkit-text-stroke-width: .045em;
    -webkit-text-stroke-color: rgba(0, 0, 0, 1);
    pointer-events: none;
    font-size: 15vh;
    animation: wave-invert-horizontal 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}

@keyframes wave-horizontal {
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-3px);
                transform: translateX(-3px);
    }

    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transform: translateX(3px);
                transform: translateX(3px);
    }
}

@keyframes wave-invert-horizontal {
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(3px);
                transform: translateX(3px);
    }

    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transform: translateX(-3px);
                transform: translateX(-3px);
    }
}

.roll-chunk-inner img {
    width: 16vh;
    height: 16vh;
    pointer-events: none;
}

.roll-chunk-footer {
    height: 13%;
    text-align: center;
}

#submit-roll-chunk-button {
    background-color: rgb(75, 200, 75);
    width: 200px;
    height: 5vh;
    font-size: 24px;
    color: white;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    margin: 20px 10px;
}

#submit-roll-chunk-button:disabled {
    background-color: gray;
    cursor: not-allowed;
}

#submit-roll-chunk-button:not(:disabled):hover {
    background-color: rgb(50, 175, 50);
}

.patch-notes-title {
    font-size: 36;
    padding-left: 10px;
    max-height: 8%;
    min-height: 8%;
    text-align: center;
    font-weight: bold;
    background-color: var(--color2);
}

.patch-notes-subtitle {
    padding: 0px 15px;
    font-size: min(1.15vw, 1.75vh, 16px);
    text-align: center;
    max-height: 4%;
    min-height: 4%;
    background-color: var(--color2);
}

.patch-notes-data {
    border-top: solid 1px;
    border-bottom: solid 1px;
    max-height: 72%;
    min-height: 72%;
    top: 10%;
    overflow-y: auto;
    padding: 10px;
}

.patch-notes-data h2 {
    text-decoration: underline;
    margin-top: 0px;
}

.patch-notes-data li {
    margin-bottom: 10px;
}

.patch-notes-footer {
    height: 13%;
    text-align: center;
    background-color: var(--color2);
}

#submit-patch-notes-button {
    background-color: gray;
    width: 200px;
    height: 5vh;
    font-size: 24px;
    color: white;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    margin: 20px 10px;
}

#submit-patch-notes-button:not(:disabled):hover {
    background-color: rgb(80, 80, 80);
}

#myModal24 > .modal-content {
    height: 70%;
    width: 40%;
    margin-top: -5%;
}

.internal-link {
    pointer-events: auto;
    text-decoration: underline;
    cursor: pointer;
}

.internal-link:hover {
    color: rgb(100, 100, 255);
}

#myModal25 > .modal-content {
    height: 67%;
    width: 45%;
    margin-top: -5%;
}

.quest-steps-title {
    font-size: 4.5vh;
    padding-left: 10px;
    max-height: 9%;
    min-height: 9%;
    text-align: center;
    background-color: var(--color2);
    overflow-y: hidden;
}

.quest-steps-data {
    overflow-y: auto;
    height: 90.5%;
    padding-left: 10px;
    padding-right: 10px;
    border-top: solid 1px;
}

.quest-steps-data .step.step-header {
    background-color: var(--color2);
}

.quest-steps-data .step {
    width: 90%;
    display: flex;
    align-items: center;
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    background-color: var(--color3);
    margin-left: auto;
    margin-right: auto;
}

.quest-steps-data .step.highlighted {
    border: solid 2px var(--colorFlash);
    background-color: var(--color6);
}

.step-table-header {
    font-size: 18px;
    font-weight: bold;
    width: 12%;
    text-align: center;
}

.description-table-header {
    padding-left: 10px;
    font-size: 18px;
    font-weight: bold;
    width: 75%;
    border-left: solid 1px var(--color8);
}

.step-step {
    font-size: 20px;
    width: 25%;
    text-align: center;
    padding-right: 5px;
}

.step-description {
    padding-left: 10px;
    font-size: 20px;
    width: 88%;
    border-left: solid 1px var(--color8);
}

.quest-steps-data hr {
    width: 75%;
}

.combat-achievements .step-table-header {
    width: 30%;
}

.combat-achievements .description-table-header {
    width: 70%;
}

.combat-achievements .step-step {
    width: 30%;
    border-right: solid 1px var(--color8);
}

.combat-achievements .step-description {
    width: 70%;
    border-left: none;
}

.friends-list-title {
    font-size: 4.5vh;
    padding-left: 10px;
    max-height: 9%;
    min-height: 9%;
    text-align: center;
    background-color: var(--color2);
    overflow-y: hidden;
}

.friends-list-subtitle {
    padding: 0px 15px;
    background-color: var(--color2);
    font-size: 1.65vh;
    text-align: center;
    max-height: 10%;
    min-height: 10%;
}

.friends-list-data {
    overflow-y: auto;
    height: 80.5%;
    padding-left: 10px;
    padding-right: 10px;
    border-top: solid 1px;
}

.friend-item {
    display: flex;
    align-items: center;
    border: solid 1px var(--color1);
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
    padding-left: 5px;
    background-color: var(--color3);
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
    position: relative;
}

.friend-item-x {
    right: 20px;
    position: absolute;
    cursor: pointer;
}

.friend-item-x:hover {
    color: rgb(100, 100, 255);
}

.friend-item a {
    margin: auto;
}

.addEntry {
    cursor: pointer;
    font-size: 32px;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 20px;
}

.addEntry:hover {
    color: rgb(100, 100, 255);
}

.friends-add-title {
    font-size: 3.4vh;
    padding: 0px 10px;
    height: 20%;
    text-align: center;
    overflow-y: hidden;
}

.friends-add-data {
    height: 51.5%;
    text-align: center;
}

.friends-add-data input {
    display: block;
    margin-bottom: 5vh;
    margin-left: auto;
    margin-right: auto;
    font-size: 3.4vh;
    text-align: center;
}

.friends-add-footer {
    height: 28%;
}

#submit-friend-button {
    background-color: gray;
    width: 100px;
    font-size: 2.25vh;
    color: white;
    float: right;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    margin: 20px 10px;
}

#submit-friend-button:disabled {
    cursor: not-allowed;
}

#submit-friend-button:not(:disabled):hover {
    background-color: rgb(80, 80, 80);
}

#cancel-friend-button {
    float: right;
    padding: 20px 10px;
    cursor: pointer;
    font-size: 2.25vh;
}

.qps {
    text-align: center;
    font-size: 24px;
    color: var(--colorLink);
}

.menu9.sidebar {
    right: 0 !important;
    top: 52px;
}

.menu9.sidebar .panel.visible {
    max-height: calc(100vh - 8vh - 270px) !important;
    font-size: min(1.5vw, 14.5px);
    text-align: left;
    padding-left: 10px;
    overflow-y: auto;
    overflow-x: clip;
    padding-bottom: 5px;
}

.menu9.sidebar .background-sidebar {
    width: min(25vw, 400px);
    height: 100vh;
    background-color: var(--colorBackgroundSidebar);
    font-size: min(1.5vw, 20px);
    color: var(--colorText);
    display: block;
    border-width: 0px 0px 0px 1px;
    border-style: solid;
    border-color: black;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: fixed;
    top: 0px;
    z-index: -1;
}

.menu9.sidebar .challengecontent {
    transform: translateY(calc(47.3vh - 50%));
}

.edit-highest {
    cursor: pointer;
    margin-right: 10px;
}

.edit-highest:hover {
    color: rgb(100, 100, 255);
}

.rule-asterisk {
    color: var(--colorLink);
}

.rule-key {
    border: 1px solid var(--colorLink);
    padding: 5px;
    margin: 10px;
    background-color: var(--color2);
    display: inline-block;
}

.hover-copy {
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    cursor: pointer;
}

.hover-copy:hover {
    color: rgb(100, 100, 255);
}

.hover-copy:active {
    color: rgb(60, 60, 215);
}

.intro-title {
    font-size: 4vh;
    text-align: center;
    max-height: 10%;
    min-height: 10%;
    padding: 0px 10px;
    border-bottom: 1px solid;
    overflow-y: hidden;
}

.intro-data-container {
    font-size: 30px;
    text-align: center;
    max-height: 78%;
    min-height: 78%;
    padding: 0px 10px;
    overflow-y: auto;
    background-color: var(--color2);
}

.intro-data-main-title {
    font-size: 2vh;
    color: var(--colorTextAlt);
    margin-top: 5px;
    overflow-y: hidden;
}

.intro-data-title {
    font-size: 4vh;
    overflow-y: hidden;
}

.intro-data-subtitle {
    font-size: 1.75vh;
    margin-bottom: 10px;
}

#starting-chunk-input {
    width: 40%;
    font-size: 2.5vw;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 25px;
}

.intro-footer {
    height: 13%;
    border-top: 1px solid;
}

#cancel-intro-button {
    float: right;
    padding: 20px 10px;
    cursor: pointer;
    font-size: 20px;
}

#submit-intro-button {
    width: 100px;
    font-size: 20px;
    color: white;
    float: right;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    margin: 20px 10px;
}

#submit-intro-button:disabled {
    background-color: gray;
    cursor: not-allowed;
}

#submit-intro-button:disabled:hover {
    background-color: rgb(80, 80, 80);
}

#submit-intro-button:not(:disabled) {
    background-color: rgb(115, 220, 115);
}

#submit-intro-button:not(:disabled):hover {
    background-color: rgb(80, 195, 80);
}

.change-starting-chunk {
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    margin-left: 10px;
}

.change-starting-chunk:hover {
    color: rgb(75, 75, 225);
}

.quest-text {
    text-decoration: none;
}

.Quests-body {
    position: relative;
}

.Quests-body > .row {
    width: 90%;
    display: block;
    text-align: center;
    font-size: 20px;
    border: solid 1px var(--colorText);
    position: relative;
}

.Quests-body > .row.complete {
    background-color: var(--colorQuestCompleteBackground);
    color: var(--colorQuestCompleteBorderText);
    border: solid 1px var(--colorQuestCompleteBorderText);
}

.Quests-body > .row.incomplete {
    background-color: var(--colorQuestIncompleteBackground);
    color: var(--colorQuestIncompleteBorderText);
    border: solid 1px var(--colorQuestIncompleteBorderText);
}

.Quests-body > hr {
    width: 75%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.Quests-body > .row > .xp-button {
    position: absolute;
    right: 0px;
    top: -5px;
    font-size: 15px;
    cursor: pointer;
    color: var(--colorText);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.Quests-body > .row > .xp-button.unset {
    color: rgb(255, 255, 0.7);
}

.Quests-body > .row > .xp-button:hover {
    color: var(--colorTextAlt);
}

.Quests-body > .row > .xp-button.unset:hover {
    color: rgb(225, 225, 0.7);
}

.outer-diary-text {
    text-decoration: none;
    display: block;
    width: auto;
    margin: auto;
    font-weight: bold;
    font-size: 24px;
}

.diary-text {
    text-decoration: none;
}

.Diaries-body {
    position: relative;
}

.Diaries-body > .row {
    width: 90%;
    display: block;
    text-align: center;
    font-size: 20px;
    border: solid 1px var(--colorText);
}

.Diaries-body > .row > div {
    display: inline-block;
    width: 8vw;
    border-radius: 5px;
    border: solid 1px;
    margin: 10px 5px 10px 5px;
    position: relative;
}

.Diaries-body > .row > div.fossil {
    width: 110px;
    overflow-wrap: anywhere;
}

.Diaries-body > .row > div.complete {
    background-color: var(--colorQuestCompleteBackground);
    color: var(--colorQuestCompleteBorderText);
    border: solid 1px var(--colorQuestCompleteBorderText);
}

.Diaries-body > .row > div.incomplete {
    background-color: var(--colorQuestIncompleteBackground);
    color: var(--colorQuestIncompleteBorderText);
    border: solid 1px var(--colorQuestIncompleteBorderText);
}

.Diaries-body > .row .xp-button {
    position: absolute;
    right: 0px;
    top: -5px;
    font-size: 15px;
    cursor: pointer;
    color: var(--colorText);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.Diaries-body > .row .xp-button.unset {
    color: rgb(255, 255, 0.7);
}

.Diaries-body > .row .xp-button:hover {
    color: var(--colorTextAlt);
}

.Diaries-body > .row .xp-button.unset:hover {
    color: rgb(225, 225, 0.7);
}

.Diaries-body > hr {
    width: 75%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.qps > i {
    position: absolute;
    margin-left: 20px;
    color: var(--colorText);
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.qps > i:hover {
    color: var(--colorLink);
}

.xp-reward-title {
    font-size: 32px;
    text-align: center;
    max-height: 25%;
    min-height: 25%;
    padding: 0px 10px;
    border-bottom: 1px solid;
    overflow-y: hidden;
}

.xp-reward-data {
    max-width: 600px;
    margin: auto;
}

.xp-reward-data-container {
    font-size: 30px;
    text-align: center;
    max-height: 63%;
    min-height: 63%;
    padding: 0px 10px;
    overflow-y: auto;
    background-color: var(--color4);
}

.xp-reward-option-container {
    padding: 10px;
    border: solid;
    border-radius: 25px;
    margin: 10px;
    cursor: pointer;
    display: inline-block;
    width: 25px;
    height: 25px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    border-color: var(--colorText);
    position: relative;
}

.xp-reward-option-container.selected-xp-reward-skill {
    background-color: rgb(50, 175, 50) !important;
}

.xp-reward-option-container > img {
    position: absolute;
    margin-left: 50%;
    margin-top: 50%;
}

.xp-reward-option-container > .none-xp-container {
    position: absolute;
    left: 8px;
    top: 8px;
}

.xp-reward-option-container.black-outline i {
    -webkit-text-stroke-width: 0.05em;
    -webkit-text-stroke-color: black;
}

.xp-reward-option-container.unset-option {
    color: rgb(100, 100, 100);
    border: dashed;
}

.xp-reward-option-container:hover {
    background-color: rgb(75, 75, 225);
}

.xp-reward-footer {
    height: 13%;
    border-top: 1px solid;
}

#cancel-xp-reward-button {
    float: right;
    padding: 7px 10px;
    cursor: pointer;
    font-size: 20px;
}

#submit-xp-reward-button {
    background-color: rgb(50, 175, 50);
    width: 100px;
    font-size: 20px;
    color: white;
    float: right;
    border-width: 1px 1px 1px 1px;
    border-style: solid;
    border-color: black;
    outline: none;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    margin: 7px 10px;
}

#submit-xp-reward-button.disabled {
    background-color: grey;
    cursor: not-allowed;
}

#submit-xp-reward-button:not(.disabled):hover {
    background-color: rgb(30, 155, 30);
}

/* ------------------------------ */

.switch-field-outer {
    display: inline-block;
}

.switch-field {
	display: flex;
	overflow: hidden;
}

.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.switch-field label {
	background-color: #e4e4e4;
	color: rgba(0, 0, 0, 0.6);
	font-size: 3vh;
	line-height: 1;
	text-align: center;
	padding: 8px 16px;
	margin-right: -1px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
	transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
	cursor: pointer;
}

.switch-field input:checked + label {
	background-color: #a5dc86;
	box-shadow: none;
}

.switch-field label:first-of-type {
	border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
	border-radius: 0 4px 4px 0;
}
  
.checkbox {
    display: grid;
    grid-template-columns: min-content auto;
    grid-gap: 0.25em;
    font-weight: normal;
    pointer-events: none;
    overflow-wrap: break-word;
}
  
.checkbox--disabled {
    color: var(--disabled);
}
  
.checkbox__control {
    display: inline-grid;
    width: .9em;
    height: .9em;
    margin: .15em .3em;
    border-radius: 0.25em;
    border: 0.1em solid currentColor;
}

.checkbox__control svg {
    transition: transform 0.1s ease-in 25ms;
    transform: scale(0);
    transform-origin: bottom left;
}
  
.checkbox__input {
    display: grid;
    grid-template-areas: "checkbox";
    pointer-events: all;
    cursor: pointer;
}

.checkbox__input > * {
    grid-area: checkbox;
    cursor: pointer;
}

.checkbox__input input {
    opacity: 0;
    width: 1em;
    height: 1em;
}

.checkbox__input input:checked + .checkbox__control svg {
    transform: scale(1);
}

.checkbox--disabled .checkbox__input, .checkbox__input input:disabled + .checkbox__control, .checkbox__input input:disabled, .checkbox__input input:disabled > * {
    color: var(--disabled);
    cursor: not-allowed;
}

.radio {
    display: grid;
    grid-template-columns: min-content auto;
    grid-gap: 0.25em;
    font-weight: normal;
    pointer-events: none;
}
  
.radio--disabled {
    color: var(--disabled);
}
  
.radio__control {
    display: inline-grid;
    width: .9em;
    height: .9em;
    margin: .15em .3em;
    border-radius: 0.5em;
    border: 0.1em solid currentColor;
}

.radio__control svg {
    transition: transform 0.1s ease-in 25ms;
    transform: scale(0);
    transform-origin: center;
}
  
.radio__input {
    display: grid;
    grid-template-areas: "radio";
    pointer-events: all;
    cursor: pointer;
}

.radio__input > * {
    grid-area: radio;
    cursor: pointer;
}

.radio__input input {
    opacity: 0;
    width: 1em;
    height: 1em;
}

.radio__input input:checked + .radio__control svg {
    transform: scale(1);
}

.radio--disabled .radio__input, .radio__input input:disabled + .radio__control, .radio__input input:disabled, .radio__input input:disabled > * {
    color: var(--disabled);
    cursor: not-allowed;
}

/* Mobile */

.entry-content.mobile {
    width: 50%;
    transform: none;
    left: 25%;
    top: 20%;
}

.gomobiletasks {
    display: none;
    position: absolute;
    transition-duration: .5s;
    cursor: pointer;
    top: 4px;
    right: 10px;
    font-size: 44px;
}

.menu9.mobile {
    width: 100%;
    right: 0;
    top: 52px;
    height: 100%;
    background-color: var(--color2);
}

.accordion.mobile {
    font-size: 5vw;
}

.panel.mobile.visible {
    max-height: 65vh !important;
    font-size: 4vw;
}

.panel.mobile.visible > div {
    font-size: 4vw;
}

.panel.mobile.visible .marker {
    font-size: 4vw;
}

.open-rules-container.mobile {
    font-size: 7vw;
}

.modal-content.mobile {
    width: 95%;
}

#myModal4 > .modal-content.mobile {
    width: 95%;
}

.help-content.mobile {
    width: 50%;
    transform: none;
    left: 25%;
    top: 20%;
}

.display-button {
    border: solid 1px;
    width: 50%;
    margin: auto;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    font-size: min(1.5vw, 14.5px);
}

.display-button:hover {
    background-color: var(--color3);
}

/* --------------------------- */

.canvasDiv {
    position: fixed;
    left: 0;
    top: 0;
}

.canvasDiv > canvas {
    background-color: black;
}