/*.lux-loader-container {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.search-loader {
  z-index: 9999;
}

.lux-clouds {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lux-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  opacity: 0.6;
  animation: lux-float 20s infinite linear;
}

.lux-cloud:before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
}

.lux-cloud:after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
}

.lux-cloud1 {
  width: 100px;
  height: 40px;
  top: 20%;
  left: -100px;
  animation-duration: 25s;
}

.lux-cloud1:before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 10px;
}

.lux-cloud1:after {
  width: 60px;
  height: 40px;
  top: -15px;
  right: 10px;
}

.lux-cloud2 {
  width: 80px;
  height: 30px;
  top: 40%;
  left: -80px;
  animation-duration: 30s;
  animation-delay: -10s;
}

.lux-cloud2:before {
  width: 40px;
  height: 40px;
  top: -20px;
  left: 15px;
}

.lux-cloud2:after {
  width: 50px;
  height: 30px;
  top: -10px;
  right: 15px;
}

.lux-cloud3 {
  width: 120px;
  height: 50px;
  top: 70%;
  left: -120px;
  animation-duration: 35s;
  animation-delay: -20s;
}

.lux-cloud3:before {
  width: 60px;
  height: 60px;
  top: -30px;
  left: 20px;
}

.lux-cloud3:after {
  width: 70px;
  height: 50px;
  top: -20px;
  right: 20px;
}

.lux-cloud4 {
  width: 90px;
  height: 35px;
  top: 10%;
  left: -90px;
  animation-duration: 28s;
  animation-delay: -5s;
}

.lux-cloud4:before {
  width: 45px;
  height: 45px;
  top: -22px;
  left: 12px;
}

.lux-cloud4:after {
  width: 55px;
  height: 35px;
  top: -12px;
  right: 12px;
}

.lux-cloud5 {
  width: 110px;
  height: 45px;
  top: 60%;
  left: -110px;
  animation-duration: 40s;
  animation-delay: -15s;
}

.lux-cloud5:before {
  width: 55px;
  height: 55px;
  top: -27px;
  left: 18px;
}

.lux-cloud5:after {
  width: 65px;
  height: 45px;
  top: -17px;
  right: 18px;
}

.lux-cloud6 {
  width: 75px;
  height: 30px;
  top: 85%;
  left: -75px;
  animation-duration: 32s;
  animation-delay: -8s;
}

.lux-cloud6:before {
  width: 37px;
  height: 37px;
  top: -18px;
  left: 10px;
}

.lux-cloud6:after {
  width: 47px;
  height: 30px;
  top: -8px;
  right: 10px;
}

.lux-cloud7 {
  width: 95px;
  height: 38px;
  top: 30%;
  left: -95px;
  animation-duration: 26s;
  animation-delay: -12s;
}

.lux-cloud7:before {
  width: 47px;
  height: 47px;
  top: -23px;
  left: 14px;
}

.lux-cloud7:after {
  width: 57px;
  height: 38px;
  top: -13px;
  right: 14px;
}

.lux-cloud8 {
  width: 85px;
  height: 32px;
  top: 50%;
  left: -85px;
  animation-duration: 38s;
  animation-delay: -18s;
}

.lux-cloud8:before {
  width: 42px;
  height: 42px;
  top: -20px;
  left: 11px;
}

.lux-cloud8:after {
  width: 52px;
  height: 32px;
  top: -10px;
  right: 11px;
}

@keyframes lux-float {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(calc(100vw + 100px));
  }
}

.lux-airplane-container {
  position: relative;
}

.lux-airplane {
  width: 400px;
  position: relative;
  animation: lux-fly 2s ease-in-out infinite alternate;
}

.lux-airplane img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes lux-fly {
  0% {
    transform: translateY(0px) rotate(-2deg);
  }
  100% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.lux-progress-container {
  width: 90%;
  max-width: 400px;
  margin: 2rem 0;
  position: relative;
}

.lux-progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lux-progress-fill {
  height: 100%;
  background: var(--tg-theme-primary);
  border-radius: 10px;
  transition: width 0.1s ease;
  box-shadow: 0 2px 8px var(--tg-theme-primary);
}

.lux-percentage {
  text-align: center;
  margin-top: 1rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lux-loading-text {
  text-align: center;
  color: white;
  font-size: 1.5rem;
  margin-top: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lux-search-info {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-top: 2rem;
  line-height: 1.5;
}

.lux-dots {
  display: inline-block;
  animation: lux-typing 1.5s infinite;
}

@keyframes lux-typing {
  0%,
  20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80%,
  100% {
    content: "...";
  }
}

@media (max-width: 768px) {
  .lux-airplane {
    width: 250px;
  }

  .lux-percentage {
    font-size: 2rem;
  }

  .lux-loading-text {
    font-size: 1.2rem;
  }

  .lux-search-info {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .lux-progress-container {
    width: 95%;
  }
}

@media (max-width: 480px) {
  .lux-airplane {
    width: 250px;
  }

  .lux-percentage {
    font-size: 1.8rem;
  }

  .lux-loading-text {
    font-size: 1rem;
  }

  .lux-search-info {
    font-size: 0.8rem;
  }
}

.lux-fade-out {
  animation: lux-fadeOut 0.5s ease-out forwards;
}

@keyframes lux-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}*/
.load-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.load-background-clouds {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  display: flex;
}

