@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Display:wght@400;500;600;700&display=swap');

:root{
  --bg-1:rgb(214 255 56) ;
  --bg-2:rgb(219, 158, 90) ;
  --bg-3:rgb(217, 163, 202) ;
  --bg-4:rgb(242, 125, 114) ;
  --bg-5:rgb(242, 152, 119) ;
  --fm-1:rgb(205, 255, 7) ;
  --fm-2:rgb(230, 132, 22) ;
  --fm-3:rgb(224, 77, 183) ;
  --fm-4:rgb(248, 109, 97) ;
  --fm-5:rgb(250, 100, 46) ;
  --white: #fff;
  --bg: #f7f8fa;
  --black: black;
  --transition: 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --product-bg-1:rgb(214 255 56 / 43%);
  --product-bg-2:rgb(219 158 90 / 43%);
  --product-bg-3:rgb(217 163 202 / 43%);
  --product-bg-4:rgb(242 125 114 / 43%);
  --product-bg-5:rgb(242 152 119 / 43%);
  --gap-25-30: 27px;
}

body{
  direction: ltr;
  font-family: 'Commissioner', sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0px;
  position: relative;
}

html {
  scroll-behavior: smooth;
  }
*{
  box-sizing: border-box;
}

a{
    text-decoration: none;
}

p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 16px;
}

ul, ol {
  margin-bottom: 14px;
  padding-left: 21px;
}

li {
  margin-bottom: 14px;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
}

.title{
  text-align: center;
}
.six h2 {
  position: relative;
  text-align: center;
  color:#222;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.six h2:after, .six h2:before {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 5px;
  content: "";
  right: 50px; 
  margin:auto;
  background-color: #ccc;
}
.six h2:before { 
background-color:var(--bg-4);
  left: 50px; 
  width: 80px;
}

.section-privacy {
  word-break: break-all;
  overflow: hidden;
}
.obertka {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 27px;
  padding-left: 27px;
}
@media (max-width:767px) {
  .obertka { 
    padding-right: 16px;
    padding-left: 16px;
  }
}
.container{
  max-width: 1171px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
}
.header-txt-qa{
  display: flex;
  text-align: center;
  background-color: wheat;
  color: var(--black);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.header-txt-qa p {
  padding: 14px 0px;
  margin: 0;
}

.header {
  background-color: var(--white);
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;

  border-bottom: 1px solid black;
}
@media (min-width:768px) {
  .header {
    position: fixed;}
}
.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: var(--white);
}

.header li a {
  display: block;
  padding: 16px;
  border-right: 1px solid var(--black);
  text-decoration: none;
  color: var(--black);
  transition: var(--transition);
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: var(--black);
  color:var(--bg-4) 
}

.header .logo {
  display: block;
  float: left;
  font-size: clamp(28px,4vw,38px);
  padding: 16px;
  text-decoration: none;
  color: var(--black);
  background-color: var(--bg-4);
}

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;

}
.thumb-backet-qa{
  display: flex;
  height: auto;
  align-items: center;
}


.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 38px 16px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 16px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 8px;
}

.header .menu-icon .navicon:after {
  top: -8px;
}



.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 316px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}



@media (min-width: 986px) {
  .header li {
    float: left;
    margin: 0;
  }

  .header li a {
    padding: 27px;
  }

  .header .menu {
    clear: none;
    float: right;
    max-height: none;
    display: flex;
    align-items: center;
  }

  .header .menu-icon {
    display: none;
  }
}

.hero-section-qa{
  padding-top: 80px;
}
.text-hero-qa{
  margin: 0;
  text-align: center;
  font-size: clamp(19px,4vw,41px);
  padding: 16px 0;
}
.site-ttl{
 text-align: center;
}
.site-ttl h1 {
  display: inline-block;
  padding: 14px;
  background-color: var(--bg-4);
  font-size: clamp(19px,4vw,38px);
}
.text {
  opacity: 0;
  transform: translateY(-100%);
  animation: slideInFromTop 2s forwards;
}

@keyframes slideInFromTop {
  0% {
      opacity: 0;
      transform: translateY(-100%);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.section-delivery{
  padding: 50px 0px;
}
.thumb-delivery-qa{
display: flex;
justify-content: space-around;
}

@media (max-width:600px) {
  .thumb-delivery-qa{
    flex-direction: column;
    align-items: center;
  }
}

.box-delivery-qa{
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  opacity: 0;
  animation: fadeIn 0.5s forwards;
  justify-content: center;
  padding: 0px 20px;
}
@media (min-width:601px) {
  .box-delivery-qa{
    height: 171px;
  }
}
.box-delivery-qa:hover{
  background-color: var(--black);
}
.svg-delivery-qa{
  width: 71px;
  height: auto;
}
@media (min-width:601px) {
  .box-2mrg{
    margin-top: 50px;
  }
  .box-3mrg{  
    margin-top: 80px;
  }
}

#element1 {
  animation-delay: 0s;
}

#element2 {
  animation-delay: 0.5s;
}

