* {
  --primary-color: #202345;
  --secondary-color: #2D348B;
  --terciary-color: #4057A3;
  --background-color: #D5E2EB;

  transition: all 0.3s ease;
}

*::before,
*::after {
  transition: all 0.3s ease;
}

@font-face {
  font-family: 'MontserratVariable';
  src: url('../fonts/Montserrat-VariableFont.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'MontserratBold';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'MontserratMedium';
  src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'MontserratRegular';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-display: swap;
}


@font-face {
  font-family: 'BrinnanBlack';
  src: url('../fonts/BrinnanBlack.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'BrinnanLight';
  src: url('../fonts/BrinnanLight.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'BrinnanBold';
  src: url('../fonts/BrinnanBold.otf') format('opentype');
  font-display: swap;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  line-height: 1.5
}

body {
  margin: 0;
  font-family: 'MontserratVariable', sans-serif;
  background-color: var(--background-color);
}

a {
  background-color: transparent
}

[hidden] {
  display: none
}

*,
:after,
:before {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: inherit
}

svg,
video {
  display: block;
  vertical-align: middle;
}

video {
  max-width: 100%;
  height: auto
}

.mycontainer {
  max-width: 1060px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px
}

@media(max-width: 768px) {
  .mycontainer {
    padding: 20px 10px;
  }
}

.inputTypeahead .twitter-typeahead,
.inputTypeahead .twitter-typeahead input,
.inputTypeahead .tt-menu {
  width: 100%;
}

.inputTypeahead .tt-menu {
  max-height: 150px;
  overflow-y: auto;
  background: #ffffff;
  padding: 10px;
}

.inputTypeahead .twitter-typeahead::before {
  content: "\e914"; /* Código Unicode para una flecha a la derecha, puedes cambiarlo según el icono que desees */
  font-family: 'icomoon' !important; /* Asegúrate de que la fuente que contiene el icono esté cargada */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  z-index: 1;
  right: 0;
  height: 100%;
  background: var(--primary-color);
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-top: 15px;
  width: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8px;
  pointer-events: none;
}

.inputTypeahead .twitter-typeahead:hover::before {
  background: var(--terciary-color);
}

.tt-suggestion.tt-selectable:hover {
  color: var(--secondary-color);
  cursor: pointer!important;
  font-family: 'BrinnanBold';
}

.titlesSmall {
  font-family: 'MontserratVariable';
  font-size: 12px;
}

.titlesSmallSpace {
  font-family: 'BrinnanBold';
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
}


.titlesMedium {
  font-family: 'BrinnanBold';
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
}

.titlesBig {
  font-family: 'BrinnanBold';
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 28px;
}

.tooltip-inner {
  position: relative;
  font-size: 12px!important;
  padding-left: 5px!important;
  padding-right: 5px!important;
  background: var(--primary-color)!important;
}

.tooltip-inner::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: var(--primary-color) transparent transparent transparent;
}

div[role="tooltip"] {
}

.owl-item.active {
  display: flex;
  justify-content: center;
}

@media(max-width: 768px) {
  .titlesBig {
    font-size: 18px;
  }
}

*::-webkit-scrollbar {
  width: 3px;               /* width of the entire scrollbar */
}

*::-webkit-scrollbar-track {
  background: #f1f1f1;        /* color of the tracking area */
}

*::-webkit-scrollbar-thumb {
  background-color: #f1f1f1;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid #888;  /* creates padding around scroll thumb */
}

* {
  scrollbar-width: thin;          /* "auto" or "thin" */
  scrollbar-color: #f1f1f1 #888;
}
