.email-popup {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: auto;
  box-shadow: #1a1a1a 0 4px 16px;
  border-radius: 16px;
}
.email-popup:focus {
  outline: none;
}
@media (max-width: 576px) {
  .email-popup {
    bottom: 16px;
    right: 16px;
    width: calc(100% - 32px);
    max-width: 100%;
  }
}
.email-popup__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  overflow: hidden;
  width: 480px;
  height: auto;
  padding: 32px;
  border-radius: 16px;
  background: #ECF8FC;
  box-shadow: 0 0 30px 0 rgba(0, 49, 69, 0.04);
  max-height: min(100vh - 48px, 640px);
  max-height: min(100dvh - 48px, 640px);
}
@media (max-width: 576px) {
  .email-popup__container {
    gap: 0;
    width: min(100%, 420px);
    padding: 16px 14px 14px;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    max-width: calc(100vw - 32px);
  }
}
@media (min-width: 577px) and (max-width: 1281px) {
  .email-popup__container {
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    height: auto;
    width: 450px;
  }
}
.email-popup__scroll {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.email-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: #333;
  z-index: 10;
  transition: all 0.2s ease;
}
.email-popup__close:hover {
  background: #fff;
  transform: scale(1.1);
}
.email-popup__close span {
  display: block;
  line-height: 1;
}
@media (max-width: 576px) {
  .email-popup__close {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
}
.email-popup__step {
  display: none;
}
.email-popup__step.active {
  display: block;
}
.email-popup__step--1 .email-popup__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.25rem;
}
@media (max-width: 576px) {
  .email-popup__step--1 .email-popup__image {
    height: 130px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 1281px) {
  .email-popup__step--1 .email-popup__image {
    height: auto;
    margin-bottom: 1rem;
  }
}
.email-popup__step--1 .email-popup__image img {
  width: auto;
  height: 100%;
  object-fit: fill;
}
@media (max-width: 1281px) {
  .email-popup__step--1 .email-popup__image img {
    height: auto;
    width: auto;
  }
}
.email-popup__step--1 .email-popup__content {
  padding: 0;
}
@media (max-width: 576px) {
  .email-popup__step--1 .email-popup__content {
    padding: 0;
  }
}
.email-popup__step--1 .email-popup__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #1a1a1a;
}
@media (max-width: 1281px) {
  .email-popup__step--1 .email-popup__title {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .email-popup__step--1 .email-popup__title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.email-popup__step--1 .email-popup__subtitle {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 18px;
  color: #333;
}
@media (max-width: 576px) {
  .email-popup__step--1 .email-popup__subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.email-popup__step--1 .email-popup__subtitle strong {
  color: #0066cc;
  font-weight: 600;
}
.email-popup__step--1 .email-popup__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}
@media (max-width: 576px) {
  .email-popup__step--1 .email-popup__benefits {
    margin-bottom: 20px;
  }
}
.email-popup__step--1 .email-popup__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}
@media (max-width: 1281px) {
  .email-popup__step--1 .email-popup__benefits li {
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .email-popup__step--1 .email-popup__benefits li {
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
}
.email-popup__step--1 .email-popup__benefits li:last-child {
  margin-bottom: 0;
}
.email-popup__step--1 .email-popup__benefits li .icon-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: #0066cc;
}
.email-popup__step--1 .email-popup__cta {
  width: 100%;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.email-popup__step--1 .email-popup__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}
@media (max-width: 576px) {
  .email-popup__step--1 .email-popup__cta {
    padding: 12px 18px;
    font-size: 15px;
  }
}
.email-popup__step--2 .email-popup__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1a1a1a;
}
@media (max-width: 576px) {
  .email-popup__step--2 .email-popup__title {
    font-size: 22px;
    margin-bottom: 18px;
  }
}
.email-popup__step--2 .form-group {
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .email-popup__step--2 .form-group {
    margin-bottom: 14px;
  }
}
.email-popup__step--2 .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.email-popup__step--2 .form-group .form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  transition: all 0.2s ease;
}
@media (max-width: 576px) {
  .email-popup__step--2 .form-group .form-control {
    padding: 10px 14px;
  }
}
.email-popup__step--2 .form-group .form-control:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.email-popup__step--2 .form-group .form-check_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.email-popup__step--2 .form-group .form-check_wrapper .form-check-input {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.email-popup__step--2 .form-group .form-check_wrapper .form-check-label {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  cursor: pointer;
  font-weight: 400;
  margin: 0;
}
.email-popup__step--2 .email-popup__error {
  background-color: #fee;
  border: 1px solid #fcc;
  color: #c33;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 16px;
}
.email-popup__step--2 .email-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 576px) {
  .email-popup__step--2 .email-popup__actions {
    gap: 10px;
  }
}
.email-popup__step--2 .email-popup__submit {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #0096ff 0%, #0066cc 100%);
  color: #fff;
  box-shadow: 0 12px 20px rgba(0, 102, 204, 0.3);
  text-align: center;
}
@media (max-width: 576px) {
  .email-popup__step--2 .email-popup__submit {
    padding: 14px 20px;
    font-size: 15px;
  }
}
.email-popup__step--2 .email-popup__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-popup__step--2 .email-popup__submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}
.email-popup__step--2 .email-popup__submit svg {
  width: 20px;
  height: 20px;
}
.email-popup__step--2 .email-popup__note {
  text-align: center;
  font-size: 13px;
  color: #5f6c7b;
  line-height: 1.4;
}
.email-popup__step--2 .email-popup__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: none;
  color: #0b4c6a;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}
