body {
  background-color: var(--background-color);
  color: var(--font-color-medium);
}

h1, h2, h3, h4, h5 {
  color: var(--font-color-main);
}

.btnoption {
  background-color: var(--switch-thumb-off-color);
}

.timepicker-digital-display {
  display: none;
}
 
/* hydration */
/*----------------------------------------------------------------------------*/
.btn-hydration {
  background-color: var(--primary-color-hydration);
}
.switch label input[type=checkbox]:checked + .hydration:after {
  background-color: var(--primary-color-hydration) !important;
}
.bg-hydration {
  background-color: var(--primary-color-hydration) !important;
}
/*----------------------------------------------------------------------------*/


/* nutrition */
/*----------------------------------------------------------------------------*/
.btn-nutrition {
  background-color: var(--primary-color-nutrition);
}
.switch label input[type=checkbox]:checked + .nutrition:after {
  background-color: var(--primary-color-nutrition) !important;
}
.bg-nutrition {
  background-color: var(--primary-color-nutrition) !important;
}
/*----------------------------------------------------------------------------*/






.height150 {
  height: 150px !important
}
.height200 {
  height: 200px !important
}
.fullHeightWithScroll240 {
  overflow-x: auto;
  height: calc(240px);
  /* height: calc(100vh - 460px); /* 560 se tiver no pc */
}
.fullHeightt {
  overflow-x: auto; height: calc(100vh - 310px)
  /* overflow-x: auto; height: calc(100vh - 0px)   */
}
.metadeHeight {
  overflow-x: auto; height: calc(100vh - 70px)
}








/* SCROLL */
/* Estilizando a barra de rolagem para todo o site */
/* Parte que funciona apenas em navegadores baseados em WebKit como Chrome, Safari, etc. */
::-webkit-scrollbar {
  width: 12px;  /* largura da barra de rolagem */
  }
  
  ::-webkit-scrollbar-track {
  /* background: #f1f1f1; */
  background: var(--surface-color);
  }
  
  ::-webkit-scrollbar-thumb {
  background: #888;  /* cor de fundo do controle deslizante da barra */
  }
  
  ::-webkit-scrollbar-thumb:hover {
  background: #555;  /* cor de fundo do controle deslizante quando se passa o mouse por cima */
  }
  
  /* Estilizando a barra de rolagem para navegadores que suportam CSS scrollbar, como Firefox */
  * {
  scrollbar-width: thin;  /* 'auto' ou 'thin' são as opções para Firefox */
  scrollbar-color: var(--scroll-color) var(--surface-color);  /* cor da barra e cor da trilha */
  }
  
  

















  .pfixed {
    position: fixed;
  }

  .partial-border {
    width: 1px;
    height: 45%;
    background-color: #a7a7a7;
    position: absolute;
    z-index: 300;
    top: 30%;
  }














  .active-tab {
    border-bottom: 2px solid #b5b5b5; padding-bottom: 5px;
  }

  .active-tab-color {
    color: var(--primary-color);
  }








































/* Style for the video thumbnail */
.video-thumb {
  /* width: 320px; 
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTeYz3LARoNhN82E5C4UuhpwmTd1rj5faiJow&s');
  background-size: cover;
  background-position: center;*/
  height: 160px;
  position: relative;
  /* border-radius: 12px; */
  overflow: hidden;
  cursor: pointer;
}

.video-thumb::before {
  content: ''; /* Necessário para criar o pseudo-elemento */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/covervideo.jpeg');
  background-size: cover; /* Faz a imagem cobrir a div */
  background-position: center; /* Ajusta a imagem para centralizar */
  filter: blur(7px); /* Aplica o desfoque na imagem */
  z-index: -1; /* Coloca o pseudo-elemento atrás do conteúdo da div */
}

/* Style for the play button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 40px;
  background-color: #c7f000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Style for the play icon */
.play-icon {
    width: 30px;
    height: 30px;
}
















.left10 {
  left: 10% !important
}

.left20 {
  left: 20% !important
}

.left30 {
  left: 30% !important
}

.left50 {
  left: 50% !important
}

.bottom10 {
  bottom: 10% !important
}

.height270 {
  height: 270px !important
}


.divider28 {
  width: 90%;
  height: 1px;
  background-color: rgb(215 207 175 / 27%);
  margin: 0 auto;
  border: none;
  margin-bottom: 15px;
  margin-top: 10px;
}
.divider29 {
  background-color: rgb(215 207 175 / 0%) !important;
}

.divider30Partners {
  width: 80%;
  height: 1px;
  background-color: rgb(215 207 175 / 15%);
  margin: 0 auto;
  border: none;
  margin-bottom: 2px;
  margin-left: 65px;
  margin-top: 2px;
}




































.banner-btn {
  background-color: #fff;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 0;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.banner-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.banner-background {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 95%;
  background-image: url('/assets/img/onboarding/1.png');
  background-size: cover;
  background-position: center;
  filter: brightness(1.0);
}
.banner-content {
  position: relative;
  padding: 20px;
  text-align: center;
  color: #fff;
  width: 100%;
  background: linear-gradient(to top, #000 70%, rgba(0, 0, 0, 0));
}
.banner-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.no-scroll {
  overflow: hidden;
}























.lesson-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}



@media (min-width: 601px) { /* A partir de m */
  .custom-margin {
    margin-left: 50px;
    margin-right: 50px;
  }
}
