.goods-list {
    display: -ms-grid !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(271px, 1fr));
    gap: 10px;
    margin-bottom: 22px !important;
    width: 100%
}

.goods-list--wide {
    -ms-grid-columns: auto;
    grid-template-columns: auto
}

.goods {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 35px 15px 15px 20px;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 1px solid #E5E5E5;
    color: #303031;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s
}

.goods:hover {
    -webkit-box-shadow: 0px 0px 15px 0px rgba(52, 52, 52, 0.5);
    box-shadow: 0px 0px 15px 0px rgba(52, 52, 52, 0.5)
}

.goods__status {
    position: absolute;
    top: 14px;
    left: 19px;
    width: calc(100% - 15px - 20px - 30px)
}

.goods__compare {
    position: absolute;
    top: 13px;
    right: 12px;
    padding: 5px;
    width: 22px;
    height: 25px
}

.goods__compare:hover .goods__compare-icon {
    background-color: #EC0101
}

.goods__compare:hover .goods__compare-icon::before, .goods__compare:hover .goods__compare-icon::after {
    background-color: #EC0101
}

.goods__compare-checkbox:checked+.goods__compare-icon {
    background-color: #EC0101
}

.goods__compare-checkbox:checked+.goods__compare-icon::before, .goods__compare-checkbox:checked+.goods__compare-icon::after {
    background-color: #EC0101
}

.goods__compare-icon {
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 2px;
    height: 8px;
    background-color: #AAAAAA;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s
}

.goods__compare-icon::before, .goods__compare-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 2px;
    background-color: #AAAAAA;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s
}

.goods__compare-icon::before {
    left: -3px;
    height: 15px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%)
}

.goods__compare-icon::after {
    right: -3px;
    height: 12px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%)
}

.goods__img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

.goods__img-wrapper {
    width: 100%;
    height: 150px
}

.goods__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
}

.goods__content__list {
    display: none;
}

.goods__content-link {
    margin-top: 13px;
    margin-bottom: 6px;
    width: 100%;
    min-height: 70px;
    color: #303031;
    font-weight: normal;
    font-size: 18px;
    line-height: 23px;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s
}

.goods__content-link:hover {
    color: #EC0101
}

.goods__content-price {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc((100% - 22px) / 2);
    height: 40px;
    white-space: nowrap;
}

.goods__content-price-current {
    font-weight: 500;
    font-size: 22px;
    line-height: 16px
}

.goods__content-price-old {
    position: absolute;
    bottom: 3px;
    left: 6px;
    display: block;
    white-space: nowrap;
    text-align: center;
    font-size: 16px;
    color: #626262;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

.goods__content-price-old::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 6px * 2);
    height: 2px;
    background-color: #EC0101;
    -webkit-transform: translate(-50%, calc(-50% - 1px));
    -ms-transform: translate(-50%, calc(-50% - 1px));
    transform: translate(-50%, calc(-50% - 1px))
}

.goods__content-price .price_percent {
    position: absolute;
    bottom: -18px;
    left: 0;
    transform: translateY(100%);
}

.goods__content-buy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 22px;
    width: calc((100% - 22px) / 2);
    /* height: 100%; */
    min-height: 100px;
    z-index: 10;
}

.goods__content-buy .long {
    white-space: unset;
   width: fit-content;
   align-self: end;
   font-size: 14px;
}

.goods__content-buy-btn {
    margin-bottom: 10px;
    line-height: 1 !important;
}

.goods__content-buy-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    opacity: 1;
}

.goods__content-buy-info:not(:last-child) {
    margin-bottom: 5px
}

.goods__content-buy-info .credit__list-item {
    font-size: 12px;
}

.goods__availability {
    position: absolute;
    bottom: 16px;
    left: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    line-height: 16px;
    /*color: #A4A4A4;*/
    color: #414042;
    font-weight: 600;
}

.goods__availability::before {
    content: '';
    display: block;
    margin-right: 6px;
    height: 6px
}

