.cw-wsc-markup *::-webkit-scrollbar {
    width: 8px;
}

.cw-wsc-markup *::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #f0f0f0;
}

.cw-wsc-markup *::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: #d1d1d1
}

.cw-wsc-container,
.cw-wsc-slider,
.cw-wsc-drawer {
    position: fixed;
    background-color: #fff;
    z-index: 9999999999;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: 0.5s ease-out;
}

.cw-wsc-cart-active .cw-wsc-drawer-modal {
    display: block;
}

.cw-wsc-drawer-active .cw-wsc-drawer {
    visibility: visible;
}

.cw-wsc-drawer-active .cw-wsc-basket {
    display: none !important;
}

.cw-wsc-modal * {
    box-sizing: border-box;
}

.cw-wsc-markup a {
    color: #414353;
    text-decoration: none;
}

.cw-wsc-opac {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #000;
    z-index: 999996;
    opacity: 0;
    height: 0;
    width: 100%;
    transition: height 0s 0.4s, opacity 0.4s 0s;
}

.cw-wsc-cart-active .cw-wsc-opac {
    opacity: 0.6;
    height: 100%;
    transition: height 0s 0s, opacity 0.4s;
}

.cw-wsc-body {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.cw-wsc-loading .cw-wsc-loader {
    display: block;
}

span.cw-wsc-loader {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.5;
    background-color: #eee;
    opacity: 0.7;
    z-index: 10;
}


body.cw-wsc-cart-active,
html.cw-wsc-cart-active {
    overflow: hidden !important;
}

.cw-wsc-basket {
    margin: 10px;
    z-index: 9999997;
    cursor: pointer;
    position: fixed;
    transition: 0.5s ease-out;
    align-items: center;
    justify-content: center;
}

.cw-wsc-basket[style*='block'] {
    display: flex !important;
}

.cw-wsc-items-count {
    border-radius: 50%;
    position: absolute;
    font-size: 13px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    overflow: hidden;
}

.cw-wsc-fly-animating {
    opacity: 1;
    position: absolute !important;
    height: 150px;
    width: 150px;
    z-index: 100;
}

.cw-wsc-sc-bkcont {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cw-wsc-sc-cont .cw-wsc-cart-trigger {
    display: flex;
    position: relative;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .2s;
    padding: 0 4px 6px 0;
}

.cw-wsc-sc-cont .cw-wsc-cart-trigger .cw-wsc-sc-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

span.cw-wsc-sc-bki {
    font-size: 30px;
    color: #414353;
    transition: .2s;
}

span.cw-wsc-sc-bki img {
    display: block;
    width: 30px;
    height: 30px;
}

span.cw-wsc-sc-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    transition: .2s;
}

span.cw-wsc-sc-text-mobile {
    display: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.23;
    transition: .2s;
}

span.cw-wsc-sc-subt {
    display: inline-flex;
}

.cw-wsc-sc-cont .cw-wsc-cart-trigger .woocommerce-Price-amount {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    transition: .2s;
}

.cw-wsc-sc-cont:hover span.cw-wsc-sc-bki,
.cw-wsc-sc-cont:hover span.cw-wsc-sc-text,
.cw-wsc-sc-cont:hover span.cw-wsc-sc-subt .woocommerce-Price-amount {
    color: #d72544;
}

span.cw-wsc-sc-count {
    position: absolute;
    bottom: -9px;
    right: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    line-height: 1;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    background-color: #d72544;
    border: 3px solid #fff;
    border-radius: 100px;
}

@media screen and (max-width: 999px) {
    .cw-wsc-sc-cont .cw-wsc-cart-trigger {
        flex-direction: column;
        gap: 5px;
        padding: 0;
        background-color: transparent;
        border-radius: 0;
    }

    span.cw-wsc-sc-bki {
        font-size: 26px;
    }

    span.cw-wsc-sc-bki img {
        width: 26px;
        height: 26px;
    }

    span.cw-wsc-sc-count {
        top: 7px;
        font-size: 10px;
    }

    span.cw-wsc-sc-text,
    span.cw-wsc-sc-subt {
        display: none;
    }

    span.cw-wsc-sc-text-mobile {
        display: block;
    }
}

/* Notices */
.cw-wsc-notice-container {
    z-index: 2;
    position: absolute;
    top: 10px;
    left: 10px;
    right: 50px;
    display: none;
}

ul.cw-wsc-notices {
    margin: 0;
    list-style-type: none;
    padding: 0;
}

.cw-wsc-notice-success {
    color: #3C763D;
    background-color: #DFF0D8;
}

.cw-wsc-notice-error {
    color: #a94442;
    background-color: #f2dede;
}

ul.cw-wsc-notices li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    list-style-type: none;
    border-radius: 6px;
}

