@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@font-face {
  font-family: HWTArtz;
  src: url(../fonts//HWTArtz.ttf);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: HWTArtz;
}

html {
  display: block;
  max-width: 2000px;
  margin: auto;
}

body {
  background: #fffaeb !important;
  position: relative;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-spinner {
  display: flex;
  height: 35px;
  width: 35px;
  border: 5px solid blue;
  border-radius: 50%;
  border-top-color: transparent;
  animation-name: spin;
  animation-duration: 700ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

header {
  position: relative;
}
header::before {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 1920/517;
  background: #f2e8c6;
  top: 0;
  left: 0;
  z-index: -2;
}
@media (max-width: 992px) {
  header::before {
    aspect-ratio: unset;
    height: 100%;
  }
}
header .bg-topo {
  position: absolute;
  top: -12vw;
  left: -2vw;
  width: 35vw;
  height: auto;
  z-index: -1;
}
header .handle-mobile-menu {
  background: none;
  padding: 0;
  margin: 0;
  width: 50px;
  font-size: 50px;
  border: none;
  outline: none;
  color: #c43c29;
}
header .menu-desktop-container {
  padding: 25px 0;
  border-bottom: 1px solid #fd8d14;
  margin-bottom: 25px;
}
header .menu-desktop-container .menu-primary-container {
  width: 100%;
}
header .menu-desktop-container .menu-primary-container ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
header .menu-desktop-container .menu-primary-container ul li a {
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
  color: #c43c29;
  font-family: HWTArtz;
}
@media (max-width: 992px) {
  header .menu-desktop-container .menu-primary-container ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
    height: 0;
    overflow: hidden;
    transition: ease all 0.2s;
  }
  header .menu-desktop-container .menu-primary-container ul.active {
    height: 215px;
    margin-top: 30px;
  }
  header .menu-desktop-container .menu-primary-container ul li a {
    font-size: 20px;
  }
}

.banner .banner-list img {
  width: 100%;
  aspect-ratio: 1320/700;
  object-fit: cover;
}
.banner .button-container {
  display: flex;
  position: relative;
  z-index: 2;
  justify-content: flex-end;
  margin-top: -18px;
  padding-right: 20px;
}
.banner .button-container button {
  height: 36px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center !important;
  background: #c43c29;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 24px;
}
.banner .button-container button#banner-right {
  background: #8f2524;
}

.nosso-menu-wrapper {
  padding: 50px 0;
}
.nosso-menu-wrapper h2.title {
  font-size: 40px;
  text-transform: uppercase;
  color: #c43c29;
  position: relative;
  width: fit-content;
}
.nosso-menu-wrapper h2.title::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 5px;
  background-color: #fd8d14;
  top: -5px;
  left: 0;
}
.nosso-menu-wrapper p.sub-title {
  width: 100%;
  max-width: 700px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}
