@charset "UTF-8";
@import "../fonts/fonts1.css";
body{
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    color: #000;
    margin: 0;
    padding: 0;
    --red: #FC0002;
    --pink: #FFF5F5;
    font-size: 16px;
    line-height: 1.2;
}
a, a:hover{
    text-decoration: none;
    transition: 0.4s;
    cursor: pointer;
}
p{
  font-size: 16px;
  line-height: 1.2;
}
h1, h2, h3, h4, p, ul, ol{
    margin: 0;
}
ul, ol{
    list-style: none;
    margin: 0;
    padding: 0;
}
img{
    max-width: 100%;
}
input, button, textarea{
  outline: none;
}

@media (min-width: 1300px){
  .container {max-width: 1210px;}
}
@media (min-width: 1500px){
  .container {max-width: 1410px;}
}
@media (min-width: 1700px){
  .container {max-width: 1650px;}
}

.flex{
  display: flex;
  flex-wrap: wrap;
}
.flex.between{
    justify-content: space-between;
}
.flex.align-center{
  align-items: center;
}
.d-none{
  display: none;
}
.ttl.lg{
  font-weight: 700;
  font-size: 72px;
}
.ttl.md{
  font-weight: 700;
  font-size: 45px;
}
.ttl.sm{
  font-weight: 700;
  font-size: 28px;
}
.red, .ttl.red{
  color: var(--red);
}
.centered{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.white, .ttl.white{
  color: #fff;
} 

.pt110{padding-top: 110px;}
.mb110{margin-bottom: 110px;}
.mb80{margin-bottom: 80px;}
.mb60{margin-bottom: 60px;}
.mb50{margin-bottom: 50px;}
.mb40{margin-bottom: 40px;}
.mb35{margin-bottom: 35px;}
.mb30{margin-bottom: 30px;}
.mb25{margin-bottom: 25px;}
.mb20{margin-bottom: 20px;}
.mb15{margin-bottom: 15px;}
.mb10{margin-bottom: 10px;}

.padding-section{
  padding: 7% 0;
}
@media(min-width: 1700px){
  .padding-section{padding: 110px 0;}
}

.bg-img{
  display: block;
  position: absolute;
}

.modal {
  display: none;
  position: fixed; 
  top: 0;
  left: 0;
  z-index: 1200;  
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  outline: 0;
}
.modal-inner{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(253, 245, 230, 0.75);;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-wrapper{
  background: #fff;
  padding: 40px;
  position: relative;
  width: calc(100% - 30px);
  max-width: 840px;  
}
.modal-wrapper .icon-close{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 50px;
  color: var(--red);
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transition: .3s;
}
.modal-wrapper .icon-close:before {
  content: '+';
  transform: rotate(45deg);
}
.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 30px;
    line-height: 1;
    color: var(--red); 
    width: 270px;
    max-width: 100%;   
    height: 65px;
    cursor: pointer;
    transition: 0.4s;
    background: #fff;
    border-radius: 10px;
    outline: none;
    border: 1px solid var(--red);
    font-weight: 600; 
}
.btn:hover{
    box-shadow: 0 0 40px 40px var(--red) inset;
    color: #fff!important;
}
button.btn{
  max-width: 100%;
}

ol{
    counter-reset: list;
}
.btn.scnd{
  box-shadow: 0 0 40px 40px var(--red) inset;
  color: #fff!important;
}
.btn.scnd:hover{
  box-shadow: none;
  color: var(--red)!important;
}

.breadcrumb, .breadcrumb li{
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #000;
}
.breadcrumb .divider{
  margin: 0 5px;
}
.breadcrumb{
    flex-wrap: wrap;
}
/*.breadcrumb a span{
    color: #9297c1;
    transition: .3s;
}

.breadcrumb a:hover span{
    color: #382775;
}*/

.breadcrumb span{
    opacity: 0.5;
}

::-webkit-scrollbar {width: 6px;}
::-webkit-scrollbar-track {background: #000;}
::-webkit-scrollbar-thumb {background-color:  var(--red); border-radius: 3px;}
html, body, div, * {scrollbar-width: thin; scrollbar-color:  var(--red) #000;}

.burger-menu {
    display: none;
    width: 29px;
    height: 29px;
    position: relative;
    z-index: 900;
    padding: 5px;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--red);
    position: absolute;
    left: 5px;
    opacity: 1;
    transition: all linear 0.3s;
}
.burger-menu span:first-child {
    top: 7px;
}
.burger-menu span:nth-child(2), .burger-menu span:nth-child(3) {
    top: 15px;
}
.burger-menu span:last-child {
    top: 23px;
}
.burger-menu.active span:first-child {
    top: 0;
    opacity: 0;
}
.burger-menu.active span:nth-child(2) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.burger-menu.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.burger-menu.active span:last-child {
    top: 40px;
    opacity: 0;
}

.body-wrapper{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
.main{
  flex: 1;
  display: flex;
  flex-direction: column;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-item {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-menu,
.header-menu li {
  list-style: none;
}
.header-menu a {
  text-decoration: none;
}
.header-menu a,
.header-menu span {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
.header-menu .submenu a {
  font-weight: 500;
  color: #000;
}
.header-menu > .menu-item > a,
.header-menu > .menu-item > span {
  padding: 15px 50px;
}

.header-menu .menu-item:hover > a,
.header-menu .menu-item:hover > span {
  color: var(--red);
}

.header-menu > .menu-item.parent {
  position: relative;
}

.header-menu > .menu-item.parent > a{
  padding-right: 60px;
}
.header-menu > .menu-item.parent > a:before, .header-menu > .menu-item.parent > a:after
 {    
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  display: block;
  width: 8px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: #fff;
  transform: translate(-2px, -50%) rotate(45deg);
}
.header-menu > .menu-item.parent > a:after
{
  transform: translate(2px, -50%) rotate(-45deg);
}
.header-menu > .menu-item.parent:hover > a:before
 {
  transform: translate(-2px, -50%) rotate(-45deg);
  background: var(--red);
}
.header-menu > .menu-item.parent:hover > a:after
{
  transform: translate(2.5px, -50%) rotate(45deg);
  background: var(--red);
}
.header-menu > .menu-item.parent .submenu {
  width: 260px;
  background-color: #fff;
  border: 1px solid #BFBFBF;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(10px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 5;
  padding-left: 0;
}
.header-menu > .menu-item.parent > .submenu a {
  display: block;
  background-color: #fff;
  padding: 10px 10px 15px;
  text-align: center;
}
.header-menu .submenu li:not(:last-child){
  border-bottom: 1px solid #BFBFBF;
}
.header-menu > .menu-item.parent > .submenu .menu-item {
  position: relative;
}

.header-menu .menu-item.parent:hover .submenu {  
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.header-menu .menu-item.active > a,
.header-menu .menu-item.active > span {
  color: var(--red);
}
.header-menu > .menu-item.parent > .submenu > .menu-item.parent > a,
.header-menu > .menu-item.parent > .submenu > .menu-item.parent > .submenu > .menu-item.parent > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-menu > .menu-item.parent > .submenu > .menu-item.parent > a::after,
.header-menu > .menu-item.parent > .submenu > .menu-item.parent > .submenu > .menu-item.parent > a::after
 {
  content: "\203a";
  display: inline-block;
  margin-left: 10px;
  font-size: 18px;
}
.header-menu > .menu-item.parent > .submenu > .menu-item.parent .submenu
{
  position: absolute;
  top: 0;
  left: 198px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  width: 230px;
  padding-left: 0;
}
.header-menu > .menu-item.parent > .submenu > .menu-item.parent > .submenu > .menu-item.parent > .submenu{
  left: 228px;
}

.header-menu > .menu-item.parent .submenu > .menu-item.parent:hover > .submenu,
.header-menu > .menu-item.parent .submenu > .menu-item.parent .submenu > .menu-item.parent:hover > .submenu
 {
  visibility: visible;
  opacity: 1;
}
.header-menu
  > .menu-item.parent
  .submenu
  > .menu-item.parent:hover
  > .submenu
  .menu-item {
  border-bottom: 1px solid #e5e5e5;
}

#toTop {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--red);
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--red);
  box-shadow: 0 0 5px var(--red);
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 20;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
#toTop.show {
  visibility: visible;
  opacity: 1;
}
#toTop:before{
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
  transform: rotate(45deg);
  position: relative;
  top: 2px;
}
.header{
  position: fixed;    
  width: 100%;    
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: url(/images/header-bg.jpg) no-repeat center / cover #000;
  transition: .4s;
}
.main-page .header{
  background: rgba(0, 0, 0, 0.5);
}
.main-page .header.sticky{
  background: url(/images/header-bg.jpg) no-repeat center / cover #000;
}
.header .logo{
  width: 135px;
  transition: .4s;
}
.header.sticky .logo{
  width: 100px;
}
.header-links .link{
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 25px;
  color: #FFF;
  margin-right: 1.5em;
}
.header-links .link:hover {
  color: var(--red);
}

.header-links .icon-tel:before {
  margin-right: .5em;
}
.icon-cart{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 30px;
}
.cart_view .mycart_wrapp.externbootstrap_wrapp.wrapp_min.red .mycart_mini_txt {
  background-color: #fff;
  color: #000!important;
  font-weight: 600;
  font-size: 15px;
}

.mod-languages{
    width: 54px;
    height: 33px;
    padding: 5px 0;
    position: relative;
    margin-left: 15px;
}
.mod-languages .lang-list{
    width: 100%;
}
.mod-languages .lang-list a{
    color: #fff;
    font-weight: 600;
    font-size: 22px;  
}
.mod-languages .active-language{
    display: block;
    font-style: normal;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;    
}
.mod-languages:hover .active-language, .mod-languages .lang-list a:hover{
    color: var(--red);
}
.header .mod-languages .lang-list{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 5px;
    background: #09090C;
    border: 1px solid #fff;
    transition: 0.3s;
    z-index: 10;
    transform: translateY(15px); 
}
.header .mod-languages .lang-list li{
  text-align: center;
}
.header .mod-languages .lang-list{
  width: 100%;
}
.mod-languages .active-language:before, .mod-languages .active-language:after
 {    
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  width: 6px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: #fff;
  transform: translate(-2px, -50%) rotate(45deg);
}
.mod-languages .active-language:after {
  transform: translate(2px, -50%) rotate(-45deg);
}
.header .mod-languages:hover .active-language:before,
.mobile-menu .mod-languages.open .active-language:before
 {
  transform: translate(-2px, -50%) rotate(-45deg);
  background: var(--red);
}
.header .mod-languages:hover .active-language:after,
.mobile-menu .mod-languages.open .active-language:after
{
  transform: translate(2.5px, -50%) rotate(45deg);
  background: var(--red);
}
.mod-languages:hover .lang-list{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/*=================================*/
.main-slider{
  width: 100%;
  overflow: hidden;
}
.main-slider .swiper-slide{
  height: auto;
}
.main-screen{
  box-sizing: border-box;
  padding: 250px 0 200px;
/*  background: url(/images/main-screen-d.jpg) no-repeat bottom right / cover #F8CD6C;*/
  background: url(/images/new_year/ny_2025.jpg) no-repeat bottom right / cover #F8CD6C;
  position: relative;
}
.main-screen.sushi{
  background-image: url(/images/sushi-bg.jpg);
  background-position: 80% center;
  background-color: #000;
}
.main-screen .container{
  position: relative;
  z-index: 2;
}
.main-screen .ttl{
  max-width: 810px;
}
.main-screen .subttl{
  font-weight: 500;
  font-size: 30px;
}
.main-screen .deliv-info{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: #DD3132;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  position: absolute;
  right: 34%;
  bottom: 10%;
  z-index: 3;
}
.main-screen .deliv-info b{
  font-size: 20px;
  font-weight: 800;
}
.main-screen .deliv-info:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(/images/main-screen-round.svg) no-repeat center / contain;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  animation: pulse 3s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1.15);
  } 
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1.15);
  }
}
 /*
.snowContainer { width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 1;}
#snow {width: 100%; height: 100%; background-image: url("/images/new_year/snow1.png"), url("/images/new_year/snow2.png"), url("/images/new_year/snow3.png"); -webkit-animation: snow 10s linear infinite;-moz-animation: snow 10s linear infinite;-ms-animation: snow 10s linear infinite;animation: snow 10s linear infinite;}
@keyframes snow {0% {background-position: 0px 0px, 0px 0px, 0px 0px;} 100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}}
@-moz-keyframes snow {0% {background-position: 0px 0px, 0px 0px, 0px 0px;} 100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}}
@-webkit-keyframes snow {0% {background-position: 0px 0px, 0px 0px, 0px 0px;} 100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}}
@-ms-keyframes snow {0% {background-position: 0px 0px, 0px 0px, 0px 0px;} 100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}}*/


