.shopcart-configurations {
    font-style: italic;
    font-weight: 400;
}

.shopcart-configurations .discount-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 2px 0;
    border-radius: 10px;
    font-weight: 500;
    line-height: 1.3;
    user-select: none;
}

.shopcart-configurations .discount-icon {
    padding: 0;
    min-width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    transition: all 300ms ease-in-out;
    margin-left: 6px;
}

.shopcart-item.shopcart-subtotal.discount-value,
.js-cart-subtotal-value {
    color: #C52C29;
}

.shopcart-configurations .copy-text {
    position: absolute;
    padding: 3px 8px;
    border-radius: 3px;
    background-color: #000;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 300ms ease-in-out;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.shopcart-configurations .copy-text small {
    font-size: 12px;
    min-width: fit-content;
    min-width: -moz-fit-content;
    white-space: nowrap;
}

.shopcart-configurations .copy-text:after {
    right: 100%;
	top: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0, 0, 0, 0);
	border-right-color: #000;
	border-width: 4px;
	margin-top: -4px;
}

.shopcart-configurations .discount-icon:hover {
    color: #ff7300
}

.shopcart-configurations .discount-icon:hover .copy-text {
    opacity: 1 !important;
    transform: translateX(0);
}

.config-item {
    padding-right: 10px;
}

.skeleton-box {
    display: block;
    height: 16px;
    margin: 0;
    position: relative;
    overflow: hidden;
    background-color: #f1f1f1;
    border-radius: 3px;
}
.skeleton-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
    animation: shimmer 1800ms infinite;
    pointer-events: none;
}
@-webkit-keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}
@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.blog-post__headline {
    font-size: 1.25em;
    font-weight: bold;
}
.blog-post__meta {
    font-size: 0.85em;
    color: #6b6b6b;
}

.o-media {
    display: flex;
}
.o-media__body {
    flex-grow: 1;
    margin-left: 1em;
}

.o-vertical-spacing > * + * {
    margin-top: 0.75em;
}
.o-vertical-spacing--l > * + * {
    margin-top: 2em;
}

* {
    box-sizing: border-box;
}
.checkout-popup-variant-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.checkout-popup-variant-wrapper > * {
    width: 100%;
    order: 10;
}

.checkout-popup-variant-wrapper div[data-slug="color"] {
    order: 1;
}
@media (min-width: 760px) {
    .shopcart-configurations .copy-text {
        left: 100%;
        transform: translateX(-10px);
    }
    .shopcart-configurations .copy-text:after {
        right: 100%;
    	top: 50%;
    	border: solid transparent;
    	content: "";
    	height: 0;
    	width: 0;
    	position: absolute;
    	pointer-events: none;
    	border-color: rgba(0, 0, 0, 0);
    	border-right-color: #000;
    	border-width: 4px;
    	margin-top: -4px;
    }

    .copy-done {
        display: none;
    }

}

.form-shopcart {
    --cartRCL: 400px;
    --borderRadius: 5px;
    display: flex;
    justify-content:flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cart-left-wrapper,
.cart-right-wrapper {
    position: relative;
    width: 100%;
}

.cart-right-wrapper {
    padding: var(--pr-spacing-04);
    background-color: #f8f8f8;
    border-radius: 5px;
    margin-bottom: 0.8rem;
    position: relative;
}

.autocomplate-content.content-select-country {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11 11 11 / 20%);
    z-index: 1119999;
}

.content-select-country-content {
    width: 92vw;
    max-width:500px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    background-color: #fff;
    box-shadow: 0 6px 342px rgba(11 11 11 / 20%);
    z-index: 20;
    border-radius: var(--borderRadius);
}

.content-select-country-header {
    font-size: 17px;
    font-weight: 500;
    user-select: none;
    margin-bottom: 6px;;
}

.content-select-country-content .search {
    position: sticky;
    top: 0;
    left: 0;
    padding: 16px 16px;
    background-color:#fff;
    border-radius: var(--borderRadius);
}

.content-select-country-action {
    display: flex;
    justify-content: center;
    align-items:stretch;
    margin-top: 16px;
}

