/*-----------------------------------------------------------------------------*/
/*                                  Globais                                    */
/*-----------------------------------------------------------------------------*/
@font-face {
  font-family: "montesserrat";
  src: url("../font/Montserrat-Regular.ttf");
}
#toast {
  border-radius: 8px;
}
#toast .toast {
  border-radius: 8px;
  border: none !important;
  box-shadow: none !important;
  background-color: #414141;
}
#toast .toast-container {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  display: grid;
  align-items: center;
  justify-content: center;
}
#toast .toast-container .d-flex {
  border-radius: 8px;
  background-color: #414141;
  color: white;
  border: none;
  box-shadow: none;
}

html,
body {
  height: 100%;
}

body {
  font-family: "montesserrat";
  background-color: white;
  margin: 0;
  letter-spacing: 0.5px;
  font-size: 13px;
  overflow-y: auto;
  position: relative;
  display: grid;
  align-items: center;
}
body::after {
  content: "";
  height: 50%;
  width: 100%;
  background-color: var(--cor_principal);
  position: fixed;
  bottom: 0;
  z-index: -1;
}

/*-----------------------------------------------------------------------------*/
/*                                  Scroll                                     */
/*-----------------------------------------------------------------------------*/
::-webkit-scrollbar-track {
  background-color: var(--cor_principal);
}

::-webkit-scrollbar {
  width: 7px;
  height: 10px;
  background: var(--cor_principal);
}

::-webkit-scrollbar-thumb {
  background: #788592;
}

.formulario {
  margin: 0px auto 0;
  width: 100%;
}
.formulario .form {
  border-radius: 8px;
  border: 1px solid rgba(98, 98, 98, 0.5);
  position: relative;
  height: 40px;
  margin: 0 auto 20px;
  display: grid;
  align-items: center;
}
.formulario .form .divLabel {
  color: #626262;
  background-color: #f2f2f2;
  position: absolute;
  top: -12px;
  left: 15px;
  font-size: 12px;
  padding: 2px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.formulario .form .divLabel label {
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
}
.formulario .form .divInput {
  padding: 0 10px;
  font-size: 14px;
  z-index: 999;
}
.formulario .form .divInput input,
.formulario .form .divInput textarea,
.formulario .form .divInput select {
  width: 100%;
  box-shadow: none;
  border: none;
  color: #626262;
  resize: none;
  background-color: transparent;
}
.formulario .form .divInput input::placeholder,
.formulario .form .divInput textarea::placeholder,
.formulario .form .divInput select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.formulario .form .divInput input:focus,
.formulario .form .divInput textarea:focus,
.formulario .form .divInput select:focus {
  outline: none;
  background: transparent;
  border: none;
}
.formulario .form .divInput input::-webkit-scrollbar-track,
.formulario .form .divInput textarea::-webkit-scrollbar-track,
.formulario .form .divInput select::-webkit-scrollbar-track {
  width: 0;
  height: 0;
}
.formulario .form .divInput input::-webkit-scrollbar,
.formulario .form .divInput textarea::-webkit-scrollbar,
.formulario .form .divInput select::-webkit-scrollbar {
  width: 3px;
  height: 1px;
}
.formulario .form .divInput input::-webkit-scrollbar-thumb,
.formulario .form .divInput textarea::-webkit-scrollbar-thumb,
.formulario .form .divInput select::-webkit-scrollbar-thumb {
  width: 3px;
  height: 1px;
}
.formulario .form .divInput input:disabled,
.formulario .form .divInput textarea:disabled,
.formulario .form .divInput select:disabled {
  cursor: not-allowed !important;
}
.formulario .form .divInputCartao {
  display: flex;
  align-items: center;
  justify-items: center;
}
.formulario .form .divInputCartao .bandeira {
  width: 50px;
  height: 25px;
  position: relative;
  display: grid;
  align-items: center;
}
.formulario .form .divInputCartao .bandeira img {
  max-height: 100%;
  max-width: 100%;
}
.formulario .form .disabled {
  cursor: not-allowed;
}
.formulario .formSelecionado {
  border: 1px solid black;
}
.formulario .formSelecionado .divLabel {
  color: black;
}
.formulario .linhaFlex {
  display: flex;
  align-items: center;
  justify-items: center;
}

/*-----------------------------------------------------------------------------*/
/*                                  Load                                       */
/*-----------------------------------------------------------------------------*/
#load {
  background-color: rgba(191, 191, 191, 0.5);
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 9999;
  display: grid;
  align-items: center;
  justify-content: center;
}
#load .lds-dual-ring {
  position: relative;
  width: 80px;
  height: 80px;
}
#load .lds-dual-ring .logo {
  position: absolute;
  left: 40px;
  top: 40px;
}
#load .lds-dual-ring:after {
  content: " ";
  display: block;
  width: 100px;
  height: 100px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: var(--cor_principal) transparent var(--cor_principal) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#carregaDados {
  background-color: rgba(150, 150, 150, 0.9411764706);
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  display: grid;
  align-items: center;
  justify-content: center;
}
#carregaDados .logo img {
  width: 70px;
  animation: pulse 0.7s infinite;
  margin: 0 auto;
  animation-direction: alternate;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