.main-content {
  background: url(/images/main-bg1.jpg) no-repeat left top / cover #FDF5E6;
}
.main-cat{
  position: relative;
}
.main-cat .container{
  position: relative;
  z-index: 2;
}
.list_product .product{
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 30px);
  background: #fff;
  margin: 15px;
  padding: 15px 25px 45px;
  text-align: center;
  font-size: 15px;
  box-shadow: 9px 9px 30px 2px #F8EEDA;
  border-radius: 10px;
  transition: .5s;
}
.list_product .product:hover {
  box-shadow: 29px 37px 50px 20px rgba(213, 199, 167, 0.6);
}
.list_product .image_block{
  position: relative;
  padding-bottom: 100%;
}
.list_product .image_block img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.list_product .name{
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  min-height: 56px;
}
.list_product .oiproduct{
  display: flex;
  flex-direction: column;
  flex: 1;
}
.list_product .description{
  font-weight: 300;
  flex: 1;
}
.list_product .price-for{
  font-weight: 500;
}
.list_product .jshop_price{
  font-weight: 600;
  font-size: 25px;
  
  color: var(--red);
}
.list_product .jshop_price span{
  font-weight: 700;
  font-size: 120%;
}
.list_product .input-append{
  display: flex;
  justify-content: center;
  align-items: center;
}
.list_product .count{
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: none;
  background: #F0F0F0;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;

}
.list_product .count.p_m{
  line-height: 0;
}
.list_product .quantity-box{
  width: 60px;
  height: 26px;  
  font-weight: 600;
  font-size: 20px;
}
.list_product .quantity-box.weight{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95px;
}
.list_product .quantity-box.weight:after{
  content: '00 г.';
}
.list_product .quantity{
  border: none;
  outline: none;
  width: 100%;
  max-width: 30px;
  flex-shrink: 0;  
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  padding: 0;
}
.list_product .weight .quantity{
  text-align: right;
}
.modal.cartt .modal-wrapper{
  width: auto;
  max-height: calc(100vh - 100px);
  overflow-y: scroll;
}
.modal.cartt .modal-wrapper::-webkit-scrollbar-track {background: #fff;}

.modal.cartt .extern_wrap{
  display: block;
  position: static;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: none;
  background: #fff;
  max-width: 100%;
  width: 730px;
  min-width: 0;
}
/*.modal.cartt .extern_content{
  max-height: calc(100vh - 300px);
  overflow-y: scroll;
}*/
.modal.cartt .extern_row{
  border: none;
  border-bottom: 1px solid #D0D0D1;
  padding-bottom: 10px!important;
  margin-bottom: 10px!important;
}
.modal.cartt .extern_row span{
  padding: 0;
}
.modal.cartt .extern_row .desription-top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.modal.cartt .extern_row .pict{
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal.cartt .extern_row .pict img{
  max-width: 100%;
  max-height: 100%;
}
.modal.cartt .extern_row .desription-top-middle{
  width: calc(100% - 120px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal.cartt .extern_row div.name{
  width: 50%;
  margin-right: 10px!important;
}

.modal.cartt .extern_row span.name{
  max-width: 100%;  
  margin-bottom: 8px;
  font-size: 18px;
  color: #000;
}

.modal.cartt .extern_row .quantity.block{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal.cartt .extern_row .quantity.block .qtty{
  width: auto;
  max-width: 100%;
  display: flex;
  margin-right: 15px;
}
.modal.cartt .extern_row .quantity.block .minus_quantity,
.modal.cartt .extern_row .quantity.block .plus_quantity{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 4px;
  background: #F0F0F0;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer; 
}

.modal.cartt .extern_row .quantity.block .minus_quantity{
  line-height: 1.4;
}
.modal.cartt .extern_row .quantity-box{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 26px;  
  font-weight: 600;
  font-size: 20px;
}
.modal.cartt .extern_row input.input_quantity {
  border: none;
  outline: none;
  width: 30px;  
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  margin-top: 1px;
}
.modal.cartt .extern_row .quantity-box.weight:after {
  content: '00 г.';
}
.modal.cartt .extern_row .quantity-box.weight .input_quantity{
  text-align: right;
  position: relative;
  top: 1px;
}
.modal.cartt .extern_row span.delete{
  background-color: transparent;
  top: 0;
  right: 0;
  transition: .3s;
  height: 18px;
  transform: rotate(45deg);
  transition: .3s; 
}
.modal.cartt .extern_row span.delete a:before{
  content: "+";
  font-size: 24px;
  color: #000;
}
.modal.cartt .extern_row span.delete a:hover:before{
  color: var(--col-r);
}
.modal.cartt .price{
  display: none;
}
.modal.cartt .sum-prod{
  min-width: 110px;
}
.modal.cartt .summ{
  font-weight: 800;
  font-size: 16px;
  color: #000;
  
}
.summa_total .name{
  font-size: 20px;
  color: #000;  
}
.modal.cartt .summ_total{
  color: #000;  
}
.modal.cartt .extern_bottom{
  background: #fff;
}
.modal.cartt .extern_bottom .btn{
  font-size: 20px;
}
.modal.cartt .desription-bottom.block{
  display: none;
}
.att_none{
  display: flex; 
  justify-content: center;
  align-items: center;
}
.attributes_title{
  font-size: 18px;
  margin-right: 10px;
  color: #000;
}
.att_none select{
  border: 1px solid #E7E7E7;
  outline: none;
  height: 45px;
  width: 160px;
  font-size: 18px;
  color: #000;
}

.modal.cartt .minicart_attr_wrap{
  font-size: .1px;
  margin: 0;
  pointer-events: none;
} 
.modal.cartt .minicart_attr_list {
  display: inline-block;
  position: static!important;
  background: #fff;
  border: none;
  padding: 0;
  max-width: max-content;
  font-size: 15px;
}
/*=================*/

#meat .pepper,
.delivery-content .pepper{
  width: 10%;
  top: 0;
  right: 0;
}
.delivery-content .pepper {
  top: 155px;
}
#meat .barb{
  width: 8%;
  top: 18%;
  left: 0;
}
.delivery-content .barb {
  top: 40%;
  left: -2%;
}
#meat .greens1{
  width: 8%;
  top: 25%;
  left: 33%;
  transform: scale(-1, 1);
}
.delivery-content .greens1 {
  right: 0;
  top: 50%;
}
#meat .barb2,
.delivery-content .barb2{
  width: 8%;
  top: 47%;
  right: 0;
}
#meat .greens2,
.delivery-content .greens2{
  width: 8%;
  top: 50%;
  right: 31%;
}
#meat .greens3{
  width: 8%;
  top: 73%;
  left: 31%;
}
#vegetables .tomato{
  width: 9%;
  top: 10%;
  right: 0;
}
.delivery-content .bg-img.tomatos{
  left: -3%;
  bottom: 0;
}
#vegetables .pepper{
  width: 10%;
  bottom: -10%;
  left: 3%;
}
#suluguni .pepper{
  width: 5%;
  top: 44%;
  right: 0;
}
#suluguni .greens{
  width: 8%;
  top: 52%;
  left: 31%;
}
#sets .greens1{
  width: 8%;
  top: 20%;
  right: 0;
}
#sets .greens2{
  width: 8%;
  top: 25%;
  left: 0;
}
#sets .tomato{
  width: 10%;
  top: 50%;
  left: 0;
}
#sets .pepper{
  width: 7%;
  top: 50%;
  right: 2%;
  transform: scale(-1,1);
}
#sets .pepper2{
  width: 7%;
  bottom: 5%;
  left: 2%;
}
#sets .greens3{
  width: 7%;
  bottom: 5%;
  right: 1%;
}
/*============================*/
.footer .top{
  background: url(/images/ft-top-bg.jpg) no-repeat center / cover #000;
  padding: 80px 0 40px;
}
.footer .link{
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  margin-right: 15px;
}
.footer .link:hover {
  color: var(--red);
}
.footer .link:before{
  font-size: 120%;
  margin-right: 12px;
  color: var(--red);
}
.footer .social a{
  font-size: 23px;
  color: #fff;
  margin-left: 30px;
}
.footer .social a:hover {
  color: var(--red);
}
.map-box{
  width: 58%;
  height: 230px;
  border-radius: 10px;
  overflow: hidden;
}

