/*
 Theme Name:   Quta Child
 Theme URI:    http://blog.footshop.cz/quta-child/
 Description:  Quta theme 
 Author:       Vlad Opaets
 Author URI:   ---
 Template:     quta
 Version:      1.1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  quta-child
*/

@font-face {
  font-family: 'Footshop Medium';
  src: url('assets/font/Foot-Medium.otf') format('opentype'), 
       url('assets/font/Foot-Medium.woff2') format('woff2'), /* Super Modern Browsers */
       url('assets/font/Foot-Medium.woff') format('woff'); /* Pretty Modern Browsers */
}

.footshop-font {
  font-family: 'Footshop Medium', proxima-nova, sans-serif;
}

html, body, * {
	font-family: proxima-nova, sans-serif;
}

a,
a:hover, 
a:focus,
a:active {
	outline: unset;
}

/* menu */
.menu-wrapper {
    background-color: #000;
    position: relative;
	z-index: 11;
}
.menu-wrapper .logo {
    position: absolute;
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 0;
}
.menu-wrapper .logo--mobile {
    display: none;
}

@media screen and (max-width: 359px) {
    .menu-wrapper .logo {
        display: none;
    }
    .menu-wrapper .logo--mobile {
        display: block;
    }
}

@media screen and (min-width: 768px) and (max-width: 990px) {
    .menu-wrapper .logo {
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

@media screen and (max-width: 767px) {
    .menu-wrapper .logo {
        left: 55px;
    }
    .menu-wrapper .logo svg {
        height: 40px;
        width: 73px;
    }
    .menu-wrapper .burger-menu a span {
        display: none;
    }
}
.menu-wrapper .logo svg {
    fill: white;
}
.desktop-menu {
    text-align: center;
}
.desktop-menu .item {
    display: inline-block;
}
.desktop-menu .item a {
    border-bottom: 5px solid transparent;
    color: #fff;
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 90px;
    padding: 5px 15px 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}
.desktop-menu .item a:hover {
    color: #f5a007;
}
@media screen and (min-width: 990px) {
    .menu-wrapper .burger-menu,
    .menu-wrapper .mobile-menu,
    .menu-wrapper .mobile-menu-background {
        display: none;
    }
}

@media screen and (max-width: 990px) {
	body.sticky-menu .header {
		top: 0px;
		position: fixed;
		left: 0;
		right: 0;
	}
	body.sticky-menu .content {
		padding-top: 47px;
	}
	.menu-wrapper {
		position: relative;
		top: 0;
		right: 0;
		left: 0;
	}
	.menu-wrapper .burger-menu {
        display: block;
    }
    .menu-wrapper .burger-menu a {
        color: #fff;
        line-height: 25px;
        padding: 10px;
        font-size: 14px;
        text-decoration: none;
        display: flex;
        align-items: center;
        max-width: 100px;
    }
    .menu-wrapper .burger-menu a svg {
        margin-right: 5px;
    }
    .menu-wrapper .burger-menu a span {
        padding-top: 2px;
    }
    .desktop-menu {
        display: none;
    }

    .menu-wrapper .mobile-menu-background {
        width: 100vw;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: black;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease-in;

        z-index: -1;
    }
    .menu-wrapper .mobile-menu-background.active {
        z-index: 13;
        visibility: visible;
        opacity: 1;
    }
    .menu-wrapper .mobile-menu {
        background-color: #fff;
        bottom: 0;
        color: #999;
        overflow: hidden;
        position: fixed;
        top: 0;
        transition: transform .3s ease-out;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        width: 90vw;
        z-index: 15;
    }
    .menu-wrapper .mobile-menu.active {
        transform: translateX(0);
    }
    .menu-wrapper .mobile-menu .header {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        z-index: 1;
    }
    .menu-wrapper .mobile-menu .header .title {
        padding: 19px 0;
        color: #4d4d4d;
        background-color: #f3f3f3;
        text-transform: uppercase;
        text-align: center;
        font-weight: 700;
        font-size: 16px;
    }
    .menu-wrapper .mobile-menu .header button {
        background-color: transparent;
        border-radius: 3px;
        border: 0;
        line-height: 0;
        padding: 5px;
        position: absolute;
        right: 20px;
        z-index: 1;
        transform: translateY(-50%);
        top: 50%;
        cursor: pointer;
    }
    .menu-wrapper .mobile-menu .header button svg {
        fill: #4d4d4d;
    }
	    .menu-wrapper .mobile-menu .body {
        display: inline-block;
        height: 100%;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
        vertical-align: top;
        width: 100%;
        padding-top: 60px;
    }
    .menu-wrapper .mobile-menu .body .item a {
        border-bottom: 1px solid #e8e8e8;
        color: #4d4d4d;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 700;
        padding: 20px 0;
        text-decoration: none;
    }
}

/* microsites */
.microsites-container {
    background-color: #e8e8e8;
}
.microsites-container .inner-container {
    text-transform: uppercase;
    text-align: center;
    padding: 32px 15px;
}
.microsites-container .microsites {
    font-size: 13px;
    list-style: none;
    margin-top: 30px;
    padding-left: 0;
}
.microsites-container .microsites a {
    color: #4d4d4d;
    display: inline-block;
    text-decoration: none;
	font-weight: 700;
}
.microsites-container .microsites a:hover {
    color: #f5a007;
}
.microsites-container .microsites a:hover svg {
    fill: #f5a007;
}
.microsites-container .microsites li {
    display: inline-block;
    float: none;
    margin-bottom: 20px;
    vertical-align: top;
    width: 200px;
}
.microsites-container .microsites li:nth-child(2n + 1) {
    clear: both;
}
.microsites-container .microsites a svg {
    height: 40px;
    width: 100%;
    display: block;
    fill: #4d4d4d;
    margin: 0 auto 10px;
    max-width: 100px;
    transition: fill .3s;
}

/* footer */
.ftshp-footer {
    background: url("./assets/images/footer-bg.jpg") 50% 50% repeat-y;
    padding: 56px 0;
}
.ftshp-footer .wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
}
.ftshp-footer div {
    min-width: 33.33%;
    margin-bottom: 0;
    text-align: left;
}
.ftshp-footer div:last-of-type {
    margin-bottom: 0;
}
.ftshp-footer h3 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 20px;
}
.ftshp-footer ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.ftshp-footer a {
    color: #ccc;
    line-height: 180%;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
	transition: color 0.3s;
}
.ftshp-footer a:hover {
	color: #f5a007;
}
.social svg {
    fill: #fff;
    margin-right: 10px;
	transition: fill 0.3s;
}
.social svg:hover {
	fill: #f5a007;
}


