.modal-black {
  display: none;
}
.modal-black.show {
  display: block;
}
.modal-black.show:before {
  content: "";
  background: #000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 9999;
}
.modal-black.show .modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  max-width: 928px;
  width: 100%;
  height: 371px;
  border: 1px solid #D9D9D9;
  border-radius: 22px;
  z-index: 99999;
  opacity: 1;
}
.modal-black.show .modal__content {
  position: relative;
}
.modal-black.show .modal-close {
  position: absolute;
  top: 27px;
  left: 22px;
  z-index: 10;
}
.modal-black.show .popup-icon {
  position: absolute;
  width: 100%;
  height: auto;
  top: 218px;
}
.modal-black.show .popup-text-block {
  max-width: 421px;
  position: absolute;
  right: 27.5%;
  top: 47px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #2C3537;
  text-transform: uppercase;
  text-align: center;
  z-index: 10;
}
.modal-black.show .circle-icon {
  width: 60px;
  height: 60px;
  position: relative;
  margin-bottom: 14px;
}
.modal-black.show .circle-icon .point {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-black.show .circle-icon.opened .point svg {
  width: 60px;
  display: block;
  margin: 0 auto 0;
}
.modal-black.show .circle-icon.opened .point .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  stroke: #47c86b;
}
.modal-black.show .circle-icon.opened .point .path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dash-check 3s 0.35s ease-in-out forwards;
  animation: dash-check 3s 0.35s ease-in-out forwards;
}
.modal-black.show .circle-icon.opened .point .path.circle {
  -webkit-animation: dash 3s ease-in-out;
  animation: dash 3s ease-in-out;
}
.modal-black.show .popup-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 100.875%;
  margin-bottom: 2px;
}
.modal-black.show .popup-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 100.875%;
  margin-bottom: 12px;
}
.modal-black.show .popup-text {
  color: #7E888A;
  font-size: 16px;
  font-weight: 400;
  line-height: 100.875%;
}
.modal-black.show .popup-img {
  position: absolute;
  left: 0;
  top: 218px;
  width: 100%;
  height: 152px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: top;
  z-index: 1;
}
html[lang="en-US"] .modal-black.show .popup-text-block {
  text-transform: none;
}
@media (max-width: 768px) {
  .modal-black.show .modal {
    max-width: 389px;
    height: 537px;
  }
  .modal-black.show .popup-text-block {
    max-width: 279px;
    right: 14.5%;
    top: 57px;
  }
  .modal-black.show .popup-img {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 537px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: top;
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
/*# sourceMappingURL=popup.css.map */