@font-face {
    font-family: 'Evolventa_700';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Evolventa-Bold.ttf') format('woff');
}

@font-face {
    font-family: 'Evolventa_400';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Evolventa-Regular.ttf') format('woff');
}

@font-face {
    font-family: 'Involve_400';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Involve-Regular.ttf') format('woff');
}

* {
    font-family: 'Evolventa_400',sans-serif;
    box-sizing: border-box; 
}

:root {
    --color-red: #DC3017;
    --color-white: #ffffff;
    --color-black: #202020;
    --color-grey: #F0F0F0;
    --color-grey-hover: #d6dde3;
    --color-red-hover: #980000;

}

body {
    margin: 0;
    overflow-x: hidden;
    background-color: var(--color-white);
    padding-top: 80px;
}

h1 {
    margin: 0;
    font-size: 32px;
    font-family: 'Evolventa_700', sans-serif;
}

h2 {
    margin: 0;
    font-family: 'Evolventa_700', sans-serif;
}

h3 {
    margin: 0;
    font-family: 'Evolventa_700', sans-serif;
}


h4 {
    margin: 0;
    font-size: 20px;
    font-family: 'Evolventa_700', sans-serif;
}

h5 {
    margin: 0;
    font-size: 16px;
    font-family: 'Evolventa_700', sans-serif;
}

p {
    margin: 0;
}

a {
    list-style: none;
    text-decoration: none;
    color: var(--color-black);
}

header {
    border-bottom: 1px solid var(--color-grey);
        position: fixed;
    z-index: 99;
    background: #fff;
    width: 100%;
    top: 0;
}

.container {
    width: 1280px;
    margin: 0 auto;
}

.container_info_special {
     width: 1320px;
     margin: 0 auto;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    margin-bottom: 16px;
}

.header_burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-red);
  border-radius: 8px;
  position: relative;
  background: var(--color-red);
  cursor: pointer;
  z-index: 9999;
}

.header_burger span {
  background-color: var(--color-white);
  display: block;
  height: 2px;
  left: calc(50% - 13px);
  position: absolute;
  top: calc(50% - 1px);
  transform-origin: 50% 50%;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
  width: 26px;
}

.header_burger span::before,
.header_burger span::after {
  background-color: var(--color-white);
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transform-origin: 50% 50%;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
  width: 26px;
}

.header_burger span::before {
  top: 7px;
}

.header_burger span::after {
  top: -7px;
}

.header_burger.active span {
  background-color: transparent;
  transition: var(--color-white) 0.2s ease-out;
}

.header_burger.active span::before {
  top: 0;
  transform: rotate3d(0, 0, 1, -45deg);
}

.header_burger.active span::after {
  top: 0;
  transform: rotate3d(0, 0, 1, 45deg);
}

/* меню */
.sidebar {
  position: fixed;
  top: 9.6%;
  left: -280px; /* спрятано */
  width: 280px;
  height: 100%;
  background: var(--color-white);
  color: var(--color-black);
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
    margin: 20px 0;
    padding: 10px;
    width: fit-content;
    border-radius: 8px;
}

.sidebar li:hover {
    background-color: var(--color-grey-hover);
}

.sidebar a {
  color: var(--color-black);
  text-decoration: none;
  font-size: 18px;
  font-family: 'Evolventa_700', sans-serif;
}

.sidebar a:hover {
  color: var(--color-red);
}

/* активное состояние */
.sidebar.active {
  left: 0;
}

.left_block_header,
.right_block_header {
    display: flex;
    align-items: center;
    gap: 7px;
}

.address,
.phone,
.busket {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 18px 7px 18px;
    border-radius: 8px;
}
.address:hover,
.phone:hover,
.busket:hover {
    background-color: var(--color-grey-hover);
    cursor: pointer;
}

.busket {
    position: relative;
}

.amount {
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 2px;
    background-color: var(--color-red);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 12px;
    padding: 0.1px 5px;
}

.button_wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

a.first_button_link,
a.second_button_link  {
    padding: 7px 20px 7px 20px;
    border-radius: 8px;
    font-family: 'Evolventa_700', sans-serif;
}

