:root {
    /* Identity Colors */
    --heritage-green: #2E3918;
    --intermediate-green: #62742F;
    /*--global-color: #B3D88C;*/
    --global-color: #2c65aa;
    --beige-haussmann: #FEF6E6;

    /* Gradient Gray */
    --dark-grey-1: #565656;
    --dark-grey-2: #8A8A8A;
    --dark-grey-3: #B1B1B1;
    --light-grey-1: #D3D3D3;
    --light-grey-2: #F0F0F0;
    --light-grey-3: #F2F2F2;
    --light-grey-4: #FBFBFB;

    /* Success / Error */
    --green: #45A55A;
    --red: #DC3B33;
}

* {
    margin: 0;
    box-sizing: inherit;
}

*:before, *:after {
    box-sizing: inherit;
}

html, body {
    height: 100%;
    box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, label, fieldset, input, textarea, p, blockquote, th, td {
    padding: 0;
    margin: 0;
}

body.maintenance {
    background: #FFF;
    background-size: cover;
    position: relative;
    z-index: 0;
}

fieldset, img {
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ol, ul {
    list-style: none;
}

address, caption, cite, code, dfn, em, strong, th, var {
    font-weight: normal;
    font-style: normal;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-size: 100%;
}

h1, h2, h3, h4 {
    line-height: 42px;
    letter-spacing: 2px;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
}

@media only screen and (max-width: 767px) {
    h1, h2, h3, h4 {
        line-height: 28px;
        letter-spacing: 2px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }
}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
}

iframe {
    border: none;
    margin: 0;
    padding: 0;
}

figure {
    margin: 0 !important;
}

body, td, th {
    font-family: 'sofia-pro', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    color: #000000;
}

body {
    background: #FFF;
    margin: 0;
    position: relative;
}

body.no_scroll {
    overflow: hidden;
}

a:link, a:visited, a:active {
    color: #000000;
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
    color: #000000;
}

.clr {
    clear: both;
    font-size: 1px;
    height: 1px;
}

/* float clearing for IE6 */
* html .clearfix {
    height: 1%;
    overflow: visible;
}

/* float clearing for IE7 */
* + html .clearfix {
    min-height: 1%;
}

/* float clearing for everyone else */
.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    font-size: 0;
}

#wrapper {
    width: 100%;
    min-height: calc(100vh - 390px);
    margin: 0 auto;
    padding: 0;
}

.hero {
    font-size: 50px;
    line-height: 62px;
    letter-spacing: 2px;
}

@media only screen and (max-width: 767px) {
    .hero {
        font-size: 30px;
        line-height: 38px;
    }
}

header {
    padding-top: 15px;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
}
header.message {
    padding-top: 0;
}
body.absolute_menu header {
    position: absolute;
    width: 100%;
    z-index: 2;
}
body.absolute_menu header.fixed-top {
    position: fixed;
    top:0;
}
header.light_theme {
    background-color: #fff;
}
main.light_theme_push {
    margin-top: 170px;
}
@media  only screen and (max-width: 991px) {
    main.light_theme_push {
        margin-top: 120px;
    }

}
.header_banner {
    background-color: var(--global-color);
    padding: 10px 0;
    color: #fff;
    text-align: center;
    font-size: 14px;
    border-radius: 0;
    margin: 0;
    position:relative;
    top:0;

}
.header_banner.alert-dismissible .btn-close {
    padding: 0.75rem 1rem;
}
.header_banner.alert-dismissible .btn-close:focus {
    box-shadow: none;
}
header .header_top {
    background-color: transparent;
    color: #fff;
    padding: 0;
    font-size: 14px;
    height: 70px;
}

header .header_top a:link,
header .header_top a:active,
header .header_top a:visited {
    color: rgba(255, 255, 255, 1);
}

header .header_top a:hover {
    color: rgba(255, 255, 255, .8);
}

header.light_theme a:link,
header.light_theme a:active,
header.light_theme a:visited {
    color: #000;
}

header.light_theme a:hover {
    color: #000;
}

header.light_theme .header_top .logo img {
    content: url('images/logo.svg');
}

header .header_top .dropdown-item a:link,
header .header_top .dropdown-item a:active,
header .header_top .dropdown-item a:visited {
    color: #000;
    padding: 5px 10px !important;
}

header .header_top .dropdown-item a:hover {
    color: #fff;
    background-color: #000;
}

header .header_top .search .search_icon {
    padding-bottom: 6px;
    border-bottom: 2px solid #fff;
}
header .header_top .search .search_icon svg {
    width: 17px;
    height: 17px;
    padding: 0;
    margin-top: 0;
    margin-left: 10px;
    fill: transparent;
}

header:hover .header_top .search .search_icon svg,
header.light_theme .header_top .search .search_icon svg,
header.open .header_top .search .search_icon svg{
    fill: transparent;
    filter: invert(1);
}
header:hover .header_top .search .search_icon svg:hover,
header.light_theme .header_top .search .search_icon svg:hover,
header.open .header_top .search .search_icon svg:hover {
    fill: #10b47e;
}
header.light_theme .header_top .search .search_icon {
    border-bottom: 2px solid var(--global-color);
}
@media only screen and (max-width: 992px) {
    header.light_theme .header_top .search .search_icon,
    header .header_top .search .search_icon {
        border-bottom: none;
    }
    header .header_top .search .search_icon svg {
        margin-left: 0;
    }
    header .header_top .search .search_icon {
        position: relative;
        top: -6px;
    }
}

header .header_top > div {
    height: 100%;
}
header .header_top .logo img {
    height: 35px;
}
header .header_top .search,
header .header_top .user_actions {
    width: calc(50% - 150px);
}
header .header_top .user_actions svg {
    fill: transparent;
    width: 31px;
    height: 20px;
    margin-left: 8px;
}
header:hover .header_top .user_actions svg,
header.light_theme .header_top .user_actions svg,
header.open .header_top .user_actions svg{
    filter: invert(1)
}
header:hover .header_top .user_actions svg:hover,
header.open .header_top .user_actions svg:hover{
    fill: #10b47e;
}
header .header_top .user_actions .qc_wrapper svg {
    height: 23px;
}
@media only screen and (max-width: 991px) {
    header .user_actions .stores{
        display: none;
    }
    header {
        padding-top: 0;
    }
    body.absolute_menu header.open {
        position: absolute;
        top: 0;
        width: 100%;
        min-height: 100vh;
        height: 100%;
        z-index: 100;
        background-color: #fff;
        transition: top .1s ease,background-color .2s ease-in;
    }
    header .header_top {
        height: 60px;
    }
}
#top_cart .qc_wrapper {
    position: relative;
}
#top_cart .quantityCart {
    border: 0 solid #fff;
    width: 16px;
    height: 16px;
    top: 0;
    left: 28px;
    clip: auto;
    z-index: 0;
    background-color: #fff;
    border-radius: 8px;
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
}
#top_cart .my_cart {
    font-size: 11px;
    font-weight: 300;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    clip: auto;
    height: inherit;
    width: inherit;
    text-align: center;
    line-height: 1;
}
header:hover #top_cart .quantityCart,
header.light_theme #top_cart .quantityCart,
header.open #top_cart .quantityCart {
    background-color: var(--global-color);
    border: 1px solid #000;
    color: #fff;
}
header:hover .header_top .user_actions .qc_wrapper svg,
header.open .header_top .user_actions .qc_wrapper svg {
    fill: transparent;
}
header .logo {
    display: block;
}
header .logo_sm {
    display: none;
}

@media only screen and (max-width: 991px) {
    header .logo {
        display: none;
    }

    header .logo_sm {
        display: block;
    }
    header .logo_sm svg {
        width: 62px;
        height: 23px;
        fill: #fff;
    }
    header:hover .logo_sm svg,
    header.light_theme .logo_sm svg {
        fill: #000;
    }
}

@media only screen and (max-width: 576px) {
    header .header_top .search,
    header .header_top .user_actions {
        width: 150px;
    }
}

header .header_top .dropdown .btn {
    vertical-align: initial;
}

header .header_top .dropdown-item {
    margin-right: 0 !important;
    padding: 0;
}

header .header_top .dropdown-item a {
    display: block;
    padding: 0 1rem;
}

header.newcolor .header_top .dropdown .btn {
    color: #fff !important;
}

header .header_top .dropdown-item:focus,
header .header_top .dropdown-item:active,
header .header_top .dropdown-item:hover {
    background-color: #F2F2F2;
}

#navigation {
    background-color: transparent;
    padding: 0;
}

#navigation .navbar-collapse {
    background-color: transparent;
}
#navigation .navbar-expand-md {
    padding: 0;
}
#navigation .navbar-expand-md .navbar-nav .nav-item {
    margin: 0 auto;
    font-size: 14px;
}
#navigation .navbar-nav .nav-item .nav-link {
    padding: 10px 10px 20px;
}
#navigation .navbar-nav .nav-item a:link,
#navigation .navbar-nav .nav-item a:active,
#navigation .navbar-nav .nav-item a:visited {
    color: #fff;
}
@media only screen and (max-width: 991px){
    #navigation .navbar-expand-md .navbar-collapse {
        display: block!important;
        flex-basis: initial;
    }
    #navigation .navbar-expand-md .navbar-nav {
        flex-direction: column;
    }
    #navigation .navbar-nav .nav-item .nav-link {
        padding: 12.5px 0;
    }
}

header.light_theme #navigation .navbar-nav .nav-item a,
header.open #navigation .navbar-nav .nav-item a{
    position: relative;
}

header.light_theme #navigation .navbar-nav .nav-item a:link,
header.light_theme #navigation .navbar-nav .nav-item a:active,
header.light_theme #navigation .navbar-nav .nav-item a:visited,
header.open #navigation .navbar-nav .nav-item a:link,
header.open #navigation .navbar-nav .nav-item a:active,
header.open #navigation .navbar-nav .nav-item a:visited {
    color: #000;
}

#navigation .navbar-nav .nav-item a:hover {
    color: #000;
}
@media only screen and (min-width: 992px) {
    #navigation .navbar-nav .nav-item:hover > a::after {
        content: '';
        width: calc(100% - 16px);
        height: 2px;
        position: absolute;
        left: 8px;
        bottom: 0;
        background-color: var(--global-color);
    }
}

.select_language .dropdown-menu {
    min-width: auto;
    color: #fff;
    width: 50px;
    background-color: #000;
    border-radius: 0;
}

.select_language .dropdown-menu a:link,
.select_language .dropdown-menu a:active,
.select_language .dropdown-menu a:visited {
    color: #fff;
    display: block;
}

.select_language .dropdown-menu a:hover {
    color: #000;
}

.select_language .dropdown-menu .dropdown-item {
    padding: 0;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    #navigation .navbar-expand-md {
        padding: 0;
    }
    #navigation .navbar-expand-md .navbar-nav .nav-item {
        margin: 0;
        padding: 0 12.5px;
    }
}

.breadcrumb {
    padding: 25px 0;
}

.breadcrumb-item {
    font-size: 12px;
}

.breadcrumb-item a:link,
.breadcrumb-item a:active,
.breadcrumb-item a:visited {
    color: #1e1e1e;
}

.breadcrumb-item a:hover {
    color: #000;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
    font-size: 12px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "";
    width: 10px;
    height: 1px;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    margin: 0 12px;
    background-color: #000;
    float: initial;
    padding-right: 0;
    color: #000000;
}

#main_slideshow {
    width: 100%;
    min-height: 100vh;
    position: relative;
    top: 0;
    margin: 0 auto;
    background-color: #fff;
}

#main_slideshow .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    color: #fff;
}

#main_slideshow .owl-nav .owl-prev {
    position: absolute;
    left: 50px;
    opacity: 0.7;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
}

#main_slideshow .owl-nav .owl-prev.disabled {
    display: none;
}

#main_slideshow .owl-nav .owl-next {
    position: absolute;
    right: 50px;
    opacity: 0.7;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
}

#main_slideshow .owl-nav .owl-prev:hover,
#main_slideshow .owl-nav .owl-next:hover {
    opacity: 1;
}

#main_slideshow .item {
    position: relative;
}

#main_slideshow .item .data_container {
    position: absolute;
    transform: translateY(-50%);
    width: 100%;
    max-width: 650px;
    padding: 0 20px;
    text-align: center;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    color: #fff;
}
#main_slideshow .item .data_container.left {
    left: 0;
    right: initial;
}
#main_slideshow .item .data_container.right {
    left: initial;
    right: 0;
}
@media only screen and (max-width: 1199px) {
    #main_slideshow .item .data_container.left {
        left: 0;
        right: 0;
    }
    #main_slideshow .item .data_container.right {
        left: 0;
        right: 0;
    }
}

#main_slideshow .item .data_container .title p {
    margin-bottom: 30px;
}

#main_slideshow .item .data_container h1 {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 100%;
    margin-bottom: 30px;
}

#main_slideshow .item .data_container .sub_title {
    color: #fff;
    font-size: 12px;
}

#main_slideshow .item .data_container a {
    color: #fff;
    position: relative;
}
#main_slideshow .item .data_container a:after {
    content: "";
    position: absolute;
    width: 100%;
    display: block;
    height: 2px;
    left: 0;
    background-color: var(--global-color);
    bottom: -4px;
    transition: width .4s ease;
}
#main_slideshow .item .title.white {
    color: #fff;
    background-color: transparent;
    border: none;
}

#main_slideshow .item .title.left {
    left: 6.25em;
}

#main_slideshow .item .title.center {
    right: 0;
    left: 0;
    margin: 0 auto;
}

#main_slideshow .item .title.right {
    right: 6.25em;
}

#main_slideshow .item .title h2 {
    font-size: 40px;
}

#main_slideshow .item .title p.subtitle {
    font-size: 22px;
}
.is_desktop {
    position: relative;
    background-color: #151b17;
}
@media only screen and (max-width: 767px) {
    #main_slideshow {
        min-height: initial;
    }
    #main_slideshow .owl-nav {
        top: 35%;
        transform: translateY(-35%);
    }

    #main_slideshow .owl-nav .owl-prev {
        left: 20px;
    }

    #main_slideshow .owl-nav .owl-next {
        right: 20px;
    }

    #main_slideshow .item .title {
        position: relative;
        top: inherit;
        transform: translateY(0);
        padding: 1.5em;
    }

    #main_slideshow .item .title.left {
        left: inherit;
    }

    #main_slideshow .item .title.right {
        right: inherit;
    }

    #main_slideshow .item .title.white {
        color: #000;
        background-color: transparent;
        border: none;
    }

    #main_slideshow .item .title h2 {
        font-size: 24px;
    }

    #main_slideshow .item .title p.subtitle {
        font-size: 18px;
    }
}

/* FEATURED BOX */
.featured_box_wrapper {
    padding: 40px 0;
}

.featured_box .description {
    padding: 0 20%;
}
.featured_box .row {
    margin-right: 1px;
    margin-left: 0;
}
.featured_box .category_images {
    padding: 0;
}

.featured_box h2 {
    text-align: center;
}

.featured_box p {
    text-align: center;
    font-size: 14px;
}

.featured_box .tab-content,
.featured_box .tab-content.active,
.featured_box .tab-pane {
    outline: none;
}
.featured_box .discover {
    font-size: 14px;
}
.featured_box .discover a:link,
.featured_box .discover a:active,
.featured_box .discover a:visited {
    color: #000;
    text-decoration: underline;
}
.featured_box .discover a:hover {
    color:#1e1e1e;
    text-decoration: underline;
}

.featured_box .nav .nav-item {
    position: relative;
    margin: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #565656;
    text-transform: uppercase;
}

.featured_box .nav .nav-item .nav-link {
    padding: 0;
    position: relative;
}

.featured_box .nav .nav-item .nav-link.active {
    font-weight: 700;
    color: #000;
}

.featured_box .nav .nav-item:not(:last-of-type):after {
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    top: 11px;
    right: -21px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #d9d9d9;
    margin-right: 2px;
}

.featured_box .nav .nav-item .nav-link:before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--global-color);
    bottom: -4px;
    transition: all .3s ease;
    transform: translateX(-50%);
    left: 50%;
}

.featured_box .nav .nav-item .nav-link.active:before {
    width: 100%;
}

.featured_box .nav .nav-item .nav-link,
.featured_box .nav .nav-item.show .nav-link,
.featured_box .nav .nav-link.active,
.featured_box .nav .nav-link:focus,
.featured_box .nav .nav-link:hover {
    border-color: transparent;
    color: #565656;
    background-color: transparent;
    outline: none;
}

.featured_box .nav-tabs {
    border-bottom: none;
}

@media only screen and (max-width: 991px) {
    .featured_box .description {
        padding: 0 3%;
    }
}
@media only screen and (min-width: 768px) {
    .reverse .category_images {
        order: 2;
    }

    .reverse .products_grid {
        order: 1;
    }
}

@media only screen and (max-width: 767px) {
    .products_grid {
        padding: 20px 0;
        margin: 0 auto;
    }
}

.product_item {
    margin-bottom: 10px;
    transition: width .5s ease;
}

.product_item .product_wrapper {
    position: relative;
}

.product_item .flag_wrapper {
    position: absolute;
    top: 24px;
    left: 0;
    z-index: 2;
    width: 100%;
    padding-left: 22px;
    padding-right: 18px;
}

.product_item .flag_name {
    font-size: 12px;
    color: #565656;
    text-transform: uppercase;
    letter-spacing: .05em;
    z-index: 2;
    background-color: hsla(0, 0%, 100%, .4);
    padding: 5px;
    -ms-flex-align: center;
    align-items: center;
    width: fit-content;
}

.product_item .flag_name:last-of-type {
    margin-bottom: 0;
}

.product_item .product_wrapper .images {
    position: relative;
    background: #f0f0f0;
    margin-bottom: 18px;
    aspect-ratio: 1/1;
    cursor: default;
}
.product_wall.product_item .product_wrapper .images {
    margin-bottom: 4px;
}

.product_item .images picture {
    line-height: 1;
}

.product_item .images picture img {
    width: 100%;
    height: 100%;
    /*
    object-fit: cover;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor
    */
}

.product_item .images {
    position: relative;
}

.product_item .images .first-image {
    opacity: 1;
    transition: opacity .3s linear;
}

.product_item .images .first-image img:not(.cropped) {
    transform: scale(.7);
}

.product_item .images .second-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: opacity .3s linear;
}

.product_item .images.inverted picture img {
    height: auto;
}

.product_item .images.inverted .second-image {
    opacity: 1;
    transition: opacity .3s linear;
}

.product_item .images.inverted .first-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: opacity .3s linear;
}

@media only screen and (min-width: 767px) {
    .product_item .images:hover .first-image {
        opacity: 0;
    }

    .product_item .images:hover .first-image.single {
        opacity: 1;
    }

    .product_item .images:hover .second-image {
        opacity: 1;
    }

    .product_item .images.inverted:hover .second-image {
        opacity: 0;
    }

    .product_item .images.inverted:hover .first-image {
        opacity: 1;
    }
}

@media only screen and (max-width: 767px) {
    .product_item .images .first-image img:not(.cropped) {
        transform: scale(.75)
    }
}

.product_item .content {
    padding-left: 8px;
}

.product_item .content h3 .title {
    font-size: 14px;
    font-weight: bold;
    text-transform: none;
    color: #000;
    letter-spacing: .05em;
    display: block;
    line-height: normal;
    margin-bottom: 7px;
}

.product_item .content h3 .style {
    font-size: 14px;
    letter-spacing: .05em;
    color: #000;
    display: block;
    line-height: normal;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_item .content h3 .price {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    letter-spacing: .05em;
}
.product_item .content h3 .price .old_price {
    font-weight: 400;
    color: #858282;
    text-decoration: line-through;
}
.product_item .content h3 .price .discount {
    /*display: none;*/
}

.product_color {
    margin-bottom: 8px;
    position: relative;
    z-index: 0;
}

.product_color li span {
    position: relative;
    display: block;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    margin-bottom: 0;
}

.product_color li span:not(.selected) {
    border: none
}

.product_color li span::before {
    content: "";
    transform: scale(0);
    transition: transform .25s ease-in;
    position: absolute;
    box-shadow: 0 0 0 1.3px #000;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 50%;
}

.product_color li span.active:before,
.product_color li:focus span:before,
.product_color li:hover span:before {
    transform: scale(1);
    position: absolute;
    border: 2px solid #fff;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    left: 1px;
    top: 1px;
    z-index: 1;
}

#the_longchamp_look h2,
#the_longchamp_look2 h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 8px;
}