.nosso-menu-wrapper .fotos-grid {
  margin: 25px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-gap: 12px;
}
.nosso-menu-wrapper .fotos-grid .foto-box {
  width: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.nosso-menu-wrapper .fotos-grid .foto-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: ease all 0.2s;
}
.nosso-menu-wrapper .fotos-grid .foto-box .title-box {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 1;
  background: orange;
  height: 30px;
  align-items: center;
  display: none;
}
.nosso-menu-wrapper .fotos-grid .foto-box .title-box .icone {
  height: 100%;
  aspect-ratio: 3/4;
  background: #c43c29;
}
.nosso-menu-wrapper .fotos-grid .foto-box .title-box h3 {
  color: #8f2524;
  text-transform: uppercase;
  font-size: 20px;
  margin: 0;
  padding: 0 10px 9px;
}
.nosso-menu-wrapper .fotos-grid .foto-box:hover img {
  transform: scale(1.05);
}
.nosso-menu-wrapper .fotos-grid .foto-box:hover .title-box {
  display: flex !important;
}
.nosso-menu-wrapper .fotos-grid .box-1 {
  grid-area: 1/1/3/3;
  aspect-ratio: 653/415;
}
.nosso-menu-wrapper .fotos-grid .box-2 {
  grid-area: 1/3/2/4;
}
.nosso-menu-wrapper .fotos-grid .box-3 {
  grid-area: 1/4/2/5;
}
.nosso-menu-wrapper .fotos-grid .box-4 {
  grid-area: 2/3/3/5;
}
.nosso-menu-wrapper .fotos-grid .box-5 {
  grid-area: 3/1/4/2;
}
.nosso-menu-wrapper .fotos-grid .box-6 {
  grid-area: 3/2/5/3;
}
.nosso-menu-wrapper .fotos-grid .box-7 {
  grid-area: 3/3/5/5;
}
.nosso-menu-wrapper .fotos-grid .box-8 {
  grid-area: 4/1/5/2;
}
@media (max-width: 991.98px) {
  .nosso-menu-wrapper .fotos-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
  .nosso-menu-wrapper .fotos-grid .box-1 {
    grid-area: 1/1/3/3;
    aspect-ratio: 653/415;
  }
  .nosso-menu-wrapper .fotos-grid .box-2 {
    grid-area: 5/1/6/2;
  }
  .nosso-menu-wrapper .fotos-grid .box-3 {
    grid-area: 5/2/6/3;
  }
  .nosso-menu-wrapper .fotos-grid .box-4 {
    grid-area: 6/1/7/3;
  }
  .nosso-menu-wrapper .fotos-grid .box-5 {
    grid-area: 3/1/4/2;
  }
  .nosso-menu-wrapper .fotos-grid .box-6 {
    grid-area: 3/2/5/3;
  }
  .nosso-menu-wrapper .fotos-grid .box-7 {
    grid-area: 4/1/5/2;
  }
  .nosso-menu-wrapper .fotos-grid .box-8 {
    grid-area: 7/1/9/3;
  }
}

/** @format */
.conheca-wrapper {
  background: #8f2524;
}
.conheca-wrapper .conheca-content .iframe-container {
  margin: 60px 0 -5px;
  position: relative;
}
.conheca-wrapper .conheca-content .iframe-container::before {
  content: "";
  position: absolute;
  background: #c43c29;
  width: 100%;
  height: 110%;
  z-index: 0;
  top: -20px;
  left: -30px;
}
.conheca-wrapper .conheca-content .iframe-container .iframe-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 15px;
}
.conheca-wrapper .conheca-content .iframe-container .iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.conheca-wrapper .conheca-content .iframe-container .iframe-contato {
  display: flex;
  gap: 50px;
  position: relative;
}
.conheca-wrapper .conheca-content .iframe-container .iframe-contato .iframe-contato-line {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 50%;
}
.conheca-wrapper .conheca-content .iframe-container .iframe-contato .iframe-contato-line svg {
  color: #fd8d14;
  font-size: 26px;
}
.conheca-wrapper .conheca-content .iframe-container .iframe-contato .iframe-contato-line .iframe-contato-line-text p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 992px) {
  .conheca-wrapper .conheca-content .conheca-text {
    margin-top: 75px;
  }
}
.conheca-wrapper .conheca-content .conheca-text h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  width: fit-content;
  line-height: 0.9;
  margin-bottom: 25px;
}
.conheca-wrapper .conheca-content .conheca-text h2 span {
  color: #fd8d14;
}
.conheca-wrapper .conheca-content .conheca-text h2::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 5px;
  background-color: #fd8d14;
  top: -5px;
  left: 0;
}
.conheca-wrapper .conheca-content .conheca-text .conheca-text-content * {
  color: #fff;
  font-size: 14px;
  font-family: "Open Sans", sans-serif !important;
}