.load-bg-cloud {
  position: relative;
  opacity: 0.8;
  animation: load-move-bg-cloud 20s linear infinite;
}

.load-bg-cloud1 {
  top: 0;
  width: 150px;
  animation-delay: 0s;
}

.load-bg-cloud2 {
  top: 0;
  width: 170px;
  animation-delay: -10s;
}

.load-bg-cloud3 {
  top: 0;
  width: 120px;
  animation-delay: -20s;
}

.load-bg-cloud4 {
  top: 0;
  width: 130px;
  animation-delay: -30s;
}

@keyframes load-move-bg-cloud {
  0% {
    left: 100%;
  }
  100% {
    left: -300px;
  }
}

.load-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  position: relative;
  z-index: 100;
}

.load-logo-container {
  display: flex;
  align-items: center;
}

.load-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--tg-theme-primary);
  letter-spacing: 0.5px;
}

.load-cancel-btn {
  background-color: var(--tg-theme-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 3px 12px var(--tg-theme-primary);
}

.load-cancel-btn:hover {
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 5px 18px var(--tg-theme-primary);
  opacity: 0.8;
}

.load-main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 145px);
  padding: 20px;
  position: relative;
  z-index: 10;
}

.load-counter-section {
  text-align: center;
}

.load-counter {
  font-size: 8rem;
  font-weight: 200;
  color: var(--tg-theme-primary);
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -6px;
  text-shadow: 0 2px 4px rgba(139, 44, 122, 0.1);
  line-height: 0.9;
}

.load-airplane-section {
  margin-bottom: 55px;
  position: relative;
  margin-top: -45px;
}

.load-airplane {
  width: 360px;
  height: auto;
  animation: load-float-plane 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

@keyframes load-float-plane {
  0%,
  100% {
    transform: translateY(0px) rotate(-1deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.load-progress-section {
  margin-bottom: 60px;
  width: 100%;
  max-width: 600px;
}

.load-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.load-progress-point {
  font-size: 22px;
  font-weight: 500;
  color: var(--tg-theme-primary);
  z-index: 2;
  padding: 0 8px;
}

.load-progress-line {
  flex: 1;
  height: 6px;
  background-color: #e8e8e8;
  margin: 0 25px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.load-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #66bb6a);
  width: 32%;
  border-radius: 3px;
  position: relative;
  transition: width 2s ease-out;
}

.load-progress-fill::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #4caf50;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.load-text-section {
  text-align: center;
}

.load-main-title {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: -1px;
}

.load-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
  line-height: 1.5;
}

.load-benefits-section {
  display: flex;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
}

.load-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.load-benefit-icon {
  margin-bottom: 20px;
}

.load-benefit-img {
  width: 40px;
  height: 40px;
  opacity: 0.6;
  filter: grayscale(20%);
}

.load-benefit-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.load-benefit-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.load-benefit-subtitle {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

.bottom-card-items-results.loader-card i {
  color: var(--tg-theme-primary);
  background: #deb46829;
}

@media (max-width: 768px) {
  .load-header {
    padding: 20px 25px;
  }

  .load-counter {
    font-size: 7rem;
  }

  .load-airplane {
    width: 275px;
  }

  .load-main-title {
    font-size: 2.2rem;
  }

  .load-benefits-section {
    gap: 50px;
  }

  .load-bg-cloud {
    width: 100px !important;
  }
}

@media (max-width: 500px) {
  .load-logo img {
    width: 150px;
  }
  .load-cancel-btn {
    padding: 6px 15px;
  }
  .load-airplane-section {
    margin-top: -10px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .load-counter {
    font-size: 5rem;
  }

  .load-airplane {
    width: 250px;
  }

  .load-main-title {
    font-size: 1.8rem;
  }

  .load-benefits-section {
    flex-direction: column;
    gap: 40px;
  }

  .load-progress-bar {
    margin: 0 15px;
  }

  .load-logo {
    font-size: 14px;
  }
}