.first_button_link {
    color:var(--color-black);
    background-color: var(--color-grey);
}

.second_button_link {
    color:var(--color-white);
    background-color: var(--color-red);
}

.first_button_link:hover {
    background-color: var(--color-grey-hover);
}

.second_button_link:hover {
    background-color: var(--color-red-hover);
}

button.button_submit.gift {
    background: red;
    padding: 5px 10px;
    color: #fff;
    justify-content: center;
}
button.button_submit.gift:hover {
    background: #fff;
    color: #000;
}


.info_block_button {
    margin-top: 16px;
}

.wrapper_info_block_button {
    display: flex;
}

.wrapper_info_block_button a {
    padding: 7px 20px 7px 20px;
    border-radius: 8px;
    font-family: 'Evolventa_700', sans-serif;
    margin-right: 8px;
}

.wrapper_info_block_button a:hover {
    background-color: var(--color-grey);
}

section.block_main_slider {
    margin-top: 16px;
}

.main_slider {
    overflow: hidden;
}

.main_slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 2px 6px 10px 0px #0000000D;
    height: 264px;
    border-radius: 16px;
    padding: 32px;
    background-size: cover;
}

.main_slide_title,
.main_slide_subtitle,
.main_slide_link {
    color: var(--color-white);

}

.main_slide_title {
    font-family: 'Evolventa_700', sans-serif;
    font-size: 24px;
}

.main_slide_subtitle {
    font-family: 'Evolventa_400', sans-serif;
    font-size: 18px;
}

.main_slide_link {
    font-family: 'Evolventa_700', sans-serif;
    font-size: 14px;
    background-color: var(--color-red);
    padding: 7px 20px 7px 20px;
    border-radius: 8px;
    width: fit-content;
}
.main_slide_link:hover {
    background-color: var(--color-red-hover);
}

.main_slider_btnBox {
    display: flex;
    gap: 15px;
    margin-top: 16px;
}

.main_slider_btnPrew:hover,
.main_slider_btnNext:hover {
    cursor: pointer;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 8px;
  background: #ECECEC;
  opacity: 1;
  transition: 0.3s;
  border-radius: 2px;
  margin-right: 6px;
}

.swiper-pagination-bullet-active {
  width: 25px;
  height: 8px;
  background: var(--color-black);
  opacity: 1;
}

.catalog_tabs {
    margin-top: 16px;
}

.tabs__nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    /*scrollbar-width: thin;  убрать скролл в IE/Edge */
    /*scrollbar-width: none;  убрать скролл */
    -ms-overflow-style: none; /* убрать скролл в IE/Edge */
    padding-bottom: 5px;
}

.tabs__nav::-webkit-scrollbar {
  height: 6px;
}

.choose-buttons::-webkit-scrollbar-thumb {
  background:  var(--color-black);
  border-radius: 3px;
}

.choose-buttons::-webkit-scrollbar-track {
  background: transparent;
}

.choose-buttons::-webkit-scrollbar-button {
  display: none;
}


.tabs__pane {
    display: none;
}

.tabs__pane_show {
    display: block;
}

.tabs__link {
    padding: 7px 20px 7px 20px;
    font-family: 'Evolventa_700', sans-serif;
    border-radius: 8px;
    background-color: var(--color-grey);
}

.tabs__link:hover {
    background-color: var(--color-grey-hover);
}

.tabs__link_active {
    background-color: var(--color-red);
    color: var(--color-white);
}

.tabs__link_active:hover {
    background-color: var(--color-red);
}

.tabs__content {
    margin-top: 36px;
}

.cart_tovar_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cart_tovar_item {
    width: calc(25% - 14px);
    height: auto;
    padding: 20px;
    box-shadow: 2px 6px 10px 0px #0000000D;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart_tovar_item img {
    width: 100%;
    border-radius: 7px;
    max-width: 266px;
    max-height: 100%;
    height: auto;
    margin-bottom: auto;
}

.title_tovar {
    margin-top: 10px;
}

.weight_tovar {
    margin-top: 4px;
    font-size: 14px;
    opacity: 40%;
}