#the_longchamp_look p,
#the_longchamp_look2 p {
    text-align: center;
    font-size: 14px;
}

.lcmp_carousel .owl-stage {
    margin-left: 40px !important;
}
#lookbook .lcmp_carousel .owl-stage {
    margin-left: 0 !important;
}

.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

#longchamp_for_men .owl-nav {
    top: 190px;
    transform: inherit;
}

.owl-prev {
    position: absolute;
    left: 35px;
    border-radius: 0 !important;
}

.owl-next {
    position: absolute;
    right: 45px;
    border-radius: 0 !important;
}


.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: var(--global-color);
    color: #000;
    opacity: 1;
}

.owl-theme .owl-nav .disabled {
    opacity: 0;
    display: none;
}

.owl-theme .owl-nav .disabled:hover {
    opacity: 0;
    display: none;
}

.previous_arrow {
    display: inline-block;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMjkiIHZpZXdCb3g9IjAgMCAxNiAyOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMUwxNC41IDE0LjVMMSAyOCIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4K);
    width: 15.5px;
    height: 27px;
    transition: all .3s ease-in-out;
    transform: rotate(180deg);
}

.next_arrow {
    display: inline-block;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMjkiIHZpZXdCb3g9IjAgMCAxNiAyOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMUwxNC41IDE0LjVMMSAyOCIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4K);
    width: 15.5px;
    height: 27px;
    transition: all .3s ease-in-out;
}

#lookbook_arrows {
    width: 100%;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
#lookbook_arrows span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
    top: 50%;
    height: 3.9375rem;
    width: 3.9375rem;
    background-color: #aee363;
}
#lookbook_arrows .previous_arrow,
#lookbook_arrows .next_arrow {
    background-repeat: no-repeat;
    background-position: center center;
}
#lookbook_arrows .previous {
    position: absolute;
    top:0;
    left:0;
}
#lookbook_arrows .next_arrow {
    position: absolute;
    top:0;
    right:0;
}

.lcmp_carousel {
    padding: 0;
    margin: 40px auto;
}

.lookbook_slider .owl-next {
    right: -5px;
}
.lookbook_slider .owl-prev {
    left: -5px;
}
.lcmp_carousel .item,
.lookbook_slider .item {
    width: calc((100vw / 3) - 40px);
    position: relative;
}
.lcmp_carousel.two .item {
    width: calc((100vw / 2) - 40px);
    position: relative;
}
.lcmp_carousel.four .item {
    width: calc((100vw / 4) - 40px);
    position: relative;
}
.lcmp_carousel.four .owl-stage {
    margin: 0 auto;
}

@media only screen and (max-width: 1023px) {
    .lcmp_carousel .item,
    .lookbook_slider .item {
        width: calc((100vw / 2) - 40px);
    }
    .lcmp_carousel.four .item {
        width: calc((100vw / 3) - 40px);
        position: relative;
    }

    #the_longchamp_look .owl-stage {
        margin-left: 30px;
    }
}
@media  only screen and (max-width: 767px){
    #women-bags .lcmp_carousel .owl-stage,
    #mens-bags .lcmp_carousel .owl-stage,
    #sizes_content .lcmp_carousel .owl-stage {
        margin-left: 15px !important;
    }
    #lepliage-collections_carousel.lcmp_carousel .owl-stage {
        margin-left: 0 !important;
    }
    .lcmp_carousel.two .item {
        width: calc(100vw - 40px);
    }
    .lcmp_carousel.two .owl-stage {
        margin-left: 10px !important;
    }
    .lcmp_carousel.four .item {
        width: calc(100vw - 40px);
    }
    .inside_section .description {
        padding: 0 3%;
    }
}
@media only screen and (max-width: 599px) {
    .lcmp_carousel .item,
    .lookbook_slider .item{
        width: 90vw;
        margin: 0 auto;
    }

    #the_longchamp_look .owl-stage {
        margin-left: 17px;
    }
}

.lcmp_carousel .item {
    position: relative;
}
.lcmp_carousel .item_wrapper {
    position: relative;
}
.lcmp_carousel .active-shadow .item_wrapper::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 2;
}

.lcmp_carousel .active-shadow .item_wrapper::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 30%);
}

.lcmp_carousel .item .url_text {
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 24px;
    position: absolute;
    bottom: 32px;
    left: 0;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
}

.lcmp_carousel .item .url_text .tile-text {
    padding-right: 15px;
}
#lp_size_guide .lcmp_carousel .item .url_text .tile-text {
    padding-right: 0;
}
#sizes {
    max-width: 820px;
    margin: 0 auto;
}
#sizes .nav-link {
    margin: 0 auto;
    text-align: center;
}
@media only screen and (max-width: 991px) {
    #sizes {
        order:2;
    }
    #sizes_content {
        order:1;
    }

}

.lcmp_carousel .item .url_text .icon-svg svg {
    width: 30px;
    height: 34px;
    fill: transparent;
    transform: scale(1.3);
}
.presentation_carousel_3_slides.lcmp_carousel .item .category {
    position: absolute;
    top: 24px;
    color: #fff;
    left: 24px;
    z-index: 10;
}

.presentation_carousel_3_slides.lcmp_carousel .item.active-shadow::before {
    background: transparent;
}
.presentation_carousel_3_slides.lcmp_carousel .item .url_text {
    position: relative;
    color:#000;
    bottom: initial;
    padding: 10px 0;
}


.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
    top: 50%;
    height: 3.9375rem;
    width: 3.9375rem;
    background-color: var(--global-color);
}

.owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 4px;
    border-radius: 0;
    margin: 5px 4px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #000000;
}

.owl-theme .owl-dots .owl-dot {
    outline: none;
}


#longchamp_for_men {
    margin: 40px auto;
}

#longchamp_for_men .owl-next {
    position: absolute;
    right: 35px;
    border-radius: 0 !important;
}

.longchamp_fm {
    margin: 40px auto 0;
}
.longchamp_fm .owl-stage {
    margin-left: 40px;
}

.longchamp_fm .product_item {
    width: calc((100vw / 4) - 30px);
}

@media only screen and (max-width: 1199px) {
    .longchamp_fm .product_item {
        width: calc((100vw / 3) - 30px);
    }

    #longchamp_for_men .owl-prev {
        left: 26px;
    }

    #longchamp_for_men .owl-next {
        right: 28px;
    }

    #longchamp_for_men .owl-stage {
        margin-left: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .longchamp_fm .product_item {
        width: calc((100vw / 2) - 34px);
    }

    #longchamp_for_men .owl-stage {
        margin-left: 30px;
    }
}

@media only screen and (max-width: 576px) {
    /*
    .longchamp_fm .product_item {
        width: 90vw;
        margin: 0 auto;
    }
    */

    #longchamp_for_men .owl-stage {
        margin-left: 15px;
    }
}


.text-only p {
    margin: 15px auto;
}

.single_title h2 {
    font-size: 32px;
    text-align: center;
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .single_title h2 {
        font-size: 26px;
    }
}

.ift {
    margin: 30px auto;
}

.ift .frame_title {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 650px;
    padding: 0 20px;
    text-align: center;
    top: 78%;
    left: 50%;
    z-index: 1;
    color: #fff;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 100%;
    margin-bottom: 30px;
}

.ift .player {
    padding: 0;
    background-color: #fff;
    position: relative;
}

.ift .text {
    background-color: #fff;
    position: relative;
}

.ift .text .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

.ift .text.longtext .content {
    position: relative;
    top: inherit;
    transform: translateY(0);
    padding: 20px;
}

@media only screen and (max-width: 767px) {
    .ift .text .content {
        position: relative;
        top: inherit;
        transform: translateY(0);
        padding: 20px;
    }
}

.ift .text .content h2 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.ift .text .content h2::after {
    content: '';
    position: absolute;
    width: calc(100% + 50px);
    left: -30px;
    bottom: -15px;
    border-bottom: 1px solid #cacaca;
}

.ift .text.remove_hr .content h2::after {
    display: none;
}

.ift .text .content p {
    font-size: 14px;
}

.ift .text .content a {
    color: #000;
    font-size: 12px;
    font-weight: 300;
    position: relative;
}

.ift .text .content a:hover {
    text-decoration: none;
}

.ift .text .content a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: #000;
    transition: width .25s ease-in-out;
}

.ift .text .content a:hover::before {
    width: 0;
}

.news_block.ift .text .content h2 {
    border-bottom: 0;
    display: block;
    margin: 10px auto;
    font-size: 20px;
    font-weight: 400;
}

.news_block.ift .text .content h2::after {
    display: none;
}

.news_block.ift .text .content .date {
    font-size: 14px;
}

.news_block.ift .player img {
    width: 100%;
}

.news_block.ift .text .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 100px;
    width: calc(100% - 20px);
}

.news_block.ift .article:nth-child(odd) .text {
    order: 1;
}

.news_block.ift .article:nth-child(odd) .player {
    order: 2;
}

@media only screen and (max-width: 991px) {
    .news_block.ift .text .content {
        padding: 0 40px;
    }
}

@media only screen and (max-width: 767px) {
    .news_block.ift .article:nth-child(odd) .text {
        order: 2;
    }

    .news_block.ift .article:nth-child(odd) .player {
        order: 1;
    }

    .news_block.ift .text .content {
        padding: 0 20px;
    }

    .news_block.ift .text .content {
        position: relative;
        top: inherit;
        transform: translateY(0);
        padding: 20px;
        width: calc(100% - 20px);
    }
}

#page .site-main .news_title {
    text-align: center !important;
    font-size: 22px;
    font-weight: 300;
    margin: 5px auto;
}

#page .site-main .content.description {
    font-size: 14px;
    font-weight: 300;
    text-align: center !important;
    margin-bottom: 20px;
}

#page .site-main .content.description p {
    margin-bottom: 15px;
}

.photo-gallery {
    padding: 5px;
    background-color: #fff;
    margin-top: 20px;
}

/*.photo-gallery .item {
    padding: 5px;
}*/

#new-arrivals {
    margin: 50px auto;
    position: relative;
}
#new-arrivals .category_images {
    position: relative;
}

#new-arrivals h2,
.main-block h2 {
    font-size: 38px;
    font-weight: 200;
    text-align: center;
    margin: 30px auto 0;
    border-bottom: none;
}

.product_block .tab-pane {
    padding: 30px 50px;
}

.product_block .nav .nav-item .nav-link {
    font-weight: 300;
    font-size: 18px;
    padding: 5px 0;
    margin: 0 20px;
    position: relative;
    color: #000;
}

.product_block .nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: width .25s ease-in-out;
    left: 0;
}

.product_block .nav .nav-item .nav-link.active::after,
.product_block .nav .nav-item .nav-link:hover::after {
    width: 100%;
}

.product_block .nav .nav-item .nav-link:hover {
    cursor: pointer;
}

.product_block .nav-item .nav-link:link,
.product_block .nav-item .nav-link:active,
.product_block .nav-item .nav-link:visited {
    color: #000;
}

.product_block .item {
    padding: 15px 25px 15px;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
}

.product_block.home .item {
    transition: all ease .25s;
    border-right: 1px solid #e0e0e0;
}

@media only screen and (max-width: 567px) {
    .product_block.home .item {
        border-right: none;
    }
}

.product_block.home .owl-carousel .owl-item img {
    width: inherit;
    margin: 0 auto;
}

.product_block .item:hover {
    background-color: #d7d7d7;
}

.product_block .item h3 {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    padding: 0 10px;
    display: -webkit-box;
    max-width: 100%;
    height: 34px;
    margin: 10px auto;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

.product_block .item .price {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
}

.product_block .item .old_price {
    font-size: 16px;
    color: #999;
    margin-right: 5px;
    text-decoration: line-through;
}

.product_block .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    color: #000;
}

.product_block .owl-nav .owl-prev {
    position: absolute;
    left: -30px;
    opacity: 0.7;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
}

.product_block .owl-nav .owl-prev.disabled {
    display: none;
}

.product_block .owl-nav .owl-next {
    position: absolute;
    right: -40px;
    opacity: 0.7;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
}

.product_block .owl-nav .owl-prev:hover,
.product_block .owl-nav .owl-next:hover {
    opacity: 1;
}

.extras .accordion {
    border-top: 1px solid #cacaca;
    margin-top: 30px;
}
.extras .accordion-button,
.extras .accordion-item {
    background-color: transparent !important;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border: none;
    box-shadow: none;
}

.extras .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}

.extras .accordion-item:first-of-type .accordion-button {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.extras .accordion-button {
    border-bottom: 1px solid #cacaca;
    padding: 15px 0;
}

.extras .accordion-button:not(.collapsed) {
    color: #000;
}

.extras .accordion-body {
    padding: 15px 0;
}

.extras .accordion-body p {
    margin-bottom: 15px;
    font-size: 14px;
}

.product_detail_list_item {
    border-bottom: 1px solid #cacaca;
    font-size: 14px;
    padding: 18px 0;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    color: #000;
    position: relative;
}
.product_detail_list_item:first-child {
    border-top: 1px solid #cacaca;
    margin-top: 20px;
}
.product_detail_list_item h2 {
    font-size: 14px !important;
    line-height: 1.5;
    text-align: left;
}
.product_detail_list_item::after {
    content: '\f054';
    font-family:'Font Awesome 5 Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    position: absolute;
    right: 8px;
    top:18px;
}

#main_navigation .mega-menu {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #fff;
    color: #737373;
    z-index: 11;
    padding: 20px;
    border: 1px solid #E6E6E6;
    display: none;
    /*
	-moz-box-shadow: 0 3px 3px #eee;
	-webkit-box-shadow: 0 3px 3px #eee;
	box-shadow: 0 3px 3px #eee;
	*/
}

#main_navigation .mega-menu h3 {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
}

#main_navigation .mega-menu .product_price {
    font-size: 20px;
    color: #000;
    margin: 5px;
    line-height: 17px;
    font-weight: 400;
}

#main_navigation .mega-menu .product_price .old_price {
    color: #999;
    margin-right: 5px;
    text-decoration: line-through;
}

#main_navigation .mega-menu .category {
    margin-bottom: 10px;
    border-right: 1px solid #ddd;
}

#main_navigation .mega-menu .brands {
    border-right: 1px solid #ddd;
}

#main_navigation .mega-menu .category ul > li > a {
    font-size: 16px;
    font-weight: 500;
}

#main_navigation .mega-menu .category ul > li > ul > li > a {
    font-size: 14px;
    font-weight: 300;
}

#main_navigation .mega-menu .category a:link,
#main_navigation .mega-menu .category a:active,
#main_navigation .mega-menu .category a:visited {
    color: #737373;
}

#main_navigation .mega-menu .category a:hover {
    color: #1c355e;
}

#main_navigation .mega-menu .category ul.multiple {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    list-style: inside none;
    padding: 0;
}

#main_navigation .mega-menu .category ul.tripple {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    list-style: inside none;
    padding: 0;
}

#main_navigation .mega-menu .mlist {
    font-size: 12px;
    font-weight: 300;
}

#main_navigation .mega-menu .mlist > li {
    display: inline-block;
    padding: 0 25px;
    position: relative;
}

#main_navigation .mega-menu .mlist li > ul > li a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--global-color);
    transition: width .25s ease-in-out;
    font-weight: 600;
}

#main_navigation .mega-menu .mlist li > ul > li a:hover::before {
    width: 100%;
}

#main_navigation .mega-menu .mlist > li h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
    position: relative;
}
#main_navigation .mega-menu .mlist > li h3 a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #000 !important;
    transition: width .25s ease-in-out;
}

#main_navigation .mega-menu .mlist > li h3 a:hover::before {
    width: 100%;
}

#main_navigation .mega-menu .mlist li > ul > li.view_all {
    margin-top: 10px;
    font-weight: 500;
}

#main_navigation .mega-menu .mlist li > ul > li.view_all a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: var(--global-color);
    transition: width .25s ease-in-out;
}

#main_navigation .mega-menu .mlist li > ul > li.view_all a:hover::before {
    background-color: #000;
}

#main_navigation .mega-menu .category ul li {
    padding: 4px 0;
    letter-spacing: 0.04em;
    position: relative;
}

#main_navigation .mega-menu .category ul.multiple li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

#main_navigation .mega-menu .category .subcategory li {
    padding: 2px 0;
    letter-spacing: 0.04em;
}

#main_navigation .mega-menu .category .subcategory li::before {
    content: '\f0da';
    display: inline-block;
    font-family: 'Font Awesome 5 Pro', sans-serif;
    font-weight: 700;
    color: #1c355e;
    padding-right: 5px;
}

#main_navigation .mega-menu .menu_thumb_categories {
    padding: 2.5rem 1.5625rem 5.9375rem 1.25rem;
    opacity: 1;
}

#main_navigation .mega-menu .menu_thumb_categories h3 {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin: 12px 0 20px;
    line-height: 1.2;
}

#main_navigation .mega-menu .menu_thumb_categories figure {
    overflow: hidden;
    width: 100%;
}
#main_navigation .mega-menu .menu_thumb_categories figure img {
    width: 100%;
    transition: .3s;
}

#main_navigation .mega-menu .menu_thumb_categories figure:hover img {
    transform: scale(1.1);
}

@media only screen and (max-width: 991px) {
    #navigation .navbar-nav {
        display: none;
    }
    #navigation.open .navbar-nav {
        display: block;
    }
    #navigation .active .mega-menu {
        display: block;
    }
    #navigation .navbar-expand-md {
        padding: 0;
    }
    #navigation .navbar-expand-md .navbar-nav .nav-item {
        margin: 0;
        padding: 0 12.5px;
    }
    #navigation .navbar-nav > .nav-item .nav-link {
        font-size: 18px;
        font-weight: 500;
    }
    #main_navigation .mega-menu .mlist > li {
        padding: 0;
        width: 100%;
    }
    #main_navigation .mega-menu .mlist li ul li:not(:first-child) {
        display: none;
    }
    #main_navigation .mega-menu .mlist li.active {
        display: block;
        margin-bottom: 20px;
    }
    #main_navigation .mega-menu .mlist li.active ul {
        width: 100%;
    }
    #main_navigation .mega-menu .mlist li.active ul li {
        padding: 10px 0;
    }
    #main_navigation .mega-menu .mlist li.active ul li:not(:first-child){
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }
    #main_navigation .mega-menu .menu_thumb_categories {
        padding: 2.5rem 0 5.9375rem;
    }
    #main_navigation .mega-menu .mlist > li h3 {
        font-size: 18px;
        font-weight: 500;
    }
}

#search_modal .modal-header {
    border: none;
    padding: 0 1rem 0 0;
}

#search_modal .modal-header h5 {
    font-size: 24px;
    font-weight: 300;
    color: #1c355e;
}

#search_modal .modal-header .btn-close {
    color: #fff;
    text-shadow: none;
    opacity: 1;
    font-size: 20px;
    font-weight: 300;
    padding: 1rem 0;
    outline: none;
}

#search_modal .modal-header .btn-close:hover {
    opacity: 0.8;
}

#search_modal .modal-content {
    background-color: transparent;
    border: none;
}

#search_modal .modal-body {
    padding: 0;
}

#search_modal .modal-footer {
    text-align: center;
    padding: .5rem 0;
    border: 0;
    justify-content: center;
}

#search_modal .btn-light {
    border: 1px solid #1c355e;
}

#search_modal .btn-light:hover, #search_modal .btn-light:active {
    background: #80c7bc;
    border: 1px solid #80c7bc;
    box-shadow: none;
    color: #1c355e;
}

#categories_list .item {
    margin-bottom: 30px;
}

#categories_list .item h2 {
    display: block;
    text-align: center;
    font-weight: 600;
}

#categories_list .item figure {
    text-align: center;
}

.white-box {
    background-color: #fff;
    padding: 10px;
}

.list_wrapper .image figure img {
    max-height: 220px;
    margin: 0 auto;
}

.list_wrapper .new_arrivals_center .item .image figure img {
    max-height: 360px;
}

.list_wrapper .cover.large.item .image figure img {
    max-height: 500px;
    margin: 0 auto;
}

.list_wrapper .image figure {
    text-align: center;
}

