.success-form-popup .info-check__item.display-none {
  display: none;
}
.success-form-popup {
  border-radius: 30px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.5s all;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 488px;
}

.success-form-popup.active {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.5s all;
}

.success-form-popup .check {
  /* width: 100px;
    height: 100px; */
  margin-top: 25px;
  /* margin-bottom: 25px */
}
.success-form-popup .check img {
  border-radius: 30px;
}

.success-form-popup .check svg {
  width: 100%;
  height: 100%;
}

.success-form-popup .check svg path {
  fill: #369cd6;
}

.success-form-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.success-form-popup__close svg {
  transform: rotate(45deg);
}
.success-form-popup .logo {
  color: #369cd6;
  font-size: 36px;
  font-weight: 700;
}
.success-form-popup .title {
  font-size: 36px;
  color: #369cd6;
}

.success-form-popup .text {
  font-size: 18px;
  margin-bottom: 25px;
  margin-top: 20px;
}

.success-form-popup__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
}

.success-form-popup__bg.active {
  opacity: 1;
  pointer-events: all;
  transition: 0.5s all;
  z-index: 2;
}

.success-form-popup .info-check__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 18px;
  color: #369cd6;
  width: 100%;
}

.success-form-popup .info-check {
  width: 100%;
}
.success-form-popup .info-check__item .label {
  margin-right: 10px;
}

.success-form-popup .info-check__item .value {
  color: #000;
  border: 1px solid #e8eaeb;
  border-radius: 5px;
  width: 100%;
  padding: 2px 7px;
  text-align: left;
  height: 48px;
  display: flex;
  align-items: center;
}
.success-form-popup .info-check__item.phone .value {
  position: relative;
  padding: 2px 7px;
}

.success-form-popup .info-check__item:nth-last-child(1) {
  margin-bottom: 0;
}

footer{
	font-size: 13px;
    color: #a2a1a1;
}

.footer-container a {
  color: #5fc7ff;

}


@media screen and (max-width: 700px) {
  .success-form-popup {
    width: 90%;
    padding: 25px 15px;
  }
}

footer {
  margin-top: 80px;
}

.footer-container {
  min-height: 75px;
  border-top: 1px solid #eaecf0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}

.footer-container a {
  position: relative;
  font-weight: bold;
}

.footer-container a::before {
  position: absolute;
  transition: all 0.3s ease;
  content: "";
  height: 2px;
  width: 0;
  left: 0;
  bottom: -1px;
  background-color: var(--blue-color);
}

.footer-container a:hover::before {
  width: 100%;
}

@media (max-width: 400px) {
  .footer-container {
    flex-direction: column;
    justify-content: unset;
    gap: 10px;
    padding-top: 15px;
  }
}

@media (max-width: 330px) {
  .footer-container {
    padding: 10px 20px;
    align-items: start;
  }
}
