/*
* Tictra CSS Resources
*/

@font-face {
  font-family: "BalooBold";
  src: url("fonts/Baloo2-Bold.ttf");
}

@font-face {
  font-family: "BalooSemiBold";
  src: url("fonts/Baloo2-SemiBold.ttf");
}

@font-face {
  font-family: "RubikLight";
  src: url("fonts/Rubik-Light.ttf");
}

@font-face {
  font-family: "RubikRegular";
  src: url("fonts/Rubik-Regular.ttf");
}

@font-face {
  font-family: "RubikMedium";
  src: url("fonts/Rubik-Medium.ttf");
}

@font-face {
  font-family: "RubikItalic";
  src: url("fonts/Rubik-Italic.ttf");
}

@font-face {
  font-family: "MyriadPro";
  src: url("fonts/MYRIADPRO-REGULAR.OTF");
}

@font-face {
  font-family: "CalibriRegular";
  src: url("fonts/calibri-regular.ttf");
}

@font-face {
  font-family: "GreyCliffExtraBold";
  src: url("fonts/GreyCliff/Greycliff-CF-Extra-Bold.otf");
}

@font-face {
  font-family: "GreyCliffBold";
  src: url("fonts/GreyCliff/Greycliff-CF-Bold.otf");
}

@font-face {
  font-family: "GreyCliffMedium";
  src: url("fonts/GreyCliff/Greycliff-CF-Medium.otf");
}

@font-face {
  font-family: "GreyCliffRegular";
  src: url("fonts/GreyCliff/Greycliff-CF-Regular.otf");
}

.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #111;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.close {
  transition: opacity 0.2s ease-in-out;
}

.close-btn {
  opacity: 1;
  width: 2.29rem;
  height: 2.29rem;
  border-radius: 50%;
  background-color: rgb(2, 47, 150);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

body {
  background-color: white;
}

.tictra-title {
  font-family: GreyCliffBold;
  color: #f1f2f3;
  font-size: 14pt;
}

.tictra-container {
  padding: 0;
  max-width: 940px;
  margin: 0 auto;
}

.tictra-swiper-eventinfo-eventitle {
  font-family: BalooBold;
  font-size: 20px;
  height: 100px;
  text-align: center;
}

.tictra-swiper-mi-height {
  height: 40px;
}

.tictra-no-textspacing {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  height: 150px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.swiper-slide {
  justify-content: center;
  align-items: center;
  background-position: center !important;
  background-size: cover !important;
  width: 250px;
  min-width: 250px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  min-height: 228px;
  max-height: 228px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.tictra-carousel-swiper-info img {
  height: 608px;
}

.tictra-main-swiper .swiper-wrapper .swiper-slide {
  height: auto !important;
  width: 100% !important;
}

.tictra-swiper-pagination {
  text-align: center;
  position: relative;
  bottom: 20px !important;
}

.swiper-thumbnail {
  width: 300px !important;
  height: 100px !important;
}

.gallery-top {
  height: 80%;
  width: 100%;
}

.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  bottom: 115px;
  position: relative;
}

.gallery-thumbs .swiper-slide {
  width: 300px !important;
  height: 100px !important;
  opacity: 0.4;
}

.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}

.tictra-event-banner {
  height: 600px;
  background-position: center !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat;
}

.tictra-event-information {
  font-family: RubikRegular;
  font-size: 12pt;
  background-color: rgb(249, 249, 249);
  position: relative;
  padding: 25px;
}

.tictra-nav {
  display: block;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1030;
  transition: all 0.3s;
}

.tictra-nav .tic-navbar-items {
  display: flex;
  margin-left: auto;
  justify-content: flex-end;
}

.tictra-nav .tic-navbar-items .nav-item {
  margin-left: 15px;
  /* Añade espacio entre los elementos si es necesario */
}

/* Contenedor de la imagen */
.image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* Proporción 16:9 para mantener la relación de aspecto */
  overflow: hidden;
  transition: transform 0.3s ease;
  /* Animación de transformación */
}

/* Imagen dentro del contenedor */
.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
  /* Solo animación de opacidad */
}

/* Overlay que aparece sobre la imagen */
.image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(2, 47, 150, 0.9);
  /* Fondo azul con transparencia */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  /* El overlay está oculto por defecto */
  transition: opacity 0.3s ease-in-out;
  color: white;
  font-size: 18px;
  font-family: GreyCliffBold;
}

/* Mostrar el overlay al hacer hover */
.image-container:hover .overlay {
  opacity: 1;
}

/* Hacer el contenedor más grande al hacer hover */
.image-container:hover {
  transform: scale(1.06);
  /* Aumenta el tamaño del contenedor en un 5% */
}

/* Hacer la imagen más transparente al hacer hover */
.image-container:hover img {
  opacity: 0.3;
  /* Hace la imagen más transparente */
}

.imagen-con-gradiente {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* importante */
}

/* Imagen real */
.imagen-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* replica background-size: cover */
  z-index: 0;
}

/* Tu gradiente exactamente igual */
.imagen-con-gradiente::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Contenido encima del gradiente */
.imagen-con-gradiente>*:not(.imagen-hero) {
  position: relative;
  z-index: 2;
}

.contenido {
  position: relative;
  z-index: 1;
  /* Asegura que el contenido esté por encima del gradiente */
  color: white;
  /* Ajusta el color del texto según sea necesario */
  text-align: center;
  /* Centra el texto dentro de las columnas */
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-bottom: 200px !important;
}

