html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
  background: #f6f7fb;
}

/* Hide everything under body tag */
body.show-spinner > * {
  opacity: 0;
}

/* Spinner */
body.show-spinner::before {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.rounded .card {
  border-radius: 0.75rem;
}

.rounded .card.auth-card {
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
}

.ch-100 {
  min-height: 100vh;
}

@media (max-width: 767px) {
  .ch-100 {
    min-height: calc(100vh - 70px);
  }

  .g-recaptcha {
    transform: scale(0.77);
    transform-origin: 0 0;
  }
}

.card-header.home {
  background: #5ebf80;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.rodape {
  background: #4b6980;
  color: #fff !important;
}

.htRT {
  border-top: 1px solid #ffffff24 !important;
}

.btn-primary {
  background-color: #5ebf80 !important;
  border-radius: 8px !important;
  border: 1px solid #5fd967 !important;
  font-size: 15px !important;
}

.btn-primary:hover {
  background-color: #5fd967 !important;
  border-color: #5fd967 !important;
}

.logo-single {
  width: 120px !important;
  height: 56px !important;
}

.navbar {
  font-size: 16px;
}

.imgPost {
  padding-top: 100%;
  width: 100%;
  background: #fcfcfc;
}

.imgPost img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center; 
  border: 1px solid #ccc;
}