ul.cw-wsc-notices li span {
    margin-right: 6px;
}

span.cw-wsc-undo-item {
    float: right;
    text-decoration: underline;
    cursor: pointer;
}


.cw-wsc-notices a.button.wc-forward {
    display: none;
}

/* Basket */
.cw-wscb-icon {
    font-size: 37px;
}

.cw-wscb-count {
    position: absolute;
    z-index: 1;
    background-color: transparent;
    font-size: 15px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    left: 0;
    right: 0;
}

/* Header */
.cw-wsc-header,
.cw-wsc-drawer-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    height: 66px !important;
    padding: 0 20px;
    color: #352921;
}

.cw-wsc-header .cw-wsch-text {
    font-size: 18px;
    font-weight: 700;
}

.cw-wsc-drawer-header .cw-wsc-drh-txt {
    font-size: 16px;
    font-weight: 700;
}

span.cw-wsch-close,
.cw-wscdh-close {
    position: absolute;
    cursor: pointer;
}

span.cw-wsch-close svg,
.cw-wscdh-close svg {
    display: block;
}

.cw-wsch-top {
    align-items: center;
}

.cw-wsch-top .cw-wsch-basket {
    display: table;
    position: relative;
}

.cw-wsch-top {
    display: inline-flex;
    flex-grow: 1;
}

.cw-wsc-sb-bar {
    height: 6px;
    width: 100%;
    overflow: hidden;
    background-color: #E8EBF1;
    border-radius: 100px;
    display: table;
    margin: 0 auto;
    margin-top: 10px;
}

.cw-wsc-sb-bar>span {
    display: block;
    z-index: 1;
    height: inherit;
    background-color: #647FEE;
    border-radius: 100px;
}

.cw-wsc-ship-bar-cont {
    width: 100%;
    margin-bottom: 14px;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}

.cw-wsc-ship-bar-cont .woocommerce-Price-amount {
    font-weight: 700;
}

/****** BODY ***********/

/*** Product ***/
.cw-wsc-product {
    display: flex;
    margin: 20px;
    border-bottom: none;
}

.cw-wsc-img-col {
    display: flex;
    align-self: center;
    justify-content: center;
    width: 20%;
    z-index: 1;
    position: relative;
}

.cw-wsc-sum-col {
    width: 80%;
    flex-grow: 1;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
}

.cw-wsc-img-col img {
    max-width: 100%;
    max-height: 110px;
    width: auto;
    height: auto;
    border-radius: 8px;
}

.cw-wsc-sm-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
}

.cw-wsc-sm-row {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 0;
}

span.cw-wsc-smr-del+.cw-wsc-smr-ptotal {
    margin-top: auto;
}

span.cw-wsc-pname {
    margin-bottom: 6px;
}

span.cw-wsc-pname,
span.cw-wsc-pname a {
    color: #414353;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

span.cw-wsc-pname a:hover {
    color: #D72544;
}

span.cw-wsc-smr-del {
    cursor: pointer;
    color: #717171;
    font-size: 14px;
    margin-left: 12px;
}

.cw-wsc-sm-left>*:not(:last-child) {
    padding-bottom: 4px;
}

.cw-wsc-sm-sales {
    text-transform: uppercase;
    border: 1px solid #333;
    padding: 2px 10px;
    display: block;
    margin-bottom: 5px;
    border-radius: 10px;
    font-size: 10px;
}


/* Qty Box */
.cw-wsc-qty-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 80px;
    width: 100%;
    height: 32px;
    padding: 0;
    background-color: #ffffff;
    border: 1px solid rgba(110, 113, 140, 0.1);
    border-radius: 6px;
}

