/* -------------------------------- 

Primary style

-------------------------------- */

.cd-quick-view *::after,
.cd-quick-view *::before,
.archive_most_popular .cd-item.empty-box::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*
.cd-quick-view *::after,
.cd-quick-view *::before,
.archive_most_popular .cd-item.empty-box::after {
    content: '';
}
*/

.add-content .cd-close:before,
.add-content .cd-close:after,
.archive_most_popular .cd-item.empty-box::after {
    content: '';
}

body::after {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    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;
    content: '';
    z-index: 999;
}

body.overlay-layer:after {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

body.overlay-layer {
    overflow: -moz-hidden-unscrollable;
    overflow: hidden;
}

.overlay-layer .oc2-hotspot-selected {
    opacity: 0;
}

.oc2-hotspot-selected .oc2-hotspot_button:after {
    background: #ff774c;
}

.oc2-hotspot_label {
    display: none;
}

.oc2-hotspot-selected .oc2-hotspot_label {
    display: block;
}


/* -------------------------- */


/* --- Product Quick View --- */


/* -------------------------- */


/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */

.cd-container {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}

.cd-container:after {
    content: "";
    display: table;
    clear: both;
}

.cd-items {
    padding: 1em 0;
}

@media only screen and (min-width: 768px) {
    .cd-items {
        padding: 2em 0 0;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-items {
        padding: 4em 0 0;
    }
}

.archive_most_popular .cd-item.empty-box {
    position: relative;
}

.archive_most_popular .cd-item.empty-box::after {
    /* box visible as placeholder when the .cd-quick-view zooms in */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.oc2-hotspot .cd-trigger {
    position: absolute;
    height: 100%;
    line-height: 50px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: transparent;
    /*rgba(0, 0, 0, 0.1);*/
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: transparent;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s, background-color 0.2s;
    -moz-transition: opacity 0.2s, background-color 0.2s;
    transition: opacity 0.2s, background-color 0.2s;
    display: none;
}

.oc2-hotspot-selected .cd-trigger {
    display: block;
}

.oc2-hotspot .cd-trigger {
    /* always visible on small devices */
    visibility: visible;
    opacity: 1;
}

.oc2-hotspot .cd-trigger {
    /* only visible on hover on big devices */
    opacity: 0;
}

.cd-item:hover .cd-trigger {
    opacity: 1;
}

.cd-quick-view {
    /* quick view non available on small devices */
    display: block;
}

.cd-quick-view {
    /*display: block;*/
    position: fixed;
    /*max-width: 900px;*/
    visibility: hidden;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: left, top, width;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    /*grid-row-gap: 24px;*/
}

.cd-quick-view.animate-width {
    max-height: 90%;
    overflow-y: auto;
}

.cd-quick-view:after {
    content: "";
    display: table;
    clear: both;
}

.cd-quick-view.is-visible {
    /* class added when user clicks on .cd-trigger */
    visibility: visible;
}

.cd-quick-view.animate-width {
    /* class added at the end of the first zoom-in animation */
    background-color: #F6F4F1;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    -webkit-transition: box-shadow 0.3s;
    -moz-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 80%);
}

@media (max-width: 767px) {
    .cd-quick-view {
        grid-template-columns: repeat(1, 1fr);
    }

    .cd-item-info {
        padding-left: 3em;
    }
}

.cd-slider-wrapper {
    position: relative;
    display: inline-block;
    float: left;
    padding: 0;
    /*30px 10px 20px*/
    /*margin: 2%;
    width: 46%;*/
    text-align: center;
    background-color: #fff;
    height: 100%;
}

.cd-slider-wrapper:after {
    content: "";
    display: table;
    clear: both;
}

.is-visible .cd-slider li.selected {
    position: relative;
    visibility: visible;
}

.cd-slider {
    margin: 0;
    padding: 0;
}

.cd-slider li {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    list-style: none;
    visibility: hidden;
}

.cd-slider li img {}

.cd-slider li.selected {
    z-index: 3;
}

.cd-slider-navigation {
    opacity: 0;
}

.add-content .cd-slider-navigation {
    opacity: 1;
}

.cd-slider-navigation li {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
}

.cd-slider-navigation li:first-child {
    left: 10px;
}

.cd-slider-navigation li:last-child {
    /* equal to the .cd-slider-wrapper margin-right */
    right: 10px;
}

.cd-slider-navigation li a {
    display: block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    opacity: 0;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.2s, background 0.2s;
    -moz-transition: opacity 0.2s, background 0.2s;
    transition: opacity 0.2s, background 0.2s;
    border: 1px solid transparent;
    /*border-radius: 40px;*/
    transition: all .2s ease-in-out;
    opacity: 1;
}

.cd-slider-navigation li a::before,
.cd-slider-navigation li a::after {
    /* create arrows in CSS */
    position: absolute;
    top: 14px;
    display: inline-block;
    background: #ffffff;
    height: 3px;
    width: 12px;
}

.cd-slider-navigation li a.cd-next::before,
.cd-slider-navigation li a.cd-next::after {
    left: 12px;
}

.cd-slider-navigation li a.cd-prev::before,
.cd-slider-navigation li a.cd-prev::after {
    right: 12px;
}

.cd-slider-navigation li a::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cd-slider-navigation li a::after {
    -webkit-transform: translateY(7px) rotate(-45deg);
    -moz-transform: translateY(7px) rotate(-45deg);
    -ms-transform: translateY(7px) rotate(-45deg);
    -o-transform: translateY(7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
}

.add-content .cd-slider-navigation li a {
    opacity: .5;
}

.cd-slider-navigation li a:hover {
    background: rgba(71, 55, 78, 0.8);
    opacity: 1;
}

.cd-slider-navigation li:first-child a::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.cd-slider-navigation li:first-child a::after {
    -webkit-transform: translateY(7px) rotate(45deg);
    -moz-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}

.cd-item-info {
    position: absolute;
    padding: 3em 3em 3em 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s, visibility 0s;
    -moz-transition: opacity .3s, visibility 0s;
    transition: opacity .3s, visibility 0s;
}

.cd-item-info h2 {
    font-size: 22px;
    font-size: 1.3rem;
}


/*
.cd-item-info p {
    line-height: 1.6;
    margin: 1em 0;
    color: #67919c;
}
*/

.cd-item-info .cd-item-action li {
    display: inline-block;
    margin-right: 1em;
}

.cd-item-info .cd-item-action li:first-child {
    margin-left: -4px;
}

.cd-item-info .add-to-cart {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    border-radius: 0.25em;
    border: none;
    padding: .6em 1.2em;
    background-color: #f82f53;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "PT Sans", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    cursor: pointer;
}

.add-content .cd-item-info {
    /* class added at the end of the width animation, used to show the content */
    position: relative;
    visibility: visible;
    opacity: 1;
    /*padding: 40px 20px 40px 50%;*/
}

.add-content .cd-item-info h2 {
    -webkit-animation: cd-slide-in 0.3s;
    -moz-animation: cd-slide-in 0.3s;
    animation: cd-slide-in 0.3s;
}

.add-content .cd-item-info p {
    -webkit-animation: cd-slide-in 0.4s;
    -moz-animation: cd-slide-in 0.4s;
    animation: cd-slide-in 0.4s;
}

.add-content .cd-item-info .cd-item-action {
    -webkit-animation: cd-slide-in 0.5s;
    -moz-animation: cd-slide-in 0.5s;
    animation: cd-slide-in 0.5s;
}

@-webkit-keyframes cd-slide-in {
    0% {
        -webkit-transform: translate3d(-40px, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@-moz-keyframes cd-slide-in {
    0% {
        -moz-transform: translate3d(-40px, 0, 0);
    }

    100% {
        -moz-transform: translate3d(0, 0, 0);
    }
}

@keyframes cd-slide-in {
    0% {
        -webkit-transform: translate3d(-40px, 0, 0);
        -moz-transform: translate3d(-40px, 0, 0);
        -ms-transform: translate3d(-40px, 0, 0);
        -o-transform: translate3d(-40px, 0, 0);
        transform: translate3d(-40px, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.cd-close {
    background: transparent;
    position: absolute;
    top: 4px;
    right: 4px;
    display: inline-block;
    width: 30px;
    height: 30px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    visibility: hidden;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .3s 0s, visibility 0s .3s;
    -moz-transition: -moz-transform .3s 0s, visibility 0s .3s;
    transition: transform .3s 0s, visibility 0s .3s;
    z-index: 3;
}

.cd-close::before,
.cd-close::after {
    /* close icon in css */
    position: absolute;
    top: 14px;
    left: 4px;
    display: inline-block;
    height: 2px;
    width: 24px;
    background: #000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: 0.2s;
}

.cd-close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cd-close::after {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.cd-close:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.add-content .cd-close {
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .3s 0s, visibility 0s 0s;
    -moz-transition: -moz-transform .3s 0s, visibility 0s 0s;
    transition: transform .3s 0s, visibility 0s 0s;
}

.cd-close:hover {
    transform: scale(0.8);
}

body a.cd-close {
    color: #3e585f;
}

.cd-slider-navigation,
.cd-slider li {
    list-style: none;
}

.hidden {
    display: none;
}

.amp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
}

.amp-row {
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    background: white;
    padding: 16px;
    height: 100%;
    transition: 0.3s;
}

.amp-row:hover {
    box-shadow: 0px 1px 8px 1px rgb(0 0 0 / 15%);
}

.amp-row .featured {
    text-align: center;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.amp-row .featured img {
    width: 100%;
}

.amp-layout .title a {
    color: #000;
}

.amp-layout .title a:hover {
    opacity: 0.7;
}

.amp-layout .title,
.amp-layout .price del span,
.amp-layout .price ins span {
    font-size: 12px;
}

.amp-layout .button,
body.woocommerce .amp-row .button {
    background: none repeat scroll 0 0 transparent;
    border: 2px solid #000;
    border-spacing: 0;
    border-radius: 0;
    color: #000;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    list-style: none outside none;
    margin: 0 0 5px;
    padding: 6px 3px;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-block;
    width: 48%;
}

.amp-layout .button:hover,
body.woocommerce .amp-row .button:hover {
    opacity: 0.7;
}

.amp-item.price {
    line-height: 18px;
    margin-bottom: 10px;
}

.amp-item.price del {
    color: #ccc;
    display: block;
}

.amp-item.price del span {
    color: #ccc;
}

.amp-item.price ins {
    display: block;
}

.amp-inner-wrap {
    padding: 5px;
}

.amp-item.action {
    width: 100%;
    text-align: center;
}

.amp-item.action .button:first-child {
    margin-right: 3px;
}

.amp-layout .button.popup-btn,
body.woocommerce .amp-row .button.popup-btn {
    background: #638C7C;
    border-color: #638C7C;
    color: #fff
}

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

    body .amp-layout .button,
    body.woocommerce .amp-row .button {
        width: 100%;
    }
}

.bof-blank-wrap {
    background: #fff;
    display: block;
    padding: 20px;
    margin-top: 20px;
}

.add-content .cd-item-info .woocommerce-Price-amount {
    margin-top: 20px;
    display: inline-block;
}

.add-content .cd-item-info .woocommerce-Price-amount bdi {
    font-size: 16px;
}

.bof-popup-buttons {}

.cd-item-info .bof-popup-buttons button,
.cd-item-info .bof-popup-buttons .button {
    width: 100%;
    text-transform: uppercase;
    display: block;
    cursor: pointer;
    border-radius: 0;
    border: none;
    padding: 1em 1.2em;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.cd-item-info .bof-popup-buttons button:hover,
.cd-item-info .bof-popup-buttons .button:hover {
    opacity: 0.7;
}

.bof-popup-buttons button.add-to-cart,
.bof-popup-buttons .button.add-to-cart {
    background: #638C7C;
    border: 2px solid #638C7C;
    color: #fff;
    margin-bottom: 20px;
}

.bof-popup-buttons button.order-sample {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.bof-blank-wrap .col-1,
.bof-blank-wrap .col-2 {
    width: 50%;
    display: inline-block;
}

.bof-blank-wrap .col-1 {
    float: left;
}

.bof-blank-wrap .col-2 {
    float: right;
    text-align: right;
}

.bof-popup-clear {
    clear: both;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.bof-popup-clear:last-child {
    margin-bottom: 0px;
}

.bof-blank-wrap label {
    font-weight: 700;
}

.bof-popup-subtotal {
    font-size: 14px;
}

.bof-popup-total {
    font-weight: 700;
    font-size: 20px;
}

.bof-after-blank-wrap {
    margin-top: 20px;
    text-align: center;
}

.bof-after-blank-wrap a {
    text-decoration: underline;
    font-weight: 600;
    text-transform: uppercase;
}

.bof-popup-antal {
    border: none;
    font-weight: 700;
    width: 40px;
    text-align: center;
    font-size: 20px;
    vertical-align: middle;
}

.bof-popup-extra {}

.bof-popup-antal-sign,
.bof-popup-antal-sign:focus {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    vertical-align: middle;
}

.bof-popup-antal-sign:hover {
    opacity: 0.7;
}


/* Chrome, Safari, Edge, Opera */

input.bof-popup-antal::-webkit-outer-spin-button,
input.bof-popup-antal::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input.bof-popup-antal[type=number] {
    -moz-appearance: textfield;
}

.bof-popup-clear.border {
    border-top: 1px solid #000;
}

.fake-checkbox {
    background: none;
    width: 23px;
    height: 23px;
    vertical-align: top;
    display: inline-block;
    border-radius: 23px;
    border: 2px solid #d3ced2;
}

.fake-checkbox.checked {
    background: url(../images/Lag-672.png) no-repeat 0 0 #D9D8D8;
    background-size: contain;
}

.bof-popup-extra-wrap label {
    cursor: pointer;
}

.oxy-posts .amp-item.action {
    margin-top: 10px;
}

.oxy-posts .amp-inner-wrap .hotspot_img {
    padding: 0;
}

.oxy-posts .amp-inner-wrap .hotspot_img img {
    display: inline-block;
}

.oxy-posts .amp-inner-wrap .featured span {
    z-index: 0;
}

.oxy-woo-products .hotspot_img {
    padding: 0;
}

.oxy-woo-products .hotspot_img a:not(.woocommerce-loop-product__link) {
    padding: 0px;
}

.oxy-woo-products .hotspot_img img {
    transition: all ease 0.2s;
}

.oxy-woo-products .woocommerce-LoopProduct-link {
    text-align: left;
}

body.woocommerce .oxy-woo-products ul.products li.product .amp-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.woocommerce .oxy-woo-products ul.products li.product .button.popup-btn {
    background: #99b8b5;
    border: 2px solid #99b8b5;
    border-spacing: 0;
    border-radius: 0;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    list-style: none outside none;
    margin: 0 0 5px;
    padding: 6px 3px;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-block;
    width: 50%;
    flex-direction: row;
    justify-content: center;
}

body.woocommerce .oxy-woo-products ul.products li.product .amp-item .p_readmore {
    width: 45%;
}

body.woocommerce .amp-item .button:hover {
    opacity: 0.7;
}

.cd-slider li.hotspot_img.selected {
    padding: 48px;
}

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

    .cd-slider-wrapper,
    .add-content .cd-item-info {
        float: none;
        width: 100%;
        margin: 0;
    }

    .cd-slider-wrapper {
        padding: 20px 20px 0;
    }

    .add-content .cd-item-info {
        padding: 20px;
    }
}