/* x13lookbook */
.x13lookbook {
    max-width: 100%;
    text-align: center;
}

.x13lookbook__block-title,
.x13lookbook__main-title {
    margin-bottom: 1rem;
}

.x13lookbook__go-to {
    display: block;
    font-size: 0.8em;
}

.x13lookbook__image-wrapper {
    margin: 0 0 1rem 0;
    overflow-x: auto;
}

.x13lookbook__image {
    margin: 0 auto;
    position: relative;
    display: table;
}

.x13lookbook__block-image img {
    margin-bottom: 1rem;
    max-width: 100%;
    height: auto;
}

.x13lookbook__image img {
    max-width: 100%;
    /* temporary */
    height: auto;
    display: inline-block;
    position: relative;
}

.x13lookbook__dot {
    display: block;
    position: absolute;
    background: #fff;
    border: 1px solid #000;
    color: #000;
    margin: 3px;
    width: 24px;
    height: 24px;
    padding: 0 !important;
    font-size: 14px;
    line-height: 23px;
    text-align: center;
    border-radius: 13px;
    white-space: nowrap;
    box-sizing: content-box;
    text-decoration: none !important;
}

.x13lookbook__dot.square {
    padding: 0 9px !important;
    width: auto;
}


@-webkit-keyframes x13lookbookPulse {
    0% {
        padding: 0px;
        opacity: 0.9;
    }

    80% {
        padding: 10px;
        opacity: 0;
    }

    100% {
        padding: 0px;
        opacity: 0;
    }
}

@keyframes x13lookbookPulse {
    0% {
        padding: 0px;
        opacity: 0.9;
    }

    80% {
        padding: 10px;
        opacity: 0;
    }

    100% {
        padding: 0px;
        opacity: 0;
    }
}

.x13lookbook__pulse .x13lookbook__dot {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    z-index: 1;
}

.x13lookbook__pulse .x13lookbook__dot::before {
    box-sizing: content-box;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 999rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, -1px);
    transform: translate3d(-50%, -50%, -1px);
    -webkit-animation: x13lookbookPulse 2s infinite;
    animation: x13lookbookPulse 2s infinite;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .x13lookbook__dot {
        width: 21px;
        height: 21px;
        line-height: 19px;
        font-size: 12px;
    }
}

.x13lookbook__dot:hover,
.x13lookbook__dot[aria-expanded="true"] {
    background: #000;
    color: #fff;
    text-decoration: none !important;
    cursor: pointer;
}

.x13lookbook__dot:focus {
    text-decoration: none !important;
}

.tippy-hovered .x13lookbook__dot[aria-expanded="false"] {
    opacity: 0.6;
}

.tippy-hovered .x13lookbook__dot:before {
    display: none;
}

.x13lookbook__modal .modal-content {
    width: 100%;
}

.x13lookbook__modal .modal-dialog {
    margin: 30px auto;
}

@media (min-width: 768px) {
    .x13lookbook__modal .modal-dialog {
        max-width: 1100px;
        width: 100%;
    }
}

[id^=custom-fancybox] .row,
.x13lookbook__body .row {
    margin-top: 14px;
    margin-bottom: 14px;
    text-align: left;
}

.x13lookbook__product-title {
    font-weight: bold;
}

.x13lookbook__product-details p {
    margin: 4px 0;
}

.x13lookbook__product-details img {
    max-width: 100%;
    height: auto;
}

.x13lookbook__product-details p span {
    text-decoration: line-through;
}

.x13lookbook__product-image {
    text-align: center;
    position: relative;
}

.x13lookbook__product-image .product-flags {
    width: calc(100% - 30px);
    left: 15px;
}

.x13lookbook__product-image img {
    max-width: 100%;
    margin-bottom: 10px;
}

.x13lookbook__add-to-cart .btn-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.x13lookbook__add-to-cart .btn {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.x13lookbook__add-to-cart .btn-secondary,
.x13lookbook__add-to-cart .btn-default {
    margin-left: 10px;
    margin-top: 0px;
}

.x13lookbook__add-to-cart .btn-danger {
    margin-top: 10px;
}

.x13lookbook__add-to-cart .card {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    border-left: 1px solid #d8d8d8;
}

.x13lookbook__product-list {
    position: relative;
    max-height: 600px;
    height: 100%;
    overflow: scroll;
}

.x13lookbook__product-list li {
    padding: 15px 10px;
    display: flex;
    position: relative;
    cursor: pointer;
}

.x13lookbook__product-list li:not(:last-of-type) {
    border-bottom: 1px solid #ccc;
}

.x13lookbook__product-list li::after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    content: attr(data-label);
    position: absolute;
    top: 95px;
    left: 0px;
    width: 30px;
    height: 30px;
    background: #000;
    font-weight: 20px;
    text-align: center;
    font-weight: bold;
    background: #fff;
    border: 1px solid #000;
    color: #000;
    border-radius: 15px;
}

.x13lookbook__product-list li.square::after {
    width: auto;
    padding: 0 9px;
}

.x13lookbook__product-list li.active::after {
    background: #000;
    color: #fff;
}

.x13lookbook__item-left {
    flex: 0 0 116px;
    max-width: 116px;
    padding: 0 5px;
}

