body::-webkit-scrollbar-track, div::-webkit-scrollbar-track, textarea::-webkit-scrollbar-track, select::-webkit-scrollbar-track, option::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar, div::-webkit-scrollbar, textarea::-webkit-scrollbar, select::-webkit-scrollbar, option::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
    background-color: #F5F5F5;
    -----display: none;
}

body::-webkit-scrollbar-thumb, div::-webkit-scrollbar-thumb, textarea::-webkit-scrollbar-thumb, select::-webkit-scrollbar-thumb, option::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #888;
}


#BANKRUSSIAENTER {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle,rgba(166, 255, 0, 0.5) 0%, rgba(94, 168, 37, 0.5) 100%);
    background: rgba(0,0,0,0.7);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    backdrop-filter: blur(10px);
    z-index: 1000000000000000;
    overflow: hidden;
    opacity: 1;
}

#BANKRUSSIAENTER > .PAGE-BLOCK {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 10px 2px #0000004b;
    border-radius: 10px;
    overflow: hidden;
}

#BANKRUSSIAENTER > .PAGE-BLOCK > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#BANKRUSSIAENTER > .PAGE-BLOCK > .PAGES-LIST {
    position: absolute;
    display: flex;
    width: 100%;
    z-index: 10;
    bottom: 10px;
    opacity: 0;
}

#BANKRUSSIAENTER > .PAGE-BLOCK > .PAGES-LIST > .PAGES-LIST-ITEM {
    position: relative;
    display: block;
    width: 100%;
    margin: 3px;
    height: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgb(255, 255, 255, 0.6);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 1px 5px #000;
}

#BANKRUSSIAENTER > .PAGE-BLOCK > .PAGES-LIST > .PAGES-LIST-ITEM .PROGRESS {
    position: relative;
    background: rgb(255, 255, 255);
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
}

#BANKRUSSIAENTER > .PAGE-BLOCK > .PAGES-LIST > .PAGES-LIST-ITEM.fill > .PROGRESS {
    width: 100%
}

#BANKRUSSIAENTER > .PAGE-BLOCK > .CLOSE {
    position: absolute;
    display: block;
    right: 10px;
    top: 5px;
    z-index: 10;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
}