/***Кнопка с пробегающим бликом ***/
.preview-block__btn {
    max-width: 500px;
    margin-top: 15px;
}

.custom-btn {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #ff8000;
  background: -webkit-gradient(linear, left top, right top, from(#ff8000), to(#fd4b00));
  background: -webkit-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: -o-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: linear-gradient(90deg, #ff8000 0%, #fd4b00 100%);
  position: relative;
  -webkit-box-shadow: 0px 5px 0px 0px #ff4800;
  box-shadow: 0px 5px 0px 0px #ff4800;
   text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
  height: 65px;
  color: #fff !important;
  font-size: 20px;
  font-weight: 400;
font-family: 'Exo 2',Arial,sans-serif !important;
     min-width: 100%;
    max-width: 100%;

  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  overflow: hidden; }
  
  .custom-btn:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 8px 0px 0px #ff4800;
    box-shadow: 0px 8px 0px 0px #ff4800;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    background: #ff8000;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 128, 0, 0.8)), to(rgba(253, 75, 0, 0.8)));
    background: -webkit-linear-gradient(left, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    background: -o-linear-gradient(left, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    background: linear-gradient(90deg, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
	
  .custom-btn:active {
    background: #ff8400;
    background: -webkit-gradient(linear, left top, right top, from(#ff8400), to(#fd4c00));
    background: -webkit-linear-gradient(left, #ff8400 0%, #fd4c00 100%);
    background: -o-linear-gradient(left, #ff8400 0%, #fd4c00 100%);
    background: linear-gradient(90deg, #ff8400 0%, #fd4c00 100%);
    -webkit-box-shadow: 0px 0px 0px 0px #ff4800;
    box-shadow: 0px 0px 0px 0px #ff4800;
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
	
  .custom-btn:before {
        content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
      opacity: 0;
    z-index: 1;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s; }
    
    .custom-btn:after {
    content: "";
    display: block;
    width: 30px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes slideme { 0% { left: -30px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } }
  
  @media screen and (max-width: 650px) {
.custom-btn {
font-size: 18px;
}
}


/***Конец кнопки с пробегающим бликом ***/
/***Кнопка с пробегающим бликом по центру***/
.preview-block__btn_center {
     max-width: 500px;
    margin-top: 15px;
	
}

.custom-btn-center {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #ff8000;
  background: -webkit-gradient(linear, left top, right top, from(#ff8000), to(#fd4b00));
  background: -webkit-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: -o-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: linear-gradient(90deg, #ff8000 0%, #fd4b00 100%);
  position: relative;
  -webkit-box-shadow: 0px 5px 0px 0px #ff4800;
  box-shadow: 0px 5px 0px 0px #ff4800;
   text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
  height: 65px;
  color: #fff !important;
  font-size: 20px;
  font-weight: 400;
font-family: 'Exo 2',Arial,sans-serif !important;
     min-width: 100%;
    max-width: 100%;

  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  overflow: hidden; }


.custom-btn-center:hover {
  border: 1px solid #00b31f;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
  outline-offset: 15px;
  outline-color: rgba(255, 255, 255, 0);
}

.custom-btn-center:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
      opacity: 0;
    z-index: 1;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
}

.custom-btn-center:after {
    content: "";
    display: block;
    width: 30px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes slideme { 0% { left: -30px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } }


/***Конец кнопки с пробегающим бликом по центру***/

@media screen and (max-width: 980px){
.custom-btn-center {
     font-size: 18px;
}}
/*Ширина окна на определённом размере экрана*/
@media screen and (max-width: 635px){
.custom-btn-center {
     font-size: 16px;
}}
/*Ширина окна на определённом размере экрана*/
@media screen and (max-width: 480px){
.custom-btn-center {
     font-size: 14px;
}}

@media screen and (max-width: 980px){
.custom-btn {
     font-size: 18px;
}}
/*Ширина окна на определённом размере экрана*/
@media screen and (max-width: 635px){
.custom-btn {
     font-size: 16px;
}}
/*Ширина окна на определённом размере экрана*/
@media screen and (max-width: 480px){
.custom-btn {
     font-size: 14px;
}}




/*Кнопка позвонить*/
.wr-phone {	
    font-family: 'Noto Sans';
    width: 100%;
    height: 48px;
    background-color: #6aaf0c;
    color: #fff !important;
    line-height: 48px;
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 800;
    -webkit-transition: bottom .3s;
    transition: bottom .3s;
    font-weight: bold;
}
.wr-phone {
    text-align: center;
}
* {
    margin: 0;
    padding: 0;
}
user agent stylesheet
.call:-webkit-any-link {
    color: -webkit-link;
    cursor: pointer;
    text-decoration: underline;
}

.wr-phone .name {
    font-size: 1rem;
    position: relative;
    display: inline-block;
    padding-left: 42px;
}

.name:before {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(https://static.tildacdn.com/tild3630-6263-4234-b433-616635346537/phone.png);
    background-size: 30px;
    position: absolute;
    top: 0;
    left: -8px;
    bottom: 0;
    margin: auto 0;
    z-index: 10;
    -webkit-animation: mymove .8s infinite;
    animation: mymove .8s infinite;
}

/***Конец кнопки с пробегающим бликом tilda***/

/***Кнопкаопки с пробегающим бликом ***/
.t-submit {
  -webkit-border-radius: 10px;
  border-radius: 10px !important;
  background: #ff8000;
  background: -webkit-gradient(linear, left top, right top, from(#ff8000), to(#fd4b00));
  background: -webkit-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: -o-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: linear-gradient(90deg, #ff8000 0%, #fd4b00 100%);
  position: relative;
  -webkit-box-shadow: 0px 5px 0px 0px #ff4800;
  box-shadow: 0px 5px 0px 0px #ff4800;
   text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
  height: 65px;
  color: #fff !important;
  font-size: 20px;
  font-weight: 400;
font-family: 'Exo 2',Arial,sans-serif !important;
     min-width: 100%;
    max-width: 100%;

  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  overflow: hidden; }
  
  .t-submit:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 8px 0px 0px #ff4800;
    box-shadow: 0px 8px 0px 0px #ff4800;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    background: #ff8000;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 128, 0, 0.8)), to(rgba(253, 75, 0, 0.8)));
    background: -webkit-linear-gradient(left, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    background: -o-linear-gradient(left, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    background: linear-gradient(90deg, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
  .t-submit:active {
    background: #ff8400;
    background: -webkit-gradient(linear, left top, right top, from(#ff8400), to(#fd4c00));
    background: -webkit-linear-gradient(left, #ff8400 0%, #fd4c00 100%);
    background: -o-linear-gradient(left, #ff8400 0%, #fd4c00 100%);
    background: linear-gradient(90deg, #ff8400 0%, #fd4c00 100%);
    -webkit-box-shadow: 0px 0px 0px 0px #ff4800;
    box-shadow: 0px 0px 0px 0px #ff4800;
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
  .t-submit:before {
        content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
      opacity: 0;
    z-index: 1;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s; }
    
    .t-submit:after {
    content: "";
    display: block;
    width: 30px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes slideme { 0% { left: -30px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } }
  
  @media screen and (max-width: 650px) {
.t-submit {
font-size: 18px;
}
}
  


/***Конец кнопки с пробегающим бликом tilda***/

/***Сам блок с корзиной***/

.t706__cartwin-content {
    margin: 65px auto;
    width: 100%;
    max-width: 560px;
    min-height: 300px;
    background-color: rgba(255,255,255,1);
	border: 3px solid #febe1e;
    border-radius: 10px;
    padding: 40px;
    box-sizing: border-box;
    overflow: auto;
}

/***Блок с продуктами***/

.t706__cartwin-products {
    display: table;
    width: 100%;
	border-top: 2px solid #febe1e;
	border-bottom: 2px solid #febe1e;
}

/***Блок с ценой***/
.t706__cartwin-prodamount-wrap {
    padding-bottom: 20px;
    font-size: 32px;
    text-align: right;
    font-weight: 600;
    color: #000;
}

/***Стили карточки товара***/
.t-range__value-txt {
    position: absolute;
    top: 0;
    padding: 8px 10px;
    min-width: 20px;
    border-radius: 3px;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1;
    -webkit-box-shadow: 0 1px 8px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 8px 0 rgba(0,0,0,.2);
    box-shadow: 0 1px 8px 0 rgba(0,0,0,.2);
    background-color: #72c760 !important;
	color: #fff !important;
    text-align: center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}



/***Кнопкаопки с пробегающим бликом ***/
.t744__btn {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #ff8000;
  background: -webkit-gradient(linear, left top, right top, from(#ff8000), to(#fd4b00));
  background: -webkit-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: -o-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: linear-gradient(90deg, #ff8000 0%, #fd4b00 100%);
  position: relative;
  -webkit-box-shadow: 0px 5px 0px 0px #ff4800;
  box-shadow: 0px 5px 0px 0px #ff4800;
   text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
  height: 65px;
  color: #fff !important;
  font-size: 20px;
  font-weight: 400;
font-family: 'Exo 2',Arial,sans-serif !important;
     min-width: 100%;
    max-width: 100%;

  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  overflow: hidden; }
  
  
  .t744__btn:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 8px 0px 0px #ff4800;
    box-shadow: 0px 8px 0px 0px #ff4800;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    background: #ff8000;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 128, 0, 0.8)), to(rgba(253, 75, 0, 0.8)));
    background: -webkit-linear-gradient(left, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    background: -o-linear-gradient(left, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    background: linear-gradient(90deg, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
  .t744__btn:active {
    background: #ff8400;
    background: -webkit-gradient(linear, left top, right top, from(#ff8400), to(#fd4c00));
    background: -webkit-linear-gradient(left, #ff8400 0%, #fd4c00 100%);
    background: -o-linear-gradient(left, #ff8400 0%, #fd4c00 100%);
    background: linear-gradient(90deg, #ff8400 0%, #fd4c00 100%);
    -webkit-box-shadow: 0px 0px 0px 0px #ff4800;
    box-shadow: 0px 0px 0px 0px #ff4800;
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
  .t744__btnt:before {
        content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
      opacity: 0;
    z-index: 1;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s; }
    
    .t744__btn:after {
    content: "";
    display: block;
    width: 30px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

        /***Анимированный прогресс бар***/
    
        .progressbar { 
	height: 30px;
	position: relative;
	border-radius: 5px;
	background: #f6f7f9;
	padding: 3px;
	box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
	 text-align: center;
  font-size: 20px;
  font-weight: 300;
font-family: 'Exo 2',Arial,sans-serif;
   color: #000;
}


.progressbar > span {
  display: block;
  height: 100%;
  	border-radius: 5px;
  background-color: rgb(250,190,45);
  background-image: linear-gradient(
    center bottom,
    rgb(43,194,83) 37%,
    rgb(84,240,84) 69%
  );
  
  overflow: hidden;
}

.progressbar > span:after {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background-image: linear-gradient(
    -45deg, 
    rgba(255, 255, 255, .2) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(255, 255, 255, .2) 50%, 
    rgba(255, 255, 255, .2) 75%, 
    transparent 75%, 
    transparent
  );
  z-index: 1;
  background-size: 50px 50px;
  animation: move 2s linear infinite;
  overflow: hidden;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

    /***Конец анимированный прогресс бар***/

/***Кнопка добавить в корзину в карточке товара***/
.js-store-prod-btn2 {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #ff8000;
  background: -webkit-gradient(linear, left top, right top, from(#ff8000), to(#fd4b00));
  background: -webkit-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: -o-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: linear-gradient(90deg, #ff8000 0%, #fd4b00 100%);
  position: relative;
  -webkit-box-shadow: 0px 5px 0px 0px #ff4800;
  box-shadow: 0px 5px 0px 0px #ff4800;
  display: block;
  text-decoration: none;
  text-align: center;
  height: 55px;
    line-height:55px !important;
  color: #fff !important;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
font-family: 'Exo 2',Arial,sans-serif !important;
     min-width: 100%;
    max-width: 100%;
 margin-top:20px !important;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  overflow: hidden; }
  
  .js-store-prod-btn2:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 8px 0px 0px #ff4800;
    box-shadow: 0px 8px 0px 0px #ff4800;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    background: #ff8000;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 128, 0, 0.8)), to(rgba(253, 75, 0, 0.8)));
    background: -webkit-linear-gradient(left, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    background: -o-linear-gradient(left, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    background: linear-gradient(90deg, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
	
  .tjs-store-prod-btn2:active {
    background: #ff8400;
    background: -webkit-gradient(linear, left top, right top, from(#ff8400), to(#fd4c00));
    background: -webkit-linear-gradient(left, #ff8400 0%, #fd4c00 100%);
    background: -o-linear-gradient(left, #ff8400 0%, #fd4c00 100%);
    background: linear-gradient(90deg, #ff8400 0%, #fd4c00 100%);
    -webkit-box-shadow: 0px 0px 0px 0px #ff4800;
    box-shadow: 0px 0px 0px 0px #ff4800;
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
	
  .js-store-prod-btn2:before {
        content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
      opacity: 0;
    z-index: 1;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s; }
    
   

@-webkit-keyframes slideme { 0% { left: -30px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } }
  
  @media screen and (max-width: 650px) {
.js-store-prod-btn2 {
font-size: 18px;
min-width: 100%;
    max-width: 100%;

}
}
/***Конец стилей кнопки для блока с вкладками***/



/***Вторая кнопка в карточке товара***/
.js-store-prod-btn {
  -webkit-border-radius: 10px;
  border-radius: 10px;
    border-width: 2px;
    background-position: center center;
    border-color: #ff8000 !important;
    border-style: solid;
  background: #ffffff !important;
  position: relative;
  display: block;
  text-decoration: none;
  text-align: center;
  height: 55px !important;
    line-height:50px !important;
  color: #000 !important;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
font-family: 'Exo 2',Arial,sans-serif;
     min-width: 100%;
    max-width: 100%;
    
  }
  
  .js-store-prod-btn:hover {
  color: #454545 !important;

 
  }
  
    /***Конец вторая кнопка в карточке товара***/
    



  
   /***Кастомная кнопка с бликом***/
  
  
.custom-btn2 {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #ff8000;
  background: -webkit-gradient(linear, left top, right top, from(#ff8000), to(#fd4b00));
  background: -webkit-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: -o-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: linear-gradient(90deg, #ff8000 0%, #fd4b00 100%);
  position: relative;
  -webkit-box-shadow: 0px 5px 0px 0px #ff4800;
  box-shadow: 0px 5px 0px 0px #ff4800;
   text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
  height: 65px;
  color: #fff !important;
  font-size: 20px;
  font-weight: 400;
font-family: 'Exo 2',Arial,sans-serif;
     min-width: 100%;
    max-width: 100%;

  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  overflow: hidden; }
  
.custom-btn2:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 8px 0px 0px #ff4800;
    box-shadow: 0px 8px 0px 0px #ff4800;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    background: #ff8000;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 128, 0, 0.8)), to(rgba(253, 75, 0, 0.8)));
    background: -webkit-linear-gradient(left, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    background: -o-linear-gradient(left, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    background: linear-gradient(90deg, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
	
.custom-btn2:active {
    background: #ff8400;
    background: -webkit-gradient(linear, left top, right top, from(#ff8400), to(#fd4c00));
    background: -webkit-linear-gradient(left, #ff8400 0%, #fd4c00 100%);
    background: -o-linear-gradient(left, #ff8400 0%, #fd4c00 100%);
    background: linear-gradient(90deg, #ff8400 0%, #fd4c00 100%);
    -webkit-box-shadow: 0px 0px 0px 0px #ff4800;
    box-shadow: 0px 0px 0px 0px #ff4800;
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
	
.custom-btn2:before {
        content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
      opacity: 0;
    z-index: 1;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s; }
    
.custom-btn2:after {
    content: "";
    display: block;
    width: 30px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes slideme { 0% { left: -30px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } }
  
  @media screen and (max-width: 650px) {
.custom-btn2 {
font-size: 18px;
min-width: 100%x;
    max-width: 100%;

}
}
/***Конец стилей кастомной кнопки с бликом***/
  
  
  /***Простая кастомная кнопка***/
.custom-btn3 {
  -webkit-border-radius: 10px;
  border-radius: 10x;
    border-width: 2px;
    background-position: center center;
    border-color: #ff8000 !important;
    border-style: solid;
  background: #ffffff !important;
  position: relative;
  display: block;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
  height: 65px;
  color: #000 !important;
  font-size: 20px;
  font-weight: 400;
font-family: 'Exo 2',Arial,sans-serif;
     min-width: 100%x;
    max-width: 100%;
    
  }
  
  .custom-btn3:hover {
  color: #454545 !important;

 
  }
  
    @media screen and (max-width: 650px) {
.custom-btn3 {
font-size: 18px;
min-width: 100%x;
    max-width: 100%;

}
}

  @media screen and (max-width: 650px) {
      .t744__price-value{
          
          font-size: 35px !important;
          font-weight: 600 !important;
      }
      
      .t744__price-currency {
          
          font-size: 35px !important;
          font-weight: 600 !important;
      }
      
  }
  
    /***Конец простой кастомной кнопки***/
    
       /***Кнопка в блоке со вкладками с бликом***/
  
  

.t819__btn-wrapper {
	margin-top: 0px !important;
	}
	
.t819__btn-container .t-btn {
    font-size: 20px !important;
  font-weight: 400 !important;
font-family: 'Exo 2','Arial','sans-serif' !important;
}

/*Класс для активной кнопки*/
 .t819__tab_active{
    background-color: #fabe2d !important;
    border-color: #fabe2d !important;
    color: #000000 !important;
    border-radius: 5px !important;
 } 
 
 .t819__tab_active:before {
    background-color: #fabe2d !important;
 }
 
 .t819__btn-container{
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #ff8000;
  background: -webkit-gradient(linear, left top, right top, from(#ff8000), to(#fd4b00));
  background: -webkit-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: -o-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: linear-gradient(90deg, #ff8000 0%, #fd4b00 100%);
   height: 65px;
  color: #fff !important;
  font-size: 20px;
  font-weight: 400;
font-family: 'Exo 2','Arial','sans-serif' !important;
display: inline-block;
box-shadow: 0px 5px 0px 0px #ff4800;
  
 }
 
 /***Конец стилей кастомной кнопки со вколадками***/
 
.t142__text {

     font-size: 20px !important;
     font-weight: 400 !important;
}

/*Номер телефона в задарме*/
.zphone {
      font-family: 'Exo 2','Arial','sans-serif' !important;
    line-height: 2;
    font-weight: 700;
     margin-top: 5px;
     color: #fff !important;
     font-size: 20px !important;
     
}

.lownumber .zphone {
      font-family: 'Exo 2','Arial','sans-serif' !important;
    line-height: 2;
    font-weight: 700;
     margin-top: 5px;
     color: #000 !important;
     font-size: 25px !important;
     
}


.footernmb .zphone {
      font-family: 'Exo 2','Arial','sans-serif' !important;
    line-height: 2;
    font-weight: 400;
     color: #fff !important;
     font-size: 14px !important;
     
}


.t-input-title {
    
      font-family: 'Exo 2','Arial','sans-serif' !important;
}

.t-store__tabs__content {
    font-weight: 400 !important;
     font-size: 16px !important;  
        }
        
.js-store-prod-all-text {
    font-weight: 400 !important;
     font-size: 16px !important;  
        }
        
        
   /***Кастомная кнопка с бликом***/
  
  
.t-btn t-btn_md {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #ff8000;
  background: -webkit-gradient(linear, left top, right top, from(#ff8000), to(#fd4b00));
  background: -webkit-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: -o-linear-gradient(left, #ff8000 0%, #fd4b00 100%);
  background: linear-gradient(90deg, #ff8000 0%, #fd4b00 100%);
  position: relative;
  -webkit-box-shadow: 0px 5px 0px 0px #ff4800;
  box-shadow: 0px 5px 0px 0px #ff4800;
   text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
  height: 65px;
  color: #fff !important;
  font-size: 20px;
  font-weight: 400;
font-family: 'Exo 2',Arial,sans-serif;
     min-width: 100%;
    max-width: 100%;

  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  overflow: hidden; }
  
.t-btn t-btn_md:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 8px 0px 0px #ff4800;
    box-shadow: 0px 8px 0px 0px #ff4800;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    background: #ff8000;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 128, 0, 0.8)), to(rgba(253, 75, 0, 0.8)));
    background: -webkit-linear-gradient(left, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    background: -o-linear-gradient(left, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    background: linear-gradient(90deg, rgba(255, 128, 0, 0.8) 0%, rgba(253, 75, 0, 0.8) 100%);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
	
.t-btn t-btn_md:active {
    background: #ff8400;
    background: -webkit-gradient(linear, left top, right top, from(#ff8400), to(#fd4c00));
    background: -webkit-linear-gradient(left, #ff8400 0%, #fd4c00 100%);
    background: -o-linear-gradient(left, #ff8400 0%, #fd4c00 100%);
    background: linear-gradient(90deg, #ff8400 0%, #fd4c00 100%);
    -webkit-box-shadow: 0px 0px 0px 0px #ff4800;
    box-shadow: 0px 0px 0px 0px #ff4800;
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s; }
	
.t-btn t-btn_md:before {
        content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
      opacity: 0;
    z-index: 1;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s; }
    
.t-btn t-btn_md:after {
    content: "";
    display: block;
    width: 30px;
    height: 300px;
    margin-left: 60px;
    background: #fff;
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes slideme { 0% { left: -30px; margin-left: 0px; }
  30% { left: 110%; margin-left: 80px; }
  100% { left: 110%; margin-left: 80px; } }
  
  @media screen and (max-width: 650px) {
.t-btn t-btn_md {
font-size: 18px;
min-width: 100%x;
    max-width: 100%;

}
}
/***Конец стилей кастомной кнопки с бликом***/


.t-text_xs {
    font-size: 18px !important;
    line-height: 1.55;
    font-weight: 300 !important;;
}

/***Кнопка заказать в 1 клик***/
.one_click {
  -webkit-border-radius: 10px;
  border-radius: 10px;
    border-width: 2px;
    background-position: center center;
    border-color: #ff8000 !important;
    border-style: solid;
  background: #ffffff !important;
  position: relative;
  display: block;
  text-decoration: none;
  text-align: center;
  height: 65px !important;
    line-height:50px !important;
  color: #000 !important;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
font-family: 'Exo 2',Arial,sans-serif;
     min-width: 100%;
    max-width: 100%;
    
  }
  
  .one_click:hover {
  font-weight: 600;
   border-color: #000 !important;

}


  
    /***Конец кнопки зкаазать в 1 клик***/