#preloader_basket {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f0543e;
    opacity: 1;
    transition: opacity 2s;
    z-index: 5030;
  }
  .preloader_img_basket img {
    transform: rotate(0deg);
    animation: rotateClockwise infinite linear 2s;
  }
  @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%;
    }

  }
  @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: 120px;
        }

    }

  }
  @media only screen and (min-width: 1280px) {

    .preloader_img_basket {
        width: 125px;
    }

  }
