.menu {
    margin: 0;
    list-style-type: none
}

.menu>li {
    display: table-cell;
    vertical-align: middle
}

[data-whatinput='mouse'] .menu>li {
    outline: 0
}

.menu>li>a {
    display: block;
    padding: .7rem 1rem;
    line-height: 1
}

.menu input,
.menu select,
.menu a,
.menu button {
    margin-bottom: 0
}

.menu>li>a img,
.menu>li>a i,
.menu>li>a svg {
    vertical-align: middle
}

.menu>li>a img+span,
.menu>li>a i+span,
.menu>li>a svg+span {
    vertical-align: middle
}

.menu>li>a img,
.menu>li>a i,
.menu>li>a svg {
    margin-right: .25rem;
    display: inline-block
}

.menu>li,
.menu.horizontal>li {
    display: table-cell
}

.menu.expanded {
    display: table;
    width: 100%;
    table-layout: fixed
}

.menu.expanded>li:first-child:last-child {
    width: 100%
}

.menu.vertical>li {
    display: block
}

@media print,
screen and (min-width:40em) {
    .menu.medium-horizontal>li {
        display: table-cell
    }
    .menu.medium-expanded {
        display: table;
        width: 100%;
        table-layout: fixed
    }
    .menu.medium-expanded>li:first-child:last-child {
        width: 100%
    }
    .menu.medium-vertical>li {
        display: block
    }
}

@media print,
screen and (min-width:64em) {
    .menu.large-horizontal>li {
        display: table-cell
    }
    .menu.large-expanded {
        display: table;
        width: 100%;
        table-layout: fixed
    }
    .menu.large-expanded>li:first-child:last-child {
        width: 100%
    }
    .menu.large-vertical>li {
        display: block
    }
}

.menu.simple li {
    display: inline-block;
    margin-right: 1rem;
    line-height: 1
}

.menu.simple a {
    padding: 0
}

.menu.align-right::before,
.menu.align-right::after {
    display: table;
    content: ' '
}

.menu.align-right::after {
    clear: both
}

.menu.align-right>li {
    float: right
}

.menu.icon-top>li>a {
    text-align: center
}

.menu.icon-top>li>a img,
.menu.icon-top>li>a i,
.menu.icon-top>li>a svg {
    display: block;
    margin: 0 auto .25rem
}

.menu.icon-top.vertical a>span {
    margin: auto
}

.menu.nested {
    margin-left: 1rem
}

.menu .active>a {
    background: #313131;
    color: #fff
}

.menu.menu-bordered li {
    border: 1px solid #f7f8fa
}

.menu.menu-bordered li:not(:first-child) {
    border-top: 0
}

.menu.menu-hover li:hover {
    background-color: #f7f8fa
}

.menu-text {
    padding-top: 0;
    padding-bottom: 0;
    padding: .7rem 1rem;
    font-weight: bold;
    line-height: 1;
    color: inherit
}

.menu-centered {
    text-align: center
}

.menu-centered>.menu {
    display: inline-block
}

.no-js [data-responsive-menu] ul {
    display: none
}

.menu-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 16px;
    cursor: pointer
}

.menu-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
    content: ''
}

.menu-icon:hover::after {
    background: #e4e5e7;
    box-shadow: 0 7px 0 #e4e5e7, 0 14px 0 #e4e5e7
}

.menu-icon.dark {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 16px;
    cursor: pointer
}

.menu-icon.dark::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
    content: ''
}

.menu-icon.dark:hover::after {
    background: #8a8a8a;
    box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a
}


.is-drilldown {
    position: relative;
	overflow: hidden;
}

.is-drilldown li {
    display: block
}

.is-drilldown.animate-height {
    transition: height .5s
}

.is-drilldown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: -1;
    width: 100%;
    background: #fff;
    transition: transform .15s linear
}

.is-drilldown-submenu.is-active {
    z-index: 2;
    display: block;
    transform: translateX(-100%)
}

.is-drilldown-submenu.is-closing {
    transform: translateX(100%)
}

.drilldown-submenu-cover-previous {
    min-height: 100%
}

.is-drilldown-submenu-parent>a {
    position: relative
}

.is-drilldown-submenu-parent>a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #313131;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 1rem
}

