::-webkit-scrollbar {
    width: 10px;
    background-image: linear-gradient(#0c294b, #134277);
    transition: 0.8s;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(100, 170, 255, 0.3);
    border-radius: 5px;
    transition: 0.8s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(100, 170, 255, 0.6);
}

body {
    margin: 8vh 0 0 0;
    font-family: helvetica;
    font-size: 2vh;
    overflow-y: scroll;
    background-color: rgb(137, 175, 206);
}

table {
    border: solid 1px black;
    border-collapse: collapse;
}

tr,td {
    border: solid 1px black;
}

#pcwalllt {
    left: 0;
    background-image: url('/img/mbg.png'), linear-gradient(to right, #0c294b, #284a77);
    box-shadow: -10px 10px 50px rgba(0, 0, 0, 0.7) inset;
}

#pcwallrt {
    right: 0;
    background-image: url('/img/mbg.png'), linear-gradient(to left, #0c294b, #284a77);
    box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.7) inset;
}

#pcwallrt, #pcwalllt {
    background-position: center;
    position: fixed;
    width: 33%;
    height: 200vh;
    top: -50vh;
}

main {
    top: 0;
    margin: 0 33% 0 33%;
    position: relative;
    transition: cubic-bezier(.6,0,.4,1) 0.7s;
}

#bingo {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 30vw;
    background-color: #00354e59;
    border: solid 0.5vw rgba(0,0,0,0);
    border-radius: 1.5vw;
}

#opis {
    position: relative;
    left: 50%;
    transform: translate(-50%);
    width: 31vw;
    padding: 2vh 5vh;
    background-color: #00354e59;
    border-radius: 1.5vw;
    color: white;
    font-family: tahoma;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5vw;
    box-sizing: border-box;
    margin: 4vh 0;
}

.lista {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #0000008c;
    top: -1000vw;
    left: 0;
    z-index: 2000;
    backdrop-filter: blur(10px);
    animation: 0.5s lista2;
}

@keyframes lista {
    0% {
        opacity: 0;
        top: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes lista2 {
    0% {
        opacity: 1;
        top: 0;
    }
    100% {
        top: 0;
        opacity: 0;
    }
}

.listaactive {
    animation: 0.5s lista;
    top: 0;
}

.checkbox {
    position: absolute;
    bottom: -2.5vh;
    right: -2.5vh;
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 2vw;
    border: none;
    background-image: linear-gradient(45deg,#0051ff, #00ccff);
    background-position: center;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox:hover {
    filter: brightness(1.2);
}

.checkbox:active {
    filter: brightness(0.6);
}

#mapa {
    position: relative;
    left: 50%;
    transform: translate(-50%);
    margin: 4vh 0;
    display: flex;
    justify-content: center;
}

iframe {
    width: 31vw;
    height: 20vw;
    border: none;
    border-radius: 1.5vw;
}

.iconbg {
    position: relative;
    display: inline-block;
    background-color:#132636b3;
    border-radius: 1vw;
    width: 5vw;
    height: 5vw;
    margin: 0.5vw;
    transition: 0.2s;
}

.icon {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: transparent;
    transition: 0.2s;
}

.icon svg {
    height: 3.5vw;
    width: 3.5vw;
}

.icon:hover {
    opacity: 0.5;
}

.icon:active {
    opacity: 0.3;
}

#list {
    width: 5vh;
    height: 5vh;
    position: absolute;
    right: 1vh;
    bottom: 1vh;
    z-index: 100;
    filter: invert();
    opacity: 0.3;
    transition: 0.3s;
}

#list:hover {
    opacity: 0.75;
    cursor: pointer;
}

#listacontent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 90vh;
    background-color: rgba(0,0,0,0.6);
    border: solid 0.5vw rgba(0,0,0,0);
    border-radius: 1.5vw;
    color: white;
    font-size: 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnmenu {
    width: 31vw;
    margin: 3vh auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    border: none;
    width: 15vw;
    height: 7vh;
    margin: none;
    border-radius: 1vw;
    font-size: 3vh;
    font-family: tahoma;
    font-weight: bold;
    text-transform: uppercase;
    background-image: linear-gradient(to right, #134277, #285b96, #134277);
    color: white;
    transition: 0.5s;
    cursor: pointer;
}

.btn:hover {
    filter: brightness(1.5);
}

.svg {
    width: 4vw;
    height: 4vw;
}

.checkbox svg {
    width: 2vw;
    height: 2vw;
}

#g1 {
    stop-color: rgb(0, 174, 255);
}
#g2 {
    stop-color: cyan;
}

@media all and (max-width:500px) {
    body {
        background-color: rgb(75 143 199);
        background-image: linear-gradient(rgba(32, 88, 193, 0.6), rgba(103, 184, 255, 0.9), rgb(0 68 255 / 41%)), url(/img/mbg.png);
        background-size: 200vw;
    }

    #pcwalllt, #pcwallrt {
        position: fixed;
        width: 0;
        height: 0;
        top: -50vh;
        left: 0;
        background-image: none;
        box-shadow: none;
    }

    main {
        margin: 0;
    }

    #bingo {
        width: 90vw;
        height: 90vw;
        border: solid 1.5vw rgba(0,0,0,0);
        border-radius: 4.5vw;
        backdrop-filter: blur(5px);
        background-color: #97deff59;
    }

    #opis {
        width: 93vw;
        border-radius: 4.5vw;
        font-size: 2.5vh;
        backdrop-filter: blur(5px);
    }

    #mapa {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        margin: 4vw 0;
    }

    iframe {
        width: 93vw;
        height: 60vw;
        margin-bottom: 2vh;
        border-radius: 4.5vw;
    }

    .iconbg {
        width: 15vw;
        height: 15vw;
        margin: 1.5vw;
        border-radius: 3vw;
        background-color: #3979af9e;
        /*box-shadow: inset 0 0 6vw rgb(29, 177, 0);*/
    }

    .checkbox {
        bottom: -2.5vw;
        right: -2.5vw;
        width: 5vh;
        height: 5vh;
        border-radius: 3vh;
        box-shadow: 0.5vw 0.5vw 1vw rgba(0, 0, 0, 0.7);
    }

    #listacontent {
        width: 95vw;
        height: auto;
        border-radius: 4.5vw;
        font-size: 4vw;
        padding: 5vw;
        box-sizing: border-box;
    }

    .btnmenu {
        width: 93vw;
    }

    .btn {
        width: 45vw;
        border-radius: 4.5vw;
        font-size: 2.5vh;
    }

    .icon svg {
        height: 10vw;
        width: 10vw;
        filter: drop-shadow(2px 4px 6px rgb(26, 57, 104));
    }

    .checkbox svg {
        width: 6.5vw;
        height: 6.5vw;
    }
}