/*
 * Created by Vira Pardazesh
 */
.popupHomePage {
  position: fixed;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  justify-content: center;
  background: #fff;
  z-index: 150;
  max-height: 750px;
  padding: 24px;
  border-radius: 16px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.popupHomePage.active {
  display: flex;
  top: 50%;
  opacity: 1;
}
@media only screen and (min-width: 0px) and (max-width: 959px) {
  .popupHomePage {
    width: 300px;
  }
}
@media only screen and (min-width: 960px) {
  .popupHomePage.small {
    width: 350px;
  }
  .popupHomePage.medium {
    width: 500px;
  }
  .popupHomePage.large {
    width: 650px;
  }
}
.popupHomePage .closeIconPopup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 36px;
}
.popupHomePage .closeIconPopup i {
  color: #fff;
  font-size: 18px;
}
.popupHomePage .imagePopup {
  max-width: 250px;
}
.popupHomePage .imagePopup img {
  width: 100%;
}
.popupHomePage .contentPopup {
  margin-top: 35px;
  color: #000;
  display: flex;
  align-items: center;
  flex-direction: column;
}
/*# sourceMappingURL=popup.css.map */