.overlaycustom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
  transition: all 0.3s ease;
}

.overlaycustom.show {
  display: block;
}

.tictraLoginBtn {
  height: 30px;
  background-color: #fff;
  color: #111;
  margin-top: 6px;
  border: 2px solid transparent;
  border-radius: 3px;
  padding-top: 2px;
  font-size: 12px;
  font-family: GreyCliffExtraBold;
}

.tictraLoginNavBtn {
  height: 30px;
  background-color: #fff;
  color: #111;
  margin-top: 6px;
  border: 2px solid transparent;
  border-radius: 3px;
  padding-top: 2px;
  font-size: 13px;
  font-family: GreyCliffExtraBold;
}

.tictraLoginNavBtn:hover {
  background-color: #d6d3d3;
  color: #1c1c1c;
  border: 0;
}

.tictraPanelNavBtn {
  height: 30px;
  background-color: #13cbe7;
  color: white;
  margin-top: 6px;
  border: 2px solid transparent;
  border-radius: 3px;
  padding-top: 2px;
  font-size: 13px;
  font-family: GreyCliffExtraBold;
}

.tictraPanelNavBtn:hover {
  background-color: #0ea8c0;
  color: white;
  border: 0;
}

.sidenavNames {
  font-size: 20px;
  font-family: GreyCliffExtraBold;
  color: white;
  margin-top: 17px;
}

.tictraRegisterBtn {
  height: 30px;
  background-color: #13cbe7;
  color: white;
  margin-top: 6px;
  border: 2px solid transparent;
  border-radius: 3px;
  padding-top: 2px;
  font-size: 13px;
  font-family: GreyCliffExtraBold;
}

.tictraRegisterBtn:hover {
  background-color: #11abc2;
  border: 0;
}

.menu-section {
  display: flex;
  flex-direction: column;
  gap: 0.57rem;
}

.sidehr {
  border-top: 2px solid #13cbe7;
}

.menu-section p {
  font-size: 1em;
  font-weight: 500;
  line-height: 5px;
  letter-spacing: 0;
  color: white;
  font-family: GreyCliffRegular;
}

.link {
  text-decoration: none;
}

.tictra-event-name {
  margin-top: 15px;
  font-size: 1.2rem;
  font-family: GreyCliffExtraBold;
  color: #f1f2f3;
  white-space: nowrap;
  /* Evita el salto de línea */
  overflow: hidden;
  /* Oculta el texto que sobrepasa el contenedor */
  text-overflow: ellipsis;
  /* Agrega puntos suspensivos si el texto es muy largo */
}

/* Fechas y hora del evento */
.tictra-event-dates {
  font-size: 1rem;
  font-family: GreyCliffRegular;
  color: #f1f2f3;
  display: flex;
  justify-content: flex-start;
  /* Alinea las fechas y hora a la derecha */
  gap: 10px;
  /* Espacio entre la fecha y la hora */
  white-space: nowrap;
  /* Asegura que la fecha y hora no se rompan en varias líneas */
}

.tictraLoginBtn:hover {
  background-color: #e2e0e0;
  border: 2px solid transparent;
  color: #111;
}

.newHomeEvents .mySwiper {
  width: 100%;
  /* Asegura que el carrusel ocupe todo el ancho disponible */
  height: auto;
  /* Ajusta automáticamente la altura */
}

.tictra-carousel-swiper {
  width: 100%;
  /* Ocupa el 100% del ancho del contenedor */
  height: 0;
  /* Inicialmente altura cero para usar padding-bottom */
  padding-bottom: 56.25%;
  /* Relación de aspecto 16:9 */
  background-size: cover;
  /* Asegura que la imagen ocupe todo el fondo */
  background-position: center;
  /* Centra la imagen dentro del fondo */
}

.tictra-carousel-swiper-info {
  text-align: center;
  margin-top: 10px;
  /* Espaciado entre el título y la imagen */
}

@media (min-width: 768px) {
  .tictra-carousel-swiper {
    padding-bottom: 50%;
    /* Ajusta la relación de aspecto para pantallas más grandes */
  }
}

.tictra-inline-row {
  display: inline-flex !important;
}

.newHomeEvents {
  background-color: #565555;
}

.custom-sidenav {
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  transform: translateX(320px);
  transition: transform 260ms ease-in-out;
  background-color: white;
  border-left: 1px solid #eee;
}

.custom-sidenav ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid #eee;
}

.custom-sidenav ul>li {
  list-style: none;
  color: #fff;
  font-family: RubikRegular;
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: 0.25s;
}

.custom-sidenav ul>li span {
  display: block;
  font-size: 14px;
  color: #353535;
}

