/* Image style */
#scrollUp {
    background-image: url("../img/search.png");
    bottom: 20px;
    right: 20px;
    width: 38px;    /* Width of image */
    height: 38px;   /* Height of image */
}

.preloader {
    position: relative;
    margin: 0px auto;
    display: inline-block;
  }
  .preloader:not([class*="pl-"]) {
    width: 40px;
  }
  .preloader:before {
    content: '';
    display: block;
    padding-top: 100%;
  }
  .preloader.pl-xs {
    width: 20px;
  }
  .preloader.pl-sm {
    width: 30px;
  }
  .preloader.pl-lg {
    width: 50px;
  }
  .preloader.pl-xl {
    width: 80px;
  }
  .preloader.pl-xxl {
    width: 100px;
  }
  .preloader:not([class*="pls-"]) .plc-path {
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  }
  .preloader[class*="pls-"] .plc-path {
    animation: dash 1.5s ease-in-out infinite;
  }
  .plc-path {
    stroke: var(--main-color) !important;
  }
  .pl-circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .plc-path {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke-width: 2;
    stroke-miterlimit: 10;
    fill: none;
  }
  @keyframes rotate {
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes dash {
    0% {
      stroke-dasharray: 1,200;
      stroke-dashoffset: 0;
    }
    50% {
      stroke-dasharray: 89,200;
      stroke-dashoffset: -35px;
    }
    100% {
      stroke-dasharray: 89,200;
      stroke-dashoffset: -124px;
    }
  }