.dropdown-pane {
    position: absolute;
    z-index: 10;
    display: block;
    padding: 1rem;
    visibility: hidden;
    border-radius: 0;
    background-color: #fff;
    font-size: 1rem;
    padding-bottom: 10px !important;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.dropdown-pane.is-open {
    visibility: visible
}

.dropdown-pane.tiny {
    width: 100px
}

.dropdown-pane.small {
    width: 200px
}

.dropdown-pane.large {
    width: 400px
}

.dropdown.menu>li.opens-left>.is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto
}

.dropdown.menu>li.opens-right>.is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0
}

.dropdown.menu>li.is-dropdown-submenu-parent>a {
    position: relative;
    padding-right: 1.5rem
}

.dropdown.menu>li.is-dropdown-submenu-parent>a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #313131 transparent transparent;
    right: 5px;
    margin-top: -3px
}

.mega-dropdown {
    border: 0;
    background: #fff;
    border-bottom: 1px solid #e4e5e7;
    left: 0 !important;
    padding: 0 0 0 1rem;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08)
}

@media print,
screen and (min-width:64em) {
    .mega-dropdown {
        width: 100% !important
    }
}

.mega-dropdown-container {
    position: relative
}

.mega-dropdown-container .categories {
    padding-top: 1.5rem;
    position: relative;
    min-height: 70px;
}

.mega-dropdown-container .categories .menu {
    margin: 0 0 .9375rem 0
}

.dropdown-pane .menu li.title>a {
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.7;    
    color: #0a0a0a
}

.dropdown-pane .menu li ul li>a {
    font-size: 11px;
    font-weight: 300;
    line-height: 1;    
    color: #0a0a0a
}

.dropdown-pane .menu li ul li {
    list-style-type: none;
}

.dropdown-pane .menu li>a {
    font-size: .875rem;
    padding: .2rem 0;
    color: #777;
    line-height: 1.1
}

.dropdown-pane .menu li>a:hover {
    color: #0a0a0a;
    text-decoration: underline
}

[data-whatinput='mouse'] .dropdown.menu a {
    outline: 0
}

.no-js .dropdown.menu ul {
    display: none
}

.dropdown.menu.vertical>li .is-dropdown-submenu {
    top: 0
}

.dropdown.menu.vertical>li.opens-left>.is-dropdown-submenu {
    right: 100%;
    left: auto
}

.dropdown.menu.vertical>li.opens-right>.is-dropdown-submenu {
    right: auto;
    left: 100%
}

.dropdown.menu.vertical>li>a::after {
    right: 14px
}

.dropdown.menu.vertical>li.opens-left>a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #313131 transparent transparent
}

.dropdown.menu.vertical>li.opens-right>a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #313131
}

@media print,
screen and (min-width:40em) {
    .dropdown.menu.medium-horizontal>li.opens-left>.is-dropdown-submenu {
        top: 100%;
        right: 0;
        left: auto
    }
    .dropdown.menu.medium-horizontal>li.opens-right>.is-dropdown-submenu {
        top: 100%;
        right: auto;
        left: 0
    }
    .dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a {
        position: relative;
        padding-right: 1.5rem
    }
    .dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-bottom-width: 0;
        border-top-style: solid;
        border-color: #313131 transparent transparent;
        right: 5px;
        margin-top: -3px
    }
    .dropdown.menu.medium-vertical>li .is-dropdown-submenu {
        top: 0
    }
    .dropdown.menu.medium-vertical>li.opens-left>.is-dropdown-submenu {
        right: 100%;
        left: auto
    }
    .dropdown.menu.medium-vertical>li.opens-right>.is-dropdown-submenu {
        right: auto;
        left: 100%
    }
    .dropdown.menu.medium-vertical>li>a::after {
        right: 14px
    }
    .dropdown.menu.medium-vertical>li.opens-left>a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-left-width: 0;
        border-right-style: solid;
        border-color: transparent #313131 transparent transparent
    }
    .dropdown.menu.medium-vertical>li.opens-right>a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-right-width: 0;
        border-left-style: solid;
        border-color: transparent transparent transparent #313131
    }
}