.products_block, .cat_header {
    margin: 30px auto 50px;
}

.list_wrapper.products_block.gs .nav {
    margin-bottom: 20px;
}

.list_wrapper.products_block.gs .nav .nav-item .nav-link {
    font-weight: 600;
    font-size: 18px;
    padding: 5px 0;
    margin: 0 20px;
}

.list_wrapper.products_block.gs .nav-item .nav-link:link,
.list_wrapper.products_block.gs .nav-item .nav-link:active,
.list_wrapper.products_block.gs .nav-item .nav-link:visited {
    color: #000;
    border-bottom: 2px solid #fff;
}

.list_wrapper.products_block.gs .nav-item .nav-link:hover {
    border-bottom: 2px solid #000;
}

@media only screen and (max-width: 576px) {
    .products_block, .cat_header {
        margin: 30px auto 0;
    }
}

.products_block .np_nav {
    position: absolute;
    width: 100%;
    top: calc(50% - 20px);
}

.products_block .np_nav button {
    height: 40px;
    width: 40px;
    border: none;
    background-color: transparent;
    color: #000000;
    outline: none;
    padding: 0;
}

.products_block .np_nav button:hover {
    cursor: pointer;
    color: #212121;
}

.products_block .np_nav button.owl-prev {
    position: absolute;
    left: -40px;
}

.products_block .np_nav button.owl-prev.disabled {
    opacity: .6;
}

.products_block .np_nav button.owl-next {
    position: absolute;
    right: -40px;
}

@media only screen and (max-width: 576px) {
    .products_block .np_nav button.owl-prev {
        left: 0;
    }

    .products_block .np_nav button.owl-next {
        right: 0;
    }
}

.products_block h2, .cat_header {
    color: #3E3D3F;
    font-size: 27px;
    line-height: 37px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D3D3D3;
    position: relative;
    text-align: center;
}

.subcat_header h3 {
    color: #3E3D3F;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.cat_header .iblock {
    display: inline-block;
}

.cat_header .manufacturer_logo {
    display: inline-block;
    float: right;
}

/*.products_block h2:after, .cat_header:after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    display: inline-block;*/
/*    margin: 10px auto 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    box-sizing: border-box;*/
/*    height: 2px;*/
/*    width: 220px;*/
/*    border: 1px solid #000000;*/
/*}*/

.products_block .item {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0 0 30px;
    /*
	border: 0.8px solid #D3D3D3;
	border-radius: 8px;
	box-shadow: 0 0 12px 0 rgba(0,0,0,0.1);
	*/
    padding: 0 5px;
    box-sizing: border-box;
}

.products_block .item:nth-child(4n) {
    border-right: none;
}

/*
.products_block .item:last-child {
	border-right:none;
}
*/
@media only screen and (max-width: 576px) {
    .products_block .item {
        /*	border-right:none;*/
        padding-bottom: 20px;
    }

    .products_block .item .categories,
    .products_block .item h3,
    .products_block .item .code,
    .products_block .item .product_price {
        text-align: center !important;
    }
}

.products_block.top-border {
    border-top: 1px solid #eee;
}

.products_block .item .categories {
    padding: 0 10px;
}

.products_block .item .product_price {
    text-align: left;
}

.products_block .item .product_price .price {
    font-size: 20px;
    color: #343f49;
    margin: 5px 10px;
    line-height: 20px;
    font-weight: 400;
}

.products_block .item .product_price .old_price {
    font-size: 18px;
    color: rgba(0, 0, 0, .3);
    margin: 5px;
    line-height: 17px;
    font-weight: 600;
    text-decoration: line-through;
}

.products_block .item .image {
    position: relative;
    text-align: center;
}

.products_block .item .image .icon {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
}

.recycled {
    display: inline-block;
    margin: 10px auto;
    background-image: url("images/le-pliage-eco-logo.png");
    background-size: cover;
    width: 35px;
    height: 32px;
}

.item .image .badge,
.main_photo .badge {
    /*
    height: 50px;
	width: 50px;
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
	background-color: #232324;
    line-height:44px;
    color:#fff;
*/
    color: #000;
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.badge_recyclable {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 15px;
    z-index: 0;
}

.products_block .item .image .badge span,
.main_photo .badge span {
    position: absolute;
    left: 0;
    right: 0;
    top: 24px;
}

.products_block .item figure {
    margin: 10px auto;
    text-align: center;
}

.products_block .item .img-fluid {
    display: inline-block;
    width: auto;
    max-width: calc(100% - 20px);
}

@media only screen and (max-width: 767px) {
    .products_block .item .img-fluid {
        height: auto;
    }
}

.products_block .new_arrivals_center .item .img-fluid {
    display: inline-block;
    width: auto;
    height: auto;
    max-width: calc(100% - 20px);
}

.products_block .cover.large.item .img-fluid {
    height: 500px;
}

.products_block .item h3 {
    color: #363636;
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
    display: -webkit-box;
    max-width: 100%;
    height: 38.4px;
    font-weight: 300;
    margin: 10px auto;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.products_block .cover.large.item h3 {
    font-size: 22px;
    height: 52.8px;
}

.products_block .item h3 a:link,
.products_block .item h3 a:active,
.products_block .item h3 a:visited {
    color: #363636;
}

.products_block .item h3 a:hover {
    color: #000000;
}

.products_block .item .code {
    display: block;
    padding: 0 10px 5px;
    text-align: left;
    font-weight: 600;
    color: #7d7d7d;
}

.products_block .item .price_cart {
    width: 100%;
    display: block;
    background-color: #000000;
    border-color: #000000;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    line-height: 21px;
    text-align: center;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    position: relative;
    margin-top: 5px;
}

.products_block .item .price_cart.stock_level_8 {
    background-color: #F60;
    border-color: #F60;
}

.products_block .item .price_cart .error_message a, .products_block .item .price_cart .cart_result_error {
    padding: 15px;
    line-height: 21px;
}

.products_block .item .price_cart .alert {
    margin: 0;
    padding: 0;
}

.products_block .item .price_cart .cart_result {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.products_block .item .price_cart a {
    display: block;
    padding: 15px;
    color: #fff;
}

.products_block .item .price_cart a .price {
    color: #fff;
}

.products_block .item .price_cart a:hover .old_price {
    color: rgba(255, 255, 255, .7);
}

.products_block .item .price_cart:hover {
    background-color: #212121;
    color: #fff;
    border-color: #212121;
    cursor: pointer;
}

.products_block .item .price_cart .price {
    position: relative;
    padding-left: 35px;
}

.products_block .item .price_cart .price:before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(images/cart.svg);
    background-size: 18px;
    z-index: 10;
    width: 20px;
    height: 21px;
    background-repeat: no-repeat;
}

.products_block .item .price_cart span {
    display: inline-block;
}

.products_block .item .price_cart .old_price {
    color: rgba(255, 255, 255, .5);
    text-decoration: line-through;
    margin-right: 10px;
}

#product_price_wrapper .old_price {
    color: rgba(0, 0, 0, .3);
    text-decoration: line-through;
    margin-right: 15px;
    font-size: 22px;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 90%;
    }
}
@media (max-width: 991px) {
    header .container {
        max-width: 100%;
        padding: 0 40px
    }
    .is_mobile {
        position: relative;
        height: 82.3vh;
        padding-bottom: 177.77%;
        background-color: #151b17;
    }
    .is_mobile iframe {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
}

.cover {
    position: relative;
}

.cover .title {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
}

.cover .title.white {
    background-color: transparent !important;
    color: #fff !important;
    border: none;
}

.cover .title.black {
    background-color: transparent !important;
    color: #000 !important;
    border: none;
}

.cover.large_image {
    position: relative;
    text-align: center;
}

.cover.large_image .title {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    margin: 0 auto;
}

.cover.large_image .title.white-top {
    position: absolute;
    left: 0;
    right: 0;
    top: 10%;
    transform: translateY(-10%);
    text-align: center;
    margin: 0 auto;
    color: #fff;
}

.cover.large_image .title.white-top h2 {
    color: #fff !important;
}

.cover.large_image .title.relative {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    transform: translateY(0);
    text-align: center;
    margin: 20px auto;
}

.cover .title.over {
    position: relative;
}

.cover .title.top {
    top: 10%;
    transform: translateY(-10%);
}

.cover .title.middle {
    top: 50%;
    transform: translateY(-50%);
}

.cover .title.bottom {
    bottom: 10%;
    transform: translateY(10%);
}

.cover.large_image .title h2 {
    font-size: 32px;
    font-weight: 300;
    color: #000;
}

.cover .title.over h2 {
    color: #000;
    padding-bottom: 10px;
    margin: 15px auto;
}

.cover.large_image .title h3 {
    font-size: 22px;
    font-weight: 300;
    color: #000;
}

.cover .title h2 {
    color: inherit;
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 5px 0;
}

.cover .title h3 {
    color: inherit;
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 5px 0;
}

.cover.footer .title {
    color: #fff;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.cover.footer .see_all_url {
    font-size: 18px;
    font-weight: 600;
}

.cover.footer .see_all_url a:link,
.cover.footer .see_all_url a:link,
.cover.footer .see_all_url a:link {
    text-decoration: underline;
    transition: opacity .2s ease;
}

.cover.footer .see_all_url a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.cover .outer_title {
    background-color: #fff;
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    padding: 30px 0;
}

.cover .description {
    background-color: #fff;
    padding: 48px 48px 12px 48px;
}

.cover .description p {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
}

.cover.top .description {
    padding: 15px !important;
}

.cover.top .title {
    background-color: #fff;
    margin: 0 auto !important;
    padding: 20px 0 0;
}

.categories .title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    margin: 10px auto;
}
/*
.categories .item {
    padding: 15px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 0 !important;
}
*/
.categories .item figure {
    margin: 0;
    text-align: center;
}

.categories .item .cta {
    padding: 1.25em 2.5em;
    background-color: #fff;
}

@media only screen and (max-width: 767px) {
    .categories .item .cta {
        padding: 0;
    }
}

.categories .item .cta .btn {
    display: block;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
    border: 1px solid #cacaca;
    transition: border-color .25s ease-in, background .25s ease-in, color .25s ease-in;
}

.promo-categories {
    padding: 50px 0;
}

.promo-categories .promo {
    margin-bottom: 30px;
}
.promo-categories .promo .row {
    margin-right: 0;
}
@media only screen and (max-width: 767px) {
    .promo-categories .promo .row {
        margin: 0;
    }
}

.promo-categories .promo .title {
    font-size: 32px;
    margin: 30px auto;
    text-align: center;
}
.promo-categories .promo figure {
    margin: 0;
    text-align: center;
}

.promo-categories .promo .cat-image img {
    max-width: 250px;
    margin-bottom: 15px;
}

.promo-categories .promo .btn {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
    border: 1px solid #cacaca;
    transition: border-color .25s ease-in, background .25s ease-in, color .25s ease-in;
}

.promo-categories .promo .data {
    background-color: #fff;
}

.promo-categories .promo .image img {
    width: 100%;
}

.promo-categories .promo:nth-child(even) .data {
    order: 2;
}

.promo-categories .promo:nth-child(even) .image {
    order: 1;
}
.promo-categories .discover {
    font-size: 12px;
    font-weight: 500;
}
.promo-categories .discover a {
    position: relative;
}
.promo-categories .discover a::before {
    content: "";
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--global-color);
    transition: width .25s ease-in-out;
}
.promo-categories .discover a:hover::before {
    background-color: #1e1e1e;
}

@media (max-width: 991px) {
    .promo-categories .promo .title {
        font-size: 32px;
        margin: 15px auto 5px;
        text-align: center;
    }

    .promo-categories .promo .data {
        order: 2 !important;
        padding-bottom: 30px !important;
    }

    .promo-categories .promo .image {
        order: 1 !important;
    }
}

.cta_banner {
    margin: 20px auto 0;
    background-color: #fff;
    padding: 40px 0;
}

.cta_banner .section {
    position: relative;
}

.cta_banner .section .data {
    transition: all .2s ease-in;
    background-color: rgba(255, 255, 255, 0);
    width: calc(100% - 24px);
    height: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
}

.cta_banner .section .data:hover {
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.cta_banner .section .data h2 {
    font-size: 34px;
    font-weight: 300;
    color: #414042;
}

.cta_banner .section .data p {
    font-size: 20px;
    font-weight: 600;
    margin: 10px auto 30px;
    color: #414042;
}

.cta_banner.triple .container-fluid {
    padding: 0 30px;
}

.cta_banner.triple .section .data p {
    font-size: 18px;
    font-weight: 300;
    padding: 0 15%;
    text-align: center;
}

.cta_banner.triple .section .data .btn-outline-light-dark {
    text-transform: uppercase;
}

.cta_banner .section figure img {
    width: 100%;
}

.photo_text_small,
.photo_text_half {
    margin: 5px auto;
}

.photo_text_small .pts_wrapper {
    background-color: #fff;
    padding: 60px 20px;
}

.photo_text_half .pts_wrapper {
    background-color: #fff;
    padding: 0;
}

.photo_text_half .data_wrapper {
    padding: 0 20px;
}

.photo_text_small .data_wrapper h2,
.photo_text_half .data_wrapper h2 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
}

.photo_text_small .data_wrapper p,
.photo_text_half .data_wrapper p {
    margin-bottom: 30px;
}

.pr_side h1 {
    font-size: 34px;
    margin: 25px auto;
}

.pr_side .content_wrapper {
    background-color: #fff;
    padding: 40px;
}

.pr_side .content_wrapper .side-menu ul li {
    font-weight: 300;
}

.pr_side .content_wrapper .side-menu > ul > li:not(:first-child) {
    margin-top: 25px;
}

.pr_side .content_wrapper .side-menu ul li > ul > li {
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
}

.vertical-tabs {
    margin-top: 20px;
}

.vertical-tabs.extras .accordion-header h2 {
    font-weight: 300 !important;
}

#video-categories h2 {
    font-size: 40px;
    font-weight: 300;
    text-align: center;
}

#video-categories h3 {
    font-size: 22px;
    font-weight: 300;
    text-align: center;
}

#video-categories .caption h3 {
    font-size: 15px;
    margin: 20px auto;
}

#video-categories .player:hover .caption h3 {
    text-decoration: underline;
}

#video-categories .player .image {
    position: relative;
}

#video-categories .player .image figure img {
    width: 100%;
}

#video-categories .player .image .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -1.5rem;
    margin-top: -1.7rem;
    transition: transform .25s ease-in;
    color: #fff;
}

#video-categories .player:hover .btn-play {
    transform: scale(1.4);
}

.inside_page {
    padding: 30px 0;
}

.inside_page .page {
    background-color: #fff;
    padding: 10px 20px;
}

.inside_page .cover-photo {
    position: relative;
    max-height: 770px;
    overflow: hidden;
}
.inside_page .cover-photo.video,
.inside_page.tall .cover-photo {
    height: 100vh;
    max-height: 100vh;
}
@media only screen and (max-width: 767px) {
    .main_cover:first-child.inside_page {
        padding: 30px 0 60px;
    }
    .inside_page .cover-photo {
        top:64px;
    }
    .inside_page .cover-photo.video,
    .inside_page.tall .cover-photo {
        height: auto;
    }
}
.inside_page .cover-photo img {
    width: 100%;
}

.inside_page .data_container {
    position: absolute;
    transform: translateY(-50%);
    top: 75%;
    left: 50%;
    width: 100%;
    max-width: 650px;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
    color: #fff;
}
.inside_page .dark > * {
    color: #000;
}
.inside_page .data_container.start {
    left: 0;
    right: initial;
}
.inside_page .data_container.end {
    left: initial;
    right: 0;
}
.inside_page .data_container.top {
    top: 25%;
}
.inside_page .data_container.middle {
    top: 55%;
}
.inside_page .data_container h1 {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 100%;
    margin-bottom: 30px;
}
.inside_page .data_container .subtitle {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: .2em;
    line-height: 1.5rem;
}

.inside_page .main_cover .cover-photo {
    position: relative;
}

.inside_page .content_wrapper {
    background-color: #fff;
    padding: 20px 0 0;
    border-top: 1px solid #eee;
}

.inside_page .content_wrapper .main_content {
    margin: 0;
}

.inside_page .products_block {
    margin-bottom: 0;
}

.inside_page .content_wrapper h1 {
    padding: 0 20px;
    font-size: 22px;
    font-weight: 400;
}

.inside_page .content_wrapper .breadcrumb {
    padding: 0 20px 10px;
    font-size: 14px;
    font-weight: 300;
    border-bottom: 1px solid #efefef;
}

.store_locations {
    height: 640px;
}

.store_locations .table {
    margin-bottom: 5px;
}

.findastore {
    font-size: 26px;
    font-weight: 300;
    margin: 0 0 1.5rem;
}

.store tr td {
    font-size: 14px;
}

.heading {
    font-size: 36px;
    font-weight: 300;
    line-height: 45px;
    margin-bottom: 20px;
    text-align: center;
}

.heading::after {
    content: "";
    display: none;
    margin: 15px auto 0;
    width: 80px;
    height: 4px;
    background: #000000;
}

.homepage .heading {
    font-size: 28px;
}

.homepage .heading::after {
    display: none;
}

.inside_page .text h2 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

/* SEARCH */
#product_search_form {
    margin: 0 0 20px 0;
    padding: 0;
}

#product_search_form .table-filters {
    background-color: #f9f9f9;
}

#product_search_form .table td, #product_search_form .table th {
    vertical-align: middle;
}

.product_search_search_type_label {
    display: block;
    cursor: pointer;
    padding: 2px 0 0 0;
    font-size: 11px;
}

.product_search_flag_label {
    display: block;
    float: left;
    padding: 5px 0;
    margin: 0 15px 0 0;
    font-size: 12px;
    cursor: pointer;
}


/* LOGIN */
#login_form .loading, #login_form .button {
    margin: 10px auto;
}

#login_form .checkbox, #register_form .checkbox {
    margin: 0;
}

.input-group-text {
    background-color: #000000;
    color: #fff;
    border: 1px solid #000000;
}

label.error {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    display: block;
    text-align: left;
    margin: 15px auto 5px auto;
    padding-bottom: 0;
}

.form-control.error {
    border-color: #000000;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(171, 151, 98, 0.6);
    outline: 0 none;
}

input.form-control.error, textarea.form-control.error {
    border-color: #B3D88C !important;
}

.grecaptcha-badge {
    visibility: hidden;
    opacity: 0;
    transition: linear opacity 1s;
}

.grecaptcha-badge.show {
    visibility: visible;
    opacity: 1;
    transition: linear opacity 1s;
}

#newsletter-box div.error, #newsletter-box div.error:focus {
    border: 1px solid #80c7bc;
    color: #000000;
}

#newsletter-box em.error {
    color: #000000;
}

#newsletter-box label.error {
    color: #000000;
}

#newsletter-box input.error, #newsletter-box input.error:focus {
    border: 1px solid #80c7bc;
}

#newsletter-box select.error, #newsletter-box select.error:focus {
    border: 1px solid #80c7bc;
}

#newsletter-box textarea.error, #newsletter-box textarea.error:focus {
    border: 1px solid #80c7bc;
}

.register h2 {
    font-size: 24px;
    font-weight: 700;
    color: #231F20;
    margin-bottom: 10px;
}

input.form-control:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px #fff inset;
    -webkit-text-fill-color: #555;
}

/* ACCOUNT */
.account_row {
    margin-bottom: 10px;
}

.msg .alert {
    margin-bottom: 10px;
}

.addresses {
    margin: 10px auto;
}

.address_form_title {
    margin: 10px auto;
    font-weight: 600;
    font-size: 18px;
}

.addresses .checkbox, .add_address .checkbox {
    margin: 0;
}

.address_entry {
    margin: 10px auto;
    padding: 10px 0;
    border-top: 1px solid rgba(99, 99, 99, 0.1);
}

.address_entry:nth-child(even) {
    background-color: #F9F9F9;
}

.address_entry p {
    margin-bottom: 3px;
}

.address_entry .details {
    margin-bottom: 10px;
}

.address_entry .tools .fa-edit {
    color: #f0ad4e;
    width: 20px;
}

.address_entry .tools .fa-times {
    color: #F00;
    width: 20px;
}