.button_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--color-grey);
    border: 0px solid;
    border-radius: 7px;
    padding: 5px;
    cursor: pointer;
}

.input-group.count_btn.quantity-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-group.count_btn.quantity-form span {
    width: 25px;
    cursor: pointer;
}

.input-group.count_btn.quantity-form input {
    border: unset;
    width: 50px;
    margin-bottom: 0;
    padding: 0;
}

.btn_plus, 
.btn_minus {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_plus:hover svg, 
.btn_minus:hover svg {
    scale: 1.5;
}

.button_submit .btn_plus,
.button_submit .btn_minus {
  opacity: 0;
  pointer-events: none; /* нельзя кликать, пока нет active */
  transition: opacity 0.3s;
}

.button_submit.active .btn_plus,
.button_submit.active .btn_minus {
  opacity: 1;
  pointer-events: auto;
}

.button_submit:hover {
    background-color: var(--color-grey-hover);
    cursor: pointer;
}

.button_submit.active {
    background-color: var(--color-red);
}

.button_submit.active:hover {
    background-color: var(--color-red);
    cursor: pointer;
}

.button_submit p {
    font-family: 'Evolventa_700', sans-serif;
    font-size: 14px;
}

.button_submit.active p {
    color: var(--color-white);
}

.info_tovar_block {
    position: relative;
    display: flex
;
    flex-direction: column;
    height: 100%;
}

.new {
    width: 60px !important;
    height: 30px;
    position: absolute;
    right: -5%;
    top: -6%;
}

.rolls_delivery {
    margin-top: 36px;
}

footer {
    margin-top: 100px;
    border-top: 1px solid  var(--color-grey);
}

.footer_menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-family: 'Evolventa_700', sans-serif;
    font-size: 16px;
    margin-top: 20px;
}

.footer_menu a {
    font-family: 'Evolventa_700', sans-serif;
    font-size: 16px;
}

.footer_menu a:hover {
    color: var(--color-red);
    cursor: pointer;
}

.logo_footer {
    display: flex;
    justify-content: center;
    margin-top: 21px;
}

.info_app {
    margin-top: 10px;
    margin-top: 10px;
    text-align: center;
}

.icon_app_link {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
    position: relative;
}