.custom-sidenav ul>li a {
  color: #353535;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

.custom-sidenav ul>li:hover {
  background-color: #dddddd;
}

.custom-sidenav li.custom-sidenav-signup {
  list-style: none;
  background-color: #00b2d3;
}

.custom-sidenav ul>li.custom-sidenav-signup span {
  color: #00b2d3;
}

.custom-sidenav ul>li.custom-sidenav-signup a {
  color: #ffffff;
}

.custom-sidenav ul>li.custom-sidenav-signup:hover {
  background-color: #006375;
}

input[type="checkbox"]:checked~.custom-sidenav {
  transform: translateX(0);
  z-index: 1000000;
}

input[type="checkbox"] {
  box-sizing: border-box;
  display: none;
  transition: all 0.25s;
}

.menuIconToggle {
  box-sizing: border-box;
  cursor: pointer;
  z-index: 40;
  height: 100%;
  width: 100%;
  top: 18px;
  left: 20px;
  height: 22px;
  width: 22px;
  transition: all 0.3s;
}

.hamb-line {
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: white;
  transition: all 0.25s;
}

.hor {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}

.dia.part-1 {
  position: relative;
  box-sizing: border-box;
  float: left;
  transition: all 0.25s;
}

.dia.part-2 {
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
  transition: all 0.25s;
}

input[type="checkbox"]:checked~.menuIconToggle>.hor {
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.25s;
}

input[type="checkbox"]:checked~.menuIconToggle>.dia.part-1 {
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 8px;
  transition: all 0.25s;
}

input[type="checkbox"]:checked~.menuIconToggle>.dia.part-2 {
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -9px;
  transition: all 0.25s;
}

.tic-btn {
  border-radius: 5px;
  background-color: #022f96;
  color: white;
  font-family: BalooBold;
}

.tic-btn:hover {
  background-color: #00216d;
  color: white !important;
}

.tic-desktop-logo {
  width: 200px;
}

.tictra-start-page {
  padding-top: 100px;
}

.tic-navbar-items {
  font-family: BalooBold;
  color: #fff;
}

.tic-nav-text {
  margin-top: 9px;
  margin-right: 30px;
}

.tictra-hyperlink {
  color: white !important;
  text-decoration: none;
  cursor: pointer;
}

.tictra-sell-margin {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: start;
}

.tictra-sell-desc {
  color: white;
}

.tictra-sell-font {
  font-family: RubikRegular;
}

.section-inf-eventos .title-section {
  font-size: 2rem;
  color: #fff;
  font-family: BalooBold;
}

.section-inf-eventos .text-section {
  color: #fff;
  font-family: RubikRegular;
}

.btn-green-white {
  padding-left: 2rem;
  padding-right: 2rem;
  color: #fff;
  font-weight: bold;
  background: #13cbe7;
  border: none;
  transition: all 0.3s;
}

footer .section-footer1 {
  background-color: #1c1c1c;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer .section-footer1 .logo {
  height: 7rem;
}

footer .section-footer1 .col-content {
  padding-top: 5rem;
}

footer .section-footer1 h5 {
  color: #f1f2f3;
  font-weight: bold;
}

footer .section-footer1 p {
  color: #f1f2f3;
  font-weight: 300;
}

footer .section-footer1 ul {
  padding-left: 0;
}

footer .section-footer1 li {
  list-style: none;
  margin-bottom: 0.3rem;
}

footer .section-footer1 li .items-menu {
  color: #f1f2f3;
  font-weight: 300;
  text-decoration: none;
}

footer .section-footer1 li .items-menu:hover {
  color: #022f96;
}

footer .section-footer1 small {
  color: #ffffff;
}

footer .section-mobil-footer {
  background-color: #1c1c1c;
  color: #343233;
  padding: 2rem;
}

.accordion-flush .accordion-item .accordion-button {
  color: #f1f2f3;
  font-family: GreyCliffBold;
}

footer .section-mobil-footer .accordion-button {
  color: #343233;
  background-color: #1c1c1c;
  font-weight: bold;
  font-size: 1.1rem;
}

footer .section-mobil-footer .accordion-button:focus {
  border-color: #1c1c1c;
  box-shadow: none;
}

footer .section-mobil-footer .accordion-body {
  background-color: #1c1c1c;
}

footer .section-mobil-footer .accordion-body ul {
  list-style: none;
  color: #343233;
  padding-left: 0;
}

.footerDesc {
  font-family: GreyCliffRegular;
  font-size: 14px;
  color: #f1f2f3;
}

footer .section-mobil-footer .accordion-body ul a {
  text-decoration: none;
  color: #f1f2f3;
  font-family: GreyCliffRegular;
}

footer .section-mobil-footer .accordion-body ul a.hover {
  color: #bebfc0;
}

footer .section-mobil-footer .logo {
  height: 7rem;
}

footer .section-mobil-footer ul {
  list-style: none;
  color: #343233;
  padding-left: 0;
}

footer .section-mobil-footer ul a {
  text-decoration: none;
  color: #343233;
}

footer .section-mobil-footer ul a.hover {
  color: #022f96;
}

footer .dropdown-menu {
  min-width: 145px !important;
  padding: 0 !important;
  border-radius: 1.25rem !important;
  border: none;
  margin-bottom: -3px !important;
}

footer .dropdown-menu li {
  margin-bottom: 0 !important;
}

footer .dropdown-item {
  color: #343233;
  background-color: #ffffff !important;
}

footer .dropdown-item:hover {
  color: #ffffff;
  background-color: #022f96 !important;
}

footer .btn-idiomas {
  color: #ffffff;
  border-radius: 1.2em;
  background-color: #343233;
  text-align: left;
  max-width: 145px;
}

footer .btn-idiomas .arrow-down {
  width: 0.8rem;
}

footer .btn-idiomas.show {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

footer .btn-idiomas:hover {
  color: #ffffff;
}

footer .section-footer2 {
  background: linear-gradient(90deg,
      rgba(2, 47, 150, 1) 0%,
      rgba(7, 90, 170, 1) 50%,
      rgba(2, 47, 150, 1) 100%);
  padding: 0.5rem;
}

footer .section-footer2 p {
  color: #ffffff;
  font-weight: 200;
}

.section-newsletter {
  background: #E0E0E0;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  height: auto;
  color: white;
  font-family: RubikRegular;
}

.section-newsletter.sended {
  background: #f1f2f3;
  height: 250px;
  position: relative;
}

.section-newsletter .title {
  color: #1c1c1c;
  font-family: GreyCliffRegular;
  font-weight: 300;
  padding: 0px;
}

.newsLetterTermsStyle {
  color: #1c1c1c;
  font-family: GreyCliffRegular;
  font-weight: 300;
  padding: 0px;
}

.section-newsletter form {
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-newsletter form .form-control {
  height: 2.5rem;
}

.section-newsletter form .form-control:focus {
  color: #343233;
  background-color: #ffffff;
  border-color: #022f96;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(69, 36, 203, 0.25);
}

.section-newsletter form .form-check-input {
  margin-bottom: 1rem;
}

.section-newsletter form .form-check-input:checked {
  background-color: #022f96;
  border-color: #022f96;
}

.section-newsletter form .form-check-input:focus {
  border-color: #022f96;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(69, 36, 203, 0.25);
}

.section-newsletter form .form-check-input[type="checkbox"] {
  border-radius: 50%;
}

.section-newsletter form .form-check-label a {
  color: #1c1c1c;
  text-decoration: none;
  transition: all 0.3s;
  font-family: GreyCliffRegular;
}

.section-newsletter form .form-check-label a:hover {
  color: #383737;
}

.section-newsletter form #btn-newsletter {
  font-weight: 400;
}

.section-newsletter .placaNewsletter {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #343233;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-newsletter .placaNewsletter p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.section-newsletter .icon-whatsapp {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s;
}

.section-newsletter .icon-whatsapp:hover {
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}

.section-newsletter .icon-whatsapp img {
  height: 5rem;
}

#redes {
  display: flex;
}

#redes a img {
  height: 100%;
}

