.woocommerce .woocommerce-breadcrumb {
    margin: 0 !important;
}

.woocommerce div.quantity {
    display: flex;
    align-items: center;
}

.woocommerce div.quantity .qty {
    text-align: center;
    -moz-appearance: textfield;
    outline: none !important;
    height: 42px !important;
    width: 58px !important;
    max-height: 50px !important;
    border-radius: 0 !important;
    text-align: center !important;
    border-color: #ddd;
}

@media ( max-width: 500px ) {

    .woocommerce div.quantity .qty {
        width: 48px !important;
    }

}

/* Chrome, Safari, Edge, Opera */
.woocommerce div.quantity .qty::-webkit-outer-spin-button,
.woocommerce div.quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ywraq-wrapper div.quantity .wc-quant-minus,
.ywraq-wrapper div.quantity .wc-quant-plus,
.woocommerce-cart div.quantity .wc-quant-minus,
.woocommerce-cart div.quantity .wc-quant-plus,
.woocommerce div.quantity .wc-quant-minus,
.woocommerce div.quantity .wc-quant-plus {
    width: 42px;
    background-color: #fff;
    color: var(--fs-text-color);
    outline: none;
    border: none;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-weight: normal;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    height: 42px !important;
    background-image: none;
}

.woocommerce-cart div.quantity .wc-quant-minus,
.woocommerce div.quantity .wc-quant-minus {
    border-left: 1px solid #ddd;
}

.woocommerce-cart div.quantity .wc-quant-plus,
.woocommerce div.quantity .wc-quant-plus {
    border-right: 1px solid #ddd;
}

.woocommerce form.cart .button-variable-item {
    height: 42px;
    border: 1px solid #ddd;
    box-shadow: none !important;
}

.woocommerce form.cart .button-variable-item.selected {
    border: 1px solid #333;
}

.woocommerce form.cart .color-variable-item, .woocommerce form.cart .color-variable-item span {
    border-radius: 50% !important;
}

.woocommerce form.cart .color-variable-item span:after {
    box-shadow: none !important;
}

.woocommerce form.cart .added_to_cart {
    display: none !important;
}

.woocommerce form.cart .bfm-button-container {
    display:none;
}

.woocommerce form.cart .woocommerce-variation-description {
    display: none !important;
}

.woocommerce form.cart th, .woocommerce form.cart td {
    background-color: #fff;
    padding: 0;
    line-height: 1;
    text-align: left;
    margin-bottom: 10px;
}

.woocommerce form.cart .woocommerce-variation-price {
    margin-bottom: 20px;
}

.woocommerce form.cart .woocommerce-variation-price span {
    color: #111 !important;
    font-weight: bold;
}

.woocommerce form.cart table.variations tr {
    display: flex;
    flex-direction: column;
}

.woocommerce form.cart table.variations tr td {
    width: 100% !important;
}

.woocommerce form.cart table.variations tr td.value::before {
    content: none !important;
}

.woocommerce form.cart .woo-selected-variation-item-name {
    display: none !important;
}

.woocommerce form.cart .stock,
.woocommerce form.cart .out-of-stock {
    color: #111 !important;
}








/** PRODUCT CARD **/

.dp-product {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    position: relative;
}
/*
.dp-product:hover {
    -webkit-transition: all .3s cubic-bezier(.25,.8,.25,1);
    transition: all .3s cubic-bezier(.25,.8,.25,1);
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 15%);
}
*/

.product.outofstock .dp-product::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    background-color: #ffffff75;
    z-index: 10;
    cursor: initial;
}

.product.outofstock .dp-product::after {
    content: "SLUTSÅLD";
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    background-color: #ffffff75;
    z-index: 10;
    font-size: 30px;
    font-weight: 600;
    color: #5a5a5a;
    cursor: initial;
}

@media ( max-width: 600px ) {

    .product.outofstock .dp-product::after {
        top: 20%;
        height: 60px;
        font-size: 20px;
    }

}

.dp-product .image {
    display: flex;
    align-items: center;
    position: relative;
}

.dp-product .image a.thumbnail {
    margin: 0;
    width: 100%;
    height: 100%;
}

.dp-product .image img {
    margin: 0 !important;
    display: block;
}

.dp-product .image .dp-tag {
    position: absolute;
    left: 10px;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 3px;
    font-weight: 600;
    z-index: 2;
    top: 10px;
}

.dp-product .image .dp-tag:nth-child(2) {
    top: 40px;
}

.dp-product .image .dp-tag:nth-child(3) {
    top: 70px;
}

@media ( max-width: 500px ) {

    .dp-product .image .dp-tag {
        padding: 2px 5px;
        font-size: 8px;
        top: 5px;
        left: 5px;
    }

    .dp-product .image .dp-tag:nth-child(2) {
        top: 25px;
    }
    
    .dp-product .image .dp-tag:nth-child(3) {
        top: 45px;
    }

}

