/* line 1231, ../sass/_helper.scss */
.sppining {
    position: relative;
  }
  
  /* line 1234, ../sass/_helper.scss */
  .loader-wrap {
    background: transparent;
    border-radius: 100px;
    font-style: normal;
    text-align: center;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 27px;
    padding: 20px 90px;
    border: 0;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 57px;
  }
  @media (max-width: 768px) {
    /* line 1234, ../sass/_helper.scss */
    .loader-wrap {
      height: 40px;
      padding: 20px 0;
    }
  }
  
  /* line 1256, ../sass/_helper.scss */
  .loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #3498db;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    position: absolute;
    left: 48%;
    top: 30%;
  }
  @media (max-width: 768px) {
    /* line 1256, ../sass/_helper.scss */
    .loader {
      left: 30%;
    }
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }




  /* HTML: <div class="loader"></div> */
.main-loader {
    width: 50px;
    --b: 8px; 
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 1px;
    background: conic-gradient(#0000 10%,#f03355) content-box;
    -webkit-mask:
      repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),
      radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
            mask-composite: intersect;
    animation:l4 1s infinite steps(10);
  }
  @keyframes l4 {to{transform: rotate(1turn)}}


  .row.card-wrp.tour-list-rander {
    position: relative;
}

  /* HTML: <div class="loader"></div> */
  .loading-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .loading {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid #ddd;
    border-top-color: orange;
    animation: loading 1s linear infinite;
  }
  @keyframes loading {
    to {
      transform: rotate(360deg);
    }
  }

  .theme-hotels {
    padding-bottom: 80px;
}

.theme-hotels-book{
  margin-bottom: 55px;
}
  