#pageInicial .header {
  height: 100%;
  min-height: 100px;
  max-height: 120px;
  display: grid;
  align-items: center;
  justify-content: center;
}
#pageInicial .header img {
  max-height: 70px;
  max-width: 160px;
}
#pageInicial .conteudo {
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  border-radius: 15px;
  background-color: #f2f2f2;
  width: 90%;
  max-width: 400px;
  min-width: 250px;
  margin: 0 auto 0;
  box-shadow: inset -1px -1px 0 rgba(0, 0, 0, 0.05), inset 1px 1px 0 rgba(0, 0, 0, 0.05);
  padding: 30px;
}
#pageInicial .conteudo #imgPessoa {
  width: 70px;
  height: 70px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  border-radius: 100%;
  margin: 0 auto;
  border: 2px solid rgba(65, 65, 65, 0.6);
}
#pageInicial .conteudo .default {
  filter: invert(0.75);
}
#pageInicial .conteudo #nomePessoa {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 15px;
}
#pageInicial .conteudo #telefonePessoa {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 3px;
}
#pageInicial .conteudo .info {
  text-align: center;
  font-size: 13px;
  margin: 20px auto 10px;
}
#pageInicial .conteudo #obsLink {
  font-size: 11px;
  margin: 10px auto;
}
#pageInicial .conteudo #valorLink {
  font-size: 16px;
  color: var(--cor_principal);
  font-weight: bold;
}
#pageInicial .conteudo .destaque {
  margin: 15px auto 15px;
}
#pageInicial .conteudo .destaque div {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--cor_principal);
  letter-spacing: 2px;
}
#pageInicial .conteudo .destaque .id {
  font-weight: normal;
  margin-top: 5px;
  font-size: 12px;
  color: #414141;
}
#pageInicial .conteudo .botao {
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  background-color: #414141;
  display: grid;
  align-items: center;
  height: 40px;
  cursor: pointer;
  user-select: none;
  color: white;
  border-radius: 10px;
  width: 100%;
}
#pageInicial .rodape {
  display: grid;
  align-items: center;
  align-content: center;
  font-size: 10px;
  width: 90%;
  max-width: 500px;
  min-width: 250px;
  margin: 0px auto 0;
  padding: 20px;
}
#pageInicial .rodape .logoUP {
  text-align: center;
}
#pageInicial .rodape .logoUP img {
  height: 35px;
  filter: var(--filter);
}
#pageInicial .rodape .descricaoUP {
  margin: 10px 0 5px;
  font-family: "montesserrat";
  color: var(--cor_escrita);
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
}
#pageInicial .rodape .redes {
  display: flex;
  align-items: center;
  justify-content: center;
}
#pageInicial .rodape .redes .botao {
  margin: 0 5px;
  cursor: pointer;
}
#pageInicial .rodape .redes .botao img {
  width: 24px;
  filter: var(--filter);
}
#pageInicial .bolinhas {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  width: 100%;
  max-width: 400px;
  min-width: 250px;
}
#pageInicial .bolinhas .bolinha {
  background-color: rgba(65, 65, 65, 0.5);
  height: 8px;
  width: 8px;
  border-radius: 100%;
  margin-left: 3px;
}
#pageInicial .bolinhas .bolinhaAtiva {
  height: 9px;
  width: 9px;
  background-color: #414141;
}

#pagePagar {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
#pagePagar iframe {
  width: 100%;
  height: 100%;
}