#redes .red {
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
  border-radius: 3px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#redes .red:before {
  border-radius: 3px;
  width: 30px;
  height: 30px;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

#redes .red.fb:before {
  background-color: #3b5998;
}

#redes .red.ig:before {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #bc1888 75%,
      #833ab4 100%) !important;
}

#redes .red.yt:before {
  background-color: #c4302b;
}

#redes .red.ta:before {
  background-color: #00af87;
}

#redes .red.fb:hover:before,
#redes .red.ig:hover:before,
#redes .red.yt:hover:before,
#redes .red.ta:hover:before {
  transform: scaleY(1);
}

.btn-center-out {
  transform: perspective(1px) translateZ(0);
  overflow: hidden;
}

.btn-transparent-white {
  padding-left: 2rem;
  padding-right: 2rem;
  color: #fff;
  font-weight: bold;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  transition: all 0.3s;
}

.btn-rounded {
  border-radius: 50px;
}

.container-fluid-title {
  background-color: #022f96;
  color: white;
  font-family: BalooBold;
}

.tictra-form-label {
  font-family: RubikRegular;
}

.tictra-outline-btn {
  border: 2px solid #f1f2f3;
  border-radius: 5px;
  width: 100%;
  display: block;
  font-family: RubikRegular;
  text-decoration: none;
  padding-top: 15px;
  padding-bottom: 15px;
  color: inherit;
}

.tictraLoginModal {
  border-radius: 16px !important;
  background-color: #f2f4fa;
}

.tictraNewBigTitle {
  font-size: 20px;
  font-family: GreyCliffBold;
  color: #1c1c1c;
}

.section-login {
  background-color: #f2f4fa;
  border-radius: 16px;
}

.section-login .container2 .form-login .form-control {
  padding: 0.8rem 0.75rem;
}

.section-login .container2 .form-login .username {
  background-image: url("/resources/images/user.png");
  background-repeat: no-repeat;
  background-position: 9px;
  background-size: auto 70%;
  text-align: center;
  border-radius: 0.25rem;
}

.section-login .container2 .form-login .nombre {
  background-image: url("/resources/images/user.png");
  background-repeat: no-repeat;
  background-position: 9px;
  background-size: auto 70%;
  text-align: center;
  border-radius: 0.25rem;
}

.section-login .container2 .form-login .apellido {
  background-image: url("/resources/images/user.png");
  background-repeat: no-repeat;
  background-position: 9px;
  background-size: auto 70%;
  text-align: center;
  border-radius: 0.25rem;
}

.section-login .container2 .form-login .mail {
  background-image: url("/resources/images/icons/w_5.png");
  background-repeat: no-repeat;
  background-position: 10px;
  background-size: auto 80%;
  text-align: center;
}

.section-login .container2 .form-login .username:focus {
  border: 1px solid #eaeaea;
  box-shadow: 0 0 0 2px rgba(54, 69, 64, 0.3);
}

.section-login .container2 .form-login .input-pass {
  position: relative;
}

.section-login .container2 .form-login .input-pass .password {
  display: inline;
  background-image: url("/resources/images/icons/w_2.png");
  background-repeat: no-repeat;
  background-position: 9px;
  background-size: auto 70%;
  text-align: center;
  border-radius: 0.25rem;
}

.section-login .container2 .form-login .input-pass .password:focus {
  border: 1px solid #eaeaea;
  box-shadow: 0 0 0 2px rgba(54, 69, 64, 0.3);
}

.section-login .container2 .form-login .input-pass .eyes-hide,
.section-login .container2 .form-login .input-pass .eyes-show {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0);
  border: none;
}

