@font-face {
    font-family: "ChocolatesRegular";
    src: url("/fonts/ttchocolates-regular.ttf");
}

@font-face {
    font-family: "DelaGothicOneRegular";
    src: url("/fonts/DelaGothicOne-Regular.ttf");
}

body {
    font-size: 16px;
    font-family: ChocolatesRegular;
    color: #000000;
    background: radial-gradient(58% 42% at 50% 50%, #FF9148 52.4%, #FF7D3F 100%);
}

.hypersy-header {
    background: #FF7D3F;
    box-shadow: 0 7px 15px 0 rgba(136, 12, 12, 0.14);
    position: relative;
    z-index: 30;
    padding: 15px 0;
}

.hypersy-header .container-fluid {
    padding-right: 100px;
    padding-left: 100px;
}

.navbar.navbar-expand-lg {
    padding: 0;
}

.navbar-brand > img {
    max-width: 200px;
}

.navbar-nav {
    margin: 0 auto;
}

.navbar-nav.navbar-nav-mob {
    display: none;
}

.navbar-nav.navbar-nav-mob .nav-item {
    background: #FFF;
    border-radius: 16px;
    margin-bottom: 25px;
}

.central-capsule .nav-item .nav-link {
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding: 10px 25px;
    letter-spacing: 0.5px;
}

.central-capsule .nav-item .nav-link:hover {
    background-color: rgba(255, 59, 48, 0.2);
    border-radius: 50px;
    color: #000000;
}

.central-capsule .dropdown-toggle:after {
    width: 14px;
    height: 7px;
    background-image: url("/img/hypersy/icon_menu_arrow_down.svg");
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: .15em;
    border: none;
    margin-left: 10px;
}

.hypersy-dropdown-menu {
    border: none;
    border-radius: 20px;
    padding: 10px;
}

.hypersy-dropdown-menu .dropdown-item {
    color: #000000;
    font-weight: 600;
    line-height: 96.2%;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 5px 10px;
}

.hypersy-dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 59, 48, 0.2);
    border-radius: 16px;
}

.dropdown-item > img {
    max-width: 35px;
}

.menu-icon {
    margin-right: 10px;
    font-size: 16px;
}

.btn-feedback {
    color: #000000;
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 30px;
    border: none;
    text-transform: uppercase;
    background-color: #FFFA70;
    letter-spacing: 0.5px;
}

.btn-feedback:hover {
    color: #000000;
}

.hypersy-toggler {
    width: 40px;
    height: 30px;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    position: relative;
}

.hypersy-toggler:focus {
    outline: none;
}

.burger-line {
    display: block;
    width: 100%;
    height: 8px;
    background-color: #A93439;
    border: 2px solid #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    position: absolute;
}

.burger-line:nth-child(1) {
    top: 0;
}

.burger-line:nth-child(2) {
    width: 85%;
    top: 50%;
    transform: translateY(-50%);
}

.burger-line:nth-child(3) {
    bottom: 0;
}

.navbar-toggler:not(.collapsed) .burger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .burger-line:nth-child(2) {
    width: 100%;
    transform: translateY(-50%) rotate(-45deg);
}

.navbar-toggler:not(.collapsed) .burger-line:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hypersy-breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 25px 55px 20px;
}

.hypersy-breadcrumbs a,
.hypersy-breadcrumbs p {
    color: #FFF;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 0;
}
.hypersy-breadcrumbs span {
    display: block;
    width: 4px;
    height: 4px;
    background: #FFF;
    border-radius: 50px;
}

.container-banners {
    padding-left: 15px;
    padding-right: 15px;
}

.container-banners img {
    width: 100%;
}

.banners-list a {
    display: none;
}

.banners-list a:first-child {
    display: block;
}

.banners-list .slick-slide {
    margin: 0 10px;
}

.banners-list .banner-item-mob {
    display: none;
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    position: absolute;
    top: 50%;
    z-index: 10;
}

.banners-list .slick-prev,
.banners-list .slick-next {
    top: inherit;
    bottom: 0;
}

.slick-prev {
    background-image: url(/img/hypersy/icon_slider_arrow_left.svg);
    background-repeat: no-repeat;
    background-size: cover;
    left: 30px;
}

.slick-next {
    background-image: url(/img/hypersy/icon_slider_arrow_right.svg);
    background-repeat: no-repeat;
    background-size: cover;
    right: 30px;
}

.slick-prev:focus,
.slick-next:focus,
.slick-prev:active,
.slick-next:active{
    outline: 0;
}

.slick-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    list-style-type: none;
    gap: 10px;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
}

.slick-slider .slick-dots > li {
    width: 8px;
    height: 8px;
    opacity: 1;
    background: #FFF;
    border-radius: 50px;
    transition: all .3s ease;
}

.slick-slider .slick-dots > li.slick-active {
    width: 70px;
    height: 8px;
    border-radius: 30px;
}

.slick-slider .slick-dots > li button {
    display: none;
}

body div.cookies {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 17px;
}

body div.cookies a.close-cookie-warning {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 12px;
}

.mCSB_inside > .mCSB_container {
    margin-right: 0;
}

.mCSB_scrollTools {
    z-index: 10;
}

.animation-line-container {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    top: -55px;
    z-index: -1;
}

.line {
    width: 120%;
    height: 65px;
    position: absolute;
    overflow: hidden;
}

.line-top {
    background-color: #fff44f;
    transform: rotate(5deg);
    z-index: 1;
}

.line-bottom {
    background-color: #ffffff;
    transform: rotate(-5deg);
    z-index: 2;
    margin-top: 0;
}

.animation-line-track {
    display: flex;
    width: max-content;
}

.animation-line-track img {
    height: 100%;
    display: block;
    flex-shrink: 0;
}

.line-bottom .animation-line-track {
    animation: scroll-left 20s linear infinite;
}