@media screen and (max-width: 992px) {
    .ftshp-footer .wrapper {
        flex-direction: column;
        align-items: center;
    }
    .ftshp-footer div {
        margin-bottom: 28px;
        text-align: center;
    }
}

/* starbox plugin */
.abh_box .abh_tab_content {
	-webkit-border-radius: 0px !important; 
}
.abh_box .abh_tab_content .abh_text .abh_job {
	font-size: 13px !important;
}

/* Tla��tko  podle stylu footshop */

.wp-block-button__link {
    background-color: #000000 !important;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    min-width: 240px;
    padding: 14px;
    text-align: center;
    text-decoration: none!important;
    text-transform: uppercase;
    transition: background-color .3s;
    border-radius: 0;
}

.wp-block-button__link:hover {
    background-color: #4D4D4D !important;
}

.wp-block-button__link:active {
    background-color: #8C8C8C !important;
}

@media only screen and (min-width: 991px) {
    .wp-block-button__link {
        padding-bottom: 9px;
        padding-top: 9px;
    }
}

.instagram-media {
    margin-left: auto!important;
    margin-right: auto!important;
}

.container {
    max-width: 1292px;
}

.custom-logo-link {
    font-size: 50px;
    padding-top: .8em;
    padding-bottom: .4em;
    text-decoration: none;
    opacity: .7;
    transition: opacity .2s;
}

.custom-logo-link img {
    opacity: .7;
    transition: opacity .2s;
}

.custom-logo-link:hover { /* img*/
    opacity: 1;
    color: #000
}

body .header {
    box-shadow: none;
}

body .main-content__grid {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0;
    margin: 0 -21px;
}

body .main-content__grid .post-card {
    box-shadow: none;
    max-width: 33.3333%;
    flex: 0 1 33.3333%;
    padding: 0 21px;
    margin-bottom: 80px;
}

body .main-content__grid .post-card .entry-featured__meta {
    color: #4D4D4D;
    font-size: 16px;
    line-height: 25px;
}