.section-login .container2 .form-login .input-pass .eyes-hide img,
.section-login .container2 .form-login .input-pass .eyes-show img {
  height: 70%;
}

.section-login .container2 .form-login .input-pass .eyes-hide {
  display: none;
  transition: all 0.3s;
}

.section-login .container2 .form-login .input-pass .eyes-show {
  display: block;
  transition: all 0.3s;
}

.section-login .container2 .form-login .btn-redgr-white,
.section-login .container2 .form-login .btn-white-redgr {
  width: 100%;
  text-align: center;
  border-radius: 0.25rem;
  padding: 0.8rem 0.75rem;
}

.section-login .container2 .form-login .btn-white-redgr {
  color: #5c5c5c;
  border: 1px solid #ced4da;
  font-size: 1rem;
}

.section-login .container2 .form-login .btn-white-redgr:hover {
  background-color: #eaeaea;
}

.section-login .container2 .form-login .gmail {
  background-image: url("/resources/images/icons/w_5.png");
  background-repeat: no-repeat;
  background-position: 10px;
  background-size: auto 80%;
}

.section-login .container2 .form-login .facebook {
  background-image: url("/resources/images/icons/w_6.png");
  background-repeat: no-repeat;
  background-position: 10px;
  background-size: auto 80%;
  margin-top: 1rem;
}

.section-login .container2 .form-login .enlace-redes {
  color: #5c5c5c;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.8rem;
}

.tictra-badge {
  background-color: rgb(2, 47, 150) !important;
  font-family: RubikRegular;
  font-size: 11pt;
}

.tictra-eventpage-subtitle {
  font-family: RubikRegular;
  font-size: 15pt;
}

.tictra-eventpage-titledesc {
  font-family: RubikMedium;
  font-size: 11pt;
}

.tictra-eventpage-titledescregular {
  font-family: RubikRegular;
  font-size: 11pt;
}

.tictra-event-divisor {
  border-bottom: 3px solid #f1f2f3;
  margin-bottom: 15px;
  margin-top: 15px;
}

.eventpage-content {
  padding-top: 75px;
  background-color: #1c1c1c;
  color: white;
}

.eventpage-content-title {
  font-family: GreyCliffBold;
  font-size: 20px;
}

.eventpage-content-subtitle {
  font-family: GreyCliffBold;
  font-size: 20px;
  position: relative;
  top: 7px;
  left: 5px;
}

.eventpage-content-subtitle-value {
  font-family: GreyCliffRegular;
  font-size: 20px;
  position: relative;
  top: 7px;
  left: 5px;
}

.eventpage-content-subtitle-desc {
  font-family: GreyCliffRegular;
  font-size: 18px;
}

.eventpage-content-desc {
  font-family: GreyCliffRegular;
  font-size: 15px;
  white-space: pre-line;
}

.eventpage-title {
  font-family: GreyCliffBold;
  font-size: 40px;
}

.eventpage-description {
  font-family: GreyCliffRegular;
  font-size: 21px;
}

.tictra-event-entrytitle {
  font-family: GreyCliffBold;
  text-align: start;
}

.tictra-event-entrydescbody {
  font-family: GreyCliffRegular;
  text-align: start;
  font-size: 12px;
}

.tictra-event-entryinfo {
  font-family: GreyCliffRegular;
  text-align: start;
}

.tictra-event-card {
  border-radius: 5px;
}

.tictra-event-bgimage {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.tictra-checkout-timer {
  font-family: GreyCliffBold;
  font-size: 14pt;
  text-align: end;
  margin-top: 10px;
}

.tictra-checkout-qty {
  font-family: GreyCliffBold;
  font-size: 25px;
  color: #000;
}

.tictra-checkout-total {
  font-family: GreyCliffBold;
}

.checkoutVal {
  font-family: GreyCliffRegular;
}

.XAppyPromocodeStyle {
  background-color: #f1f2f3;
  color: #1c1c1c;
  font-family: GreyCliffBold;
}

.XAppyPromocodeStyle:hover {
  background-color: #c5c7ca;
}

.tictra-checkout-info {
  font-size: 16pt;
}

.tictra-checkout-resumetitle {
  font-family: GreyCliffBold;
  font-size: 21pt;
}

.tictra-checkout-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  border-top: 2px solid #f1f2f3;
}

.tictra-checkout-auto-top {
  margin-top: 100px;
}

.tictra-page-auto-top {
  margin-top: 150px;
}

.tictra-page-padding-top {
  padding-top: 150px !important;
}

.tictra-index-customer {
  background-repeat: no-repeat;
  background-size: cover;
}

.tictra-event-image {
  border-radius: 10px;
  width: 920px;
  height: 520px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.tictra-img-swp {
  height: 400px;
  width: 154px;
}

.tictra-swp {
  background-position: center !important;
  background-size: cover !important;
  height: 400px;
  width: 100%;
}

.tictra-index-card {
  margin: 0 auto;
}

.tictra-index-box {
  margin-top: 70px;
  margin-bottom: 70px;
}

.tictra-event-card-title {
  font-family: BalooBold;
  color: #1b2428;
  text-decoration: none;
}

.tictra-card-body {
  border-radius: 10px;
  padding: 20px;
}

#tictra-tickets-modal .form-floating {
  position: relative;
  z-index: 1;
}

#tictra-tickets-modal .newTictraLabel {
  position: absolute;
  font-size: 12px;
  color: #1c1c1c;
  font-family: GreyCliffBold;
  z-index: 2;
}

