/*
* styling the checkbox animation
*/

.article.item-catalogus-detail .review-succes .icon {
    border: 4px solid #808080;
    border-radius: 50%;
    box-sizing: content-box;
    height: 80px;
    margin: 20px auto 30px auto;
    padding: 0;
    position: relative;
    width: 80px;
}

.article.item-catalogus-detail .review-succes .icon.success {
    border-color: #a5dc86;
    display: block;
}

.article.item-catalogus-detail .review-succes .icon.success::before,
.article.item-catalogus-detail .review-succes .icon.success::after {
    background: #fff none repeat scroll 0 0;
    border-radius: 50%;
    content: '';
    height: 120px;
    position: absolute;
    transform: rotate(45deg);
    width: 60px;
}

.article.item-catalogus-detail .review-succes .icon.success::before {
    border-radius: 120px 0 0 120px;
    left: -33px;
    top: -7px;
    transform: rotate(-45deg);
    transform-origin: 60px 60px 0;
}

.article.item-catalogus-detail .review-succes .icon.success::after {
    border-radius: 0 120px 120px 0;
    left: 30px;
    top: -11px;
    transform: rotate(-45deg);
    transform-origin: 0 60px 0;
}

.icon.success.animate::after {
    animation: 4.25s ease-in 0s normal none 1 running rotatePlaceholder;
}

.article.item-catalogus-detail .review-succes .icon.success .placeholder {
    border: 4px solid rgba(165, 220, 134, 0.2);
    border-radius: 50%;
    box-sizing: content-box;
    height: 80px;
    left: -4px;
    position: absolute;
    top: -4px;
    width: 80px;
    z-index: 2;
}

.article.item-catalogus-detail .review-succes .icon.success .fix {
    background-color: #fff;
    height: 90px;
    left: 28px;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 8px;
    z-index: 1;
}

.article.item-catalogus-detail .review-succes .icon.success .line {
    background-color: #a5dc86;
    border-radius: 2px;
    display: block;
    height: 5px;
    position: absolute;
    z-index: 2;
}

.article.item-catalogus-detail .review-succes .icon.success .line.tip {
    left: 14px;
    top: 46px;
    transform: rotate(45deg);
    width: 25px;
}

.article.item-catalogus-detail .review-succes .icon.success .line.long {
    right: 8px;
    top: 38px;
    transform: rotate(-45deg);
    width: 47px;
}

.article.item-catalogus-detail .review-success-tip {
    animation: 0.75s ease 0s normal none 1 running animate-success-tip;
}

.article.item-catalogus-detail .review-success-long {
    animation: 0.75s ease 0s normal none 1 running animate-success-long;
}

.article.item-catalogus-detail .review-succes .icon.success.animate::after {
    animation: 4.25s ease-in 0s normal none 1 running rotatePlaceholder;
}