body .main-content__grid .post-card .entry-featured__meta a {
    color: #4D4D4D;
}
body .main-content__grid .post-card .entry-featured__meta a:hover {
    color: var(--primary);
}

body .main-content__grid .post-card .entry-featured__meta {
    margin-bottom: 40px;
}

body .main-content__grid .post-card .post-card__title {
    margin-bottom: 15px;
}

body .main-content__grid .post-card .post-card__excerpt, .taxonomy-description {
    font-size: 18px;
    line-height: 28px;
    color: #4D4D4D
}

body .main-content__grid .post-card .post-card__excerpt p:first-child {
    height: 84px;
    overflow: hidden;
}

body .main-content__grid .post-card .post-card__excerpt p:last-child {
    margin-bottom: 0;
    text-align: center;
}

body .main-content__grid .post-card .post-card__excerpt .more-link {
    font-weight: 400;
    text-decoration: underline;
}

body .main-content__grid .post-card .post-card__excerpt .more-link:after {
    display: none;
}

body .main-content__grid .post-card:not(:last-child) {
    margin-bottom: 80px;
}

body .main-content__grid .post-card__thumbnail img {
    width: 100%;
    height: auto;
}


body .main-content__grid .post-card__body {
    padding: 20px 0 0!important;
}

body .pagination .page-numbers {
    font-size: 18px;
    font-weight: 400;
}

body .pagination .page-numbers.current {
    background: #000;
}

body .page-header .page-title {
    color: #525252;
    text-transform: uppercase;
    font-size: 40px;
    border-bottom: 0;
    letter-spacing: .115em;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
    margin-bottom: 80px;
}

.col-md-4 {
    position: relative;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
}

.youtube-img {
    position: relative;
    padding-bottom: 56.25%;
    background: url() no-repeat center center / cover;
}

.house-list__row > * {
    margin-bottom: 35px;
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
}
/*
body .header__site-title {
    position: static;
    clip: none;
}

body .header__site-title a {
    padding: 1em 0 .5em;
    color: #525252;
    text-transform: uppercase;
    font-size: 40px;
    border-bottom: 0;
    letter-spacing: 0em;
}

body .header__site-title a:first- {
    letter-spacing: .115em;
}
*/
@media only screen and (min-width: 961px) {

    body .header .container {
        display: block;
    }

    body .entry-featured_fullwidth {
        margin-top: 50px;
    }

    .header__menu li a {
        padding: .3em 1em;
        color: #707070;
    }
    .header__menu li a:hover,
    .header__menu li.current-menu-item a {
        color: #000000;
        text-decoration: underline;
    }
    .header__menu li:first-child a {
        padding-left: 0.2em;
    }
    ul.header__menu_secondary::before {
        display: none;
    }
}

@media only screen and (max-width: 960px) {

    body .main-content__grid {
        margin: 0 -15px;
    }

    body .main-content__grid .post-card {
        max-width: 33.3333%;
        flex: 0 1 33.3333%;
        padding: 0 15px;
    }

    body .main-content__grid .post-card .post-card__excerpt p:first-child {
        height: 112px;
    }
}


@media only screen and (min-width: 780px) {
    body .main-content__grid .post-card--is-sticked {
        box-shadow: none;
        max-width: 100%;
        flex: 0 1 100%;
        display: flex;
        flex-flow: row-reverse;
        align-items: center;
        justify-content: center;
    }

    body .main-content__grid .post-card--is-sticked .post-card__body {
        max-width: 33.3333%;
        flex: 0 1 33.3333%;
        padding-right: 14px;
    }

    body .main-content__grid .post-card--is-sticked .post-card__thumbnail {
        max-width: 66.6666%;
        flex: 0 1 66.6666%;
        padding-left: 14px;
    }
}