#element3 {
  animation-delay: 0.7s;
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}
.txt-order-qa{
  text-align: center;
  transition: var(--transition);
  color: var(--black);
  font-weight: 600;
}
.box-delivery-qa:hover .txt-order-qa{
  color: var(--bg-4);
}
.svg-delivery-qa svg{
  transition: var(--transition);
  width: 100%;
  height: 100%;
  fill: var(--black);
}
.box-delivery-qa:hover .svg-delivery-qa svg{
  fill: var(--bg-4);
}

.section-vetrina{
  padding: 50px 0px;
}

.thumb-vetrina-qa{
  display: flex;
  gap: var(--gap-25-30);
}

@media (min-width:768px) {
  .thumb-vetrina-qa{
    height: 450px;
  }
}
@media (max-width:767px) {
  .thumb-vetrina-qa{
    flex-direction: column;
  }
}

  @media (max-width:767px) {
    .box-vetrina-qa{
      height: 250px;
    }
  }
  @media (min-width:768px) {
    .box-vetrina-qa{
      flex: 1;}
  }
  .box-vetrina-qa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

@media (min-width:768px) {
  .box-vetrina-main-qa{
    flex: 2;
    position: relative;
  }
}

@media (max-width:767px) {
  .box-vetrina-main-qa{
   height: 334px;
    }
}

@media (min-width:768px) {
  .box-vetrina-qa{
    flex: 1;
  }
}

.box-vetrina-main-qa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 
}

.box-vetrina-main-qa:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(214, 255, 56, 0.43)) !important;
}

.section-commodity{
  padding: 50px 0px;
}

.thumb-commodity-qa{
  display: flex;
  gap: var(--gap-25-30);
  flex-wrap: wrap;
  justify-content: center;
}
.box-commodity-qa{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
@media (min-width:768px) and (max-width:1199px) {
  .box-commodity-qa{
    width: calc(50% - 14px);
  }
}
@media (min-width:1200px) {
  .box-commodity-qa{
    min-width: 478px;
    width: calc(33% - 16px);
  }
}
.box-commodity-qa h2 {
  text-align: center;
  color: var(--black);
}
.box-commodity-qa p {
  color: var(--black);
}
.popul-commodity-qa{
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--black);
  color: var(--bg-4);
  font-weight: 600;
  padding: 8px;
  z-index: 1;
 
}
.skidka-commodity-qa{
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(236, 4, 4);
  font-weight: 600;
  color: var(--black);
  padding: 8px;
  z-index: 1;
}
.skidka-commodity-qa p {
  margin: 0;
}
.popul-txt-qa {
  margin: 0;
  color: var(--bg-4)!important;
}
.box-img-commodity-qa{
  overflow: hidden;
  min-height: 316px;
  height: 450px;
}
.price-qa{
  font-size: clamp(18px,4vw,23px);
  font-weight: {font_weight_bold};
  text-align: center;
}

.box-btn-commodity-qa{
  display: flex;
  justify-content: flex-start;
}

.box-img-commodity-qa img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  background: #e8e8e8;
  padding: 10px;
}

.box-img-commodity-qa img:hover{
  transform: scale(1.2);
}

.section-sale{
 padding: 50px 0px;
}

