.modal-container {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal_fgts {
  max-width: 480px;
}

.baixarFgts-modal {
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  width: calc(100% - 16px);
  text-align: center;
  max-width: 428px;
}

.baixarFgts-modal h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.baixarFgts-modal span b {
  color: var(--primary-500);
}

.download-button {
  width: 100%;
  margin: 16px 0 23px 0;
  display: flex;
  justify-content: space-evenly;
  align-content: center;
}

.baixarFgts-modal > .button {
  background: transparent !important;
  color: var(--primary-500);
  position: relative;
  display: block;
  width: fit-content;
  min-width: 190px;
  margin: auto;
  margin-top: 16px;
}

.baixarFgts-modal > .button::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--primary-500);
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
}

.close-modal:hover {
  background-color: var(--secondary-500);
}

.close-modal {
  border-radius: 60px;
  right: 0px;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 12px;
  cursor: pointer;
}

.close-modal > i {
  transition: all 0.5s;
  background-color: transparent;
  color: var(--primary-500) !important;
  padding: 6px 8px;
}

#loading-simulador {
  cursor: wait;
  background: rgba(0, 0, 0, 0.8);
}

.loading-text {
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

.loading-card {
  width: 50px;
  height: 50px;
  position: relative;
}

.loading-card.delay {
}
.loading-card.delay::after {
  animation-delay: -500ms;
}
.loading-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 5px solid white;
  border-top-color: var(--primary-500);
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
