@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto';
    margin: 80px 0 0 0;
    font-size: 12px;
}

header {
    position: fixed;
    background-color: #ea00ffb3;
    height: 80px;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(5px);
}

header a,
header div {
    z-index: 2;
}

#header_video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    opacity: 0.4;
    z-index: 1;
}

.body_contains {
    min-height: calc(100vh - 190px);
}

.big_header {
    height: 320px;
    position: relative;
    margin-top: -80px;
    overflow: hidden;
}

header .logo {
    top: 5px;
    left: 5px;
    position: absolute;
}

header .logo div {
    height: 70px;
    width: 170px;
    background-image: url(/img/header_logo.png);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
}

footer {
    width: 100%;
    height: 50px;
    background-color: #333;
    margin-top: 60px;
    text-align: center;
    color: #a0a0a0;
    position: static;
    bottom: 0;
    line-height: 50px;
}

footer a,
footer span {
    text-decoration: none !important;
    color: #a0a0a0 !important;
    display: inline-block !important;
}

.big_header .logo {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
}

.big_header .logo div {
    height: 200px;
    width: 100%;
    background-image: url(/img/header_logo.png);
    background-size: auto 75%;
    background-position: center;
}

#login,
#logged {
    display: none
}

#logged {
    position: absolute;
    top: 0;
    right: 0;
}

#payments_header {
    margin-left: 12px;
    color: #f04cff;
    font-size: 15px;
    padding: 7px 10px;
    background-color: #fff;
    cursor: pointer;
    display: none;
    transition: all ease 0.2s;
    min-width: 165px;
    text-align: center;
    line-height: normal;
}

#payments_header #payments_header_money {
    font-weight: bold;
}

#header_options {
    position: absolute;
    top: 26px;
    right: 90px;
    color: #fff;
    font-size: 13px;
    height: 32px;
    line-height: 32px;
}

#header_options.change_lang_left {
    right: 50px;
}

#header_options span {
    cursor: pointer;
}

.selected_lang {
    font-weight: bold;
}

#login_menu {
    position: absolute;
    display: none;
    background-color: white;
    top: 65px;
    right: 5px;
    padding: 10px;
    box-shadow: 0 0 20px #0000004d;
    transition: all ease 0.2s;
}

#login_menu span {
    display: block;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    color: #444;
    padding: 5px;
}

#user_image {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-size: cover;
    background-position: center;
    display: inline-block;
    border: 2px solid #fff;
    vertical-align: middle;
    margin: 16px 25px;
    position: relative;
    cursor: pointer;
}

#user_image::after {
    content: "▼";
    position: absolute;
    right: -20px;
    top: 15px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
}

#user_name {
    font-size: 12px !important;
    color: #777 !important;
}

#user_payments {
    font-size: 18px !important;
    cursor: pointer;
}

#user_logout {
    font-size: 14px !important;
    cursor: pointer;
}

#alert {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: rgba(236, 26, 255, 0.3);
    overflow: hidden;
    transition: all ease 0.2s;
    display: none;
    opacity: 1;
    text-align: center;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(5px);
}

.alert_button {
    position: absolute;
    height: 26px;
    width: 26px;
    background: #00000047;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    line-height: 24px;
    cursor: pointer;
}

.move_left,
.move_right {
    font-size: 35px;
    top: 44%;
    height: 120px;
    width: 39px;
    line-height: 120px;
    background: #ffffff;
    border-radius: 11px;
    color: #b3b3b3;
}

.move_right {
    right: -29px;
}

.move_left {
    left: -29px;
}

#alert_close {
    font-size: 14px;
    top: 10px;
    right: 10px;
}

#alert #alert_content {
    height: auto;
    width: auto;
    padding: 25px;
    text-align: left;
    background-color: #fff;
    box-shadow: 0 0 60px #0000001a;
    display: inline-block;
    position: relative;
    margin: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#home_login {
    text-decoration: none;
}

#home_login_button {
    position: absolute;
    width: 400px;
    height: 50px;
    line-height: 50px;
    background-color: #ffffff;
    color: #7454ae;
    display: block;
    text-align: center;
    background-image: url(/img/twitch_glitch_purple.png);
    background-size: auto 65%;
    background-repeat: no-repeat;
    background-position: 12px center;
    bottom: 50px;
    left: calc(50% - 200px);
    font-weight: bold;
    transition: all ease 0.2s;
}

.home_login_button_loading {
    width: 50px !important;
    left: calc(50% - 25px) !important;
    background-image: none !important;
    overflow: hidden !important;
    color: transparent !important;
    border-radius: 100% !important;
}

#loading_circle {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: loading_circle_animation 1s ease-in-out infinite;
    display: none;
}

#create {
    font-size: 12px;
    background-color: #00c77d;
    display: table;
    margin: 10px auto;
    padding: 20px 20px 20px 70px;
    border-radius: 100px;
    color: #fffc;
    box-shadow: 0 7px 20px #0000005e;
    position: relative;
    cursor: pointer;
}

#create::after {
    content: "+";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    background-color: #0009;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 35px;
    color: #fff;
    opacity: 0.4;
}

#loading_circle:after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    margin: 8px;
    border-radius: 50%;
    border: 2px solid #ea00ff;
    border-top-color: rgb(234, 0, 255);
    border-right-color: rgb(234, 0, 255);
    border-bottom-color: rgb(234, 0, 255);
    border-left-color: rgb(234, 0, 255);
    border-color: #ea00ff transparent #ea00ff transparent;
    animation: loading_circle_animation 2s linear infinite;
}

.error_404 {
    font-size: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-90%);
    color: gainsboro;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2),
(max-width: 850px) {
    #header_video {
        display: none;
    }
    #header_options {
        top: 8px;
        right: 15px;
    }
}