.cloverit-popup {
  display: none;
  padding: 0!important;
  background: transparent!important;
  max-width: 100%;
}
.cloverit-popup_inner {
  position: relative;
  border-radius: 16px;
  max-width: 100%;
  width: 900px;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}
.cloverit-popup_close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: #FFFFFF;
  border-radius: 50%;
  border: none;
  outline: none !important;
  cursor: pointer;
}
.cloverit-popup_close--icon {
  width: 10px;
  height: 10px;
  position: relative;
}
.cloverit-popup_close--icon:before, .cloverit-popup_close--icon:after {
  content: "";
  height: 1px;
  width: 14px;
  background: #424242;
  position: absolute;
  top: 50%;
  left: 50%;
}
.cloverit-popup_close--icon:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.cloverit-popup_close--icon:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cloverit-popup_picture {
  width: 650px;
  height: 100%;
  background: #C0C0C0;
}
.cloverit-popup_picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cloverit-popup_info {
  background: #FFFFFF;
  padding: 25px;
  width: 250px;
  flex-shrink: 0;
}
.cloverit-popup_info--title {
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #374151;
}
.cloverit-popup_timer {
  margin-top: 20px;
}
.cloverit-popup_timer--title {
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #565F6C;
}
.cloverit-popup_timer-items {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cloverit-popup_timer-item {
  background: #374151;
  border-radius: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cloverit-popup_timer-item--sep {
  color: #374151;
  margin: 0 10px;
  font-size: 25px;
}
.cloverit-popup_form-wrap {
  margin-top: 25px;
}
.cloverit-popup_form-field {
  display: block;
  position: relative !important;
  font-size: 13px !important;
}
.cloverit-popup_form-field + .field {
  margin-top: 10px;
}
.cloverit-popup_form-field.error input {
  border: 1px solid red !important;
}
.btn.cloverit-popup_form--submit {
  margin-top: 15px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 2px 6px 15px rgba(0, 0, 0, 0.4);
  border: none !important;
}
.btn.cloverit-popup_form--submit-text {
  font-size: 14px;
  color: #fff;
}



.cloverit-popup .c-row {
  display: flex;
  flex-wrap: wrap;
}
.field input[type="text"],
.field input[type="password"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"] {
  border: 1px solid #B3B3B3;
  outline: none !important;
  border-radius: 16px;
  height: 2.625em;
  padding: 0 1.5em;
  width: 100%;
  font-size: 1em;
  line-height: 1.19;
  color: #B3B3B3;
  background: transparent;
  transition: 0.3s;
}
.field--label-text {
  position: absolute;
  color: #B3B3B3;
  top: 50%;
  left: 2em;
  right: 2em;
  transform: translateY(-50%);
  transition: all 0.5s, width ease-in 0.5s;
  font-size: 1em;
  padding: 5px;
  width: auto;
  background: #fff;
}
.btn.cloverit-popup_form--submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  text-decoration: none;
  height: 38px;
  cursor: pointer;
  outline: 0;
  transition: 0.3s;
  text-align: center;
  line-height: 36px;
  padding: 0 20px;
  color: #fff;
  background: #004394;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.01em;
  width: 100%;
}
.popup-form .fancybox__content {
  background: #FFFFFF;
  box-shadow: 0px 1px 30px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  max-width: 100%;
}
@media (max-width: 575.98px) {
  .cloverit-popup {
    width: 100%;
  }
  .cloverit-popup_inner {
    flex-direction: column;
    width: 100%;
    height: auto;
    background: transparent;
  }
  .cloverit-popup_picture {
    width: 100%;
    height: 190px;
  }
  .cloverit-popup_info {
    padding: 15px;
    background: #004394;
    width: 100%;
  }
  .cloverit-popup_info--title {
    color: #fff;
  }
  .cloverit-popup_timer {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cloverit-popup_timer--title {
    color: #fff;
    margin-right: 10px;
  }
  .cloverit-popup_timer-items {
    margin-top: 0;
    justify-content: unset;
  }
  .cloverit-popup_timer-item {
    background: #fff;
    color: #004394;
    width: 47px;
    height: 40px;
  }
  .cloverit-popup_timer-item--sep {
    color: #fff;
  }
  .cloverit-popup_form-wrap {
    margin-top: 20px;
  }
  .cloverit-popup_form-field input {
    background: #fff !important;
  }
  .cloverit-popup_form-field input::-moz-placeholder {
    color: #004394;
  }
  .cloverit-popup_form-field input:-ms-input-placeholder {
    color: #004394;
  }
  .cloverit-popup_form-field input::placeholder {
    color: #004394;
  }
  .btn.cloverit-popup_form--submit {
    margin-top: 10px;
    background: #fff;
  }
  .btn.cloverit-popup_form--submit-text {
    font-size: 16px;
    color: #004394;
  }
  .cloverit-popup_form-field {
    width: 100%;
  }
}
.fancybox__content.cloverit-popup > .carousel__button.is-close {
  top: 0;
}
.btn-marketing-popup-trigger {
  position: fixed;
  width: auto;
  max-width: 100%;
  height: 50px;
  bottom: 0;
  left: 0;
  z-index: 9;
}