/* Slieno | File: guest.css */

@import url('/assets/css/lib/flexbox-grid.css');
@import url('/assets/css/fonts.css');

*,
*::before,
*::after {
    background: transparent;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}
a {
    color: #fff;
    text-decoration: none;
    transition: color 0.1s ease-out;
}
a:hover {
    color: #EA2822;
    text-decoration: none;
}
ul {
    list-style: none;
}
img {
    vertical-align: middle;
}
button {
    cursor: pointer;
}

.select {
    position: relative;
}
.select:after {
    content: '\f078';
    font-family: 'FontAwesome';
    font-size: 14px;
    position: absolute;
    right: 3px;
    top: 0px;
    color: #aaa;
    pointer-events: none;
}
select {
    display: inline-block;
    font-family: inherit;
    width: 100px;
    color: #fff;
    padding: 0.5rem 20px 0.5rem 3px;
    margin: 0;
    background-color: #101010;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Rubik', sans-serif;
    padding: 0;
    margin: 0;
    border: 0;
    line-height: 1.5;
    color: #fff;
    background-color: #101010;
}

.login_message {
    position: relative;
    padding: 15px 10px 15px 50px;
    border-radius: 5px;
    max-width: 550px;
    margin: 0 auto;
    color: #fff;
    font-size: 0.91em;
    background-color: #696969;
    line-height: normal;
}
.login_message div {
    display: flex;
    font-size: 30px;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 35px;
    height: 100%;
}
.login_message a {
    color: inherit;
    text-decoration: underline;
}
.red {
    background-color: #b22222;
}
.green {
    background-color: #3cb371;
}
.orange {
    background-color: #d2691e;
}

header .logo {
    display: block;
    background: url('/assets/images/logo-header.png') center no-repeat;
    width: 245px;
    height: 80px;
    transition: opacity 0.3s ease;
}
header .logo:hover {
    opacity: 0.7
}
header .container .link {
    font-family: inherit;
    font-size: 15px;
    padding: 10px 16px;
    color: #D60812;
    /*background-color: #D60812;*/
    text-align: center;
    border-radius: 5px;
    transition: color 0.1s ease;
}
header .container .link:hover {
    /*background-color: rgb(214, 8, 18, 0.8);*/
    color: #fff;
}

header .container .content-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 110px;
}

/* Left */
.catalogs {
    position: absolute;
    left: 0;
}
.catalogs ul {
    display: flex;
    padding: 0; 
    list-style: none; 
    text-align: center;
}
.catalogs li {
    display: inline-flex;
    margin-right: 15px;
}
.catalogs a {
    display: table;
    position: relative;
    color: #BCBDBE;
}
.catalogs a:hover {
    color: #BCBDBE;
}
.catalogs a:after {    
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #EA2822;
    transition: width 0.2s ease 0s, left 0.2s ease 0s;
    width: 0;
}
.catalogs a:hover:after { 
    width: 100%; 
    left: 0; 
}
.catalogs .active:after {    
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    background: #EA2822;
    width: 100%;
}


/* Right */
.bookmark {
    margin-right: 15px;
    width: 25px;
}
.bookmark a {
    color: #BCBDBE;
}
.bookmark a:hover {
    color: #EA2822;
}
.bookmark i {
    font-size: 25px;
    line-height: inherit;
}
.login {
    display: flex;
    position: absolute;
    right: 0;
}
.usermenu {
    position: relative;
}
.usermenu > .avatar {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
}
.usermenu > .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
}
.menu {
    z-index: 1;
    display: none;
    position: absolute;
    padding: 10px 0px 5px 0px;
    background-color: #000;
    top: 90px;
    right: 0px;
    min-width: 240px;
    border-radius: 5px;
}
.menu:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: -10px;
    right: 25px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #000;
}
.menu .block {
    display: flex;
}
.menu .block .profile {
    display: flex;
    width: 100%;
    height: 50px;
    padding-left: 7px;
    align-items: center;
    border-left: 3px solid #EA2822;
}
.menu .block .profile .avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}
.menu .block .profile .avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
}
.menu .block .profile .text {
    width: 100%;
    padding: 0 10px;
    color: #fff;
}
.menu .block .profile .text span {
    display: block;
    font-size: 14px;
}
.menu .block .item {
    display: block;
    width: 100%;
}
.menu .block .item a {
    display: flex;
    height: 50px;
    align-items: center;
    padding-left: 3px;
    color: #fff;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: border-left 0.1s linear;
}
.menu .block .item i {
    display: flex;
    width: 50px;
    font-size: 20px;
    justify-content: center;
    color: #919191;
}
.menu .block .item a:hover {
    border-left: 3px solid #EA2822;
    padding-left: 3px;
}
.menu .block .logout {
    display: flex;
    height: 50px;
    padding-right: 25px;
    align-items: center;
    margin-left: auto;
}

/* Footer */
footer {
    margin-top: auto;
}
.footer {
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
}
.footer-line {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-top: 3px solid #222;
}
.footer .footer-languages {
    position: absolute;
    /*width: 200px;*/
}
.footer .footer-center {
    font-size: 15px;
    margin: 0 auto;
    text-align: center;
}
.footer .footer-center .copyright {
    font-size: 12px;
    color: #acacac;
}

@media only screen and (max-width: 576px) {
    header .logo {
        background-size: 150px;
    }
    header .container .content-header { 
        height: 85px;
    }
    .usermenu .avatar {
        width: 50px;
        height: 50px;
    }
    .bookmark {
        width: 15px;    
    }
    .bookmark i {
        font-size: 22px;
    }
    .menu {
        top: 70px;
    }
    .menu:before {
        right: 15px;
    }
    .menu .block {
        font-size: 15px;
    }
}