.ui-state-highlight {
    background-color: #f8f9fa;
    border: 1px solid rgba(99, 99, 99, 0.1);
}

/* ARTICLES */
#page .site-main {
    margin: 30px auto;
}

#page .site-main h1 {
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    text-align: center;
}

#page .site-main .blog-content article {
    background-color: #fff;
    padding: 10px;
}

#accordionNews .accordion-item {
    border: none;
    margin-top: 20px;
}

#accordionNews .accordion-item .date-meta {
    font-size: 12px;
}

#accordionNews .accordion-item h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    margin: 5px auto;
}

#accordionNews .accordion-item .accordion-button:not(.collapsed) {
    color: #000;
    font-weight: 300;
}

#accordionNews .accordion-button {
    display: block;
}

#accordionNews .accordion-button::after {
    display: none;
}

#accordionNews .accordion-item:first-of-type,
#accordionNews .accordion-item:first-of-type .accordion-button {
    border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
}

#accordionNews .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

#accordionNews .accordion-body figure {
    text-align: center;
    margin-bottom: 15px !important;
}

#accordionNews .accordion-body {
    padding-top: 0;
}

#accordionNews .accordion-body .description {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}

.article-item {
    margin-bottom: 30px;
}
.article-item h2 {
    font-size: 22px;
    line-height: 28px;
    margin: 8px auto;
    font-weight: 300;
}
.article-item a:hover {
    text-decoration: underline;
}

#page .site-main.inside .date {
    display: block;
    margin-bottom: 20px;
}

#page .site-main.inside h1 {
    text-align: left;
    text-transform: none;
}

#page .site-main.inside .video_blog .header {
    text-align: center;
}

#page .site-main.inside .video_blog h1 {
    text-align: center;
    margin-bottom: 15px;
}

#page .site-main.inside .blog-content article {
    padding: 0;
}

#page .site-main p {
    margin-bottom: 15px;
}

#page .main-article {
    margin: 20px auto;
    position: relative;
}

#page .main-article .photo {
    background-color: #333;
    color: #fff;
    padding: 60px;
    position: relative;
    text-align: right;
}

#page .main-article .photo figure {
    margin: 0;
}

#page .main-article .photo figure img {
    max-height: 500px;
}

#page .main-article::before {
    width: 50%;
    height: 100%;
    background-color: #333;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
}

#page .main-article article .description h2 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 10px;
}

#page .main-article article .description h2 a:link,
#page .main-article article .description h2 a:active,
#page .main-article article .description h2 a:visited {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

#page .main-article article .description h2 a:hover {
    color: #835629;
}

#page .main-article article .description .date {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}

#page .main-article article .description p {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 50px;
}

#page .main-article article .description a:link,
#page .main-article article .description a:active,
#page .main-article article .description a:visited {
    font-size: 17px;
    color: #000000;
}

#page .main-article article .description a:hover {
    color: #835629;
}

#page .main-article .description {
    padding: 60px 120px 60px 0;
}

@media only screen and (max-width: 991px) {
    #page .main-article::before {
        display: none;
    }

    #page .main-article .description {
        padding: 60px;
    }
}

@media only screen and (max-width: 767px) {
    #page .main-article .description {
        padding: 40px;
    }

    #page .main-article .photo {
        text-align: center;
        padding: 40px;
    }

    #page .site-main.inside .blog-content article .photo {
        margin-bottom: 30px;
    }
}

#page .blog-content article .post-wrapper img {
    max-height: 500px;
}

#page .blog-content article:nth-child(even) {
    padding: 0 120px 0 0;
}

#page .blog-content article .contain h2.title {
    font-size: 18px;
    font-weight: 600;
    margin: 10px auto;
}

#page .blog-content article .contain .date-meta {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

#page .blog-content article .contain .summary {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

#page .blog-content article .readmore a:link,
#page .blog-content article .readmore a:active,
#page .blog-content article .readmore a:visited {
    font-size: 16px;
    font-weight: 400;
    color: #737373;
}

#page .blog-content article .readmore a:hover {
    color: #000000;
}

@media only screen and (max-width: 991px) {
    #page .blog-content article {
        margin-bottom: 40px;
    }

    #page .blog-content article:nth-child(even) {
        padding: 0 40px;
    }

    #page .blog-content article .content .text-truncate {
        overflow: initial;
        text-overflow: initial;
        white-space: initial;
    }
}

@media only screen and (max-width: 576px) {
    #page .main-article article .description h2 {
        font-size: 24px;
    }

    #page .main-article article .description p {
        font-size: 16px;
    }

    #page .main-article article .description a:link {
        font-size: 15px;
    }

    #page .main-article {
        margin-bottom: 0 !important;
    }

    #page .blog-content article .post-wrapper {
        width: 100%;
        display: block;
        float: none;
    }

    #page .blog-content article .content {
        width: 100%;
        display: block;
        float: none;
        padding: 0;
    }

    #page .blog-content article .post-wrapper img {
        max-height: 100%;
    }
}

.article_back {
    float: right;
}

.article_files_wrapper {
    margin-top: 5px;
}

.article_files_wrapper.single_file_wrapper {
    background: #eee;
    padding: 0 10px;
}

.article_file_wrapper {
    padding: 10px 0 0 0;
    margin: 0 25px 15px 0;
    float: left;
}

.article_file a {
    display: block;
    float: left;
    font-size: 14px;
    font-weight: bold;
    height: 32px;
    padding-left: 38px;
}

.article_file a span {
    display: block;
    font-size: 11px;
    font-weight: normal;
    padding: 2px 0 0 0;
    color: #777
}

.icon_generic a {
    background: url(images/icons/generic.png) no-repeat 0 0;
}

.icon_doc a {
    background: url(images/icons/doc.png) no-repeat 0 0;
}

.icon_excel a {
    background: url(images/icons/excel.png) no-repeat 0 0;
}

.icon_powerpoint a {
    background: url(images/icons/powerpoint.png) no-repeat 0 0;
}

.icon_txt a {
    background: url(images/icons/txt.png) no-repeat 0 0;
}

.icon_pdf a {
    background: url(images/icons/pdf.png) no-repeat 0 0;
}

.icon_audio a {
    background: url(images/icons/audio.png) no-repeat 0 0;
}

.icon_video a {
    background: url(images/icons/video.png) no-repeat 0 0;
}

.icon_image a {
    background: url(images/icons/image.png) no-repeat 0 0;
}

.icon_archive a {
    background: url(images/icons/archive.png) no-repeat 0 0;
}

.extra_photos {
    display: block;
    width: 100%;
}

.extra_photos .photo {
    margin-bottom: 30px;
}

.extra_photos a img {
    border: 1px solid #eee;
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
}

.extra_photos a:hover img {
    border: 1px solid #000000;
}

.extra_photos a.active img {
    border: 1px solid #000000;
}

.orders_table tr td em {
    display: block;
    color: #B2B2B3;
    font-size: 12px;
    font-style: normal;
}

.orders_table tr td em span {
    display: block;
}

.orders_table tr td {
    text-wrap: none;
}

.orders_table .code {
    display: block;
    font-size: 12px;
    color: #000000;
}

.orders_table .details {
    display: block;
    font-size: 12px;
}

.order_details table tbody tr:first-child td {
    border-top: 2px solid #ddd;
}

.order_details h2 {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
    color: #000000;
    font-weight: 600;
}

.text p {
    margin-bottom: 15px;
}

.text ul {
    margin-bottom: 20px;
    margin-left: 15px;
}

.text ul li {
    line-height: 1.5;
    padding-left: 10px;
    position: relative;
}

.text ul li::before {
    position: absolute;
    content: '';
    pointer-events: none;
    top: 8px;
    left: -15px;
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #000000;
    border: 1px solid #000000;
}

.text ul.visual_swatch li::before {
    display: none;
}

.text ul.visual_swatch li {
    padding: 0;
}

.smbox {
    padding: 10px;
    background: #F9F9F9;
    border: 1px solid #ddd;
}

#contact .form-message {
    resize: none;
}

#contact .form-group label {
    font-weight: 600;
    margin-bottom: 5px;
}

#contact .form-group .form-check label {
    font-weight: 400;
}

#contact .location {
    margin: 30px 0 0 0;
}

#contact .location li .text {
    padding-left: 40px;
}

#contact .location li {
    margin-bottom: 15px;
    font-size: 16px;
}

#contact .location li:last-child {
    margin-bottom: 0;
}

#contact .location li i {
    font-size: 20px;
    color: #000000;
    float: left;
}
.contact_phone {
    background-color: #2E3918;
    color: #fff;
    padding: 3.125rem 0;
    margin-top: 30px;
    text-align: center;
}
.contact_phone .title {
    margin: 10px auto;
    font-size: 16px;
}
.contact_phone .number {
    color: #A3E363;
    font-size: 18px;
}
.contact_phone select {
    background-color: transparent;
    font-size: .875em;
    padding-left: .85714em;
    height: 44px;
    border-radius: 0;
    width: 280px;
    color: #fff;
    margin: 10px auto;
}
.contact_phone .form-select {
    display: inline-block;
    background-color: #2E3918;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.contact_phone .form-select option {
    height: 44px;
}
    /* TABS */
#account_tabs .nav-item {
    display: inline-block;
}

.hide_tabs {
    display: block !important;
}

.show_select_tabs {
    display: none !important;
}

.hastab h2 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}

.hastab h3 {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
}

.customtabs_wrapper {
    margin: 0 0 20px 0;
}

.customtabs_wrapper .tab-pane {
    border: 1px solid #000000;
    border-top: none;
    padding: 15px;
}

.customtabs_wrapper .nav-tabs {
    background-color: #000000;
    border: 1px solid #000000;
}

.customtabs_wrapper .nav-tabs .nav-item.show .nav-link,
.customtabs_wrapper .nav-tabs .nav-link.active {
    background-color: #fff;
    border: 1px solid #fff;
    color: #000000;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #000000;
    color: #fff;
    background-color: #000000;
}

.customtabs_wrapper .nav-tabs .nav-link {
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.facebook_login_wrapper {
    padding-top: 30px;
}

.facebook_login_button {
    margin: 10px 0 15px 0;
}

/*.facebook_login_button a {
	display:inline-block;
	text-indent: -9999px;
	width: 177px;
	height: 30px;
	background: url(images/facebook-button.png) no-repeat;
}*/
#invoice_details .form-group {
    margin-bottom: 0;
}

#invoice_details h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

#invoice_details .afm {
    padding: 0 7.5px 0 0;
}

#invoice_details .doy {

    padding: 0 0 0 7.5px;
}

#login_form, #register_form {
    margin: 0 0 10px 0;
}

h1.icon {
    font-size: 32px;
    font-weight: 700;
    display: table;
    text-align: center;
    margin: 0 auto 10px auto;
}

h1.icon i {
    color: #000066;
}

h1.icon span {
    padding-left: 10px;
    display: table-cell;
    vertical-align: middle;
}


/* PRODUCT */

.product_details {
    padding: 0 5%;
    margin-top: 34px;
}
.product_view {
    position: relative;
}
#product-extras-tabs {
    padding: 0 20px;
}
#product_page .row {
    margin-right: 0;
}
#product_images figure {
    width: 100%;
    border-bottom: 2px solid #fff;
    background-color: #f0f0f0;
    position: relative;
    aspect-ratio: 1/1;
}
#product_images figure img {
    width: 100%;
    /*
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    */
}
#product_images figure img:not(.cropped) {
    transform: scale(.7);
}
.product_view .main_photo {
    width: 100%;
    /*	border: 1px solid #eee; */
    text-align: center;
    padding: 40px;
    position: relative;
}
.main_photo {
    position: relative;
}
.product_view .owl-carousel {
    z-index: 0;
}

.product_view .main_photo .owl-carousel .owl-item img {
    width: auto;
    margin: 0 auto;
}

.product_view .main_photo .img-responsive {
    display: inline-block;
}

.product_view .main_photo.extras {
    display: block;
    width: 100%;
}

.product_view .main_photo.extras figure {
    margin: 0;
}

.product_view .loading_images {
    z-index: 1;
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 55px);
    display: none;
    background-color: rgba(255, 255, 255, 0.9);
    background-image: url(images/loader.gif);
    background-position: center center;
    background-repeat: no-repeat;
}

.product_view .extra_photos {
    display: block;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .product_view .extra_photos {
        display: none;
    }
}

.product_view .extra_photos a img {
    border: 1px solid #eee;
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
}

.product_view .extra_photos a:hover img {
    border: 1px solid #000000;
}

.product_view .extra_photos a.active img {
    border: 1px solid #000000;
}

.product_view .main_photo .owl-nav {
    position: absolute;
    top: calc(50% - 28px);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    width: 100%;
}

.product_view .main_photo .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    background-color: transparent;
    outline: none;
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    color: #333e48;
    opacity: 0;
}

.product_view .main_photo .owl-nav .owl-prev.disabled {
    display: none;
}

.product_view .main_photo:hover .owl-nav .owl-prev {
    opacity: 1;
}

.product_view .main_photo .owl-nav .owl-prev:hover {
    color: #000000;
}

.product_view .main_photo .owl-nav .owl-next {
    background-color: transparent;
    position: absolute;
    right: 0;
    outline: none;
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    color: #333e48;
    opacity: 0;
}

.product_view .main_photo:hover .owl-nav .owl-next {
    opacity: 1;
}

.product_view .main_photo .owl-nav .owl-next:hover {
    color: #000000;
}

.ds_wrapper {
    transition: all .5s ease;
    right: 0;
    top: 0;
    position: fixed;
    z-index: 5435466;
    width: 36.25rem;
    transform: translate(100%);
    background-color: #fff;
    padding: 20px 30px;
}

.ds_wrapper.active {
    transform: translate(0);
}
@media only screen and (max-width: 991px) {
    .ds_wrapper {
        width: 100%;
    }
}
.ds_body {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #7d7d7d #fff;
    width: 100%;
}

.ds_body h2 {
    margin-bottom: 20px;
}

.ds_header {
    font-size: 14px;
}

.ds_header .close {
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, .4);
    opacity: 0;
    transition: opacity .2s ease;
    visibility: hidden;
    z-index: 1;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

.extra_photos .photo img {
    border: 1px solid #dee2e6;
}

.short-title h3 {
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin: 30px auto 0;
    border-bottom: none;
}

#phone_order {
    display: inline-block;
}

#phone_order .phone_number {
    display: none;
    font-size: 16px;
    font-weight: 600;
}

#phone_order .phone_number a:link,
#phone_order .phone_number a:active,
#phone_order .phone_number a:visited {
    color: #000000;
}

#phone_order:hover a:link,
#phone_order:hover a:active,
#phone_order:hover a:visited,
#phone_order .phone_number a:hover {
    color: #fff;
}

#phone_order .reveal_phone {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
}

.wishlist_social {
    margin-top: 30px;
}

.wish img {
    height: 40px;
}

.wishlist_item {
    position: relative;
}

.wishlist_item .remove_from_list {
    position: absolute;
    top: 0;
    right: 0;
}

.slick-vertical > button.slick-prev {
    border-right: 1px solid #fff;
    position: absolute;
    bottom: -20px;
    left: 0;
}

.slick-vertical > button.slick-next {
    position: absolute;
    bottom: -20px;
    right: 0;
}

.slick-vertical > button:hover {
    background-color: #212121;
    color: #fff;
}

.slick-vertical > button {
    border: none;
    font-size: 0;
    width: 50%;
    padding: 0;
    line-height: 0;
    background-color: #231F20;
    color: #fff;
    outline: none;
    z-index: 1;
}

.slick-vertical > button.slick-prev:before {
    content: "\f106";
    bottom: 1px;
}

.slick-vertical > button:before {
    line-height: 26px;
    font-size: 20px;
    position: relative;
    font-family: 'Font Awesome 5 Pro', sans-serif;
}

.slick-vertical > button.slick-next:before {
    content: "\f107";
    top: 1px;
}

.slick-vertical > button:before {
    line-height: 26px;
    font-size: 20px;
    position: relative;
    font-family: 'Font Awesome 5 Pro', sans-serif;;
}

.product_view .description {
    margin: 30px auto 10px;
    font-size: 15px;
    color: #363636;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 30px;
}

.product_view .description .specs p {
    display: none;
}

.product_view .sm_title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}

.product_view .sm_title > span {
    position: relative;
    display: inline-block;
}

.product_view .sm_title > span::after {
    content: '';
    display: block;
    width: inherit;
    margin-top: 3px;
    height: 2px;
    background-color: #000000;
}

.product_view .description h2 {
    font-size: 20px;
    font-weight: 400;
    color: #363636;
    margin-bottom: 10px;
}

.product_view .description p {
    margin: 0 0 20px;
    text-align: justify;
}

.product_view .description p strong:first-child {
    font-size: 17px;
    line-height: 17px;
}

.product_view .description ul li {
    display: block;
    padding: 5px 10px;
    background-color: #fff;
}

.product_view .description ul li:nth-child(odd) {
    background-color: #F2F2F2;
}

.product_view .delivery_returns {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9e9e9;
}

.product_view .delivery_returns .more {
    display: block;
    margin: 10px auto;
    text-align: center;
}

.product_view .delivery_returns .more a {
    color: #212121;
}

.product_view .delivery_returns h2 {
    font-size: 20px;
    font-weight: 300;
    color: #363636;
    margin: 10px auto;
    text-align: center;
}

