@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  overflow-y: hidden;
  padding-bottom: 0px;
}

a {
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #5c6735;
}
a:focus {
  color: rgb(57, 67, 20);
}
a:active {
  color: rgb(57, 67, 20);
}
a:focus-visible {
  outline: 3px solid #ffcd00 !important;
  border-radius: 3px;
}

#preloader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
  height: 100vh;
  width: 100vw;
  background-color: #5c6735;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  z-index: 10000000000000000000000000;
  opacity: 1;
}
#preloader img {
  animation: pulse 2s infinite;
  height: auto;
}
@media screen and (max-width: 576px) {
  #preloader img {
    width: 400px;
  }
}
@media screen and (max-width: 450px) {
  #preloader img {
    width: 80vw;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.5;
  }
}
button {
  background-color: transparent;
  border: none;
}
button:hover {
  cursor: pointer;
}
button:focus-visible {
  outline: 3px solid #ffcd00 !important;
  border-radius: 3px;
}

.header_phone_wrapper {
  position: relative;
}

.header_second_row_block_phone {
  font-size: 22px;
  font-family: "GothamPro-Medium", sans-serif;
  position: relative;
  transition: all 0.3s ease-in-out;
  margin-left: 35px;
  margin-top: 10px;
  white-space: nowrap;
}
.header_second_row_block_phone:hover {
  color: #ffcd00;
}
.header_second_row_block_phone:hover::before {
  background-color: #ffcd00;
}
@media screen and (max-width: 1540px) {
  .header_second_row_block_phone {
    font-size: 20px;
  }
  .header_second_row_block_phone::before {
    left: -27px;
    top: 5px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .header_second_row_block_phone {
    display: none;
  }
}
.header_second_row_block_phone::before {
  width: 22px;
  height: 22px;
  -webkit-mask-size: 22px 22px;
          mask-size: 22px 22px;
  -webkit-mask: url(../icon/phone_icon.svg);
          mask: url(../icon/phone_icon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: black;
  position: absolute;
  top: 3px;
  left: -34px;
  content: "";
  transition: all 0.3s ease-in-out;
}

.desktop-navbar-phones {
  position: absolute;
  top: 90%;
  right: 15%;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(149, 157, 165, 0.3) 0px 12px 30px;
  z-index: 100000000;
  display: none;
}
.desktop-navbar-phones:focus-visible {
  outline: 3px solid #ffcd00 !important;
}
@media screen and (max-width: 1200px) {
  .desktop-navbar-phones {
    right: 0;
    top: 100%;
  }
}
@media screen and (max-width: 576px) {
  .desktop-navbar-phones {
    width: 90vw;
  }
}
@media screen and (max-width: 450px) {
  .desktop-navbar-phones {
    width: 88vw;
  }
}
.desktop-navbar-phones_header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  padding-top: 18px;
  padding-bottom: 15px;
}
@media screen and (max-width: 576px) {
  .desktop-navbar-phones_header {
    padding: 17px 50px;
  }
}
@media screen and (max-width: 400px) {
  .desktop-navbar-phones_header {
    font-size: 16px;
  }
}
.desktop-navbar-phones_close {
  width: 35px;
  height: 35px;
  -webkit-mask-size: 25px 25px;
          mask-size: 25px 25px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask: url(../icon/cross_icon.svg);
          mask: url(../icon/cross_icon.svg);
  background-color: transparent;
  background: rgb(111, 111, 111);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: 7px;
  right: 15px;
  transition: all 0.3s ease-in-out;
  border: none;
}
@media screen and (max-width: 400px) {
  .desktop-navbar-phones_close {
    width: 30px;
    height: 30px;
  }
}
.desktop-navbar-phones_close:hover {
  background: rgb(57, 67, 20);
}
.desktop-navbar-phones_close:active {
  background: rgb(57, 67, 20);
}
.desktop-navbar-phones_close:focus {
  background: rgb(57, 67, 20);
}
.desktop-navbar-phones_links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.111);
  border-left: 1px solid rgba(0, 0, 0, 0.111);
}
@media screen and (max-width: 576px) {
  .desktop-navbar-phones_links {
    grid-template-columns: 1fr;
  }
}
.desktop-navbar-phones_links_link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  padding: 16px 30px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.111);
  border-right: 1px solid rgba(0, 0, 0, 0.111);
}
.desktop-navbar-phones_links_link .desktop-navbar-phones_icon_phone {
  width: 17px;
  height: 17px;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask: url(../icon/phone_icon.svg);
          mask: url(../icon/phone_icon.svg);
  background: #8ec340;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.desktop-navbar-phones_links_link .lifecell_logo {
  background: url(../icon/mobile_operators/lifecell_logo.png);
}
.desktop-navbar-phones_links_link .kievstar_logo {
  background: url(../icon/mobile_operators/kyivstar_logo.svg);
}
.desktop-navbar-phones_links_link .vodafon_logo {
  background: url(../icon/mobile_operators/vodafone_logo.svg);
}
.desktop-navbar-phones_links_link .desktop-navbar-phones_icon {
  width: 17px;
  height: 17px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  content: "";
}
.desktop-navbar-phones_links_link .desktop-navbar-phones_text {
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
.desktop-navbar-phones_links_link .desktop-navbar-phones_text:hover {
  color: #4a671f !important;
}
.desktop-navbar-phones_links_link .desktop-navbar-phones_text:active {
  color: #4a671f !important;
}
.desktop-navbar-phones_links_link .desktop-navbar-phones_text:focus {
  color: #4a671f !important;
}

#bwc-widget-action {
  right: 90px !important;
  bottom: 50px !important;
}

