/********** Template CSS **********/
:root {
  --primary: #009CFF;
  --light: #F3F6F9;
  --dark: #191c24;
  --padrao: #550059;
}

.bg-padrao {
  background-color: var(--padrao);
  color: #dcdcdc;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

#container-principal {
  margin-bottom: 120px !important;
}

.comment-post {
  width: inherit;
}

.row .posts {
  display: flex;
  flex-wrap: nowrap !important;
  align-items: flex-start;
  align-content: flex-start;
}

.h-83 {
  min-height: 83px !important;
}

.w-50px {
  width: 50px;
}

.col-perfil {
  padding: 10px;
  position: absolute;
}

.col-comment {
  padding: 7px 10px;
  position: inherit;
}

.col-post {
  overflow: hidden;
  padding: 0px 0px 0px 0px;
}

.dpd-left {
  left: -150px !important;
}


.trash-post {
  position: absolute;
  right: 30px;
  background: #fff0;
  border: #fff0;
}

.trash-post:hover {
  background: #fff0;
  border: #fff0;
  border-color: transparent;
  outline: none;
}

.commentary {
  max-width: 100%;
}

.commentary:hover {
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.1);
}

.trash-comment {
  position: absolute;
  right: 35px;
}

.accordion-body {
  background: #fff;
}

.time-post {
  position: absolute;
  right: 60px;
  font-size: 10px;
  opacity: 0.8;
}

.time-comment {
  position: absolute;
  right: 60px;
  font-size: 10px;
  opacity: 0.3;
}

.btn .text-coment {
  color: #6c757d !important;
  margin-left: 1rem !important;
}

.btn .text-coment:hover {
  color: #f1f3f5 !important;
}


.post {
  background: #ffffff08;
  text-align-last: center;
}

.perfil-post {
  width: 35px !important;
  height: 35px !important;
  padding: 2px;
  background: aliceblue;

}


.img-conteudo-post {
  max-width: -webkit-fill-available;
  max-height: 70vh;
  border-radius: 10px;
  box-shadow: inset 0 0 11px rgba(0, 0, 0, 0.1);
}

.perfil {
  width: 40px !important;
  height: 40px !important;
}

button {
  outline: none !important;
  border: none !important;
}

button:hover {
  outline: none !important;
  border: none !important;
}

button:focus {
  outline: none !important;
  border: none !important;
}

button::after {
  outline: none !important;
  border: none !important;
}

.start-post,
.comment-post {
  background: #e8e8e89c;
  border: none !important;
  color: #3e3e3e;
}

.start-post:hover,
.comment-post:hover {
  background: #e8e8e89c;
  border: none !important;
  color: #222222;
  border-color: #5b5b5b;
  box-shadow: inset 0 0 11px rgba(0, 0, 0, 0.1);
}

.post-text {
  text-align-last: auto;
}

.start-post:focus,
.comment-post:focus {
  background: #ffffff1f;
  border: none !important;
  color: #343a40;
  outline: none;
  border-color: transparent;
  box-shadow: inset 0 0 11px rgba(0, 0, 0, 0.1);
}

.start-post:active,
.comment-post:active {
  background: #e8e8e89c;
  border: none !important;
  color: #3e3e3e;
  box-shadow: inset 0 0 11px rgba(0, 0, 0, 0.1);
}


.perfil-comment {
  width: 35px !important;
  height: 35px !important;
  padding: 2px;
  background: aliceblue;
}

.perfil-comment-img {
  width: 25px !important;
  height: 25px !important;
  padding: 1px;
  background: darkmagenta;
}



/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  transition: .5s;
}

.btn.btn-primary {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}


/*** Layout ***/
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 250px;
  height: 100%;
  overflow-y: auto;
  transition: 0.5s;
  z-index: 999;
}

.content {
  margin-left: 250px;
  min-height: 100vh;
  background: #FFFFFF;
  transition: 0.5s;
}


@media (min-width: 992px) {
  .sidebar {
    margin-left: 0;
    box-shadow: 10px 0px 5px -5px rgb(0 0 0 / 43%);
  }

  .sidebar.open {
    margin-left: -250px;
  }

  .content {
    width: calc(100% - 250px);
  }

  .content.open {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 991.98px) {
  .sidebar {
    margin-left: -250px;

  }

  .sidebar.open {
    margin-left: 0;
  }

  .content {
    width: 100%;
    margin-left: 0;
  }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
  padding: 7px 20px;
  color: var(--dark);
  font-weight: 500;
  border-radius: 0 30px 30px 0;
  outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
  color: #fff;
  background: #5e015e;
  border-color: #fff;
}

.sidebar .navbar .navbar-nav .nav-link i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
  background: #2e003b;
}

.sidebar .navbar .dropdown-toggle::after {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
  padding-left: 25px;
  border-radius: 0 30px 30px 0;
}

.content .navbar .navbar-nav .nav-link {
  margin-left: 25px;
  padding: 12px 0;
  color: var(--dark);
  outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3e003f;
  border-radius: 40px;
}

