.hosting-hero-promo-container {
  display: block;
  position: absolute;
  right: 0;
  width: 38%;
  top: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.hosting-hero-promo-container.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .hosting-hero-promo-container {
    position: relative;
    width: 100%;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: none;
  }
}

.hosting-hero-promo-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .hosting-hero-promo-banner {
    padding: 0;
  }
}
.hosting-hero-promo-banner *,
.hosting-hero-promo-banner *::before,
.hosting-hero-promo-banner *::after {
  box-sizing: border-box;
}
.hosting-hero-promo-banner__image {
  width: 100%;
  max-width: 357px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 357/239;
  margin-bottom: -30px;
  margin-top: -30px;
}
.hosting-hero-promo-banner__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  width: 100%;
  color: var(--ui-white, #fff);
  margin: 0;
}
.hosting-hero-promo-banner__title-highlight {
  color: var(--ui-orange, #f05243);
}
.hosting-hero-promo-banner__code-container {
  background: rgba(240, 82, 67, 0.25);
  border-radius: 6.25rem;
  border: 0.0625rem solid #f05243;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  overflow: hidden;
  min-height: 60px;
}
@media screen and (max-width: 768px) {
  .hosting-hero-promo-banner__code-container {
    justify-content: space-between;
  }
}
.hosting-hero-promo-banner__code-label {
  color: var(--ui-white, #ffffff);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 6.25rem;
  padding: 0.5rem 0.75rem 0.5rem 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .hosting-hero-promo-banner__code-label {
    padding: 0.5rem;
    flex: 1;
    text-align: center;
  }
}
.hosting-hero-promo-banner__code-button {
  background: #f05243;
  border-radius: 6.25rem;
  display: flex;
  flex-direction: row;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  color: var(--ui-white, #fff);
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  min-height: 60px;
}
.hosting-hero-promo-banner__code-button:hover {
  background: rgb(238.1157635468, 60.2684729064, 43.3842364532);
}
.hosting-hero-promo-banner__code-button:active {
  transform: scale(0.98);
}
.hosting-hero-promo-banner__code-button.copied {
  background: #28a745;
}
.hosting-hero-promo-banner__code-button.copied:hover {
  background: rgb(35.0724637681, 146.4275362319, 60.5);
}
.hosting-hero-promo-banner__code-button-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  overflow: visible;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}
.hosting-hero-promo-banner__code-button-icon.copied-animation {
  animation: copySuccess 0.4s ease;
}

@keyframes copySuccess {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}/*# sourceMappingURL=header-promo.css.map */