/* Header Options */
@import url('https://fonts.googleapis.com/css?family=Poppins:200,200i,300,300i,400,500,600,700,800,900&display=swap&subset=devanagari,latin-ext');

.header {
    position: fixed;
    top: 0;
    background-color: #fff;
    z-index: 100;
    width: 100%;
}

.fixed-top .nav, .fixed-middle .nav-top {
    display: none;
}

.fixed-header .nav-bottom {
    background-color: #af72ed;
    font-weight: bold;
}

.fixed-up .nav-top {
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    height: 55px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.nav-top, .nav-bottom {
    height: 40px;
}

.nav-top {
    background-color: #ddd;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
}

.nav-top__list {
    list-style: none;
    padding: 0 0 0 40px;
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-top__list li {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.nav-top__list li:last-child {
    margin-right: 0;
}

.nav-top__list li .icon {
    width: 15px;
    margin-right: 10px;
    display: flex;
}

.nav-top__list li .icon img {
    width: 15px;
    height: 15px;
}

.nav-top__list li .text {
    font-size: 13px;
    font-weight: 300;
    line-height: 19px;
    display: inline-block;
}

.nav-top__bank {
    list-style: none;
    padding: 0 40px 0 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-top__bank li {
    margin-right: 10px;
}

.nav-bottom {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-bottom a {
    color: #000;
}

.nav-bottom a:hover {
    color: #000;
}

.fixed-top .nav-bottom, .fixed-up .nav-bottom {
    background-color: #ddd;
    color: #fff;
}

.fixed-top .nav-bottom a, .fixed-up .nav-bottom a {
    color: #000;
}

.nav-bottom span {
    border-bottom: 2px solid #8224e3;
}

.mobile-burger {
    display: none;
}

.mobile-menu {
    display: none;
}

.menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.menu li {
    margin-right: 15px;
}

.menu li a {
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.menu li a:hover {
    color: #8224e3;
}

.logo {
    width: 100%;
    max-width: 200px;
    position: relative;
    top: -5px;
    right: 0px; /* Standart 100px */
}

.left__menu {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.left__menu li {
    margin-left: 15px;
    border-right: 2px solid #ddd;
    padding-right: 15px;
}

.left__menu li:last-child {
    padding-right: 0;
    border-right: 0;
}

.left__menu li a {
    font-size: 14px; /* Standaty 16px */
    font-weight: 300;
}

.left__menu li.basket-menu a span {
    margin-left: 5px;
}

.basket-menu a img {
    width: 17px;
}

.mobile-menu__basket {
    display: none;
}

.close-line {
    position: relative;
}

.close-line::after,
.close-line::before {
    content: '';
    position: absolute;
    top: 10px;
    right: -20px;
    height: 2px;
    width: 15px;
    background-color: #000;
    transform: rotate(0);
    transition: all .5s;
}

.btn-close:hover .close-line::after {
    transform: rotate(45deg);
}

.btn-close:hover .close-line::before {
    transform: rotate(-45deg);
}