.content .navbar .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
  .content .navbar .navbar-nav .nav-link {
    margin-left: 15px;
  }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
  top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
  border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
  font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  padding: 10px;
  border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
  border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
  width: 0px;
  transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 5px solid var(--primary);
  border-radius: 15px;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--dark);
  border-color: var(--primary);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&display=swap');

.imgTopNone {
  position: absolute;
  z-index: 1;
  object-fit: cover;
}

.imgTopNone:hover {
  display: block;
  filter: grayscale(0.7);
}

.tmn-tumbnail-recarga {
  min-height: 12rem;
  max-height: 12rem;
  min-width: 18rem;
  max-width: 18rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.imgTopNone {
  min-height: 12rem;
  max-height: 12rem;
  min-width: 18rem;
  max-width: 18rem;
}

.lapisEditar {
  font-size: 15px;
  margin-top: 2px;
  position: absolute;
  margin-left: 10px;
  color: darkgray;
  cursor: pointer;
}

.lapisEditar:hover {
  color: darkgreen;
}

#valorRecargaCard {
  transition: opacity 0.3s ease;
}

/* Adicione algum estilo de sua escolha para o elemento inicial */
.tmn-tumbnail-recarga {
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Quando o mouse passar por cima, aumente o elemento e esconda o texto */
.imgTopNone:hover {
  color: transparent;
  /* Torna o texto transparente */
}

/* Quando o mouse passar por cima, aumente o elemento e esconda o texto */
.tmn-tumbnail-recarga:hover {
  color: transparent;
  opacity: 0;
  /* Torna o texto transparente */
}

.imgCard {
  height: 56px;
  width: 56px;
  object-fit: cover;
}

.iconCard {
  color: #fff;
}

.cardPend {
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 770px) {
  #bodyRecargasPendentes {
    justify-content: center !important;
  }

  .cardPend {
    width: 100% !important;
  }
}

.btnFiltros {
  cursor: pointer;
  box-shadow: inset 0 -0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.btnFiltros:hover {
  box-shadow: inset 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}


@media screen and (max-width: 414px) {}

@media screen and (min-width: 415px) {}

#listarRecargasTodas {
  max-height: 84vh;
  contain: content;
}

.divBodyTable {
  max-height: 78vh;
  overflow-y: auto;
}

.statusRec {
  min-width: 125px;
}

.btnShowRegras {
  display: flex;
  justify-content: flex-end;
  position: sticky;
  z-index: 9999;
  padding: 7px;
  padding-top: 10px;
}

.btnShowRegras i {
  padding: 8px;
  width: 36px;
  height: 36px;
  background: #ffd50000;
  color: #ffd600b0;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.btnShowRegras i:hover {

  background: #ffd500;
  color: #111111b0;

}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: -50px;
}

#boxRegras {
  position: absolute;
  z-index: 999;
  height: -webkit-fill-available;
  width: -webkit-fill-available;
  backdrop-filter: blur(10px);
  background: #0006;
  border-radius: 10px;
  padding: 20px;
  color: aliceblue;
  overflow-y: auto;
}

/* Ocultar a barra de rolagem */
#boxRegras::-webkit-scrollbar {
  width: 0.5em;
  /* Largura da barra de rolagem */
}

#boxRegras::-webkit-scrollbar-track {
  background: transparent;
  /* Cor do fundo da barra de rolagem */
}

#boxRegras::-webkit-scrollbar-thumb {
  background-color: transparent;
  /* Cor do polegar da barra de rolagem */
  border: none;
  /* Borda do polegar */
}


.cardsUsers {
  cursor: pointer;
  user-select: none;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fbfbfb;
  background-clip: border-box;
  border: 1px solid #5500551c;
  border-radius: 5px;
}

.cardGray {
  filter: grayscale(1) opacity(0.5);
}

.cardsUsers:hover {
  box-shadow: inset 0px 0px 30px 1px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.bg-lightpurple {
  background-color: #a300a3 !important;
}

.bg-darkpurple {
  background-color: #550055 !important;
}

.btn-lightpurple {
  background-color: #a300a3 !important;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
  color: #fff !important;
}

.btn-darkpurple {
  background-color: #550055 !important;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
  color: #fff !important;
}

.btn-lightpurple:hover {
  background-color: #5f005f !important;
  color: #ffffffad !important;
}

.btn-darkpurple:hover {
  background-color: #360036 !important;
  color: #ffffffad !important;
}

.remover-borda {
  outline: none;
  border: none;
  border-bottom: 1px solid #0000004f !important;
  box-shadow: none;
  background-color: #fff0;
}


.remover-borda:focus {
  outline: none !important;
  border: none !important;
  border-bottom: 1px solid #0000004f !important;
  box-shadow: none !important;
  border-color: none !important;
  background-color: #fff0;
}

.form-select:focus {
  color: #757575 !important;
  background-color: #fff0 !important;
  border-color: #fff0 !important;
  border-bottom: 1px solid #0000004f !important;
  outline: 0 !important;
  box-shadow: none !important;
  background-color: #fff0;
}