@media (min-width: 1200px){
  .map-box {  
  filter: grayscale(100%) sepia(5%) brightness(0.24);
  transition: .5s;  
}
  .map-box:hover {filter: grayscale(0);}
}

.footer-terms .link {
  font-size: 14px !important;
  color: #686868;
}
.footer .contacts-box{
  width: 30%;
}
.footer .bottom{
  background: #16181C;
  padding: 15px 0 20px;
}
.footer .pays img{
  margin-left: 20px;
}

/*===============================*/

.page{
  padding: 150px 0 110px;
  flex: 1;
}
.page.checkout{
  background: url(/images/checkout-bg.jpg) no-repeat left top 100px / cover #FDF5E6;
}

.checkout-content{
  counter-reset: step;
}

.checkout__col { 
  width: calc(50% - 15px); 
  align-self: flex-start; 
}

.checkout-ttl{
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
  color: #000;
  margin-bottom: 16px;
}
.checkout-ttl:before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
  margin-right: 12px;
}
.page.checkout .checkout-block{
  padding: 35px 16px 20px;
  background: #fff;
  border: 1px solid var(--red);
}
#table_shippings .check-item:not(:last-child) {
  margin-bottom: 16px;
}
.page.checkout .checkbox input[type="radio"] ~ label,
.page.checkout .checkbox input[type="checkbox"] ~ label,
.page.checkout #cbAgree
{
  display: flex;
  width: calc(100% + 32px);
  margin: 0 -16px 8px;
  padding: 10px 16px 16px;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  transition: .3s;
}
.page.checkout #cbAgree{
  display: none;
}
.page.checkout .checkbox input[type="radio"] ~ label:before,
.page.checkout .checkbox input[type="checkbox"] ~ label:before,
.page.checkout #cbAgree:before
{
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--red);
  box-shadow: inset 0 0 0 4px #fff;
  background: #fff;
  transition: .3s;
  margin-right: 20px;
  flex-shrink: 0;
}
.page.checkout input[type="radio"]:checked ~ label:before,
.page.checkout input[type="checkbox"]:checked ~ label:before,
.page.checkout #cbAgree.active:before
{
  background: var(--red);
}
.page.checkout input[type="radio"]:checked ~ label{
  background: var(--pink);
}