.icon_social_footer {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.red_down_footer {
    background-color: var(--color-red);
    margin-top: 20px;
}

.red_down_footer_wrapper {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
}

.red_down_footer_wrapper a {
    color: var(--color-white);
}

.tel_and_mail_footer {
    display: flex;
    gap: 30px;
}

.basket_wrapper {
    margin: 0 auto;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.cart_basket_wrapper {
    width: 850px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.clear_basket {
    display: flex;
    justify-content: end;
    width: 100%;
    padding: 0 16px;
}

.clear_basket button {
    font-family: 'Evolventa_400',sans-serif;
    background: transparent;
    border: 0 solid;
    opacity: 0.5;
    font-size: 15px;
}

.clear_basket button:hover {
    cursor: pointer;
    color: var(--color-red);
}


.basket_item_cart {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 14px;
    box-shadow: 2px 6px 10px 0px #0000000D;
    border-radius: 16px;
}

.basket_item_cart:hover {
    background-color: var(--color-grey-hover);
}

.delete_cart {
    position: absolute;
    top: 5%;
    right: 1%;
    padding: 0 5px;
}

.delete_cart:hover {
    cursor: pointer;
}

.image_wrapper_basket_item {
    display: flex;
}

.image_wrapper_basket_item img {
    width: 170px;
    border-radius: 9px;
}


.info_cart_basket_item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.weight_tovar {
    margin-bottom: 6px;
}

.cost_and_amt p {
    font-size: 20px;
    font-family: 'Evolventa_700', sans-serif;
}

.number_sum {
    font-family: 'Evolventa_700', sans-serif;
    font-size: 20px;
    background-color: #F0F0F0;
    padding: 1px 14px;
    border-radius: 7px;
    margin: 0;
}

.calc_basket {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cost_and_amt {
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.amount_wrapper {
    margin-top: 20px;
    display: flex;
    gap: 40px;
}

.total_products,
.for_amount{
    font-family: 'Evolventa_700', sans-serif;
    font-size: 20px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.total_products p,
.for_amount p {
    font-family: 'Evolventa_700', sans-serif;
    font-size: 16px;
}

.info_present {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
}

.order_button {
    padding: 7px 21px 7px 21px;
    border-radius: 8px;
    font-family: 'Evolventa_700', sans-serif;
    color: var(--color-white);
    background-color: var(--color-red);
    border: 0px solid transparent;
        display: block;
    margin: 0 auto;
    font-size: 14px;
    margin-top: 20px;
        width: fit-content;
}

.order_button:hover {
    background-color: var(--color-red-hover);
    cursor: pointer;
}

.svg_wrapper_plus {
    display: flex;
    padding: 7px;
}

.svg_wrapper_minus {
    display: flex;
    padding: 10px;
}

.svg_wrapper_plus:hover, 
.svg_wrapper_minus:hover {
    cursor: pointer;
}

.order_main {
    position: relative;
}

.order_wrapper {
    text-align: center;
    width: 500px;
    margin: 0 auto;
    margin-top: 40px;
}

.form_details {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.form_address,
.form_payment,
.form_delivery {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.form_input_wrapper_top {
    display: flex;
    justify-content: space-between;
}

.form_input_wrapper_bottom {
    display: flex;
    gap: 40px;
}

.form_input_wrapper_top label,
.form_input_wrapper_bottom label {
    display: flex;
    align-items: center;
    gap: 2px;
    position: relative;
}

.form_input_wrapper_top label:hover,
.form_input_wrapper_bottom label:hover {
    cursor: pointer;
}

.title_form {
     margin-bottom: 16px;
}

input {
    border: 1px solid rgba(32, 32, 32, 0.5);
    border-radius: 16px;
    margin-bottom: 10px;
    padding: 12px 20px;
    width: 100%;
}

input:focus-visible {
    border: 1px solid var(--color-black);
    opacity: 0.5;
}

input::placeholder {
  color: var(--color-black);
}

textarea {
    border: 1px solid rgba(32, 32, 32, 0.5);
    border-radius: 16px;
    margin-bottom: 10px;
    padding: 12px 20px;
    width: 100%;
    resize: vertical;
    min-height: 112px;
}

textarea:focus-visible {
    border: 1px solid var(--color-black);
    opacity: 0.5;
}

.form_input_wrapper_top label input,
.form_input_wrapper_bottom label input {
    margin-bottom: 5px;
    padding: 8px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    appearance: none;
}

.form__checkbox label input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0;
    margin-right: 8px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 5px;
    position: relative;
}

.form__checkbox label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.form__checkbox label input[type="checkbox"]:checked {
    background-color: var(--color-red);
}

.form__checkbox label input[type="checkbox"]:checked::after  {
    content: "";
    color: var(--color-white);
    position: absolute;
    top: 0px;
    left: 5px;
    width: 5px;
    height: 12px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


input[type="radio"]:checked + .custom-radio::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--color-red);
    border-radius: 50%;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.clear_form {
    margin-top: 20px;
}

.clear_form button {
    background: transparent;
    border: 0px solid transparent;
    opacity: 0.5;
    text-decoration: underline;
    font-size: 14px;
}

.clear_form:hover button {
    opacity: 1;
    cursor: pointer;
}

.form__checkbox {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

button.form__submit {
    margin-top: 24px;
    background: var(--color-red);
    color: var(--color-white);
    padding: 7px 20px;
    border: 0px solid transparent;
    border-radius: 8px;
}

button.form__submit:hover {
    background: var(--color-red-hover);
    cursor: pointer;
}

.ginger {
    position: absolute;
    left: 0;
    bottom: 20%;
    z-index: 0;
}

img.logo_two {
    position: absolute;
    left: 8%;
    bottom: 45%;
    z-index: 0;
}

img.logo_one {
    position: absolute;
    right: 8%;
    top: 10%;
    z-index: 0;
}

img.leaf_one {
    position: absolute;
    right: 0%;
    top: 0%;
    z-index: 0;
}

img.leaf_two {
    position: absolute;
    left: 15%;
    top: 15%;
    z-index: 0;
}



.menu_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu_wrapper h1 {
    margin-top: 40px;
}

.menu_cart_wrapper {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.menu_cart_wrapper a {
    box-shadow: 2px 6px 10px 0px #0000000D;
    background-color: var(--color-grey);
    padding: 20px;
    width: calc(33% - 18px);
    border-radius: 16px;
}

.menu_cart_wrapper a:hover {
    background-color: var(--color-grey-hover);
}

.menu_cart_title {
    font-family: 'Evolventa_700', sans-serif;
    font-size: 18px;
    padding-left: 22px;
    margin-top: 8px;
}

.menu_cart img {
    width: 100%;
}

.promotions_wrapper h1 {
    margin-top: 40px;
}

.promotions_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promotions_cart_wrapper {
    margin-top: 40px;
}

.promotions_cart_wrapper {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cart_promotion {
    width: calc(50% - 18px);
    height: 264px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    margin-bottom: 38px;
    background-size: cover;
}

.work_time_mob {
    display: none;
}

.phone.phone_mob {
    display: none;
}

.address.address_mob {
    display: none;
}

.work_time_mob_nav {
    display: none;
}

.information_header_block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.button_wrapper_mob {
    display: none;
}

.order_wrapper {
    position: relative;
    z-index: 1;
}

.delivery_text_wrapper {
    width: 100%;
    margin-top: 35px;
    position: relative;
}

.delivery_text_left h2 {
    margin-bottom: 16px;
}

.delivery_text_left p {
    width: 55%;
    margin-bottom: 8px;
    font-family: 'Involve_400';
}

.delivery_text_left {
    padding-left: 100px;
}

.bludo_rolls {
    position: absolute;
}

.bludo_rolls {
    position: absolute;
    right: 0;
    top: 27%;
}

.cart_delivery_order_info {
    box-shadow: 2px 6px 10px 0px #0000000D;
    border-radius: 16px;
    padding: 16px;
    width: 232px;
}

.cart_order_info_delivery_wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.delivery_how_order h2 {
    margin-bottom: 8px;
    margin-top: 35px;
}

.delivery_how_order_text_subtitle {
    margin-bottom: 20px;
}

.cart_delivery_order_info p {
    font-size: 14px;
    font-family: 'Involve_400';
    margin-bottom: 20px;
}


.management_assistance p {
    margin-top: 14px;
    font-size: 14px;
    font-family: 'Involve_400';
}

.cart_delivery_order_info a {
    font-size: 20px;
    font-family: 'Evolventa_700';
    color: var(--color-black);
}

.cart_delivery_order_info span {
    color: var(--color-red);
    font-family: 'Evolventa_700';
}

.delivery_how_order {
    padding-left: 100px;
}

.or {
    font-family: 'Evolventa_700';
}

.carts_order_info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 16px;
}

.info_delivery_packet {
    position: absolute;
    bottom: -28%;
    left: 0;
}

.delivery_text_right {
    margin-top: 54px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.delivery_text_right h2 {
    width: 55%;
    margin-bottom: 12px;
}

.delivery_text_right p {
    width: 55%;
    margin-bottom: 12px;
    font-family: 'Involve_400';
    font-size: 14px;
}

.delivery_text_right p span {
    color: var(--color-red);
    font-family: 'Evolventa_700';
    font-size: 16px;
}

.delivery_cost_sity_cart {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    gap: 20px;
    box-shadow: 2px 6px 10px 0px #0000000D;
    border-radius: 16px;
}

.text_delivery_cost p {
    font-family: 'Involve_400';
    font-size: 14px;
    color: var(--color-black);
}

.text_delivery_cost p:nth-of-type(2n) {
  margin-left: 67px;
  padding-bottom: 12px;
}

.delivery_cost_sity_cart img {
    width: 206px;
    height: 122px;
}

.we_love_our_client {
    width: 55%;
    margin-top: 90px;
    font-family: 'Evolventa_700';
}

.we_love_our_client p {
    font-family: 'Involve_400';
    margin-top: 12px;
}

.contact_wrapper h1 {
    margin-top: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.icon_social {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.cart_address_wrapper {
    display: flex;
    justify-content: space-between;
    width: 1080px;
    margin: 0 auto;
}

.item_info {
    font-size: 16px;
    font-family: 'Involve_400';
    color: var(--color-black);
}

.item_value {
    font-size: 20px;
    font-family: 'Evolventa_700';
    color: var(--color-black);
    margin-bottom: 16px;
}

.cart_block {
    width: 574px;
    height: 282px;
}

.block_image_contacts {
    display: flex;
    justify-content: center;
    margin-top: 64px;
    flex-wrap: wrap;
}

/*Адаптив*/
@media (max-width: 1320px) {
    .container {
        margin: 0 auto;
        max-width: 1280px;
        width: 100%;
        height: 100%;
        padding: 0 10px;
    }
    .promotions_cart_wrapper {
        justify-content: center;
        gap: 18px;
    }
    .cart_promotion {
        margin-bottom: 0px;
    }
    .container_info_special {
        width: fit-content;
        margin: 0 auto;
    }
    .phone.phone_mob {
        display: flex;
        padding: 10px;
        width: fit-content;
    }
    .address.address_mob {
        display: flex;
        padding: 10px;
        width: fit-content;
    }
    .address.address_mob p {
        font-family: 'Evolventa_700', sans-serif;
        font-size: 16px;
    }
    .phone {
        display: none;
    }
    .address {
        display: none;
    }
    .address, .phone, .busket {
        gap: 8px;
    }
    .cart_tovar_item {
        width: calc(25% - 14px);
        height: auto;
    }
    .info_delivery_packet {
        bottom: -23%;
    }
}
@media (max-width: 1213px) {
    .cart_order_info_delivery_wrapper {
        flex-direction: column;
        align-items: flex-start;
        align-content: flex-start;
    }
    .cart_delivery_order_info {
        width: 232px;
    }
    .or {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 1100px) {
    .cart_address_wrapper {
        width: 100%;
        padding: 0 25px;
    }
}
@media (max-width: 1075px) {
    .info_delivery_packet {
        left: -3%;
    }
}

@media (max-width: 1050px) {
    .info_delivery_packet {
        left: -6%;
    }
}

@media (max-width: 1024px) {
    .tel_and_mail_footer {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    .menu_cart_wrapper a {
        width: calc(50% - 18px);
    }
    .cost_and_amt {
        padding-left: 20px;
    }
    .cart_promotion {
        width: 574px;
    }
    .bludo_rolls {
        position: absolute;
        right: 0;
        top: 27%;
        opacity: 0.1;
        z-index: -1;
    }
    .delivery_text_left p {
        width: 100%;
    }
    .delivery_text_left {
        padding-left: 0px;
        width: 80%;
        margin: 0 auto;
    }
    .delivery_how_order {
        padding-left: 0px;
        width: 80%;
        margin: 0 auto;
    }
    .info_delivery_packet {
        z-index: -1;
        opacity: 0.1;
    }
    .delivery_text_right {
        align-items: flex-start;
        width: 80%;
        margin: 0 auto;
        margin-top: 35px;
    }
    .delivery_cost_sity_cart {
        justify-content: flex-start;
        width: 80%;
        margin: 0 auto;
        margin-top: 34px;
        background-color: var(--color-grey);
        padding: 20px;
    }
    .delivery_text_right p {
        width: 100%;
    }
    .cart_address_wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .icon_social {
        justify-content: center;
    }
    .cart_block {
        margin-top: 50px;
    }
}

@media (max-width: 950px) {
    .cart_basket_wrapper {
        width: 100%;
        align-items: center;
    }
    .basket_item_cart {
        width: 95%;
    }
    .info_cart_basket_item {
        gap: 15px;
    }  
}
@media (max-width: 868px) {
    .delivery_cost_sity_cart {
        width: 90%;
        justify-content: space-evenly;
    }
}
@media (max-width: 788px) {
    .delivery_cost_sity_cart {
        flex-direction: column;
        align-items: center;
    }
    
}
@media (max-width: 768px) {
    .button_wrapper {
        display: none;
    }
    .red_down_footer_wrapper {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .wrapper_info_block_button {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .wrapper_info_block_button a {
        margin-right: 0px;
        width: calc(50% - 10px);
        text-align: center;
    }
    .cart_tovar_item {
        width: calc(50% - 14px);
    }
    .button_wrapper_mob {
        display: flex;
        margin-bottom: 20px;
        justify-content: center;
        gap: 15px;
    }
    .basket_item_cart {
        flex-direction: column;
    }
    .info_cart_basket_item {
        align-items: flex-start;
        flex-direction: column;
    }
    .basket_item_cart {
        width: 90%;
        padding: 25px;
    }
    .image_wrapper_basket_item {
        width: 100%;
    }
    .image_wrapper_basket_item img {
        width: 100%;
    }
    .cost_and_amt {
        margin-top: 40px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        gap: 50px;
        padding-left: 0px;
    }
    .delete_cart {
        position: absolute;
        top: 1%;
        right: 1%;
        padding: 0 5px;
    }
    .we_love_our_client {
        width: 90%;
    }
}
@media (max-width: 640px) {
    .carts_order_info {
        flex-direction: column;
    }
    .cart_block {
        width: 100%;
        height: 282px;
    }
}
@media (max-width: 600px) {
    .cart_tovar_item {
        width: 100%;
    }
    .menu_cart_wrapper a {
        width: 100%;
    }
    .cart_promotion {
        width: 100%;
    }
}
@media (max-width: 550px) {
    .icon_app_link {
        flex-direction: column;
        align-items: center;
    }
    .footer_menu {
        gap: 20px;
        flex-wrap: wrap;
    }
    .order_wrapper {
        width: 100%;
    }
    .container_order {
        padding: 0 20px;
    }
    .delivery_text_left {
        width: 90%;
    }
    .delivery_how_order {
        width: 90%;
    }
    .text_delivery_cost p:nth-of-type(2n) {
        margin-left: 0px;
        color: var(--color-red);
    }
    .text_delivery_cost {
        text-align: center;
        
    }
    .delivery_cost_sity_cart {
        width: 100%;
    }
    .delivery_text_right {
        width: 90%;
    }
    .cart_address_wrapper {
        width: 100%;
        padding: 0;
    }
}
@media (max-width: 500px) {
    .work_time_mob {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .work_time {
        display: none;
    }
    .right_block_header {
        gap: 0px;
    }
    .sidebar {
        top: 9%;
    }
    .busket {
        padding: 7px 18px 7px 7px;
    }
    .container {
        padding: 0 20px;
    }
    .delete_cart {
        top: 1%;
        right: 2%;
    }
    .clear_basket {
        padding: 10px 0px 0 0;
    }
    .form_payment, .form_delivery {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }
    .form_input_wrapper_top {
        flex-direction: column;
    }
    .form_input_wrapper_bottom {
        gap: 0px;
        flex-direction: column;
    }
}
@media (max-width: 470px) {
    .form__checkbox label input {
        margin-bottom: 10px;
        margin-right: 0px;
    }
    .form__checkbox {
        flex-direction: column;
        align-items: center;
    }
    .form__checkbox label {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 420px) {
    .work_time_mob {
        display: none;
    }
    .work_time_mob_nav {
        display: block;
        padding: 10px;
    }
}

@media (max-width: 404px) {
    .wrapper_info_block_button a {
        width: 100%;
    }
    .amount_wrapper {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }    
    .ginger {
        left: -60px;
    }
}

@media (max-width: 400px) {
    .sidebar {
        top: 8%;
    }
    .busket {
        padding: 7px 18px 7px 18px;
    }
    .info_delivery_packet {
        display: none;
    }
}

@media (max-width: 380px) {
    .sidebar {
        top: 7%;
    }
}

@media (max-width: 360px) {
    .sidebar {
        top: 6%;
    }
}
@media (max-width: 340px) {
    .icon_social_footer {
        right: -5px;
        bottom: 180%;
    }
}