.product_view .delivery_returns p {
    text-align: justify;
}
.product_inner {
    padding: 0 20px;
}
.product_inner h1 {
    font-size: 36px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.product_inner h2 {
    font-size: 20px;
    font-weight: 400;
    color: #363636;
    margin: 0 auto;
}

.product_inner .manufacturer {
    font-size: 20px;
    font-weight: 400;
    color: #363636;
    margin: 0 auto 5px;
    display: inline-block;
    float: right;
}

.product_inner .code {
    color: #565656;
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    margin: 5px auto;
}

.product_inner .color_name,
.color_name {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.small-thumbs,
.product_inner .small-thumbs {
    margin-left: 0;
    margin-bottom: 30px;
}

.small-thumbs li,
.product_inner .small-thumbs li {
    list-style-type: none;
    padding-left: 0;
    margin: 2px;
    border: 2px solid #f8f8f8;
}

.small-thumbs li.active,
.small-thumbs li:hover {
    border: 2px solid var(--global-color);
}

.small-thumbs li:before,
.product_inner .small-thumbs li:before {
    display: none;
}

.small-thumbs li figure {
    margin: 2px;
    width: 4.6875rem;
    height: 4.6875rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.small-thumbs li img {
    width: 58px;
    height: 58px;
}

.ds_body .small-thumbs li {
    margin-right: 4px;
    margin-bottom: 4px;
}

.ds_body .small-thumbs li figure {
    width: 120px;
    height: 120px;
    margin: 6px;
}

.small-thumbs li.more_thumbs {
    border: 2px solid transparent;
}

.small-thumbs li.more_thumbs span {
    background-color: #F0F0F0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 4.6875rem;
    height: 4.6875rem;
    border: 1px solid #d7d7d7;
    font-size: 16px;
}

.small-thumbs li.more_thumbs:hover {
    border: 2px solid transparent;
    cursor: pointer;
}

.product_inner ul.visual_swatch {
    margin: 10px auto 20px auto;
    display: block;
}

.product_inner ul.visual_swatch li span {
    width: 25px;
    height: 25px;
    /*
	border-radius:50%;
	-moz-border-radius:50%;
	-webkit-border-radius:50%;
*/
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    border: 1px solid rgba(0, 0, 0, .1);
}

.product_inner ul.visual_swatch li.active span:after {
    font-family: "Font Awesome 5 Pro", sans-serif;;
    content: "\f00c";
    color: #fff;
    position: relative;
    top: 0;
    left: 4.5px
}

.product_inner ul.visual_swatch li.active span.white:after {
    color: #555;
    left: 5px;
}

.product_inner ul.visual_swatch li.inactive span {
    opacity: 0.1;
    cursor: default;
}

.product_inner ul.text_swatch {
    margin: 10px 0 20px 0;
    display: block;
}

.product_inner ul.text_swatch li {
    padding-left: 0;
}

.product_inner ul.text_swatch li::before {
    display: none;
}

.product_inner ul.text_swatch li span {
    border: 1px solid #e7e7e7;
    display: inline-block;
    float: left;
    color: #555;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-style: normal;
    list-style: none;
    padding: 0;
    margin: 0 10px 10px 0;
    position: relative;
    width: 60px;
    height: 48px;
    line-height: 48px;
}

.product_inner ul.text_swatch li span:hover, .product_inner ul.text_swatch li.active span {
    border: 1px solid #00315f;
}

.product_inner ul.text_swatch li.inactive span {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
    color: #aeaeae;
    cursor: default;
}

.product_inner ul.text_swatch li.inactive span:hover {
    border: 1px solid #e7e7e7;
}

.product_inner ul.text_swatch li.inactive.active span {
    background-color: #f8f8f8;
    border-color: #212121;
    color: #aeaeae;
    cursor: default;
}

.product_inner .specs h3 {
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    margin: 10px auto;
}

.web_price_wrapper {
    display: block;
}

.price_label,
.product_inner h2.price_label {
    display: inline-block;
    margin: 5px auto;
    font-weight: 400;
    font-size: 24px;
    float: left;
    padding: 2px 10px 5px 0;
}

.web_price {
    display: inline-block;
    background-color: #FF4506;
    color: #fff;
    margin: 10px 0;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    line-height: 17px;
    float: left;
    padding: 5px 7px 5px 5px;
}

ul.colors {
    margin: 20px auto;
}

ul.colors li {
    list-style: none;
    padding: 0;
    display: inline-block;
    margin-right: 5px;
}

ul.colors li::before {
    display: none;
    margin: 0;
    padding: 0;
}

ul.colors li span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-size: cover;
    position: relative;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

ul.colors li span.active::before,
ul.colors li span:hover::before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    left: 1px;
    top: 1px;
    border: 2px solid #fff;
    cursor: pointer;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

ul.colors li span.whitecolor {
    background-color: #fff;
    width: 24px;
    height: 24px;
    border: 1px solid #000000;
}

ul.colors li span.whitecolor.active::before,
ul.colors li span.whitecolor:hover::before {
    border: 2px solid #000000;
    width: 18px;
    height: 18px;
    position: absolute;
    left: 2px;
    top: 2px;
}

.add_cart_wrapper .price {
    font-weight: 300;
}

.add_cart_wrapper .old_price {
    color: #acacac;
    text-decoration: line-through;
    margin-right: 5px;
}

.product_inner .price_wrapper span {
    display: inline-block;
    margin: 10px 0;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
}

.product_inner .old_price {
    margin: 30px auto 0 auto;
    font-size: 28px;
    font-weight: 400;
    color: #acacac;
    text-decoration: line-through;
}

.product_inner .old_price sup {
    font-size: 18px;
}

.product_inner .price {
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    margin: 0 auto 20px auto;
}

.product_inner .price sup {
    font-size: 27px;
}

.product_img-box {
    background-color: #fff;
}

.product_img-box figure {
    margin: 0;
}

.product_img-box .share_icons {
    width: 80%;
    margin: 10px auto;
    color: #a1a1a1;
    float: right;
    text-align: center;
}

.product_img-box .share_icons.extras {
    width: 100%;
}

.product_img-box .share_icons .wrapper {
    width: auto;
    max-width: 240px;
    margin: 0 auto;
}

.product_img-box .share_icons .wrapper label {
    font-weight: 400;
    float: left;
    height: 30px;
    padding-top: 7px;
    box-sizing: border-box;
}

.quantity_label,
.product_inner h2.quantity_label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #272C32;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.quantity_wrapper {
    display: inline-block;
    width: 130px;
    float: left;
}

.quantity_wrapper span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #959595;
    text-align: center;
    margin-bottom: 3px;
}

.quantity_wrapper .input-group .add_cart_quantity.form-control {
    font-size: 24px;
    font-weight: 600;
    color: #636363;
    background: #fff;
    border: 1px solid #000000;
    height: 42px;
    padding: 5px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

/*#product_add_to_cart {
    height: 42px;
}*/

.cart_button_wrapper {
    display: block;
    margin-left: 0;
}

.cart_button_wrapper span {
    display: block;
    text-align: center;
    margin-bottom: 3px;
}

.btn.cart_update_inplace {
    display: block;
}

.cart_button_wrapper .btn-light-blue {
    color: #fff;
    height: 40px;
    line-height: 26px;
    border-radius: 0;
    display: block;
}

.cart_button_wrapper .btn-light-blue span {
    color: #fff;
}

.cart_button_wrapper .btn-light-blue span::before {
    content: '';
    background-image: url(images/cart_white.svg);
    background-repeat: no-repeat;
    background-position: 0;
    background-size: 22px;
    padding-left: 34px;
    margin-bottom: 0;
}

.cart_bottom, .check_shipping {
    margin-bottom: 10px;
}

.cart_check_shipping {
    display: none;
}

.cart_check_shipping.opened {
    display: block;
    padding: 10px 0;
    background: #F9F9F9;
    margin-bottom: 10px;
    border: 1px solid rgba(99, 99, 99, 0.1);
}

.checkout_loading {
    z-index: 10;
    position: fixed;
    padding: 8px 10px;
    bottom: 10px;
    right: 10px;
    border: 1px solid #ddd;
    /*background: #FFF;*/
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.checkout_column .table {
    background: #F9F9F9;
    border: 1px solid rgba(99, 99, 99, 0.1);
}

.checkout_column .form-control {
    height: 34px;
    line-height: 34px;
    margin: 0 auto;
    padding: 3px 6px 5px 6px;
}
.readonly {
    background-color: #e9ecef;;
    opacity: 1;
    pointer-events: none;
}
.checkout_column .input-group-text {
    min-width: 65px;
    text-align: center;
    height: 34px;
    line-height: 34px;
}

.checkout_column textarea.form-control {
    min-height: 80px;
    height: auto;
    line-height: 1.2em;
}

.table-responsive > .table-bordered {
    border: 1px solid #dee2e6;
}

.table.table-bordered > tbody > tr > td:first-child {
    font-weight: 600;
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    border-top: none;
}

.table > thead > tr > th {
    font-weight: 600;
}

.checkout_column .table > tbody > tr > td,
.checkout_column .table > tbody > tr > th,
.checkout_column .table > tfoot > tr > td,
.checkout_column .table > tfoot > tr > th,
.checkout_column .table > thead > tr > td,
.checkout_column .table > thead > tr > th {
    border-top: none;
    vertical-align: middle;
    padding: 6px;
}

.checkout_column .table > tbody > tr > td:first-child {
    font-weight: 600;
}

.checkout_buttons.right {
    text-align: right;
}
@media only screen and (max-width: 991px) {
    .checkout_column .table > tbody > tr > td:first-child {
        width: 25%;
    }
}
@media only screen and (max-width: 576px) {
    .checkout_buttons, .checkout_buttons.right {
        text-align: center;
        margin-bottom: 10px;
    }

    .checkout_buttons.right .btn {
        margin-bottom: 10px;
    }
}

.coupon_form, .comments_form {
    background: #F9F9F9;
    border: 1px solid rgba(99, 99, 99, 0.1);
    padding: 8px 15px;
}

.comments_form {
    margin-bottom: 20px;
}

.coupon_form .checkout_coupon_field {
    margin-bottom: 10px;
}

#comments_box {
    margin-top: 10px;
}

.choose_address_entry {
    margin: 0;
    padding: 10px 10px;
    background: #fff;
    border-bottom: 1px solid rgba(99, 99, 99, 0.1);
    cursor: pointer;
    font-size: 11px;
}

.choose_address_entry:hover {
    background: #f3f3f3;
}
.choose_address_entry.active {
    background-color: #f2ffe3;
}

.my_addresses .title_wrapper {
    font-size: 11px;
}

.my_addresses .title_wrapper .close {
    font-size: 11px;
}

.data .choose_address_entry p {
    margin-bottom: 2px;
}

.copy_from_wrapper {
    margin: 0 0 10px 0;
    border-bottom: 1px solid rgba(99, 99, 99, 0.1);
    padding: 0 0 8px 0;
}

.shipping_details {
    margin-bottom: 20px;
}

.shipping_details label {
    margin-bottom: 5px;
}

.checkout_column h3 {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    height: 30px;
    line-height: normal;
}
.checkout_column h3::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--global-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

.order_footer {
    padding: 10px 0;
    border-top: 1px solid rgba(99, 99, 99, 0.2);
    font-size: 12px;
}

.load_address_wrapper .my_addresses {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    display: none;
    width: 200px;
    height: 200px;
    background: #fff;
    border: 1px solid #ddd;
    -moz-box-shadow: 0 0 5px #ccc;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;
}

.load_address_wrapper .my_addresses .data {
    overflow: auto;
}

.load_address_wrapper .my_addresses .msg {
    padding: 10px;
}

.load_address_wrapper .my_addresses .title {
    padding: 10px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}
.load_address_wrapper .my_addresses .close {
    position: absolute;
    right: 6px;
    top: 8px;
}

.low_vat_tr .checkbox {
    margin: 0;
}

.spinner {
    width: 90px;
}

.list .spinner {
    margin: 0 auto 5px auto;
}

.spinner input {
    text-align: center;
}

.input-group-btn-vertical {
    position: relative;
    white-space: nowrap;
    width: 1%;
    vertical-align: middle;
    display: table-cell;
}

.input-group-btn-vertical > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
    padding: 10px 15px;
    margin-left: -1px;
    position: relative;
    border-radius: 0;
    background: #000000;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

.input-group-btn-vertical > .btn:hover {
    background: #80c7bc;
}

.input-group-btn-vertical > .btn:first-child {
    border-top-right-radius: 4px;
}

.input-group-btn-vertical > .btn:last-child {
    margin-top: -2px;
    border-bottom-right-radius: 4px;
}

.input-group-btn-vertical i {
    position: absolute;
    top: 3px;
    left: 10px;
}

label.error {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    display: block;
    text-align: left;
    margin-top: 4px;
    padding-bottom: 0;
}

.checkout_wrapper {
    margin: 0 0 10px 0;
}

.checkout_wrapper label {
    cursor: pointer;
}

.checkout_wrapper label.error {
    display: block;
    padding: 2px 0 0 0;
}

.checkout_wrapper .input_field {
    width: 200px;
}

.checkout_wrapper .select_box {
    width: 208px;
}

.checkout_wrapper .input_field.checkout_coupon_field {
    width: 140px;
    margin-right: 5px;
}

.checkout_wrapper .input_field.checkout_comments_field {
    overflow: auto;
    width: 270px;
    height: 100px;
    resize: none;
}

.coupon_field_wrapper {
    margin: 0 0 10px 0;
}

#checkout_coupon {
}

.coupon_valid {
    margin: 0 0 10px 0;
    padding: 2px 0 2px 22px;
    color: #111;
    position: relative;
}

.coupon_valid:before {
    content: '\f00c';
    display: inline-block;
    position: absolute;
    left: 5px;
    top: 3px;
    font-family: 'Font Awesome 5 Pro', sans-serif;;
    font-weight: 700;
    color: #28a745;
}

.coupon_invalid {
    margin: 0 0 10px 0;
    padding: 2px 0 2px 22px;
    color: #111;
    position: relative;
}

.coupon_invalid:before {
    content: '\f00d';
    display: inline-block;
    position: absolute;
    left: 7px;
    top: 3px;
    font-family: 'Font Awesome 5 Pro', sans-serif;;
    font-weight: 700;
    color: #dc3545;
}

.coupon_description {
    margin: 0 0 10px 0;
    line-height: 1.2em;
    color: #777;
}

.coupon_remove_wrapper {
    margin: -5px 0 5px 0;
    text-align: right;
}

.coupon_remove_wrapper a.coupon_remove {
    font-size: 11px;
    color: #c00;
}

.checkout_left {
    width: 54%;
    float: left;
}

.checkout_right {
    width: 44%;
    float: right;
}

.checkout_box {
    margin: 0 0 15px 0;
    background: #f3f3f3;
    padding: 10px 15px 15px 15px;
}

.checkout_box .abc-checkbox label {
    vertical-align: baseline;
}

.heading_checkout {
    margin: 0 0 10px 0;
    font-size: 15px;
    padding: 0 0 8px 0;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
}

.choose_address_entry {
    margin: 0;
    padding: 10px 10px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    font-size: 11px;
}

.choose_address_entry p {
    margin: 0 0 3px 0;
    line-height: 1.2em;
}

.copy_from_wrapper {
    margin: 0 0 10px 0;
    border-bottom: 1px solid #ddd;
    padding: 0 0 8px 0;
}

.copy_from_wrapper a {
    display: block;
    /*background: url(images/edit-copy.png) no-repeat left center;*/
    height: 16px;
    line-height: 16px;
    padding: 0 0 0 22px;
}

.low_vat_tr td {
    padding-top: 10px;
    padding-bottom: 10px;
}

.checkout_radio_table {
}

.checkout_radio_table label span {
    color: #222;
    font-size: 11px;
}

.checkout_radio_table label em {
    display: block;
    padding: 3px 0 0 0;
    font-size: 11px;
    font-style: normal;
    color: #000000;
}

.checkout_not_logged_in_warning {
    margin: 0 0 15px 0;
}

.checkout_not_logged_in_warning p {
    padding: 0;
    margin: 0;
    line-height: 1em;
}

.checkout_not_logged_in_warning a {
    display: block;
    color: #444;
    font-size: 12px;
    padding: 10px;
    background: #fff6d0;
    border: 1px solid #ebe3bd;
}

.checkout_not_logged_in_warning a:hover {
    color: #000;
    background: #fff1b6;
    border: 1px solid #e8d161;
}

#related_products.products_block {
    margin: 20px auto 10px;
}

#related_products .item .categories {
    padding: 0 10px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: left;
}

#related_products .item .code {
    display: block;
    padding: 0 10px 5px;
    text-align: left;
    font-weight: 600;
    color: #7d7d7d;
    font-size: 14px;
}

#related_products .sm_title > span,
#related_products .sm_title > h2 {
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 400;
    position: relative;
    display: inline-block;
    border-bottom: none;
}

#related_products .sm_title > h2::after {
    content: '';
    display: block;
    width: inherit;
    margin-top: 3px;
    height: 2px;
    background-color: #000000;
}

.payment_wrapper {
    padding-top: 100px;
}

.payment_box {
    width: 500px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    margin: 0 auto;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 0 0 5px #ddd;
    -webkit-box-shadow: 0 0 5px #ddd;
    box-shadow: 0 0 5px #ddd;
}

.payment_logo {
    text-align: center;
}

.payment_title {
    text-align: center;
    padding-top: 10px;
    font-size: 16px;
    color: #222;
}

.payment_orderinfo {
    text-align: center;
    padding-top: 10px;
    font-size: 14px;
}

.payment_loading {
    text-align: center;
    padding-top: 30px;
}

.payment_form {
    text-align: center;
    padding-top: 20px;
}

.payment_select_cc_type {
    padding: 10px 0 20px 0;
    font-size: 14px;
}

.payment_select_cc_type label {
    color: #222;
}

.payment_select_cc_type select.select_box, .payment_select_cc_type select.select_box option {
    font-size: 14px;
}

/* CART */
#cart_table .form-group {
    display: block;
    background-color: #F8F8F8;
    padding: 8px;
    min-height: 72px;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
}

#cart_table .header {
    display: block;
    background-color: #F8F8F8;
    padding: 8px;
    min-height: 55px;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    font-weight: 600;
}

#cart_table .header span {
    display: block;
    font-size: 11px;
    font-weight: normal;
}

#cart_table .form-group:nth-child(even) {
    background-color: #fff;
}

#cart_table .form-group figure {
    display: inline-block;
    float: left;
    width: 50px;
    margin-right: 10px !important;
    height: 100%;
    position: relative;
}

#cart_table .form-group .data {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
    width: calc(100% - 60px);
}
#cart_table .form-group .data h4 {
    font-size: 16px;
}
#cart_table .form-group span {
    display: block;
    font-size: 12px;
}

#cart_table .form-group .product {
    position: relative;
    z-index: 1;
}

#cart_table .form-group .sku_code {
    color: #B2B2B3;
}

#cart_table .form-group .controls .align {
    float: right;
    text-align: right;
}

#cart_table .form-group .controls {
    padding-top: 5px;
    font-weight: 600;
    margin-top: -25px;
    position: relative;
    z-index: 0;
}

#cart_table .prices .column {
    width: 20%;
    float: left;
    text-align: center;
}

#cart_table .stock_level {
    display: inline-block;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    color: #5BAF4F;
    margin: 5px auto;
}

#cart_table .stock_level.stock_level_1, #cart_table .stock_level.stock_level_5 {
    color: #5BAF4F;
}

#cart_table .stock_level.stock_level_2 {
    color: #f7941d;
}

#cart_table .stock_level.stock_level_3 {
    color: #1078BD;
}

#cart_table .stock_level.stock_level_4, #cart_table .stock_level.stock_level_6 {
    color: #ff0000;
}

#cart_table .stock_level.stock_level_8 {
    color: #F60;
}

@media only screen and (max-width: 1200px) {
    #cart_table .form-group .controls {
        margin-top: 0;
    }
}

#cart_table .form-group .controls .form-control {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    padding: 0;
    height: 31px;
    line-height: 31px;
    float: left;
    border: 1px solid #1078bd;
}

#cart_table .form-group .controls .add_cart_quantity.form-control {
    font-size: 14px;
}

#cart_table .form-group .controls label {
    float: left;
    padding-top: 6px;
    margin-right: 10px;
}

#cart_table .form-group .controls .remove {
    float: right;
}

#cart_table .form-group .controls .input-group-btn, #cart_table .form-group .controls .input-group {
    float: left;
    width: auto;
    margin-right: 10px;
}

#cart_table .form-group .controls .input-group-btn .btn {
    padding: 2px 6px;
}

#cart_table .form-group .controls .input-group-btn:first-child {
    padding-right: 24px;
}

/* PRODCUT FILTERS */
a.filter_value_style.disabled:link,
a.filter_value_style.disabled:visited,
a.filter_value_style.disabled:active {
    color: #aaa;
}

/*/////////////*/

.cart_table {
    margin: 0 0 10px 0;
    border-top: 1px solid #ddd;
}

.cart_table th, .cart_table td {
    padding: 7px 6px;
    text-align: left;
}

.cart_table th {
    background: #f4f4f4;
    color: #333;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.cart_table th em {
    padding-top: 2px;
    display: block;
    font-style: normal;
    font-size: 11px;
    font-weight: normal;
}

.cart_table td {
    border-bottom: 1px solid #ddd;
}

.cart_table td h4 {
}

.cart_table tr:hover td {
    background: #f8f8f8;
}

.cart_table tr.affected_tr td {
}

.cart_table tr.affected_tr td input.quantity_field {
    border: 1px solid #f59700;
    background: #ffe1b1;
    color: #333
}

.cart_table .title {
    margin: 0;
    padding: 0;
}

.cart_table .title span {
    display: block;
    padding: 3px 0 0 0;
    font-weight: normal;
    font-size: 11px;
    color: #999
}

.cart_table .image {
    float: left;
    margin: 0 10px 0 0;
}

/*
a.cart_delete {
	display: block;
	width: 16px;
	height: 16px;
	background: url(images/delete_action.gif) no-repeat;
	text-indent: -9999px;
}
*/
.cart_total_table {
    margin: 0 0 10px 0;
}

.cart_total_table th, .cart_total_table td {
    padding: 6px 4px;
}

.cart_total_table th {
    text-align: right;
    font-weight: normal;
}

.cart_total_table td {
}

.cart_total_table .total {
    width: 90px;
    font-size: 20px;
    font-weight: 400;
    white-space: nowrap;
}

.cart_total_table .total_exvat {
    width: 90px;
    font-weight: 600;
    white-space: nowrap;
}