.page.checkout .icon-clock{
  display: flex;
  align-items: center;
  font-size: 15px;
}
.page.checkout .icon-clock:before{
  color: var(--red);
  font-size: 12px;
  margin-right: 23px;
}
.page.checkout .icon-check{
  font-size: 18px;
  color: var(--red);
}
.page.checkout .icon-check:before {
  margin-right: 7px;
}

.shipping_descr p{
  font-size: 16px;
  line-height: 1.2;
  padding-left: 35px;
}

.page.checkout .map-box{
  width: 100%;
  height: 200px;
}
.page.checkout .np-ttl{
  margin: 5px 0 3px;
}
.page.checkout .pays-list {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.pays-list img {
    max-height: 40px;
    max-width: 80px;
    margin-bottom: 10px;
}
.pays-list img:not(last-child) {
    margin-right: 15px;
}
.jshop_prod_cart{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid #D0D0D1;
}
.jshop_prod_cart .close{
  font-size: 30px;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(45deg);
  color: #000;
}
.jshop_prod_cart .close:before {
  content: '+';  
}
.jshop_prod_cart .close:hover{
  color: var(--red);
}
.jshop_prod_cart .img-box{
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
}
.jshop_prod_cart .img-box img{
  max-width: 100%;
  max-height: 100%;
}
.jshop_prod_cart .info{
  width: calc(100% - 460px);
}
.jshop_prod_cart .price, .jshop_prod_cart .total{
  width: 150px;
  font-size: 16px;
  text-align: center;
}
.jshop_subtotal{
  padding: 16px 0 8px;
  width: 100%;
  border-bottom: 1px solid #D0D0D1;
}
.jshop_subtotal tr{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;  
}
.jshop_subtotal .name{
  font-size: 14px;
}
.jshop_subtotal .value{
  font-weight: 800;
  font-size: 16px;
}
#table_payments .info{
  display: none;
}
#table_payments .active .info{
  display: block ;
}
.checkout__input-box{
  width: 100%;
  max-width: 430px;
}
.checkout__input-box .control-label{
  font-weight: 500;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
}
#nevigenOneStepCheckout .requiredtext {
  font-size: 18px;
}
#nevigenOneStepCheckout input, 
#nevigenOneStepCheckout textarea, 
#nevigenOneStepCheckout select{
  border: 1px solid var(--red);
  border-radius: 10px;
  margin-bottom: 12px;
      height: 44px;
    width: 100%;
    padding: 4px 14px;
    background: #fff;
    color: #5F5F5F;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

