@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');

*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root{
  --color1: #d7a449;
  --color2: #0e0707;
  --color3: #f1f1f1;
  --color11: #c1b7b7;
  --color-text:  #282828;
  --color-granny-smith: #7d9e9d;
  --color-dark-bunker: #101115;
  --color-bright-gray: #383c4a;
}

body{
    direction: ltr;
    font-family: 'Schibsted Grotesk', sans-serif !important;
    font-size: 16px;
    margin: 0;
    padding: 0px;
    line-height: 1.4;
    direction: ltr !important;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0px 0px,0px 0px,0px 0px,0px 0px,0px 0px;
    background-image: repeating-linear-gradient(315deg, #BDF4F42E 92%, #073AFF00 100%),repeating-radial-gradient(75% 75% at 238% 218%, #04080812 30%, #073AFF14 39%),radial-gradient(99% 99% at 109% 2%, #0F1A1EFF 0%, #073AFF00 100%),repeating-radial-gradient(99% 99% at 21% 78%, #0F0F12FF 0%, #0F0F12FF 4%, #0F0F12FF 4%, #0F0F12FF 57%, #0F0F12FF 84%, #073AFF00 100%, #0F0F12FF 100%),radial-gradient(160% 154% at 711px -303px, #000010FF 0%, #073AFFFF 100%);
}

img{
  max-width: 100%;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

li, p{
padding: 11px 0;
}

a {
  text-decoration: none;
}


.button-1 {
  width: fit-content;
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  background-color: transparent;
  border: 0;
  padding: 11px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
  color: #fff;
}
.button-1.brutal {
  background-color: var(--color2);
  border: 3px solid;
  box-shadow: 4px 7px 0 var(--color-bright-gray);
}
.button-1.brutal:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 black;
}
.button-1:not(.brutal):hover {
  transform: rotate(-3deg);
}


.button-2 {
  background-color: var(--color2);
  border-radius:  6px;
  color: #FFF;
  display: block;
  padding: 11px;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  width: fit-content;
  transition: box-shadow .3s ease-in-out,
  transform .3s ease-in-out;
}

.button-2:hover {
  box-shadow: 0 7px 11px rgba(0,0,0,.3);
  transform: translateY(-2px);
}

.button-3 {
  font-size: 18px;
  letter-spacing: 2px;
  display: inline-block;
  text-align: center;
  font-weight: 900;
  padding: 11px 28px;
  border: 3px solid #d2d38c;
  border-radius: 3px;
  position: relative;
  box-shadow: 0 3px 11px rgba(0, 0, 0, 0.16), 0 3px 7px rgba(0, 0, 0, 0.1);
  color: #d2d38c;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.button-3:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #d2d38c;
  z-index: -1;
}

.button-3:hover, .button-3:focus {
  color: white;
}

.button-3:hover:before, .button-3:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.button-3:active {
  transform: scale(0.9);
}


.button-4 {
  position: relative;
  display: inline-block;
  background: #d2d38c;
  background-size: 200% auto;
  border: none;
  border-radius: 28px;
  color: white;
  padding: 11px 25px;
  font-size: 19px;
  text-transform: uppercase;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: glowing-pulse 2s infinite;
  transition: color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.button-4::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  right: -7px;
  bottom: -7px;
  border-radius: 28px;
  box-shadow: 0 0 18px #d2d38c;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.button-4::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button-4:hover {
  color: var(--color3);
  box-shadow: 0 0 0 11px rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
  background-position: right center;
}

.button-4:hover::before {
  opacity: 1;
}


.button-5 {
  background-color: #d2d38c;
  color: #fff;
  padding: 11px 28px;
  border: none;
  border-radius: 57px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.button-5:hover {
  color: #fff;
  box-shadow: 0 0 11px rgb(210 211 140 / 80%);
}


.container{
  max-width: 1253px;
  margin: 0 auto;
}

.top-bar {    
  padding: 11px;
  background: #fff;       
}

.top-bar-main{
  display: flex;
}

.top-bar-block{
  flex: 1;
  display: flex;
  gap: 7px;
}

.top-bar-hours-inner{
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.top-bar-hours-title{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 11px;
}

.top-bar-hours-week{
  display: flex;
  gap: 7px;
}

.top-bar-hours-title h5, .top-bar-phone a{
  font-size: clamp(12px,2.5vw,16px);
  font-weight: 400;
  transition: .4s;
  color: var(--color2);
}

.top-bar-phone a:hover{
  color: #d2d38c;
}

.top-bar-hours-week div{
  font-size: clamp(13px,2.5vw,12px);
  font-weight: 400;
}

.top-bar-hours-title svg{ 
  fill: #d2d38c;
}

.top-bar-block{
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-bar-block svg{ 
  fill: #d2d38c;
}

.nav-content {
  background-color:#333;
  padding: 18px;
}

.nav-content-main{
  display: flex;
  flex-direction: row;
}

.nav-logos, .nav-content-menu{
  flex: 1;
}

.nav-logos{
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logos a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.nav-content-menu{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 23px;
}


.nav-content a h2 {
  font-size: 19px;
  color: #d2d38c;   
}
.nav-content a h2:hover {
  color: #fff;
  transition: .4s;
}
.nav-content-menu li a { 
  font-size: 19px;  
  color: var(--color3); 
  transition: .4s;
}

.nav-logos a img{
  width: 34px;
  height: 34px;
}

.nav-content-menu li a:hover {
  border-bottom: 1px solid #d2d38c; 
  padding-bottom: 4px;
  transition: .4s;
}

.nav-content-menu li:last-child {
  padding-right: 0;
}

.mifbs{
  color: #fff;
}

.hed-kart {
  word-break: break-all;
  background-image: url(files/img/overlay_2025-05-28_12-110.png);
  background-color: #3a7485;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1200%;
  padding:  44px;
  width: 100%;
  overflow: hidden;
}


.hed-kart-main{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.hed-kart-left, .hed-kart-right{
  flex: 1;
  margin: 0 28px;
}

.hed-kart-left {
  z-index: 1;
}
.hed-kart-left h1 {
  font-size: clamp(19px,.5vw,27px);
  color: #d2d38c;
}

.hed-kart-inter{
  padding: 18px 0;
}

.hed-kart-inter h2 {
  color: var(--color11);
  font-family: monospace;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  animation: typing 3.5s, blink-caret .5s infinite;
  font-size: clamp(12px,5vw,24px);
  text-transform: uppercase;
}

@keyframes typing {
  from {
     width: 0 
    }
  to { 
    width: 100% 
  }
}

.hed-kart-btns{
  padding-top: 18px;
}

.hed-kart-right img {
  object-fit: cover;
  width: 100%;
  height: 475px;
  border: 7px solid;
  box-shadow: 18px 11px 0 black;
}

.hed-kart-right img:hover {
  transform: rotate(-3deg);
  animation: filter .2s ease-in 0s 2;
}


@keyframes filter {
  10% {
    filter: none;
  }
  25% {
    filter: grayscale(100%) invert(70%) saturate(80%);
  }
}


.hed-kart-count-inner{
  display: flex;
  align-items: center;
  margin-top: 11px;
  gap: 11px;
  padding: 11px;
  font-family: monospace;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 3.5s, blink-caret .5s infinite;
  font-size: clamp(12px,2.5vw,16px);
  justify-content: center;
}


.hed-kart-count h3{
  color: #d2d38c;
}

.hed-kart-count h4{
  word-break: break-all;
  color: var(--color3);
  font-style: italic;
}

.hed-kart-count svg{
  color: #d2d38c;
  width: 34px;
  height: 34px;
}


.upside{
  padding: 44px 0;
}


.upside-main{
  display: flex;
  flex-direction: row;
}

.upside-left, .upside-right{
  flex: 1;
  margin: 0 28px;
}


.upside-left h5{
  font-size: clamp(19px,5vw,30px);
  color: #d2d38c;
  font-weight: 900;
  padding-bottom: 44px;
}

.upside-left .upside-left-text{
  padding: 28px;
  font-size: 16px;
  color: #b2b2b8;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px dashed #d2d38c;
  font-style: italic;
}

.upside-left-image{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .4s;
}

.upside-left-image img{
  width: 267px;
  height: 267px;
  object-fit: contain;
  filter: drop-shadow(2px 4px 7px #d2d38c);
  -webkit-filter: drop-shadow(2px 4px 7px #d2d38c);
}

.upside-left-image:hover img{
  filter: grayscale(5);
  -webkit-filter: grayscale(5);
}

.upside-right-block{
  display: flex;
  align-items: center;
  padding: 28px 0;
}

.upside-right-inner{
  width: 53px;
  height: 53px;
  position: relative;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upside-right-text{
  width: 80%;
}

.upside-right-inner svg{
  fill: #d2d38c;
  width: 34px;
  height: 34px;
}

.upside-right-text h2{
  color: #d2d38c;
}

.upside-right-text div{
  font-size: 12px;
  color: #b2b2b8;
}

.upside-right-block {
  opacity: 1; 
  transition: opacity 0.3s; 
}

.upside-right-block.hover {
  opacity: 1;
}

.upside-right-block.non-hover {
  opacity: 0.6; 
}


.assortment{
  padding: 44px 0;
}

.assortment-title{
  padding-bottom: 44px;
  padding-left: 23px;
}

.assortment-title h5{
  font-size: clamp(19px,5vw,30px);
  color: #d2d38c;
  font-weight: 900;
}

.assortment-main{
  display: flex;
  flex-wrap: wrap;
}

.assortment-blockM{
  width: 33.3%;
}

.assortment-block {
  position: relative;
  border-radius:  6px;
  box-shadow: 0 7px 11px rgba(0,0,0,0.3);
  height: 530px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px dashed #d2d38c;
  margin: 7px;
}

.assortment-block > .assortment-image {
  width: 90%;
  margin: 18px auto 0 auto;
}

.assortment-block > .assortment-image > img {
  width: 100%;
}

.assortment-details {
  backdrop-filter: brightness(0.2);
  -webkit-backdrop-filter: brightness(0.2);
  border-radius: 11px;
  padding: 20px;
  position: absolute;
  top: 73%;
  width: 100%;
  height: 100%;
  transition: box-shadow .3s ease-in-out, top .3s ease-in-out;
}
@media (min-width:576px) and (max-width:767px) {
  .assortment-details{
     top: 75%;
  }
}
.assortment-block:hover .assortment-details {
  box-shadow: 0 -7px 11px rgba(0,0,0,0.3);
  top: 0%;
}


.assortment-details p{
  display: block;
  white-space: normal;
  overflow: hidden;
  padding: 7px;
  text-overflow: ellipsis;
  max-height: 40px;
  margin: 11px;
}

.assortment-details > .assortment-min-details {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.assortment-options-rating{
  display: flex;
  gap: 7px;
  padding: 15px 0;
  align-items: center;
  justify-content: center;
}

.assortment-options-rating svg{
  fill:  #d2d38c;
}

.assortment-min-details a{
  font-size: 18px;
  font-weight: 400;
  color: var(--color3);
  transition: .4s;
}

.assortment-min-details a:hover{
  color:  #d2d38c;
}

.assortment-min-details h1{
  font-size: 19px;
  font-weight: 400;
  color:  #d2d38c;
}

.assortment-options-text p{
  font-size: 12px;
  color: #b2b2b8;
}


.showcase {
  padding: 44px 0;
  overflow: hidden;
}

.showcase-title{
  padding-bottom: 44px;
  padding-left: 23px;
}

.showcase-title h5{
  font-size: clamp(19px,5vw,30px);
  color: #d2d38c;
  font-weight: 900;
}

@property --showcase-sh {
  syntax: "<angle>";
  inherits: false;
  initial-value: 33deg;
}


.showcase-main {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(311px, 1fr)
  );
  grid-auto-rows: 237px;
  gap: 18px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.showcase-box .showcase-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
}
.showcase-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  cursor: default;
}
.showcase-box {
  position: relative;
  width: 100%;
  isolation: isolate;
  background: #fee;
}

.showcase-sh {
  position: absolute;
  inset: -45px;
  border-radius: inherit;
  mask-image: conic-gradient(
    from var(--luz, 0deg),
    transparent 0%,
    transparent 10%,
    black 36%,
    black 45%,
    transparent 50%,
    transparent 60%,
    black 85%,
    black 95%,
    transparent 100%
  );
  mask-size: cover;
  mix-blend-mode: plus-lighter;
}

.showcase-sh:before,
.showcase-sh:after {
  content: '';
  opacity: 0;
  position: absolute;
  mix-blend-mode: color;
  inset: 45px;
  border-radius: inherit;
}

.showcase-sh:before {
  box-shadow: 0 0 3px 2px #fff,
        0 0 7px 4px #fff,
        0 0 11px 4px #d2d38c,
        0 0 28px 7px #d2d38c;
    z-index: -1;
}
.showcase-sh:after {
  box-shadow: inset 0 0 0 1px #fff,
      inset 0 0 2px 1px #fff,
      inset 0 0 7px 2px #d2d38c;
  z-index: 1;
}
.showcase-box:hover .showcase-sh {
  animation: movimiento 1s cubic-bezier(0.330, 0.425, 0.595, 0.860) infinite;
}
.showcase-box:hover .showcase-sh:before,
.showcase-box:hover .showcase-sh:after{
  animation: iluminar 1s cubic-bezier(0.330, 0.425, 0.595, 0.860) infinite;
}
.showcase-box:hover img {
  transform: scale(1.1);
}
@keyframes movimiento {
  0% {
    --showcase-sh: 0deg;
  }
  100% {
    --showcase-sh: 360deg;
  }
}

@keyframes iluminar {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


.video-area {
  overflow: hidden;
  padding: 44px 0;
}

.video-area-title{
  padding-bottom: 44px;
  padding-left: 23px;
}

.video-area-title h5{
  font-size: clamp(19px,5vw,30px);
  color: #d2d38c;
  font-weight: 900;
}

.video-area-main{
  display: flex;
  flex-direction: row;
  align-items: center;
  border-top: 2px dashed #d2d38c;
  border-bottom: 2px dashed #d2d38c;
  padding: 18px 0;
}

.video-area-block,.upside-right{
  flex: 1;
  margin: 0 28px;
}

.video-area-block {
  width: 100%;
  height: 267px;
}

.video-area-block video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(2px 4px 7px #d2d38c);
  -webkit-filter: drop-shadow(2px 4px 7px #d2d38c);
}

.video-area-block:hover video {
  filter: grayscale(5);
  -webkit-filter: grayscale(5);
}

.upside-right-block{
  display: flex;
  align-items: center;
  padding: 28px 0;
}

.upside-right-inner{
  width: 53px;
  height: 53px;
  position: relative;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upside-right-text{
  width: 80%;
}

.upside-right-inner svg{
  fill: #d2d38c;
  width: 34px;
  height: 34px;
}

.upside-right-text h2{
  color: #d2d38c;
}

.upside-right-text div{
  font-size: 12px;
  color: #b2b2b8;
}

.upside-right-block {
  opacity: 1; 
  transition: opacity 0.3s; 
}

.upside-right-block.hover {
  opacity: 1;
}

.upside-right-block.non-hover {
  opacity: 0.6; 
}

.svz {
  overflow: hidden;
  padding: 44px 0;
}

.svz-title{
  padding-bottom: 44px;
  padding-left: 23px;
}

.svz-title h5{
  font-size: clamp(19px,5vw,30px);
  color: #d2d38c;
  font-weight: 900;
}

.svz-block{
  width: 100%;
  padding: 0 18px;
}

.svz-block label{
  color: var(--color3);
}

.svz-block form{
  width: 100%;
}

.svz-block .field{
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.svz-block .input-field_containergroup{
  width: 100%;
  background-color: #272833;
  border: none;
  outline: none;
  padding: 18px;
  color: var(--color3);
  border-radius:  6px;
  margin-bottom: 28px;
  filter: drop-shadow(2px 4px 7px #d2d38c);
  -webkit-filter: drop-shadow(2px 4px 7px #d2d38c);
}

.svz-block .input-field_containergroup::placeholder{
  color: var(--color3);
}

.svz-block .textarea-field_containergroup::placeholder{
  color: var(--color3);
}

.svz-block .textarea-field_containergroup{
  width: 100%;
  background-color: #272833;
  border: none;
  outline: none;
  padding: 18px;
  color: var(--color3);
  border-radius:  6px;
  margin-bottom: 28px;
  filter: drop-shadow(2px 4px 7px #d2d38c);
  -webkit-filter: drop-shadow(2px 4px 7px #d2d38c);
}

.svz-block .svz-check{
  align-items: center;
  padding: 18px 0;
  display: flex;
  gap: 7px;
}

.svz-block .svz-check a{
  text-decoration: underline;
  color: #d2d38c;
}


.btFoo{
  background: url(files/img/overlay_2025-05-28_12-111.png);
  background-color: var(--color-dark-bunker);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 23px;
}

.btFoo-main{
  display: flex;
}

.btFoo-links, .btFoo-cards{
  flex: 1;
}

.btFoo-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 11px;
  gap: 18px;
}

.btFoo-links a{
  font-size: 18px;
  font-weight: 400;
  color: #d2d38c;
  transition: .4s;
}

.btFoo-links a:hover{
  color: var(--color3)
}

.btFoo-cards{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 11px;
}

.btFoo-cards img{
  width: 61px;
  height: 61px;
}


.btFoo-title{
  border-top: 2px dashed #d2d38c;
  display: flex;
  justify-content: flex-end;
  padding: 11px 0;
  margin: 11px 0;
}

.btFoo-title div{
  font-size: 18px;
  font-weight: 900;
  color: #d2d38c;
  padding-top: 11px;
}

.drop-in-line-frm {
  overflow: hidden;
  padding: 44px 0;
}

.drop-in-line-frm-title{
  padding-bottom: 44px;
  padding-left: 23px;
}

.drop-in-line-frm-title h5{
  font-size: clamp(19px,5vw,30px);
  color: #d2d38c;
  font-weight: 900;
}

.drop-in-line-frm-main{
  display: flex;
  flex-direction: row;
}

.drop-in-line-frm-block, .drop-in-line-frm-g{
  flex: 1;
  margin: 44px;
}

.drop-in-line-frm-block label{
  color: var(--color3);
}

.drop-in-line-frm-block form{
  width: 100%;
}

.drop-in-line-frm-block .field{
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.drop-in-line-frm-block input{
  background-color: #272833;
  border: none;
  outline: none;
  padding: 18px;
  color: var(--color3);
  border-radius:  6px;
  margin-bottom: 28px;
  filter: drop-shadow(2px 4px 7px #d2d38c);
  -webkit-filter: drop-shadow(2px 4px 7px #d2d38c);
}

.drop-in-line-frm-check input{
  background-color: #272833;
  border: none;
  outline: none;
  padding: 18px;
  color: var(--color3);
  border-radius:  6px;
  margin-bottom: 0 !important;
  filter: drop-shadow(2px 4px 7px #d2d38c);
  -webkit-filter: drop-shadow(2px 4px 7px #d2d38c);
}
.drop-in-line-frm-block input::placeholder{
  color: var(--color3);
}

.drop-in-line-frm-block textarea::placeholder{
  color: var(--color3);
}

.drop-in-line-frm-block textarea{
  background-color: #272833;
  border: none;
  outline: none;
  padding: 18px;
  color: var(--color3);
  border-radius:  6px;
  margin-bottom: 28px;
  filter: drop-shadow(2px 4px 7px #d2d38c);
  -webkit-filter: drop-shadow(2px 4px 7px #d2d38c);
}

.drop-in-line-frm-block .drop-in-line-frm-check{
  align-items: center;
  padding: 18px 0;
  display: flex;
  gap: 7px;
}

.drop-in-line-frm-block .drop-in-line-frm-check a{
  text-decoration: underline;
  color: #d2d38c;
}

.drop-in-line-information{
  overflow: hidden;
  padding: 44px 44px;
}

.drop-in-line-information-inner{
  display: flex;
  align-items: center;
  box-shadow: 3px 7px 18px #d2d38c;
  padding: 28px 18px;
}

.drop-in-line-information-box{
  width: 100%;
  display: flex;
  gap: 18px;
  align-items: center;
}

.drop-in-line-information-img{
  width: 53px;
  height: 53px;
  position: relative;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-in-line-information-text{
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.drop-in-line-information-img svg{
  fill: #d2d38c;
  width: 34px;
  height: 34px;
}

.drop-in-line-information-dop{
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.drop-in-line-information-text a, .drop-in-line-information-text div{
  color: var(--color11);
  transition: .4s;
  word-break: break-all;
  font-size: 16px;
}

.drop-in-line-information-text h3{
  font-size: 19px;
  color: #d2d38c;
  font-weight: 900;
}

.drop-in-line-information-text a:hover{
  color: #d2d38c;
}

.drop-in-line-information-inner {
  opacity: 1; 
  transition: opacity 0.3s; 
}

.drop-in-line-information-inner.hover {
  opacity: 1;
}

.drop-in-line-information-inner.non-hover {
  opacity: 0.6; 
}


.insights {
  overflow: hidden;
  padding: 44px 18px;
}

.unit-title{
  padding-bottom: 44px;
  padding-left: 23px;
}

.unit-title h5{
  font-size: clamp(19px,5vw,30px);
  color: #d2d38c;
  font-weight: 900;
}

.unit-popular h2{
  font-size: clamp(18px,2.5vw,19px);
  color: #d2d38c;
  font-weight: 400;
}

.unit-view{
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(18px,2.5vw,19px) !important;
  color: #d2d38c;
  font-weight: 400;
}

.unit-deliv{
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(18px,2.5vw,19px) !important;
  color: #d2d38c;
  font-weight: 400;
}

.unit-main{
  display: flex;
  flex-direction: column-reverse;
}

.unit-image, .unit-content{
  flex: 1;
  margin: 18px;
}

.unit-content h2{
  font-size: 18px;
}

.unit-content{
  padding: 11px;
  color: var(--color3);
  font-size: clamp(12px,2.5vw,18px) !important;
}

.unit-content ul li, .unit-content ol li{
  padding: 7px 0;
}

.unit-content ul{
  list-style: disc !important;
  text-align: left !important;
}

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

.unit-image img{
  width: 100%;
  height: 467px;
  object-fit: contain;
}

.unit-price {
  font-size: clamp(12px,2.5vw,24px);
  color: var(--color2);
  font-weight: 900;
  animation: flashColor 2s infinite;
  padding: 11px;
  margin-top: 18px;
}

@keyframes flashColor {
  0% {
    background: #d2d38c;
    filter: drop-shadow(2px 4px 7px #d2d38c);
    -webkit-filter: drop-shadow(2px 4px 7px #d2d38c);
  }
  50% {
    background: #d2d38c;
    filter: drop-shadow(2px 4px 7px #d2d38c);
    -webkit-filter: drop-shadow(2px 4px 7px #d2d38c);
  }
  100% {
    background: #d2d38c;
    filter: drop-shadow(2px 7px 11px #d2d38c);
    -webkit-filter: drop-shadow(2px 7px 11px #d2d38c);
  }
}

.unit-form-block{
  width: 100%;
  padding-top: 28px;
}

.unit-form-block label{
  color: var(--color3);
}

.unit-form-block form{
  width: 100%;
}

.unit-form-block .field{
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.unit-form-block .input-field_containergroup{
  background-color: #272833;
  border: none;
  outline: none;
  padding: 18px;
  color: var(--color3);
  border-radius:  6px;
  margin-bottom: 28px;
  filter: drop-shadow(2px 4px 7px #d2d38c);
  -webkit-filter: drop-shadow(2px 4px 7px #d2d38c);
}

.unit-form-block .input-field_containergroup::placeholder{
  color: var(--color3);
}

.unit-form-block .textarea-field_containergroup::placeholder{
  color: var(--color3);
}

.unit-form-block .textarea-field_containergroup{
  background-color: #272833;
  border: none;
  outline: none;
  padding: 18px;
  color: var(--color3);
  border-radius:  6px;
  margin-bottom: 28px;
  filter: drop-shadow(2px 4px 7px #d2d38c);
  -webkit-filter: drop-shadow(2px 4px 7px #d2d38c);
}

.unit-form-block .unit-check{
  align-items: center;
  padding: 18px 0;
  display: flex;
  gap: 7px;
}

.unit-form-block .unit-check a{
  text-decoration: underline;
  color: #d2d38c;
}

.unit-btn{
  display: flex;
  padding-top: 18px;
}


.nRead{
  padding: 79px 79px;
  overflow: hidden;    
  color: var(--color3) !important;
  word-break: break-all;
}

.nRead tbody, .nRead table, .nRead span{
  color: var(--color3) !important;
}

.nRead td{
  border-color: var(--color3) !important;
  border-left: 2px solid var(--color3) !important;
  border-right: 2px solid var(--color3) !important;
  border-top: 2px solid var(--color3) !important;
}

.nRead h1.nRead-title{
  font-size: 24px;
  font-weight: 900;
  color: var(--color3);
}

.nRead h1,h2,h3{
  font-size: 19px;
  font-weight: 900;
  color: var(--color3);
}

.nRead  a{
  text-decoration: underline;
  color: var(--color3);
  word-break: break-all;
}

.nRead ol li {
  color: var(--color3);
}

.nRead ul{
  list-style: disc !important;
  text-align: left;
  margin: 11px;
}


#button {
  display: inline-block;
  background-color: #d2d38c;
  width: 62px;
  height: 62px;
  text-align: center;
  border-radius: 0;
  position: fixed;
  bottom: 123px;
  right: 79px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.arrow {
  border: solid var(--color-dark-bunker);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

#button::after {
  content: "";
  font-size: 19px;
  line-height: 1.4;
  color: #fff;
  font-weight: 400;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
#button:hover {
  transform: translateY(-7px);
}
@-webkit-keyframes spineer {
from {
  box-shadow: 0 0 0 0 rgb(210 211 140 / 50%);
}
to {
  box-shadow: 0 0 0 37px rgba(250, 87, 51, .01);
}
}

@keyframes spineer {
from {
  box-shadow: 0 0 0 0 rgb(210 211 140 / 50%);
}
to {
  box-shadow: 0 0 0 37px rgba(250, 87, 51, .01)
}
}



@media (max-width: 992px) {
  .hed-kart-main{
    flex-direction: column;
  }

  .assortment-blockM{
    width: 50%;
  }

  .upside-main{
    flex-direction: column;
  }

  .showcase-main{
    grid-template-columns: repeat(auto-fit, minmax(391px, 1fr));
  }

  .drop-in-line-frm-main{
    flex-direction: column;
  }

  .video-area-main{
    flex-direction: column;
  }

  .btFoo-main{
    flex-direction: column;
  }

  .upside-right{
    padding: 23px 0;
  }

  .nav-content-main{
    flex-direction: column;
  }

  .showcase, .video-area, .svz,{
    padding: 44px 11px;
  }
}

@media (max-width: 768px) {
  .top-bar-main{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
  }

  .top-bar-hours-inner{
    gap: 7px;
  }

    .nav-content-menu {
      flex-wrap: wrap;
      gap: 11px;
  }

  .assortment-blockM{
    width: 100% !important;
  }

  .showcase-main{
    grid-template-columns: repeat(auto-fit, minmax(267px, 1fr));
  }

  .unit-content{
    margin: 0;
  }

  .top-bar-hours-title{
    flex-direction: column;
  }
}


@media(max-width: 600px){
    .nRead {
      padding: 44px 44px;
    }

  .top-bar-hours-inner{
    flex-direction: column;
    gap: 7px;
  }

  .hed-kart-count-inner{
    flex-direction: column;
  }

}

@media (max-width: 575px) {

  button {
      width: 100%;
  }

  .upside-right-block{
    flex-direction: column;
    gap: 7px;
  }

  .upside-right-text{
    width: 100%;
    text-align: center;
  }

  .hed-kart-right img{
    height: auto;
  }

  .hed-kart-left h1, .hed-kart-inter h2{
    padding: 0 18px;
  }

  .hed-kart-btns{
    padding-left: 18px;
    padding-right: 18px;
  }

  .unit-image img{
    height: auto;
  }

  .drop-in-line-information-box{
    flex-direction: column;
    text-align: center;
    gap: 11px;
  }

  .assortment-details{
    top: 0% !important;
  }
}


.drop-in-line-frm-g iframe{
  border: none;
}


#market-{rclass_basket}-main-basket-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 23px;
  flex-direction: column;
}

#market-{rclass_basket}-main-basket-1  svg { 
fill: #fff !important; 
}
#market-{rclass_basket}-main-basket-1  svg { 
fill: #fff !important; 
}

.gdpr-popup, .x981m3{
z-index: 7 !important;
}

.cart-icon-1{position: relative !important; right: 0 !important; background: none!important; display: flex;!important}
.cart-icon-2{fill: #fff;}
.market-{rclass_basket}-col-btn button {
z-index: 0 !important;
}


.drop-in-line-information-block{
  max-width: 578px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
       

.market-saleum__footer-icon-basket-notification{
  color: #fff !important;
}
      
        