#tictra-tickets-modal .form-control {
  padding-left: 15px;
}

#tictra-tickets-modal .position-absolute svg {
  fill: #000;
  z-index: 3;
  top: 50%;
  transform: translateY(-22%);
  left: 1rem;
}

#tictra-tickets-modal .form-floating>input:focus~.newTictraLabel,
#tictra-tickets-modal .form-floating>input:not(:focus):valid~.newTictraLabel {
  opacity: 1;
}

.image-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 1.14rem;
  transition: transform 0.2s ease-in-out;
}

.custom-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

/* Sección del carrusel */
.background-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #f1f2f3;
  /* Color que coincide con el fondo */
  -webkit-mask-image: linear-gradient(180deg,
      transparent 0%,
      transparent 95%,
      #000 100%);
  mask-image: linear-gradient(180deg,
      transparent 0%,
      transparent 95%,
      #000 100%);
  z-index: 1;
  /* El gradiente debe estar por debajo del contenido */
  pointer-events: none;
  /* No interfiere con la interacción */
}

/* Sección del carrusel */
.background-black-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #2b2a2a;
  /* Color que coincide con el fondo */
  -webkit-mask-image: linear-gradient(180deg,
      transparent 0%,
      transparent 95%,
      #1c1c1c 100%);
  mask-image: linear-gradient(180deg,
      transparent 0%,
      transparent 95%,
      #1c1c1c 100%);
  z-index: 1;
  /* El gradiente debe estar por debajo del contenido */
  pointer-events: none;
  /* No interfiere con la interacción */
}

/* Ajuste para la estructura general */
#carouselSection {
  position: relative;
  /* Necesario para posicionar la máscara */
  overflow: hidden;
  /* Oculta elementos fuera de los límites */
  z-index: 2;
  /* Para que el contenido del carrusel esté por encima del gradiente */
}

/* Contenedor de Swiper */
.swiper-container {
  position: relative;
  z-index: 2;
  /* Swiper sobre el fondo */
}

/* No permite que los controles de Swiper bloqueen el fondo */
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
  z-index: 3;
  /* Asegura que los controles de Swiper estén encima */
  pointer-events: all;
  /* Asegura que los controles sean interactivos */
}

.tictra-carousel-swiper {
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  /* La imagen llena el espacio disponible */
  background-position: center;
  /* Centra la imagen */
  position: relative;
  /* Necesario para superposiciones */
  overflow: hidden;
  /* Evita desbordes */
}

.tictra-index-cont {
  position: relative;
  padding-top: 60px;
  z-index: 1;
  background-color: #1c1c1c;
  box-shadow: 0px -20px 20px 13px #1c1c1c;
  overflow: hidden;
}

/* Ajustes opcionales para el contenido interno */
.tictra-index-cont .container {
  position: relative;
  z-index: 2;
}

.tictra-event-cont {
  padding-top: 60px;
  z-index: 1;
  background-color: #000000;
  box-shadow: 0px -20px 20px 13px #1c1c1c;
  overflow: hidden;
}

/* Ajustes opcionales para el contenido interno */
.tictra-event-cont .container {
  position: relative;
  z-index: 2;
}

.XCheckoutBtnClose {
  background-color: #ffffff;
  border: 0;
  border-radius: 50px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px 15px;
}

.XCheckoutBtnClose:hover {
  background-color: #c2bfbf;
}

.swiper-image {
  width: 100%;
  height: 300px;
  /* Ajusta la altura como prefieras */
  background-size: cover;
  /* Asegura que la imagen ocupe todo el fondo */
  background-position: center;
  /* Centra la imagen */
  filter: blur(2px);
  /* Difumina la imagen */
}

.swiper-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Fondo semitransparente */
  z-index: 1;
  /* Asegura que el overlay está sobre la imagen */
}

.swiper-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  /* Encima del overlay */
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
  /* Sombra para mejorar la legibilidad */
}

/* Aseguramos que los botones estén alineados horizontalmente dentro de col-2 */
.tictra-event-entrytitle+.tictra-event-entryinfo+.col-2 {
  display: flex;
  justify-content: flex-start;
  /* Alinea los botones al principio del contenedor */
  gap: 10px;
  /* Espacio entre los botones */
  align-items: center;
  /* Centra verticalmente los botones */
}

/* Aseguramos que los botones tengan la misma altura */
.tictra-event-entrytitle+.tictra-event-entryinfo+.col-2 button {
  height: 100%;
  /* Para que los botones tomen la altura completa del contenedor */
}

.qtyDesign {
  font-family: GreyCliffBold;
  font-size: 35px;
  margin-top: 20px;
  margin-right: 35px;
}

.cartCustomBtn {
  background-color: rgb(2, 47, 150);
  font-family: GreyCliffBold;
  font-size: 15px;
  color: white;
  border: 0;
}

.globalCartCountDesign {
  font-family: GreyCliffBold;
  font-size: 20px;
  color: #1c1c1c;
  position: relative;
  top: 1px;
  left: 5px;
}

/* Estilos para el div flotante */
.floating-div {
  padding: 15px;
  position: fixed;
  bottom: 0;
  right: 20px;
  z-index: 9999;
  transition: bottom 0.3s ease-in-out;
  background-color: #f1f2f3;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.modal-transparent {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.modal-transparent .modal-body {
  background-color: #1c1c1c;
}