.x13lookbook__item-left img {
    width: 100px;
    height: 100px;
    -o-object-fit: contain !important;
    object-fit: contain !important;
}

.x13lookbook__item-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1;
    padding: 0 5px;
}

.x13lookbook__item-right p {
    margin-bottom: 10px;
    padding: 0;
    font-weight: bold;
}

.x13lookbook__product-list--no-images  .x13lookbook__item-left {
    display: none;
}

.x13lookbook__product-list--no-images li {
    padding-left: 40px;
}

.x13lookbook__product-list--no-images li::after {
    top: calc(100% - 35px);
}

@media (max-width: 767px) {
    .x13lookbook__body .col-md-4 {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 950px) {
    .x13lookbook__product-list li p {
        font-size: 12px;
        line-height: 14px;
    }

    .x13lookbook__product-list .btn {
        padding: 4px 10px;
        font-size: 14px;
    }
}

.x13lookbook__name {
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 0;
    font-size: 16px;
    padding-bottom: 10px;
}

a.x13lookbook__name,
.x13lookbook__name a {
    color: #333;
}

.x13lookbook__name span {
    font-weight: 400;
}

[id^=custom-fancybox] {
    overflow: hidden;
}

.x13lookbook__add-all {
    white-space: normal;
}

.card-block .x13lookbook__category-image {
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.x13lookbook__block-description img,
.x13lookbook__category-image img {
    max-width: 100%;
    height: auto;
}

.x13lookbook__block-categories>div:not(.clearfix) {
    margin-bottom: 30px;
}

.x13lookbook__product-description table {
    margin-top: 1rem;
}

.x13lookbook__main-description_before,
.x13lookbook__main-description_after {
    text-align: left;
}

.x13lookbook__wrapper-main,
.x13lookbook__wrapper-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.x13lookbook__wrapper-sub .x13lookbook__category-title,
.x13lookbook__wrapper-main .x13lookbook__category-title {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}

.x13lookbook__wrapper-sub .x13lookbook__category-lookbooks,
.x13lookbook__wrapper-main .x13lookbook__category-other {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.x13lookbook__wrapper-sub .x13lookbook__pagination,
.x13lookbook__wrapper-main .x13lookbook__category-lookbooks {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.x13lookbook__wrapper-sub .x13lookbook__category-other,
.x13lookbook__wrapper-main .x13lookbook__pagination {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.x13lookbook__main-title {
    text-align: left;
}

.x13lookbook__block-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.x13lookbook__block-categories h3 {
    font-size: 16px;
    margin: 0;
    padding: 10px 0;
    line-height: 1.2;
    height: 58px;
    overflow: hidden;
}

.x13lookbook__block-categories .card-block {
    margin: 0;
    padding: 0 15px;
}

.x13lookbook__block-categories a {
    display: block;
    height: 100%;
}

.x13lookbook__category-title.card-block,
.x13lookbook.card-block {
    margin-bottom: 30px;
}

.x13lookbook__product-list-title {
    margin: 0 0 1rem 0;
    text-align: left;
}

.x13lookbook__product-list-after.ps17 {
    margin: 0 -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.x13lookbook__product-list-after #product_list {
    margin: 0;
}

.x13lookbook__product-list-after #product_list .hovered .content_price {
    background: rgba(0, 0, 0, 0.7);
}

.x13lookbook__product-list-after #product_list .functional-buttons {
    background: #fff;
}

.x13lookbook__product-list-after>div {
    margin: 0 10px;
}

.x13lookbook__product-list-after .product-miniature .product-short,
.x13lookbook__product-list-after .product-miniature .product-list-reviews,
.x13lookbook__product-list-after .product-miniature .wishlist-button-add {
    display: none;
}

.x13lookbook__pagination {
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.x13lookbook__pagination .pagination,
.x13lookbook__pagination .top-pagination-content {
    margin: 0;
    padding: 0;
}

.x13lookbook__pagination-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 768px) {
    .x13lookbook__pagination {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .x13lookbook__pagination-half {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
    }
}

/* Override */
@media (max-width: 767px) {

    .x13lookbook__block-categories .card:not(.ps178):not(.warehouse),
    .x13lookbook__category-lookbooks .card:not(.ps178):not(.warehouse),
    .x13lookbook__wrapper-main .card:not(.ps178):not(.warehouse),
    .x13lookbook__wrapper-sub .card:not(.ps178):not(.warehouse) {
        background-color: #fff;
        box-shadow: 2px 2px 8px 0 rgb(0, 0, 0, 0.2);
        border: 1px solid rgba(0, 0, 0, .125);
    }

    .x13lookbook__block-categories .card.ps178:not(.warehouse),
    .x13lookbook__category-lookbooks .card.ps178:not(.warehouse),
    .x13lookbook__wrapper-main .card.ps178:not(.warehouse),
    .x13lookbook__wrapper-sub .card.ps178:not(.warehouse) {
        background-color: #fff;
        box-shadow: none;
        border: none;
    }

    .x13lookbook__block-categories .card.warehouse,
    .x13lookbook__category-lookbooks .card.warehouse,
    .x13lookbook__wrapper-main .card.warehouse,
    .x13lookbook__wrapper-sub .card.warehouse {
        background-color: none;
        box-shadow: none;
        border: 1px solid rgba(160, 160, 160, 0.25);
    }
}


.x13loookbook__dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}