.thumb-commodity-sale-qa{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.link-sale-qa{
  color: var(--black);
  transition: var(--transition);
}
.link-sale-qa:hover{
  color: var(--bg-4);
}
.sale-sec-qa{
  display: flex;
}
@media (max-width:767px) {
  .sale-sec-qa{
    flex-direction: column-reverse;
  }
}
.box-left-sale-qa{
  display: flex;
  justify-content: center ;
  align-items: center;
  flex: 2 ;
 background: linear-gradient(20deg, var(--bg-4) 0%, #f5fae1 100%);
}
@media (max-width:767px) {
  .box-left-sale-qa{
    padding: 27px 0px;
  }
}
@media (min-width:768px) and (max-width:1199px) {
  .box-left-sale-qa{
    flex: 1;
  }
}

.thumb-sale-qa{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sale-txt-qa{
  font-size: clamp(22px,4vw,38px);
  margin: 0;
}

.sale-number-qa{
  font-size: clamp(3133pxpx,4vw,40px);
  font-weight: {font_weight_bold};
  margin: 14px 0px;
  animation: moveUpDown 3s ease-in-out infinite;
}
@keyframes moveUpDown {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-16px);
  }
}
.box-right-sale-qa{
  flex: 1;
}
@media (min-width:768px) and (max-width:1199px) {
  .box-right-sale-qa{
    flex: 2;
  }
}
.img-box-sale-qa{
  height: 550px;
}
@media (max-width:767px) {
  .img-box-sale-qa{
    height: 350px;
  }
}
.img-box-sale-qa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-section{
  padding: 39px 0px;
  background: linear-gradient(20deg, var(--bg-4) 0%, #f5fae1 100%);
}
.main_form {
  padding: 60px 0px;
}
.main_form .input-btn--panel-section{
  margin: 14px 0px;
  display: block;
  width: 100%;
  height: 39px;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1.2;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.15);
}

.main_form .input-btn--panel-section:focus{
  border: 2px solid var(--fm-4);
}

.main_form .textarea-btn--panel-section:focus{
  border: 2px solid var(--fm-4);
}

.checkbox-box{   
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
  .checkbox-box1{
    display: flex;
  }

  .main_form .textarea-btn--panel-section {
    margin: 14px 0px;
    display: block;
    width: 100%;
    height: 39px;
    padding: 8px 16px;
    font-size: 13px;
    line-height: 1.2;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.15);

  }
  .btn-form-qa{
    font-size: clamp(18px ,4vw,23px);
    font-weight: 600;
  }
  .checkbox-box1{
    margin: 14px 0px;
  }
  .confcolor{
    color: var(--black);
  }
  .label-check-qa{
    font-size: clamp(15px,4vw,18px);
  }


.thumb-logo-img-footer-qa{
  display: flex;
  gap: var(--gap-25-30);
  flex-direction: column-reverse;
  align-items: center;
  margin: 20px 0px;
}

.img-box-footer-qa{
  width: 150px;
  height: auto;
}

.img-box-footer-qa img {
  width: 100%;
  height: 100%;
  object-fit
  : contain;
}
.thumb-footer-qa{
  border: 1px solid var(--black);
  display:flex;
  flex-direction: row-reverse;
}

@media (max-width:991px) {
  .thumb-footer-qa{
    flex-direction: column-reverse;
  }
}

.logo-footer-name-qa{
  color: var(--bg-4);
  font-size: clamp(22px,4vw,38px);
  font-weight: 600;
  margin: 20px 0px;
}
.box-label-footer-qa{
  flex: 1;
  display: flex;
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 41px;
}

.link-footer-contacts-qa{
  color: var(--white);
  transition: var(--transition);
}

.link-footer-contacts-qa:hover{
  color: var(--bg-4);
}

.footer-menu-qa{
  background-color: wheat;
  flex: 2 ;
  padding: 41px;
  display: flex;
  gap: var(--gap-25-30);
  align-items: center;
}

@media (max-width:767px) {
  .footer-menu-qa{
    flex-direction: column-reverse;
    padding: 16px;
  }
}
.box-menu-footer-qa{
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

  .box-all-footer-qa{
    flex: 1;
    text-align: center;
  }

@media (max-width:1399px) {
  .box-all-footer-qa-new{display: none;}
}

@media (min-width:1400px) {
  .box-all-footer-qa-new{
    flex: 1;
  }
}

.bottom-bar-qa-link{
  color: var(--black);
  transition: var(--transition);
}

.bottom-bar-qa-link:hover{
  color: var(--bg-4);
}

.section-podval{
  padding: 16px 0px;
}
.box-img-pay-qa{
  flex-wrap: wrap;
  display: flex;
  gap: 27px;
  flex: 2;
  justify-content: center;
}

.img-pay-qa img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.thumb-podval-qa{
  display: flex;
}

@media (max-width:767px) {
.thumb-podval-qa{flex-direction: column;}
}

.box-txt-podval-qa{
  flex: 1;
}
.box-txt-podval-qa p {
  text-align: center;
}
.form-newseller-qa{
  text-align: center;
}
.txt-newseler-qa{
  text-align: center;
}
.form-newwseleer-qa{
  display: flex;

  flex-direction: column;
  align-items: center;
}
.form-control-qa{
  height: 71px;
  display: block;
  width: 100%;
   padding: 0 8px;
   font-size: 16px;
   font-weight: 600;
   line-height: 1.2;
   color: #495057;
   background-color: #fff;
   background-clip: padding-box;
   border: 2px solid var(--bg-4);
   border-radius: 8px;
   transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-qa::placeholder{
  font-size: 13px;
}

.btn-newwseler-qa{
  padding: 14px;
  width: 100%;
  margin: 8px 0px;
  text-align: center;
  border: 2px solid var(--bg-4);
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(15px,4vw,19px)!important;
}

@media (max-width:575px) {
 .form-control-qa{
   font-size: 13px;
 }
}

.section-form-contact{
  padding: 50px 0px;
}

.card-thumb-qa{
  display: flex;
      gap:var(--gap-25-30);
      justify-content: center;
      flex-wrap: wrap;
  }

  .cards-qa {
    position: relative;
    width: 334px;
    min-width: 271px;
    height: 157px;
    background:var(--bg-4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    flex-direction: column;
  }
  @media (max-width:767px) {
    .cards-qa {
      width: 100%;
    }
  }
  
  .cards-qa svg {
    width: 60px;
    fill: #2b2b2b;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    animation: pulse 1s infinite alternate;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  
  @media (max-width:767px) {
    .cards-qa svg {
      display: none;
    }
  }
  
  .cards-qa:hover {
    box-shadow: 0 14px 16px rgba(3, 3, 3, 0.2);
  }
  
  .cards__content-qa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 100%;
    height: 100%;
    padding: 16px;
    box-sizing: border-box;
    background-color: var(--bg-4);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    align-items: center;
    justify-content: center;
    display: flex;
  }

  @media (max-width:767px) {
    .cards__content-qa{
          transform: translate(-50%, -50%) rotate(-0deg);
          opacity: 1;
    }
  }
  .cards__content-qa a {
    font-weight: 800;
    color: var(--black);
  }
  .cards-qa:hover .cards__content-qa {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
  
  .cardss__title {
    margin: 0;
    font-size: 23px;
    color: #2c2c2c;
    font-weight: {font_weight_bold};
  }
  
  .cards__description-qa {
    margin: 10px 0 0;
    word-break: break-all;
    color: #818181;
    line-height: 1.2;
    font-size: 18px;
  }
  
  @media (max-width:575px) {
    .cards__description-qa { 
       font-size: 13px;}
  }
  .cards-qa:hover svg {
    scale: 0;
    transform: rotate(-45deg);
  }

.inputGroup {
  margin: 16px auto;
  max-width: 80%;
  position: relative;
}

.inputGroup input {
 font-size: clamp(14px,4vw,18px);
  padding: 14px;
  outline: none;
  border: 2px solid rgb(200, 200, 200);
  background-color: transparent;
  border-radius:  16px;
  width: 100%;
}

.inputGroup label {
  font-size: clamp(15px,4vw,19px);
  position: absolute;
  left: 0;
  padding: 14px;
  margin-left: 14px;
  pointer-events: none;
  transition: all 0.3s ease;
  color: rgb(100, 100, 100);
}

.inputGroup :is(input:focus, input:valid)~label {
  transform: translateY(-50%) scale(.9);
  margin: 0em;
  margin-left: 16px;
  padding: 8px;
  background-color: var(--bg-4);
}

.inputGroup :is(input:focus, input:valid) {
  border-color: var(--bg-4);
}

.box-img-product-qa{
  display: flex;
  justify-content: center;
}

.box-btn-product-qa{
  display: flex;
  justify-content: center;
  margin: 20px 0px;
}

.page-img{
  display: inline-block;
  position: relative;
  height: auto;
}

@media (min-width:768px) {
  .page-img{
    height: 450px;
  }
}

.responsive-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price-page-qa{
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--black);
  font-weight: 600;
  color: var(--bg-4)!important;
  padding: 8px;
  z-index: 1;
}

.rating-page-qa{
  position: absolute;
  top: 7%;
  left: 0;
  background-color: var(--black);
  font-weight: 600;
  color: var(--bg-4)!important;
  padding: 8px;
  z-index: 1;
}

@media (max-width:575px) {
  .rating-page-qa{
    top: 15%;
  }
}

.day-deliv-page-qa{
  position: absolute;
  top: 14%;
  left: 0;
  background-color: var(--black);
  font-weight: 600;
  color: var(--bg-4)!important;
  padding: 8px;
  z-index: 1;
}

@media (max-width:575px) {
  .day-deliv-page-qa{
    top: 30%;
  }
}

.product-number_qa{
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--black);
  font-weight: 600;
  color: var(--bg-4)!important;
  padding: 8px;
  z-index: 1;
}

.testi-page-qa{
  padding-top: 60px;
  padding-bottom: 39px;
}

.thumb-testi-qa{
  display: flex;
  gap: var(--gap-25-30);
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial{
  margin-top: 80px;
	  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	  border: 1px solid var(--bg-4);
    border-radius: 14px;
    padding: 27px;
    position: relative;
    height:auto;
    min-width: 271px;
    width: 45%;
}

@media (max-width:767px) {
  .testimonial{
    width: 100%;
  }
}

.imag{
	position: absolute;
	height: auto;
	width: 116px;
	left: 50%;
	top: 0;
	margin: -60px;
}

.imag img{
	clip-path: circle(34% at 50% 35%);
	height: 116px;
	width: 116px;
  object-fit: cover;
}

.para{
	color: var(--black);
	font-size: 16px;
	padding-top: 27px;
	display: flex;
	flex-direction: column;
}

.center-txt-qa{
	text-align: center;
}

.thumb-star-mm{
  display: flex;
  gap: 8px;
  justify-content: center;
}

.star-mm{
  width: 20px;
  fill: var(--bg-4);
}

.btn-1 {
  background: wheat;
  border: none;
  padding: 14px 16px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
  color: var(--white);

span {
    display: inline-block;
    transform: skew(21deg);
    }
}

.btn-1::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: var(--bg-4);
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}

.btn-1:hover {
  color: var(--black) ;
}

.btn-1:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}

.btn-2 {
  padding: 16px 39px;
  border-radius:  60px;
  cursor: pointer;
  border: 0;
  color: var(--black);
  background-color: wheat;
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.5s ease;
}

.btn-2:hover {
  background-color: var(--product-bg-4);
  color: var(--black);
  box-shadow: var(--bg-4) 0px 7px 29px 0px;
}

.btn-2:active {
  background-color:var(--product-bg-4);
  color:var(--black);
  box-shadow: var(--bg-4) 0px 0px 0px 0px;
  transform: translateY(8px);
  transition: 100ms;
}

.btn-3 {
 padding-left: 39px;
 padding-right: 39px;
 padding-bottom: 16px;
 padding-top: 16px;
 border-radius: 8px;
 background: var(--bg-4);
 border: none;
 font-family: inherit;
 text-align: center;
 cursor: pointer;
 transition: 0.4s;
 color:var(--black);
}

.btn-3:hover {
 box-shadow: 7px 5px 60px -14px var(--bg-4);
}

.btn-3:active {
 transform: scale(0.97);
 box-shadow: 7px 5px 60px -14px var(--bg-4);
}

.btn-4 {
  padding: 14px 27px;
  border: unset;
  border-radius: 16px;
  color: #212121;
  z-index: 1;
  background: #e8e8e8;
  position: relative;
  font-weight: 1000;
  font-size: 18px;
  -webkit-box-shadow: 4px 8px 16px -3px rgba(0,0,0,0.27);
  box-shadow: 4px 8px 16px -3px rgba(0,0,0,0.27);
  transition: all 250ms;
  overflow: hidden;
 }
 
 .btn-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 16px;
  background-color: var(--bg-4);
  z-index: -1;
  -webkit-box-shadow: 4px 8px 21px -3px rgba(0,0,0,0.27);
  box-shadow: 4px 8px 21px -3px rgba(0,0,0,0.27);
  transition: all 250ms
 }
 
 .btn-4:hover {
  color:var(--black);
 }
 
 .btn-4:hover::before {
  width: 100%;
 }
.btn-5 {
  position: relative;
  margin: 0;
  padding: 16px 39px;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid var(--bg-4);
  border-radius: 14px;
  color: var(--black);
  font-weight: 600;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.btn-5 span {
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.btn-5:hover {
  animation: rotate624 0.7s ease-in-out both;
}

.btn-5:hover span {
  animation: storm1261 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

@keyframes rotate624 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes storm1261 {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }

  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }

  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }

  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }

  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}



.btn-5 span {
  z-index: 20;
}

.btn-5:after {
  background:var(--bg-4);
  content: "";
  height: 1 60px;
  left: -71px;
  opacity: 0.4;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 60px;
  z-index: -10;
}

.btn-5:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-custom{
  padding: 14px;
  font-size: clamp(18px,4vw,23px);
}

.karta{
  width: 100%;

  iframe{
    border: none;
  }
}

.market-{rclass_basket}-col-btn button {
  z-index: 0;
  }