.email-popup__step--2 .email-popup__back-btn svg {
  width: 20px;
  height: 20px;
}
.email-popup__step--2 .email-popup__back-btn:hover {
  color: #00324b;
}
.email-popup__step--3 .email-popup__content {
  padding: 40px 32px;
  text-align: center;
}
@media (max-width: 576px) {
  .email-popup__step--3 .email-popup__content {
    padding: 36px 8px 24px;
  }
}
.email-popup__step--3 .email-popup__content--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.email-popup__step--3 .email-popup__success-icon {
  margin-bottom: 24px;
  color: #10b981;
}
.email-popup__step--3 .email-popup__success-icon svg {
  width: 60px;
  height: 60px;
}
.email-popup__step--3 .email-popup__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}
@media (max-width: 576px) {
  .email-popup__step--3 .email-popup__title {
    font-size: 24px;
  }
}
.email-popup__step--3 .email-popup__message {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  max-width: 400px;
}

.email-popup.email-popup--night {
  box-shadow: rgba(0, 0, 0, 0.45) 0 12px 28px;
}
.email-popup.email-popup--night .email-popup__container {
  background: linear-gradient(160deg, #0c1c2b 0%, #132f45 55%, #1f3d58 100%);
  box-shadow: 0 0 30px 0 rgba(3, 12, 19, 0.5);
}
.email-popup.email-popup--night .email-popup__close {
  background: rgba(255, 255, 255, 0.18);
  color: #f1f7fd;
}
.email-popup.email-popup--night .email-popup__close:hover {
  background: rgba(255, 255, 255, 0.26);
}
.email-popup.email-popup--night .email-popup__step--1 .email-popup__image img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.email-popup.email-popup--night .email-popup__step--1 .email-popup__title {
  color: #f1f7fd;
}
.email-popup.email-popup--night .email-popup__step--1 .email-popup__subtitle,
.email-popup.email-popup--night .email-popup__step--1 .email-popup__benefits li {
  color: #d7e6f5;
}
.email-popup.email-popup--night .email-popup__step--1 .email-popup__benefits li .icon-check {
  color: #81d0ff;
}
.email-popup.email-popup--night .email-popup__step--1 .email-popup__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(90deg, #49b7ff 0%, #2585c7 100%);
  color: #071d2e;
  font-weight: 700;
}
.email-popup.email-popup--night .email-popup__step--1 .email-popup__cta:hover {
  color: #04131e;
  box-shadow: 0 8px 20px rgba(51, 158, 224, 0.35);
}

.email-popup.email-popup--den-otevrenych-dveri .email-popup__step--1 .email-popup__image {
  height: auto;
}
.email-popup.email-popup--den-otevrenych-dveri .email-popup__step--1 .email-popup__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.email-popup.email-popup--red .email-popup__container {
  background: #FCEFF2;
  box-shadow: 0 0 30px 0 rgba(73, 7, 21, 0.08);
}
.email-popup.email-popup--red .email-popup__step--1 .email-popup__image {
  height: auto;
  display: flex;
  justify-content: center;
}
.email-popup.email-popup--red .email-popup__step--1 .email-popup__image svg,
.email-popup.email-popup--red .email-popup__step--1 .email-popup__image img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}
@media (max-width: 576px) {
  .email-popup.email-popup--red .email-popup__step--1 .email-popup__image svg,
  .email-popup.email-popup--red .email-popup__step--1 .email-popup__image img {
    max-width: 140px;
  }
}
.email-popup.email-popup--red .email-popup__title {
  color: #490715;
}
.email-popup.email-popup--red .email-popup__subtitle strong,
.email-popup.email-popup--red .email-popup__benefits li strong {
  color: #B71234;
}
.email-popup.email-popup--red .email-popup__benefits li .icon-check {
  color: #B71234;
}
.email-popup.email-popup--red .email-popup__form .form-control:focus {
  border-color: #B71234;
  box-shadow: 0 0 0 3px rgba(183, 18, 52, 0.12);
}
.email-popup.email-popup--red .email-popup__step--1 .btn,
.email-popup.email-popup--red .email-popup__form button[type=submit],
.email-popup.email-popup--red .email-popup__submit {
  background: linear-gradient(90deg, #D4264A 0%, #B71234 100%);
  border-color: #B71234;
  color: #fff;
  box-shadow: 0 12px 20px rgba(183, 18, 52, 0.3);
}
.email-popup.email-popup--red .email-popup__step--1 .btn:hover, .email-popup.email-popup--red .email-popup__step--1 .btn:focus,
.email-popup.email-popup--red .email-popup__form button[type=submit]:hover,
.email-popup.email-popup--red .email-popup__form button[type=submit]:focus,
.email-popup.email-popup--red .email-popup__submit:hover,
.email-popup.email-popup--red .email-popup__submit:focus {
  background: linear-gradient(90deg, #B71234 0%, #8E0E28 100%);
  color: #fff;
}
.email-popup.email-popup--red .email-popup__back-btn {
  color: #8E0E28;
}
.email-popup.email-popup--red .email-popup__back-btn:hover {
  color: #490715;
}

/*# sourceMappingURL=email-popup.css.map */
