.warning {
    border: 2px solid red;
    padding: 60px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 20px;
    line-height: 1.3em;
}
.warning__title {
    font-size: 30px;
    margin-bottom: 20px;
}
.warning__text {
    margin-bottom: 20px;
}
.warning__source {}
.warning__link {}


.filter {
    width: 100%;
    height: 100%;
    display: inherit;
    transition: opacity 0.3s, visibility 0s linear 0.3s;
}
.filter.filter--blackout {
    background-color: rgba(0,0,0,.5);
}

.filter.filter--gradient-1 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.go-to-top {
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;
    cursor: pointer;
    z-index: 2;
}

.flag {
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(216,0,39);
    background: linear-gradient(0deg, rgba(216,0,39,1) 33.3%, rgba(0,82,180,1) 33.3%, rgba(0,82,180,1) 66.6%, rgba(255,255,255,1) 66.6%);
}

.button {
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    padding: 12px 17px 10px;
    font-size: 12px;
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s;
    border: 1px solid var(--primary-color);
    box-shadow: 0 6px 20px 0 rgba(53, 50, 50, 0.40);
    white-space: nowrap;
    display: block;
    -webkit-appearance: none;
}
.button {
    font-size: 15px;
    font-weight: 300;
}
.button,
.button.button--invers:hover,
.button.button--invers_2:hover,
.button.button--invers_2:hover:visited
{
    background: var(--primary-color);
    color: white;
}

.button a,
a.button,
.button a:visited,
a.button:visited,
.button a:focus,
a.button:focus {
    color: white;
}

.button a:hover,
a.button:hover
 {
    color: black;
}


.btn.btn-default {
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    padding: 12px 17px 10px;
    font-size: 12px;
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s;
/*    box-shadow: 0 6px 20px 0 rgba(53, 50, 50, 0.54);*/
	box-shadow: 0 4px 10px 0 rgba(53, 50, 50, 0.30);
    white-space: nowrap;
    background-color: var(--primary-color);
    border-style: solid;
    border-width: 1px;
    border-color: var(--primary-color);
    color: white;
}
.btn.btn-default:hover {
    background-color: #ecf9ea;
    border-color: #ecf9ea;
    color: var(--primary-color);
}

.button.button--invers,
.button:hover {
    background: #ecf9ea;
    border-color: #ecf9ea;
    color: var(--primary-color);
    border: 1px solid transparent;
}
.button.button--invers_2,
.button.button--invers_2:visited
{
    background: #fff;
    border-color: #ecf9ea;
    color: var(--primary-color);
    border: 1px solid transparent;
    box-shadow: 0px 7px 15.7px 5px #00000021;
}

.button.button--invers {
    box-shadow: unset;
    border-color: #dde7e9;
    background-color: #efffe9;

}

.button.button--white {
    box-shadow: unset;
    background: none;
    border-color: white;
    color: white;
}
.button--white:hover,
a.button--white:hover,
.button--white.button--active {
    background: rgba(255, 255, 255, 0.4);
}

.button.button--black {
    box-shadow: unset;
    background: none;
    border-color: white;
    color: #333;
        font-weight: 600;
}
.button--black:hover,
a.button--black:hover,
.button--black.button--active {
    background: rgba(255, 255, 255, 0.4);
}



@media( min-width: 768px ){
    .button {
        font-size: 15px;
        line-height: 16px;
        padding: 12px 25px 12px;
        display: block;
    }
}


.arrow-1, .arrow-2{
    border-color: #FFF;
}

.arrow--green {
    border-color: var(--primary-color);
}



.arrow-1 {
    position: relative;
    display: flex;
    width: 100%;
    height: 24px;
    cursor: pointer;
    justify-content: flex-end;
    align-items: center;
}

.arrow-1:after, .arrow-1:before { content: ''; }

.arrow-1:before {
    width: 100%;
    border-top-width: 1px;
    border-top-style: solid;
    padding-bottom: 1px;
    border-color: inherit;
    margin-right: -1px;
}
.arrow-1:after
{
    position: absolute;
    top: 5px;
    display: block;
    box-sizing: border-box;
    width: 13px;
    height: 13px;
    transform: rotate(45deg);
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
    border-bottom: unset;
    border-left: unset;
}


.arrow-1.reverse { transform: rotate(180deg); }

.arrow-1:hover { animation: arrow-1 1s linear infinite; }
.arrow-1.reverse:hover { animation: arrow-1-reverse 1s linear infinite; }
@keyframes arrow-1 {
    0% { left:0; }
    50% { left:10px; }
    100% { left:0; }
}

@keyframes arrow-1-reverse {
    0% { right:0; }
    50% { right:10px; }
    100% { right:0; }
}

.arrow-2 {
    width: 12px;
    height: 12px;
    cursor: pointer;
    border-style: solid;
    border-width: 1px;
    border-top: none;
    border-left: none;
    transform-origin: 50% 50%;
    transform: rotate(45deg);
    transition: transform .5s;
}
.arrow-2--reverse {
    transform-origin: 50% 50%; transform: rotate(225deg);
}