input[type="number"].cw-wsc-qty,
.woocommerce input[type="number"].cw-wsc-qty {
    width: 0;
    height: 100%;
    padding: 0;
    flex-grow: 1;
    border: none !important;
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-align: center;
}

.cw-wsc-qtb-square input[type="number"].cw-wsc-qty {
    border-top-width: 0;
    border-bottom-width: 0;
}

span.cw-wsc-chng {
    min-width: 22px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #717171;
    font-size: 16px;
    font-weight: 600;
    user-select: none;
}

span.cw-wsc-minus.cw-wsc-chng {
    border-right: 1px solid rgba(110, 113, 140, 0.1);
}

span.cw-wsc-plus.cw-wsc-chng {
    border-left: 1px solid rgba(110, 113, 140, 0.1);
}

span.cw-wsc-chng:hover {
    color: #D72544;
}

.cw-wsc-product dl.variation {
    flex-wrap: wrap;
}



.cw-wsc-qtb-circle .cw-wsc-chng {
    border-radius: 50%;
    height: 70%;
    align-self: center;
}

.cw-wsc-qtb-circle input[type="number"].cw-wsc-qty {
    margin: 0 5px;
}

input.cw-wsc-qty::-webkit-outer-spin-button,
input.cw-wsc-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input.cw-wsc-qty[type=number] {
    -moz-appearance: textfield;
}

/* Variation */
.cw-wsc-product dl.variation dd,
.cw-wsc-product dl.variation dt {
    margin: 0 4px 0 0;
    display: inline-block;
    float: left;
    font-style: normal;
}

.cw-wsc-product dl.variation dt {
    clear: left;
}

.cw-wsc-product dl.variation,
.cw-wsc-product dl.variation p {
    margin: 0;
    font-size: 13px;
}

.cw-wsc-product dl.variation {
    margin-bottom: 6px;
}

/** Slider **/

.cw-wsc-sl-content {
    display: none;
    overflow: auto;
    flex-direction: column;
}

.cw-wsc-sl-content[style*='block'] {
    display: flex !important;
}

.cw-wsc-sl-heading {
    display: flex;
    font-size: 18px;
    font-weight: 500;
    padding: 20px;
    align-items: center;
}

.cw-wsc-slc-active.cw-wsc-sl-content {
    display: block;
}

.cw-wsc-sl-body {
    padding: 10px 20px;
    flex-grow: 1;
    overflow: auto;
}

span.cw-wsc-slider-close {
    margin: 0 10px 0 0;
    cursor: pointer;
}

/** SLider Shipping */

ul.cw-wsc-shipping-methods {
    list-style-type: none;
    margin: 0 0 20px;
    padding: 0;
    display: table;
}


input.cw-wsc-shipping-method {
    margin-right: 5px;
}

ul.cw-wsc-shipping-methods li {
    list-style-type: none;
    margin: 0 0 7px 0;
    padding: 0;
}

ul.cw-wsc-shipping-methods li label {
    color: #414353;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
}

ul.cw-wsc-shipping-methods li input[type=radio] {
    display: inline-block !important;
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0 0.5em 0 0 !important;
    background-color: #ffffff;
    border: 1px solid rgba(59, 58, 73, 0.2);
    border-radius: 4px;
    box-shadow: none !important;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 1;
    cursor: pointer;
}

ul.cw-wsc-shipping-methods li input[type=radio]:checked {
    background-color: #D72544;
    border-color: #D72544;
}

ul.cw-wsc-shipping-methods li input[type=radio]:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='12' viewBox='0 0 15 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath d='M14.412 1.794L4.638 11.561L0 6.923L1.794 5.129L4.638 7.974L12.618 0L14.412 1.794Z' fill='%23FFFFFF'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 11px;
    background-position: center;
    opacity: 0;
}

ul.cw-wsc-shipping-methods li input[type=radio]:checked:after {
    opacity: 1;
}

ul.cw-wsc-shipping-methods li label .woocommerce-Price-amount {
    font-size: 13px;
}