@media screen and (max-width: 531px) {
  .bwc-get-call {
    position: absolute !important;
    right: 70px !important;
    bottom: 0px !important;
    display: flex;
  }
}
.search_wrapper {
  outline: 1px solid gray;
  width: 100%;
  display: none;
  background: #fff;
  position: absolute;
  z-index: 100000000;
  position: absolute;
  top: 60px;
  left: 0px;
  right: 0px;
}

.search_wrapper p {
  margin: 0;
}

.search_wrapper p a {
  padding: 10px;
  display: flex;
}

.search_wrapper p a:hover {
  background: #5c6735;
  color: white;
}

.search_wrapper p a:focus {
  background: #5c6735;
  color: white;
}

@media screen and (max-width: 992px) {
  .mobile_parent_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 10px 30px;
    padding-right: 20px;
  }
  .mobile_parent_item p,
  .mobile_parent_item a {
    color: #2d2d2d;
    padding: 0 !important;
    margin: 0 !important;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
  }
  .mobile_parent > a,
  .mobile_parent > p {
    font-weight: bold;
    color: #2d2d2d;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    padding: 10px 30px;
    display: block;
  }
  .mobile_parent > p {
    color: #666666;
  }
  .mobile_parent > a {
    width: 100%;
    height: 100%;
  }
  .mobile_parent_arrow {
    background: url(../images/arrow_down.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    width: 35px;
    height: 12px;
    display: block;
    transition: all 0.3s ease-in-out;
    transform: rotateX(0deg);
  }
  .arrow_rotate {
    transform: rotateX(180deg);
  }
  .mobile_parent_child {
    background-color: white;
  }
  .mobile_parent_child span li {
    border-bottom: 1px solid rgba(89, 121, 41, 0.4823529412);
  }
  .mobile_parent_child span li:last-of-type {
    border-bottom: none;
  }
  .mobile_parent_child_item a {
    font-weight: bold;
    color: #2d2d2d;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    padding: 10px 30px;
    padding-left: 40px;
    display: block;
    transition: none !important;
  }
  /* Остальные меню */
  .mobile-navbar-nav {
    background-color: #5c6735;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .mobile-navbar-item {
    margin: 0px 29px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transitio: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
    border: 1px solid whitesmoke;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1176470588);
  }
  .mobile-navbar-item:first-of-type {
    border: none;
  }
  .mobile-navbar-item_allproducts {
    padding: 0px;
    margin: 16px 0px;
    background-color: transparent;
  }
  .mobile-navbar-item > a,
  .mobile-navbar-item > button {
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
  }
  .mobile-navbar-item .price_link {
    background-color: transparent;
  }
  .mobile-navbar-item:focus {
    background: #5c6735;
  }
  .mobile-navbar-item_more_btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    margin-left: -3px;
    height: 100%;
    width: 100%;
  }
  .mobile-navbar-item_more_block {
    background-color: white;
    display: flex;
    flex-direction: column;
    display: none;
    padding: 5px 0px;
  }
  .mobile-navbar-item_more_block > a {
    color: #2d2d2d;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    padding: 8px 0px;
    padding-left: 40px;
    border-bottom: 1px solid rgb(117, 117, 117);
  }
  .mobile-navbar-item_more_block > a:last-of-type {
    border-bottom: 1px solid transparent;
  }
}
@media screen and (max-width: 400px) {
  .mobile-navbar-collapse {
    width: 90vw;
  }
}
.mobile_search_container {
  display: block;
  height: 0px;
  width: 0px;
  position: absolute;
  top: -100px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .mobile_search_container {
    opacity: 1;
    width: auto;
    position: relative;
    top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 0px 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 50px;
    z-index: 1000001;
  }
}
@media screen and (max-width: 576px) {
  .mobile_search_container {
    margin: 0px 16px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .mobile_search_form {
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: row;
    position: relative;
    width: 100%;
    margin: 0;
    outline: 1px solid rgb(169, 169, 169);
    overflow: visible;
  }
}
.mobile_search_form .mobile_search_form_input {
  border: none;
  width: 100%;
  height: 35px;
  padding-left: 10px;
  background-color: white;
  padding-right: 10px;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  outline: 2px solid transparent;
  outline-offset: -2px;
  z-index: 100000001;
}
@media screen and (max-width: 768px) {
  .mobile_search_form .mobile_search_form_input {
    height: 43px;
  }
}
.mobile_search_form .mobile_search_form_input:hover {
  color: black;
  border: none;
  outline: 2px solid #5c6735;
  border-radius: 0px;
}
.mobile_search_form .mobile_search_form_input:focus-visible {
  border: none;
  color: black;
  outline: 2px solid #ffcd00;
  border-radius: 0px;
}
.mobile_search_form .mobile_search_form_input:focus {
  border: none;
  color: black;
  border-radius: 0px;
  outline: 2px solid #ffcd00;
}
.mobile_search_form .mobile_search_form_input:active {
  border: none;
  outline: none;
}
.mobile_search_form .mobile_search_form_button {
  border-radius: 0px;
  display: inline-block;
  margin: 0px;
  width: 45px;
  height: 35px;
  text-align: center;
  background: #f6f6f6;
  border: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 100000001;
}
@media screen and (max-width: 768px) {
  .mobile_search_form .mobile_search_form_button {
    width: 50px;
    height: 43px;
  }
}
.mobile_search_form .mobile_search_form_button::before {
  width: 20px;
  height: 20px;
  -webkit-mask-size: 25px 25px;
          mask-size: 25px 25px;
  -webkit-mask: url(../icon/search_icon.svg);
          mask: url(../icon/search_icon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: rgb(191, 191, 191);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: 7px;
  left: 11px;
  content: "";
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .mobile_search_form .mobile_search_form_button::before {
    top: 10px;
    left: 13px;
  }
}
.mobile_search_form .mobile_search_form_button:hover {
  background-color: #5c6735;
}
.mobile_search_form .mobile_search_form_button:hover::before {
  background: #ffffff;
}
.mobile_search_form .mobile_search_wrapper {
  border: 1px solid #e2e2e2;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  outline: 1px solid transparent;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  position: absolute;
  z-index: 1000000;
  position: absolute;
  top: 34px;
  left: 0px;
  right: 0px;
  box-shadow: rgba(149, 157, 165, 0.3) 0px 12px 30px;
}
@media screen and (max-width: 768px) {
  .mobile_search_form .mobile_search_wrapper {
    top: 44px;
  }
}
.mobile_search_form .mobile_search_wrapper p {
  margin: 0;
}
.mobile_search_form .mobile_search_wrapper p a {
  padding: 10px;
  display: flex;
}
.mobile_search_form .mobile_search_wrapper p a:hover {
  background: #f6f6f6;
}

.mobile_search_form_tablet {
  display: none;
}
@media screen and (max-width: 992px) {
  .mobile_search_form_tablet {
    display: flex;
    align-items: center;
    margin: 0px 20px;
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .mobile_search_form_tablet {
    display: none;
  }
}

.mobile_search_form_mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .mobile_search_form_mobile {
    display: flex;
  }
}

.mobile_search_container_basket {
  height: 43px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #5c6735;
  position: relative;
  margin-left: 30px;
}
@media screen and (max-width: 576px) {
  .mobile_search_container_basket {
    margin-left: 15px;
    width: 55px;
  }
}
.mobile_search_container_basket img {
  filter: invert(1) brightness(50);
  transition: all 0.3s ease-in-out;
  height: 23px;
  width: 23px;
}
@media screen and (max-width: 400px) {
  .mobile_search_container_basket img {
    height: 20px;
    width: 20px;
  }
}
.mobile_search_container_basket .search_count {
  position: absolute;
  top: 5px;
  right: 12px;
  padding: 3px 4px;
  text-align: center;
  border-radius: 50%;
  background-color: #ffcd00;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: black;
  font-size: 10px;
  line-height: 100%;
}
@media screen and (max-width: 576px) {
  .mobile_search_container_basket .search_count {
    right: 6px;
  }
}
@media screen and (max-width: 400px) {
  .mobile_search_container_basket .search_count {
    font-size: 9px;
  }
}

.product_details_popup_bg {
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99799999999;
  display: none;
}

#product_details_popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  z-index: 99900000000;
  background-color: rgba(157, 23, 23, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
#product_details_popup #product_details_popup_success {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 10;
  background-color: white;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
  padding: 30px 30px;
  outline: 1px solid #b5b5b5;
}
@media screen and (max-width: 576px) {
  #product_details_popup #product_details_popup_success {
    row-gap: 15px;
  }
}
@media screen and (max-width: 450px) {
  #product_details_popup #product_details_popup_success {
    row-gap: 10px;
  }
}
#product_details_popup #product_details_popup_success h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: #2d2d2d;
  margin: 0;
  color: #5c6735;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  #product_details_popup #product_details_popup_success h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1100px) {
  #product_details_popup #product_details_popup_success h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  #product_details_popup #product_details_popup_success h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  #product_details_popup #product_details_popup_success h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  #product_details_popup #product_details_popup_success h2 {
    font-size: 28px;
  }
}
#product_details_popup #product_details_popup_success span {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #212322;
  line-height: 120%;
  text-align: center;
}
@media screen and (max-width: 1366px) {
  #product_details_popup #product_details_popup_success span {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  #product_details_popup #product_details_popup_success span {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  #product_details_popup #product_details_popup_success span {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  #product_details_popup #product_details_popup_success span {
    font-size: 15px;
  }
}
#product_details_popup .product_details_popup_container {
  margin: 0 auto;
  width: 450px;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  display: none;
}
@media screen and (max-width: 576px) {
  #product_details_popup .product_details_popup_container {
    width: 80vw;
  }
}
#product_details_popup .product_details_popup_container .product_details_popup_container_close {
  width: 55px;
  height: 55px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: 0px;
  right: 0px;
  padding-right: 25px;
  padding-top: 25px;
  transition: all 0.3s ease-in-out;
  border: none;
}
@media screen and (max-width: 576px) {
  #product_details_popup .product_details_popup_container .product_details_popup_container_close {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 450px) {
  #product_details_popup .product_details_popup_container .product_details_popup_container_close {
    width: 40px;
    height: 40px;
  }
}
#product_details_popup .product_details_popup_container .product_details_popup_container_close::before {
  width: 35px;
  height: 35px;
  -webkit-mask-size: 25px 25px;
          mask-size: 25px 25px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask: url(../icon/cross_icon.svg);
          mask: url(../icon/cross_icon.svg);
  background-color: transparent;
  background: rgb(111, 111, 111);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding-right: 15px;
  padding-top: 15px;
  transition: all 0.3s ease-in-out;
  border: none;
  content: "";
}
@media screen and (max-width: 576px) {
  #product_details_popup .product_details_popup_container .product_details_popup_container_close::before {
    width: 30px;
    height: 30px;
  }
}
#product_details_popup .product_details_popup_container .product_details_popup_container_close:hover::before {
  background: #8fc53e;
}
#product_details_popup .product_details_popup_container .product_details_popup_container_close:active::before {
  background: #4e6c21;
}
#product_details_popup .product_details_popup_container .product_details_popup_container_close:focus::before {
  background: #4e6c21;
}
#product_details_popup .product_details_popup_container #popup_header {
  font-size: 30px;
  text-transform: uppercase;
  color: #2d2d2d;
  margin: 0;
  display: inline-block;
  padding: 0px 40px;
  padding-top: 50px;
  padding-bottom: 15px;
  color: #5c6735;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  #product_details_popup .product_details_popup_container #popup_header {
    font-size: 26px;
  }
}
@media screen and (max-width: 1100px) {
  #product_details_popup .product_details_popup_container #popup_header {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  #product_details_popup .product_details_popup_container #popup_header {
    font-size: 22px;
  }
}
@media screen and (max-width: 576px) {
  #product_details_popup .product_details_popup_container #popup_header {
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  #product_details_popup .product_details_popup_container #popup_header {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  #product_details_popup .product_details_popup_container #popup_header {
    font-size: 24px;
    padding: 0px 30px;
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 450px) {
  #product_details_popup .product_details_popup_container #popup_header {
    padding: 0px 30px;
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 375px) {
  #product_details_popup .product_details_popup_container #popup_header {
    font-size: 22px;
  }
}
#product_details_popup .product_details_popup_container .product_details_popup_container_form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 60px;
  padding-bottom: 30px;
}
@media screen and (max-width: 576px) {
  #product_details_popup .product_details_popup_container .product_details_popup_container_form {
    padding: 0px 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 450px) {
  #product_details_popup .product_details_popup_container .product_details_popup_container_form {
    padding: 0px 30px;
    padding-bottom: 30px;
  }
}
#product_details_popup .product_details_popup_container .product_details_popup_container_form .product_details_popup_container_form_row {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 10px;
}
#product_details_popup .product_details_popup_container .product_details_popup_container_form .product_details_popup_container_form_row label {
  font-size: 18px;
  font-weight: normal;
}
#product_details_popup .product_details_popup_container .product_details_popup_container_form .product_details_popup_container_form_row input {
  border: none;
  height: 100%;
  width: 100%;
  background-color: white;
  padding: 10px 0px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  outline: 1px solid #b5b5b5;
  outline-offset: -2px;
}
#product_details_popup .product_details_popup_container .product_details_popup_container_form .product_details_popup_container_form_row input:hover {
  color: black;
  border: none;
  outline: 2px solid #5c6735;
  border-radius: 0px;
}
#product_details_popup .product_details_popup_container .product_details_popup_container_form .product_details_popup_container_form_row input:focus-visible {
  border: none;
  color: black;
  outline: 2px solid #ffcd00;
  border-radius: 0px;
}
#product_details_popup .product_details_popup_container .product_details_popup_container_form .product_details_popup_container_form_row input:focus {
  border: none;
  color: black;
  border-radius: 0px;
  outline: 2px solid #ffcd00;
}
#product_details_popup .product_details_popup_container .product_details_popup_container_form .product_details_popup_container_form_row input:active {
  border: none;
  color: black;
  outline: 2px solid #ffcd00;
  border-radius: 0px;
}
#product_details_popup .product_details_popup_container .product_details_popup_container_form #product_details_popup_form_button {
  padding: 15px 30px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  white-space: nowrap;
  background-color: #5c6735;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