/** @format */
.eventos-wrapper {
  padding: 120px 0 50px;
  background: #fff;
}
.eventos-wrapper h2.title {
  font-size: 40px;
  text-transform: uppercase;
  color: #c43c29;
  position: relative;
  width: fit-content;
}
.eventos-wrapper h2.title::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 5px;
  background-color: #fd8d14;
  top: -5px;
  left: 0;
}
.eventos-wrapper p.sub-title {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}
.eventos-wrapper .evento-card-out {
  padding: 0 10px;
  text-decoration: none;
  outline: none;
}
.eventos-wrapper .evento-card-out .evento-card {
  text-decoration: none;
  outline: none;
}
@media (max-width: 992px) {
  .eventos-wrapper .evento-card-out .evento-card {
    max-width: 80%;
    margin: auto;
  }
}
.eventos-wrapper .evento-card-out .evento-card .img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 15/9;
  overflow: hidden;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.eventos-wrapper .evento-card-out .evento-card .img-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}
.eventos-wrapper .evento-card-out .evento-card .img-box .data-box {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 10px;
  display: flex;
  flex-direction: column;
}
.eventos-wrapper .evento-card-out .evento-card .img-box .data-box .dia {
  background: #fd8d14;
  color: #c43c29;
  font-size: 22px;
  text-align: center;
  padding: 0 0 7px;
}
.eventos-wrapper .evento-card-out .evento-card .img-box .data-box .mes {
  font-size: 13px;
  text-align: center;
  color: #fff;
  background: #c43c29;
  padding: 0 10px 4px;
}
.eventos-wrapper .evento-card-out .evento-card .img-box .category {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 10px;
  color: #dad4b5;
  background: #c43c29;
  width: 100px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  text-align: center;
}
.eventos-wrapper .evento-card-out .evento-card .img-box .category.promocao {
  background: #dad4b5;
  color: #c43c29;
}
@media (max-width: 992px) {
  .eventos-wrapper .evento-card-out .evento-card .evento-content {
    background: #f2f2f2;
    padding: 25px 10px 15px;
  }
}
.eventos-wrapper .evento-card-out .evento-card .evento-content h4 {
  font-family: "Open Sans", sans-serif;
  color: #fd8d14;
  font-weight: bold;
  font-size: 18px;
}
.eventos-wrapper .evento-card-out .evento-card .evento-content p {
  font-family: "Open Sans", sans-serif;
  color: #6a6a6a;
  font-size: 14px;
}

/** @format */
.clientes-wrapper {
  background-color: var(--azul_tropical);
  position: relative;
  padding: 50px 0;
  width: 100%;
}
.clientes-wrapper::after {
  content: "";
  background-color: #8f2524;
  z-index: -1;
  height: 100px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.clientes-wrapper .clientes-background {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 200px;
  object-fit: cover;
  z-index: 0;
}
.clientes-wrapper .texto-clientes-intro {
  display: flex;
  color: #8f2524;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.clientes-wrapper .texto-clientes-intro span {
  font-size: 16px;
  letter-spacing: 3px;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  position: relative;
  font-weight: 400;
  color: #fd8d14;
  text-transform: uppercase;
}
.clientes-wrapper .texto-clientes-intro span::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  height: 5px;
  background: #fd8d14;
  width: 50%;
}
.clientes-wrapper .texto-clientes-intro h2 {
  font-size: 38px;
  text-align: left;
  line-height: 0.9;
  margin-top: 15px;
}
.clientes-wrapper .texto-clientes-intro p {
  text-align: justify;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  line-height: 1.2;
  color: #696864;
}
.clientes-wrapper .cliente-blocos-container {
  display: flex;
  justify-content: center;
}
.clientes-wrapper .cliente {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 3px #fd8d14 solid;
}
.clientes-wrapper .cliente img {
  height: 210px;
  width: auto;
  object-fit: contain;
  box-shadow: 1px 1px 3px 0px #bbbbbb;
}