@media only screen and (max-width: 769px) {

    body .main-content__grid .post-card {
        max-width: 100%;
        flex: 0 1 100%;
    }

    body .main-content__grid .post-card .post-card__excerpt p:first-child {
        height: auto;
        overflow: hidden;
    }

    .custom-logo-link {
        font-size: 20px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .custom-logo-link img,
    .custom-logo-link svg {
        max-width: 154px;
        height: 32px;
    }

    body .page-header .page-title {
        font-size: 28px;
    }
}


@media only screen and (max-width: 601px) {
    body .main-content__grid .post-card .post-card__title,
    .youtube-title {
        font-size: 22px;
        line-height: 27px;
    }
}








/* Nová patička 2021-01-15 */


.Links_group {
	margin-bottom: 30px
}
.Links_group:last-of-type {
	margin-bottom: 0
}
.Links_group.socials li {
	display: inline-block;
	margin-right: 10px
}
.Links_group.socials li:last-child {
	margin-right: 0
}
.Item_hidden {
    left: 0;
    position: absolute;
    visibility: hidden;
}
@media only screen and (min-width:991px) {
    .Links_group {
    	flex-grow: 1;
    	margin-bottom: 0
    }
    .Links_group.socials li {
    	margin-right: 20px
    }
}
.Links_content {
	font-size: 14px;
	margin: auto;
	max-width: 950px;
	position: relative;
	text-align: center
}
@media only screen and (min-width:991px) {
    .Links_content {
    	display: flex;
    	flex-flow: row nowrap;
    	justify-content: center;
    	text-align: left
    }
}
.Links_wrapper {
	background: #333;
	padding: 50px 0;
	position: relative
}
.Links_wrapper a {
	color: #c8c8c8;
	line-height: 1.8;
	text-decoration: none;
	text-transform: uppercase
}
.Links_wrapper a:hover {
	color: #f5a007
}
.Links_wrapper h3 {
	color: #fff;
	text-transform: none
}
.Links_wrapper svg {
	fill: #aaa;
	height: 32px;
	transition: fill .3s;
	width: auto
}
.Links_wrapper svg:hover {
	fill: #f5a007
}
.Links_wrapper ul {
	list-style: none;
	margin: 0;
	padding-left: 0
}
.Headline_wrapper {
    color: #4d4d4d;
    font-weight: 700;
    margin: 0 0 15px;
    text-transform: uppercase;
}
.Headline_wrapper .Headline_h3, .Headline_wrapper h3 {
    font-size: 20px;
    letter-spacing: .5px;
    line-height: 25px;
}

/*Obsah - LWTOC*/
.lwptoc_i .lwptoc_header {font-weight: bold;}
.lwptoc-white .lwptoc_i a,
.lwptoc-white .lwptoc_items a:visited {color: #444444;}























.Ultranav_search_2uAnX,
.Ultranav_icons_3jGgX * {
    display: none!important;
}





.menu-wrapper {
    display: none;
}

.Ultranav_wrapper_2TIwU {
    display: block;
}

@media screen and (max-width: 767px) {
    .menu-wrapper {
        display: block;
    }

    .Ultranav_wrapper_2TIwU {
        display: none;
    }
}




.Logo_logo_1BcaM {
    position: relative;
    display: block;
    height: 50px;
    overflow: hidden
}

.Logo_logo_1BcaM svg {
    fill: #fff;
    padding: 0;
    width: 130px;
    height: 50px;
    vertical-align: top
}

@media only screen and (max-width: 359px) {
    .Logo_logo_1BcaM svg {
        width:100px
    }
}

.Logo_logo_1BcaM svg+svg {
    position: absolute;
    top: 0;
    left: 0
}

@media only screen and (min-width: 991px) {
    .Logo_logo_1BcaM {
        position:absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%)
    }
}

.Logo_logo_1BcaM .Logo_tenYrs_3S-9H {
    transition: transform .3s ease-out
}

.Logo_logo_1BcaM .Logo_tenYrs_3S-9H svg {
    display: block
}

.Logo_logo_1BcaM .Logo_tenYrs_3S-9H svg+svg {
    position: relative;
    left: auto
}

.Logo_logo_1BcaM .Logo_tenYrs_3S-9H.Logo_moved_3NQ1Q {
    transform: translateY(-50%)
}

.MainItem_mainItem_35vZB {
    display: inline-block
}

.MainItem_mainItem_35vZB>a {
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    position: relative;
    padding: 9px 12px 23px;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Footshop Medium', proxima-nova, sans-serif
}

.MainItem_mainItem_35vZB>a,.MainItem_mainItem_35vZB>a:hover {
    text-decoration: none;
    color: #fff
}

.MainItem_mainItem_35vZB.MainItem_open_2i7cj>a:after,.MainItem_mainItem_35vZB:hover>a:after {
    height: 2px;
    background: #fff;
    content: "";
    position: absolute;
    bottom: 22px;
    left: 12px;
    right: 12px
}

.MainItem_child_3mi3p {
    position: absolute;
    background: #fff;
    top: 100%;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 1;
    display: none;
    justify-content: flex-start
}

.MainItem_open_2i7cj .MainItem_child_3mi3p {
    display: flex
}

.MobileInput_close_7ISIx {
    cursor: pointer;
    padding: 10px 0 10px 5px;
    position: absolute;
    right: 48px;
    top: 0;
    height: 40px
}

.MobileInput_close_7ISIx svg {
    height: 22px;
    width: 22px;
    border-right: 1px solid #e8e8e8;
    box-sizing: content-box;
    fill: #4d4d4d;
    padding-right: 10px
}

.MobileInput_container_2uo7V {
    background: #fff;
    padding-left: 0;
    padding-right: 45px;
    position: relative
}

.MobileInput_container_2uo7V.MobileInput_focused_66Xf3 {
    padding-right: 85px
}

.MobileInput_input_1TDcg {
    background: #fff;
    border: none;
    border-radius: 0;
    color: #4d4d4d;
    font-size: 15px;
    height: 40px;
    line-height: 20px;
    margin: 0;
    padding: 10px 0 10px 15px;
    width: 100%
}

.DesktopSearch_close_3qW3X {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
    background-color: transparent
}

.DesktopSearch_close_3qW3X svg {
    fill: #999;
    width: 25px;
    height: 25px
}

.DesktopSearch_container_3H0FM {
    color: #999;
    display: block;
    opacity: 1;
    transition: opacity .3s
}

.DesktopSearch_container_3H0FM.DesktopSearch_isHidden_JWVe0 {
    opacity: 0;
    pointer-events: none
}

.DesktopSearch_iconContainer_3vUUH {
    background: none;
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 15px 10px 10px;
    height: 40px
}

.DesktopSearch_iconContainer_3vUUH svg {
    height: 22px;
    width: 22px;
    fill: #4d4d4d
}

.DesktopSearch_results_3LPtm {
    display: flex;
    flex-direction: column;
    left: 0;
    position: absolute;
    top: 100%;
    right: 0;
    height: calc(100vh - 135px)
}

@media only screen and (min-width: 991px) {
    .DesktopSearch_results_3LPtm.DesktopSearch_isShopSuggesterOpened_2skD- {
        max-height:calc(100vh - 205px)
    }
}

.DesktopSearch_resultsInner_1gcoB {
    background-color: #fff
}

.DesktopSearch_wrapper_90KpE {
    display: block;
    position: relative;
    padding-bottom: 14px
}

.DesktopSearch_wrapper_90KpE input::-webkit-input-placeholder {
    color: #aaa
}

.DesktopSearch_wrapper_90KpE input:-moz-placeholder,.DesktopSearch_wrapper_90KpE input::-moz-placeholder {
    color: #aaa
}

.DesktopSearch_wrapper_90KpE input:-ms-input-placeholder {
    color: #aaa
}

.TopMenu_topLinks_1dC_p {
    list-style: none;
    margin: 0;
    padding: 0
}

.TopMenu_topLinks_1dC_p>li {
    display: inline-block;
    padding: 0;
    position: relative
}

.TopMenu_topLinks_1dC_p>li>a,.TopMenu_topLinks_1dC_p>li>span {
    cursor: pointer;
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: .5px;
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Footshop Medium', proxima-nova, sans-serif
}

.TopMenu_topLinks_1dC_p>li>a:hover {
    text-decoration: underline
}

.TopMenu_topLinks_1dC_p>li ul {
    display: none
}

.TopMenu_topLinks_1dC_p>li:hover>span {
    text-decoration: underline
}

.TopMenu_topLinks_1dC_p>li:hover ul {
    background: #fff;
    border: 1px solid #c8c8c8;
    display: block;
    position: absolute;
    top: 100%;
    left: -5px;
    z-index: 2;
    margin: 0;
    padding: 0;
    width: 250px
}

.TopMenu_topLinks_1dC_p>li:hover ul li {
    padding: 0;
    display: block
}

.TopMenu_topLinks_1dC_p>li:hover ul li a {
    display: block;
    padding: 9px 14px;
    white-space: nowrap;
    width: 100%;
    text-decoration: none;
    color: #4d4d4d
}

.TopMenu_topLinks_1dC_p>li:hover ul li a:hover {
    background-color: #f2f2f2
}

.CartIcon_cartIcon_Tbxdc {
    position: relative;
    background: none;
    padding: 0;
    margin: 0;
    -webkit-appearance: none
}

.CartIcon_cartIcon_Tbxdc svg {
    fill: #fff
}

.CartIcon_cartIcon_Tbxdc:hover svg {
    fill: #fff;
    transition: fill .3s
}

.CartIcon_cartIcon_Tbxdc .CartIcon_quantity_1ybyq {
    display: block;
    background: #fff;
    color: #000;
    height: 18px;
    width: 18px;
    line-height: 20px;
    font-size: 11px;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -6px;
    text-align: center
}

.UserIcon_userIcon_GQ1fb svg {
    fill: #fff;
    transition: fill .3s
}

.UserIcon_userIcon_GQ1fb.UserIcon_logged_3YcLn svg,.UserIcon_userIcon_GQ1fb:hover svg {
    fill: #fff
}

.CustomerListsIcon_wishIcon_3dYaY {
    position: relative;
    background: none;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    cursor: pointer
}

.CustomerListsIcon_wishIcon_3dYaY svg {
    fill: #fff
}

.CustomerListsIcon_wishIcon_3dYaY:hover svg {
    fill: #fff;
    transition: fill .3s
}

.CustomerListsIcon_wishIcon_3dYaY .CustomerListsIcon_quantity_T2mMh {
    display: block;
    background: #fff;
    color: #000;
    border-radius: 99px;
    position: absolute;
    text-align: center
}

@media only screen and (min-width: 991px) {
    .CustomerListsIcon_wishIcon_3dYaY .CustomerListsIcon_quantity_T2mMh {
        min-width:18px;
        height: 18px;
        line-height: 20px;
        font-size: 11px;
        top: -5px;
        right: -6px;
        padding-left: 3px;
        padding-right: 3px
    }
}

.Ultranav_shadeSearch_sLgmJ {
    z-index: 1160!important
}

.Ultranav_shadeTopBar__hSb3 {
    z-index: 1200!important
}

.Ultranav_shadeCart_3H4S- {
    z-index: 1280!important
}

.Ultranav_wrapper_2TIwU {
    background: #141414;
    font-size: 15px;
    line-height: 22px;
    position: relative;
    z-index: 1180;

    font-family: 'Footshop Medium', proxima-nova, sans-serif;
}

.Ultranav_topBar_3Afmk {
    background: #2f2f2f;
    color: #fff;
    padding: 0 62px 0 24px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1220
}

.Ultranav_topBar_3Afmk .Ultranav_multistoreSwitch_DrwtL {
    top: 0;
    right: 24px
}

.Ultranav_topBar_3Afmk .Ultranav_multistoreSwitch_DrwtL button {
    height: auto;
    padding: 0
}

.Ultranav_topBar_3Afmk .Ultranav_multistoreSwitch_DrwtL button svg {
    vertical-align: top
}

.Ultranav_topBar_3Afmk .Ultranav_multistoreSwitch_DrwtL button span+svg {
    display: none
}

.Ultranav_topBar_3Afmk .Ultranav_multistoreSwitch_DrwtL a:hover {
    text-decoration: none
}

.Ultranav_topBar_3Afmk .Ultranav_flagSpinner_2NWxZ {
    top: 2px;
    position: relative
}

.Ultranav_topBar_3Afmk .Ultranav_flagSpinner_2NWxZ>svg {
    width: 18px;
    height: 18px;
    fill: #aaa!important
}

.Ultranav_topBar_3Afmk .Ultranav_multistoreShopList_323ih {
    margin-right: -24px;
    margin-top: 1px;
    background-color: #fff;
    border: 1px solid #c8c8c8;
    padding: 0;
    width: 250px
}

.Ultranav_topBar_3Afmk .Ultranav_multistoreShopList_323ih>li {
    margin: 0
}

.Ultranav_topBar_3Afmk .Ultranav_multistoreShopList_323ih>li>a {
    padding: 9px 14px 9px 46px;
    color: #4d4d4d
}

.Ultranav_topBar_3Afmk .Ultranav_multistoreShopList_323ih>li>a.Ultranav_activeItem_3fyNo,.Ultranav_topBar_3Afmk .Ultranav_multistoreShopList_323ih>li>a:hover {
    background-color: #f2f2f2
}

.Ultranav_topBar_3Afmk .Ultranav_multistoreShopList_323ih>li>a>svg {
    left: 14px
}

.Ultranav_main_2jAop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 24px 4px 12px
}