.cart_bottom {
    margin: 15px 0 5px 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.cart_bottom .buttons {
    float: right;
}

@media only screen and (max-width: 576px) {
    .cart_bottom .buttons {
        float: none;
        text-align: center;
    }
}

.cart_bottom .msg {
    float: left;
    font-size: 11px;
}

.cart_checkout {
    margin: 0 0 10px 0;
    padding-top: 20px;
}
@media only screen and (max-width: 991px) {
    .cart_checkout .text-start, .cart_checkout .text-end {
        text-align: center !important;
        margin-bottom: 20px !important;
    }
}
a.cart_check_shipping_opener {
    padding: 4px 0 0 22px;
    position: relative;
}

a.cart_check_shipping_opener:before {
    content: '\f153';
    display: inline-block;
    position: absolute;
    left: 0;
    font-family: 'Font Awesome 5 Pro', sans-serif;;
    font-weight: 700;
    color: #29292A;
}

.cart_check_shipping {
    margin: 0 0 15px 0;
    padding: 10px 15px;
    background: #f3f3f3;
    display: none;
}

.cart_check_shipping.opened {
    display: block;
}

.shipping_methods_output {
    padding-right: 20px
}

.shipping_methods_output p {
    padding: 1px 0 2px 0;
    margin: 0;
}

.shipping_methods_output strong {
    color: #000;
}

/* PAGINATION */
.pagination {
    background: #fff;
    padding: 10px;
    margin: 10px auto 0;
    width: 100%;
    display: block !important;
    color: #535353;
}

.paging_simple {
    float: left;
    margin-top: 3px;
}

.paging_jump {
    width: 25px;
    text-align: right;
    font-size: 13px;
    padding: 1px 2px;
    margin: 0;
    background: #F6F6F6;
    color: #000000;
    border: 1px solid rgba(99, 99, 99, 0.1);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.paging_jump:focus {
    border: 1px solid rgba(99, 99, 99, 0.1);
    outline: none
}

#paging_jump {
    width: 25px;
    text-align: right;
    font-size: 13px;
    padding: 1px 2px;
    margin: 0;
    background: #F6F6F6;
    color: #000000;
    border: 1px solid rgba(99, 99, 99, 0.1);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

#paging_jump:focus {
    border: 1px solid rgba(99, 99, 99, 0.1);
    outline: none
}

.paging_list {
    list-style: none;
    float: right;
}

.paging_list li {
    display: inline;
}

.paging_list li a, .paging_list li span {
    display: block;
    float: left;
    padding: 3px 6px;
    margin: 0 1px;
}

.paging_list li a.selected {
    background: #000000;
    color: #fff;
    font-weight: 700;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.paging_list li a.selected:hover {
    background: #212121;
}

/* PRODUCTS */
.main_title {
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    padding: 10px 0;
    color: #000000;
    border-bottom: 1px solid #000000;
    margin-bottom: 30px;
}

.main_content {
    margin-bottom: 50px;
}

.main_content .side_filter_controls {
    display: none;
}

.blog-content {
    margin: 40px auto;
}

.main_sidebar h2 {
    font-size: 20px;
    font-weight: 600;
    color: #464646;
}

#filter_sidebar {
    width: 350px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 1000000;
    padding: 30px;
    box-shadow: 0 0 150px #0000001a;
    display: none;
    transition: transform .25s cubic-bezier(.165, .84, .44, 1);
}

#filter_sidebar.open {
    display: block;
    animation-name: openside;
    animation-duration: .45s;
    transform: translateX(0);
}

#filter_sidebar.close {
    display: block;
    animation-name: closeside;
    animation-duration: .45s;
    transform: translateX(-350px);
}

@keyframes openside {
    0% {
        transform: translateX(-350px);
    }
    100% {
        transform: translateX(0)
    }
}

@keyframes closeside {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-350px)
    }
}

@keyframes openside_full {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes closeside_full {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }

}

@media only screen and (max-width: 567px) {
    #filter_sidebar.open {
        animation-name: openside_full;
        transform: translate(0);
    }

    #filter_sidebar.close {
        animation-name: closeside_full;
        transform: translateX(-100%);
    }

    #filter_sidebar {
        width: 100%;
        transform: translate(-100%);
    }
}

#filter_sidebar .close-filters {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity .2s ease;
}

#filter_sidebar .close-filters:hover {
    opacity: 1;
}

.backdrop::after {
    content: "";
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(230, 230, 230, .6);
    opacity: 0;
    z-index: 10000;
    width: 100%;
    height: 100vh;
    transition: opacity .2s ease;
}

.backdrop.open::after {
    opacity: 1;
    display: block;
}

.filters span {
    cursor: pointer;
}

.filters .form-select {
    font-size: 14px;
    font-weight: 300;
    border: none;
    border-radius: 0;
    max-width: 250px;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .filters .product-counter {
        order: 3;
    }
}

.main_sidebar .filter {
    margin: 10px auto 20px auto;
}

.main_sidebar .filter h3 {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 10px;
}

.main_sidebar .filter h3:hover {
    cursor: pointer;
}

.main_sidebar .filter h3 span {
    display: inline-block;
    float: right;
}

.main_sidebar .filter ul.categories li {
    position: relative;
    padding-left: 18px;
}

.main_sidebar .filter ul.categories li:before {
    content: '\f0c8';
    display: inline-block;
    position: absolute;
    left: 0;
    font-family: 'Font Awesome 5 Pro', sans-serif;;
    font-weight: 700;
    color: #000000;
}

.main_sidebar .filter ul.categories li a {
    color: #000000;
}

.main_sidebar .filter ul.categories li.active:before,
.main_sidebar .filter ul.categories li a:hover {
    color: #212121;
}

.main_sidebar .filter ul.categories li.active a {
    color: #212121;
}

.main_sidebar .filter ul.three_column li {
    display: inline-block;
    width: 33.3333%;
    float: left;
}

.main_sidebar .filter ul.double_column li {
    display: inline-block;
    width: 50%;
    float: left;
}

.main_sidebar .filter ul.double_column::after {
    content: '';
    display: block;
    clear: both;
}

.main_sidebar .filter ul.flex {
    margin: 0 auto;
    width: 302px;
}

.main_sidebar .filter ul.flex li {
    display: inline-flex;
    margin: 0 5px 15px;
}

.main_sidebar .filter ul.flex input[type="checkbox"]:checked + label::after {
    font-size: 14px;
    font-family: "Font Awesome 5 pro", sans-serif;;
    content: "\f00c";
    color: #fff;
    position: relative;
    left: 0;
    top: 6px;
    box-sizing: border-box;
    padding-top: 0;
}

.main_sidebar .tooltip.top {
    margin-left: 3px;
}

/* PRICE RANGE SLIDER */
.main_sidebar .slider.slider-horizontal {
    width: 100%;
}

.main_sidebar .slider.slider-horizontal .slider-track-low,
.main_sidebar .slider.slider-horizontal .slider-track-high {
    background-color: #e1e1e1;
    background-image: none;
    box-shadow: none;
    border-radius: 0;
}

.main_sidebar .slider-selection {
    background-color: #F2F2F2;
    background-image: none;
    box-shadow: none;
    border-radius: 0;
}

.main_sidebar .slider-handle {
    background-color: #000000;
    background-image: none;
    box-shadow: none;
}

.main_sidebar .price_range_values {
    margin: 10px -15px;
}

.main_sidebar .price_range_values .form-control {
    font-size: 16px;
}

/* CIRCLE COLOR CHECKBOX */
.abc-checkbox.abc-checkbox-circle label::before {
    border-radius: 0;
}

.main_sidebar .abc-checkbox.abc-checkbox-circle label::before {
    width: 30px;
    height: 30px;
}

.main_sidebar .abc-checkbox input[type="checkbox"],
.main_sidebar .abc-checkbox input[type="radio"] {
    opacity: 0;
    z-index: 1;
    outline: none;
}

.main_sidebar .abc-checkbox input[type="checkbox"]:focus + label::before {
    outline: none;
}

.main_sidebar .abc-checkbox label {
    display: inline-block;
}

/*
.main_sidebar .abc-checkbox input[type="checkbox"]:checked + label::after {
	content:'';
}
*/


/* STOCK LEVELS */
.stock_level {
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
}

.stock_level_1, .stock_level_5 {
    color: #fff;
}

.stock_level_2 {
    color: #f7941d;
}

.stock_level_3 {
    color: #1078BD;
}

.stock_level_4 {
    color: #ff0000;
}

.stock_level {
    display: inline-block;
    border-radius: 4px;
    background-color: #5BAF4F;
    padding: 8px 15px;
    color: #fff;
    margin: 10px auto 15px;
}

.stock_level.stock_level_1, .stock_level.stock_level_5 {
    background-color: #5BAF4F;
    color: #fff;
}

.stock_level.stock_level_2 {
    background-color: #f7941d;
    color: #fff;
}

.stock_level.stock_level_3, .stock_level.stock_level_8 {
    background-color: #1078BD;
    color: #fff;
}

.stock_level.stock_level_4, .stock_level.stock_level_6 {
    background-color: #ff0000;
    color: #fff;
}

.stock_level.stock_level_8 {
    background-color: #F60;
    color: #fff;
}

.cart_button_wrapper .stock_level {
    height: 42px;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.8;
}

.mark {
    position: absolute;
    top: 22px;
    left: -30px;
    color: #fff;
    width: 135px;
    text-align: center;
    min-height: 30px;
    padding: 8px 25px;
    line-height: 13px;
    z-index: 1;
    font-weight: 400;
    font-size: 12px;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.mark.new {
    background-color: #29adde;
}

.mark.stock_level_1, .mark.stock_level_5 {
    background-color: #00D700;
    color: #fff;
}

.mark.stock_level_2 {
    top: 18px;
    left: -40px;
    width: 160px;
    background-color: #f7941d;
    color: #fff;
}

.mark.stock_level_3 {
    top: 18px;
    left: -40px;
    width: 160px;
    background-color: #1078BD;
    color: #fff;
}

.mark.stock_level_8 {
    top: 18px;
    left: -40px;
    width: 160px;
    background-color: #F60;
    color: #fff;
}

.mark.stock_level_4, .mark.stock_level_6 {
    top: 18px;
    left: -40px;
    width: 160px;
    background-color: #FF0000;
    color: #fff;
}

/* BUTTONS */
.btn {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}

.btn-lcp-primary {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 20px 24px;
    border: 1px solid #000;
    background-color: #fff;
    box-shadow: 0 4px 0 0 var(--global-color);
    transition: all .2s ease-in-out;
}

.btn-lcp-primary:hover {
    background-color: #000;
    color: #fff;
}

.btn-lcp-primary:disabled {
    background-color: var(--light-grey-1);
    box-shadow: 0 4px 0 0 var(--light-grey-3);
    border: 1px solid var(--light-grey-1);
    color: var(--dark-grey-2);
}

.btn-lcp-secondary {
    font-size: 12px;
    font-weight: 600;
    padding-bottom: 7px;
    border-bottom: 2px solid var(--global-color);
}

.btn-lcp-secondary:hover {
    border-bottom: 2px solid #000;
}

.btn-lcp-secondary:disabled {
    color: var(--dark-grey-3);
    border-bottom: none;
}
.btn-lcp-dark {
    background-color: #000;
    border-color: #000;
    color: #fff !important;
    transition: all .2s ease-in-out;
    font-weight: 700;
    font-size: 12px;
    line-height: 12.4px;
    text-transform: uppercase;
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
    margin-top: 1rem;
}
.btn-lcp-dark:hover {
    background-color: #fff;
    border-color: #000;
    color: #000 !important;
}
.btn-lcp-dark.small {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    margin-top: 0;
}
.btn-drop {
    background-color: transparent !important;
    color: #fff !important;
    border: none;
    outline: none;
}

.btn-drop:hover {
    background-color: transparent !important;
    color: rgba(255, 255, 255, .8) !important;
}
header.light_theme .btn-drop,
header.light_theme .btn-drop:hover,
header:hover .btn-drop,
header:hover .btn-drop:hover {
    color: #000 !important;
}
.btn-light-blue {
    background-color: #000000;
    color: #fff;
    border-color: #000000;
}

.btn-light-blue:hover {
    background-color: #2b2b2b !important;
    color: #fff !important;
    border-color: #2b2b2b !important;
}
.select_language {
    display: inline-block;
    max-width: 300px;
    border: 1px solid #000;
    background-color: transparent;
    color:#000;
    height: 3.5625rem;
    border-radius: 0;
    margin-bottom: 30px;
}


.btn-subscribe {
    background-color: transparent !important;
    color: #fff !important;
    transition: background .25s, color .25s ease-in;
    border: none;
}

.btn-subscribe:hover {
    background-color: transparent !important;
    color: #f9f9f9 !important;
    border: none;
}

.btn-dark {
    background-color: #29292A;
    color: #fff;
    border-color: #29292A;
}

.btn-dark:hover {
    background-color: #111111;
    color: #fff;
    border-color: #111111;
}

.btn-outline-light-dark {
    font-size: 14px;
    background-color: transparent !important;
    border: 1px solid #cacaca;
    transition: border-color .25s ease-in, background .25s ease-in, color .25s ease-in;
    color: #000;
}

.btn-outline-light-dark:hover {
    background-color: #000000 !important;
    border: 1px solid #000000 !important;
    transition: border-color .25s ease-in, background .25s ease-in, color .25s ease-in;
    color: #FFFFFF !important;
}

.btn-light-dark {
    background-color: #fff;
    color: #000000;
    border-color: #fff;
    font-weight: 400;
}

.btn-light-dark:hover {
    background-color: #000000 !important;
    color: #fff !important;
    border-color: #000000 !important;
}

.btn-light {
    background: #000000;
    color: #fff;
    text-align: center;
    border-radius: 0;
}

.btn-light:hover, .btn-light:active {
    background: #80c7bc;
    border: 1px solid #80c7bc;
    box-shadow: none;
    color: #000000;
}

.btn-light-outline {
    background: #fff;
    color: #000000;
    text-align: center;
    border-radius: 0;
    border: 1px solid #000000;
    font-size: 14px;
}

.btn-light-outline:hover, .btn-light-outline:active {
    background: #000000;
    color: #fff;
    text-align: center;
    border-radius: 0;
    border: 1px solid #000000;
}

.btn-dark-outline {
    background-color: #000000;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #000000;
    font-size: 14px;
}

.btn-dark-outline:hover, .btn-dark-outline:active {
    background-color: transparent !important;
    color: #000000;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #cacaca !important;
}

.btn-giftcard {
    width: 100%;
    background-color: #fff;
    color: #000000;
    border-color: #000000;
    border-radius: 0;
    margin-bottom: 15px;
    transition: all .2s ease-in-out;
}

.btn-giftcard:hover,
.btn-giftcard.active:hover {
    background-color: #80c6bb;
    border-color: #000000;
    color: #fff;
}

.btn-giftcard.active {
    background-color: #000000;
    color: #fff;
    border-color: #000000;
}

.btn-select-gift.small_width {
    width: auto;
    padding: 15px 30px;
}

.btn-select-gift {
    width: 100%;
    background-color: #FFF;
    color: #000000;
    border-color: #000000;
    border-radius: 0;
    margin-bottom: 15px;
    transition: all .2s ease-in-out;
}

.btn-select-gift.active {
    background-color: #80c6bb;
    color: #000000;
    border-color: #80c6bb;
}

.btn-select-gift:hover {
    background-color: #000000;
    border-color: #000000;
    color: #fff;
}

.card_hover {
    display: inline-block;
    padding: 5px 10px;
    background-color: #000000;
    color: #FFF;
}

#ponwgc {
    margin-bottom: 60px;
}

#ponwgc .item {
    position: relative;
}

#ponwgc .item .data {
    position: absolute;
    z-index: 1;
    width: calc(100% - 40px);
    height: calc(100% - 76px);
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 0 20px;
}

#ponwgc .item .data h2 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

#ponwgc .item .data span {
    display: block;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
}

#ponwgc .item .data span.phone {
    font-size: 24px;
    font-weight: 600;
}

#ponwgc .item .comment {
    width: calc(100% - 60px);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 6px;
    text-align: center;
}

#ponwgc .item figure {
    margin: 0;
}

#instagram_feed {
    width: 100%;
    position: relative;
    margin: 20px auto 0;
}

#instagram_feed .row {
    margin: 0;
}

#instagram_feed .item {
    width: 12.5%;
    overflow: hidden;
}

#instagram_feed .item figure {
    margin: 0;
}

#instagram_feed .title {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    text-align: center;
}

#instagram_feed .title h4 {
    font-weight: 300;
    font-size: 55px;
    line-height: 78px;
}

#instagram_feed .gallery {
    margin: 0;
    padding: 0;
}

#instagram_feed .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.58;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, #000000 80%);
    z-index: 1;
    box-shadow: none !important;
}

#instagram_feed .title .follow {
    display: inline-block;
    width: 150px;
    font-size: 13px;
    font-weight: 600;
    line-height: 44px;
    margin: 20px auto 0 auto;
    color: #fff;
    background-color: transparent;
    background-image: linear-gradient(rgba(24, 53, 94, .9), rgba(24, 53, 94, .9));
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 100% 0;
    transition: background-size .2s, color .2s;
    border: 1px solid #fff;
}

#instagram_feed .title .follow:hover {
    cursor: pointer;
    color: #fff;
    background-size: 100% 100%;
}


.address_entry .abc-checkbox,
.address_form_fields .abc-checkbox {
    padding-left: 13px;
}
    /* CHECKBOX - RADIO */
.abc-checkbox input.error[type="checkbox"] + label::before {
    border-color: #996633 !important;
}

.abc-checkbox input.error[type="radio"] + label::before {
    border-color: #996633 !important;
}

.abc-checkbox-lightblue input[type="checkbox"]:checked + label::before, .abc-checkbox-lightblue input[type="radio"]:checked + label::before {
    background-color: #000000;
    border-color: #000000;
}

.abc-checkbox-lightblue input[type="checkbox"]:checked + label::after, .abc-checkbox-lightblue input[type="radio"]:checked + label::after {
    color: #fff;
}

.abc-radio-lightblue input[type="radio"]:checked + label::before {
    border-color: #000000;
}

.abc-radio-lightblue input[type="radio"]:checked + label::after {
    background-color: #000000;
}

.abc-radio-lightblue input[type="radio"] + label::after {
    background-color: #000000;
}

#newsletter_form_handler .abc-checkbox-lightblue label {
    font-size: 12px;
    color: #FFF;
}

#newsletter_form_handler .abc-checkbox label {
    vertical-align: inherit;
}

#main_nav .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: -35px;
    z-index: 10;
    position: absolute;
    width: 100%;
}

.sm_header {
    width: auto;
    position: relative;
    text-align: center;
}

.sm_header h3 {
    border-bottom: 2px solid #D3D3D3;
    display: inline-block;
    margin: 0 auto 10px;
    color: #000000;
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 10px;
    text-align: center;
}

.push {
    height: 350px;
}

#newsletter-box {
    padding: 0;
}

#newsletter-box a:link,
#newsletter-box a:active,
#newsletter-box a:visited {
    color: #fff;
    text-decoration: underline;
}

#newsletter-box a:hover {
    color: #f3f3f3;
    text-decoration: underline;
}

#newsletter-box .form-control {
    border-radius: 0;
}

#newsletter-box .consent {
    font-size: 11px;
}

#newsletter-box .consent .abc-checkbox label {
    padding-left: 0;
    width: calc(100% - 25px);
    float: right;
}

#newsletter-box .consent .abc-checkbox label::before {
    top: 2px;
    left: -5px;
}

#newsletter-box .consent .abc-checkbox label::after {
    top: 2px;
    left: -5px;
}

.abc-checkbox input[type="checkbox"], .abc-checkbox input[type="radio"] {
    margin-left: -10px;
}

#newsletter-box .consent .form-check {
    padding: 0;
}

.newsletter_form .form-control.error {
    border-color: transparent;
    box-shadow: none;
    outline: 0 none;
}

.newsletter_form label.error {
    text-align: center;
    color: #000000;
}

.newsletter_form .btn {
    outline: none;
    box-shadow: none;
}

.newsletter_form .btn.focus, .newsletter_form .btn:focus {
    outline: none;
    box-shadow: none;
}

.footer_newsletter {
    background-color: var(--global-color);
    color: #fff;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 3.125rem 1.25rem;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
}
.footer_newsletter .item-newsletter {
    -ms-flex-flow: column;
    flex-flow: column;
    -ms-flex: 0 0 63%;
    flex: 0 0 63%;
}
.footer_newsletter .item-newsletter h4 {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 12px;
    line-height: normal;
    font-size: 16px;
    text-transform: uppercase;
}
.footer-newsletter-content {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer_newsletter .bottom_bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}
.footer_newsletter p,
.footer_newsletter .consent {
    font-size: 12px;
    font-weight: 400;
    text-align: left;
}
.footer_newsletter .abc-checkbox input[type="checkbox"],
.footer_newsletter .abc-checkbox input[type="radio"] {
    margin-left: 0;
}

