.daterangepicker {
  position: absolute;
  max-width: 460px;
  overflow-y: initial;
  padding: 0;
  height: auto;
  border-radius: 15px;
  animation: TopEfectTransfor 0.3s ease;
  z-index: 4990;
  display: none;
}
.home-page-body .daterangepicker {
  /*top: 40% !important;*/
}
.search-flight-pages-body .daterangepicker {
  /*left: 4% !important;
  top: 50% !important;*/
}
/* Estilo Solo para el home */

/* FIN Estilo Solo para el home */

.daterangepicker:before,
.daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: "";
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  display: none;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  display: none;
}

.content-daterangepicker {
    height: 95vh;
    border-radius: 10px;
    background: var(--c-blanco);
    position: relative;
    margin: auto;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@keyframes TopEfect {
  from {
    top: 500px;
  }
  to {
    top: 0px;
  }
}
.daterangepicker::-webkit-scrollbar,
.content-daterangepicker::-webkit-scrollbar {
  display: none;
}
.daterangeIdaVuelta {
    width: 100%;
    background: var(--c-action-20);
    color: var(--c-action);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 20px;
    position: fixed;
    top: 0px;
}
@media (min-width:600px){
  .daterangeIdaVuelta{
    background: var(--c-scale-10);
    display: none !important;
  }
}
.content-body-date {
  height: 100vh;
  width: 100%;
  min-height: 100%;
  overflow: scroll;
  display: flex;
  margin: auto;
  margin-top: 80px;
}
.body-calendar {
    margin: auto;
    width: 96%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.infoCalendarIda,
.infoCalendarVuelta {
    width: 48%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.expandCalendar {
  margin: auto;
}
.infoCalendarIda h4,
.infoCalendarVuelta h4 {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    gap: 5px;
}
.daterangeIda,
.daterangeVuelta {
    font-size: 14px;
}
@media (min-width:600px) {
  .infoCalendarIda h4,
  .infoCalendarVuelta h4,
  .daterangeIda,
  .daterangeVuelta{
    color: var(--c-scale-90);
  }
}

.active-calendar-info {
    /*border: 3px solid #01c2c6;*/
    
}
.active-title-color {
  /*color: #333 !important;*/
  font-weight: bold;
  font-size: 14px ;
}

.titleCalendar {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
}

.drp-calendar {
    background: transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges,
.daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
    width: 100%;
    background: var(--c-blanco-transparent-90);
    /* display: flex;
    text-align: center;
    justify-content: space-between; */
    margin: auto;
    gap: 10px;
    padding: 10px;
    @media (min-width:768px){
      background: transparent;
    }
}

.daterangepicker .drp-calendar {
  display: none;
  /*max-width: 270px;*/
}

.daterangepicker .drp-calendar.left {
  
}

.daterangepicker .drp-calendar.right {
  
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  height: 40px;
  display: flex;
  width: 40px;
  background: var(--c-primary-10);
  border-radius: 20px;
  position: relative;
  filter: opacity(.5);
  transition: all .3s ease;
  &:hover{
    background: var(--c-primary-20);
    filter: opacity(1);
    transition: all .3s ease;
  }
}
.prev span:before,
.next span:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: solid var(--c-primary);
  border-width: 3px 3px 0 0;
}
.next span:before{
  left: -3px;
  transform: rotate(45deg);
}

.prev span:before {
  left: 3px;
  transform: rotate(-135deg);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    max-width: 40px;
    height: 40px;
    color: var(--c-scale-90);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
}
.daterangepicker .calendar-table th.next,
.daterangepicker .calendar-table th.prev {
  position: fixed;
  top: 80px;
}
@media (min-width: 600px) {
  .daterangepicker .calendar-table th.next,
  .daterangepicker .calendar-table th.prev {
    position: static;
  }
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.table-tr-week th {
    color: var(--c-scale-90);
}

.daterangepicker td.available:hover {
  background-color: var(--c-action-20);
  border-color: transparent;
  color: var(--c-action-hover);
}

.daterangepicker td.week,
.daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  color: var(--c-scale-30);
}

.daterangepicker td.in-range {
  background-color: var(--c-action-20);
  border-color: transparent;
  color: var(--c-scale-90);
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 10px;
}

.daterangepicker td.end-date {
  border-radius: 10px;
}

.daterangepicker td.start-date.end-date {
  border-radius: 5px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: var(--c-action);
  border-color: transparent;
  color: var(--c-blanco) !important;
  position: relative;
  z-index: 1;
}
.daterangepicker td.active.start-date.end-date,
.daterangepicker td.active.start-date,
.daterangepicker .selected.start{
  &:before{
    content: "Ida";
  }
}
.daterangepicker td.active.end-date,
.daterangepicker .selected.end{
  &:before{
    content: "Vuelta";
  }
}
#hoteles-page{
  .daterangepicker td.active.start-date.end-date,
  .daterangepicker td.active.start-date,
  .daterangepicker .selected.start{
    &:before{
      content: "Entrada";
    }
  }
  .daterangepicker td.active.end-date,
  .daterangepicker .selected.end{
    &:before{
      content: "Salida";
    }
  }
}
.daterangepicker td.active.start-date.active.end-date,
.daterangepicker td.active.start-date,
.daterangepicker td.active.end-date,
.daterangepicker .selected.start,
.daterangepicker .selected.end{
  &:before{
    width: fit-content;
    text-align: center;
    font-size: 10px;
    font-weight: 400;
    
    position: absolute;
    bottom: 8px;
    left: 0px;
    right: 0;
    margin: auto;
    z-index: 0;
  }
  @media (min-width:768px){
    padding-top: 0px;
    &:before{
      font-size: 8px;
      bottom: 5px;
    }
  }
}
.daterangepicker td.off.end-date,
.daterangepicker td.off.start-date{
  &:before{
    display: none;
  }
}

.daterangepicker th.month {
  width: auto;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-scale-90);
  text-transform: uppercase;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
  color: var(--c-scale-30);
  cursor: not-allowed;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
  font-size: 10px;
  padding: 10px 5px;
  height: auto;
  margin: 0;
  cursor: default;
  border: 2px solid #aaa;
  border-radius: 10px;
  color: #333;
  font-weight: bold;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 50%;
}