.goods__availability--no::before {
    width: 5px;
    background: #AAA
}

.goods__availability--yes::before {
    width: 6px;
    background: #0DB14B
}

@media all and (min-width: 600px) {
    .goods--wide {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 40px 20px 35px;
        width: 100%;
        min-height: auto
    }

    .goods--wide .goods__img-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-right: 22px;
        width: 160px;
        height: auto;
    }

    .goods--wide .goods__content {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 108px;
        grid-template-columns: 1fr 108px;
        gap: 22px;
        width: 100%;
        height: fit-content;
    }

    .goods--wide .goods__content .goods__content__list {
        display: flex;
        flex-direction: column;
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 1;
        grid-column-end: 2;
        -ms-grid-row: 2;
        grid-row-start: 2;
        -ms-grid-row-span: 2;
        grid-row-end: 3;
        margin: 0;
    }

    .goods--wide .goods__content .goods__content__list li {
        margin: 0;
    }

    .goods--wide .goods__content .goods__content__list li:not(:last-child) {
        margin-bottom: 10px;
    }

    .goods--wide .goods__content-link {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 1;
        grid-column-end: 2;
        -ms-grid-row: 1;
        grid-row-start: 1;
        -ms-grid-row-span: 1;
        grid-row-end: 2;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-height: auto;
    }

    .goods--wide .goods__content-price, .goods--wide .goods__content-buy {
        margin: 0;
        width: auto;
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-column-span: 1;
    }

    .goods--wide .goods__content-price {
        margin-bottom: 20px;
    }
}

.status-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.status-list__item {
    position: relative;
    padding: 1px 10px;
    margin: 2px;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    z-index: 1
}

.status-list__item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%) skew(-15deg);
    -ms-transform: translate(-50%, -50%) skew(-15deg);
    transform: translate(-50%, -50%) skew(-15deg);
    z-index: -1
}

.status-list__item--promo::before {
    background-color: #0089A7
}

.status-list__item--new::before {
    background-color: #00A751
}

.status-list__item--soon::before {
    background-color: #4F6ACD
}

.report-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 99px;
    border: 1px solid transparent;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #414042;
    background: #F2F2F2;
    -webkit-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    transition: border-color 0.3s
}

.report-btn::before {
    content: '';
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 11px;
    height: 15px;
    margin-bottom: 10px;
    background: url("./images/icons/bell-icon.svg") center no-repeat;
    background-size: contain
}

.report-btn:hover {
    border-color: #EC0101
}

.buy-btn {
    width: 100%;
    height: 40px;
    background-color: #EC0101;
    color: #fff;
    font-size: 18px;
    line-height: 16px;
    border: none;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s
}

.buy-btn:hover {
    background: #303031
}

.tooltip {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.tooltip__marker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    font-size: 12px;
    line-height: 16px;
    color: #EC0101;
    border: none;
    background: transparent;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s
}

.tooltip__marker::after {
    content: '';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 3px;
    width: 15px;
    height: 15px;
    background: url("./images/icons/tooltip-icon.svg") center no-repeat;
    background-size: contain
}

.tooltip__marker:hover {
    color: #414042
}

.tooltip__close {
    position: absolute;
    right: 8px;
    top: 9px;
    width: 9px;
    height: 9px;
    background-color: transparent;
    border: none
}

.tooltip__close::before, .tooltip__close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: #B3B4B6
}

.tooltip__close::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg)
}

.tooltip__close::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg)
}

[data-tippy-root] {
    max-width: 233px
}

[data-tippy-root] .tippy-box {
    background-color: #FFFFFF;
    border-radius: 3px;
    -webkit-filter: drop-shadow(0px -4px 4px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0px -4px 4px rgba(0, 0, 0, 0.05))
}

[data-tippy-root] .tippy-content {
    padding: 13px 18px;
    color: #000000
}

[data-tippy-root] .tippy-arrow {
    color: #FFFFFF;
    -webkit-filter: drop-shadow(0px -4px 4px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0px -4px 4px rgba(0, 0, 0, 0.05))
}

