:root {
    --marquee-duration: 50s;
    --marquee-gap: 3rem;
    --marquee-padding: 20px;
}
/*ad-banner*/
.ad-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #03336D;
    padding-block: var(--marquee-padding);
}
.ad-container .wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: var(--marquee-gap);
    padding-inline: 1rem;
    will-change: transform;
    left: 0;
    animation: marquee-1 var(--marquee-duration) linear infinite;
}
.ad-container .wrapper:nth-child(2) {
    animation-name: marquee-2;
}
.text {
    margin: 0;
    font-size: 14px;
    color: #fff;
}
@keyframes marquee-1 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes marquee-2 {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}
/* .ad-container:hover .wrapper {
    animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
    .ad-container .wrapper {
        animation: none;
    }
} */
/* Main */
body{
  background-color: #F5F5F5;
}
.topnav-is-dark .top-navbar{
  background-color: white;
}
.s-contacts-header{
color: black;
}
section:nth-of-type(1){
  margin: unset;
}
section:nth-of-type(1) .container ,
section:nth-of-type(5) .container{
  padding: unset;
  max-width: unset;
}
section:nth-of-type(2) .container{
  max-width: 600px;
}
.two-row .banner-entry:first-child{
  grid-row: span 1 / span 1 ;
}
section:nth-of-type(3) div{
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.banner--fixed img, .banner-entry{
  background-color: transparent;
}
@media(max-width:768px){
section:nth-of-type(3) div{
grid-template-columns: repeat(3, minmax(0, 1fr));
}
  .banner-entry{
    height: 100px;
  }
}
section:nth-of-type(5) .container{
  padding: .625rem;
}
.s-product-card-entry{
  height: 95%;
  margin: 5px;
  box-shadow: 0 0 10px #000;
}
.s-button-primary-outline{
background: linear-gradient(92.93deg, #03336D 0.37%, #0663D3 91.06%);
color: white;
}
.s-button-primary-outline:hover{
background: linear-gradient(92.93deg, #03336D 0.37%, #0663D3 91.06%);
color: white;
opacity: 1;
}
.s-reviews-header-wrapper{
  justify-content: center;
}
.s-reviews-header{
  font-size: 1.7rem;
    background-image: url(https://b.top4top.io/p_3635a7df41.png);
    padding: 3px 95px;
    background-repeat: no-repeat;
}
.store-footer__inner ,
.store-footer{
  background-color: white;
  color: black;
}
.s-rating-stars-hovered, .s-rating-stars-selected{
  fill: black;
}
.topnav-is-dark .top-navbar .s-search-input {
  color: #0663d3 !important;
}