@media print,
screen and (min-width:64em) {
    .dropdown.menu.large-horizontal>li.opens-left>.is-dropdown-submenu {
        top: 100%;
        right: 0;
        left: auto
    }
    .dropdown.menu.large-horizontal>li.opens-right>.is-dropdown-submenu {
        top: 100%;
        right: auto;
        left: 0
    }
    .dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a {
        position: relative;
        padding-right: 1.5rem
    }
    .dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-bottom-width: 0;
        border-top-style: solid;
        border-color: #313131 transparent transparent;
        right: 5px;
        margin-top: -3px
    }
    .dropdown.menu.large-vertical>li .is-dropdown-submenu {
        top: 0
    }
    .dropdown.menu.large-vertical>li.opens-left>.is-dropdown-submenu {
        right: 100%;
        left: auto
    }
    .dropdown.menu.large-vertical>li.opens-right>.is-dropdown-submenu {
        right: auto;
        left: 100%
    }
    .dropdown.menu.large-vertical>li>a::after {
        right: 14px
    }
    .dropdown.menu.large-vertical>li.opens-left>a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-left-width: 0;
        border-right-style: solid;
        border-color: transparent #313131 transparent transparent
    }
    .dropdown.menu.large-vertical>li.opens-right>a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-right-width: 0;
        border-left-style: solid;
        border-color: transparent transparent transparent #313131
    }
}

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
    top: 100%;
    right: 0;
    left: auto
}

.is-dropdown-menu.vertical {
    width: 100px
}

.is-dropdown-menu.vertical.align-right {
    float: right
}

.is-dropdown-submenu-parent {
    position: relative
}

.is-dropdown-submenu-parent a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -6px
}

.is-dropdown-submenu-parent.opens-inner>.is-dropdown-submenu {
    top: 100%;
    left: auto
}

.is-dropdown-submenu-parent.opens-left>.is-dropdown-submenu {
    right: 100%;
    left: auto
}

.is-dropdown-submenu-parent.opens-right>.is-dropdown-submenu {
    right: auto;
    left: 100%
}

.is-dropdown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1;
    display: none;
    min-width: 200px;
    border: 1px solid #e4e5e7;
    background: #fff
}

.is-dropdown-submenu .is-dropdown-submenu-parent>a::after {
    right: 14px
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left>a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #313131 transparent transparent
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right>a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #313131
}

.is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px
}

.is-dropdown-submenu>li {
    width: 100%
}

.is-dropdown-submenu.js-dropdown-active {
    display: block
}


.mega-drop-down-menu-wrapper {
    position: relative;
    background: #ebebeb;
    max-height: 51px;
    overflow: hidden
}

.mega-drop-down-menu-wrapper:hover .mega-dropdown-shop-image {
    display: block
}

.mega-dropdown_menu {
	position: relative;	
}

.mega-dropdown_menu-categories {
	width:100%;
}

.button-menu-left {
	position: absolute;
	left: -44px;
    top: 0px;
	z-index:0;
}

.button-menu-left svg {
	fill: #000;
}

.button-menu-right {
	position: absolute;
	right: -44px;
    top: 0px;
	z-index:0;
}

.button-menu-right svg {
	fill: #000;
}

.text-align-right {
    text-align: right;
}

.network-bar .menu-network li .tel {
    font-size: 14px;
    margin-right: 20px;
    color: #000;
}

.network-bar .menu-network li.fake-right {
    margin-right: 12px;
}

.search-header .icon-header {
    position: relative;
    float: left;
    margin-top: 0;
    height: 28px;
}

.network-bar {
    background: #fff;
	border-bottom: none;
	display: none;
}

.network-bar.show-bar {
    display: block;
}

.network-bar .menu-network li a, .network-bar .menu-network li .fake-link {
    color: #111;
}

.network-bar .menu-network li.flags span.active a {
	color:#2f9b21;
	font-weight:600;
}

.list-social-header a svg {
    fill: #666;
}

.network-bar .menu-network li a:hover, .network-bar .menu-network li a.hover, .network-bar .menu-network li .fake-link:hover, .network-bar .menu-network li .fake-link.hover {
    color: #2f9b21;
}

@media print,
screen and (min-width: 64em) {
	
	.top-bar .logo {
		margin-top: -19px;  
	}
	
	.top-bar .logo.show-bar {
	    margin-top: -32px;
		width: auto;
		max-height: inherit;
		max-width: 180px;
	}
	
	.top-bar {
		padding: 4px 0 3px;
	}
}

