.c-popup {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
}
.c-popup__wrapper {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  box-shadow: 0 42px 74px 0 rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 590px;
  padding: 60px 30px 45px;
  text-align: center;
}
@media (max-width: 1199px) {
  .c-popup__wrapper {
    padding: 16px 20px 36px;
    max-width: 472px;
  }
}
@media (max-width: 767px) {
  .c-popup__wrapper {
    max-width: 350px;
  }
}
.c-popup__image-container {
  text-align: center;
}
.c-popup__title {
  color: #000000;
  font-size: 40px;
  line-height: 1.13;
  font-weight: 300;
}
.c-popup__title:after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #000000;
  margin: 10px auto 20px;
  display: block;
}
@media (max-width: 1199px) {
  .c-popup__title:after {
    margin: 10px auto 16px;
  }
}
@media (max-width: 1199px) {
  .c-popup__title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .c-popup__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .c-popup__title {
    font-size: 26px;
  }
}
.c-popup__info-title {
  margin: 0;
  line-height: 1.79;
  font-size: 16px;
  color: #000000;
  margin-top: 20px;
}
.c-popup__info-title:first-letter {
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .c-popup__info-title {
    font-size: 14px !important;
  }
}
.c-popup__info-title span {
  font-weight: bold;
}
.c-popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .c-popup__close {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 767px) {
  .c-popup__close {
    top: 10px;
    right: 10px;
  }
}
.c-popup__close-icon {
  width: 20px;
  height: 20px;
  background-image: url("../../../images/icons/close-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1199px) {
  .c-popup__close-icon {
    width: 16px;
    height: 16px;
  }
}
.c-popup__button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .c-popup__button-container {
    flex-direction: column;
  }
}
.c-popup__button {
  min-width: calc(50% - 20px) !important;
}
@media (max-width: 991px) {
  .c-popup__button {
    width: 100%;
  }
}