.line-top .animation-line-track {
    animation: scroll-right 20s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.products-sausages {
    padding: 0 10px;
    margin-bottom: 100px;
}

.products_meat_snacks {
    padding-top: 30px;
    margin-bottom: 100px;
}

.product-slider {
    display: flex;
    gap: 10px;
}

.product-slider .slick-slide {
    margin: 0 10px;
}

.product-slider .slick-prev {
    left: -20px;
}

.product-slider .slick-next {
    right: -20px;
}

.product-title {
    text-align: center;
    margin-bottom: 60px;
}

.product-item {
    width: 530px;
    border-radius: 26px;
    overflow: hidden;
    display: none;
}

.product-item__top {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 85px;
    background: #FFF;
    box-shadow: 0 5px 5px 0 rgba(121, 121, 121, 0.25);
    position: relative;
    z-index: 10;
    padding: 0 25px;
}

.product-item__top > img {
    max-width: 60px;
    width: 100%;
}

.product-item__top > span {
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
}

.product-item__info {
    display: grid;
    min-height: 500px;
    position: relative;
    padding: 0 20px 15px;
}

.product-item__bgr {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.8s ease-in-out;
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
}

.product-item:hover .product-item__bgr {
    opacity: 1;
}

.product-item__img {
    text-align: center;
    padding-top: 20px;
}

.product-item__img > img {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}

.product-item__title {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: end;
    justify-content: center;
}

.product-item__title > a {
    width: 100%;
    color: #000;
    font-family: "DelaGothicOneRegular";
    font-size: 40px;
    text-transform: uppercase;
    border-radius: 20px;
    border: 4px solid #000;
    position: relative;
    z-index: 10;
    padding: 0 10px;
}

.product-item__title > a:hover {
    text-decoration: none;
}

.product-slider-one {
    justify-content: center;
}

.product-slider-one .product-item {
    display: block;
}

.product-item.item__green .product-item__info {
    background: radial-gradient(65% 65% at 50% 50%, #FBF896 38.57%, #C2F660 100%);
}
.product-item.item__green .product-item__title > a {
    background: #9BD70A;
}

.product-item.item__blue .product-item__info,
.product-item.item__red .product-item__info {
    background: radial-gradient(59.42% 59.42% at 50% 50%, #C5F4FF 33.65%, #89C6FF 100%);
}
.product-item.item__blue .product-item__title > a,
.product-item.item__red .product-item__title > a {
    background: #FFF;
}
.product-item.item__dark-pink .product-item__info {
    background: radial-gradient(72.7% 72.7% at 50% 50%, #FFD2E3 61.4%, #FFAFD4 100%);
}
.product-item.item__dark-pink .product-item__title > a {
    background: #E31D94;
}
.product-item.item__aquamarine .product-item__info {
    background: radial-gradient(72.7% 72.7% at 50% 50%, #A0F8FF 48.28%, #4AE1ED 100%);
}
.product-item.item__aquamarine .product-item__title > a {
    background: #1FDDD1;
}
.product-item.item__dark-blue .product-item__info {
    background: radial-gradient(72.7% 72.7% at 50% 50%, #9FD2FF 48.28%, #5CB3FF 100%);
}
.product-item.item__dark-blue .product-item__title > a {
    background: #377DD9;
    color: #ffffff;
    font-size: 32px;
    line-height: 90%;
    padding-top: 2px;
    padding-bottom: 10px;
}
.product-item.item__pink .product-item__info {
    background: radial-gradient(72.7% 72.7% at 50% 50%, #FFD7E1 48.28%, #FFAFC3 100%);
}
.product-item.item__pink .product-item__title > a {
    background: #FE688C;
}

.hypersy-footer {
    padding: 20px 50px 40px;
}

.row-hypersy-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hypersy-footer__social-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.hypersy-footer__social-icons a {
    text-decoration: none;
}

.hypersy-footer__block-social-links a,
.hypersy-footer__block-links a {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.hypersy-footer__block-links a {
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.hypersy-footer__block-address > p {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}


/* стили для детальной странице продукта */
.container-breadcrumbs {
    z-index: 20;
}

.hypersy-product {
    overflow: hidden;
}

.hypersy-product .container-fluid {
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.row-hypersy-product {
    display: flex;
/*    gap: 50px;*/
    position: relative;
    z-index: 10;
}

.hypersy-product__info-block {
    width: 55%;
    position: relative;
    margin-top: 60px;
    padding-bottom: 80px;
}

.hypersy-product__text-info {
    max-width: 660px;
    width: 100%;
    background: #FFF;
    border-radius: 30px;
    position: relative;
    margin: 0 auto;
}

.hypersy-product__top-block {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.12);
}

.hypersy-product__top-block > span {
    font-family: "DelaGothicOneRegular";
    font-size: 50px;
    text-transform: uppercase;
}

.hypersy-product__text-block {
    position: relative;
    z-index: 10;
    padding: 25px 20px 40px;
}

.hypersy-product__text {
    font-size: 25px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.hypersy-product__compound {
    max-width: 530px;
    width: 100%;
    font-size: 25px;
    line-height: 100%;
    text-align: center;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    gap: 10px 20px;
    padding: 15px;
    margin: 0 auto 30px;
}

.hypersy-product__compound > svg {
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 3px;
}

.hypersy-product__compound-text {
    width: 100%;
    display: none;
    font-size: 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.hypersy-product__compound-text p {
    padding-top: 15px;
}

.hypersy-product__compound.show .hypersy-product__compound-text {
    display: block;
}

.hypersy-product__compound.show > svg {
    transform: rotate(180deg);
}

.hypersy-product__btn {
    text-align: center;
}

.btn-product {
    font-size: 28px;
    font-weight: 700;
    line-height: 96%;
    color: #000000;
    text-transform: uppercase;
    border-radius: 100px;
    background: transparent;
    border-style: none;
    cursor: pointer;
    padding: 25px 35px;
}

.hypersy-product__text-img {
    position: absolute;
    top: 230px;
    left: -165px;
}

.hypersy-product__text-img > img {
    max-width: 350px;
    width: 100%;
}

.hypersy-product__img-sausage {
    position: absolute;
    top: 250px;
    right: -70px;
    z-index: 10;
}

.hypersy-product__img-sausage > img {
    max-width: 300px;
    width: 100%;
}

.img-sausage-mobile {
    display: none;
}

.hypersy-product__img-top-left,
.hypersy-product__img-top-right {
    position: absolute;
}

.hypersy-product__img-top-left {
    top: -50px;
    left: -100px;
}
.hypersy-product__img-top-left > img {

}

.hypersy-product__img-top-right {
    right: -145px;
    top: -45px;
    z-index: -1;
}
.hypersy-product__img-top-right > img {
    max-width: 180px;
}

.hypersy-product__img-block {
    width: 45%;
    position: relative;
    top: -50px;
}

.hypersy-product__main-img {
    max-width: 600px;
    width: 100%;
}

.hypersy-product__img-bottom {
    position: absolute;
    top: 450px;
    right: -80px;
}
.hypersy-product__img-bottom > img {
    max-width: 300px;
    width: 100%;
}

.hypersy-product__img-bgr {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    position: absolute;
    right: -200px;
}

.hypersy-product__color-green .hypersy-product__img-bgr {
    background-image: url("/uploads/hypersy/003_detail_bgr.svg");
}
.hypersy-product__color-green .hypersy-product__top-block {
    background: #9BD70A;
}
.hypersy-product__color-green .btn-product {
    background: #9BD70A;
    box-shadow: 0 7px 5px 0 rgba(255, 255, 255, 0.70) inset, -3px -5px 5px 0 #7CAC08 inset;
}
.hypersy-product__color-green .hypersy-product__img-top-left {
    top: -50px;
    left: -170px;
}
.hypersy-product__color-green .hypersy-product__img-top-left > img {
    max-width: 300px;
}

.hypersy-product__color-red .hypersy-product__img-bgr {
    background-image: url("/uploads/hypersy/004_detail_bgr.svg");
}
.hypersy-product__color-red .hypersy-product__top-block {
    background: #F01535;
}

.hypersy-product__color-blue .btn-product,
.hypersy-product__color-red .btn-product {
    background: #126FC1;
    box-shadow: 0 7px 5px 0 rgba(255, 255, 255, 0.70) inset, -3px -5px 5px 0 #0E5491 inset;
}

.hypersy-product__color-dark-pink .hypersy-product__img-bgr {
    background-image: url("/uploads/hypersy/002_detail_bgr.svg");
}
.hypersy-product__color-dark-pink .hypersy-product__top-block {
    background: #EA3094;
}
.hypersy-product__color-dark-pink .btn-product {
    background: #F97CA1;
    box-shadow: 0 7px 5px 0 rgba(255, 255, 255, 0.70) inset, -3px -5px 5px 0 rgba(113, 17, 59, 0.25) inset;
}

.hypersy-product__color-aquamarine .hypersy-product__img-bgr {
    background-image: url("/uploads/hypersy/005_detail_bgr.svg");
}
.hypersy-product__color-aquamarine .hypersy-product__top-block {
    background: #1DD2C7;
}
.hypersy-product__color-aquamarine .btn-product {
    background: #4EF0E8;
    box-shadow: 0 7px 5px 0 rgba(255, 255, 255, 0.70) inset, -3px -5px 5px 0 rgba(17, 113, 97, 0.25) inset;
}

.hypersy-product__color-dark-blue .hypersy-product__img-bgr {
    background-image: url("/uploads/hypersy/006_detail_bgr.svg");
}
.hypersy-product__color-dark-blue .hypersy-product__top-block {
    background: #126FC1;
}
.hypersy-product__color-dark-blue .btn-product {
    background: #126FC1;
    box-shadow: 0 7px 5px 0 rgba(255, 255, 255, 0.70) inset, -3px -5px 5px 0 #0E5491 inset;
}
.hypersy-product__color-dark-blue  .hypersy-product__top-block > span {
    font-size: 42px;
    line-height: 90%;
    text-align: center;
    color: #fff;
}

.hypersy-product__color-pink .hypersy-product__img-bgr {
    background-image: url("/uploads/hypersy/001_detail_bgr.svg");
}
.hypersy-product__color-pink .hypersy-product__top-block {
    background: #F36E8F;
}
.hypersy-product__color-pink .btn-product {
    background: #ED7694;
    box-shadow: 0 7px 5px 0 rgba(255, 255, 255, 0.70) inset, -3px -5px 5px 0 #C95F7A inset;
}

.product_pizza_party .hypersy-product__img-sausage {
    top: 350px;
}
.product_pizza_party .hypersy-product__img-sausage > img {
    max-width: 400px;
}
.product_pizza_party .hypersy-product__img-top-left {
    top: 0;
}

.product_cola_bombs .hypersy-product__img-top-right {
    right: -150px;
    top: -95px;
}
.product_cola_bombs .hypersy-product__img-top-right > img {
    max-width: 230px;
}

.product_match_sour_onion .hypersy-product__img-top-right {
    right: -125px;
    top: -75px;
}

.product_match_sour_onion .hypersy-product__img-top-left {
    top: -15px;
    left: -280px;
}
.product_match_sour_onion .hypersy-product__img-top-left > img {
    max-width: 500px;
}
/* конец стилей для детальной странице продукта */

/* MODAL-SHOPS */
.modal-shops .modal-dialog {
    max-width: 820px;
    width: 100%;
    overflow: hidden;
}
.modal-shops .modal-body {
    position: relative;
    pointer-events: auto;
    border-radius: 30px;
    background: #9BD70A;
    box-shadow: -5px -3px 12px 0 rgba(104, 38, 38, 0.25), 9px 12px 12px 0 rgba(104, 38, 38, 0.25);
    overflow: hidden;
    padding: 20px;
}

.modal-shops .close {
    opacity: 1;
    position: absolute;
    right: 20px;
}

.modal-hypersy-shops-title {
    text-align: center;
    padding-top: 15px;
}

.modal-hypersy-shops-title > img {
    max-width: 400px;
    width: 100%;
}

.modal-hypersy-shops {
    position: relative;
    padding:  140px 60px 60px;
}

.modal-hypersy-shops ul {
    position: relative;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 10;
    margin: 0;
    padding: 0;
}

.modal-hypersy-shops ul > li {
    flex: 0 0 calc(50% - 8px);
    box-sizing: border-box;
    border-radius: 22px;
    background: #FFF;
    box-shadow: 1px 0 11px 0 rgba(136, 12, 12, 0.08), 0 5px 11px 0 rgba(136, 12, 12, 0.14);
}

.modal-hypersy-shops ul > li a {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-hypersy-shops ul > li img {
    max-width: 230px;
    width: 100%;
}

.modal-hypersy-img-sosiska {
    position: absolute;
    top: -8px;
    left: 60px;
    z-index: 15;
}

.modal-hypersy-img-strawberry {
    position: absolute;
    top: 30px;
    right: 120px;
    z-index: 5;
}

.modal-hypersy-img-tomate {
    position: absolute;
    left: -120px;
    bottom: 90px;
    z-index: 5;
}

.modal-hypersy-img-tomate > img {
    max-width: 220px;
    width: 100%;
}

.modal-hypersy-img-list {
    position: absolute;
    bottom: -85px;
    left: 250px;
    z-index: 5;
}

.modal-hypersy-img-list > img {
    max-width: 190px;
    width: 100%;
}

.modal-hypersy-img-salat {
    position: absolute;
    right: -20px;
    bottom: 0;
    z-index: 5;
}
/* END MODAL-SHOPS */


/* MODAL-OS */
.modal-os {
    padding: 0 !important;
    background: rgba(35, 0, 0, 0.45);
}

.modal-os .modal-dialog {
    position: relative;
    margin: 1.75rem auto;
    max-width: 43.5rem;
    height: calc(100vh - (1.75rem * 2));
    pointer-events: auto;
}

.modal-os .modal-body {
    position: relative;
    width: 100%;
    background: #F07824;
    border-radius: 16px;
    border: 0;
    padding: 20px 50px;
    z-index: 1;
}

.modal-os .close {
    position: absolute;
    top: 20px;
    right: 30px;
    padding: 0;
    width: 20px;
    height: 20px;
    background: url('../img/svg/close-2.svg') no-repeat 50%/contain;
    cursor: pointer;
    transform: scale(1);
    transition: 0.15s;
    opacity: 1;
    z-index: 2;
}
.modal-os .close:hover {
    transform: scale(1.2);
}

.modal-os form {
    max-width: 600px;
    width: 100%;
}

.modal-os h3 {
    color: #fff;
    font-size: 38px;
    text-align: center;
    margin-bottom: 25px;
}

.modal-os form .form-group {
    position: relative;
    margin-bottom:20px;
}

.modal-os form .form-control {
    padding: 20px 30px;
    color: #000;
    font: 300 0.875rem "Raleway", Arial, sans-serif;
    background: #fff;
    border: 1px solid #F07824;
    border-radius: 7.875rem;
    box-shadow: none;
}

.modal-os form textarea.form-control {
    padding: 20px;
    min-height: 150px;
    border-radius: 24px;
}

form .form-checkbox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 30px;
    margin-bottom: 20px;
}

form .form-checkbox .form-checkbox-text {
    display: flex;
    align-items: center;
}

.modal-os form .form-checkbox .label-dot {
    display: flex;
    padding-top: 0.375rem;
    padding-left: 0.25rem;
    flex-shrink: 0;
    position: relative;
    margin-bottom: 0;
    margin-right: 1.75rem;
    width: 1.5625rem;
    height: 1.5625rem;
    background: #fff;
    border: 0.0625rem solid #F07824;
    border-radius: 0.3125rem;
    box-shadow: none;
    cursor: pointer;
}

.modal-os form .form-checkbox .label-dot::after {
    content: '';
    flex-shrink: 0;
    width: 1rem;
    height: 0.75rem;
    background: url('../img/svg/check.svg') no-repeat 50%/contain;
    opacity: 0;
}

form .form-checkbox input:checked + .label-dot::after { opacity: 1; }

form .form-checkbox input.error + .label-dot { border-color: #902E2D; }

form .form-checkbox .label-text {
    color: #ffffff;
    font-size: 20px;
    line-height: 22px;
    margin: 0;
}

form .form-checkbox .label-text a { color: #A93439; text-decoration: underline; }
form .form-checkbox .label-text a:hover { text-decoration: none; }

.hidden {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
    border: 0;
    outline: 0;
    box-shadow: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: -9999;
}

.modal-os .errorMessage {
    font-size: 18px;
    line-height: normal;
    color: #ffffff;
    padding: 0 20px;
}


.modal-os form .btn-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    font: 500 0.75rem "Raleway", Arial, sans-serif;
    text-decoration: none;
    text-align: center;
    background: #000;
    border: 2px solid #000;
    border-radius: 100px;
    overflow: hidden;
    transition: 0.15s;
    z-index: 1;
}
.modal-os form .form-btns .btn {
    max-width: 300px;
    width: 100%;
    height: 75px;
    font-size: 16px;
}

.modal-os form .btn-dark {
    color: #fff;
    background: #A93439;
    border-color: #A93439;
}

.modal-os form .btn-dark:hover {
    color: #A93439;
    background: #fff;
    border-color: #A93439;
}

.modal-os form .form-control::-webkit-input-placeholder { color: #000; opacity: 0.7; }
.modal-os form .form-control:-ms-input-placeholder { color: #000; opacity: 0.7; }
.modal-os form .form-control::-ms-input-placeholder { color: #000; opacity: 0.7; }
.modal-os form .form-control::placeholder { color: #000; opacity: 0.7; }

.modal-os form .form-group .error::-webkit-input-placeholder { font-weight: 400; color: #892A2E; opacity: 1; }
.modal-os form .form-group .error:-ms-input-placeholder { font-weight: 400; color: #892A2E; opacity: 1; }
.modal-os form .form-group .error::-ms-input-placeholder { font-weight: 400; color: #892A2E; opacity: 1; }
.modal-os form .form-group .error::placeholder { font-weight: 400; color: #892A2E; opacity: 1; }

.modal-os form .selectric {
    padding: 20px 30px;
    background: #fff;
    border: 1px solid #F07824;
    border-radius: 100px;
    box-shadow: none;
}

.modal-os form .selectric .label {
    margin: 0;
    height: auto;
    color: rgba(0, 0, 0, 0.7);
    font: 300 0.875rem "Intro", Arial, sans-serif;
    text-align: left;
}

.modal-os form .selectric-below .label { color: #000; }

.modal-os form .selectric .button {
    top: 50%;
    right: 30px;
    width: 20px;
    height: 15px;
    background: transparent url('../img/svg/arrow-bot-2.svg') no-repeat 50%/contain;
    font-size: 0;
    line-height: 0;
    transform: translate(0, -50%);
    transition: 0.3s;
}

.modal-os form .selectric .button:after {
    display: none;
}

.modal-os form .selectric-open .selectric .button { transform: translate(0, -50%) rotate(180deg); }

.modal-os form .selectric-items {
    top: 50%;
    bottom: auto;
    left: 0;
    padding: 2.5rem 0 0;
    background: #fff;
    border: none;
    border-radius: 0;
    border-bottom-left-radius: 0.625rem;
    border-bottom-right-radius: 0.625rem;
    transform: translate(0, 0);
}

.modal-os form .selectric-items li {
    margin: 0.125rem 0;
    padding: 0.1875rem 1.875rem;
    color: #000;
    font: 300 0.875rem "Intro", Arial, sans-serif;
    text-align: center;
    border-radius: 0;
}

.modal-os form .selectric-items li:first-child { display: none; }

.modal-os form .selectric-items li:hover { background: rgba(240, 120, 36, 0.2); }

.modal-os form .selectric-items li.highlighted { color: #fff; background: #A93439; }

.modal-os form .form-btns {
    display: flex;
    justify-content: center;
    margin: 0;
}

form .smart-captcha {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px;
}
/* END MODAL-OS */

/* MODAL-OS-RESULT */
.modal-os-result { padding: 0 !important; background: rgba(35, 0, 0, 0.45); }

.modal-os-result .modal-dialog {
    position: relative;
    margin: 2.8vh auto;
    max-width: 69.6vh;
    height: calc(100vh - (2.8vh * 2));
    pointer-events: auto;
}

.modal-os-result .modal-body {
    position: relative;
    padding: 4.6vh 11vh 6.8vh;
    width: 100%;
    background: #F07824;
    border: 0;
    border-radius: 1.5vh;
    z-index: 1;
}

.modal-os-result .close {
    position: absolute;
    top: 3.6vh;
    right: 4vh;
    padding: 0;
    width: 2.2vh;
    height: 2.2vh;
    background: url('../img/svg/close-2.svg') no-repeat 50%/contain;
    cursor: pointer;
    transform: scale(1);
    transition: 0.15s;
    opacity: 1;
    z-index: 2;
}

.modal-os-result .close:hover { transform: scale(1.2); }

.modal-os-result__wrap {
    display: flex;
    align-items: center;
}

.modal-os-result__wrap img {
    flex-shrink: 0;
    margin-right: 4.6vh;
    width: 10vh;
}

.modal-os-result__wrap h3 {
    margin-bottom: 1.2vh;
    color: #fff;
    font: 400 4.8vh "Raleway", Arial, sans-serif;
}

.modal-os-result__wrap p {
    margin-bottom: 1.2vh;
    color: #fff;
    font: 400 1.4vh "Raleway", Arial, sans-serif;
}

.modal-os-result__wrap .btn {
    width: 22.2vh;
    height: 5.5vh;
    font-size: 1.2vh;
}
/* END MODAL-OS-RESULT */


@media (max-width: 1440px) {
    .hypersy-header .container-fluid {
        padding-right: 50px;
        padding-left: 50px;
    }

    .navbar-expand-lg .navbar-collapse {
        gap: 20px;
    }

    .product-item__title > a {
        line-height: 95%;
        padding: 10px;
    }

    .product-item.item__dark-pink .product-item__title > a {
        font-size: 32px;
    }

    /* стили для детальной странице продукта */
    .hypersy-product__top-block > span {
        font-size: 42px;
    }

    .hypersy-product__main-img {
        max-width: 540px;
    }

    .hypersy-product__text-img {
        left: -130px;
    }
    .hypersy-product__text-img > img {
        max-width: 300px;
    }

    .hypersy-product__img-sausage {
        top: 250px;
        right: -90px;
    }
    .hypersy-product__img-sausage > img {
        max-width: 250px;
    }

    .hypersy-product__img-top-right {
        right: -115px;
        top: -35px;
    }
    .hypersy-product__img-top-right > img {
        max-width: 150px;
    }

    .hypersy-product__img-bottom {
        top: 400px;
        right: -20px;
    }
    .hypersy-product__img-bottom > img {
        max-width: 250px;
    }

    .hypersy-product__color-green .hypersy-product__img-top-left {
        left: -120px;
    }
    .hypersy-product__color-green .hypersy-product__img-top-left > img {
        max-width: 250px;
    }

    .product_pizza_party .hypersy-product__img-sausage > img {
        max-width: 350px;
    }

    .product_cola_bombs .hypersy-product__img-top-right {
        right: -100px;
        top: -90px;
    }
    .product_cola_bombs .hypersy-product__img-top-right > img {
        max-width: 160px;
    }

    .product_match_sour_onion .hypersy-product__img-top-right {
        right: -80px;
        top: -60px;
    }
    .product_match_sour_onion .hypersy-product__img-top-right > img {
        max-width: 120px;
    }
    /* конец стилей для детальной странице продукта */
}

@media (max-width: 1300px) {
    /* стили для детальной странице продукта */
    .hypersy-product__img-bottom {
        top: 420px;
        right: -30px;
    }
    .hypersy-product__img-bottom > img {
        max-width: 200px;
    }
    /* конец стилей для детальной странице продукта */
}

@media (max-width: 1200px) {
    .hypersy-header .container-fluid {
        padding-right: 30px;
        padding-left: 30px;
    }

    .navbar-brand > img {
        max-width: 150px;
    }

    .central-capsule .nav-item .nav-link {
        padding: 8px 15px;
    }

    .dropdown .hypersy-dropdown-menu {
        left: -20px;
    }

    .btn-feedback {
        padding: 12px 20px;
    }

    .animation-line-container {
        height: 200px;
        top: -42px;
    }

    .line,
    .animation-line-track  {
        height: 50px;
    }

    .hypersy-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hypersy-footer__block-address {
        max-width: 35%;
    }

    .product-item__title > a {
        font-size: 38px;
        line-height: 90%;
    }

    /* стили для детальной странице продукта */
    .row-hypersy-product {
        padding-left: 20px;
        padding-right: 20px;
    }

    hypersy-product__top-block {
        height: 90px;
    }

    .hypersy-product__top-block > span,
    .hypersy-product__color-dark-blue .hypersy-product__top-block > span  {
        font-size: 38px;
    }

    .hypersy-product__top-block > img {
        max-width: 60px;
    }

    .btn-product {
        font-size: 24px;
        padding: 25px 40px;
    }

    .hypersy-product__img-top-right {
        right: -100px;
        top: -60px;
    }
    .hypersy-product__img-top-right > img {
        max-width: 150px;
    }

    .hypersy-product__text-img {
        top: 250px;
        left: -90px;
    }
    .hypersy-product__text-img > img {
        max-width: 230px;
    }

    .hypersy-product__img-sausage {
        top: 250px;
        right: -150px;
    }
    .hypersy-product__img-sausage > img {
        max-width: 200px;
    }

    .hypersy-product__img-bottom {
        top: 380px;
    }
    .hypersy-product__img-bottom > img {
        max-width: 200px;
    }

    .hypersy-product__img-block {
        text-align: right;
        top: 0;
    }

    .hypersy-product__main-img {
        max-width: 400px;
    }

    .hypersy-product__color-green .hypersy-product__img-top-left {
        top: -50px;
        left: -100px;
    }
    .hypersy-product__color-green .hypersy-product__img-top-left > img
    {
        max-width: 200px;
    }

    .product_pizza_party .hypersy-product__img-sausage {
        top: 320px;
        right: -200px;
    }
    .product_pizza_party .hypersy-product__img-sausage > img {
        max-width: 300px;
    }

    /* конец стилей для детальной странице продукта */
}

@media (max-width: 1024px) {
    .navbar-collapse {
        background-color: #ff7f27;
        padding: 15px 0 0 0;
    }
    .central-capsule {
        margin-bottom: 20px;
    }

    .navbar-nav.navbar-nav-desc {
        display: none;
    }

    .navbar-nav.navbar-nav-mob {
        display: block;
    }

    .central-capsule {
        max-width: 400px;
        width: 100%;
        margin-bottom: 0;
    }

    .central-capsule .nav-item.active-pill {
        background-color: transparent;
    }

    .central-capsule .nav-item .nav-link {
        color: #000000;
        text-align: center;
    }

    .central-capsule .dropdown-toggle:after {
        display: none;
    }

    .hypersy-dropdown-menu {
        display: block;
        width: auto;
        background-color: transparent;
        padding-top: 0;
        margin: 0;
    }

    .central-capsule .nav-item .nav-link {
        font-size: 16px;
        font-weight: 600;
        line-height: normal;
        text-transform: uppercase;
        padding: 10px 25px;
        letter-spacing: 0.5px;
    }

    .central-capsule .nav-item .nav-link:hover {
        border-radius: 16px;
    }

    .hypersy-dropdown-menu .dropdown-item {
        font-size: 16px;
        justify-content: center;
    }

    .dropdown-item > img {
        max-width: 30px;
    }

    .header-actions {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .btn-feedback {
        width: 100%;
        font-size: 20px;
        border-radius: 16px;
        padding: 20px;
    }

    .central-capsule .nav-item .nav-link {
        text-align: left;
    }

    .central-capsule .nav-item .nav-link {
        font-size: 16px;
        font-weight: 600;
        line-height: normal;
        text-transform: uppercase;
        padding: 10px 0;
        letter-spacing: 0.5px;
    }

    .navbar-nav.navbar-nav-mob .nav-item .nav-link {
        display: grid;
        align-items: center;
        text-decoration: none;
        grid-template-columns: 1fr 3fr 0.5fr;
        padding: 20px 15px;
    }

    .nav-link-arrow {
        text-align: right;
    }

    .hypersy-dropdown-menu {
        padding: 0 0 0 35px;
    }

    .hypersy-dropdown-menu .dropdown-item {
        justify-content: left;
        padding: 5px 0;
    }
}

@media (max-width: 991px) {
    .btn-feedback {
        font-size: 16px;
    }

    .hypersy-breadcrumbs {
        padding-left: 35px;
        padding-right: 20px;
    }

    .slick-prev,
    .slick-next {
        width: 45px;
        height: 45px;
    }

    .container-banners {
        padding-left: 0;
        padding-right: 0;
    }

    .products_meat_snacks .product-title > img {
        width: 100%;
        max-width: 600px;
    }

    .hypersy-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .row-hypersy-footer {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .hypersy-footer__block-address {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .product-slider {
        gap: 30px 0;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .product-item {
        width: 48%;
        display: block;
    }

    .product-item__bgr {
        opacity: 1;
    }

    /* стили для детальной странице продукта */
    .row-hypersy-product {
        flex-wrap: wrap;
    }

    .hypersy-product__img-bgr {
        background-position: top center;
        /*background-size: auto;*/
        right: 0;
    }

    .hypersy-product__info-block {
        width: 100%;
        order: 2;
        padding-bottom: 50px;
    }

    .hypersy-product__text-info {
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.12);
    }

    .hypersy-product__top-block > span,
    .hypersy-product__color-dark-blue .hypersy-product__top-block > span {
        font-size: 32px;
    }

    .btn-product {
        font-size: 22px;
        padding: 20px 50px;
    }

    .hypersy-product__img-block {
        text-align: center;
        width: 100%;
        order: 1;
    }

    .hypersy-product__main-img {
        max-width: 550px;
    }

    .img-desc,
    .hypersy-product__img-top-right {
        display: none;
    }

    .img-sausage-mobile {
        display: block;
        right: inherit;
        left: -80px;
        top: 300px;
        bottom: 40px;
        transform: scaleX(-1);
    }

    .hypersy-product__img-sausage > img {
        max-width: 250px;
    }

    .hypersy-product__img-bottom {
        right: -100px;
    }
    .hypersy-product__img-bottom > img {
        max-width: 300px;
    }

    .hypersy-product__text-img {
        display: none;
    }

    .hypersy-product__color-green .hypersy-product__img-top-left {
        top: 0;
        left: -60px;
    }
    .hypersy-product__color-green .hypersy-product__img-top-left > img {
        max-width: 200px;
    }

    .product_pizza_party .img-sausage-mobile {
        transform: scaleX(1);
        top: 570px;
        right: 300px;
    }
    .product_pizza_party .hypersy-product__img-top-left {
        transform: scale(-1, -1) rotate(80deg);
        top: 50px;
        left: -80px;
    }

    .product_cola_bombs .hypersy-product__img-top-left > img {
        max-width: 250px;
    }

    .product_match_sour_onion .hypersy-product__img-top-left {
        top: 10px;
        left: -200px;
    }
    .product_match_sour_onion .hypersy-product__img-top-left > img {
        max-width: 400px;
    }

    /* конец стилей для детальной странице продукта */

    /* MODAL-SHOPS */
    .modal.modal-shops {
        padding: 0 15px !important;
    }
    /* END MODAL-SHOPS */
}

@media (max-width: 860px) {
    /* MODAL-SHOPS */
    .modal-hypersy-shops-title > img {
        max-width: 350px;
    }

    .modal-hypersy-shops ul > li a {
        height: 120px;
    }

    .modal-hypersy-shops ul > li img {
        max-width: 200px;
    }

    .modal-hypersy-img-sosiska {
        top: 13px;
    }
    .modal-hypersy-img-sosiska > img {
        max-width: 250px;
    }

    .modal-hypersy-img-strawberry {
        top: 45px;
        right: 110px;
    }
    .modal-hypersy-img-strawberry > img {
        max-width: 150px;
    }
    /* END MODAL-SHOPS */
}

@media (max-width: 757px) {
    .hypersy-header .container-fluid {
        padding-right: 20px;
        padding-left: 20px;
    }

    .navbar-brand > img {
        max-width: 150px;
    }

    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-prev {
        left: 20px;
    }

    .slick-next {
        right: 20px;
    }

    .animation-line-container {
        height: 150px;
        top: 0;
    }

    .line,
    .animation-line-track {
        height: 40px;
    }

    .hypersy-footer {
        padding-left: 0;
        padding-right: 0;
    }

    .hypersy-footer__block-social-links,
    .hypersy-footer__block-links {
        width: 100%;
        text-align: center;
    }

    .hypersy-footer__social-icons {
        justify-content: center;
        gap: 20px;
    }

    .container-fluid-banners {
        padding: 0;
    }

    .banners-list .slick-slide {
        margin: 0;
    }

    .banners-list .banner-item-desc {
        display: none;
    }

    .banners-list .banner-item-mob {
        display: block;
    }

    .product-item {
        border-radius: 10px;
    }

    .product-item__top {
        height: 50px;
    }

    .product-item__top > img {
        max-width: 40px;
    }

    .product-item__top > span {
        font-size: 24px;
    }

    .product-item__info {
        min-height: 450px;
    }

    .product-item__img > img {
        max-width: 250px;
    }

    .product-item__title > a {
        font-size: 30px;
        border-radius: 12px;
    }

    .product-item.item__dark-pink .product-item__title > a,
    .product-item.item__dark-blue .product-item__title > a {
        font-size: 30px;
    }

    /* стили для детальной странице продукта */
    .hypersy-product__info-block {
        padding: 0 15px 60px;
    }

    .hypersy-product__top-block {
        height: 80px;
    }

    .hypersy-product__top-block > span,
    .hypersy-product__color-dark-blue .hypersy-product__top-block > span {
        font-size: 28px;
    }

    .hypersy-product__top-block > img {
        max-width: 55px;
    }

    .hypersy-product__text-block {
        padding: 20px;
    }

    .hypersy-product__compound-text {
        font-size: 18px;
        line-height: 20px;
    }

    .btn-product {
        font-size: 18px;
        padding: 15px 50px;
    }

    .hypersy-product__main-img {
        max-width: 450px;
    }

    .hypersy-product__img-sausage > img {
        max-width: 200px;
    }

    .hypersy-product__img-bottom {
        right: -60px;
        top: 250px;
    }
    .hypersy-product__img-bottom > img {
        max-width: 250px;
    }

    .hypersy-product__color-green .hypersy-product__img-top-left {
        top: 0;
        left: -60px;
    }
    .hypersy-product__color-green .hypersy-product__img-top-left > img {
        max-width: 150px;
    }
    .hypersy-product__color-green .btn-product {
        box-shadow: 0 3px 2px 0 rgba(255, 255, 255, 0.70) inset, -1.5px -2px 2px 0 #7CAC08 inset;
    }

    .product_pizza_party .img-sausage-mobile {
        top: 475px;
        right: 40%;
    }
    .product_pizza_party .hypersy-product__img-sausage > img {
        max-width: 250px;
    }
    .product_pizza_party .hypersy-product__img-bottom {
        top: 320px;
    }
    .product_pizza_party .hypersy-product__img-top-left {
        top: 0;
        left: -70px;
    }
    .product_pizza_party .hypersy-product__img-top-left > img {
        max-width: 150px;
    }

    .product_match_sour_onion .hypersy-product__img-top-left {
        top: 20px;
        left: -150px;
    }
    .product_match_sour_onion .hypersy-product__img-top-left > img {
        max-width: 300px;
    }
    /* конец стилей для детальной странице продукта */

    /* MODAL-SHOPS */
    .modal-shops .modal-body {
        border-radius: 16px;
    }

    .modal-hypersy-shops {
        padding-top: 120px;
    }

    .modal-hypersy-shops-title > img {
        max-width: 280px;
    }

    .modal-hypersy-shops ul > li {
        border-radius: 16px;
    }

    .modal-hypersy-shops ul > li img {
        max-width: 160px;
    }

    .modal-hypersy-img-sosiska {
        top: 20px;
    }
    .modal-hypersy-img-sosiska > img {
        max-width: 200px;
    }

    .modal-hypersy-img-strawberry {
        top: 60px;
    }
    .modal-hypersy-img-strawberry > img {
        max-width: 100px;
    }

    .modal-hypersy-img-tomate {
        left: -100px;
    }
    .modal-hypersy-img-tomate > img {
        max-width: 190px;
    }

    .modal-hypersy-img-salat {
        max-width: 130px;
    }

    .modal-hypersy-img-list {
        bottom: -70px;
        left: 200px;
    }
    .modal-hypersy-img-list > img{
        max-width: 130px;
    }
    /* END MODAL-SHOPS */


    /* MODAL-OS */
    .modal-os .modal-dialog {
        position: relative;
        margin: 25px 20px;
    }

    .modal-os .modal-body {
        padding-left: 20px;
        padding-right: 20PX;
    }

    form .form-checkbox {
        padding: 0;
    }

    form .form-checkbox .label-text {
        font-size: 16px;
        line-height: 18px;
    }

    .modal-os form .form-checkbox .label-dot {
        margin-right: 15px;
    }
    /* END MODAL-OS */
}

@media (max-width: 660px) {
    .product-item {
        width: 100%;
    }

    .modal-hypersy-shops {
        padding-top: 100px;
    }

    .modal-hypersy-img-sosiska {
        top: 10px;
    }
    .modal-hypersy-img-sosiska > img {
        max-width: 185px;
    }

    .modal-hypersy-img-strawberry {
        top: 40px;
    }
}

@media (max-width: 575px) {
    .navbar-brand > img {
        max-width: 130px;
    }

    .hypersy-breadcrumbs {
        flex-wrap: wrap;
        padding: 20px;
    }

    .hypersy-breadcrumbs a,
    .hypersy-breadcrumbs p {
        font-size: 14px;
    }

    .slick-prev,
    .slick-next {
        width: 30px;
        height: 30px;
    }

    .slick-slider .slick-dots {
        position: relative;
        bottom: 0;
    }

    .line,
    .animation-line-track {
        height: 30px;
    }

    .products-sausages .product-title > img {
        width: 100%;
        max-width: 400px;
    }

    .product-item__title > a,
    .product-item.item__dark-pink .product-item__title > a,
    .product-item.item__dark-blue .product-item__title > a {
        font-size: 28px;
    }

    /* стили для детальной странице продукта */
    .hypersy-product__top-block {
        gap: 20px;
    }

    .hypersy-product__top-block > span,
    .hypersy-product__color-dark-blue .hypersy-product__top-block > span {
        font-size: 24px;
    }

    .hypersy-product__top-block > img {
        max-width: 50px;
    }

    .hypersy-product__info-block {
        padding-left: 0;
        padding-right: 0;
    }

    .hypersy-product__text {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .hypersy-product__compound {
        font-size: 20px;
        row-gap: 5px;
        margin-bottom: 15px;
    }

    .hypersy-product__compound > svg {
        width: 12px;
        top: 2px;
    }

    .hypersy-product__compound-text {
        padding: 10px 0 0 0;
    }

    .btn-product {
        font-size: 16px;
        padding: 15px 50px;
    }

    .hypersy-product__main-img {
        max-width: 400px;
    }

    .img-sausage-mobile {
        left: -70px;
        top: 250px;
    }

    .hypersy-product__img-bottom > img {
        max-width: 200px;
    }

    .product_pizza_party .img-sausage-mobile {
        top: 89%;
    }
    .product_pizza_party .hypersy-product__img-sausage > img {
        max-width: 60%;
    }

    .product_match_sour_onion .hypersy-product__img-top-left {
        left: -100px;
    }
    .product_match_sour_onion .hypersy-product__img-top-left > img {
        max-width: 200px;
    }
    /* конец стилей для детальной странице продукта */

    /* MODAL-SHOPS */
    .modal-shops .modal-dialog {
        margin: .5rem 0;
    }

    .modal-hypersy-shops {
        padding-left: 40px;
        padding-right: 40px;
    }

    .modal-hypersy-shops ul > li {
        flex: 0 0 100%;
    }

    .modal-hypersy-shops ul > li a {
        height: 100px;
    }


    .modal-hypersy-img-sosiska {
        left: 40px;
    }

    .modal-hypersy-img-strawberry {
        right: 10px;
    }

    .modal-hypersy-img-tomate {
        bottom: inherit;
        left: -85px;
        top: 135px;
    }
    .modal-hypersy-img-tomate > img {
        max-width: 160px;
    }

    .modal-hypersy-img-salat {
        right: -40px;
        bottom: 160px;
    }
    .modal-hypersy-img-salat > img {
        max-width: 120px;
    }

    .modal-hypersy-img-list {
        bottom: -10px;
        left: -10px;
    }


    /* END MODAL-SHOPS */
}

@media (max-width: 500px) {
    .hypersy-product__main-img {
        width: 70%;
    }

    .img-sausage-mobile {
        top: 200px;
    }

    .hypersy-product__img-bottom {
        top: 200px;
        right: -80px;
    }

    .hypersy-product__img-sausage > img,
    .hypersy-product__img-bottom > img {
        width: 80%;
    }

    .hypersy-product__color-green .hypersy-product__img-top-left {
        top: 0;
        left: -40px;
    }

    .hypersy-product__color-green .hypersy-product__img-top-left > img {
        max-width: 110px;
    }

    .product_pizza_party .hypersy-product__img-bottom {
        top: 220px;
    }
    .product_pizza_party .hypersy-product__img-top-left {
        left: -50px;
    }
    .product_pizza_party .hypersy-product__img-top-left > img {
        max-width: 100px;
    }

}

@media (max-width: 430px) {
    .img-sausage-mobile {
        top: 150px;
        left: -90px;
    }

    .modal-hypersy-shops-title > img {
        max-width: 200px;
    }

    .modal-hypersy-shops {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .modal-hypersy-img-sosiska {
        top: 20px;
        left: -10px;
    }
    .modal-hypersy-img-sosiska > img {
        max-width: 160px;
    }

    .modal-hypersy-img-strawberry {
        right: -10px;
        top: 50px;
    }
    .modal-hypersy-img-strawberry > img {
        max-width: 80px;
    }

    .modal-hypersy-img-list {
        bottom: -60px;
        left: -30px;
    }
}

@media (max-width: 360px) {
    .hypersy-breadcrumbs a,
    .hypersy-breadcrumbs p {
        font-size: 12px;
    }

    /* стили для детальной странице продукта */
    .hypersy-product__img-sausage > img,
    .hypersy-product__img-bottom > img {
        width: 60%;
    }

    .hypersy-product__img-bottom {
        top: 150px;
    }

    .img-sausage-mobile {
        top: 100px;
    }

    .hypersy-product__color-green .hypersy-product__img-top-left {
        top: -30px;
        left: -40px;
    }

    .hypersy-product__color-green .hypersy-product__img-top-left > img {
        max-width: 100px;
    }

    .product_pizza_party .hypersy-product__img-bottom {
        top: 170px;
    }

    .product_match_sour_onion .hypersy-product__img-top-left {
        top: -10px;
        left: -80px;
    }
    .product_match_sour_onion .hypersy-product__img-top-left > img {
        max-width: 150px;
    }
    /* конец стилей для детальной странице продукта */


    /* MODAL-SHOPS */
    .modal-shops .close {
        right: 10px;
        top: 10px;
    }

    .modal-hypersy-shops ul > li a {
        height: 80px;
    }

    .modal-hypersy-shops ul > li img {
        max-width: 140px;
    }
    /* END MODAL-SHOPS */
}


/* @media (min-width: 992px) */
@media (min-width: 1025px) {
    .central-capsule {
        max-width: 700px;
        width: 100%;
        background-color: #ffffff;
        border-radius: 50px;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .central-capsule .nav-item .nav-link {
        color: #000000;
    }

    .central-capsule .nav-item.active-pill {
        background-color: #ff3b30;
        border-radius: 50px;
    }

    .central-capsule .nav-item.active-pill .nav-link {
        color: #ffffff;
    }

    .hypersy-dropdown-menu {
        position: absolute;
        left: -10px;
        margin-top: 20px;
    }

    .hypersy-dropdown-menu:before {
        content: '';
        position: absolute;
        top: -8px;
        right: 35px;
        transform: translateX(-50%);
        border-width: 0 15px 15px 15px;
        border-style: solid;
        border-color: transparent transparent #ffffff transparent;
    }
}

@media (min-width: 1600px) {
    .central-capsule {
        max-width: 830px;
    }

    .central-capsule .nav-item .nav-link {
        font-size: 20px;
    }

    .hypersy-dropdown-menu {
        left: -30px;
    }

    .hypersy-dropdown-menu .dropdown-item {
        font-size: 20px;
    }

    .hypersy-dropdown-menu .dropdown-item {
        padding: 10px;
    }

    .dropdown-item > img {
        max-width: 45px;
    }

    .btn-feedback {
        font-size: 20px;
    }

    .hypersy-breadcrumbs {
        padding-left: 75px;
        padding-right: 75px;
    }

    .slick-prev,
    .slick-next {
        width: 70px;
        height: 70px;
    }

    .slick-prev {
        left: 40px;
    }

    .slick-next {
        right: 40px;
    }

    .line-bottom {
        margin-top: 30px;
    }

    .container-product {
        padding-left: 75px;
        padding-right: 75px;
    }

    .hypersy-footer {
        padding-right: 100px;
        padding-left: 75px;
    }

    .hypersy-footer__social-icons {
        gap: 20px;
    }

    .products-sausages {
        padding: 0;
    }

    .product_pizza_party .hypersy-product__img-top-left {
        top: 80px;
    }

    .product_cola_bombs .hypersy-product__img-top-left {
        top: 0;
    }
}

@media (min-width: 1800px) {
    .hypersy-footer {
        padding-right: 200px;
    }

    /* стили для детальной странице продукта */
    .hypersy-product__main-img {
        max-width: 680px;
    }

    .hypersy-product__img-sausage {
        top: 250px;
        right: -90px;
    }
    .hypersy-product__img-sausage > img {
        max-width: 370px;
    }

    .hypersy-product__text-img {
        top: 200px;
        left: -220px;
    }
    .hypersy-product__text-img > img {
        max-width: 420px;
    }

    .hypersy-product__img-top-right {
        right: -190px;
        top: -60px;
    }
    .hypersy-product__img-top-right > img {
        max-width: none;
    }

    .hypersy-product__img-bottom {
        top: 380px;
        right: -80px;
    }
    .hypersy-product__img-bottom > img {
        max-width: 400px;
    }

    .hypersy-product__color-green .hypersy-product__img-top-left {
        top: -100px;
        left: -250px;
    }

    .hypersy-product__color-green .hypersy-product__img-top-left > img {
        max-width: none;
    }

    .product_pizza_party .hypersy-product__img-sausage {
        top: 370px;
    }

    .product_pizza_party .hypersy-product__img-sausage > img {
        max-width: 450px;
    }

    .product_match_sour_onion .hypersy-product__img-top-right {
        right: -130px;
        top: -80px;
    }

    /* конец стилей для детальной странице продукта */
}

@media (min-width: 1900px) {
    .product-item__title > a {
        font-size: 50px;
    }

    .product-item.item__dark-blue .product-item__title > a {
        font-size: 42px;
        padding-top: 5px;
        padding-bottom: 15px;
    }
}

@media (min-width: 1960px) {
    .container-fluid {
        max-width: 1920px;
    }
}



