body {
    background-color: #27373e;
    height: 100%;
    width: 100%;
}

h5,
h6 {
    color: #383838;
    padding-bottom: 0px;
    margin: 0;
}

#main-view {
    height: 100vh;
    width: 100vw;
    align-items: center;
}

#main-board {
    margin: 0 auto;
    margin-top: 4px;
    margin-bottom: 4px;
    width: 370px;
    background-image: linear-gradient(#b2d6af, #64a35f);
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    padding-bottom: 5px;

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.div-element {
    width: 100%;
}

* {
    touch-action: manipulation;
}

img {
    pointer-events: none;
}

.slider-container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 450px) {
    body {
        background-color: #64a35f;
    }

    #main-view {
        height: 100%;
        width: 100%;
        align-items: start;
    }

    #main-board {
        width: 100%;
        min-width: 310px;
        margin: 0 auto;
        border-radius: 0px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .slider-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

html {
    /* IE and Edge */
    -ms-overflow-style: none;
    /* Firefox */
    scrollbar-width: none;
}

.main-button {
    border-radius: 10px;
    width: 180px;
    font-size: x-large;
    background-image: linear-gradient(#0dacdc, #026886);
}

.play-button {
    border-radius: 10px;
    width: 180px;
    font-size: x-large;
    background-image: linear-gradient(#0dacdc, #026886);
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.crossed {
    background-color: #107413;
    background-image:
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 10px,
            #107413 10px,
            #107413 12px),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            #107413 10px,
            #107413 12px)
}

.div-button {
    opacity: 1;
    filter: brightness(100%);
}

.div-button:active {
    opacity: 0.75;
}

.div-button:hover {
    opacity: 1;
    filter: brightness(96%);
}

.prevent-select {
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

.btn:active {
    outline: none;
    box-shadow: none;
}

.btn:focus {
    outline: none;
    box-shadow: none !important;
}


.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 5px;
    background: #aeaeae;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: radial-gradient(circle at center, white 5%, #6eddff 30%, #0386ae 90%);
    cursor: pointer;
}

.slider::-webkit-slider-thumb:hover {
    background: radial-gradient(circle at center, white 5%, #18b6e7 50%, #0481a7 90%);
}

.slider::-webkit-slider-thumb:active {
    background: radial-gradient(circle at center, white 5%, #14b6e8 40%, #0485ac 90%);
    color: #2cb7e1;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    background: radial-gradient(circle at center, white 5%, #6eddff 30%, #0386ae 90%);
    cursor: pointer;
}

.slider::-moz-range-thumb:hover {
    background: radial-gradient(circle at center, white 5%, #0dacdc 50%, #036e8f 90%);
}

.slider::-moz-range-thumb:active {
    background: radial-gradient(circle at center, white 5%, #0dacdc 40%, #036e8f 90%);
    color: #2cb7e1;
}

table,
th,
td {
    border: 1px solid #cdcdcd;
    border-collapse: separate;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 5px;
}

table {
    width: 100%;
    border: 7px solid rgba(255, 255, 255, 1);
    table-layout: fixed;
}

td {
    text-align: center;
    vertical-align: middle;
    box-shadow: 0 1px 5px rgba(84, 84, 84, 0.5);
}

.table-layer-1 {
    opacity: 1;
}

.table-layer-2 {
    opacity: 0;
}

.table-anim {
    transition: opacity 0.4s;
}

.sign-descpription {
    font-size: small;
    background: none;
    border: none;
    box-shadow: 0 0px 0px rgba(84, 84, 84, 0.5);
}

.form-select:focus {
    border: 1px solid #b3b3b3 !important;
    box-shadow: none;
}

select {
    background: linear-gradient(#ffffff, #d5d5d5);
    width: 100%;
    height: 32px;
    border-radius: 8px;
    text-align: center;
    outline: none;
    cursor: pointer;
    border: none;
    border-right: 3px solid transparent;
    font-size: 17px;
    color: black;
    opacity: 0;
}

.div-select {
    background: linear-gradient(#ffffff, #d5d5d5);
    width: 100%;
    height: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 0;
    pointer-events: none;
    opacity: 1;
}

.div-select-frame {
    display: flex;
    position: relative;
    width: 84px;
}

.div-select-text {
    font-size: 17px;
    color: black;
    margin-bottom: 0px;
    width: inherit;
    text-align: center;
}

.div-select-img-frame {
    display: flex;
    width: 25px;
}

.div-select-img {
    width: 12px;
    height: 12px;
    margin-top: 2px;
}

.menu-item {
    border-radius: 10px;
    height: 40px;
    margin-bottom: 7px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-item-text {
    font-size: large;
    color: #ffffff;
    font-weight: bold;
    margin: 0;
}

.item-active {
    border: 3px solid #ffff00;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin: 0;
    padding: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #b7caa3;
    -webkit-transition: .4s;
    transition: .4s;
    height: 22px;
    border-radius: 15px;
    border-style: solid;
    border-width: 1px;
    border-color: #848484;
}

.slider-switch:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider-switch {
    background-color: #0dacdc;
    filter: brightness(100%)
}

input:checked+.slider-switch:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

.slider-switch.round {
    border-radius: 34px;
}

.slider-switch.round:before {
    border-radius: 50%;
}

div.background {
    background-size: cover;
    align-items: bottom;
    display: flex;
    justify-content: bottom;
    height: 400px;
    width: 400px;
}

div.transbox {
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 20px;
    margin: 30px;
    font-weight: bold;
}