body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
 
}

section{
  z-index: 2;
  position: relative;
}

h2{
  font-family: 'Larsseit';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.02em;
}
h3{
  font-family: 'Larsseit';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.02em;
}

/*loading*/
.advance-loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #29509C #29509C transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  display: none;
  margin: 15px auto 0;
}
.advance-loader.show{
  display: block;
}
.advance-loader::after,
.advance-loader::before {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #1B3567 #1B3567;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.advance-loader::before {
  width: 32px;
  height: 32px;
  border-color: #29509C #29509C transparent transparent;
  animation: rotation 1.5s linear infinite;
}

/*no products*/
.advance-no-products {
    display: none;
}

.advance-no-products.show {
    display: block;
}

input[type="date"] {
    display: flex;
    min-width: 96%; 
}

input::-webkit-date-and-time-value {
  text-align: left;
}
    
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/*end loading*/

@media(min-width: 900px){
  .container{
    max-width: 846px;
  }
}

@media(min-width: 960px){
  .container{
    max-width: 896px;
  }
}

@media (min-width: 1200px){
  .container{
    max-width: 1140px;
  }
}

@media(min-width: 1440px){
  .container{
    max-width: 1224px;
  }
}
@media(min-width: 1600px){
  .container{
    max-width: 1416px;
  }
}


@media(max-width: 1279px){
  h2{
    font-size: 40px;
    line-height: 44px;
  }
  h3{
    font-size: 32px;
    line-height: 36px;
  }
}

@media(max-width: 767px){
  h2{
    font-size: 32px;
    line-height: 36px;
  }
  h3{
    font-size: 28px;
    line-height: 32px;
  }
}
