.TriumfButton {
  position: relative;
  display: inline-flex;
  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);
  font-size: 13px;
}
@media only screen and (max-width: 900px) {
  .TriumfButton {
    padding: 8px 16px;
  }
}
.TriumfButton:hover:not(:disabled):not(.loading) {
  background: linear-gradient(135deg, #509cb3, #1daed3);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(43, 128, 143, 0.15);
}
.TriumfButton:active:not(:disabled):not(.loading) {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(87, 134, 179, 0.1);
}
.TriumfButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #6c90da;
  box-shadow: none;
}
.TriumfButton.loading {
  cursor: wait;
}
.TriumfButton.loading .textContent {
  opacity: 0.7;
}

.TriumfButtonMobile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(174, 55, 146, 0.878), #00d3db);
  width: 90px;
  height: 35px;
  font-size: 13px;
  border-radius: 5px;
}
@media only screen and (max-width: 520px) {
  .TriumfButtonMobile {
    width: 45px;
    height: 26px;
  }
}

.loader {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-block;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border-top: 3px solid transparent;
  animation: spin 0.8s linear infinite;
  width: 16px;
  height: 16px;
}
@media only screen and (max-width: 900px) {
  .loader {
    width: 12px;
    height: 12px;
    right: 8px;
  }
}

.loader_spinner_tooth_right {
  position: absolute;
  top: 2px;
  right: 2px;
  animation: spin 1s linear infinite;
  width: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
}
.loader_spinner_tooth_right svg {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 900px) {
  .loader_spinner_tooth_right {
    width: 12px;
    height: 12px;
  }
}

.loader_spinner_right {
  position: absolute;
  top: 2px;
  right: 2px;
  display: inline-block;
  margin-left: 8px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  border-top: 3px solid transparent;
  animation: spin 1s linear infinite;
  width: 12px;
  height: 12px;
}
@media only screen and (max-width: 900px) {
  .loader_spinner_right {
    width: 10px;
    height: 10px;
  }
}

.loader_overlay {
  display: inline-block;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border-top: 3px solid transparent;
  animation: spin 0.8s linear infinite;
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 900px) {
  .loader_overlay {
    width: 16px;
    height: 16px;
  }
}

.loader_hidden {
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border-top: 3px solid transparent;
  animation: spin 0.8s linear infinite;
  width: 16px;
  height: 16px;
}
@media only screen and (max-width: 900px) {
  .loader_hidden {
    width: 12px;
    height: 12px;
  }
}

.overlayContainer {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.loaderWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.overlayLoader {
  margin-left: 0;
  height: 20px;
  width: 20px;
}
@media only screen and (max-width: 900px) {
  .overlayLoader {
    height: 16px;
    width: 16px;
  }
}

.textContent {
  transition: opacity 0.3s ease;
}

.muted {
  opacity: 0.5;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin-tooth {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}