ul.cw-wsc-shipping-methods .shipping_pickup_cart {
    font-size: 80%;
}

ul.cw-wsc-shipping-methods br {
    display: none;
}

.cw-wsc-shipping-destination span:nth-child(1) {
    color: #777;
    font-weight: 600;
    margin-right: 8px;
    font-size: 16px;
}

.cw-wsc-shipping-destination {
    display: table;
    margin: 0;
    margin-bottom: 20px;
    font-size: 16px;
}

.select2-dropdown {
    z-index: 999999;
}

.cw-wsc-slider section.shipping-calculator-form {
    display: block !important;
    margin: 0;
    padding: 0;
}

.cw-wsc-slider a.shipping-calculator-button {
    display: none;
}

.woocommerce-checkout .cw-wsc-sl-content.cw-wsc-sl-shipping,
.woocommerce-checkout .cw-wsc-ft-amt-label .cw-wsc-toggle-slider span {
    display: none !important;
}


.woocommerce-checkout .cw-wsc-ft-amt {
    pointer-events: none;
}

.cw-wsc-slider button[name="calc_shipping"] {
    display: table;
    margin: 0 auto;
}

.cw-wsc-slider section.shipping-calculator-form>p {
    margin: 0 0 30px 0;
    padding: 0;
}

.cw-wsc-slider section.shipping-calculator-form input,
.cw-wsc-slider section.shipping-calculator-form select {
    width: 100%;
}

.cw-wsc-slider .woocommerce-shipping-calculator {
    padding: 0;
    margin: 0;
}

/** SLIDER Coupon **/
.cw-wsc-coupon-row>span {
    display: block;
    margin-bottom: 9px;
}

span.cw-wsc-cr-code {
    display: inline-block;
    text-transform: uppercase;
    border: 1px solid;
    padding: 1px 20px;
}

.cw-wsc-coupon-row {
    padding: 0 15px 30px;
    border-bottom: 1px dashed #afafaf;
    margin-bottom: 30px;
}

span.cw-wsc-cr-off {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 0;
}

form.cw-wsc-sl-apply-coupon {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin: 20px 0;
    padding: 6px;
    background-color: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
}