[data-tippy-root] .tooltip__close {
    pointer-events: visible
}



.goods__content-buy-info .credit__link {
    position: relative;
    text-decoration: unset;
    font-size: 12px;
    line-height: 16px;
    color: #EC0101;
    background: transparent;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s
}

.goods__content-buy-info .credit__link:hover {
    color: #414042;
}

.goods__content-buy-info .credit__list {
    bottom: -5px;
}

.goods__content-buy-info .product-tip {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    margin-left: 5px;
}

.goods__content-buy-info .product-tip__label {
    color: #EC0101;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s
}

.goods__content-buy-info .product-tip__label:hover {
    color: #414042;
}

.product-tip__label {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	color: #aaaaaa;
	border: 1px solid currentColor;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	width: 15px;
	height: 15px;
	font-size: 12px;
	line-height: 16px;
	cursor: pointer;
}

.product-tip__label:hover {
	color: #ec0101;
}

.product-tip__wrap {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate(-50%, 15px) scale(0);
	-ms-transform: translate(-50%, 15px) scale(0);
	transform: translate(-50%, 15px) scale(0);
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	position: absolute;
	left: 0;
	-webkit-filter: drop-shadow(0px -4px 4px rgba(0, 0, 0, 0.05)) drop-shadow(0px 0px 18px rgba(0, 0, 0, 0.25));
	filter: drop-shadow(0px -4px 4px rgba(0, 0, 0, 0.05)) drop-shadow(0px 0px 18px rgba(0, 0, 0, 0.25));
	background-color: #fff;
	min-width: 235px;
	border-radius: 3px;
}

.product-tip.active .product-tip__label {
	color: #ec0101;
}

.product-tip.active .product-tip__wrap {
	opacity: 1;
	z-index: 101;
	visibility: visible;
	-webkit-transform: translate(-50%, 15px) scale(1);
	-ms-transform: translate(-50%, 15px) scale(1);
	transform: translate(-50%, 15px) scale(1);
}

.product-tip__inner {
	padding: 15px;
	position: relative;
    white-space: nowrap;
}

.product-tip__inner::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	-webkit-transform: translateX(-10%) rotate(45deg);
	-ms-transform: translateX(-10%) rotate(45deg);
	transform: translateX(-10%) rotate(45deg);
	background-color: #fff;
	top: -6px;
	left: 50%;
	z-index: -1;
}

.product-tip__content {
    font-size: 12px;
	color: #000000;
}

.product-tip__close {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 12px;
	height: 12px;
	display: block;
	cursor: pointer;
	-webkit-transform: translateY(6px);
	-ms-transform: translateY(6px);
	transform: translateY(6px);
}

.product-tip__close::before,
.product-tip__close::after {
	content: "";
	display: block;
	border-bottom: 1px solid #b3b4b6;
	width: 12px;
}

.product-tip__close::before {
	-webkit-transform: rotate(45deg) translateX(1px);
	-ms-transform: rotate(45deg) translateX(1px);
	transform: rotate(45deg) translateX(1px);
}

.product-tip__close::after {
	-webkit-transform: rotate(-45deg) translateX(0.5px);
	-ms-transform: rotate(-45deg) translateX(0.5px);
	transform: rotate(-45deg) translateX(0.5px);
}

@media (min-width: 768px) {
	.show-mobile {
		display: none;
	}
}

.price_percent {
    background-color: #ec0101;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: 0 .5em;
    display: inline-block;
}

@media (max-width: 575px) {
    .product-tip .product-tip__wrap {
        left: unset;
        right: 0;
        transform: translate(18px, 15px) scale(0);
        transform-origin: right top;
    }

    .product-tip.active .product-tip__wrap {
        left: unset;
        right: 0;
        transform: translate(18px, 15px) scale(1);
    }

    .product-tip .product-tip__wrap .product-tip__inner::before {
        left: unset;
        right: 10px;
    }
}