#siteContent {
  padding: 15px 0;
}

#header .container {
    position: relative;
}

#header #mainHeader {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-content: stretch;
    text-align: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    background: #efeeea;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 100;
    padding-bottom: 15px;
}

#header #mainHeader a {
    color: #363635;
}

#branding {
    display: block;
    height: 60px;
    margin: 15px 0;
    background-image: url(../../../image/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}



#header #mainHeader #navControls {
    font-size: 13px;
    font-weight: 400;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-content: stretch;
    text-align: center;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    width: 80px;
}

#header #mainHeader #navControls > * {
    display: block;
    line-height: 35px;
}

#header #mainHeader #navControls span:before {
    content: '\f0c9';
    font-family: Font Awesome\ 5 Pro;
    font-size: 26px;
    display: block;
    height: 35px;
    width: 35px;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background: rgba(220,217,207,0);
    font-weight: 300;
}

#header #mainHeader #navControls:hover span:before {
    background: rgba(220,217,207,1);
}

#header #mainHeader #navControls strong {
    font-weight: 400;
    text-transform: uppercase;
    margin-right: 5px;
    margin-left: 4px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

#header #mainHeader #navControls:hover strong {
    -moz-transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -o-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}

#header #mainHeader #accountControls {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-content: stretch;
    text-align: center;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    width: calc(100% - 80px);
}

#header #mainHeader #accountControls > * {
    display: block;
    margin-left: 15px;
    font-size: 13px;
    text-transform: uppercase;
}

#header #mainHeader #accountControls a strong {
    font-weight: 400;
}

#header #mainHeader #accountControls a span {
    display: inline-block;
    width: 30px;
    line-height: 30px;
    font-weight: 700;
}

#header #mainHeader #accountControls a:hover span {
    font-weight: 400;
}

#header #mainHeader #accountControls #searchToggle {
    margin-left: 0;
}

#header #mainHeader #accountControls #searchToggle strong {
    opacity: 0;
    -moz-transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -o-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    display: none;
}

#header #mainHeader #accountControls #searchToggle:hover strong {
    opacity: 1;
}

#header #mainHeader #search {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-content: stretch;
    text-align: center;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
        -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(100% - 80px);
    -ms-flex: 0 0 calc(100% - 80px);
    flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px);
    right: 0;
    background: #efeeea;
    z-index: 101;
}



body:not(.search) #header #mainHeader #search {
    display: none;
}

body.search #header #mainHeader #accountControls {
    display: none;
}

#header #mainHeader #search input[type=search] {
    margin-bottom: 0;
    border: 0;
    background: transparent;
    /*border-bottom: 1px solid #363635;*/
    width: calc(100% - 30px);
    padding: 0;
    height: 30px;
    text-align: right;
}

#header #mainHeader #search button {
    width: 30px;
    line-height: 30px;
    background: transparent;
    border: 0;
}

body.search #navOverlay {
    display: block;
}

#cart {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    max-width: 100%;
    background: #fff;
    padding: 45px 15px;
    overflow: auto;
    z-index: 102;
}

@media screen and (min-width:480px) {
    #header #mainHeader #accountControls #searchToggle strong {
        display: inline;
    }
}

@media screen and (min-width:576px) {

}

@media screen and (min-width:768px) {
    #header #mainHeader {
        padding-bottom: 0;
    }

    #branding {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 300px;
        -ms-flex: 0 0 300px;
        flex: 0 0 300px;
        max-width: calc(100% - 400px);
    }

    #header #mainHeader #navControls {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: -1;
    }

    #header #mainHeader #navControls,
    #header #mainHeader #accountControls,
    #header #mainHeader #search {
        -webkit-flex: 0 0 200px;
        -ms-flex: 0 0 200px;
        flex: 0 0 200px;
        max-width: 200px;
    }
}

@media screen and (min-width:992px) {
    #siteContent {
        padding: 30px 15px;
    }

    body.common-home #header {
        position: absolute;
        width: calc(100% - 30px);
        top: 30px;
        left: 15px;
        right: 15px;
    }

    #header #mainHeader {
        padding-left: 25px;
        padding-right: 25px;
    }

    body.common-home #header #mainHeader {
        padding-left: 25px;
        padding-right: 25px;
        background: transparent;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
        background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
    }

    body.common-home #header #mainHeader a {
        color: #fff;
    }

    body.common-home #branding {
        background-image: url(../../../image/logo_w.svg);
    }
}

@media screen and (min-width:1200px) {



}

@media screen and (min-width:1600px) {

}

@media screen and (min-width:1900px) {

}

@media screen and (min-width: 2000px) {

}

@media screen and (max-width: 1600px) {
 
}

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 991px) {
 
}

@media screen and (max-width: 767px) {

}

@media screen and (max-width: 575px) {
  
}

@media screen and (max-width:480px) {

}