.content-select-country-content .content-select-country-action button {
    border: none;
    color: #fff;
    background-color: #ff7300;
    outline: none;
    cursor: pointer;
    user-select: none;
    border-radius: 24px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 16px;
}

.content-select-country-content .search button:focus,
.content-select-country-content .search button:active {
    background-color: #ff7300;
}

.content-select-country-content .search .select,
.content-select-country-content .search .select:focus,
.content-select-country-content .search .select:active {
    display: block;
    width: 100%;
    padding: 10px;
    outline: none  !important;
    border: 2px solid #ff7300 !important;
    box-shadow: none  !important;
    background-color: transparent !important;
}

.list-filter-item {
    display: none;
    max-height: 320px;
    margin: 0;
    padding: 0  0 0;
    overflow: hidden auto;
    border-top: 1px solid rgba(11 11 11 / 20%);
}

.search-filter-item {
    list-style: none;
    margin: 0;
    padding: 10px 12px;
    cursor: pointer;
}

.search-filter-item:hover {
    background-color: #fbf2ea;
}
.change-shipping-country {
    color: var(--secondary);
    text-align: right;
}
#cart-module-content .address-col label.openSearchCountry {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    pointer-events: all;
    z-index: 19;
    background-color:rgba(11 11 11 / 0%);
}
#cart-module-content label.content-select-country-wrapper[for=select-country]:before {
    display: none;
}
#cart-module-content .cart-right-wrapper .shopcart-footer.deliveryTextShow {
    padding-right: 8px;
}

.cart-right-wrapper .footer-payment-item img {
    height: 36px;
}

#cart-module-content .content-select-country-wrapper {
    position: relative;
}

#cart-module-content .content-select-country-wrapper .form-control {
    padding: 12px 16px;
    border-radius: 24px;
}

#cart-module-content .content-select-country-wrapper .select-country {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #fff;
    background-image: linear-gradient(0deg,hsla(0,0%,100%,0),#fff);
    padding: 12px 0;
}

#cart-module-content .content-select-country-wrapper .form-control.select {
    background-color: #fff;
    border: 2px solid #e1e1e1 !important;
    border-radius: 24px;
    display: block;
    font-size: 16px;
    padding: 12 16px;
    width: 100%;
    margin: 0;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
    background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%, calc(100% - var(--middle-padding));
    background-size: 5px 5px, 5px 5px, 1px calc(100% - var(--middle-padding));
    background-repeat: no-repeat;
}

#select-country:checked ~ .content-select-country-wrapper .form-control.select {
    background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%);
    background-position: calc(100% - 7px) 50%, calc(100% - 12px) 50%;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    outline: 0;
    border-color: #999 !important;
    box-shadow: 0 0 0 1px #a397e1;
}

#cart-module-content .content-select-country-wrapper .form-control::placeholder {
    color: #999;
}

#cart-module-content label.content-select-country-wrapper[for="select-country"] {
    display: block;
    width: 100%;
    margin: 0;
    top: auto;
    left: auto;
    pointer-events: all;
    height: auto;
    position: relative;
}

.content-select-country-wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(11 11 11 / 11%);
    border-radius: var(--borderRadius);
    cursor: pointer;
    top: 0;
    left: 0;
    z-index: 1;
}

.content-select-country-content {
    position: relative;
}

#select-country {
    position: absolute;
}

#cart-module-content .content-select-country-wrapper .list-country {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    max-height: 295px;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 12px 16px;
    box-shadow: 0 2px 6px rgba(11 11 11 / 11%);
    border-radius: 0 0 5px 5px;
    z-index: 20;
}

#cart-module-content .content-select-country-wrapper .country-region-item {
    padding: 10px 16px;
    user-select: none;
    cursor: pointer;
    font-weight: 400;
}

#cart-module-content .content-select-country-wrapper .country-region-item:hover {
    color: #2792ce;
}

#select-country:checked ~ .content-select-country-wrapper::before {
    display: none;
}

#select-country:checked ~ .content-select-country-wrapper > span.form-control {
    border-radius: 24px 24px 0 0;
}