footer {
  position: relative;
  overflow: hidden;
}
footer .pimenta {
  position: absolute;
  top: -170px;
  left: -150px;
  width: 445px;
}
footer .cebola {
  position: absolute;
  top: -10px;
  right: -135px;
  width: 445px;
}
footer .footer-content {
  padding: 0 20px;
  height: 300px;
}
footer .menu-footer {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
footer .menu-footer p {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  margin: 0;
  font-weight: bold;
  padding: 10px 0;
}
footer .menu-footer svg {
  font-size: 30px;
  color: #FD8D14;
}
footer .logo-footer {
  display: flex;
  width: 400px;
  height: 90%;
}
footer .footer-redes a {
  text-decoration: none;
}
footer .footer-redes svg {
  font-size: 20px;
  color: #C43C29;
}
footer .bottom-bar {
  width: 100%;
  letter-spacing: 1px;
  line-height: 2rem;
  color: white;
  font-weight: 100;
  background-color: #FD8D14;
  display: flex;
  justify-content: space-around;
}
footer .bottom-bar .bottom-bar-content {
  height: 40px;
}
footer .bottom-bar span a,
footer .bottom-bar span a:visited {
  color: white;
  text-decoration: none;
}
footer .bottom-bar span a:hover {
  font-weight: bold;
}

.fixed-whats {
  position: fixed;
  bottom: 30px;
  right: 50px;
  outline: none;
  z-index: 99999999;
}
.fixed-whats img {
  width: 140px;
}

.gototop {
  position: fixed;
  bottom: 30px;
  left: 0;
  outline: none;
  z-index: 99999999;
}
.gototop img {
  width: 50px;
}

.leve-o-toscana-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding: 20px 0;
}
.leve-o-toscana-wrapper h1 {
  color: #F2E8C6;
  font-size: 40px;
  position: relative;
}
.leve-o-toscana-wrapper h1 span {
  color: #C43C29;
}
.leve-o-toscana-wrapper h1::before {
  position: absolute;
  content: "";
  background-color: #FD8D14;
  width: 120px;
  height: 6px;
  left: 0;
  top: -10px;
}
.leve-o-toscana-wrapper p.lev-desc {
  font-family: "Open Sans", sans-serif;
  color: #FFFAEB;
  max-width: 75%;
}
.leve-o-toscana-wrapper #cozinheiro {
  position: absolute;
  right: -25px;
  bottom: 55px;
  width: 33%;
  z-index: 5;
}
@media (max-width: 992px) {
  .leve-o-toscana-wrapper #cozinheiro {
    display: none;
  }
}
.leve-o-toscana-wrapper #background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.leve-o-toscana-wrapper .form-content-wrapper {
  display: flex;
  align-items: center;
  max-width: 75%;
  background: #c43c29;
  position: relative;
  z-index: 2;
  padding: 0 0 15px 15px;
  gap: 40px;
  margin: 50px 0 -75px;
}
@media (max-width: 992px) {
  .leve-o-toscana-wrapper .form-content-wrapper {
    max-width: 100%;
    flex-direction: column;
    padding: 0 15px 15px;
  }
}
.leve-o-toscana-wrapper .form-content-wrapper .form #submit-agendamento {
  margin: 30px 0 0 20px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  width: 265px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #FFFAEB;
  background-color: #FD8D14;
  text-align: center;
}
.leve-o-toscana-wrapper .form-content-wrapper .form #leve-toscana-form-wrapper p {
  margin: 0;
  padding: 0;
}
.leve-o-toscana-wrapper .form-content-wrapper .form #leve-toscana-form-wrapper .wpcf7-spinner {
  display: none;
}
.leve-o-toscana-wrapper .form-content-wrapper .form #leve-toscana-form-wrapper input {
  width: 90%;
  background: none;
  color: #FFFAEB;
  border: none;
  border-bottom: 1px solid #FFFAEB;
  margin: 5px 20px;
  border-radius: 0;
  outline: none;
}
.leve-o-toscana-wrapper .form-content-wrapper .form #leve-toscana-form-wrapper input::placeholder {
  color: #FFFAEB;
}
.leve-o-toscana-wrapper .form-content-wrapper .form #leve-toscana-form-wrapper input.submit-button {
  margin: 30px 0 0 20px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  width: 265px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #FFFAEB;
  background-color: #FD8D14;
  text-align: center;
}

