 :root {
    --my-back-color: #fff;
    --my-primary-color: #fff;
    --my-second-color: #fff;
    --font-size-tpl: 0.75rem;
 }

 body{
     font-family: 'Poppins';
     font-size: var(--font-size-tpl);
 }

 .return_option{
     cursor: pointer;
     margin-bottom: 15px;
     margin-left: 10px;
 }
/* Estilos de inputs en buscador */
.form-control:disabled, .form-control[readonly]{
    box-sizing: border-box;
    width: 100%;
    height: calc(2em + 2px);
    margin: 0;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 1.5em;
    background: var(--my-back-color);
    resize: none;
    outline: none;
    background: #dddddd;
}

select.form-control{
    box-sizing: border-box;
    width: 100%;
    /*height: calc(2em + 2px);*/
    height: calc(2.5em + 2px);
    margin: 0;
    /*padding: 1em;*/
    border: 1px solid #ccc;
    border-radius: 1.5em;
    background: var(--my-back-color);
    resize: none;
    outline: none;
    color: #898989;
}

select.form-control + label[placeholder]{
    padding-right: 5px;
    padding-left: 5px;
    top: -60%;
    position: relative;
    left: 2%;
}
select.form-control {
    content: attr(alt);
    color: gray;
    font-size: inherit;
}
select.form-control + label[placeholder][alt]:before{
    content: '' !important;

    }


/*
select.form-control:focus + label[placeholder]:focus {
  color: #00bafa;
}

select.form-control:focus + label[placeholder]:before,
select.form-control:valid + label[placeholder]:before {

    margin-top: -70px;
    position: absolute;

}

select.form-control:invalid + label[placeholder][alt]:before {
  content: attr(alt);
  background: #fff;
  padding-right: 5px;
  padding-left: 5px;
}

select.form-control + label[placeholder]:before {
  content: attr(placeholder);
  display: inline-block;
  margin: 0 calc(1em + 2px);
  padding: 0 2px;
  color: #898989;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
  background-image: linear-gradient(to bottom, #fff, #fff);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: center;
}
*/

/*
select.form-control:focus {
  border-color: #00bafa;
}
select.form-control:focus + label[placeholder]:before {
  color: #00bafa;
}
select.form-control:focus + label[placeholder]:before,
select.form-control:valid + label[placeholder]:before {
  transition-duration: 0.2s;
  transform: translate(0, -1.5em) scale(0.9, 0.9);
}
select.form-control:invalid + label[placeholder][alt]:before {
  content: attr(alt);
  background: #fff;
  padding-right: 5px;
  padding-left: 5px;
}
select.form-control + label[placeholder] {
  display: block;
  pointer-events: none;
  line-height: 1.25em;
  margin-top: calc(-3em - 2px);
  margin-bottom: calc((3em - 1em) + 2px);
}
select.form-control + label[placeholder]:before {
  content: attr(placeholder);
  display: inline-block;
  margin: 0 calc(1em + 2px);
  padding: 0 2px;
  color: #898989;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
  background-image: linear-gradient(to bottom, #fff, #fff);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: center;
}

*/
.tab-content{
    margin-top: 10px;
}

