#preloader_basket {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #004882;
  opacity: 1;
  transition: opacity 2s;
  z-index: 6020;
}
.preloader_img_basket {
  position: relative;
}
.preloader_img_basket img.rotate_animation {
  transform: rotate(0deg);
  animation: rotateClockwise infinite linear 1.5s;
}
@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media only screen and (min-width: 200px) {
  .preloader_img_basket {
    width: 95px;
  }
  .preloader_img_basket img {
    width: 100%;
  }
  .static_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (min-width: 600px) {
  .preloader_img_basket {
    width: 115px;
  }
}
@media only screen and (min-width: 760px) {
  .preloader_img_basket {
    width: 150px;
  }
}
@media only screen and (min-width: 912px) {
  .preloader_img_basket {
    width: 180px;
  }
}
@media only screen and (min-width: 1024px) {
  @media only screen and (height: 600px) {
    .preloader_img_basket {
      width: 90px;
    }
  }
}
@media only screen and (min-width: 1280px) {
  .preloader_img_basket {
    width: 95px;
  }
}