.Ultranav_main_2jAop .Ultranav_genders_2hJrV,.Ultranav_main_2jAop .Ultranav_icons_3jGgX {
    flex: 1 1 0
}

.Ultranav_main_2jAop .Ultranav_logo_KzbUA {
    position: relative;
    top: auto;
    left: auto;
    transform: none
}

.Ultranav_main_2jAop .Ultranav_genders_2hJrV ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.Ultranav_main_2jAop .Ultranav_genders_2hJrV ul li {
    display: inline-block
}

.Ultranav_main_2jAop .Ultranav_genders_2hJrV ul li button {
    background: none;
    display: inline-block;
    color: #aaa;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 9px 12px;
    font-family: 'Footshop Medium', proxima-nova, sans-serif;
    font-size: 15px;
    line-height: 22px;
    border-radius: 0;
    height: auto;
    outline: none;
    border: 0;
}

.Ultranav_main_2jAop .Ultranav_genders_2hJrV ul li button:hover {
    text-decoration: none;
    color: #fff
}

.Ultranav_main_2jAop .Ultranav_genders_2hJrV ul li button.Ultranav_active__8mec {
    color: #fff
}

.Ultranav_main_2jAop .Ultranav_genders_2hJrV ul li button.Ultranav_active__8mec:after {
    height: 2px;
    background: #fff;
    content: "";
    position: absolute;
    bottom: 8px;
    left: 12px;
    right: 12px
}