input[type="text"] {
  box-sizing: border-box;
  width: 100%;
  font-size: inherit;
  /*height: calc(2em + 2px);*/
  height: calc(2.5em + 2px);
  margin: 0;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 1.5em;
  background: #fff;
  resize: none;
  outline: none;
  margin-bottom: 15px !important;
}
input[type="text"][required]:focus {
  border-color: #00bafa;
}
input[type="text"][required]:focus + label[placeholder]:before {
  color: #00bafa;
}
input[type="text"][required]:focus + label[placeholder]:before,
input[type="text"][required]:valid + label[placeholder]:before {
  transition-duration: 0.2s;
  transform: translate(0, -1.5em) scale(0.9, 0.9);
}
input[type="text"][required]:invalid + label[placeholder][alt]:before {
  content: attr(alt);
  background: #fff;
  padding-right: 5px;
  padding-left: 5px;
}
input[type="text"][required] + label[placeholder] {
  display: block;
  pointer-events: none;
  line-height: 1.25em;
  margin-top: calc(-3em - 2px);
  margin-bottom: calc((3em - 1em) + 2px);
}
input[type="text"][required] + label[placeholder]:before {
  content: attr(placeholder);
  display: inline-block;
  margin: 0 calc(1em + 2px);
  padding: 0 2px;
  color: #898989;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
  background-image: linear-gradient(to bottom, #fff, #fff);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: center;
}




input[type="text"] .disabled {
  box-sizing: border-box;
  width: 100%;
  /*height: calc(2em + 2px);*/
  height: calc(2.9em + 2px);
  margin: 0;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 1.5em;
  background: #fff;
  resize: none;
  outline: none;
  margin-bottom: 15px !important;
}


input[type="email"] .disabled [required]:focus {
  border-color: #00bafa;
}

input[type="text"] .disabled [required]:focus + label[placeholder]:before {
  color: #00bafa;
}




input[type="email"] {
  box-sizing: border-box;
  width: 100%;
  font-size:inherit;
  /*height: calc(2em + 2px);*/
  height: calc(2.5em + 2px);
  margin: 0;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 1.5em;
  background: #fff;
  resize: none;
  outline: none;
  margin-bottom: 15px !important;
}

input[type="email"][required]:focus {
  border-color: #00bafa;
}

input[type="text"][required]:focus + label[placeholder]:before {
  color: #00bafa;
}

input[type="email"][required]:focus + label[placeholder]:before,
input[type="email"][required]:valid + label[placeholder]:before {
  transition-duration: 0.2s;
  transform: translate(0, -1.5em) scale(0.9, 0.9);
}
input[type="email"][required]:invalid + label[placeholder][alt]:before {
  content: attr(alt);
  background: #fff;
  padding-right: 5px;
  padding-left: 5px;
}
input[type="email"][required] + label[placeholder] {
  display: block;
  pointer-events: none;
  line-height: 1.25em;
  margin-top: calc(-3em - 2px);
  margin-bottom: calc((3em - 1em) + 2px);
}
input[type="email"][required] + label[placeholder]:before {
  content: attr(placeholder);
  display: inline-block;
  margin: 0 calc(1em + 2px);
  padding: 0 2px;
  color: #898989;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
  background-image: linear-gradient(to bottom, #fff, #fff);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: center;
}

.title-sub-passenger{
    color: #000;
    font-weight: bold;
    margin-bottom: 20px !important;
}



.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{
    border-radius: 50px;
    margin-top: 10px;
    background: var(--my-primary-color) !important;
    color: #ffffff;
}

a.nav-link{
    border-radius: 50px !important;
    margin-top: 10px !important;
}
a.nav-link:hover{
    border: 1px solid var(--my-second-color) !important;
}


.wrapper-search{
	/*border: 1px solid #ddd;*/
}

.update-rate{
    height: calc(2.9em + 2px);
    background: #fbffd6;
    color: #000000;
    border-radius: 1.3em;
    text-align: center;
}

.input-btn-busqueda > a.btn.btn-primary{
    border-radius: 30px;
    padding: 5px 25px;
}
.data-contact{
    border-radius: 5px;
}

.data-contact.whatsapp{
    text-align: right !important;
}


.detail-car{
    margin: 5% 0 0 1%;
}


/* SEGUROS */



.calendar-input .caleran-header, .caleran-container-mobile .caleran-input .caleran-header {
    display: -webkit-box;
    /* display: flex; */
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -8px;
    /* border-bottom: 1px solid #ddd; */
}

calendar-input .caleran-header .caleran-header-separator, .calendar-input .caleran-header .caleran-header-separator {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    display: block;
    margin: 0;
    margin-top: -2px;
    /* padding: 0 16px; */
    margin-left: -7px;
    margin-right: 3px;
    color: var(--my-first-color);
    font-size: 25px;
}


.calendar-input .caleran-header .caleran-header-start .caleran-header-start-day, .calendar-input .caleran-header .caleran-header-start .caleran-header-end-day, .calendar-input .caleran-header .caleran-header-end .caleran-header-start-day, .calendar-input .caleran-header .caleran-header-end .caleran-header-end-day, .calendar-input .caleran-header .caleran-header-start .caleran-header-start-day, .calendar-input .caleran-header .caleran-header-start .caleran-header-end-day, .calendar-input .caleran-header .caleran-header-end .caleran-header-start-day, .calendar-input .caleran-header .caleran-header-end .caleran-header-end-day {
    float: left;
    font-size: 2.5em;
    color: var(--my-base-color);
    margin-top: -5px;
    margin-right: 1px;
    font-weight: 100;
    text-align: left;
}

.calendar-input .caleran-header .caleran-header-start .caleran-header-start-date, .calendar-input .caleran-header .caleran-header-start .caleran-header-end-date, .calendar-input .caleran-header .caleran-header-end .caleran-header-start-date, .calendar-input .caleran-header .caleran-header-end .caleran-header-end-date, .calendar-input .caleran-header .caleran-header-start .caleran-header-start-date, .calendar-input .caleran-header .caleran-header-start .caleran-header-end-date, .calendar-input .caleran-header .caleran-header-end .caleran-header-start-date, .calendar-input .caleran-header .caleran-header-end .caleran-header-end-date {
    font-size: 0.9em;
    color: var(--my-base-color);
    display: inline-block;
}
.calendar-input .caleran-header .caleran-header-start .caleran-header-start-weekday, .calendar-input .caleran-header .caleran-header-start .caleran-header-end-weekday, .calendar-input .caleran-header .caleran-header-end .caleran-header-start-weekday, .calendar-input .caleran-header .caleran-header-end .caleran-header-end-weekday, .calendar-input .caleran-header .caleran-header-start .caleran-header-start-weekday, .calendar-input .caleran-header .caleran-header-start .caleran-header-end-weekday, .calendar-input .caleran-header .caleran-header-end .caleran-header-start-weekday, .calendar-input .caleran-header .caleran-header-end .caleran-header-end-weekday {
    font-size: 0.7em;
    color: var(--my-base-color);
}

.search-section .form-control {
    border-radius: 5px;
    -moz-border-radius: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 1px 1px var(--my-background-content) inset;
    color: var(--my-base-color);
    display: block;
    font-size: 15px;
    height: 40px;
    line-height: 1.42857;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}


.room-selected {
    font-size: 16px !important;
}

.dialog {
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    border-radius: 5px;
    border: 1px solid var(--my-first-color);
    background-color: #f9f9f9;
    position: absolute;
    display: none;
    z-index: 999;
    width: 95%;
    padding: 10px;
    position: relative;
}


.tipo_huesped {
    height: 40px;
}

.search-section .input-group-addon.disabled {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #000;
    background-color: var(--my-base-color);
    color: #000;
}

.search-section .input-group-addon {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid var(--my-first-color);
    background-color: var(--my-white-color);
    color: var(--my-first-color);
}

.input_num_pasajero{
    width:50% !important;
    text-align: center;
}

.form-gp.grupos_pasajeros {
    width: 100px;
}

.grupos_pasajeros {
    display: inline;
}

.btn-circle {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    padding: 10px;
}

.room-selected{
    display: block;
    pointer-events: none;
    line-height: 1.25em;
    margin-left: 10px;
    color: #000000;
}

.search-section .input-group-addon.disabled {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #000;
    background-color: var(--my-base-color);
    color: #000;
}

.search-section .input-group-addon {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid var(--my-first-color);
    background-color: var(--my-white-color);
    color: var(--my-first-color);
}

.input_num_pasajero{
    width:50% !important;
    text-align: center;
}

.form-gp.grupos_pasajeros {
    width: 100px;
}

.grupos_pasajeros {
    display: inline;
}

.caleran-header-start-day, .caleran-header-end-day{
    color: var(--color-turquesa) !important;
    font-weight: bolder;
}

.caleran-header-start-date, .caleran-header-start-weekday, .caleran-header-end-date, .caleran-header-end-weekday {
    color: #000 !important;
    font-weight: 500;
}

.caleran-header-separator {
    color: var(--color-yellow) !important;
}

.texto-group-button{
    font-size: 11px;
    margin-left: 5px;
}

.btn-mobile-cotizar{
    display: none;
}

.row.row-ciudad {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

#date_calendar, #date_calendar_seguro{
    box-sizing: border-box;
    width: 100%;
    height: calc(3em + 2px);
    margin: 0 0 1em;
    /* padding: 1em; */
    border: 1px solid #ccc;
    border-radius: 1.5em;
    background: var(--my-back-color);
    resize: none;
    outline: none;
}


.input_passenger {
    box-sizing: border-box;
    width: 100%;
    height: calc(3em + 2px);
    margin: 0 0 1em;
    padding: 0.9em;
    border: 1px solid #ccc;
    border-radius: 1.5em;
    background: var(--my-back-color);
    resize: none;
    outline: none;
    color: #898989;
}


.grupos_pasajeros {
    display: inline;
}

.btn-circle{
    background: var(--my-second-color);
    color: #fff;
    padding: 7px 10px 10px 9px;
}

.message-alert{
    background: #fdffa0;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 400;
}

.selected-rate >option{
    color: #898989;
}

select{
    margin-bottom: 15px !important;
}

.daterangepicker{
    font-size: 0.65rem;
}

.angucomplete-image {
    height: 20px !important;
    width: 20px !important;
}
