/* Resizes */
/* Colors */
.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  z-index: 999;
}
@media (max-width: 767px) {
  .popup {
    padding: 0;
  }
}
.popup::before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}
.popup__content.popup-search {
  justify-content: flex-start;
  margin-top: 90px;
  position: fixed;
  left: 0;
}
@media (max-width: 1352px) {
  .popup__content.popup-search {
    margin-top: calc(54px + 36 * (100vw - 360px) / 992);
  }
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 60px 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  position: relative;
}
@media (max-width: 767px) {
  .popup__body {
    padding: 40px 15px 20px 15px;
    overflow: auto;
  }
}
.popup__close {
  width: 30px;
  height: 30px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 30px;
  right: 30px;
  cursor: pointer;
  z-index: 30;
  transition: all 0.5s ease 0s;
}
@media (max-width: 767px) {
  .popup__close {
    top: 15px;
    right: 15px;
  }
}

.popup-custom__title {
  color: #171717;
  font-size: 24px;
  line-height: normal;
  text-align: center;
}
.popup-custom__text {
  margin: 16px 0 0 0;
  text-align: center;
  font-size: 16px;
  line-height: normal;
  color: #171717;
}
.popup-custom__items {
  margin: 24px auto 0 auto;
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .popup-custom__items {
    flex-direction: column;
  }
}
.popup-custom__item {
  width: 33.3333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .popup-custom__item {
    width: 100%;
  }
}
.popup-custom__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
}
.popup-custom__image img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
}
.popup-custom__title {
  text-align: center;
  color: #171717;
  font-size: 32px;
  line-height: normal;
}
.popup-custom__label {
  margin: 16px 0 0 0;
  text-align: center;
  color: #171717;
  font-size: 24px;
  line-height: normal;
}
.popup-custom__link {    
  text-decoration: none !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  width: 100%;
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding: 9px 34px;
  margin: 16px 0 0 0;
  border-radius: 100px;
  background-image: linear-gradient(45deg, #016888 0%, #f5c265 50%, #016888 100%);
  background-position: 100% 0;
  background-size: 200% 200%;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 6px 12px 0 rgba(0, 40, 120, 0.35);
  transition: all 0.5s ease 0s;
}
.popup-custom__link:hover {
  box-shadow: 0 0 0 0 transparent;
  background-position: 0 0;
}/*# sourceMappingURL=popup.css.map */