.vanilla-calendar-container {
  margin-top: -15px;
}
.vanilla-calendar-container .head-content {
  display: flex;
  background: #fd8d14;
  color: #fff;
  align-items: center;
  padding: 10px;
  gap: 10px;
}
.vanilla-calendar-container .head-content h5 {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  font-size: 15px;
}
.vanilla-calendar-container .head-content svg {
  color: #8f2524;
}
.vanilla-calendar-container #vanilla-calendar {
  width: 100%;
  border-radius: 0;
  background: #fffaeb;
}
.vanilla-calendar-container #vanilla-calendar .vanilla-calendar-header {
  border-bottom: 1px solid #fd8d14;
}
.vanilla-calendar-container #vanilla-calendar .vanilla-calendar-header button {
  color: #8f2524;
}
.vanilla-calendar-container #vanilla-calendar .vanilla-calendar-header button::before {
  background: #8f2524;
}
.vanilla-calendar-container #vanilla-calendar .vanilla-calendar-week b {
  color: #333;
}
.vanilla-calendar-container #vanilla-calendar .vanilla-calendar-days {
  row-gap: 1px;
}
.vanilla-calendar-container #vanilla-calendar .vanilla-calendar-days .vanilla-calendar-day button {
  background: none;
  outline: none;
  color: #333;
}
.vanilla-calendar-container #vanilla-calendar .vanilla-calendar-days .vanilla-calendar-day button.vanilla-calendar-day__btn_selected, .vanilla-calendar-container #vanilla-calendar .vanilla-calendar-days .vanilla-calendar-day button:hover {
  background: #8f2524;
  color: #fff;
}
.vanilla-calendar-container #vanilla-calendar .vanilla-calendar-days .vanilla-calendar-day button.vanilla-calendar-day__btn_prev, .vanilla-calendar-container #vanilla-calendar .vanilla-calendar-days .vanilla-calendar-day button.vanilla-calendar-day__btn_next {
  display: none;
}

.calendar-wrapper {
  width: 100%;
  position: relative;
  margin-top: -40%;
}
@media (max-width: 992px) {
  .calendar-wrapper {
    max-width: 300px;
    margin: 25px auto;
  }
}
.calendar-wrapper::before {
  content: "";
  position: absolute;
  background: #c43c29;
  height: 100%;
  width: 100%;
  top: 35px;
  left: 25px;
  z-index: 0;
}
.calendar-wrapper #events-calendar {
  width: 100%;
  background: #fffaeb;
  border-radius: 0;
}
.calendar-wrapper #events-calendar .vanilla-calendar-header {
  border-bottom: 1px solid #fd8d14;
}
.calendar-wrapper #events-calendar .vanilla-calendar-header button {
  color: #8f2524;
  visibility: visible !important;
}
.calendar-wrapper #events-calendar .vanilla-calendar-header button::before {
  background: #8f2524;
}
.calendar-wrapper #events-calendar .vanilla-calendar-week b {
  color: #333;
}
.calendar-wrapper #events-calendar .vanilla-calendar-days .vanilla-calendar-day button {
  background: none;
  color: #333;
  aspect-ratio: 1;
  border-radius: 50%;
  outline: none;
  cursor: default;
}
.calendar-wrapper #events-calendar .vanilla-calendar-days .vanilla-calendar-day button.vanilla-calendar-day__btn_selected {
  background: #8f2524;
  color: #fff;
}
.calendar-wrapper #events-calendar .vanilla-calendar-days .vanilla-calendar-day button.vanilla-calendar-day__btn_prev, .calendar-wrapper #events-calendar .vanilla-calendar-days .vanilla-calendar-day button.vanilla-calendar-day__btn_next {
  display: none;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
  display: none !important;
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v139/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format("woff2");
}
.material-icons {
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

#lbt-headertop, #lbt-thumbnails {
  color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.3s;
}

.lb-thumbnail-wrapper, .lt-thumbnail-wrapper {
  background: rgba(33, 37, 44, 0.88);
  left: 0;
  overflow: hidden;
  right: 0;
}

.lbr-ToFixed {
  overflow-y: hidden;
}

