@charset "UTF-8";
.ButtonRequestButton {
  display: flex;
  gap: 10px;
  justify-content: space-evenly;
  height: 40px;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  padding-inline: 15px;
  text-decoration: none;
  /* Десктоп (>1024px) */
}
@media only screen and (min-width: 1025px) {
  .ButtonRequestButton {
    width: 215px;
    padding: 8px 16px;
    font-size: 16px;
  }
}
.ButtonRequestButton {
  /* Планшеты (768px–1024px) */
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ButtonRequestButton {
    width: 183px;
    height: 35px;
    font-size: 14px;
  }
}
.ButtonRequestButton {
  /* Мобильные (<768px) */
}
@media only screen and (max-width: 767px) {
  .ButtonRequestButton {
    width: 190px;
    height: 35px;
    padding: 0px 8px;
    font-size: 14px;
  }
}

.ButtonRequestDesktopOnly {
  display: inline-flex;
}
@media only screen and (max-width: 619px) {
  .ButtonRequestDesktopOnly {
    display: none;
  }
}

.ButtonRequestMobileOnly {
  display: none;
}
@media only screen and (max-width: 619px) {
  .ButtonRequestMobileOnly {
    display: inline-flex;
  }
}

.ButtonRequestControl {
  display: inline-flex;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  appearance: none;
  cursor: pointer;
}

.ButtonRequestControl:focus-visible {
  outline: none;
}

.ButtonRequestControl:focus-visible .ButtonRequestButton,
.ButtonRequestControl:focus-visible .ButtonRequestTrigger,
.ButtonRequestControl:focus-visible .TriumfButton {
  box-shadow: 0 0 0 3px rgba(41, 112, 145, 0.35);
}

.ButtonPosition {
  position: fixed !important;
  right: 2px;
  margin-top: 30px;
}
@media only screen and (max-width: 500px) {
  .ButtonPosition {
    display: none;
  }
}

.ButtonRequestFallback {
  min-width: 280px;
  min-height: 240px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(10, 40, 70, 0.08);
  font-size: 16px;
  color: #4a5568;
  text-align: center;
}

.ButtonRequestFallbackSpinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(0, 211, 219, 0.2);
  border-top-color: #00d3db;
  animation: spin 0.9s linear infinite;
}

.ButtonRequestModalFallbackOverlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 24px);
  z-index: 2000;
  background: rgba(6, 32, 36, 0.45);
  backdrop-filter: blur(6px);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.ButtonRequestTrigger {
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  background: linear-gradient(135deg, #297091, #560843);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  min-height: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.ButtonRequestTrigger:hover {
  background: linear-gradient(135deg, #509cb3, #1daed3);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(43, 128, 143, 0.15);
}
.ButtonRequestTrigger:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(87, 134, 179, 0.1);
}