.FilterInput {
  background-color: #282828;
  border: 0;
  border-radius: 25px;
  color: white;
  font-family: GreyCliffBold;
}

.collaboratorTitle {
  font-family: GreyCliffBold;
  font-size: 35px;
  color: white;
  margin-top: 25px;
}

.noFilterData {
  font-family: GreyCliffBold;
  font-size: 20px;
  color: white;
  margin-top: 25px;
}

.checkoutPageTitle {
  font-family: GreyCliffBold;
  font-size: 40px;
  color: white;
}

.checkoutPageDesc {
  font-family: GreyCliffRegular;
  font-size: 20px;
  color: white;
}

.checkoutNewBody {
  position: relative;
  background-size: cover;
  background-position: center center;
  padding-top: 100px;
  align-items: center;
  justify-content: center;
}

.checkoutNewBody::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 28, 28, 0.8);
  pointer-events: none;
  z-index: 1;
}

.checkoutNewBodyIndex {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

@media (min-width: 768px) {
  .floating-div {
    width: 30%;
  }

  .contenido {
    margin-top: 200px;
  }
}

@media (max-width: 980px) {
  .floating-div {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  .eventpage-title {
    margin-top: 5rem;
  }

  .contenido {
    margin-bottom: 50px !important;
  }
}

@media (min-width: 768px) {
  .section-login .container2 .form-login .enlace-redes {
    font-size: 1rem;
  }

  .tictra-index-cont {
    padding-top: 100px !important;
  }
}

.section-login .container2 .form-login .enlace-redes:hover {
  color: #022f96;
}

#login-button svg path,
#login-button svg rect {
  fill: #fff;
}

#login-button:hover svg path,
#login-button:active svg path,
#login-button:hover svg rect,
#login-button:active svg rect,
#login-button:focus svg path,
#login-button:focus svg rect {
  fill: #022f96;
}

.tictra-primary-button {
  font-family: GreyCliffBold;
  color: white;
  border-radius: 5px;
  background-color: #022f96;
}

.tictra-primary-button:hover {
  color: white !important;
}

.tictra-eventport-info {
  border-radius: 5px;
  background: linear-gradient(rgba(0.7, 0.7, 0.7, 0.7),
      rgba(0.7, 0.7, 0.7, 0.7));
  color: #f1f2f3;
  min-height: 100px;
  min-width: 100%;
  font-family: BalooSemiBold;
  margin-top: 250px;
  padding-top: 35px;
  text-align: center;
}

.tictra-eventpage-title {
  font-family: BalooBold;
  font-size: 14pt;
}

.tictra-auto-top {
  margin-top: 53px;
}

.tictra-entry-row {
  color: black;
  font-family: RubikRegular;
  margin-top: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  padding-top: 15px;
}

.btn-green-white:hover {
  background: #13a0b5 !important;
  color: white !important;
}

.tictra-swiper-eventinfo {
  background-color: white;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.tictra-swiper-eventinfo-title {
  font-family: BalooBold;
  font-size: 17px;
}

.tictra-swiper-eventinfo-price {
  font-family: BalooBold;
  color: #00216d;
  font-size: 21px;
}

.swiper-button-next,
.swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 45%);
}

.tictra-events-conditions {
  font-size: 11px;
  font-family: RubikLight;
}

.d-none-important {
  display: none !important;
}

.tictra-eventinfo-search {
  margin-bottom: 35px;
  border: 2px solid #f1f2f3;
  border-bottom-left-radius: 2px solid;
  border-bottom-right-radius: 2px solid;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tictra-rrss-login {
  background-color: white;
  border: 1px solid white;
  border-radius: 5px;
  height: 60px;
  padding-top: 10px;
  margin: 0 auto;
}

.tictra-rrss-login-title {
  font-family: GreyCliffMedium !important;
  text-decoration: none;
  color: #3c4959 !important;
}

.newTictraInput {
  font-family: GreyCliffBold !important;
  font-size: 14px;
}

.newTictraInput:hover {
  border: 2px solid #f1f2f3;
}

.newTictraLabel {
  font-family: GreyCliffBold !important;
  font-size: 14px;
  margin-left: 35px;
  margin-top: 2px;
}

.newTictraForgetPassword {
  font-family: GreyCliffRegular !important;
  font-size: 14px;
  color: #1c1c1c;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;
}

.tictra-carousel-swiper-info {
  background-color: white;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  text-align: center;
  font-family: BalooBold;
  color: #3c4959;
}

.tictra-carousel-swiper-info span {
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-flex;
}

.navbar {
  background-color: rgb(2, 47, 150);
  height: 70px;
}

/* Estilos para el contenido oculto inicialmente */
.eventpage-content-desc {
  max-height: 200px;
  /* Define un límite para el contenido visible inicialmente */
  overflow: hidden;
  position: relative;
  padding-bottom: 15px;
  /* Espacio para el botón 'Ver más' */
  transition: max-height 0.3s ease-in-out;
}

/* Estilo de la sombra con gradiente */
.eventpage-content-desc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}

/* Estilo del botón de "Ver más" */
.ver-mas {
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  font-family: GreyCliffBold;
  font-size: 15px;
  margin-top: 35px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.7) 100%);
}

.mostrar {
  max-height: 10000px !important;
  padding-bottom: 30px;
}

.mostrar .eventpage-content-desc::after {
  height: 0;
  background: none;
}

.mostrar #ver-mas-descripcion,
.mostrar #ver-mas-terminos {
  display: none;
}