#lbt-loading {
  width: 100px;
  height: 100px;
  margin: 20px;
  display: inline-block;
  z-index: 9;
  top: calc(50% - 50px);
  transform: translate(0, -50%);
  position: fixed;
}

#lbt-lightbox_imgs {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(31, 35, 42, 0.8);
  z-index: 999999;
}

#lbt-lightbox_imgs img.image {
  box-shadow: 0 0 5px #000;
  width: 100%;
}

#lbt-lightbox_imgs #lbt_lightbox-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: calc(100% - 500px);
  max-height: calc(100% - 160px);
  z-index: 100;
}

#lbt-lightbox-media > * {
  max-height: calc(100% - 225px);
  top: calc(50% - 50px);
  transform: translate(-50%, -50%);
  position: fixed;
  object-fit: cover;
  max-width: 70vw;
}

#lbt-lightbox-media > .lbt-iframe-video {
  width: 100%;
  aspect-ratio: 16/9;
}

#lbt-headertop {
  display: flex;
  width: 100%;
  height: 60px;
  position: relative;
  float: left;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#lbt-thumbnails {
  display: flex;
  height: 100px;
  position: -webkit-sticky;
  position: sticky;
  align-items: center;
  justify-content: center;
}

#lbt-thumbnails li {
  justify-content: flex-start;
}

.lb-thumbnail-wrapper {
  position: absolute;
  bottom: 0;
}

.lt-thumbnail-wrapper {
  position: absolute;
  top: 0;
}

ul li img.lbr-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s;
  border: 6px solid #515e66;
  margin-right: 7px;
}

ul li img.lbr-thumb:hover {
  border: 6px solid #81868a;
  opacity: 1;
}

ul li img.lbr-thumb.active {
  border: 6px solid #cacaca;
  opacity: 1;
}

#lbt-name_lightbox {
  position: absolute;
  font-size: 16px;
  font-family: "Segoe UI";
  color: #cacaca;
  left: 60px;
  top: 10px;
  cursor: pointer;
}

#lbt-date_lightbox {
  position: absolute;
  font-size: 13px;
  font-family: "Segoe UI";
  color: #838383;
  left: 60px;
  bottom: 10px;
  cursor: pointer;
}

#lbt_next, #lbt_previous {
  margin-top: 0;
  font-size: 40pt;
  background: #262a31;
  border-radius: 50%;
  z-index: 1;
  color: #fff;
  top: 50%;
  cursor: pointer;
}

#lbt-profile_lightbox {
  position: absolute;
  left: 0;
  height: calc(100% - 15px);
  cursor: pointer;
  padding: 5px;
}

#lbt-profile_lightbox img {
  height: 100%;
  border-radius: 50%;
}

#lbt-chat_lightbox {
  position: absolute;
  right: 320px;
  cursor: pointer;
}

#lbt-star_lightbox {
  position: absolute;
  right: 270px;
  cursor: pointer;
}

#lbt-smile_lightbox {
  position: absolute;
  right: 220px;
  cursor: pointer;
}

#lbt-forward_lightbox {
  position: absolute;
  right: 170px;
  cursor: pointer;
}

#lbt-download_lightbox {
  position: absolute;
  right: 120px;
  cursor: pointer;
}

#lbt-dot_lightbox {
  position: absolute;
  right: 70px;
  cursor: pointer;
}

#lbt-close_lightbox {
  position: absolute;
  right: 20px;
  cursor: pointer;
}

.lbt-image-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
}

#lbt_videoplayer .lbt_btn_play, #lbt_videoplayer .lbt_loadingVideo, .caption_text {
  left: 50%;
  transform: translate(-50%, -50%);
}

#lbt-lightbox-caption {
  font-family: Helvetica, Sans-Serif;
  font-weight: 400;
  line-height: 20px;
  margin-top: 15px;
  max-height: 57px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: fixed;
  bottom: 90px;
  width: 70vw;
  text-align: center;
  overflow: hidden;
  color: #c8c8c9;
  display: block;
  display: -webkit-box;
  text-shadow: #262a31 1px 0 10px;
}

