.loading {
  position: relative;
  overflow: visible;
  pointer-events: none;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  opacity: 0.5;
}

.loading::after {
  content: "";
  position: absolute;
  top: 100px;
  left: 50%;
  z-index: 20;
  display: block;
  width: 32px;
  height: 32px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("/local/templates/en-grasser/custom/loading.svg");
  animation: loadingRotate 1s linear infinite;
}

@keyframes loadingRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.loading .card-blog {
  animation: opacity 3s linear infinite;
}
@keyframes opacity {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
.grid__more{
  margin: 36px 0 30px;
}
.d-none{
  display: none!important;
}
.d-block{
  display: block;
}
.d-flex{
  display: flex;
}

.is-loading{
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  position: relative;
  opacity: 0.5;
}
.is-loading:before{
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation:spin 0.5s linear infinite;
  animation:spin 0.5s linear infinite;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3ccircle cx='10' cy='10' r='7' stroke='%23F0F3F5' stroke-width='2'/%3e%3cpath d='M10 17C13.866 17 17 13.866 17 10' stroke='%234A545E' stroke-width='2' stroke-linecap='round'/%3e%3c/svg%3e") center/20px 20px no-repeat;
}

@keyframes spin {
  from {
    transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
  }
}

.input__field.is-error~label{
  display: none !important;
}

.text-orange{
  color: #ff3900 !important;
}

.main .container .section b{
  font-weight: 600;
}

.swiper-slide-video{
  height: auto;
}

.text_page .section__heading{
  padding-bottom: 30px
}
.text_page p{
  padding-bottom: 10px
}
.text_page h3{
  padding-bottom: 20px
}
.text_page img, .image-big-fix img{
    width: revert-layer;
    height: revert-layer;
    max-width: 100%;
     max-height: 30vh;
}


.fancybox__container {
  z-index: 10050;
}