.eventpage-content-title-container {
  display: flex;
  align-items: center;
}

.eventpage-content-title-container svg {
  margin-right: 10px;
}

.checkoutVerify {
  font-family: GreyCliffRegular;
  font-size: 18px;
}

@media screen and (max-width: 820px) {
  .tictra-carousel-swiper {
    height: 385px;
  }
}

@media screen and (max-width: 780px) {
  .tictra-carousel-swiper {
    height: 285px;
  }
}

@media screen and (max-width: 640px) {
  .tictra-carousel-swiper {
    height: 228px;
  }

  .tictra-swp {
    height: 206px !important;
    width: 100% !important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .swiper-slide {
    width: 100% !important;
  }

  .tictra-img-swp {
    height: 206px !important;
    width: 100% !important;
  }

  .custom-sidenav {
    height: 100%;
    width: 100%;
    transform: translateX(100%);
  }

  .tic-desktop-logo {
    width: 135px;
    margin-left: 85px;
  }

  .tictra-index-customer {
    height: 300px;
  }
}

@media only screen and (max-width: 760px) {
  .tictra-carousel-swiper-info img {
    height: 280px;
  }

  .tictra-swiper-img {
    height: 450px !important;
  }

  .tictra-event-swiper .swiper-wrapper {
    max-height: 300px;
  }

  .tictra-event-banner {
    height: 500px;
    background-position: center;
    background-size: cover;
    max-height: 220px !important;
  }

  .tictra-title {
    font-size: 13pt;
  }
}

@media only screen and (min-width: 760px) {
  .tictra-event-swiper .swiper-wrapper {
    max-height: 400px;
  }

  .swiper-slide {
    width: 370px !important;
  }
}

.campusIcon svg {
  width: 100px;
  height: 100px;
  color: rgb(2, 47, 150);
}

.campusCard {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 1rem;
}

.campusCard:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
  position: relative;
}

.campusHeader {
  min-height: 350px;
  position: relative;
  background-size: cover;
  background-position: bottom;
  width: 100%;
  height: 350px;
  padding-top: 120px;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.7) 100%),
    url("/resources/images/campus-image.jpg");
}

.campusTitle {
  font-family: GreyCliffRegular;
  color: #f1f1f1;
  font-size: 2.5rem;
}

.campusContainer {
  max-width: 1100px !important;
}

#campus-filter {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 200px;
  font-size: 1rem;
  font-family: GreyCliffRegular;
}

.campusCardTitle {
  font-family: GreyCliffBold;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #000000;
}

.campusCardDesc {
  font-family: GreyCliffRegular;
  font-size: 0.9rem;
  color: #000000;
  margin-top: 15px;
}

.campusCardShow {
  font-family: GreyCliffBold;
  font-size: 1rem;
  color: #4f4de3;
}

.tictraCampusCategory {
  background-color: #f4f4f4bf;
  font-family: GreyCliffBold;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  fill: #000000;
  color: #000000;
  margin-right: 10px;
  padding: 20px;
  border-radius: 999px 999px 999px 999px;
  width: 250px;
}

.tictraCampusCategorySelected {
  background-color: rgb(2, 47, 150);
  color: white;
}

.campusModulesList {
  padding-left: 0;
}

.campusNoModules {
  font-family: GreyCliffBold;
  font-size: 1.2rem;
  color: #000000;
}

.campusModulesList {
  overflow-y: auto;
  height: 500px;
  overflow-x: hidden;
}

.campusModulesList li {
  border: 0;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.campusModulesList li .row {
  height: 100px;
}

.firstColumnOfCampusList,
.firstColumnOfCampusList img {
  height: 100%;
}

.firstColumnOfCampusList img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px !important;
}

.moduleVideoName {
  font-family: GreyCliffBold;
  font-size: 0.9rem;
  color: #000000;
}

.moduleVideoDuration {
  font-family: GreyCliffRegular;
  font-size: 0.9rem;
  color: #8d8d8d;
}

.module-thumbnail {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.thumbnail-container {
  flex-shrink: 0;
}

.module-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.campusModuleSelected {
  border: 1px solid rgb(2, 47, 150) !important;
}

.campusModuleList li {
  margin-bottom: 25px;
  border: 0;
  background-color: white;
  border-radius: 10px;
  height: 122px;
}

.campusSearchTitle {
  font-family: GreyCliffBold;
  font-size: 1.2rem;
  margin-top: 10px;
}

.campusSearchMain {
  font-family: GreyCliffBold;
  font-size: 2.2rem;
  margin-top: 10px;
}

.tictraLangBtn {
  height: 30px !important;
  background-color: #3e3f40;
  color: white;
  font-family: GreyCliffRegular;
  font-size: 0.8rem;
  border: 0;
}

.tictraLangBtn:active {
  background-color: rgb(2, 47, 150);
  color: white;
}

.btnReservasPersons {
  border-radius: 50%;
  height: 56px;
  width: 56px;
  border: 0;
}

.btnReservasPersons svg {
  position: relative;
  bottom: 3px;
}

.reservasListStyle li {
  border: 0 !important;
}

.eventEntryType {
  text-align: start !important;
  font-size: 1.2rem;
  font-family: GreyCliffBold;
  float: left;
}


.tictra-send-button {
  font-family: GreyCliffBold;
  color: #1c1c1c;
  border-radius: 5px;
  background-color: #f1f2f3;
}

.tictra-send-button:hover {
  color: #1c1c1c !important;
}