#lbt_next, #lbt_previous, #lbt_videoplayer #captions.active, #lbt_videoplayer #settings.active {
  display: block;
}

.hi-lightbox-thumbnail-active {
  height: 55px;
  border-bottom: 5px solid #fff;
}

#lbt_next {
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

#lbt_previous {
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

#lbt_next svg,
#lbt_previous svg {
  height: 35px !important;
}

video::cue {
  opacity: 0;
}

.caption_text {
  position: absolute;
  bottom: 10%;
  width: 90%;
  max-width: 90%;
  text-align: center;
  user-select: none;
  transition: bottom 0.3s;
}

#lbt_videoplayer {
  overflow: hidden;
}

#lbt_videoplayer .lbt_btn_play {
  position: absolute;
  top: 50%;
  width: 20%;
  height: 20%;
  z-index: 1;
  stroke: #1c9dea;
  fill: #eff7fe;
  display: none;
}

#lbt_videoplayer .lbt_btn_play:hover {
  stroke: #4d5961;
  fill: #e6f7f2;
  cursor: pointer;
}

#lbt_videoplayer .lbt_loadingVideo {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  border: 4px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  z-index: 1;
  animation: 0.6s linear infinite animate;
  display: none;
}

#lbt_videoplayer .lbt_videoTime, #lbt_videoplayer .thumbnail {
  left: calc(var(--x) + 11px);
  transform: translateX(-50%);
  position: absolute;
  display: none;
}

.lbt_vPlayPause {
  cursor: pointer;
}

@keyframes animate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#lbt_videoplayer .thumbnail {
  bottom: 80px;
  width: 165px;
  height: 90px;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 3px;
}

#lbt_videoplayer #lbt_vsrc {
  position: relative;
  width: 100%;
  height: 100%;
  outline: 0;
}

#lbt_videoplayer .lbt_videoTime {
  bottom: 50px;
  min-width: 60px;
  text-align: center;
  white-space: nowrap;
  padding: 5px 10px;
  color: #1c9dea;
  text-shadow: -1px -1px 0 #fff, 0 -1px 0 #fff, 1px -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff, -1px 1px 0 #fff, 0 1px 0 #fff, 1px 1px 0 #fff;
  font-size: 14px;
  font-weight: 400;
  z-index: 1;
}

#lbt_videoplayer .lbt_videoControls {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: rgba(0, 0, 0, 0.29);
  box-shadow: 0 0 40px 10px rgba(0, 0, 0, 0.25);
  z-index: 3;
  transform: translateY(180%);
  transition: 0.3s;
}

#lbt_videoplayer .lbt_videoControls.active {
  transform: translateY(0);
}

#lbt_videoplayer .lbt_videoControls .video_progress-line {
  width: 100%;
  height: 5px;
  margin: auto;
  background: rgba(240, 240, 240, 0.3882352941);
  cursor: pointer;
  position: relative;
}

.lbt_videoControls .video_progress-line .video_progress-bar {
  position: relative;
  width: 0%;
  background: #1c9dea;
  height: inherit;
  border-radius: inherit;
  cursor: pointer;
}

.lbt_videoControls .video_progress-line .video_progress-bar::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #eff7fe;
  border: 3px solid #1c9dea;
}

.lbt_videoControls .video_progress-line .video_buffer-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: inherit;
}

.lbt_videoControls .lbt_videoControls-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 97%;
  height: 46px;
  margin: 0 auto;
}

.lbt_videoControls .lbt_videoControls-list .lbt_videoControls-left, .lbt_videoControls .lbt_videoControls-list .lbt_videoControls-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lbt_videoControls .lbt_videoControls-left .timer {
  display: inline-block;
  font-size: 14px;
  white-space: nowrap;
  color: #fff;
  margin-left: 5px;
  text-align: center;
}

.lbt_videoControls .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-left: 8px;
  margin-right: 5px;
}