#select-country:checked ~ .content-select-country-wrapper .list-country {
    pointer-events: all;
    display: block;
}

@media (max-width: 760px) {
    .shopcart-info {
        display: block;
    }

    .shopcart-item-link {
        display: inline !important;
        line-height: 1.3;
    }

    .shopcart-configurations {
        display: block;
    }
    .shopcart-configurations .copy-text {
        right: 100%;
        transform: translateX(10px);
    }

    .shopcart-configurations .copy-text:after {
        left: 100%;
    	top: 50%;
    	border: solid transparent;
    	content: "";
    	height: 0;
    	width: 0;
    	position: absolute;
    	pointer-events: none;
    	border-color: rgba(0, 0, 0, 0);
    	border-left-color: #000;
    	border-width: 4px;
    	margin-top: -4px;
    }

    .shopcart-configurations .discount-box {
        padding: 7px 0
    }

    .copy-done {
        display: block;
    }

    .copy-action {
        display: none;
    }

    .md-add2basket-item {
        max-width: 180px;
    }

}


@media (min-width: 1179px) {
    .cart-left-wrapper {
        width: calc(100% - var(--cartRCL) - 32px);
        padding-right: 32px;
    }
    .cart-right-wrapper {
        width: var(--cartRCL);
    }

    .cart-right-wrapper  .footer-payments-list {
        margin-top: 16px;
        margin-right: 0;
        flex-wrap: nowrap;
    }

    .cart-right-wrapper .footer-ext-wrapper .footer-payments-list {
        justify-content: center
    }

    .cart-right-wrapper .footer-ext-wrapper .footer-payment-item {
        margin: 0 3px;
    }

    #cart-module-content .footer-ext-wrapper .product-detail-addon {
        padding-top: 10px;
    }

    #cart-module-content .shopcart-footer {
        margin-top: 0;
        padding-top: 0;
        justify-content: space-between;
    }
    #cart-module-content .cart-right-wrapper .shopcart-footer:nth-child(n +2) {
        margin-top: 16px;
    }

    #cart-module-content .cart-right-wrapper .btn-to-checkout {
        min-width: 1px
    }
    #cart-module-content .cart-right-wrapper .footer-ext-wrapper {
        display: block
    }

    #cart-module-content .cart-right-wrapper .shopcart-footer .shopcart-qty {
        text-align: left;
        font-weight: 400;
    }

    #cart-module-content .cart-right-wrapper .shopcart-item {
        padding-left: 0;
    }

    #cart-module-content .cart-right-wrapper .footer-ext-wrapper {
        border-top: none;
        margin-top: 0;
    }

    #cart-module-content .cart-right-wrapper .shopcart-footer.deliveryTextShow {
        margin-top: 32px;
    }
    #cart-module-content .cart-right-wrapper .shopcart-footer {
        border-top: none;
    }
}

@media (max-width: 1180px) {
    #cart-module-content .cart-right-wrapper  .shopcart-footer {
        margin-top: 0;
        padding-top: 0;
        justify-content: flex-end;
    }

    #cart-module-content .cart-right-wrapper  .shopcart-footer  > *:nth-child(n + 2) {
        margin-left: 6px;
        min-width: 100px;
    }
    #cart-module-content .cart-right-wrapper .shopcart-footer {
        padding-top: 8px;
    }
    #cart-module-content .cart-right-wrapper .shopcart-footer:nth-child(n +2) {
        margin-top: 8px;
    }
    #cart-module-content .cart-right-wrapper .shopcart-footer.deliveryTextShow {
        margin-top: 8px;
    }

    #cart-module-content .cart-right-wrapper .content-select-country-content .content-select-country-action button {
        margin: 0px;
        margin-top: 10px;
        margin-right: 10px;
    }
    #cart-module-content .cart-right-wrapper .shopcart-footer.deliveryTextShow {
        padding-right: 0px;
    }
}

@media (max-width: 768px) {
    #cart-module-content .cart-right-wrapper {
        margin-top: 16px;
    }
}

.cart-right-wrapper .points-rewards {
    gap: 6px;
    margin-top: 6px;
}