#product_details_popup .product_details_popup_container .product_details_popup_container_form #product_details_popup_form_button:hover {
  background-color: rgb(57, 67, 20);
  cursor: pointer;
}
#product_details_popup .product_details_popup_container .product_details_popup_container_form #product_details_popup_form_button:focus-visible {
  outline: 3px solid #ffcd00 !important;
  border-radius: 3px;
}
@media screen and (max-width: 576px) {
  #product_details_popup .product_details_popup_container .product_details_popup_container_form #product_details_popup_form_button {
    margin-bottom: 0;
    padding: 10px 30px;
  }
}
#product_details_popup .product_details_popup_container .product_details_popup_container_form #product_details_popup_footer_form_text {
  font-size: 14px;
  line-height: 140%;
  color: #212322;
  font-weight: normal;
  padding-top: 15px;
  text-align: center;
}

.reviews_item_rate {
  display: flex;
  flex-direction: row;
}
.reviews_item_rate .reviews_item_rate_star {
  position: relative;
}
.reviews_item_rate .reviews_item_rate_star:before {
  position: relative;
  display: block;
  content: "";
  -webkit-mask: url(../icon/star_icon.svg);
          mask: url(../icon/star_icon.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 15px;
  height: 15px;
  background-color: rgb(199, 199, 199);
  transition: all 0.3s ease-in-out;
}
.reviews_item_rate .reviews_item_rate_star:after {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  content: "";
  -webkit-mask: url(../icon/star_icon.svg);
          mask: url(../icon/star_icon.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  width: 15px;
  height: 15px;
  background-color: gold;
  transition: all 0.3s ease-in-out;
}
.reviews_item_rate .reviews_item_rate_star_checked::after {
  opacity: 1;
}

#footer {
  margin: 0px 50px;
  background-color: #5c6735;
  padding: 50px 55px;
  padding-left: 70px;
  display: flex;
  flex-direction: column;
}
#footer span,
#footer a,
#footer p,
#footer h5,
#footer h6 {
  color: white;
  font-size: 19px;
}
@media screen and (max-width: 500px) {
  #footer span,
  #footer a,
  #footer p,
  #footer h5,
  #footer h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  #footer span,
  #footer a,
  #footer p,
  #footer h5,
  #footer h6 {
    font-size: 14px;
  }
}
#footer span {
  line-height: 140%;
}
#footer h5,
#footer h6 {
  font-weight: bold;
  font-weight: bold;
}
#footer h6 {
  font-size: 20px;
}
@media screen and (max-width: 450px) {
  #footer h6 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1940px) {
  #footer {
    margin: 0px auto;
    max-width: 1820px;
  }
}
@media screen and (max-width: 1170px) {
  #footer {
    margin: 0px 30px;
  }
}
@media screen and (max-width: 576px) {
  #footer {
    margin: 0px 16px;
  }
}
@media screen and (min-width: 1500px) {
  #footer {
    padding: 50px 80px;
    padding-left: 100px;
  }
}
@media screen and (max-width: 1170px) {
  #footer {
    margin: 0px 30px;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 50px;
    padding-bottom: 80px;
    padding-left: 70px;
  }
}
@media screen and (max-width: 576px) {
  #footer {
    margin: 0px;
    margin-top: 40px;
    margin-bottom: -30px;
    padding: 30px;
    padding-left: 70px;
    padding-bottom: 65px;
  }
}
@media screen and (max-width: 400px) {
  #footer {
    padding-bottom: 60px;
    padding-left: 55px;
  }
}
#footer .footer_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  -moz-column-gap: 70px;
       column-gap: 70px;
}
@media screen and (max-width: 1500px) {
  #footer .footer_container {
    flex-wrap: wrap;
    -moz-column-gap: 8vw;
         column-gap: 8vw;
    row-gap: 40px;
    justify-content: center;
  }
}
@media screen and (max-width: 1250px) {
  #footer .footer_container {
    -moz-column-gap: 12vw;
         column-gap: 12vw;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 992px) {
  #footer .footer_container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
#footer .footer_container div h5 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  position: relative;
}
#footer .footer_container div h5::before {
  width: 27px;
  height: 27px;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #ffcd00;
  display: block;
  content: "";
  position: absolute;
  top: -2px;
  left: -40px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 576px) {
  #footer .footer_container div h5::before {
    width: 20px;
    height: 20px;
    top: 0px;
    left: -30px;
  }
}
#footer .footer_container .footer_container_info {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  width: 230px;
}
@media screen and (max-width: 1400px) {
  #footer .footer_container .footer_container_info {
    width: 270px;
  }
}
@media screen and (max-width: 992px) {
  #footer .footer_container .footer_container_info {
    width: 400px;
  }
}
@media screen and (max-width: 576px) {
  #footer .footer_container .footer_container_info {
    width: 100%;
  }
}
#footer .footer_container .footer_container_info h5::before {
  -webkit-mask: url(../icon/footer/planet_green_icon.svg);
          mask: url(../icon/footer/planet_green_icon.svg);
}
#footer .footer_container .footer_container_info a {
  font-size: 19px;
}
@media screen and (max-width: 500px) {
  #footer .footer_container .footer_container_info a {
    font-size: 20px;
  }
}
@media screen and (max-width: 450px) {
  #footer .footer_container .footer_container_info a {
    font-size: 21px;
  }
}
#footer .footer_container .footer_container_info div {
  display: flex;
  flex-direction: column;
}
#footer .footer_container .footer_container_info div span {
  font-size: 16px;
}
@media screen and (max-width: 500px) {
  #footer .footer_container .footer_container_info div span {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  #footer .footer_container .footer_container_info div span {
    font-size: 14px;
  }
}
#footer .footer_container .footer_container_info .footer_container_info_social .footer_container_info_social_title {
  font-size: 19px;
}
#footer .footer_container .footer_container_info .footer_container_info_social .footer_container_info_social_block {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-direction: row;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
#footer .footer_container .footer_container_info .footer_container_info_social .footer_container_info_social_block a span {
  width: 30px;
  height: 30px;
  -webkit-mask-size: 20px 20px;
          mask-size: 20px 20px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffcd00;
  flex-direction: row;
  transition: all 0.3s ease-in-out;
}
#footer .footer_container .footer_container_info .footer_container_info_social .footer_container_info_social_block a span:hover {
  background-color: white;
  cursor: pointer;
}
#footer .footer_container .footer_container_info .footer_container_info_social .footer_container_info_social_block a .footer_container_info_social_youtube {
  -webkit-mask: url(../icon/social/youtube_white_icon.svg);
          mask: url(../icon/social/youtube_white_icon.svg);
}
#footer .footer_container .footer_container_info .footer_container_info_social .footer_container_info_social_block a .footer_container_info_social_fb {
  -webkit-mask: url(../icon/social/facebook_white_icon.svg);
          mask: url(../icon/social/facebook_white_icon.svg);
}
#footer .footer_container .footer_container_info .footer_container_info_social .footer_container_info_social_block a .footer_container_info_social_instagram {
  -webkit-mask: url(../icon/social/instagram_white_icon.svg);
          mask: url(../icon/social/instagram_white_icon.svg);
}
#footer .footer_container .footer_container_info .footer_container_info_social .footer_container_info_social_block a .footer_container_info_social_telegram {
  -webkit-mask: url(../icon/social/telegram_white_icon.svg);
          mask: url(../icon/social/telegram_white_icon.svg);
}
#footer .footer_container .footer_container_stores {
  width: 300px;
}
@media screen and (max-width: 1500px) {
  #footer .footer_container .footer_container_stores {
    width: 400px;
  }
}
@media screen and (max-width: 576px) {
  #footer .footer_container .footer_container_stores {
    width: 100%;
  }
}
#footer .footer_container .footer_container_stores .footer_container_stores_address {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
#footer .footer_container .footer_container_stores .footer_container_stores_address h5 {
  margin-bottom: 10px;
}
#footer .footer_container .footer_container_stores .footer_container_stores_address h5::before {
  -webkit-mask: url(../icon/footer/location_green_icon.svg);
          mask: url(../icon/footer/location_green_icon.svg);
}
#footer .footer_container .footer_container_stores .footer_container_stores_schedule {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
#footer .footer_container .footer_container_information {
  width: 270px;
}
@media screen and (max-width: 992px) {
  #footer .footer_container .footer_container_information {
    width: 400px;
  }
}
@media screen and (max-width: 576px) {
  #footer .footer_container .footer_container_information {
    width: 100%;
  }
}
#footer .footer_container .footer_container_information h5 {
  margin-bottom: 16px;
}
#footer .footer_container .footer_container_information h5::before {
  -webkit-mask: url(../icon/footer/info_green_icon.svg);
          mask: url(../icon/footer/info_green_icon.svg);
}
#footer .footer_container .footer_container_information ul {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
#footer .footer_container .footer_container_information ul li {
  transition: all 0.3s ease-in-out;
}
#footer .footer_container .footer_container_information ul li:hover {
  color: #5c6735;
  background-color: transparent !important;
}
#footer .footer_container .footer_container_information ul li a {
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  line-height: 140%;
}
#footer .footer_container .footer_container_information ul li a:hover {
  color: rgb(57, 67, 20);
}
#footer .footer_container .footer_container_information ul li a:active {
  color: rgb(57, 67, 20);
}
#footer .footer_container .footer_container_information ul li a:focus {
  color: rgb(57, 67, 20);
}
#footer .footer_container .footer_container_subscribe {
  width: 400px;
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 1500px) {
  #footer .footer_container .footer_container_subscribe {
    width: 400px;
  }
}
@media screen and (max-width: 992px) {
  #footer .footer_container .footer_container_subscribe {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  #footer .footer_container .footer_container_subscribe {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  #footer .footer_container .footer_container_subscribe {
    margin-left: -30px;
  }
}
#footer .footer_container .footer_container_subscribe h5 {
  margin-bottom: 30px;
  line-height: 140%;
}
@media screen and (max-width: 450px) {
  #footer .footer_container .footer_container_subscribe h5 {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 400px) {
  #footer .footer_container .footer_container_subscribe h5 {
    line-height: 140%;
  }
}
#footer .footer_container .footer_container_subscribe h5::before {
  display: none;
}
#footer .footer_container .footer_container_subscribe .footer_container_subscribe_form {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: row;
  margin: 0;
  outline: 1px solid rgb(169, 169, 169);
  margin-bottom: 20px;
  height: 60px;
}
@media screen and (max-width: 450px) {
  #footer .footer_container .footer_container_subscribe .footer_container_subscribe_form {
    height: 40px;
    margin-bottom: 15px;
  }
}
#footer .footer_container .footer_container_subscribe .footer_container_subscribe_form .footer_container_subscribe_input {
  height: 100%;
  width: 100%;
  background-color: white;
  border: none;
  padding-left: 20px;
  padding-right: 10px;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}