.Ultranav_main_2jAop .Ultranav_icons_3jGgX {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.Ultranav_main_2jAop .Ultranav_icons_3jGgX>* {
    display: inline-flex;
    height: auto;
    margin-left: 24px
}

.Ultranav_main_2jAop .Ultranav_icons_3jGgX>:first-child {
    margin-left: 0
}

.Ultranav_navigation_3VEqI {
    padding: 0 24px 0 12px;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between
}

.Ultranav_navigation_3VEqI ul.Ultranav_mainItems_217dp {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 0;
    flex-shrink: 0
}

.Ultranav_navigation_3VEqI .Ultranav_search_2uAnX {
    flex-grow: 1;
    flex-shrink: 1;
    max-width: 340px
}

.Ultranav_navigation_3VEqI.Ultranav_searchOpened_3MaIr ul.Ultranav_mainItems_217dp {
    display: none
}

.Ultranav_navigation_3VEqI.Ultranav_searchOpened_3MaIr .Ultranav_search_2uAnX {
    flex-grow: 1;
    max-width: none;
    width: 100%
}

.Ultranav_navigation_3VEqI.Ultranav_searchOpened_3MaIr .Ultranav_search_2uAnX>form {
    max-width: 700px;
    margin: 0 auto
}

@keyframes Ultranav_fadeOut_19Nrt {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.Ultranav_navTab_8PZwf {
    display: none;
    opacity: 0
}

.Ultranav_navTab_8PZwf.Ultranav_visible_1zTfx {
    display: block;
    opacity: 1
}

.Ultranav_fadeIn_2XYEg .Ultranav_navTab_8PZwf {
    animation: Ultranav_fadeOut_19Nrt .3s ease-in reverse
}

.Ultranav_fadeOut_19Nrt .Ultranav_navTab_8PZwf {
    animation: Ultranav_fadeOut_19Nrt .3s ease-in
}

.Ultranav_ultranavBar_1aQeV {
    left: 0;
    position: fixed;
    right: 0;
    top: 0
}

.Ultranav_ultranavBar_1aQeV.Ultranav_inputHidden_qa32J {
    height: 50px
}

.Ultranav_ultranav_wikwu {
    position: relative;
    z-index: 1140
}

.Ultranav_ultranav_wikwu a {
    text-decoration: none
}

@media only screen and (min-width: 769px) {
    .Ultranav_ultranav_wikwu {
        background:#000;
        position: relative
    }

    .Ultranav_ultranav_wikwu a,.Ultranav_ultranav_wikwu a:hover {
        text-decoration: none
    }

    .Ultranav_ultranav_wikwu a:hover {
        color: #f5a007
    }
}

.Ultranav_spinner_1wm0J {
    position: absolute;
    top: 4px;
    right: 25px
}

.Ultranav_spinner_1wm0J svg {
    width: 18px;
    height: 18px;
    fill: #aaa
}

.Ultranav_asyncSpinner_1WCJN {
    position: fixed;
    bottom: 10px;
    right: 10px
}