.proportional-box {
    display: block;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    position: relative; /* If you want text inside of it */
}
.proportional-box__content {position: absolute; top: 0; left: 0; bottom: 0; right: 0; } /* If you want text inside of the container */
img.proportional-box__content { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.ratio1_2 { padding-top: 50%;} /* 16:9 Aspect Ratio */
.ratio16_9 { padding-top: 56.25%;} /* 16:9 Aspect Ratio */


.animated-card-1 {
    color: #fff;
}

.animated-card-1__content {}
.animated-card-1__title {}
.animated-card-1__description {}


.product_card {
    display: flex;
    flex-direction: column;
    background: white;
    font-weight: 400;
    font-size: 16px;
    /*border: 1px solid #D2D2D2;*/
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.product_card a,
.product_card a:hover {
    border-bottom: none;
    opacity: unset;
}

.product_card__image {
   /* margin-bottom: 20px;*/
}
.product_card__image img {
    height: 150px;
    width: 100%;
    object-position: center;
    object-fit: contain;
}

.product-item-image-original {
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

.product_card__title {
    font-weight: 600;
    font-size: 17px;
	/*line-height: 1.4;*/
	padding-bottom: 5px;
}
.product_card__description {
    font-size: 12px;
    text-align: left;
    line-height: 1.3em;
    height: 4em;
    flex-grow: 1;
}

.product-item-amount-description-container strong {
    font-weight: 800;
    font-size: 17px;
}

.product_card__price {
    font-size: 18px;
    line-height: 40px;
    /*font-weight: 500;*/
    margin-right: 10px;
}
.product_card__quantity {
    font-size: 11px;
    font-weight: 100;
    font-style: italic;
    line-height: 1em;
}

.quantity__insert-block {
    margin-right: 5px;
    display: flex;
    align-items: center;
}

.product_card__price-block {
    display: none;
}
.product-item-amount-field-container {
    display: flex;
}
.product_card__bay_button {
    width: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 5px 5px 0;
    padding-left: 10px;
    padding-right: 15px;
    transition: background-color .5s;
    line-height: 1em;
    background-color: #419a0f;
}

.product_card__bay_button a {
    color: white;
    font-size: 25px;
    display: block;
    width: 100%;
    text-align: center;
}

.product_card__bay {
    background: var(--primary-color);
    padding: 0;
    border-radius: 5px;
    color: white;
    height: 47px;
    display: flex;
    justify-content: stretch;
}

.product_card__bay_button-block {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.catalog__quantity {
    flex-grow: 1;
    padding-left: 10px;
}

.quantity {
    display: flex;
    text-align: left;
}

.quantity__summ-price {
    white-space: nowrap;
}
.quantity__btn {
    display: flex;
    width: 28px;
    height: 28px;
    border-radius: 2px;
    text-align: center;
    cursor: pointer;
    transition: background 300ms ease, opacity 300ms ease;
    user-select: none;
    align-items: center;
    justify-content: center;
    border-width: 1px;
    border-style: solid;
    color: #ecf9ea;/*var(--primary-color)*/
    border-color: #ecf9ea;/*var(--primary-color)*/
}

.quantity__input {
    display: inline-block;
    padding: 0;
    width: 3em;
    border: 1px solid transparent;
    border-radius: 2px;
    background: transparent !important;
    color: inherit;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    line-height: 22px;
    transition: border 300ms ease;
    outline: none;
}
.quantity__info-block {
    display: flex;
    flex-grow: 1;
    align-items: center;
    margin-right: 5px;
}
.quantity__summ-price {
    flex-grow: 1;
    margin-left: 7px;
    padding-top: 2px;
    padding-right: 20px;
}

.quantity__summ-price strong {
    /*font-size: 19px;*/
	font-size: 17px;
    font-width: unset;
}

@media( min-width: 768px ){
.product_card__date {
    font-size: 16px;
    line-height: 20px;
}

.product_card__preview_text{
    font-size: 16px;
    line-height: 23px;
    display: block;
}
.product_card {
    /*width: 275px;*/
    }

    .product_card__image img {
        height: 209px;
    }

    .product_card__price {
        font-size: 20px;
    }
}

.quantity-block {
    display: flex;
}
.quantity-block__input {
    width: 2em;
}
.quantity-block__btn {
    display: block;
    width: 2em;
    background-color: red;
}

.quantity-block__btn--minus {

}
.quantity-block__btn--plus {

}



.tabs .tabs__item {
    display: none;}
.tabs .tabs__item.tabs__item--active {
    display: block;}


.slick-dots li.slick-active button, .slick-dots li.slick-active button:hover, .slick-dots li.slick-active button:focus {background: var(--primary-color);}

.slick-dots li button {background: #C4C4C4;}

.show_more.active {
    transform: rotate(180deg);
}

.quantity__insert-block .icon {

}