#footer .footer_container .footer_container_subscribe .footer_container_subscribe_form .footer_container_subscribe_input:hover {
  background: rgba(246, 246, 246, 0.5215686275);
  color: black;
}
@media screen and (max-width: 450px) {
  #footer .footer_container .footer_container_subscribe .footer_container_subscribe_form .footer_container_subscribe_input {
    padding-left: 12px;
  }
}
#footer .footer_container .footer_container_subscribe .footer_container_subscribe_form .footer_container_subscribe_button {
  border-radius: 0px;
  border: none;
  margin: 0px;
  width: 73px;
  height: 100%;
  text-align: center;
  background: #ffcd00;
  transition: all 0.3s ease-in-out;
  padding: 0px;
  position: relative;
}
#footer .footer_container .footer_container_subscribe .footer_container_subscribe_form .footer_container_subscribe_button:hover {
  background-color: rgb(57, 67, 20);
}
#footer .footer_container .footer_container_subscribe .footer_container_subscribe_form .footer_container_subscribe_button:hover::before {
  background: #ffffff;
}
#footer .footer_container .footer_container_subscribe .footer_container_subscribe_form .footer_container_subscribe_button::before {
  width: 25px;
  height: 25px;
  -webkit-mask-size: 25px 25px;
          mask-size: 25px 25px;
  -webkit-mask: url(../icon/arrow_icon.svg);
          mask: url(../icon/arrow_icon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: 15px;
  left: 19px;
  content: "";
  transition: all 0.3s ease-in-out;
  transform: rotate(-90deg);
}
@media screen and (max-width: 450px) {
  #footer .footer_container .footer_container_subscribe .footer_container_subscribe_form .footer_container_subscribe_button {
    width: 50px;
  }
  #footer .footer_container .footer_container_subscribe .footer_container_subscribe_form .footer_container_subscribe_button::before {
    width: 20px;
    height: 17px;
    top: 10px;
    left: 13px;
  }
}
@media screen and (max-width: 576px) {
  #footer .footer_container .footer_container_subscribe span {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-align: center;
  }
}
#footer .footer_container .footer_container_subscribe .footer_container_subscribe_linkToOnix {
  position: absolute;
  bottom: 60px;
  right: 0px;
  font-weight: 600;
  font-size: 23px;
  line-height: 140%;
  color: #212322;
  letter-spacing: 1px;
  letter-spacing: 0.5px;
  font-weight: normal;
  color: #ffcd00;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