.article.item-catalogus-detail .review-succes-shadow {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 50000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.article.item-catalogus-detail .review-succes {
    background-color: #fff;
    position: fixed;
    z-index: 50001;
    border-radius: 5px;
    top: 100px;
    padding: 20px;
    width: 700px;
    left: 50%;
    margin-left: -400px;
}

.article.item-catalogus-detail .review-succes > .text {
    margin: 0 auto;
    width: 80%;
    color: #575757;
}

.article.item-catalogus-detail .review-succes > .close-button {
    float: right;
    padding: 6px 15px;
    margin-top: 30px;
    border-radius: 3px;
    background-color: #198ec7;
    color: #fff;
    cursor: pointer;
}

.article.item-catalogus-detail .review-succes > .close-button:hover {
    background-color: #39a7dc;
}

.catalogus-favorite-login-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.catalogus-favorite-login-popup .content {
    background-color: #ffffff;
    text-align: center;
    position: relative;
    padding: 30px;
}
.catalogus-favorite-login-popup .content button {
    color: #ffffff;
    padding: 2px;
    margin: 0;
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    background: none;
    border: none;
    line-height: 20px;
    font-size: 14px;
}
.catalogus-favorite-login-popup .content button::after {
    content: '\f00d';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    vertical-align: middle;
    margin-left: 5px;
    font-size: 20px;
    transform: rotate(0deg);
    transition: transform 300ms;
    display: inline-block;
}
.catalogus-favorite-login-popup .content button:hover::after {
    transform: rotate(180deg);
}
.catalogus-favorite-login-popup .content a[rel='button'] {
    background-color: #747574;
    padding: 10px 20px;
    transition: background-color 0.2s ease-in-out;
    margin-top: 30px;
    display: inline-block;
}
.catalogus-favorite-login-popup .content a[rel='button']:focus {
    background-color: #525252;
    color: #cccccc;
}
.catalogus-favorite-login-popup .content a[rel='button']:hover {
    background-color: #525252;
}

.article.item-catalogus-detail .pictures {
    position: relative;
}

/* Sticky article info */
.article.item-catalogus-detail .sticky-article-info {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    display: none;
    box-shadow: 0px 3px 6px #00000029;
    z-index: 101;
    padding: 10px;
    align-items: center;
}

.article.item-catalogus-detail .sticky-article-info > :nth-child(n + 2) {
    margin-left: 10px;
}

.article.item-catalogus-detail .sticky-article-info .thumbnail {
    width: 93px;
    height: 93px;
    object-fit: contain;
}

.article.item-catalogus-detail .sticky-article-info .info {
    display: flex;
    flex-flow: column;
    min-width: 0;
    overflow: hidden;
    flex-grow: 1;
}

.article.item-catalogus-detail .sticky-article-info .title {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.article.item-catalogus-detail .sticky-article-info .price-wrap {
    line-height: 22px;
}

.article.item-catalogus-detail .sticky-article-info .old-price {
    text-decoration: line-through;
    color: #707070;
}
.article.item-catalogus-detail .sticky-article-info .price {
    font-size: 20px;
    color: #0068c3;
    font-weight: 500;
}
.article.item-catalogus-detail .sticky-article-info .vat {
    color: #555555;
    font-size: 12px;
    white-space: nowrap;
}

.article.item-catalogus-detail .sticky-article-info .total-review-score .score {
    font-size: 14px;
}

.article.item-catalogus-detail .sticky-article-info .shopping-cart {
    margin-top: 7px;
}

.article.item-catalogus-detail .sticky-article-info .cart-amount {
    margin: 0;
}

.article.item-catalogus-detail .sticky-article-info .cart-amount button {
    border: 1px solid #e8ede8;
    width: 40px;
}

.article.item-catalogus-detail .sticky-article-info .add-to-cart-wrap {
    margin: 0;
    padding: 0;
    display: flex;
}

.article.item-catalogus-detail .sticky-article-info .add-to-cart-wrap .quantity {
    width: 50%;
    padding: 0;
    margin-right: 10px;
}

.article.item-catalogus-detail .sticky-article-info .button-add-to-cart {
    float: none;
    width: 100%;
    font-size: 14px;
}
.article.item-catalogus-detail .sticky-article-info .add-to-cart-wrap .quantity ~ .button-add-to-cart {
    width: 50%;
}

/* Volume discount */
.article.item-catalogus-detail .volume-discount-wrap {
    background: var(--defaultBlue);
    margin: 25px auto;
    padding: 18px 65px 20px 18px;
    position: relative;
    color: var(--defaultWhite);
    overflow: hidden;
}

.article.item-catalogus-detail .volume-discount-wrap .volume-discounts {
    margin: 0;
    padding: 0;
}

.article.item-catalogus-detail .volume-discount-wrap .volume-discount {
    display: block;
}

.article.item-catalogus-detail .volume-discount-wrap .corner {
    position: absolute;
    inset: 0 0 auto auto;
    background: var(--defaultBlack);
    transform: translateX(50%) rotate(45deg);
    transform-origin: 50% 0;
    width: 60px;
    padding: 15px 50% 10px;
    box-sizing: content-box;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    hyphenate-character: '';
}
.article.item-catalogus-detail .volume-discount-wrap .corner::before {
    content: '%';
    font: var(--fa-font-regular);
    font-size: 16px;
    transform: rotate(-45deg);
    display: block;
    line-height: 18px;
    pointer-events: none;
}

/* Product item slider */
.item-catalogus-detail .product-item-slider {
    width: 100%;
    --swiper-theme-color: #000;
}
.item-catalogus-detail .product-item-slider .swiper-slide .zoom {
    padding: 0;
    width: 55px;
    height: 55px;
    border-radius: 100%;
    text-align: center;
    transition: opacity 0.25s ease;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 30px;
    line-height: 55px;
    opacity: 0;
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
}
.item-catalogus-detail .product-item-slider .swiper-slide:hover .zoom {
    opacity: 1;
}
.item-catalogus-detail .product-item-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.item-catalogus-detail .product-item-slider .swiper-slide.cover img {
    object-fit: cover;
}
/* Thumbs slider */
.item-catalogus-detail .product-item-thumbs {
    margin-top: 10px;
}
.item-catalogus-detail .product-item-thumbs .swiper-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.item-catalogus-detail .product-item-thumbs .swiper-slide {
    width: 60px;
    height: 50px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.25s ease;
}
.item-catalogus-detail .product-item-thumbs .swiper-slide.swiper-slide-thumb-active {
    border: 3px solid #0689c0;
}
.item-catalogus-detail .product-item-thumbs .swiper-slide img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-catalogus-detail .product-item-slider .swiper-slide video,
.item-catalogus-detail .product-item-thumbs .swiper-slide video {
    width: 100%;
    height: 100%;
}

.item-catalogus-detail .swiper-button-next,
.item-catalogus-detail .swiper-button-prev {
    top: unset;
    width: 44px;
    height: 44px;
    background-color: #ef7e3a;
    color: #fff;
    transition: background-color 0.2s linear;
}
.item-catalogus-detail .swiper-button-prev {
    left: 50%;
    margin-left: -45px;
}
.item-catalogus-detail .swiper-button-next {
    right: 50%;
    margin-right: -45px;
}
.item-catalogus-detail .swiper-button-next:after,
.item-catalogus-detail .swiper-button-prev:after {
    font-size: 20px;
    color: #fff;
}

@keyframes animate-success-tip {
    0% {
        left: 1px;
        top: 19px;
        width: 0;
    }
    54% {
        left: 1px;
        top: 19px;
        width: 0;
    }
    70% {
        left: -8px;
        top: 37px;
        width: 50px;
    }
    84% {
        left: 21px;
        top: 48px;
        width: 17px;
    }
    100% {
        left: 14px;
        top: 45px;
        width: 25px;
    }
}

@keyframes animate-success-long {
    0% {
        right: 46px;
        top: 54px;
        width: 0;
    }
    65% {
        right: 46px;
        top: 54px;
        width: 0;
    }
    84% {
        right: 0;
        top: 35px;
        width: 55px;
    }
    100% {
        right: 8px;
        top: 38px;
        width: 47px;
    }
}

@keyframes rotatePlaceholder {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

/* A */
@media (max-width: 1194px) {
    .article.item-catalogus-detail .product-content .article-info > .add-to-cart-wrap {
        width: 100%;
    }

    .article.catalogus-list .navigation-wrap.top,
    .article.catalogus-list .navigation-wrap.bottom > .navigation-wrap {
        text-align: center;
    }
}

/* B*/
@media (max-width: 991px) {
    .article.item-catalogus-detail .product-content .width-40,
    .article.item-catalogus-detail .product-content .width-60 {
        width: 100%;
    }
    .article.item-catalogus-detail .product-content .article-info > .sub-articles-wrap,
    .article.item-catalogus-detail .product-content .article-info > .add-to-cart-wrap {
        width: 100%;
    }
    .article.item-catalogus-detail .product-content .article-info {
        padding-top: 30px;
        padding-left: 0;
    }
}

/* C */
@media (max-width: 767px) {
    .article.item-catalogus-detail .product-content .article-info > .sub-articles-wrap {
        width: 50%;
    }

    .article.item-catalogus-detail .product-content > .margin > .padding {
        display: flex;
        flex-direction: column;
    }

    .article.item-catalogus-detail .product-content .width-40.article-info {
        order: 2;
    }

    .article.item-catalogus-detail .product-content .width-40.article-info > h1 {
        display: none;
    }

    .article.item-catalogus-detail .product-content .width-60.pictures,
    .article.item-catalogus-detail .podcast {
        order: 1;
    }

    .article.item-catalogus-detail .product-content .width-60.details {
        order: 3;
    }

    .article.item-catalogus-detail h1.mobile-only {
        margin-bottom: 7px;
    }

    .article.item-catalogus-detail .product-content .favorite-login-icon {
        top: 43px;
    }

    .article.item-catalogus-detail .sticky-article-info:not([hidden]) {
        display: flex;
    }
}

/* D */
@media (max-width: 479px) {
    .article.item-catalogus-detail .product-content .article-info > .sub-articles-wrap {
        width: 100%;
    }
}
