/*CSS Layout área genérico contenedor tabuladores*/
.lo-gct-main {
  margin-bottom: 100px;
}
.lo-gct-header {
  margin-bottom: 55px;
  position: relative;
  width: 100%;
}
.lo-gct-tabs {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.lo-gct-tabs::-webkit-scrollbar {
  width: 5px;
}
.lo-gct-tabs::-webkit-scrollbar-track {
  background-color: transparent;
}
.lo-gct-tabs::-webkit-scrollbar-thumb {
  background: var(--yellow-1);
  border-radius: 10px;
}

.lo-gct-tabs .slick-arrow {
  min-width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  color: transparent;
  overflow: hidden;
  margin: auto;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cg transform="rotate(90 512 512)"%3E%3Cpath fill="currentColor" d="M104.704 685.248a64 64 0 0 0 90.496 0l316.8-316.8l316.8 316.8a64 64 0 0 0 90.496-90.496L557.248 232.704a64 64 0 0 0-90.496 0L104.704 594.752a64 64 0 0 0 0 90.496z"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}


.lo-gct-tabs .slick-slide {
  width: max-content !important;
}


.lo-gct-tabs .slick-track {
  min-width: max-content;
  width: 100% !important;
}

.lo-gct-tabs .slick-arrow.slick-prev {
  transform: rotate(180deg);
}
/* Handle on hover */
.lo-gct-tabs::-webkit-scrollbar-thumb:hover {
  background-color: var(--background-1);
}
.lo-gct-tabpanels {
  position: relative;
  width: 100%;
}
.lo-gct-tabpanels .form-group {
  margin-bottom: 0;
}
.lo-gct-tabpanels .block-webform-block {
  width: 100%;
  min-width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .lo-gct-tabs {
    width: calc(100vw - var(--global-wrapper-horizontal-padding));
    max-width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .lo-gct-main {
    margin-bottom: 70px;
  }
}