.network-bar .menu-network .menu-title {
	padding-top: 3px;
	padding-right: 70px;
    font-size: 16px;
    text-transform: uppercase;
	color: #2f9b21;
	font-weight: 600;
}

.mobile-menu-top .top-cart {
	padding-right: 0px;
}

.search-header .phone-header {
	text-align: center;
	line-height: 1.4;
}

.phone-header {
	font-weight: 600;
    text-decoration: none;
    color: #231f20;
    font-size: 30px;
    line-height: 31px;
	cursor:pointer;
	display: inline-block;
    float: right;
}

.mega-dropdown_menu-categories .menu-cat-link {
    display: block;
    height: 52px;
    line-height: 39px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    border-left: 1px solid #fff;
    text-align: center;
    padding: 0 8px;
	background: #ebebeb;
	vertical-align: middle;
}

.mega-dropdown_menu-categories .menu-cat-link span {
	line-height: 18px;
    display: inline-block;
    vertical-align: middle;
	text-transform: uppercase;
	color: #000;
    font-size: 14px;
}

.mega-dropdown_menu-categories > a:first-child {
    border-radius: 3px 0 0 3px;
	border-left: none;
}

.mega-dropdown_menu-categories > a.last {
    border-radius: 0 3px 3px 0;
}

.mega-dropdown_menu-categories a.menu-cat-link:hover, .mega-dropdown_menu-categories a.menu-cat-link.active {
    color: #0e3178;
}

/*
.mega-dropdown_menu-categories .menu-cat-link {
    font-size: 14px;
    padding: 0 5px;
    line-height: 3.125rem;
    height: 3.125rem;
    float: left;
    position: relative;
	text-transform: uppercase;
    color: #fff;
    background: #f7a22c;
    background: linear-gradient(#f7a22c, #ed582c);
}
*/

.mega-dropdown_menu-categories .menu-cat-link.hover-bottom {
    margin: 0;
}

.extra-category {
    /*width: 410px !important;*/
    padding: 0;
    border-top: none;
    border: 1px solid #0e3178;
}

.extra-category .menu.vertical>li {
	/*
	float:left;
	width:50%;
	*/
}

.menu-cat-link.hover::before {
    box-shadow: -1px 1px 0 0 #0e3178;
}

@media print,
screen and (min-width:64em) {
    .sticky-container .sticky .show-bar+.mega-drop-down-menu-wrapper {
        border-bottom: 1px solid #fff;
    }
}

.head-phone-code {
	font-weight: lighter;
    color: #7c7d88;
}

.head-backcall {
	line-height: 11px;
	display: inline-block;
    float: right;
	clear: both;
}

.head-backcall span {
	color: #2f9b21;
    text-decoration: none;
    border-bottom: 1px dotted #2f9b21;
	font-size: 14px;
	line-height: 11px;
}

.head-backcall span:hover {
	color: #2f9b21;
    cursor: pointer;
}

.phone-header {
	position:relative;
	margin-right: 12px;
}

.icon-phone-header {
    width: 16px;
    height: 16px;
    position: absolute;
    right: -22px;
    top: 10px;
	cursor:pointer;
}

.icon-phone-header[class*='icon'] {
	fill: rgba(0, 0, 0, 0.7);
}

@media print,
screen and (max-width:1140px) {	
	.menu-cat-link.hover-bottom {
		margin: 0 11px;
	}
	
	.top-bar .logo {
        margin-top: -14px;
		max-height: 40px;
    }
	
    .top-bar .logo.show-bar {
        max-width: 160px;
		margin-top: -51px;
		max-height: inherit;
    }		

}

@media print,
screen and (max-width:640px) {	
		
    .top-bar .logo.show-bar {
		margin-top: -34px;
    }		

}

.search-results {
	display:none;
}

.search-results .item {
    height: auto;
    overflow: hidden;
    padding: 8px 4px;
    width: 100%;
    border: 1px solid transparent;
    border-bottom: 1px solid #EBEBEB;
}

.search-results .item.active {
    background-color: #f7f8fa;
}

.search-results .item img {
    float: left;
    width: 10%;
}

.search-results .item .detail {
	padding: 0 10px;
    display: block;
    float: left;
    width: 80%;
}

.search-results .item .title {
    font-size: 16px;
	font-weight: 500; 
    padding-bottom: 4px;
    word-wrap: break-word;
}