#nevigenOneStepCheckout .nevigen-onestepcheckout_finish_comment_block_add_textarea textarea{
  height: 80px;
}
#nevigenOneStepCheckout .preview_discount{
  color: green;
}
#nevigenOneStepCheckout .rabatt_input {
    padding: 16px 0;
    border-bottom: 1px solid #D0D0D1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#nevigenOneStepCheckout .rabatt_input .os-name {
    margin-bottom: 10px;
}
#nevigenOneStepCheckout .rabatt_input input {
    height: 44px;
    max-width: 320px;
    margin-bottom: 10px;
}
#d_country option[value="0"]{
  display: none;
}

.checkout__label{
  font-weight: 500;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
}
.checkout #nevigenOneStepCheckout .uk-panel-box {
  background: transparent;
}
.prod_qty_input{
  display: flex;
}
.quantity-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 24px;
  cursor: pointer;
}
#nevigenOneStepCheckout .quant-box{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000;
  min-width: 60px;  
}
#nevigenOneStepCheckout .quant-box input[id^=quantity] {
  width: 20px;
  height: 28px;
  background: transparent;
  border: none;
  margin: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
#nevigenOneStepCheckout .quant-box input[id^=quantity].weight {
  text-align: right;
  padding: 0;
}
#nevigenOneStepCheckout .list_extra_field{
  display: none;
}
#nevigenOneStepCheckout .add_info {
    margin-top: 10px;
}
.home_address .control-label{
      font-weight: 500;
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}
.checkout #nevigenOneStepCheckout .nevigen-onestepcheckout-previewfinish .btn {
  width: 270px;
  margin-left: auto;
}
.page.thanks, .page.cart{
  background: url(/images/page-bg.jpg) no-repeat left top / cover #FDF5E6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page.thanks .subttl{
  font-size: 35px;
  color: #000;
}
#nevigenOneStepCheckout .rabatt_input label{
  display: flex;
  gap: 10px;
}
#nevigenOneStepCheckout .rabatt_input .btn{
  height: 44px;
  font-size: 14px;
  padding: 0 10px;
  margin-bottom: 10px;
      width: max-content;
}