.cw-wsc-sl-applied>div {
    display: flex;
    text-transform: uppercase;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

span.cw-wsc-remove-coupon {
    text-transform: none;
    cursor: pointer;
    font-size: 11px;
    margin-left: 2px;
}

.cw-wsc-sl-applied {
    font-size: 13px;
    margin-bottom: 20px;
}

.cw-wsc-sl-applied>div .cw-wsc-slc-saved {
    color: #4CAF50;
    font-weight: 600;
}

span.cw-wsc-slc-remove {
    font-weight: 600;
}

span.cw-wsc-clist-label {
    text-transform: uppercase;
    color: #777;
    font-weight: bold;
    text-align: center;
    font-size: 12px;
    padding: 0 20px;
    display: inline-block;
    margin: 20px 0;
    text-align: center;
}

.cw-wsc-clist-section {
    border: 1px solid #eee;
    margin-bottom: 35px;
    font-size: 13px;
    padding: 0 25px;
}

.cw-wsc-coupon-row:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.cw-wsc-coupon-row>span:last-child {
    margin-bottom: 0;
}

span.cw-wsc-slc-remove .cw-wsc-remove-coupon {
    display: block;
    text-align: right;
}

/* Coupon in main */
.cw-wsc-ft-extras form.cw-wsc-sl-apply-coupon {
    margin: 5px 0;
}

.cw-wsc-ft-extras .cw-wsc-slc-remove {
    display: flex;
    align-items: center;
}

.cw-wsc-ft-extras .cw-wsc-remove-coupon {
    margin-left: 5px;
}

.cw-wsc-ft-extras .cw-wsc-slc-saved {
    display: none;
}

.cw-wsc-ft-extras .cw-wsc-sl-applied {
    display: table;
    margin: 0 auto 5px;
}


/** Footer */
.cw-wsc-ftx-row {
    padding: 8px 0;
    border-top: 1px solid #f3f3f3;
    font-size: 14px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f3f3f3;
}

span.cw-wsc-ftx-icon {
    margin-right: 5px;
    font-size: 17px;
}


.cw-wsc-ftx-coups>div {
    flex-grow: 1;
}

.cw-wsc-ftx-coups {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 7px;
}

.cw-wsc-remove-coupon {
    display: inline-flex;
    align-items: center;
    text-transform: none;
    cursor: pointer;
    margin-right: 3px;
}

.cw-wsc-remove-coupon span {
    color: red;
    margin-left: 2px;
}


.cw-wsc-ft-buttons-cont {
    display: grid;
    text-align: center;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

a.cw-wsc-ft-btn,
.cw-wsc-markup .cw-wsc-btn,
.woocommerce a.cw-wsc-ft-btn,
.woocommerce .cw-wsc-markup .cw-wsc-btn {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 56px;
    padding: 0 20px;
    background-color: #D72544;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.23;
    letter-spacing: 0;
    text-transform: none;
    border: none;
    border-radius: 6px;
    transition: .2s;
    cursor: pointer;
    overflow: hidden;
}

a.cw-wsc-ft-btn:hover,
.cw-wsc-markup .cw-wsc-btn:hover,
.woocommerce a.cw-wsc-ft-btn:hover,
.woocommerce .cw-wsc-markup .cw-wsc-btn:hover {
    background-color: #922339;
    text-decoration: none;
    border: none;
}

.cw-wsc-ft-buttons-cont a.cw-wsc-ft-btn:only-child {
    grid-column: 1/-1;
}


/** FOOTER Totals **/
.cw-wsc-ft-totals {
    width: 100%;
    padding: 10px 0;
}

.cw-wsc-ft-amt {
    padding: 3px;
    display: flex;
    justify-content: space-between;
}

.cw-wsc-ft-amt-value .cw-wsc-toggle-slider {
    cursor: pointer;
    margin-left: 5px;
}

span.cw-wsc-ft-amt-label {
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 500;
}

.cw-wsc-toggle-slider {
    cursor: pointer;
}

.cw-wsc-ft-amt-shipping .cw-wsc-toggle-slider span {
    margin-left: 5px;
}

.cw-wsc-ft-amt-label {
    flex-grow: 1;
    padding-right: 10px;
}

.cw-wsc-ft-amt-value {
    text-align: right;
}

.cw-wsc-ft-amt-total .cw-wsc-ft-amt-value .woocommerce-Price-amount.amount {
    font-size: 15px;
    font-weight: 800;
}

/** SUGGESTED PRODUCTS **/
span.cw-wsc-sp-heading {
    text-align: center;
    display: block;
    padding: 0 20px;
    font-weight: 600;
}

.cw-wsc-sp-product {
    padding: 0 15px;
}

.cw-wsc-sp-container {
    padding: 10px 0;
}

.cw-wsc-sp-left-col {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 25%;
    width: 25%;
    flex-shrink: 0;
}

.cw-wsc-sp-left-col img,
.cw-wsc-sp-left-col {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    margin: 0 auto;
    border-radius: 5px;
}

.cw-wsc-sp-prod-cont {
    margin-bottom: 10px;
}

.cw-wsc-sp-wide .cw-wsc-sp-product,
.cw-wsc-sp-narrow .cw-wsc-sp-product {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #FFFFFF;
    border: 1px solid rgba(110, 113, 140, 0.1);
    border-radius: 5px;
    line-height: 1.2;
}

.cw-wsc-sp-right-col {
    padding-left: 18px;
    position: relative;
    max-width: 80%;
    overflow: hidden;
}

.cw-wsc-sp-wide .cw-wsc-sp-right-col,
.cw-wsc-sp-narrow .cw-wsc-sp-right-col {
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    justify-content: center;
    display: flex;
}

.cw-wsc-sp-column .cw-wsc-sp-prod-cont,
.cw-wsc-sp-column .cw-wsc-sp-rc-bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cw-wsc-sp-column .cw-wsc-sp-rc-top {
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.cw-wsc-sp-right-col>span {
    display: block;
}

span.cw-wsc-sp-atc a.button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 30px;
    padding: 0 14px;
    background-color: #D72544;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1;
    border: none;
    border-radius: 6px;
    transition: .2s;
    cursor: pointer;
}

span.cw-wsc-sp-atc a.button:hover {
    color: #ffffff;
    background-color: #922339;
    border: none;
    box-shadow: none;
}

span.cw-wsc-sp-atc a.button span {
    display: none;
}

.cw-wsc-sp-column {
    display: flex;
    flex-direction: column;
}

.cw-wsc-sp-wide .cw-wsc-sp-rc-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.cw-wsc-sp-wide .cw-wsc-sp-rc-bottom .cw-wsc-sp-price {
    margin-bottom: 10px;
}

.cw-wsc-sp-wide .cw-wsc-sp-rc-bottom .woocommerce-Price-amount.amount {
    color: #2D2E39;
    font-size: 14px;
    font-weight: 700;
}

span.cw-wsc-sp-title {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.cw-wsc-sp-container .lSAction>.lSPrev {
    background-image: url(../images/arrow-left.png);
    background-position: center center;
    left: 0;
}

.cw-wsc-sp-container .lSAction>.lSNext {
    background-image: url(../images/arrow-right.png);
    background-position: center center;
    right: 0;
}

.cw-wsc-sp-container .lSAction>a {
    background-size: 50%;
    background-repeat: no-repeat;
    max-width: 22px;
}

.cw-wsc-sp-narrow .cw-wsc-sp-rc-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-grow: 1;
}

.cw-wsc-sp-container ul.lSPager.lSpg {
    display: none;
}

.cw-wsc-sp-wide .cw-wsc-sp-rc-top {
    padding-bottom: 6px;
}

.cw-wsc-payment-btns {
    display: flex;
    align-items: center;
    justify-content: center;
}


.cw-wsc-payment-btns p {
    padding: 0 !important;
    margin: 0 !important;
    display: block;
}

.cw-wsc-payment-btns>* {
    flex-grow: 1;
    margin-top: 8px !important;
}

.cw-wsc-payment-btns .widget_shopping_cart {
    margin: 0;
    padding: 0;
}

.cw-wsc-payment-image {
    padding-top: 18px;
    display: flex;
    justify-content: center;
}

.cw-wsc-payment-image img {
    display: block;
    max-width: 100%;
    max-height: 26px;
}

.cw-wsc-sp-products {
    list-style: none;
    margin: 0;
    padding: 0 20px 20px;
}

.cw-wsc-body .cw-wsc-sp-container {
    background-color: #ffffff;
}

.cw-wsc-body .cw-wsc-sp-container .cw-wsc-sp-products .cw-wsc-sp-product {
    padding: 14px;
}

.cw-wsc-body .cw-wsc-sp-container span.cw-wsc-sp-heading {
    text-align: left;
    padding: 6px 20px;
}

/* Bundled product */

.cw-wsc-product.cw-wsc-is-parent {
    border-bottom: 0;
    padding-bottom: 0;
}

.cw-wsc-product.cw-wsc-is-child img {
    max-width: 50px;
    margin-left: auto;
    float: right;
}

.cw-wsc-product.cw-wsc-is-child {
    padding-top: 5px;
}

.cw-wsc-empty-cart {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cw-wsc-empty-cart>* {
    margin-bottom: 20px;
}


span.cw-wsc-ecl {
    font-size: 13px;
    cursor: pointer;
    display: table;
    padding: 10px;
    margin-left: auto;
}

.cw-wsc-payment-btns p.wc-apa-button-separator {
    display: none !important;
}

.cw-wsc-payment-btns {
    display: flex;
    flex-wrap: wrap;
}

.cw-wsc-payment-btns>* {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 100px;
    margin-right: 5px;
}


.cw-wsc-payment-btns div#pay_with_amazon_cart {
    height: 59px !important;
}

.cw-wsc-payment-btns .woocommerce-mini-cart__buttons.buttons {
    max-height: 40px;
    overflow: hidden;
}

.cw-wsc-payment-btns p#ppc-button-minicart {
    min-width: 150px;
}

span.cw-wsc-footer-txt {
    text-align: center;
    margin: 10px auto 10px;
    display: block;
    font-size: 90%;
}

span.cw-wsc-del-txt {
    font-size: 11px;
    text-transform: uppercase;
}

.cw-wsc-img-col .cw-wsc-smr-del {
    text-align: center;
    display: block;
}

.cw-wsc-pprice,
.cw-wsc-smr-ptotal {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}



/* Pattern Card */
.cw-wsc-pattern-card {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 20px;
}

.cw-wsc-pattern-card .cw-wsc-product {
    flex-direction: column;
    position: relative;
    border-bottom: 0;
    padding: 0;
    height: 100%;
    margin: 0;
}

.cw-wsc-pattern-card span.cw-wsc-smr-del {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 10px;
    margin-top: 0;
}

.cw-wsc-pattern-card .variation {
    justify-content: center;
}

.cw-wsc-loader-icon {
    display: none;
}

.cw-wsc-loading .cw-wsc-loader-icon {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 47%;
    left: 49%;
    z-index: 11;
    font-size: 24px;
    animation: cw-wsc-spin 2s linear infinite;
    display: block;
}

@keyframes cw-wsc-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cw-wsc-sm-back,
.cw-wsc-sm-front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cw-wsc-sm-back-cont {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: auto;
}

.cw-wsc-img-col.cw-wsc-caniming {
    z-index: 10;
}

.cw-wsc-sm-front {
    z-index: 1;
    height: 100%;
}

.cw-wsc-sm-front:has(.cw-wsc-sm-emp+*) {
    padding: 5px 10px;
}

.cw-wsc-card-cont {
    position: relative;
}

.cw-wsc-sm-back {
    padding: 10px;
    min-height: 100%;
}

a.cw-wsc-smr-link i {
    margin-right: 3px;
}

a.cw-wsc-smr-link {
    opacity: 0.7;
    font-size: 14px;
}


.cw-wsc-sm-front:has(.cw-wsc-sm-emp+*) .cw-wsc-sm-emp {
    display: none;
}

.cw-wsc-qty-price {
    display: flex;
    width: auto;
    align-items: center;
    padding: 0;
    font-size: 0px;
}

.cw-wsc-pattern-card .cw-wsc-qty-price {
    justify-content: center;
}

.cw-wsc-qty-price:has(.cw-wsc-card-ptotal) {
    justify-content: space-between;
}

.cw-wsc-sm-back .cw-wsc-qty-price {
    position: absolute;
    bottom: 10px;
}

input[name="cw-wsc-slcf-input"] {
    flex-grow: 1;
}

form.cw-wsc-sl-apply-coupon button.cw-wsc-btn,
.wwocommerce form.cw-wsc-sl-apply-coupon button.cw-wsc-btn,
.cw-wsc-markup form.cw-wsc-sl-apply-coupon button.cw-wsc-btn,
.wwocommerce .cw-wsc-markup form.cw-wsc-sl-apply-coupon button.cw-wsc-btn {
    height: auto;
    font-size: 14px;
}

form.cw-wsc-sl-apply-coupon button.cw-wsc-btn:hover,
.wwocommerce form.cw-wsc-sl-apply-coupon button.cw-wsc-btn:hover,
.cw-wsc-markup form.cw-wsc-sl-apply-coupon button.cw-wsc-btn:hover,
.wwocommerce .cw-wsc-markup form.cw-wsc-sl-apply-coupon button.cw-wsc-btn:hover {
    box-shadow: none;
}

form.cw-wsc-sl-apply-coupon input[name="cw-wsc-slcf-input"] {
    height: 44px;
    padding: 0 14px;
    margin: 0;
    border: none !important;
    outline: none !important;
    background-color: transparent;
    color: #000000;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.23;
    text-align: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

form.cw-wsc-sl-apply-coupon input[name="cw-wsc-slcf-input"]::placeholder {
    color: #000000;
    opacity: 1;
    /* Firefox */
}

form.cw-wsc-sl-apply-coupon input[name="cw-wsc-slcf-input"]::-ms-input-placeholder {
    /* Edge 12-18 */
    color: #000000;
}

form.cw-wsc-sl-apply-coupon .cw-wsc-btn {
    margin-right: 0;
}

/* Drawer */

.cw-wsc-drawer {
    z-index: 999998;
    visibility: hidden;
    border-right: 1px solid rgba(110, 113, 140, 0.1);
}


.cw-wsc-drawer-modal {
    display: none;
}

.cw-wsc-dr-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}


.cw-wsc-drawer span.cw-wsc-sp-heading {
    display: none;
}

ul.cw-wsc-sp-slider {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.cw-wsc-drawer .cw-wsc-sp-container {
    margin: 0;
}


.cw-wsc-dr-body {
    flex-grow: 1;
    overflow: auto;
}


.cw-wsc-sp-column li.cw-wsc-sp-prod-cont {
    align-items: stretch;
    justify-content: center;
}

.cw-wsc-sp-column .cw-wsc-sp-right-col {
    padding-left: 0;
    text-align: center;
}

.cw-wsc-sp-column .cw-wsc-sp-rc-top>*,
.cw-wsc-sp-column .cw-wsc-sp-rc-bottom>* {
    padding-bottom: 3px;
}

.cw-wsc-sp-column .cw-wsc-sp-left-col img {
    display: table;
    margin: 0 auto 3px;
}

.cw-wsc-sp-column ul.cw-wsc-sp-slider {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}

.cw-wsc-drawer .cw-wsc-sp-container {
    padding: 0;
}

.cw-wsc-footer .cw-wsc-sp-container {
    margin-top: 10px;
}

.cw-wsc-body .cw-wsc-ft-totals {
    width: auto;
}

a.cw-wsc-ft-btn-checkout .amount {
    font-style: italic;
}

a.cw-wsc-ft-btn-checkout .amount:before {
    content: "-";
    margin: 0 8px;
    font-weight: bold;
}

span.cw-wsc-dtg-icon {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    background-color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s;
    display: none;
}

.cw-wsc-cart-active .cw-wsc-dtg-icon {
    display: flex;
}

.cw-wsc-drawer-active .cw-wsc-modal .cw-wsc-dtg-icon,
.cw-wsc-disabled.cw-wsc-dtg-icon {
    opacity: 0;
}

.cw-wsc-drawer .cw-wsc-dtg-icon {
    opacity: 0;
}

.cw-wsc-drawer-active .cw-wsc-drawer .cw-wsc-dtg-icon {
    opacity: 1;
}

/*Child selector except last */
.cw-wsc-is-child:has(+.cw-wsc-is-child),
.cw-wsc-is-parent+.cw-wsc-is-child {
    padding-bottom: 5px;
    padding-top: 10px;
    margin-top: 0;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: 0 0;
    border-bottom: 0;
}

.cw-wsc-product.cw-wsc-is-parent {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Only last child */
.cw-wsc-product.cw-wsc-is-child:not(:has(+ *)),
.cw-wsc-is-child:has(+ .cw-wsc-product:not(.cw-wsc-is-child)) {
    margin-top: 0;
    padding-top: 5px;
}

.cw-wsc-pprice .woocommerce-Price-amount {
    color: #2D2E39;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.cw-wsc-pprice ins {
    text-decoration: none;
}

.cw-wsc-pprice ins .woocommerce-Price-amount {
    color: #CC4D3B;
}

.cw-wsc-product del {
    text-decoration: line-through;
    display: inline-flex;
}

.cw-wsc-product del~ins {
    font-weight: 600;
    text-decoration: none;
}

.cw-wsc-product del .amount {
    color: #626262;
    font-size: 13px;
    font-weight: 600;
}

/* USP slider */

.cw-wsc-usp-slider {
    width: 100%;
    padding-top: 18px;
}

.cart-usp-slider {
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, transparent 100%);
  }
  
  .cart-usp {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #3F4E6A;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    margin-right: 20px;
  }
  
  .cart-usp .cart-usp-icon {
    display: block;
    margin-right: 5px;
  }
  
  .cart-usp .cart-usp-icon img {
    display: block;
    width: 14px;
    height: 14px;
    object-fit: contain;
  }
  
  @media screen and (max-width: 479px) {
    .cart-usp {
      font-size: 12px;
    }
  }