.search-results .body {
    color: #525151;
    font-size: 12px;
    margin-bottom: 5px;
	float: left;
}

.search-results .item .body .searchtext {
    font-size: 12px;
    width: 100%;
    color: #35328f;
}

.search-results .item .searchprice {
    font-size: 18px;
    font-weight: 600;
	width: 100%;
    display: inline-block;
}

@media screen and (max-width:1023px) {
    .search-header {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: none;
        position: fixed;
        padding: 0;
        overflow-x: scroll;
        background-color: #f7f8fa;
        z-index: 3
    }
}

.search-header.search-visible {
    display: block
}

.search-header form {
    position: relative
}

.search-header input {
    border: none;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-family: "Open Sans";
    font-weight: normal;
    height: 47px;
    margin-top: 2px;
    background-color: #f7f8fa;
    border: 1px solid #e4e5e7;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all .2s cubic-bezier(.19, .26, .17, .99);
    -moz-transition: all .2s cubic-bezier(.19, .26, .17, .99);
    -ms-transition: all .2s cubic-bezier(.19, .26, .17, .99);
    transition: all .2s cubic-bezier(.19, .26, .17, .99)
}

.search-header input:focus,
.search-header input:active {
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
    border-color: #e0e0e0;
    color: #0a0a0a
}

@media screen and (max-width:65.9375em) {
    .search-header input:focus,
    .search-header input:active {
        border-left: 0;
        border-top: 0;
        border-right: 0
    }
}

.search-header [class*="icon"] {
    display: none
}

@media print,
screen and (min-width:64em) {
    .search-header [class*="icon"] {
        position: absolute;
        right: 0;
        top: 0;
        margin: .5rem .5rem 0 .5rem;
        display: inline-block
    }
}

.search-header .close {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    z-index: 3;
    padding: 1.3rem
}

.search-header .close .icon {
    display: block
}


.menu-cat-link {
    font-size: 1rem;
    padding: 0 .65rem;
    line-height: 3.125rem;
    height: 3.125rem;
    float: left;
    position: relative
}

@media screen and (min-width:80em) {
    .menu-cat-link {
        padding: 6px 4px !important
    }
}

.menu-cat-link.shop {
    color: #d04343;
    font-weight: 500
}

.menu-cat-link.shop:before {
    background-color: #d04343 !important
}

.menu-cat-link.hover::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    border: 8px solid transparent;
    border-color: transparent transparent #fff #fff;
    box-shadow: -1px 1px 0 0 #e4e5e7;
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 0;
    bottom: -10px;
    left: 0;
    z-index: 11;
    margin: auto
}

.menu-cat-link.hover-bottom {
    padding: 0;
    margin: 0 .6rem
}

.menu-cat-link.hover-bottom:before {
    content: '';    
    min-height: 0;
    background-color: #fff;
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    top: 52px;
    -webkit-transition: min-height .2s cubic-bezier(.19, .26, .17, .99);
    -moz-transition: min-height .2s cubic-bezier(.19, .26, .17, .99);
    -ms-transition: min-height .2s cubic-bezier(.19, .26, .17, .99);
    transition: min-height .2s cubic-bezier(.19, .26, .17, .99)
}

.menu-cat-link.hover-bottom:hover:before {
    min-height: 3px
}

.account-nav svg[class*='icon'] {
    /*fill: rgba(143, 7, 8, 1);*/
}

.top-bar .logo {
    position:absolute;
}

.top-bar .logo-link {
    display: inline-block
}

.top-bar .header-submenu {
    min-width: 300px;
    background-color: #fff;
    padding: 1rem 0;
    font-size: .9375rem;
    margin-top: -1px;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .08);
    -moz-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .08)
}

.top-bar .header-submenu>li>a {
    padding: .4rem 1rem;
    line-height: 1.5
}

.top-bar .header-submenu>li>a:hover {
    background: #f7f8fa
}

@media screen and (max-width: 65.9375em) {
	.top-bar {
		height: 60px;
		/*border-bottom: 1px solid #e4e5e7;*/
        border-bottom: none;
	}
}
.popup-form .flags {
    text-align: center;
    text-transform: uppercase;
}
.popup-form .flags span {
    display: inline-block;
    vertical-align: top;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
    vertical-align: middle;
}

.menu .close-button {
	left: auto;
	right:5px;
}