*,
*:before,
*:after {
    -webkit-box-sizing: content-box !important;
    -moz-box-sizing: content-box !important;
    box-sizing: content-box !important;
}

.main_container {
    width: 1900px;
    margin: 20px auto;
}

.left_colomn {
    width: 250px;
    height: 1000px;
    position: fixed;
    z-index: 2;
    background: #212529;
    top: 0;
}

.right_colomn {
    width: 1580px;
    margin-left: 300px;
}

h2 {
    text-align: center;
    font-size: 30px;
}

.game_tile {
    float: left;
    cursor: pointer;
    width: 79px;
    height: 105px;
    background: #fff;
}

.game_tile img {
    width: 79px;
    height: 105px;
    opacity:0.25;
    position: absolute;
    transition: opacity 0.5s ease;
}


.game_tile.cover img {
    opacity:1;
}

.buttons_container {
    margin: 20px 0;
}

.render_button{
    margin: 0 10px;
    text-align: center;
    background-color: #1899D6;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: block;
    font-family: din-round,sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    outline: none;
    overflow: visible;
    padding: 13px 16px;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    width: 150px;
}

.render_button:after {
    background-clip: padding-box;
    background-color: #1CB0F6;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    bottom: -4px;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.render_button:focus {
    user-select: auto;
}

.render_button:hover:not(:disabled) {
    filter: brightness(1.1);
    -webkit-filter: brightness(1.1);
}

.render_button:disabled {
    cursor: auto;
}

.render_button:active {
    border-width: 4px 0 0;
    background: none;
}

.left_modal_container {
    padding: 10px;
}

.left_modal_gif_container {
    position: fixed;
    left: 20px;
    bottom: 20px;
    height: 310px;
    width: 260px;
    background: #000;
    z-index: 3;
    border-radius: 20px;
}

.left_modal_body img {
    margin: 0 auto 20px auto;
    display: block;
}
.left_modal_body h2 {
    margin: 0 0 20px 0;
}

.left_modal_body div.desc {
    max-height: 400px;
}

.left_modal_gif_container .left_modal_body div.img {
    height: 200px;
    width: 264px;
    margin: 10px auto;
    background-size:contain;
    background-position:center;
    background-repeat: no-repeat;
}

.left_modal_gif_container p {
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    line-height: 22px;
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity .5s ease;
    opacity: 1;
}
.fade-enter-from,
.fade-leave-to  {
    opacity: 0;
}

.user_form {}
.user_form label {display: block;}
.user_form input {margin: 0 5px 0 0;}

.user_info__containter {
    margin: 20px;
}
.user_info img {
    float: left;
    margin: 0 10px 0 0;
    border-radius: 20px;
    border: solid 5px;
}
.user_info p {
    margin: inherit;
    font-size: 20px;
    line-height: 20px;
}
.table_container {
    width: 600px;
}

.table td {
    padding: 3px;
    vertical-align: middle;
}

.table img {
    width: 35px;
    height: 35px;
    border: solid 3px;
    border-radius: 5px;
    margin: 0 5px 0 0;
}

.table a {
    text-decoration: none;
    color:#fff;
    display: block;
    cursor: pointer;
}


.modal_container {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9;
    border-radius: 10px;
    padding: 15px;
}

.modal_container_warning {
    background: #790202;
}
.modal_container_notice {
    background: #023624;
}

.modal_body p {
    font-size: 24px;
    line-height: 24px;
    margin: 0;
}