.dp-product .image a.dp-quickview {
    position: absolute;
    bottom: 10px;
    right: 10px;
    border-radius: 0;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #111;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    font-size: 20px;
}

.dp-product:hover .image a.dp-quickview {
    opacity: 0.9;
}

.dp-product .image .dp-add-to-cart {
    position: absolute;
    bottom: 15px;
    left: 10px;
    width: 24px;
    height: 26px;
    border: 2px solid #111;
    background-color: transparent;
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    opacity: 0;
    font-weight: bold;
    padding: 0;
    outline: none;
    border-radius: 0;
    transition: opacity 0.4s ease-in-out;
}

.dp-product .image .dp-add-to-cart::after {
    border: 2px solid #111;
    border-bottom: 0;
    border-top-left-radius: 99px;
    border-top-right-radius: 99px;
    bottom: 100%;
    content: " ";
    height: 8px;
    left: 50%;
    margin-bottom: 0;
    margin-left: -7px;
    pointer-events: none;
    position: absolute;
    transition: height .1s ease-out;
    width: 14px;
}

.dp-product .image .dp-add-to-cart:hover::after {
    height: 10px;
}

.dp-product .image .dp-add-to-cart:hover {
    background-color: #111;
    color: #fff;
}

li.product:not(.outofstock) .dp-product .image:hover .dp-add-to-cart {
    opacity: 0.9;
}

.dp-product .image .sale-bubble {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: var(--e-global-color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.dp-product .body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    justify-content: space-between;
}

.dp-product .body .rating .star-rating {
    margin: 0;
	float: none;
    font-size: 1rem !important;
}

.dp-product .body .rating .star-rating::before {
    content: "SSSSS";
    color: #dddddd;
}

.dp-product .body .rating .star-rating span::before {
    color: orange;
}

.dp-product .body .category {
    font-size: 0.8rem;
    color: #8f8f8f;
    line-height: 1.3;
}

.dp-product .body .title {
    line-height: 1;
}

.dp-product .body .title a {
    font-size: 1rem;
    color: #111;
    font-weight: 600;
}

.dp-product .body .price {
    color: #111 !important;
    margin: 0;
    font-size: 1rem !important;
    margin: 0 !important;
}

.dp-product .body .desc {
    display: none;
}

.dp-product .body .readmore {
    display: none;
}

.dp-product .body .button-add-cart {
    display: flex;
    flex-direction: column;
}

.dp-product .body .colors {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.dp-product .body .colors .color {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.dp-product .body .colors .color img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.dp-product .body .colors .color.active {
    outline: 1px solid #222;
    outline-offset: 2px;
}

.dp-product .body .colors .color.white {
    border: 1px solid #ddd;
}

@media ( max-width: 600px ) {

    .dp-product .image .sale-bubble {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .dp-product .body .colors .color {
        width: 20px;
        height: 20px;
    }
    
    .dp-product .body .colors .color.active {
        outline: 1px solid #222;
        border: 2px solid #fff;
    }

}

/** GALLERY **/

.dp-product .gallery-images {
    display: none;
}

.dp-product .gallery-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 26px;
    color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    outline: none;
}

.dp-product .image:hover .gallery-button {
    opacity: 1;
}

.dp-product .image .gallery-button:focus,
.dp-product .image .gallery-button:hover {
    background-color: #f3f0f0;
    color: #222;
}

.dp-product .gallery-button.prev {
    left: 2px;
}

.dp-product .gallery-button.next {
    right: 2px;
}

/** QUICKVIEW **/

.dp-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 9999999999;
}

.dp-popup-container.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dp-popup-container .dp-popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    overflow-y: auto;
    max-height: 90%;
    width: 1000px;
    max-width: 90%;
}

.dp-popup-container .dp-popup-content.animate__animated {
    animation-duration: 300ms !important;
}

.dp-popup-container .dp-popup-content h1,
.dp-popup-container .dp-popup-content h2,
.dp-popup-container .dp-popup-content h3,
.dp-popup-container .dp-popup-content h4 {
    margin: 0;
}

.dp-quickview-product {
    display: flex;
    gap: 50px;
}

@media ( max-width: 600px ) {
    .dp-quickview-product {
        flex-direction: column;
    }
}

.dp-quickview-product .image {
    flex: 0 0 40%;
}

.dp-quickview-product .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dp-quickview-product button {
    font-weight: 600 !important;
    color: #FFFFFF !important;
    background-color: var(--e-global-color-primary) !important;
    border-radius: 8px 8px 8px 8px !important;
    padding: 12px 25px 12px 25px !important;
    outline: none !important;
}

.dp-quickview-product button:hover {
    color: #FFFFFF !important;
    background-color: var(--e-global-color-secondary) !important;
}

.dp-quickview-product.product-type-simple form {
    display: flex;
    gap: 10px;
}

.dp-quickview-product .info .rating .star-rating {
    float: none;
}

.dp-quickview-product .info .rating .star-rating::before {
    color: #ddd;
}

.dp-quickview-product .info .rating .star-rating span::before {
    color: orange;
}