.monthselect,
.yearselect {
  color: #740846;
  border: 1px solid #740846;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #d9e0ee;
  border: 1px solid #d9e0ee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 15px;
  padding-right: 8px;
  margin: 10px 0;
}

.daterangepicker .drp-buttons .btn {
    /*width: 48%;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    border: none;
    order: 3;
    border-radius: 5px;
    transition: all 0.3s;*/
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none !important;
}
.daterangepicker .drp-buttons .cancelBtn {
    /*color: #44506c;
    background: #f1f2f6;*/
    
}
.daterangepicker .drp-buttons .applyBtn{
    /*background: #5e6e92;
    opacity: 1;*/
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
  display: none;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #d9e0ee;
}

.daterangepicker .ranges li.active {
  background-color: #bd006b !important;
  color: #fff;
}

.btn-primary.focus,
.btn-primary:focus {
  background-color: #080056 !important;
  border-color: transparent !important;
  outline: none;
}

/*  ------- Resultado Search - Travel Selling --------  */

.applyBtn {
  /*background: #9b0059 !important;*/
  display: block;
}

.btn-primary:active {
  /*background-color: #bd006b !important;*/
  border-color: none !important;
}

.btn-primary:hover {
  /*background-color: #3a0824 !important;*/
  border-color: transparent !important;
}

.btn-default:hover {
  background-color: #E6EAF3;
  border-color: transparent !important;
  transition: all 0.3s;
  box-shadow: none;
}

/* SOLO PARA MOBILE */
@media (max-width: 599px) {
  /* Calendario Container */
  #index-page .daterangepicker,
  .search-flight-pages-body .daterangepicker,
  .daterangepicker {
    position: fixed;
    color: var(--c-scale-80);
    background: transparent;
    width: 100%;
    min-width: 100%;
    height: 100vh;
    padding: 5px 3px;
    border-radius: 0;
    top: 0px !important;
    left: 0 !important;
    z-index: 10001;
    display: none;
    line-height: 1em;
    overflow-y: scroll;
  }
  #searchflight-page .daterangepicker{
    z-index: 11000;
    overflow-y: scroll;
  }

  /*btn Cancelar-Aplicar*/
  .drp-buttons {
    position: fixed;
    bottom: 0px;
    left: 0;
    right: 0;
  }
}

@media (min-width: 600px) {
    /*@keyframes TopEfectTransform {
        from {
          transform: translateY(500px);
        }
        to {
          transform: translateY(0px);
        }
    }*/
    .daterangepicker{
      z-index: 1000;
      max-width: fit-content !important;
      margin: auto;
      left: 0 !important;
      right: 0 !important;
      margin-top: -120px !important;
    }
  .content-daterangepicker {
    height: auto;
    width: fit-content;
    max-width: fit-content;
    margin: 0;
    animation: none;
    padding: 0px;
    box-shadow: var(--box-sh-item);
    overflow: hidden;
    overflow-y: inherit;
    border: 2px solid transparent;
    background: linear-gradient(var(--c-blanco-transparent-50), var(--c-blanco-transparent-70)) padding-box,
                linear-gradient(140deg, var(--c-blanco-transparent-80), var(--c-blanco-transparent-60)) border-box;
    backdrop-filter: blur(10px);
    border-radius: 20px;
  }
  .titleCalendar {
    width: 100%;
  }
  .daterangeIdaVuelta {
    margin-bottom: 0;
    position: inherit;
    border-radius: 5px;
  }
  .content-body-date {
    min-height: fit-content;
    height: auto;
    overflow: initial;
    padding: 10px 20px;
    margin: 0;
  }
  .infoCalendarIda, 
  .infoCalendarVuelta{
    font-size: 12px;
    gap: 0;
  }
  .active-title-color {
    font-size: 14px !important;
  }
  .body-calendar {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  .drp-calendar {
    border: none;
  }
  .daterangepicker .drp-calendar.left {
    
  }
  .drp-calendar {
    background: transparent;
    padding: 0;
  }

  .daterangepicker th.month {
    width: auto;
    height: 50px;
    font-size: 16px !important;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
  }
  .daterangepicker .calendar-table .table-tr-week th,
  .daterangepicker .calendar-table td {
    font-size: 14px;
    padding: 8px;
    color: var(--c-scale-90);
    min-width: 40px;
    height: 40px;
  }
  .daterangepicker td.off,
  .daterangepicker td.off.in-range,
  .daterangepicker td.off.start-date,
  .daterangepicker td.off.end-date {
    color: var(--c-scale-30);
    background: transparent;
    font-weight: 300;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    background: transparent;
  }

  .daterangepicker.show-calendar .drp-buttons {
    justify-content: flex-end;
    padding: 20px;
  }
  .daterangepicker .drp-buttons .btn {
    /*font-size: 12px;
      padding: 10px 30px;*/
      width: fit-content;
  }
  .daterangepicker .drp-buttons .cancelBtn {
    
  }

}

@media (min-width: 820px){
  
  #searchflight-page .daterangepicker{
    position: fixed ;
    height: fit-content;
    bottom: 0;
    top: 0 !important;
  }
  .daterangepicker{
    /*left: auto !important;
    right: 10% !important;*/
  }
}

@media (min-width: 992px){
  
}