.newsletter_block {
    max-width: 300px;
    height: 44px;
    border-bottom: 2px solid #fff;
}
.newsletter_block .symbol-send-newsletter {
    width: 16px;
    height: 28px;
}
.newsletter_block .form-control {
    color: #fff;
    background-color: transparent;
    border: none;
    border-radius: 0;
    font-size: 14px;
}
.newsletter_block .form-control::placeholder {
    color: rgba(255,255,255,.7);
}
.newsletter_block .form-control:focus {
    outline:none;
    box-shadow: none;
}

@media only screen and (min-width: 769px) {
    .footer_newsletter .item-newsletter {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
   }
}

@media only screen and (max-width: 767px) {
    .footer_newsletter {
        text-align: center;
        -ms-flex-align: baseline;
        align-items: baseline;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-newsletter-content {
        -ms-flex-flow: column;
        flex-flow: column;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .newsletter_block {
        max-width: 100%;
        margin-bottom: 15px !important;
    }
}
#newsletter_email.form-control::placeholder {
    font-weight: 300;
}
.footer_icons ul li {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    text-align: center;
    padding-bottom: 3.125em;
    padding-top: 3.125em;
}
.footer_icons ul li h3 {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
}
.footer_icons ul li .symbol {
    width: 70px;
    height: 70px;
}
@media only screen and (max-width: 768px) {
    .footer_icons ul {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .footer_icons ul li {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        padding-bottom: 0;
        padding-top: 0;
        margin-top: 0.875em;
        margin-bottom: 0.875em;
    }
}
footer {
    width: 100%;
    height: 390px;
}

footer .menu {
    padding: 10px 0 20px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 2.125em;
    border-bottom: 2px solid rgba(0,0,0,.1);
}

footer .menu h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 400;
    color: #000;
}

footer .menu .item {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    padding: 0 10px;
}
footer h4 {
    font-size: 12px;
    font-weight: 600;
}
footer .accepted img {
    max-width: 70px;
}
footer .accepted ul:first-child li:first-child img {
    min-width: 50px;
}
footer .accepted ul {
    text-align: center;
}
footer .accepted ul li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
}
footer .accepted ul li.title {
    font-size: 12px;
}
@media only screen and (max-width: 576px) {
    footer .accepted ul {
        text-align: center;
        margin-bottom: 0;
    }

    footer .accepted ul li {
        float: none;
    }
}
    footer .menu .item ul li a {
    font-size: 14px;
    position: relative;
    color: #32440e;
}

footer ul li a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width .25s ease-in-out;
    left: 0;
}

footer ul li a:hover::after {
    width: 100%;
}
footer .menu .item h3 {
    cursor: initial;
    pointer-events: none;
}
footer .menu .follow {
    padding: 25px 12px;
    line-height: 1.5;
}

footer .menu .follow span {
    display: inline-block;
    float: left;
    margin-top: 4px;
}

footer .menu .follow ul {
    display: inline-block;
}

footer .menu .follow ul li {
    display: inline-block;
    float: left;
    margin: 0 10px;
    font-size: 18px;
}

footer .menu .follow ul li a:link,
footer .menu .follow ul li a:active,
footer .menu .follow ul li a:visited {
    color: #5d5d5d;
    transition: opacity .25s ease-in;
}

footer .menu .follow ul li a:hover {
    opacity: 0.5;
}

footer .menu .subscribe {
    padding: 25px 12px;
}
footer .lastbar {
    margin: 0 2.125em;
    height: auto;
    font-size: 12px;
    color: #000;
    padding: 10px;
}

footer .lastbar ul {
    margin:0 auto;
}
footer .lastbar ul li {
    display: inline-block;
}
footer .lastbar ul li:not(:last-child) {
    margin-right: 10px;
}

footer .lastbar a {
    color: #32440e;
    position: relative;
}
footer .copyright a:hover {
    color: #AB9762;
}

footer .madeby {
    text-align: right;
}

footer .madeby a {
    color: #000;
}

footer .madeby a span {
    color: #0082ba;
}

footer .madeby a span em {
    color: #f1c847;
    font-style: normal;
}

@media only screen and (max-width: 1199px) {
    footer .menu .follow {
        padding: 30px 0;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 991px) {
    footer .menu .follow {
        padding: 0 12px;
        line-height: 1.5;
        text-align: center;
    }

    footer .menu .follow span {
        display: block;
        float: none;
        margin-bottom: 10px;
    }

    footer .lastbar .row > div {
        height: auto;
    }

    footer .copyright, footer .madeby {
        text-align: center;
    }
}

@media only screen and (max-width: 991px) {
    footer .lastbar {
        height: auto;
        line-height: 30px;
    }

}
@media only screen and (max-width: 991px) {
    footer .menu .item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        margin-bottom: 25px;
    }
    footer .menu .item ul {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: column;
        flex-flow: column;
        padding-top: 1.5625rem;
        columns: initial;
    }
}
@media only screen and (max-width: 767px) {
    footer .menu {
        margin: 0;
        padding: 0 1.25em 1.5625em;
    }
    footer .menu .item {
        display: flex;
        -ms-flex-flow: column wrap;
        flex-flow: column wrap;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    footer .menu .item h3 {
        font-size: 16px;
        margin-bottom: 0;
        position: relative;
        cursor: pointer;
        pointer-events: initial;
    }
    footer .menu .item h3::after {
        content: "";
        width: 1.75rem;
        height: 1.75rem;
        position: absolute;
        background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOCAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIxLjAwOTggMTdMMTQuMDA5IDkuOTk5MjdMNi45OTkzMiAxNyIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=);
        right: 0;
        transform: rotate(180deg);
    }
    footer .menu .item h3.open::after {
        transform: rotate(0) !important;
    }
    footer .menu .item ul {
        display: none;
    }
    footer .menu .item ul.active {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: column;
        flex-flow: column;
        padding-top: 1.5625rem;
    }
    footer .menu .item ul li {
        margin-left: 0;
        margin-bottom: 1.25rem;
    }
}
#newsletter_message .msg {
    width: 100%;
    height: 60px;
    line-height: 58px;
    font-size: 26px;
    font-weight: 200;
    color: #fff;
}

#newsletter_form .form-control {
    float: left;
    color: #fff;
    border: 1px solid #000000;
    background-color: transparent;
    box-shadow: none;
    padding: 10px;
}

#newsletter_form .input-group {
    width: calc(100% - 95px);
    display: block;
}

#newsletter_form input.form-control:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px #252525 inset;
    -webkit-text-fill-color: #fff;
}

#newsletter_form span {
    display: block;
    font-size: 14px;
    line-height: 1em;
    color: #000000;
}

#newsletter_form label.error {
    font-weight: 400;
    font-size: 13px;
    color: #000000;
    margin-top: 5px;
}

#newsletter_form .m_success {
    color: #000000;
}

#newsletter_form .m_error {
    color: #F00;
}

label.newsletter_consent {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
}

.newsletter_consent a:link,
.newsletter_consent a:active,
.newsletter_consent a:visited {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter_consent a:hover {
    color: #000000;
}


.maintenance_mode_wrapper {
    font-family: muli, sans-serif;
    padding: 200px 0 0 0;
    position: relative;
    z-index: 10;
}

.maintenance_mode {
    margin: 0 auto;
    padding: 30px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.maintenance_text {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    line-height: 1.5em;
}

.maintenance_text p {
    margin-bottom: 15px;
}

.maintenance_logo {
    margin: 0 auto 20px auto;
    text-align: center;
}

.maintenance_logo img {
    width: 300px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1420px;
    }
}

@media (max-width: 1200px) {
    #instagram_feed .item {
        width: 16.666666667%;
        overflow: hidden;
    }

    #instagram_feed .item:nth-of-type(1n+13) {
        display: none;
    }

    footer {
        width: 100%;
        height: auto;
    }

    #main_nav .container {
        max-width: 100%;
    }

    #main_nav .menu {
        display: none;
    }

    #main_nav .slides {
        width: 100%;
    }

    .header_menu .breadcrumb {
        width: 100%;
        float: none;
        padding: 0;
    }

    .header_menu .breadcrumb .breadcrumb-item {
        margin-bottom: 0;
    }

    .logo {
        display: block;
    }
}

.mm-categories {
    display: none;
}

@media (max-width: 991px) {
    #main_navigation {
        display: none;
    }

    header .main_bar {
        padding: 20px 0 0;
    }

    header .header_top .container {
        max-width: 100%;
        padding: 0 24px;
    }

    header .main_bar .userdetails {
        line-height: 40px;
    }

    header .cart {
        line-height: 40px;
    }

    #instagram_feed {
        height: auto;
    }

    #instagram_feed .item {
        width: 25%;
        overflow: hidden;
    }

    #instagram_feed .item:nth-of-type(1n+9) {
        display: none;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding: 8px 0;
    }
}

@media (max-width: 767px) {
    .hide_tabs {
        display: none !important;
    }

    .show_select_tabs {
        display: block !important;
    }

    .list_wrapper.products_block .item {
        height: auto;
    }

    .products_block .item h3 {
        display: block;
        height: auto;
        overflow: inherit;
        margin-bottom: 15px;
    }

    .cart {
        text-align: center;
        margin: 0 auto;
    }

    .cart ul {
        float: none;
        display: inline-block;
    }

    .cart ul li {
        display: inline-block;
    }

    .header_menu .categories {
        display: inline-block;
        float: left;
    }

}

@media only screen and (max-width: 991px) {
    .header_menu .categories .hamburger {
        padding: 8px 0 0;
        outline: none;
    }

    .mm-categories .hamburger {
        padding: 2px 0 0;
        outline: none;
    }

    .header_menu .categories .hamburger-inner, .header_menu .categories .hamburger-inner:after, .header_menu .categories .hamburger-inner:before,
    .mm-categories .hamburger-inner, .mm-categories .hamburger-inner:after, .mm-categories .hamburger-inner:before {
        width: 20px;
        height: 1px;
        background-color: #FFF;
    }

    .mm-categories .hamburger.is-active .hamburger-inner, .mm-categories .hamburger.is-active .hamburger-inner:after, .mm-categories .hamburger.is-active .hamburger-inner:before {
        background-color: #FFF;
    }

    .mm-categories .hamburger-inner:before {
        top: -6px;
    }

    .mm-categories .hamburger-inner:after {
        bottom: -6px;
    }

    .mm-categories {
        width: auto;
        display: inline-block;
        position: relative;
        left: 0;
        top: 6px;
        z-index: 10;
    }

    .mm-navbar a {
        margin-left: 20px;
    }

    header:hover .header_menu .categories .hamburger-inner,header:hover  .header_menu .categories .hamburger-inner:after,header:hover .header_menu .categories .hamburger-inner:before,
    header:hover .mm-categories .hamburger-inner, header:hover .mm-categories .hamburger-inner:after, header:hover .mm-categories .hamburger-inner:before,
    header.light_theme .mm-categories .hamburger-inner, header.light_theme .mm-categories .hamburger-inner:after, header.light_theme .mm-categories .hamburger-inner:before {
        background-color: #000;
    }
}
@media (max-width: 575px) {
    .header_menu {
        padding: 0;
    }

    .logo {
        text-align: center;
        margin: 0 auto;
    }

    footer .lastbar {
        height: auto;
        line-height: 30px;
    }

    footer .lastbar .copyright, footer .lastbar .madeby {
        text-align: center;
    }

    .working_hours {
        display: block;
        position: relative;
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }

    #instagram_feed .title h4 {
        font-weight: 300;
        font-size: 45px;
        line-height: 68px;
    }

    #instagram_feed .item {
        width: 50%;
        overflow: hidden;
    }

    #instagram_feed .item:nth-of-type(1n+5) {
        display: none;
    }

}

/* Back to top button*/
.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 10000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #222 url(images/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top:hover.cd-fade-out {
    background-color: #222;
    opacity: 1;
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    opacity: .5;
}

.no-touch .cd-top:hover {
    background-color: #222;
    opacity: 1;
}


a.btn_blue {
    background: #1078bd;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

a.btn_blue:hover, a.btn_blue:active {
    background: #104a70;
    color: #fff;
}

a.btn_blue.active.focus, a.btn_blue.active:focus, a.btn_blue.focus, a.btn_blue.focus:active, a.btn_blue:active:focus, a.btn_blue:focus {
    color: #fff;
    outline: none;
}

.btn_blue {
    background: #1078bd;
    color: #fff;
    text-align: center;
}

.btn_blue:hover, .btn_blue:active {
    background: #104a70;
    color: #fff;
}

.btn_blue.active.focus, .btn_blue.active:focus, .btn_blue.focus, .btn_blue.focus:active, .btn_blue:active:focus, .btn_blue:focus {
    color: #fff;
    outline: none;
}

.btn_grey {
    background: #a4a4a5;
    color: #fff;
    text-align: center;
}

.btn_grey:hover, .btn_grey:active {
    background: #252525;
    color: #fff;
}

.btn_grey.active.focus, .btn_grey.active:focus, .btn_grey.focus, .btn_grey.focus:active, .btn_grey:active:focus, .btn_grey:focus {
    color: #fff;
    outline: none;
}

.btn.btn_cancel {
    background: #c9302c;
    color: #fff;
    outline: none;
    border: 1px solid #c9302c;
}

.btn.btn_cancel:hover {
    background: #B00;
    color: #fff;
    outline: none;
    border: 1px solid #B00;
}
.inside_section h1 {
    font-size: 36px;
    margin: 10px 0;
    padding: 10px;
    text-align: center;
    font-weight: 300;
}

.inside_section h2 {
    font-size: 30px;
    margin: 0 0 20px;
}

.inside_section .description {
    font-size: 14px;
}
.inside_section .description.wide {
    padding: 0 8%;
}
.inside_section .description p {
    margin-bottom: 20px;
}
.inside_section .description p a:link,
.inside_section .description p a:active,
.inside_section .description p a:visited {
    color: #000;
    text-decoration: underline;
}
.inside_section .description p a:hover {
    color:#1e1e1e;
    text-decoration: underline;
}

.inside_section.basic_text .description {
    padding: 0 8%;
}

.inside_section .no_text_align,
.inside_section .no_text_align h2,
.inside_section .no_text_align .description {
    padding: 0;
}
.inside_section .description blockquote {
    font-family: 'sofia-pro', sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 36px;
    color: #62742F;
}
.inside_section .description .quote_sign {
    margin-bottom: 30px;
}
.inside_section .description .quote_name {
    color: #62742f;
    font-size: 14px;
    font-weight: 500;
}

.inside_section .no_text_align {
    padding: 0 8%;
}
.inside_section.my {
    margin: 36px 48px;
}
/*.inside_section.single {*/
/*    padding: 16px 24px 0;*/
/*}*/

.colored {
    color: #62742f;
}
.inside_section.big_photo picture img,
.inside_section.single picture img {
    width: 100%;
}
.inside_section .description.category {
    font-size: 12px;
    text-align: justify;
    padding: 0 30%;
}
@media only screen and (min-width: 992px){
    .inside_section.right .player {
        order:2;
    }
    .inside_section.right .text{
        order:1;
    }
}
@media only screen and (max-width: 991px){
    .inside_section .description.category {
        padding: 0 5%;
    }
    .inside_section.my {
        margin: 15px 5px;
    }
    .inside_section.basic_text .description {
        padding: 20px 5% 0;
        text-align: center !important;
    }
    .inside_section .description p {
        margin-bottom: 10px;
    }
    .inside_section .no_text_align {
        padding: 0;
    }
}
.inside_section .text .history {
    letter-spacing: normal;
}
.inside_section .text .year {
    color: var(--global-color);
    font-size: 166px;
    font-weight: 400;
}
.inside_section .text .history h2 {
    font-size:16px;
    margin: 10px 0;
    padding: 0 0 10px;
    letter-spacing: unset;
    line-height: unset;
}
.inside_section .text .history h3 {
    color: #2E3918;
    font-size: 30px;
    margin:0 0 20px;
    letter-spacing: unset;
    line-height: 1.2;
    font-weight: 300;
}
.inside_section .player picture img {
    width: 100%;
}
@media only screen and (min-width: 768px){
    .inside_section .row {
        margin-right: 0;
    }
}
.inside_section.ms .row {
    margin-right: 1px !important;
    margin-left: 0;
}

.guide_carousel .nav-tabs {
    background-color: transparent;
    border: 1px solid transparent;
}

.guide_carousel .nav-tabs .nav-item.show .nav-link,
.guide_carousel .nav-tabs .nav-link.active {
    background-color: transparent;
    border: 1px solid transparent;
    color: #000000;
}

.guide_carousel .nav-tabs .nav-link:focus,
.guide_carousel .nav-tabs .nav-link:hover {
    background-color: transparent;
    border: 1px solid transparent;
    color: #000000;
    outline: none;
}

.guide_carousel .nav-item {
    padding: 8px 16px;
}

.guide_carousel .nav-item .nav-link {
    position: relative;
    padding: 0;
}

.guide_carousel .nav-item .nav-link:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: transparent;
    bottom: -4px;
    transition: all .3s ease;
    transform: translateX(-50%);
    left: 50%;
}

.guide_carousel .nav-item .nav-link:hover::before,
.guide_carousel .nav-item .nav-link.active:before {
    width: 100%;
    background-color: var(--global-color);
}

.guide_carousel .nav-item figure {
    border: 2px solid transparent;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1rem !important;
    transition: all .3s ease;
}

.guide_carousel .nav-link.active figure {
    border: 2px solid var(--global-color);
}

.guide_carousel .nav-item figure:hover {
    border: 2px solid var(--global-color);
}

.guide_carousel .nav-item p {
    font-size: 14px;
    color: #000;
    text-align: center;
}

.guide_carousel .nav-link.active p {
    font-weight: 500;
}

.product_wall {
    padding: 0 80px;
    transition: width .5s ease;
}
.product_wall.product_item {
    margin-bottom: 0;
}

.product_wall .images:not(:last-child) {
    margin-right: 0.25rem;
}

#request_account_deletion_modal .modal-header {
    background-color: #000000;
    color: #fff;
}

#request_account_deletion_modal .modal-header .close {
    text-shadow: none;
    color: #fff;

}

#request_account_deletion_modal .modal-header h4 {
    display: inline-block;
    float: left;
}

#request_account_deletion_modal .modal-footer {
    text-align: center;
    display: block;
}

#stores {
    padding-bottom: 10px;
}

#stores h2 {
    font-size: 18px;
    font-weight: 300;
    text-align: left;
    margin: 0;
    border-bottom: none;
}

#stores h2::after {
    display: none;
}

#stores .form-control {
    font-size: 14px;
    text-align-last: center;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 46px;
    line-height: 36px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    background-image: url(images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: calc(60% + 50px), center;
}

#stores select.form-control option {
    text-align-last: left;
}

#stores .city .form-control {
    background-color: #231F20;
    background-image: url(images/select-arrow.svg);
    color: #fff;
}

#stores .city .form-control option {
    color: #fff;
}

#stores .store .form-control {
    background-color: #000000;
    color: #fff;
}

#stores .store .form-control option {
    background-color: #000000;
    color: #fff;
}

#stores select:focus {
    outline: 0;
    box-shadow: none;
}

#stores .google_map {
    width: 100%;
    height: 600px;
}

/* MINI SITE NEW */
#mini_site .cover-photo {
    height: 770px;
    overflow: hidden;
    position: relative;
}

#mini_site .cover-photo .content {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 650px;
    padding: 0 20px;
    text-align: center;
    top: 75%;
    left: 50%;
}

#mini_site .cover-photo h1 {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: .05em;
    font-size: 36px;
    color: #fff;
}

/* GRID VIEW */
.grid_list .cover-photo {
    position: relative;
    overflow: hidden;
}

.grid_list .cover-photo .content {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 650px;
    padding: 0 20px;
    text-align: center;
    top: 75%;
    left: 50%;
}
.grid_list .cover-photo .content {
    top: 55%;
}

.grid_list .cover-photo h1 {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: .05em;
    font-size: 36px;
    color: #fff;
    text-align: center;
}
.grid_list .cover-photo h2 {
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: .2em;
    line-height: 12.5px;
    color: #fff;
}

