@keyframes photo-wall-popup-fade-in {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.photo-wall-popup-modal__container {
    --modal-animation-name: photo-wall-popup-fade-in;
    max-height: 90%;
    max-width: max-content;
}

.photo-wall-popup-modal__close {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: none;
    transform: translate3d(0, 0, 0);
}

.photo-wall-popup-modal__close > svg {
    width: 12px;
    height: 12px;
}

.photo-wall-popup-modal__body {
    display: flex;
    height: 100%;
    overflow: hidden;
}

.photo-wall-popup-modal__body .photo-wall-popup-modal__image {
    background-color: #f9f9f9;
}

.photo-wall-popup-modal__body .photo-wall-popup-modal__image img {
    width: 100%;
    height: 100%;
}

.photo-wall-popup-modal__body .photo-wall-popup-modal__product {
    width: 360px;
    min-width: 320px;
    font-size: 13px;
    text-align: center;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

.photo-wall-popup-modal__body .photo-wall-popup-modal__product .product__item {
    display: flex;
    flex-direction: column;
    text-decoration: unset;
    gap: 10px;
    margin-bottom: 10px;
}

.photo-wall-popup-modal__body .photo-wall-popup-modal__product .product__item .product__item-title:hover {
    color: #cc8d6c;
}

.photo-wall-popup-modal__body .photo-wall-popup-modal__product .product__item .product__item-button {
    padding: 6px 25px;
    text-transform: uppercase;
}

.custom-photo-wall .custom-photo-wall__title {
    margin-bottom: 30px;
}

.custom-photo-wall .custom-photo-wall__warp {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.custom-photo-wall .custom-photo-wall__warp .photo-wall__item .item__image img {
    width: 100%;
    height: 100%;
}

@media (min-width: 959px) {
    .custom-photo-wall .custom-photo-wall__warp .photo-wall__item {
        display: flex;
        flex-direction: column;
        width: 20%;
    }

    .custom-photo-wall .custom-photo-wall__warp .photo-wall__item.large {
        width: 26%;
    }
}

@media screen and (max-width: 959px) {
    .photo-wall-popup-modal__container {
        margin: auto 5%;
    }

    .photo-wall-popup-modal__body {
        overflow-y: auto;
        flex-direction: column;
    }

    .photo-wall-popup-modal__body .photo-wall-popup-modal__product {
        overflow: unset;
        min-width: unset;
        width: 100%;
    }

    .custom-photo-wall .custom-photo-wall__warp .photo-wall__item {
        display: flex;
        flex-direction: column;
        width: calc(100% / 3);
    }

    .custom-photo-wall .custom-photo-wall__warp .photo-wall__item.large {
        width: 45%;
    }
}