.variant-product-options .item-product-choose {
    display: flex;
    gap: 12px 6px;
}
.radio-list-with-image {
    position: relative;
}
.item-product-choose .radio-list-with-image label {
    border-radius: 12px;
    padding: 5px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: solid 2px rgb(225, 230, 237);
}
.item-product-choose .radio-list-with-image.not_available label {
    border-style: dashed;
}
.item-product-choose .radio-list-with-image:hover label {
    border-color: rgb(213, 217, 222);
}
.item-product-choose .radio-list-with-image input[type=radio]:checked~label {
    border-style: solid;
    border-color: rgb(0, 147, 196);
}
.item-product-choose .radio-list-with-image.not_available label img {
    opacity: 0.5;
}
.radio-list-with-image .marker-tippy-box {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 20px;
    display: none;
}
.radio-list-with-image:hover .marker-tippy-box {
    display: block;
    z-index: 5;
}
.radio-list-with-image .marker-tippy-box::before {
    content: '';
    position: absolute;
    top: -10px; /* Расположение ромба над элементом */
    left: calc(50% - 10px); /* Расположение ромба по горизонтали */
    width: 0;
    height: 0;
    border-left: 10px solid transparent; /* Левая граница (половина ширины ромба) */
    border-right: 10px solid transparent; /* Правая граница (половина ширины ромба) */
    border-bottom: 10px solid #000; /* Нижняя граница (цвет ромба) */
    z-index: -1; /* Ромб будет "торчать" из блока .product-icon::after */
}
.rs-comment-list .photo-container {
    margin-top: 20px;
    display: flex;
}
.rs-comment-list .photo-list {
    margin-bottom: 0;
    padding-left: 0;
}
.rs-comment-list .one-photo-container {
    width: 150px;
    margin-right: 10px;
}
.rs-comment-list .one-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 130px;
}
.rs-comment-list .one-photo img {
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.dropzone.rs-dropzone {
    min-height: 100px;
}
.photo-container .swiper-button-next {
    right: 1px;
}
.photo-container .swiper-button-prev {
    left: 1px;
}

