:root {
    --primary_color: #b6a6d6;
    --secondary_color: #664eb0;
    --terciary_color: #361b78;
    --primary_color_light: #79d3cd81;
    --secondary_color_light: #94b1e780;
    --terciary_color_light: #8888d383;
    --bg_search_form_color: #FFFFFF;
    --bg_search_form_opacity: 0.9;
    --navbar-height: 62px;
}
body {
    padding-top: var(--navbar-height);
}
.main-navbar {
    padding: 10px;
    max-height: var(--navbar-height);
}
.main-navbar .navbar-nav li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}
.terciary-color {
    color: var(--terciary_color);
}
.input-date-center{
    line-height: inherit !important;
}
.row {
    margin-left: auto;
    margin-right: auto;
}
.p-10 {
    padding: 10px;
}
.pb-10 {
    padding: 10px;
}
.padding {
    padding: 20px 5px;
}
.margin-auto {
    margin: auto;
}
.margin-bottom {
    margin-bottom: 20px;
}
.margin-left-3 {
    margin-left: 3px;
}
.widht {
    width: 100%;
}
.align-nav-items {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}
.pt-0 {
    padding-top: 0px !important;
}
.image-responsive {
    object-fit: cover;
    width: 100%;
    height: 160px !important;
}
.banner-responsive {
    object-fit: cover;
    width: 100%;
    height: 350px !important;
}
.gallery {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.gallery-item{
    display: -webkit-flex;
    display: flex;
}
.five-lines-text{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.two-lines-text{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}
.thumbnail {
    height: 100%;
    margin-bottom: 0px;
}
.thumbnail-title {
    margin-top: -25px;
}
/* icono cadena hotel */
.fa-building{
    color: var(--secondary_color);
}
/* Dollar exchange */
.background-dollar {
    opacity: var(--bg_search_form_opacity);
    background: var(--secondary_color);
    border-radius: 41% 0 0 41%;
    width: 54px;
    height: 43px;
    position: fixed;
    top: 44.9%;
    right: -11px;
    z-index: 1000;
}
.dollar-exchange-rate {
    opacity: var(--bg_search_form_opacity);
    background-image: url(../img/icons8-money-circulation-50-white.png);
    background-size: 62%;
    width: 63px;
    height: 40px;
    position: fixed;
    top: 45%;
    right: -23px;
    z-index: 1000;
}
.tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--secondary_color);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 20%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}
  
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}
  
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }
  /* End Dollar exchange */
.rotate {
    transform: rotate(180deg);
}
.border-bottom-primary {
    border-bottom: 1px solid var(--terciary_color);
}
.tour-bind, #tour-bind {
    color: var(--secondary_color);
    font-weight: bold;
}
.form {
    width: calc(100% - 30px);
    max-width: 900px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.container-position {
    padding-top: 10px;
}
.bg-search-form {
    padding: 20px;
    background: var(--bg_search_form_color);
    opacity: var(--bg_search_form_opacity);
    border-radius: 16px;
}
.btn-buscar {
    background-color: var(--secondary_color);
    color: white;
}
.btn-buscar:hover {
    color: var(--primary_color);
}
.button-no-style {
    background: none;
    border: 0;
    color: inherit;
    /* cursor: default; */
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    -webkit-user-select: none; /* for button */
    -webkit-appearance: button; /* for input */
    -moz-user-select: none;
    -ms-user-select: none;
}
.card-fly {
    padding-bottom: 20px;
    border: 1px solid var(--secondary_color);
    border-radius: 10px;
}
.fly-card-title {
    padding: 7px;
}
.fly-card-shadow {
    box-shadow: 1px 1px 10px var(--primary_color);
    border-radius: 10px;
}
.fly-item-price {
    padding-left: 7px;
    padding-right: 7px;
}
footer {
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .media-flex-row{
        display: flex !important;
        flex-direction: row;
    }
    .media-flex {
        display: flex;
    }
    .main-navbar {
        max-height: none;
    }
    .main-navbar .navbar-nav li > a {
        flex-direction: row;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .main-navbar .navbar-nav li > a > svg{
        margin-right: 15px;
    }
    
}