﻿.vue-header {
    width: 100%;
    height: 66px;
    background: #e9e9ef;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 1230px) {
    .vue-header {
        padding: 0 12px !important;
    }
}

header {
    margin: 0 !important;
    padding: 0 !important;
}

.vue-header__content {
    box-sizing: border-box;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vue-header__logo {
    max-width: 46px;
    max-height: 46px;
    width: 100%;
    height: 100%;
}

.vue-header__links-container {
    display: flex;
    flex: 1;
    margin-left: 45px;
}

.vue-header__links {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    grid-column-gap: 45px;
}

@media (max-width: 860px) {
    .vue-header__links {
        display: none;
    }
}

.postman-link {
    line-height: 110%;
    font-size: 1.32rem !important;
    font-weight: 500;
    color: #1d2124;
    text-decoration: none !important;
    display: block;
    background: #FF6C37;
    border-radius: 5px;
    padding: 10px 16px;
    color: white !important;
}

@media (max-width: 860px) {
    .postman-link {
        display: none;
    }
}

.postman-link:hover {
    transition: 0.5s;
    opacity: 80%;
}

.postman-link img {
    filter: brightness(5); 
}

.vue-header__link, .login-v3 {
    text-transform: uppercase;
    line-height: 110%;
    font-size: 1.32rem !important;
    font-weight: 600;
    color: #1d2124;
    text-decoration: none !important;
}

.login-v3 {
    text-transform: none;
    display: block;
    font-weight: 500;
    background: #2dc574;
    border-radius: 5px;
    padding: 10px 16px;
    color: white !important;
}

@media (max-width: 860px) {
    .login-v3 {
        display: none;
    }
}

.login-v3:hover {
    transition: 0.5s;
    opacity: 80%;
}

.vue-header__link a {
    font-size: 1.32rem !important;
}

.vue-header__link:hover {
    transition: .5s;
    color: #28a745;
}
.vue-link-active {
    color: #28a745;
}

.vue-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.vue-header__action {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 51%;
    border: 1px solid #F9F9FC;
}

.vue-header__menu {
    position: relative;
}

.vue-header__menu-body {
    display: none;
    position: absolute;
    min-width: 300px;
    padding: 12px;
    background: white;
    border-radius: 1.8rem;
    top: 110%;
    flex-direction: column;
    right: 33.33333%
}

@media (max-width: 860px) {
    .vue-header__menu-body {
        display: flex;
    }
}

.vue-header__menu-title {
    font-weight: 500;
    font-size: 2.4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #F9F9FC;
}

.vue-header__menu-links {
    padding:  0 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vue-header__menu-link {
    text-decoration: none !important;
    font-size: 2.15rem;
}

.vue-header__menu-link-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
}

.vue-header__menu-link-content img {
    width: 24px;
    height: 24px;
}

.vue-header__menu-link-content span {
    display: flex;
    align-items: center;
    color: #413e3e;
    font-weight: 500;
}

.vue-header__menu-link-content span:hover {
    transition: .5s;
    color: #28a745;
}

.vue-mob-in {
    border-top: 1px solid #F9F9FC;
    padding-top: 1.5rem;
}

.vue-header__action-login img {
    width: 27px;
    height: 27px;
}

.vue-header__action-burger img {
    width: 31px;
    height: 31px;
}

.vue-header__action-burger {
    display: none;
}

.vue-header__action-login {
    display: flex;
}

@media (max-width: 860px) {
    .vue-header__action-login {
        display: none;
    }

    .vue-header__action-burger {
        display: flex;
    }
}

@media (max-width: 936px) {
    
}