.grid_list .cover-photo img {
    width: 100%;
}

.grid_list .description {
    padding: 0 28%;
}

.grid_list .one_by_line {
    width: 100%;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: center;
}

.grid_list .two_by_line {
    width: 50%;
    padding: 0 2px;
}

.grid_list .three_by_line {
    width: 33.33333%;
    padding: 0 2px;
}

.grid_list .four_by_line {
    width: 25%;
    padding: 0 2px;
}

.grid_list.rythme-view .one_by_line,
.grid_list.rythme-view .two_by_line,
.grid_list.rythme-view .three_by_line,
.grid_list.rythme-view .four_by_line {
    width: 25%;
    padding: 0 2px;
    display: block;
    -ms-flex-pack: initial;
    justify-content: initial;
    -webkit-box-pack: initial;
}

@media only screen and (max-width: 1199px) {
    .grid_list.rythme-view .four_by_line {
        width: 33.33333%;
    }
}
@media only screen and (max-width: 991px) {
    .grid_list.simple-view .three_by_line,
    .grid_list.simple-view .four_by_line{
        width: 50%;
    }
}
@media only screen and (max-width: 767px) {
    .grid_list.rythme-view .three_by_line {
        width: 25%;
    }
    .grid_list .description {
        padding: 0 3%;
    }
}

@media only screen and (max-width: 576px) {
    .grid_list.rythme-view .two_by_line {
        width: 100%;
    }

    .grid_list.rythme-view .three_by_line,
    .grid_list.rythme-view .four_by_line {
        width: 25%;
    }
}

.grid_options {
    font-size: 14px;
}

.grid_options .change-grid {
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 5px;
}

.grid_options .change_grid svg {
    stroke: #d3d3d3;
    cursor: pointer;
}

.grid_options .change_grid.active svg {
    stroke: #000;
}

.grid_options .change_grid svg.symbol {
    width: 16px;
    height: 16px;
}

.product-list .product-item {
    transition: width .5s ease
}

@media only screen and (max-width: 767px) {
    .grid_options .sort {
        width:100%;
        margin-bottom: 10px;
    }
    .grid_options .item-counter {
        width:50%;
        display:inline-block;
        float: left;
    }
    .grid_options .filters_grid {
        width: 50%;
    }
}
/* MINI SITE */
#mini-site .cover-photo .data {
    padding: 20px;
    font-size: 16px;
}

#mini-site .category figure {
    margin: 0;
}

#mini-site .category .data h3 {
    font-size: 52px;
    font-weight: 400;
    padding-top: 30px;
}

#mini-site .video_text {
    font-size: 20px;
    font-weight: 300;
}

#mini-site .video_text h3 {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #363636;
}

#mini-site .collection .title {
    font-size: 18px;
    font-weight: 300;
    margin: 15px auto;
}

#mini-site .collection .image {
    margin: 15px auto;
}

@media only screen and (max-width: 576px) {
    #mini-site .category figure img {
        margin: 0 auto;
        width: 100%;
    }
}

#mini-site .category .data {
    padding: 15px;
    text-align: center;
    margin-bottom: 20px
}

#mini-site .category .data h3 {
    font-size: 18px;
    font-weight: 700;
}

#mini-site .category a .data h3 {
    color: #363636;
}

#mini-site .category a:hover .data h3 {
    color: #000000;
}

#mini-site h2, #videos h2, #index_blog h2, #new_products h2, #product_offers h2, .error_404 h2 {
    font-size: 38px;
    font-weight: 200;
    text-align: center;
    margin: 30px auto;
    border-bottom: none;
}

#mini-site h2::after, #videos h2::after, #index_blog h2::after, #new_products h2::after, #product_offers h2::after, .error_404 h2::after {
    display: none;
}

#mini-site .ms_cat_header h2 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    margin: 20px auto;
    border-bottom: none;
}

#mini-site .products_block {
    margin: 0 auto 40px;
}

#mini-site .products_block .new_arrivals_center {
    position: relative;
}

#mini-site .products_block .new_arrivals_center::before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 15%;
    top: 0;
    z-index: 1;
    padding: 13.5px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #fff 100%);
    left: 0;
}

#mini-site .products_block .new_arrivals_center::after {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 15%;
    top: 0;
    z-index: 1;
    padding: 13.5px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 100%);
    right: 0;
}

@media only screen and (max-width: 767px) {
    #mini-site .products_block .new_arrivals_center::before,
    #mini-site .products_block .new_arrivals_center::after {
        display: none;
    }
}

#mini-site .products_block .new_arrivals_center .item {
    padding: 30px;
}

@media only screen and (max-width: 767px) {
    #mini-site .products_block .new_arrivals_center .item {
        border: none;
    }
}

#mini-site .products_block .cover,
#mini-site .products_block .products {
    background-color: #fff;
}

#mini-site .products_block .cover figure img {
    width: auto;
}

#mini-site .products_block .cover.full figure img {
    width: 100%;
}

#mini-site .products_block .cover figure {
    margin: 0;
}

@media only screen and (min-width: 991px) {
    #mini-site .products_block:nth-child(even) .cover {
        order: 3;
    }

    #mini-site .products_block:nth-child(even) .products {
        order: 2;
    }

    #mini-site .products_block:nth-child(even) .see_all {
        order: 1;
    }
}

#mini-site .products_block .see_all {
    margin: 10px auto;
    background-color: transparent !important;
    font-size: 16px;
    font-weight: 300;
}

#mini-site .products_block .see_all h2 {
    font-size: 16px;
    font-weight: 300;
    border-bottom: none;
    text-align: left;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

#mini-site .products_block .item {
    margin-bottom: 0;
    padding: 26px 15px;
    box-sizing: border-box;
    text-align: center;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

#mini-site .products_block .no_cover .item {
    border-bottom: none;
}

#mini-site .new_arrivals {
    margin: 60px auto 100px;
}

#mini-sites .cover.footer {
    position: relative;
}

#iconic_lines .title {
    padding: 30px 50px;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}

#iconic_lines .lines .item {
    height: 400px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#iconic_lines .lines .item a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
}

#iconic_lines .lines h3 {
    display: none;
}

@media only screen and (max-width: 991px) {
    #iconic_lines .lines h3 {
        display: block;
        width: calc(100% - 30px);
        position: absolute;
        bottom: 20px;
        color: #fff;
        z-index: 1;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
    }
}

@media only screen and (max-width: 567px) {
    #iconic_lines .lines .item {
        height: 500px;
    }

    #iconic_lines .title {
        padding: 20px 50px;
        text-align: center;
    }
}

#iconic_lines .lines .item.disabled {
    position: relative;
    opacity: .4;
}

#iconic_lines ul li {
    text-transform: uppercase;
    text-align: right;
    transition: all .2s ease-in-out;
    padding: 20px 0;
    cursor: pointer;
}

#iconic_lines ul li a:link {
    color: #000;
}

#iconic_lines ul li.disabled a:link {
    color: #ABABAB;
}

#iconic_lines ul li span {
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all .2s ease-in-out;
    -webkit-transform-origin: right;
    transform-origin: right;
    position: relative;
    font-size: 30px;
    font-weight: 700;
    line-height: 48px;
}

#iconic_lines ul li span::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: all .5s ease-in-out
}

#iconic_lines ul li.disabled span {
    -ms-transform: scale(.7);
    transform: scale(.7);
    font-size: 20px;
}

#mini-site .cover-photo .boiler_plate p {
    font-size: 14px !important;
}

#mini-site .cover-photo.main {
    position: relative;
}

#mini-site .cover-photo.main .image {
    position: relative;
    z-index: 0;
}

#mini-site .cover-photo.main .boiler_plate p {
    padding: 0 50px;
}

#mini-site .boiler_plate {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 50%;
}

@media only screen and (max-width: 1199px) {
    #mini-site .boiler_plate {
        position: relative;
        top: auto;
        transform: translateY(0);
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    #mini-site .cover-photo.main .image {
        margin-bottom: 20px;
    }
}

#mini-site .boiler_plate figure {
    margin-bottom: 30px;
}

#mini-site .boiler_plate img {
    max-width: 260px;
}

#mini-site.list .category-description,
#mini-site.list .item {
    padding: 40px 45px;
    box-sizing: border-box;
}

#mini-site.list .category-banner {
    padding: 0;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

#mini-site.list .category-description h2 {
    font-size: 22px;
    font-weight: 700;
    text-align: left;
}

#minisite_more_products {
    position: relative;
}

#minisite_more_products .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

#minisite_more_products .owl-nav .owl-prev {
    position: absolute;
    left: -20px;
    outline: none;
}

#minisite_more_products .owl-nav .owl-prev.disabled {
    display: none;
}

#minisite_more_products .owl-nav .owl-prev:hover {
    background-color: transparent;
    color: #000000;
}

#minisite_more_products .owl-nav .owl-next {
    position: absolute;
    right: -20px;
    outline: none;
}

#minisite_more_products .owl-nav .disabled:hover {
    background-color: transparent;
    color: inherit;
}

#minisite_more_products .owl-nav .owl-next:hover {
    background-color: transparent;
    color: #000000;
}

.block_link {
    pointer-events: none;
}

/* GIFT CARD */

.custom-control-label::before,
.custom-control-label::after {
    top: .5rem;
}

.custom-control-input:checked ~ .custom-control-label::before,
.custom-control.image-checkbox label:before {
    border-color: #80c6bb;
    background-color: #80c6bb;
}

.custom-control.image-checkbox .custom-control-input:checked ~ .custom-control-label:after,
.custom-control.image-checkbox .custom-control-input:checked ~ .custom-control-label:before {
    box-shadow: none;
}

#gift_card h2 {
    margin: 15px auto 10px;
    font-size: 18px;
    font-weight: 600;
}

#gift_card h3 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 300;
}

#gift_card .sub_title {
    font-weight: 600;
    color: #000000;
}

#gift_card .form-control {
    border-radius: 0;
    border: 1px solid #dee2e6;
}

#gift_card .form-control:focus {
    box-shadow: none;
    border: 1px solid #80c6bb;
}

#gift_card .counter {
    font-weight: 600;
    color: #000000;
}

#gift_card .add_giftcard_tocart {
    text-align: right;
}

#gift_card .gift_card_wrapper {
    position: relative;
    border-top: 2px dashed #ddd;
    margin-top: 30px;
    padding-top: 30px;
}

#gift_card .gift_card_wrapper:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

#gift_card .gift_card_wrapper .remove {
    position: absolute;
    top: 10px;
    right: 0;
}

#gift_card .gift_card_wrapper .remove:hover {
    cursor: pointer;
    color: #000000;
}

#my_gift_card {
    position: relative;
}

#my_gift_card .gift_card_wrapper {
    margin: 30px auto;
}

#my_gift_card .gift_card_wrapper p {
    margin-bottom: 15px;
}

#my_gift_card .flip_card .img-fluid {
    max-width: 500px;
    width: auto;
}

.mygift {
    font-size: 1.2em;
    margin: 0;
    perspective: 500px;
    transition: all 0.3s ease 0s;
}

.mygift:hover .dcard {
    transform: rotateY(180deg);
}

.dcard {
    cursor: default;
    height: 380px;
    transform-style: preserve-3d;
    transition: transform 1s ease 0s;
    width: auto;
    border: none;
}

.dcard .front,
.dcard .back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-sizing: border-box;
    display: block;
    font-size: 1.2em;
    height: 100%;
    padding: 0.8em;
    position: absolute;
    text-align: center;
    width: 100%;
}

.dcard .back {
    transform: rotateY(180deg);
    position: relative;
    visibility: visible;
}

.dcard .back .details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    color: #80c6bb;
    width: calc(100% - 200px);
    text-align: left;
    font-size: 20px;
    font-weight: 600;
}

.dcard.light .back .details {
    color: #1c365e;
}

.dcard .back .details span {
    display: block;
    font-size: 18px;
    font-weight: 400;
}

.gift-card-msg {
    margin: 30px auto !important;
    text-align: center;
    font-style: italic;
    color: #000000;
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    .mygift:hover .card {
        transform: none;
    }

    .card {
        display: block;
        height: auto;
        margin-bottom: 30px;
    }

    .card .front, .card .back {
        padding: 0.8em 0;
        position: relative;
        height: auto;
    }

    .card .back {
        transform: none;
        position: relative;
    }

    .card .back .details {
        width: calc(100% - 40px);
        top: 40px;
        transform: translateY(0px);
        font-size: 16px;
    }

    .card .back .details span {
        font-size: 14px;
    }
}

.qc-cmp2-persistent-link {
    background-color: #000000;
    color: rgba(255, 255, 255, .8) !important;
}

.qc-cmp2-persistent-link:hover {
    color: #80C7BC !important;
}

.phone_icon_sticky {
    position: fixed;
    left: calc(100% - 75px);
    bottom: 110px;
    width: 60px;
    height: 60px;
    padding: 0;
    font-size: 0.875rem;
    box-shadow: 0 3px 5px -1px rgb(0 0 0 / 20%), 0 6px 10px 0 rgb(0 0 0 / 14%), 0 1px 18px 0 rgb(0 0 0 / 12%);
    box-sizing: border-box;
    min-height: 36px;
    line-height: 1.75;
    border-radius: 50%;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    background-color: #2d3918;
    color: #fff;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    z-index: 9998;
    margin-bottom: 10px;
}

.phone_icon_sticky a {
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
}

.phone_icon_sticky:hover {
    background-color: #000;
}

.phone_icon_sticky i {
    font-size: 20px;
    width: 100%;
    text-align: center;
    position: relative;
    top: 19px;
    right: 0;
    margin: 0 auto;
}

@media only screen and (max-width: 576px) {
    .phone_icon_sticky {
        left: calc(100% - 66px);
        bottom: 80px;
        width: 50px;
        height: 50px;
    }

    .phone_icon_sticky a {
        width: 50px;
        height: 50px;
    }

    .phone_icon_sticky i {
        top: 15px;
    }
}

.espa_banner {
    width: 100%;
    max-width: 658px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
}

.espa_banner figure {
    margin: 0;
}

.espa_banner .close {
    position: relative;
    top: -4px;
    right: 3px;
    font-size: 14px;
    color: #000;
    cursor: pointer;
}

@media only screen and (max-width: 576px) {
    .espa_banner .close {
        right: auto;
        left: 3px;
        float: left;
    }
}

/* LIGHTGALLERY */
.lg-backdrop {
    background-color: #fff;
}

.lg-toolbar {
    background-color: #000;
}

#speedex_voucher {
    margin-top: 30px;
    margin-bottom: 50px;
}

#speedex_voucher h3 {
    text-align: center;
    font-size: 22px;
}

#tracking_number {
    display: inline-block;
    float: left;
    width: calc(100% - 68px);
    margin-right: 10px;
}

.btn-search-voucher {
    display: inline-block;
    width: 56px;
    height: 56px;
    background-color: #000;
    color: #FFF;
    border-color: #000;
    border-radius: .375rem;
    -webkit-border-radius: .375rem;
    -moz-border-radius: .375rem;
}

.btn-search-voucher:hover {
    background-color: #2b2b2b !important;
    color: #fff !important;
    border-color: #2b2b2b !important;
}

#speedex_voucher .timeline_wrapper ul {
    position: relative;
    display: block;
    width: 100%;
}

#speedex_voucher .timeline_wrapper ul li {
    display: flex !important;
}

#speedex_voucher .timeline_wrapper ul li .item {
    display: inline-block;
    border-radius: .375rem;
    -webkit-border-radius: .375rem;
    -moz-border-radius: .375rem;
    background-color: #fff;
    color: #000;
    position: relative;
    left: 0;
    width: calc(50% - 50px);
    margin-right: 50px;
    margin-bottom: 20px;
    padding: 25px;
}

#speedex_voucher .timeline_wrapper ul li.delivered .item,
#speedex_voucher .timeline_wrapper ul li.delivered:nth-child(even) .item {
    background-color: #000;
    color: #fff;
    left: 0;
    right: 0;
    margin: 20px auto 0;
    width: 40%;
    padding: 25px;
}

#speedex_voucher .timeline_wrapper ul li .item::after {
    content: '\f3c5';
    font-family: "Font Awesome 5 Pro", sans-serif;;
    padding-top: 5px;
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: #000;
    color: #FFF;
    font-size: 20px;
    text-align: center;
    clear: both;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
}

#speedex_voucher .timeline_wrapper ul li:hover .item::after {
    background-color: #0074bb;
}

#speedex_voucher .timeline_wrapper ul li.delivered .item::after {
    display: none;
}

#speedex_voucher .timeline_wrapper ul li:nth-child(even) .item {
    margin-right: 0;
    margin-left: auto !important;
}

#speedex_voucher .timeline_wrapper ul li:nth-child(even) .item::after {
    right: inherit;
    left: -70px;
}

#speedex_voucher .timeline ul::before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #ddd;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 0;
    position: absolute;
}

@media only screen and (max-width: 1199px) {
    #speedex_voucher .timeline_wrapper ul li.delivered .item {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    #speedex_voucher .timeline_wrapper ul li {
        display: block;
        margin-bottom: 20px;
    }

    #speedex_voucher .timeline_wrapper ul li .item {
        display: block;
        left: inherit;
        width: 100%;
        margin-right: 0;
    }

    #speedex_voucher .timeline_wrapper ul li .item::after {
        position: absolute;
        right: 0;
        left: 0;
        top: -20px;
        margin: 0 auto;
        transform: inherit;
        text-align: center;
        clear: both;
    }

    #speedex_voucher .timeline_wrapper ul li:nth-child(even) .item::after {
        right: 0;
        left: 0;
    }

    #speedex_voucher .timeline_wrapper ul li.delivered .item {
        width: 90%;
    }
}

#lookbook {
    padding: 0;
}
#lookbook.home {
    padding: 0 40px 40px;
}

#lookbook .mt-40 {
    margin-top: 40px;
}

#lookbook .col-4 {
    padding: 0 4px 0 0;
}

#lookbook h2 {
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 10px;
}

#lookbook .subtitle {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    width: 90%;
    max-width: 320px;
    margin: 0 auto 20px;
    left: 50%;
    transform: translateX(-50%);
}

#lookbook.home {
    background-color: #fff;
}

#lookbook .cover {
    padding: 0 20px;
    text-align: center;
}
#lookbook .book {
    margin-bottom: 20px;
}
#lookbook .book h3 {
    margin: 10px auto;
    font-size: 22px;
}
#lookbook .book h4 {
    font-size: 16px;
}

#lookbook .list {
    padding: 0 20px;
}

#lookbook .list h1 {
    margin: 0 auto 20px;
    font-size: 36px;
    font-weight: 300;
}

#lookbook .list h2 {
    text-align: left;
    font-size: 22px;
    margin-bottom: 20px;
}

#lookbook .list .image {
    width: 35%;
    padding: 20px;
    background-color: #f9f9f9;
}

#lookbook .product {
    margin-bottom: 50px;
}

#lookbook .product .details {
    width: 65%;
}
#lookbook .product .details h3 {
    font-size: 18px;
    line-height: 1.5625rem;
}
#lookbook .product .details .price_wrapper .price {
    display: block;
    margin: 10px 0;
    font-size: 22px;
    font-weight: 300;
    text-align: left;
}

#lookbook .product .details .unavailable {
    color: #BA1631;
    font-weight: 500;
}

@media only screen and (max-width: 1199px) {
    #lookbook .list .image {
        width: 30%;
    }
}

@media only screen and (max-width: 991px) {
    #lookbook .cover {
        margin-bottom: 30px;
    }

    #lookbook .cover img {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    #lookbook .cover {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 575px) {
    #lookbook .list h2 {
        text-align: center;
    }

    #lookbook .list .image {
        width: 80%;
        text-align: center;
        margin: 0 auto 20px
    }

    #lookbook .product .details {
        width: 80%;
    }
}

/* SVG */
.stamp-container {
    text-align: center;
    padding: 40px 48px;
}
@media only screen and (max-width: 991px) {
    .stamp-container {
        padding: 10px;
    }
}
.stamp-container svg {
    width: 50px;
    height: 18px;
}

.fixed-top-padding {
    margin-top: 121px;
}

#featured_lepliage_picks_content .owl-carousel .owl-stage{
    text-align: center;
    margin: 0 auto;
}
