header {
    height: auto;
    position: absolute;
    width: 100%;
    z-index: 100;
    background: #1E1F28;
}

body.open_menu header{
    z-index: 10001;
}

header a:after {
    display: none;
}

header .topMenu a,
header .topMenu a:not([href]) {
    color: #ffffff !important;
    white-space: nowrap;
    font-size: 18px;
}

header .topMenu a:hover,
header .topMenu a:not([href]):hover {
    text-decoration: none;
    color: #ffffff;
}

header .topMenu a.active{
    border-bottom: 2px solid #a8e3fc;
}

header .topMenu .activeItem a {
    font-weight: 700;
    color: rgba(55, 194, 234, 1);
    background: rgba(30, 30, 40, 1);
    padding: 13px 12px 12px 12px;
}


header .mainNav ul.desktopNav {
    list-style: none;
    margin-bottom: 0;
}

header .mainNav ul.desktopNav li:not(:first-child) {
    margin-left: 2.5rem;
}

header .mainNav ul.desktopNav li a {
    font-size: 18px;
    color: #ffffff;
}

header .mainNav ul.desktopNav li a:hover {
    text-decoration: none;
}

header .mainNav ul.userMenu {
    list-style: none;
}

header .mainNav ul.userMenu li:not(:first-child) {
    margin-left: 20px;
}
header .mainNav ul.userMenu li a {
    font-size: 18px;
    color: #ffffff;
    width: 183px;
    height: 40px;
    border: 1px solid #FFFFFF;
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .mainNav ul.userMenu li a img {
    height: 17px;
}
header .mainNav ul.userMenu li:not(:last-child) a img{
    margin-right: 5px;
}
header .mainNav ul.userMenu li:first-child a span {
    line-height: 1;
    height: auto;
}

header .mainNav .mobileToggle a i {
    color: rgba(255, 255, 255, 1);
}

header .mainNav .mobileToggle {
    text-align: center;
}

header .mainNav .mobileCart {
    text-align: right;
}
header .mainNav .mobileCart a{
    width: 31px;
    height: 31px;
    display: flex;
    margin-left: auto;
    border: 1px solid #ffffff;
    border-radius: 50%;
}
header .mainNav .mobileCart a img {
    width: 18px;
    margin: 0 auto;
}
header .logoWrp{
    width: fit-content;
    flex: 0 0 auto;
    padding: 0 1rem;
    line-height: 1;
}
@media(max-width: 767px){
    header,
    header .mainNav{
        background-color: #000;
    }
    body.open_menu header,
    body.open_menu header .mainNav{
        background-color: #1e1e28;
    }
    header .logoWrp{
        flex: 1 0 0;
    }
    header .topMenu .locationButton .options a{
        font-size: 14px;
    }
}

/*mobile header*/

.mobileHeader {
    height: auto;
    text-align: center;
    /*-webkit-box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.5);*/
}

.mobileHeader a {
    color: rgba(255, 255, 255, 1);
}

.mobileHeader a:hover {
    color: rgba(255, 255, 255, 1);
}

.mobileHeader a:after {
    display: none;
}
/*
.mobileHeader .locationButton {
    padding: 10px 30px;
}

.mobileHeader .locationButton a {
    background: rgba(224, 224, 224, 0.1);
    padding: 5px 30px;
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    width: 100%;
}

.mobileHeader .locationButton a::before {
    content: "\f3c5";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    right: 10px;
    margin-left: 10px;
}
*/
.mobileHeader .headerTopMenu {
    padding-top: 20px;
    padding-bottom: 10px;
    background: rgba(30, 30, 40, 1);
}

.mobileHeader .headerTopMenu .mobileToggle {
    padding-left: 40px;
}

.mobileHeader .headerTopMenu .logoContainer {
    margin-right: 15px;
}

.mobileHeader .headerTopMenu .logoContainer img {
    width: 132px;
    margin: 0 auto;
    height: auto;
}

.mobileHeader .headerTopMenu .mobileCart {
    padding-right: 40px;
}
.mobileHeader .headerTopMenu .mobileCart a {
    height: 31px;
    width: 31px;
    display: block;
    border: 1px solid #ffffff;
    border-radius: 50%;
}

/*mobile header*/

.mobileMenuContainer {
    width: 100%;
    position: absolute;
    z-index: 10000;
    height: auto;
    left: 0;
    top: 0;
    display: none;
}

.mobileMenuHeader {
    height: auto;
}

.mobileMenuContainer .mobileMenu {
    width: 100%;
    background: rgba(30, 30, 40, 1);
/*    height: 100vh;*/
}

.mobileMenu ul {
    position: relative;
    list-style: none;
    border-top: 1px solid #4b576f;
}

.mobileMenu ul li {
    display: block;
    height: auto;
    border-bottom: solid 1px rgba(75, 87, 111);
}

.mobileMenu ul li a {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    display: block;
    padding: 1rem 1.5rem;
    position: relative;
}

.mobileMenu ul li a:not([href]):not([class]){
    color: #ffffff;
}

.mobileMenu ul li a:after {
    display: none;
}

.mobileMenu ul li a img {
    width: 28px;
    margin-right: 10px;
}

.mobileMenu .bottomMobileMenu{
    /*border-top: 1px solid #4b576f;
    margin-top: 4rem;*/
}
.mobileMenu .bottomMobileMenuItem {
    padding: 0;
}

.mobileMenu .bottomMobileMenuItem.activeItem a {
    color: rgba(55, 194, 234, 1);
    pointer-events: none;
}

.mobileMenu .bottomMobileMenuItem a {
    color: rgba(255, 255, 255, 1);
}

.mobileMenu .bottomMobileMenuItem a:after {
    display: none;
}

@media (min-width:1024px) and (max-width:1280px) {
    header .mainNav ul.desktopNav li:first-child {
        margin-left: 0px !important;
    }

    header .mainNav ul.desktopNav li {
        display: inline-block;
        margin: 0 3px;
    }
}