.modal-optin-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 9999;
}

.modal {
  background-color: rgba(48, 48, 48, 0.69) !important;
  backdrop-filter: blur(10px) !important;
}

.modal .modal-content {
  padding: 40px 32px 40px 32px !important;
  border-radius: 24px !important;
  background-color: #fff !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.modal .modal-content .modal-body {
  padding: 0px !important;
}

.modal .modal-content .modal-header {
  gap: 20px !important;
  padding: 0px !important;
  border-bottom: 0px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
}

.modal .modal-content  p {
  font-size: 1rem;
  line-height: 24px;
  font-family: Latam-Sans-Regular, sans-serif;
  font-weight: 400;
  color: #5C5C5C;
  margin-bottom: 0px;
}

.modal .modal-content  p  a{
  font-size: 1rem;
  line-height: 24px;
  font-family: Latam-Sans-Bold, sans-serif;
  font-weight: 700;
  color: #4658DF;
}

.modal .modal-content  .modal-title {
  font-size: 24px !important;
  line-height: 28px !important;
  font-family: Latam-Sans-Bold, sans-serif !important;
  font-weight: 700 !important;
  color: #0F004F !important;
}

.modal .modal-content .modal-body form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal .modal-content .modal-body .input-container  {
  width: 100%;
  border: 1px solid #858585;
  border-radius: 8px;
  padding: 16px 16px 16px 18px;
  display: flex;
  flex-direction: row;
}

.modal .modal-content .modal-body div input[type="text"] {
  flex: 1;
  outline: none;
  font-size: 1rem;
  color: #5C5C5C;
  line-height: 24px;
  font-weight: 400;
  border: none;
  font-family: Latam-Sans-Regular, sans-serif;
}

.modal .modal-content .modal-body input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border-radius: 8px !important;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #858585;
  cursor: pointer;
}

.modal .modal-content .modal-body input[type="checkbox"]:checked {
  background-color: #2D34CE;
  position: relative;
}

.modal .modal-content .modal-body input[type="checkbox"]:checked::after {
  content: url("./../images/check.svg");
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.modal .modal-content .modal-body button {
  width: 100%;
  outline: none;
  border: none;
  padding: 0 10px;
  height: 48px;
  background-color: #E8114B;
  border-radius: 8px;
  color: #fff;
  font-size: 0.875rem;
  font-family: Latam-Sans-Bold, sans-serif;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
}

.modal .modal-content .modal-body div > span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: Latam-Sans-Regular, sans-serif;
  color: #303030;
  margin-left: 8px;
}

.modal .modal-content .modal-body div > span a {
  color: #E8114B;
  text-underline-offset: 2px;
}

/* status */
.modal .modal-content .modal-body .status  {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.modal .modal-content .modal-body .status  img {
  width: 100px;
  height: 100px;
  align-self: center;
  margin-bottom: 24px;
}

.modal .modal-content .modal-body .status button {
  margin-top: 40px;
}


/* LOADING */

.body_loading {
  display: flex;
}



.c-loader {
  animation: is-rotating 1s infinite;
  border: 6px solid #e5e5e5;
  border-radius: 50%;
  border-top-color: #1e1750;
  height: 32px;
  width: 32px;
  margin: auto;
}

@keyframes is-rotating {
  to {
    transform: rotate(2turn);
  }
}

.label-digite-seu-cpf {
  line-height: 30px;
  font-size: 14px;
  color: #303030;
  font-family: Latam-Sans-Bold, Arial, Helvetica, sans-serif;
}

.input-error {
  border: 1px solid #B30F3B !important;
}

.error {
 color: #B30F3B !important;
}

.input-error-message {
  font-size: 12px;
  line-height: 18px;
  font-family: Latam-Sans-Regular, sans-serif;
  font-weight: 400;
  color: #B30F3B;
  margin-top: 8px;
}

.btn-modal {
  outline: none;
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
}

/* ICONS */
.icon {
  width: 88px;
  height: 88px;
}

.icon-sm {
  width: 24px;
  height: 24px;
}

/* close */
.close {
 content: url("../images/icons/close.svg");
}

/* successful-process */
.successful-process {
 content: url("../images/icons/successful-process.svg");
}

/* alert */
.alert {
  content: url("../images/icons/alert.svg");
}

/* empty-state-tower */
.empty-state-tower {
  content: url("../images/icons/empty-state-tower.svg");
}

/* error-pax-man */
.error-pax-man {
  content: url("../images/icons/error-pax-man.svg");
}

/* error-search */
.error-search {
  content: url("../images/icons/error-search.svg");
}

/* latam-pass */
.latam-pass {
  content: url("../images/icons/latam-pass.svg");
}

/* recaptcha-error */
.recaptcha-error {
  content: url("../images/icons/recaptcha-error.svg");
}

/* time-out */
.time-out {
  content: url("../images/icons/time-out.svg");
}

.info {
  content: url("../images/icons/info.svg");
}
