/* Карточки товаров: белый фон, серая окантовка */
.section__wrapper-new .new__elem-layer {
    background: #fff !important;
    border: 1px solid #F6F6F6;
    overflow: hidden;
}

.section__wrapper-new .new__elem-layer img,
.new__elem-layer img {
    height: 190px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

/* Снекбар добавления в корзину */
.ms-snackbar-wrap {
    position: fixed;
    right: 120px;
    bottom: 24px;
    z-index: 10050;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px;
    pointer-events: none;
}

@media only screen and (max-width: 767px) {
    .ms-snackbar-wrap {
        right: 16px;
        left: 16px;
        align-items: stretch;
    }
}

.ms-snackbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 344px;
    max-width: 100%;
    min-height: 50px;
    background: rgba(38, 38, 38, 0.9);
    border-radius: 8px;
    pointer-events: auto;
    animation: msSnackbarIn 0.25s ease;
}

@keyframes msSnackbarIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.ms-snackbar__icon {
    flex: none;
    display: flex;
    align-items: flex-start;
    padding: 12px 0 12px 12px;
    width: 36px;
}

.ms-snackbar__icon svg,
.ms-snackbar__icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.ms-snackbar__text {
    flex: 1;
    padding: 12px;
    font-family: 'PT Root UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #E8E7E7;
}

.ms-snackbar__close {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 50px;
    padding: 0 12px 0 4px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.8;
}

.ms-snackbar__close:hover {
    opacity: 1;
}

.ms-snackbar__close svg,
.ms-snackbar__close img {
    width: 24px;
    height: 24px;
    display: block;
}