.lbt_videoControls .icon .material-icons {
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

.lbt_videoControls .icon .material-icons.lbt_fastRewind:active {
  transition: 0.2s;
  transform: rotate(-45deg);
}

.lbt_videoControls .icon .material-icons.lbt_fastForward:active {
  transition: 0.2s;
  transform: rotate(45deg);
}

.lbt_videoControls .icon .lbt_videoVolumeRange {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 3px;
  background: #fff;
  color: #fff;
  cursor: pointer;
  outline: 0;
  border: none;
  transition: 0.4s;
}

.lbt_videoControls .icon .lbt_videoVolumeRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  outline: 0;
  background: #fff;
  color: #fff;
  opacity: 0;
  transition: 0.3s;
}

.lbt_videoControls .icon:hover .lbt_videoVolumeRange {
  display: inline-block;
  width: 60px;
}

.lbt_videoControls .icon:hover .lbt_videoVolumeRange::-webkit-slider-thumb {
  opacity: 1;
  pointer-events: auto;
  transition: 0.5s;
}

.lbt_videoControls-right .icon .lbt_videoAutoPlay {
  width: 30px;
  height: 10px;
  border-radius: 20px;
  position: relative;
  margin-right: 8px !important;
  background: #b6b6b6;
}

.lbt_videoControls-right .icon .lbt_videoAutoPlay::before {
  content: "\e034";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  line-height: 17px;
  font-size: 14px;
  background: #727272;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  font-family: "Material Icons";
}

.lbt_videoControls-right .icon .lbt_videoAutoPlay.active::before {
  content: "\e037";
  left: 15px;
  font-family: "Material Icons";
}

.lbt_videoControls-right .icon .material-icons.settingsBtn {
  font-size: 24px;
  transition: 0.3s;
}

.lbt_videoControls-right .icon .settingsBtn.active {
  transform: rotate(45deg);
}

#lbt_videoplayer #captions, #lbt_videoplayer #settings {
  right: 25px;
  position: absolute;
  bottom: 62px;
  background: rgba(28, 28, 28, 0.9);
  width: 200px;
  max-height: 250px;
  height: auto;
  color: #fff;
  overflow-y: auto;
  z-index: 20;
  display: none;
  border-radius: 5px;
}

#lbt_videoplayer #captions .caption span, #lbt_videoplayer #settings > div > span {
  font-size: 14px;
  font-weight: 300;
  padding: 15px 30px;
  border-bottom: 1px solid #535353;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}

#lbt_videoplayer #settings > div .icon {
  font-size: 14px;
  margin: 0 5px;
  cursor: pointer;
}

#lbt_videoplayer #settings > div ul li span {
  pointer-events: none;
}

#lbt_videoplayer #captions .caption ul, #lbt_videoplayer #settings > div ul {
  position: relative;
}

#lbt_videoplayer #captions .caption ul li, #lbt_videoplayer #settings > div ul li {
  position: relative;
  width: 100%;
  cursor: pointer;
  text-align: left;
  padding: 12px 33px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

#lbt_videoplayer #captions .caption ul li:hover, #lbt_videoplayer #settings > div ul li:hover {
  background: rgba(28, 28, 28, 0.9);
}

#lbt_videoplayer #captions .caption ul li.active::before, #lbt_videoplayer #settings > div ul li.active::before {
  content: "\e876";
  font-family: "Material Icons";
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 10px;
  font-size: 18px;
}

#lbt_videoplayer #captions::-webkit-scrollbar, #lbt_videoplayer #settings::-webkit-scrollbar {
  width: 8px;
  background: 0 0;
}

#lbt_videoplayer #captions::-webkit-scrollbar-thumb, #lbt_videoplayer #settings::-webkit-scrollbar-thumb {
  height: 20px;
  border: 2px solid transparent;
  background: rgba(83, 83, 83, 0.9);
  border-radius: 20px;
}

@media (max-width: 430px) {
  /* .container{
      width:100%;
      display:flex;
      justify-content:center;
      align-items:center
  } */
  .lbt_videoControls .icon {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 24px;
  }
  .lbt_fastForward, .lbt_videoAutoPlay, .lbt_videoPip, .lbt_videoVolume, .lbt_videoVolumeRange {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */
