.a-modal {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 3rem;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
}

.a-modal.active {
  opacity: 1;
  visibility: visible;
}

.a-modal__content {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 3rem;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 6px #0000000A;
  width: 100%;
}

.a-modal__header {
  position: relative;
  padding: 0 6rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.a-modal__title {
  font-size: 2.6rem;
  line-height: 3.8rem;
  color: var(--dark);
}

.a-modal__close {
  position: relative;
  z-index: 5;
  width: 45px;
  height: 45px;
  padding: 1rem;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  outline: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
}

.a-modal__close:hover {
  background-color: #E8E8E8;
}

.a-modal__body {
  padding: 3rem 0;
}

.a-modal__footer {
  padding: 3rem 0;
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: var(--dark);
}
