/* верхняя панель, header.php */
.navbar {
    background-color: #182449;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: first baseline;
}

/* название проекта */
.navbar-left {
    color: white;
    text-transform: uppercase;
    font-size: 1.75em;
    font-weight: 700;
    text-decoration: none;
    padding: 13px 10px;
    margin-left: 10px;
}

/* панель навигации */
.navbar-right {
    position: relative;
    z-index: 2;
}
/* кнопки навигации */
.nav-list>a {
    color: #ABBEC9;
    font-size: 1.15em;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    padding: 20px 10px 13px 10px;
    transition: .15s;
}
.nav-list>a:hover {
    color: white;
}

/* золотые галимимы(валюта) */
#headerGG {
    position: relative;
    padding-right: 54px;
}
#headerGG>img {
    position: absolute;
    width: 36px;
    height: 36px;
    right: 10px;
    top: 13px;
}

/* логин(профиль) */
.login {
    background-color: #0E162C;
}


/* кнопка раскрытия списка */
.nav-burger {
    color: #ABBEC9;
    font-size: 1.7em;
    cursor: pointer;
    padding: 14px 10px 13px 15px;
    display: none;
}

@media (max-width: 1200px){
    /* кнопка раскрытия списка */
    .nav-burger {
        display: block;
    }
    
    /* кнопки навигации */
    .nav-list {
        position: absolute;
        background-color: #182449;
        right: 0px;
        display: none;
    }
    .nav-list>a {
        display: block;
        padding-inline: 20px;
    }

    /* при наведении */
    .navbar-right:hover .nav-list {
        display: block;
    }
    /* имитация наведения */
    .nav-list.hovered {
        display: block;
    }

    /* золотые галимимы(валюта) */
    #headerGG>img {
        right: 20px;
    }
}


/* свойства ниже на страницах слоты, торги */
/* панель выбора сервера + инвертарь */
.vibor_servera {
    display: flex;
    justify-content: space-between;
    background: #787291;
}
/*сервера */
.serv0,
.inv1,
.inv2 {
    display: inline-block;
    color: white;
    font-size: 1.2em;
    font-weight: 400;
    text-align: center;
    background-color: #615a7d;
    padding: 7px 14px;
    transition: 0.3s;
    margin: 0;
    border: none;
    cursor: pointer;
}
.serv0 {
    width: 180px;
    padding: 7px 0px;
}
.serv0:hover {
    background-color: #1a59b8;
}
/* инвертарь */
.inv1:hover {
    background-color: #BD2130;
}
.inv2 {
    background-color: #BD2130;
}
.inv2:hover {
    background-color: #EE1429;
}

/* мобильные */
@media (max-width: 800px){
    .vibor_servera>div {
        display: grid;
    }
}