@media (max-width: 450px) {
  #footer .footer_container .footer_container_subscribe .footer_container_subscribe_linkToOnix {
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  #footer .footer_container .footer_container_subscribe .footer_container_subscribe_linkToOnix {
    font-size: 18px;
  }
}
@media screen and (max-width: 1500px) {
  #footer .footer_container .footer_container_subscribe .footer_container_subscribe_linkToOnix {
    bottom: 0px;
    right: 50%;
    transform: translateX(50%);
  }
}
@media screen and (max-width: 1400px) {
  #footer .footer_container .footer_container_subscribe .footer_container_subscribe_linkToOnix {
    position: relative;
    bottom: 0px;
    right: 0%;
    transform: translateX(0%);
    top: 40px;
  }
}
@media screen and (max-width: 992px) {
  #footer .footer_container .footer_container_subscribe .footer_container_subscribe_linkToOnix {
    top: 0px;
    margin-top: 30px;
    display: inline-block;
    text-align: center;
    width: 100%;
  }
}
#footer .footer_container .footer_container_subscribe .footer_container_subscribe_linkToOnix:hover {
  color: white;
}

#bwc-chat {
  z-index: 99900000909999 !important;
}

.header_second_row_basket {
  height: 100%;
  position: relative;
}
@media screen and (max-width: 992px) {
  .header_second_row_basket {
    display: none;
  }
}
.header_second_row_basket .header_second_row_basket_btn {
  background-color: #5c6735;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 100%;
  -moz-column-gap: 15px;
       column-gap: 15px;
  padding: 0px 15px;
  padding-right: 20px;
  transition: all 0.3s ease-in-out;
}
.header_second_row_basket .header_second_row_basket_btn:hover > .header_second_row_basket_btn_icon > .basket_btn_icon::before {
  background-color: #ffcd00;
}
.header_second_row_basket .header_second_row_basket_btn:hover > .header_second_row_basket_btn_icon_price {
  color: #ffcd00;
}
.header_second_row_basket .header_second_row_basket_btn:focus-visible {
  outline: 3px solid #ffcd00 !important;
}
@media screen and (max-width: 1270px) {
  .header_second_row_basket .header_second_row_basket_btn {
    padding: 0px 10px;
    padding-right: 15px;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  .header_second_row_basket .header_second_row_basket_btn {
    padding: 0px;
  }
}
.header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon .basket_btn_icon {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon .basket_btn_icon::before {
  width: 30px;
  height: 30px;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  content: "";
  -webkit-mask: url(../icon/basket_white_icon.svg);
          mask: url(../icon/basket_white_icon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: black;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1270px) {
  .header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon .basket_btn_icon {
    width: 25px;
    height: 25px;
  }
  .header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon .basket_btn_icon::before {
    width: 25px;
    height: 25px;
  }
}
.header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon .basket_btn_icon_open::before {
  -webkit-mask: url(../icon/cross_icon.svg);
          mask: url(../icon/cross_icon.svg);
}
.header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon .header_second_row_basket_btn_icon_badge {
  position: absolute;
  top: -7px;
  right: -7px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #ffcd00;
  border-radius: 50%;
  padding: 5px 6px;
  font-weight: bold;
  color: black;
  line-height: 100%;
  font-size: 11px;
}
.header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_cart {
  display: none;
}
@media screen and (max-width: 992px) {
  .header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_cart {
    display: block;
  }
}
.header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon_price {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #212322;
  color: black;
  font-weight: bold;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1366px) {
  .header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon_price {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon_price {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon_price {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon_price {
    font-size: 15px;
  }
}
@media screen and (max-width: 1270px) {
  .header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon_price {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .header_second_row_basket .header_second_row_basket_btn .header_second_row_basket_btn_icon_price {
    display: none;
  }
}
.header_second_row_basket .header_second_row_basket_block {
  position: absolute;
  display: none;
  top: 53px;
  right: 8px;
  border: 1px solid #e1e1e1;
  border-radius: 0;
  left: auto;
  padding: 16px 20px;
  padding-bottom: 20px;
  padding-right: 0px;
  padding-top: 10px;
  min-width: 300px;
  max-width: 350px;
  background-color: white;
  z-index: 1000000000;
  box-shadow: rgba(149, 157, 165, 0.3) 0px 12px 30px;
}
.header_second_row_basket .header_second_row_basket_block .header_second_row_basket_block_ul {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.header_second_row_basket .header_second_row_basket_block .header_second_row_basket_block_ul .header_second_row_basket_block_ul_empty {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #212322;
  padding-top: 5px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 1px solid #b5b5b5;
}
@media screen and (max-width: 1366px) {
  .header_second_row_basket .header_second_row_basket_block .header_second_row_basket_block_ul .header_second_row_basket_block_ul_empty {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .header_second_row_basket .header_second_row_basket_block .header_second_row_basket_block_ul .header_second_row_basket_block_ul_empty {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .header_second_row_basket .header_second_row_basket_block .header_second_row_basket_block_ul .header_second_row_basket_block_ul_empty {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .header_second_row_basket .header_second_row_basket_block .header_second_row_basket_block_ul .header_second_row_basket_block_ul_empty {
    font-size: 15px;
  }
}
.header_second_row_basket .header_second_row_basket_block .header_second_row_basket_block_ul::-webkit-scrollbar {
  width: 5px;
}
.header_second_row_basket .header_second_row_basket_block .header_second_row_basket_block_ul::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #b7b7b7, #868686);
  border-radius: 4px;
}
.header_second_row_basket .header_second_row_basket_block .header_second_row_basket_block_ul::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: linear-gradient(180deg, #ffcd00, #ffcd00);
}
.header_second_row_basket .header_second_row_basket_block .cart-total {
  padding-right: 20px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}
.header_second_row_basket .header_second_row_basket_block .header_second_row_basket_button {
  padding: 15px 30px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  white-space: nowrap;
  background-color: #5c6735;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  padding: 10px 30px;
  min-width: 80%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
.header_second_row_basket .header_second_row_basket_block .header_second_row_basket_button:hover {
  background-color: rgb(57, 67, 20);
  cursor: pointer;
}
.header_second_row_basket .header_second_row_basket_block .header_second_row_basket_button:focus-visible {
  outline: 3px solid #ffcd00 !important;
  border-radius: 3px;
}
.header_second_row_basket .header_second_row_basket_block .cart-item {
  padding: 8px;
  border-bottom: 1px solid #eee;
}
.header_second_row_basket .header_second_row_basket_block .cart-item .header_row {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.header_second_row_basket .header_second_row_basket_block .cart-item .header_row .image {
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transition: all 0.3s ease-in-out;
}
.header_second_row_basket .header_second_row_basket_block .cart-item .header_row .image:hover {
  filter: opacity(0.7);
}
.header_second_row_basket .header_second_row_basket_block .cart-item .price {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #212322;
  padding-top: 8px;
}
@media (max-width: 1366px) {
  .header_second_row_basket .header_second_row_basket_block .cart-item .price {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .header_second_row_basket .header_second_row_basket_block .cart-item .price {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .header_second_row_basket .header_second_row_basket_block .cart-item .price {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .header_second_row_basket .header_second_row_basket_block .cart-item .price {
    font-size: 13px;
  }
}
.header_second_row_basket .header_second_row_basket_block .pull-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.header_second_row_basket .header_second_row_basket_block .pull-right span {
  font-size: 20px;
}
.header_second_row_basket .header_second_row_basket_block .pull-right .price_sum {
  font-size: 20px;
}
.header_second_row_basket .header_second_row_basket_block .name {
  margin: 0;
}
.header_second_row_basket .header_second_row_basket_block .name a {
  font-size: 16px;
  margin-top: 0px;
  line-height: 110%;
  transition: all 0.3s ease-in-out;
}
.header_second_row_basket .header_second_row_basket_block .name a:hover {
  color: rgb(57, 67, 20);
}

.header_second_row_basket_mobile {
  display: none;
  background-color: #5c6735;
  border: none;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.header_second_row_basket_mobile:hover {
  background-color: rgb(57, 67, 20);
}
.header_second_row_basket_mobile:focus-visible {
  outline: 3px solid #ffcd00 !important;
}
@media screen and (max-width: 992px) {
  .header_second_row_basket_mobile {
    height: 100%;
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .header_second_row_basket_mobile {
    margin-right: 15px;
    padding: 0px;
  }
}
.header_second_row_basket_mobile .header_second_row_basket_mobile_btn_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.header_second_row_basket_mobile .header_second_row_basket_mobile_btn_icon .basket_btn_icon {
  width: 35px;
  height: 35px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.header_second_row_basket_mobile .header_second_row_basket_mobile_btn_icon .basket_btn_icon::before {
  width: 35px;
  height: 35px;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  content: "";
  -webkit-mask: url(../icon/basket_white_icon.svg);
          mask: url(../icon/basket_white_icon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: black;
  position: absolute;
  top: 0px;
  left: 0px;
}
@media screen and (max-width: 1270px) {
  .header_second_row_basket_mobile .header_second_row_basket_mobile_btn_icon .basket_btn_icon {
    width: 30px;
    height: 30px;
  }
  .header_second_row_basket_mobile .header_second_row_basket_mobile_btn_icon .basket_btn_icon::before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 420px) {
  .header_second_row_basket_mobile .header_second_row_basket_mobile_btn_icon .basket_btn_icon {
    width: 26px;
    height: 26px;
  }
  .header_second_row_basket_mobile .header_second_row_basket_mobile_btn_icon .basket_btn_icon::before {
    width: 26px;
    height: 26px;
  }
}
.header_second_row_basket_mobile .header_second_row_basket_mobile_btn_icon .header_second_row_basket_mobile_btn_icon_badge {
  position: absolute;
  top: -7px;
  right: -7px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #ffcd00;
  border-radius: 50%;
  padding: 5px 6px;
  font-weight: bold;
  font-size: 10px;
  color: black;
  line-height: 100%;
  font-size: 11px;
}