/*--------------------------------------------------------------------------------------------------------------------*/

@media screen and (min-width: 1700px){
  .main-screen{padding: 220px 0 180px;}
}

@media screen and (max-width: 1700px){  
  .header-menu > .menu-item > a, .header-menu > .menu-item > span {
    padding: 15px 30px;
  }
  .header-links .link {
    margin-right: 1em;
    font-size: 18px;
  }
  .list_product .product{padding: 15px 15px 30px;}
}
@media screen and (max-width: 1500px){
  .ttl.lg{font-size: 54px;}
  .checkout__col{width: calc(60% - 10px);}
  .checkout__col:first-child{width: calc(40% - 10px);}
}
@media screen and (max-width: 1300px){
  .header-menu a, .header-menu span { padding: 15px 20px; font-size: 21px;}
  .header-menu > .menu-item.parent > a {padding-right: 40px;}
  .header-menu > .menu-item.parent > a:before, 
  .header-menu > .menu-item.parent > a:after {right: 15px;}
  .header-menu > .menu-item > a, .header-menu > .menu-item > span {padding: 15px 22px;}

}
@media screen and (max-width: 1200px){
  .pt110{padding-top: 80px;}
  .mt50{margin-top: 35px;}
  .mb110{margin-bottom: 80px;}
  .mb80{margin-bottom: 55px;}
  .mb60{margin-bottom: 40px;}
  .mb50{margin-bottom: 35px;}
  .mb40{margin-bottom: 30px;}
  .mb35{margin-bottom: 25px;}
  .mb30{margin-bottom: 20px;}
  .mb25{margin-bottom: 17px;}
  .mb20{margin-bottom: 15px;}
  .ttl.lg{font-size: 36px;}
  .ttl.md{font-size: 24px;}
  .ttl.sm{font-size: 22px;}
  .main-screen .subttl{font-size: 24px;}
  .header-menu > .menu-item > a, .header-menu > .menu-item > span {
    padding: 15px;font-size: 18px;}
  .header-links .link {font-size: 18px;}
  .list_product .jshop_price{font-size: 20px;}
  .checkout__col{width: 100%;}
  .checkout__col:first-child{width: 100%; margin-bottom: 20px;}
  .page.thanks .subttl{font-size: 30px;}
  .footer .contacts-box{width: 38%;}
  .mod-languages{width: 45px;} 
  .mod-languages .lang-list a{font-size: 18px;}
  .mod-languages .active-language{font-size: 18px;}
}
@media screen and (max-width: 992px){
  .page {padding: 100px 0 60px;}
  .header, .main-page .header,  .main-page .header.sticky{background: rgba(0, 0, 0, .95);}
  .header .logo {width: 100px;}
  .header-menu{
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: rgba(0,0,0,.95);
    padding: 15px 0;    
  }
  .header-menu > .menu-item > a, .header-menu > .menu-item > span{
    text-align: center;
    padding: 10px 15px;
  }
  .header-menu .item-111 > a{display: none;}
  .header-menu .item-130 > a{display: none;}
  .header-menu > .menu-item.parent .submenu{
    width: 100%;
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: transparent;
    border: none;
  }
  .header-menu .submenu li:not(:last-child) {
    border: none;
  }
  .header-menu > .menu-item.parent .submenu a{
    background-color: transparent;    
    color: #fff;
    font-size: 18px;
    padding: 10px 15px;
  }

  .burger-menu{display: block;}
  .header-links{margin: 0 15px 0 auto;}
  .header-links .link {margin-right: 15px;}
  .icon-cart {width: 36px; height: 36px; font-size: 24px;}
  .list_product .product {width: calc(50% - 30px);}
  .footer .link{font-size: 16px;}
  .footer .social a{margin: 0 10px;}
  .mod-languages{margin: 0 8px;}
}
@media screen and (max-width: 768px){
  .mobile-hide{display: none;}
  .list_product .product {width: calc(100% - 30px); margin: 0 15px 10px;}
  .list_product .name {font-size: 24px; min-height: 0;}
  .list_product .jshop_price {font-size: 18px;}
  .modal.cartt .extern_row .desription-top-middle {flex-wrap: wrap;}
  .modal.cartt .extern_row .quantity{width: 100%;}
  .modal.cartt .extern_row div.name {width: 100%; margin-right: 15px!important;}
  .modal.cartt .extern_bottom .btn {font-size: 18px; width: calc(50% - 8px);}
  .jshop_prod_cart{flex-wrap: wrap;}
  .jshop_prod_cart .img-box{width: 25%; height: auto;}
  .jshop_prod_cart .info{width: calc(75% - 16px);}
  .footer .top{padding: 30px 0 15px;} 
  .map-box{width: 100%; margin-bottom: 15px;}
  .footer .contacts-box{width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center;}
  .header-links .link:not(.icon-tel){display: none;}
  .main-screen{height: 100vh; min-height: 650px; padding-top: 100px; 
/*  background: url(/images/main-screen-m.jpg) no-repeat center bottom / cover #F8CD6C;*/
  background: url(/images/new_year/ny_2025_m.jpg) no-repeat center bottom / cover #F8CD6C;
}
  .main-screen.sushi{background-image: url(/images/sushi-bg-mob.jpg);}
  .main-screen.sushi .ttl-logo{position: relative; z-index: 2; padding-right: 100px}
  .main-screen.sushi .ttl-logo:after{content: ''; width: 100px; height: 100px; background: url(/images/sushi-logo.png) no-repeat center / contain; position: absolute; top: 0; right: 0; z-index: 0}
  .main-screen .deliv-info{width: 135px; height: 135px; font-size: 14px; left: 5%; right: auto; bottom: 10%}
  
}
@media screen and (max-width: 550px){
  .pt110{padding-top: 50px;}
  .mt50{margin-top: 25px;}
  .mb110{margin-bottom: 50px;}
  .mb80{margin-bottom: 40px;}
  .mb60{margin-bottom: 30px;}
  .mb50{margin-bottom: 25px;}
  .mb40{margin-bottom: 20px;}
  .mb35{margin-bottom: 17px;}
  .mb30{margin-bottom: 15px;}
  .mb20{margin-bottom: 12px;}
  .mb20{margin-bottom: 10px;}
  .mb15{margin-bottom: 8px;}
  .mb15{margin-bottom: 7px;}
  .ttl.lg{font-size: 30px;}
  .ttl.sm{font-size: 16px;}
  .btn{height: 45px; font-size: 18px;}
  .header .logo, .header.sticky .logo{width: 50px;}  
  .main-content {background-image: none;}
  .modal-wrapper {padding: 30px 15px 15px;}
  .modal.cartt .extern_bottom .btn {width: 100%; margin-bottom: 10px;}
  .bg-img {display: none;}
  .jshop_prod_cart .price{width: 80px; font-size: 14px; text-align: left;}
  .jshop_prod_cart .total{width: 105px; text-align: right; font-weight: 600;}
  #nevigenOneStepCheckout .quant-box {font-size: 14px; min-width: 50px;}
  #nevigenOneStepCheckout .quant-box input[id^=quantity] {font-size: 14px;}
  .page.thanks .subttl{font-size: 26px;}
  .list_product .input-append {margin-bottom: 20px;} 
}
@media (max-width: 480px){
  .ttl.lg{font-size: 36px;}
  .modal.cartt .extern_row span.name {font-size: 16px;}
  .modal.cartt .extern_row .pict {width: 70px; height: auto;}
  .footer .link{font-size: 16px;}
  .modal.cartt .extern_row .quantity-box {font-size: 16px; width: 60px;}
  .modal.cartt .extern_row input.input_quantity {width: 20px; font-size: 16px;}
  .modal.cartt .sum-prod {width: 100%; margin-top: 10px; text-align: right;}
  .footer .bottom .link{margin: 0 auto 15px;}
  .footer .pays{width: 100%; justify-content: center;}
  .footer .pays img{margin: 0 10px;}
  .mod-languages{width: 38px; height: 27px;}
  .mod-languages .lang-list a{font-size: 14px;}
  .mod-languages .active-language{font-size: 14px;}
  .header, .header.sticky{padding: 5px 0;}
  .header-links .icon-tel{margin-right: 10px; font-size: 12px;}
  /*.header .logo, .header.sticky .logo {width: 60px; margin: 8px 0 0;}*/
  #nevigenOneStepCheckout .rabatt_input label{
    flex-direction: column;
    width: 100%;
  }
  #nevigenOneStepCheckout .rabatt_input{
    flex-direction: column;
  }
  #nevigenOneStepCheckout .rabatt_input input{
    max-width: unset;
  }
  #nevigenOneStepCheckout .rabatt_input .os-name{
    width: 100%;
  }
}

