.common-popup {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 72.5rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: 0.3s;
}
.common-popup__overlay.is-active .common-popup {
  transform: scale(1);
}
.common-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 10, 10, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.common-popup__overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.common-popup__close {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 1.5rem;
  height: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020a0a;
  transition: 0.3s;
}
.common-popup__close:hover {
  color: #c8102e;
}
.common-popup__close .icon-close {
  font-size: 1.5rem;
}
.common-popup__header {
  border-bottom: 0.063rem solid #d3d4d5;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 1rem;
}
.common-popup__header .common-popup__close {
  position: static;
}
.common-popup__title {
  margin-bottom: 0;
}
body.common-popup-active {
  overflow: hidden;
}

@media (min-width: 992px) {
  .common-popup {
    padding: 2.5rem;
  }
}
