#shortcode-modal {
  display: none; /* Escondido por padrão */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro semi-transparente */
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  flex-direction: column; /* Alinha os itens verticalmente */
  overflow: hidden;
}
#qlwapp .qlwapp-container {
  display: none;
}
#modal_preview_fatura {
  background-color: white; /* Fundo branco */
  border-radius: 8px;
  padding: 20px;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  position: absolute;
  top: 50%; /* Move o topo do elemento para 50% do contêiner */
  left: 50%; /* Move a esquerda do elemento para 50% do contêiner */
  transform: translate(-50%, -50%);
  overflow: hidden;
}
#preview_fatura img {
  max-height: 45vh;
  object-fit: contain;
}
#button_success {
  right: 10px;
  cursor: pointer;
}
#button_close {
  right: 10px;
  cursor: pointer;

  color: #000;
}

/* Estilos para mobile */
@media (max-width: 768px) {
  #shortcode-modal {
    height: unset;
  }

  #modal_preview_fatura {
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    border-radius: 8px 8px 0 0; /* Bordas arredondadas apenas no topo */
    position: relative;
    left: unset; /* Move a esquerda do elemento para 50% do contêiner */
    margin-top: 10vh;
    transform: unset;
  }
  #preview_fatura {
    max-height: 40vh;
    min-height: 30vh;
  }

  #preview_fatura img {
    height: 100%;
    object-fit: contain;
  }
}

.input-fatura-label {
  width: 28.75rem;
  border-radius: 8px;
  border: 1px dashed #858585;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  font-family: "Poppins", sans-serif;
  width: inherit;
  font-size: 1rem !important;
}

.input-fatura-label-selected {
  border-radius: 8px;
  border: 1px dashed #858585;
}

.input-fatura-left-container {
  display: flex;
  align-items: center;
}

.input-fatura-texts {
  padding-left: 1rem;
}

.add-button {
  border: none;
  padding: 0.25rem;
  background: #ff5246;
  border-radius: 1.5rem;
  align-items: center;
  justify-content: center;
  display: flex;
}

.add-button:hover {
  background: #e23532;
}

.add-button:focus {
  background: #e23532;
}

.close-button {
  rotate: 45deg;
}

.file-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #ff5246;
}

.file-input-title {
  color: #181818;
  margin: 0;
  padding: 0;
  line-height: 24px;
}

.file-input-helper-text {
  color: #858585;
  margin: 0;
  font-size: 0.75rem;
  line-height: 16px;
}

.elementor-element-07fda70 {
  margin: 0;
}
.btn-desabilitado {
  cursor: not-allowed !important;
  opacity: 0.6;
  border-radius: 24px !important;
  border: 2px dashed #858585 !important;
  color: #858585 !important;
  font-feature-settings: "dlig" on;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 24px !important;
  background-color: transparent !important;
}

#alert-error {
  display: none;
}

#button_success.disabled img {
  filter: grayscale(100%);
}

#button_success.disabled {
  cursor: not-allowed;
}