@media screen and (max-width: 425px){  
  .modal.cartt .extern_row .quantity.block {flex-wrap: wrap;}
  
  .header .header-links .icon-tel{font-size: 0px;}
  .header-links .icon-tel:before{font-size: 22px;}
  
}
@media screen and (max-width: 365px){
  .footer .icon-pin{font-size: 14px;}
  .modal.cartt .extern_row span.name {font-size: 14px;}
  .modal.cartt .minicart_attr_list {font-size: 12px;}
  .jshop_prod_cart .total{width: 100%; font-size: 14px; text-align: center; margin-top: 10px;}
  .main-screen.sushi .ttl-logo{font-size: 27px}
}

/* Delivery page */

.delivery-content {
  position: relative;
  min-height: calc(100vh - 157px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.delivery {
  padding-top: 150px;
  padding-bottom: 60px;
}

.deliver-main-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  color: #000000;
  margin-bottom: 50px;
}

.delivery-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.delivery-list > li {
  margin-bottom: 55px;
}

.delivery-list li .delivery-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 29px;
}

.delivery-list li .delivery-title::before {
  content: '';
  width: 22px;
  height: 22px;
  background-color: var(--red);
  border-radius: 22px;
  margin-right: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.delivery-list li:nth-child(1) .delivery-title::before {
  content: '1';
}
.delivery-list li:nth-child(2) .delivery-title::before {
  content: '2';
}
.delivery-list li:nth-child(3) .delivery-title::before {
  content: '3';
}

.delivery-info {
  padding: 6px 25px 18px;
  overflow: hidden;
  position: relative;
}

.delivery-info > .flex {
  margin: 0 -10px;
  position: relative;
  padding-top: 25px;
}

.delivery-info > .flex:first-of-type::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -25px;
  width: calc(100% + 50px);
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
}

