html, body{
    padding: 0;
    margin: 0;
    background: #000;
}

a{
    text-decoration: none;
}

.block_full_wh{
    width: 100vw;
    height: 100vh;
    background: #0f5132;
}

.block_header{
    position: fixed;
    top:0;
    left:0;
    width: 100vw;
    height: 60px;
    color: #eeeeee;
    transition: .1s;
}

.block_header.bg_show{
    background: rgb(0,0,0,0.6);
}

.width_col{
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.block_header .bh_one{
    line-height: 60px;
    display: inline-block;
    vertical-align: top;
    padding: 0 20px;
}

.block_header .bh_one .bh_logo_img{
    width: 60px;
}

.block_header a{
    color: #dddddd;
    font-weight: 600;
}

.block_header a:hover{
    color: #ffffff;
}

.block_header a:active{
    color: #E74033;
}

.block_header .btn_link{
    display: inline-block;
    vertical-align: top;
    line-height: 60px;
    height: 60px;
    padding: 0 10px;
    cursor: pointer;
    color:#dddddd;
    font-size: 20px;
}

.block_header .btn_link:hover{
    color: #ffffff;
}

.block_header .btn_link:active{
    color: #E43E31;
}

.block_header .bh_one_right{
    position: absolute;
    right: 0;
    top:0;
}

/*Модальное окно авторизации/регистрации*/
.modal_login{
    position: fixed;
    top:0;
    left:0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
}


.modal_login .modal_login_content{
    background: #fff;
    width: 400px;
    border-radius: 10px;
    padding: 40px;
    position: absolute;
    left:calc(50vw - 200px);
    top:calc(50vh - 250px);
}


.bg {
    animation:slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #444 50%, #555 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
}

.bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
}

.bg3 {
    animation-duration:5s;
}

.content {
    background-color:rgba(255,255,255,.8);
    border-radius:.25em;
    box-shadow:0 0 .25em rgba(0,0,0,.25);
    box-sizing:border-box;
    left:50%;
    padding:10vmin;
    position:fixed;
    text-align:center;
    top:50%;
    transform:translate(-50%, -50%);
}

h1 {
    font-family:monospace;
}

@keyframes slide {
    0% {
        transform:translateX(-25%);
    }
    100% {
        transform:translateX(25%);
    }
}

.modal_login .btn_close{
    right: -54px;
    top: -16px;
    font-size: 30px;
    color: #eee;
    position: absolute;
}

.modal_login .btn_close:hover{
    color: #fff;
}

.modal_login .btn_close:active{
    color: #E64032;
}

.modal_login .label_text{
    color: #888;
    font-size: 0.8em;
    margin-bottom: 3px;
}