button,
a {
  cursor: pointer;
}
.footer-section {
  padding: 20px 0;
}
.footer-section .links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .footer-section .links {
    flex-direction: row;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 59px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(1, 9, 32, 0.6);
  flex-direction: column;
}
.modal-content {
  background: #fff;
  box-shadow: 0px 16px 48px rgba(24, 28, 50, 0.176);
  border-radius: 5px;
  width: 280px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
  animation: popup linear 0.7s;
}
@media screen and (min-width: 380px) {
  .modal-content {
    width: 360px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.modal-content-close {
  border: none;
  width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0);
}
.close {
  width: 14px;
  height: 14px;
  display: block;
  margin: 0 auto;
  background-image: url("../images/close.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.modal-content-wrapper-close {
  display: flex;
  justify-content: end;
}
.modal-text {
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  color: #010920;
  margin-bottom: 8px;
  text-align: center;
}
@media screen and (min-width: 744px) {
  .modal-text {
    font-size: 18px;
    line-height: 22px;
  }
}
.progress-bar-wrapper {
  border: 1px solid #dedede;
  border-radius: 4px;
  height: 20px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 380px) {
  .progress-bar-wrapper {
    width: 100%;
  }
}
.progress-bar {
  background: #81bc06;
  height: 100%;
  position: relative;
  width: 50%;
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40% 40%;
  }
}
.progress-bar span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-gradient(
    linear,
    0 0,
    100% 100%,
    color-stop(0.25, rgba(60, 161, 113, 0.7)),
    color-stop(0.25, transparent),
    color-stop(0.5, transparent),
    color-stop(0.5, rgba(60, 161, 113, 0.7)),
    color-stop(0.75, rgba(60, 161, 113, 0.7)),
    color-stop(1, transparent)
  );
  background-size: 40px 40px;
  animation: move 2s linear infinite;
}
.modal-form-wrapper {
  margin-top: 40px;
  margin-bottom: 24px;
}
.modal-form-wrapper-content {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 380px) {
  .modal-form-wrapper-content {
    padding-right: 0;
    padding-left: 0;
  }
}
.modal-form-wrapper-content-text {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  color: #010920;
  margin-bottom: 8px;
}
@media screen and (min-width: 744px) {
  .modal-form-wrapper-content-text {
    font-size: 16px;
    line-height: 22px;
  }
}
.modal-form-wrapper-content-title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  color: #010920;
  margin-bottom: 24px;
}
@media screen and (min-width: 744px) {
  .modal-form-wrapper-content-title {
    font-size: 24px;
    line-height: 33px;
  }
}
@media screen and (min-width: 744px) {
  .modal-content {
    width: 622px;
    padding-top: 20px;
    padding-bottom: 40px;
    padding-right: 40px;
    padding-left: 40px;
    align-items: center;
    justify-content: center;
  }
  .modal {
    display: none;
    flex-direction: column;
  }
}
@media screen and (min-width: 1440px) {
  .modal {
    padding-top: 0;
    align-items: center;
    justify-content: center;
  }
  .modal-content {
    width: 586px;
    padding-top: 25px;
    padding-bottom: 40px;
    padding-right: 40px;
    padding-left: 40px;
    align-items: center;
    justify-content: center;
  }
}
@keyframes popup {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
.chain {
  color: #9d80f0;
}