.delivery-info__inner {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
  margin-bottom: 17px;
}

.info-inner__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
}

.info-inner__title-icon {
  margin-left: -5px;
}

.info-inner__icon {
  align-items: center;
  margin-bottom: 12px;
  margin-left: -3px;
}

.info-inner__icon img {
  flex: 0 0 26px;
  display: block;
  margin-right: 10px;
}

.delivery .icon-clock {
  width: 20px;
  height: 20px;
}

.delivery-phone-link {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s;
}

.delivery-phone-link:hover {
  color: var(--red);
}

.deliery-warning__title {
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  margin-left: -8px;
}

.deliery-warning__text {
  font-size: 20px;
  line-height: 25px;
}

.payment-list li {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 31px;
}

.payment-list li span {
  position: relative;
  line-height: 1;
  font-size: 18px;
  line-height: 31px;
  display: block;
  padding-left: 8px;
}

.payment-list li span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: var(--red);
}

.payment-list li img {
  width: 112px;
  margin-left: 8px;
}

.delivery-payments {
  display: flex;
  align-items: center;
}

.delivery-payments img {
  width: 100%;
  max-height: 40px;
  max-width: 80px;
  display: block;
  object-fit: contain;
  margin-right: 31px;
}

/* Contacts page */

/*.contacts {

  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}*/

.contacts-title {
  font-size: 22px;
  line-height: 27px;
  padding-left: 23px;
  margin-bottom: 23px;
}

.contacts-row {
  margin: 0 -2px;
}

.contacts-info {
  flex: 0 0 570px;
}

.contacts-info > .bg-white {
  padding-top: 48px;
  padding-bottom: 31px;
}

.contacts-map {
  flex: 0 0 calc(100% - 578px);
}

.contacts-list {
  padding: 0 23px 10px;
}

.contacts-list__item {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.contacts-list__item a {
  display: flex;
  align-items: center;
}

.contacts-list__item img {
  margin-right: 10px;
  width: 20px;
}

.contacts-info .social a {
  font-size: 23px;
  color: var(--red);
  margin-left: 30px;
  transition: .4s;
}

.contacts-list__item a {
  color: #000;
  transition: .4s;
}

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

.contacts-info .social a:hover {
  color: #000;
}

.text-16 {
  font-size: 16px;
  line-height: 21px;
}

.text-18 {
  font-size: 18px;
  line-height: 22px;
}

.bg-white {
  background-color: #fff;
}

.mb-25 {
  margin-bottom: 25px;
}

.pt-25 {
  padding-top: 35px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-80 {
  padding-bottom: 80px;
}

.mw-800 {
  max-width: 800px;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.position-relative {
  position: relative;
}

.terms-page h1,
.terms-page h2,
.terms-page h3,
.terms-page h4,
.terms-page h5 {
  margin-bottom: 15px;
}

.terms-page p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
}


@media (max-width: 1499px) {
  
  .delivery-info__inner {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
@media (max-width: 1199px) {
  .contacts-info,
  .contacts-map {
    flex: 0 0 50%;
  }
}
@media (max-width: 991px) {
  .delivery-info__inner {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .delivery {
    padding-top: 80px;
  }
  .contacts {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .pt-150 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .payment-list li {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .payment-list li img {
    margin-top: 10px;
  }
  .payment-list li span {
    line-height: 24px;
  }
  .contacts-info,
  .contacts-map {
    flex: 0 0 100%;
  }
  .contacts-map {height: 340px;}
  .modal.cartt .modal-wrapper {max-height: 100vh;}
  #nevigenOneStepCheckout .rabatt_input .btn{width: 100%;}
}
@media (max-width: 420px) {
  .delivery-info {
    padding-left: 15px;
    padding-right: 15px;
  }
  .contacts-list__item,
  .contacts-list__item a {
    font-size: 16px;
  }
  .contacts-title {
    padding-left: 15px;
  }
  .contacts-list {
    padding: 0 15px 10px;
  }
  .page.checkout .pays-list {flex-wrap: wrap;}
}
@media (max-width: 374px) {
  .info-inner__icon p {
    font-size: 13px;
  }
  .delivery-info__inner .text-18 {
    font-size: 16px;
  }
  .delivery-payments {
    flex-wrap: wrap;
  }
  .delivery-payments img {
    width: 80px;
    margin-bottom: 15px;
  }
  .delivery-payments img:nth-child(3){
    order: 1;
  }
  .delivery-payments img:nth-child(1) {
    order: 2;
  }
}

#mxcpr{
  display: none;
}