/* RESET
---------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --soft-grey: #efefef;
  --light-grey: #c8c8c8;
  --medium-grey: #888888;
  --dark-grey: #464646;
  --red: #cf122d;
  --dark-red: #910d21;
  --border-10: 10px;
}

/* GENERAL SETTINGS
---------------------------*/

@font-face {
  font-family: 'Public Sans';
  src: url('fonts/PublicSans-Regular.woff2') format('woff2'), url('fonts/PublicSans-Regular.woff') format('woff'),
    url('fonts/PublicSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Public Sans';
  src: url('fonts/PublicSans-Bold.woff2') format('woff2'), url('fonts/PublicSans-Bold.woff') format('woff'),
    url('fonts/PublicSans-Bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: var(--soft-grey);
  padding: 1vw;
}

body * {
  font-family: 'Public Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
}

::selection {
  background-color: var(--red);
  color: #fff;
}

/* NAVIGATION
---------------------------*/

nav {
  background-color: var(--red);
  border-radius: var(--border-10);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.indicador_progreso {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0 20px 0;
}
.indicador_progreso div {
  border-bottom: 3px solid var(--medium-grey);
  padding-bottom: 10px;
  width: 25%;
  text-align: center;
  user-select: none;
  color: var(--medium-grey);
}
.indicador_progreso div.active {
  border-color: var(--red);
  color: var(--dark-grey);
}

.menu_links_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.menu_links_wrapper a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}
.menu_links_wrapper .return a:before {
  content: url('data:image/svg+xml,<svg width="7" height="13" viewBox="0 0 7 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L1 6.5L6 1" stroke="white" stroke-linecap="round"/></svg>');
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.language-switch a:not(:last-child)::after {
  content: '|';
  margin-left: 4px;
}
.language-switch {
  padding: 0 0.2rem;
}

/* FORM
---------------------------*/
.selection,
.confirm,
.section-page {
  min-height: 100px;
  background-color: #fff;
  border-radius: var(--border-10);
  padding: 3rem;
}

.section-page * {
  max-width: 100ch;
}
.selection_wrapper,
.confirm_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  min-height: 75vh;
}

.selection.pack {
  grid-area: 1 / 1 / 6 / 2;
}
.selection.fechas {
  grid-area: 1 / 2 / 3 / 3;
}
.selection.alojamiento {
  grid-area: 3 / 2 / 6 / 3;
}
.selection.resumen {
  grid-area: 1 / 3 / 6 / 4;
  background-color: transparent;
  border: 2px solid var(--medium-grey);
  position: relative;
  min-height: 650px;
}

.selection.trip,
.confirm {
  grid-area: 1 / 1 / 6 / 3;
}

.selection-heading {
  margin-bottom: 40px;
}

h2 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 22px;
  color: var(--dark-grey);
  margin-bottom: 10px;
  line-height: 1.2;
}
p,
.date-tip,
.select-alojamiento span,
.extra-prices {
  color: var(--medium-grey);
  font-size: 14px;
  line-height: 1.2;
}

strong {
  font-weight: 600;
}

.radio-group {
  display: grid;
  grid-template-columns: 1fr;
}

.alojamientos-group,
.radio-group,
.experience-selected,
.date-selected,
.alojamiento-selected,
.extra-wrapper {
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--soft-grey);
}
.experience-selected,
.date-selected,
.alojamiento-selected {
  border-bottom: 2px solid var(--light-grey);
}

.extra-selected div:nth-child(2n) {
  border-bottom: 2px solid var(--light-grey);
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
}
.selection-group .radio-group {
  border-bottom: none;
  margin-bottom: 0;
}
.extra-inner-label {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
}
.extra-content label {
  height: 100%;
}
.radio-group label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.selection-group .radio-group label {
  flex-direction: row;
  justify-content: space-between;
}

.alojamientos-group a {
  padding-left: 25px;
}

.alojamientos-group a,
.extra-info a {
  color: var(--medium-grey);
  transition: color 0.3s ease;
}

.extra-info a {
  margin-bottom: 10px;
}

.alojamientos-group a:hover {
  color: var(--red);
}

.radio-group .radio-content {
  display: flex;
  align-items: center;
}
.radio-group .radio-description {
  flex: 1;
}
.radio-group input[type='radio'],
.radio-group input[type='checkbox'] {
  display: none;
}
.radio-group .custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--light-grey);
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-group .custom-radio::after {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.2s;
}
.radio-group input[type='radio']:checked + .custom-radio::after,
.radio-group input[type='checkbox']:checked + .custom-radio::after {
  opacity: 1;
}

.radio-description-wrapper {
  display: flex;
}

.radio-group .radio-title,
.selection-title,
.radio-title {
  font-weight: 600;
  width: 100%;
  font-size: 18px;
  color: var(--dark-grey);
  margin-bottom: 10px;
}

.descriptions {
  display: flex;
  flex-flow: column;
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
}

.radio-description {
  font-size: 14px;
  line-height: 1.2;
  color: var(--medium-grey);
}

.select-group {
  display: none;
  margin-bottom: 20px;
}
.select-group label {
  display: block;
  margin-bottom: 10px;
}

.included-extras-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.data-wrapper {
  display: flex;
  flex-flow: column;
}
.included-group,
.extras-group {
  flex-grow: 1;
  display: flex;
  /* flex-flow: column; */
  max-width: 50%;
  flex-wrap: wrap;
}

.extra-content {
  flex-grow: 1;
  flex-shrink: 0;
  max-width: 60%;
  flex-flow: column;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.extra-wrapper img {
  max-width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}

.extra-wrapper {
  display: flex;
  gap: 1rem;
  min-height: 28%;
  flex: fit-content;
}

.extras-group .extra-info {
  margin-bottom: 2px;
}

.extra-title-wrapper {
  display: flex;
  flex-flow: column;
  margin-bottom: 16px;
}

.extra-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: baseline;
}
.info-badge {
  color: var(--medium-grey);
  font-weight: 600;
  font-size: 14px;
}
#adultSelectGroup {
  display: block;
}
.number-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--soft-grey);
  width: fit-content;
}
.number-input input[type='number'] {
  width: 25px;
  text-align: center;
  border: none;
}
.number-input button {
  width: 30px;
  height: 30px;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  padding: 0;
  margin: 0 5px;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

.extra-info .select-group {
  margin-bottom: 0;
  display: block;
  margin-top: 12px;
}

.image-extra-wrapper {
  width: 36%;
}

.nightlife .resume-kids,
.activity .resume-kids {
  display: none;
}

/* Ocultar flechas en Chrome, Safari y Edge */
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Ocultar flechas en Firefox */
input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.menos {
  padding-bottom: 4px !important;
}

.person_wrapper {
  display: flex;
  justify-content: space-between;
}

.price-person,
.price-value {
  font-weight: 600;
  color: var(--medium-grey);
  font-size: 18px;
}
.person_wrapper {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--soft-grey);
}

.person-title label {
  color: var(--medium-grey);
  font-size: 16px;
}

h3 {
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: 600;
  color: var(--dark-grey);
  font-size: 20px;
  text-transform: uppercase;
}

.submit {
  background-color: var(--red);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit:hover {
  background-color: var(--dark-red);
}

.submit:disabled {
  background-color: var(--dark-grey);
  cursor: not-allowed;
}
.date-tip.inicio {
  display: block;
}

.date-tip-wrapper {
  margin-top: 40px;
}

.select-heading {
  margin-bottom: 10px;
}

.select-alojamiento {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

select {
  max-width: 60%;
}

.disabled-select {
  pointer-events: none;
  cursor: not-allowed !important;
  opacity: 0.4;
}

.radio-group.selected .custom-radio::after {
  opacity: 1;
}

.submit-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  position: absolute;
  width: calc(100% - 4rem);
  bottom: 2rem;
  left: 2rem;
}

.total-price {
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
  background-color: var(--light-grey);
  border-radius: 8px;
  padding: 1rem;
}

.price-resume {
  min-height: 40px;
}
.resume-wrapper {
  display: flex;
  flex-flow: column;
}

.tool-tip,
.price-resume {
  color: var(--medium-grey);
}

.resultado-experiencia {
  font-weight: 600;
  color: var(--dark-grey);
  text-transform: capitalize;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.price-title {
  color: var(--medium-grey);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}

.price-total-value {
  font-weight: 600;
  color: var(--dark-grey);
  font-size: 22px;
  display: inline;
}

.price-vat {
  display: inline;
  color: var(--medium-grey);
}

.aceptacion-wrapper {
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.aceptacion-wrapper a {
  color: var(--dark-red);
}

/* CALENDAR
---------------------------*/
.daterangepicker.ltr.auto-apply.show-calendar.opensright {
  z-index: 999999;
}
input[name='date'],
select,
.form-group input,
.form-group textarea,
#card-element {
  width: 100%;
  border: 2px solid var(--soft-grey);
  border-radius: 5px;
  min-height: 40px;
  position: relative;
  box-sizing: border-box;
  padding-left: 4rem;
  cursor: pointer;
  z-index: 999999;
  background-color: transparent;
}
#card-element {
  padding-left: 1rem;
}
select {
  padding-left: 1rem;
  color: var(--dark-grey);
}

.icons-picker {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  transform: translateY(-50%);
}

.calendar-selection {
  width: 100%;
  position: relative;
  display: block;
}

.daterangepicker td.active,
.daterangepicker td.active:hover,
.active.end-date.in-range.available,
.active.start-date.in-range.available {
  background-color: var(--red) !important;
}

.daterangepicker td.in-range {
  background-color: var(--soft-grey) !important;
}

.month {
  font-weight: 600;
  color: var(--dark-grey) !important;
}

.cancelBtn.btn.btn-sm.btn-default,
.daterangepicker .drp-buttons .btn {
  background-color: var(--light-grey) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 5px !important;
  padding: 1rem 2rem !important;
  cursor: pointer;
}

.daterangepicker .drp-buttons .btn.applyBtn {
  background-color: var(--red) !important;
}

thead tr:last-child * {
  color: var(--medium-grey);
}

/* .drp-buttons {
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
} */

.drp-selected {
  display: flex !important;
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
  padding-left: 10px;
  font-weight: 600;
  color: var(--dark-grey);
}

.daterangepicker.show-calendar {
  box-shadow: 0 12px 30px 0 #00000012;
}
.cancelBtn.btn.btn-sm.btn-default:hover {
  background-color: var(--dark-grey) !important;
}
.applyBtn.btn.btn-sm.btn-primary:hover {
  background-color: var(--dark-red) !important;
}

.cancelBtn.btn.btn-sm.btn-default,
.applyBtn.btn.btn-sm.btn-primary {
  transition: all 0.3s ease;
}

.daterangepicker::before,
.daterangepicker {
  border: none !important;
  border-right: none !important;
  border-left: none !important;
  border-bottom: none !important;
}
.daterangepicker {
  padding: 1rem !important;
}

.calendar-table td {
  padding: 0.1rem !important;
}

.start-date.today,
.daterangepicker td.start-date.today.disabled:hover {
  background-color: var(--medium-grey) !important;
}

.daterangepicker .calendar-table td.active.start-date.end-date.available.in-range {
  pointer-events: none !important;
}

@media (max-width: 1500px) {
  .select-heading {
    display: flex;
    flex-flow: column;
  }
  .alojamientos-group a {
    padding-left: 0;
    margin-bottom: 10px;
  }
  select {
    margin-right: 10px;
  }
  .selection {
    padding: 2rem;
  }
}

@media (max-width: 1400px) and (min-width: 1000px) {
  .submit-wrapper {
    flex-flow: column;
  }
}

@media (max-width: 1000px) {
  .selection_wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .selection.pack,
  .selection.fechas,
  .selection.alojamiento,
  .selection.resumen,
  .selection.trip,
  .selection {
    flex: 1 0 50%;
  }
  .selection {
    min-height: auto;
    padding: 2.4rem;
  }
  .selection.resumen {
    min-height: inherit;
  }
}

@media (max-width: 640px) {
  .selection.pack,
  .selection.fechas,
  .selection.alojamiento,
  .selection.resumen,
  .selection.trip,
  .selection {
    flex: 1 0 50%;
  }
  .indicador_progreso * {
    font-size: 14px;
  }
  .indicador_progreso {
    display: none;
  }
  .selection.pack,
  .selection:first-child {
    margin-top: 10px;
  }

  .radio-description-wrapper {
    display: flex;
    flex-flow: column;
  }

  .radio-group .custom-radio {
    margin-left: 0 !important;
    margin-top: 10px;
  }
  .submit-wrapper {
    flex-flow: column;
  }
  .select-heading {
    display: flex;
    flex-flow: column;
  }
  .alojamientos-group a {
    padding-left: 0;
  }

  .select-alojamiento {
    flex-flow: column;
    align-items: flex-start;
  }
  select {
    margin: 10px 0;
  }

  .price-resume {
    margin-bottom: 80px;
  }

  .submit-wrapper {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
  }
  .daterangepicker.ltr.auto-apply.show-calendar.opensright {
    left: auto;
    right: auto;
  }
  .included-extras-wrapper {
    flex-flow: column;
  }
  .included-group,
  .extras-group {
    max-width: 100%;
  }

  .extra-content {
    min-width: 60%;
  }

  .selection {
    min-height: auto;
    padding: 1.6rem;
  }
  .selection.resumen {
    min-height: initial;
  }
}

/* DATOS
---------------------------*/
.form-group {
  margin-bottom: 0.7rem;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--dark-grey);
}

.form-group input,
.form-group textarea {
  padding: 0.7rem;
  cursor: text;
}

.data-wrapper .tool-tip {
  text-align: right;
  color: var(--light-grey) !important;
  font-size: 0.8rem;
}

.exclamation {
  font-weight: 600;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 4px;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

.aviso-wrapper {
  margin-bottom: 20px;
}

@media (min-width: 690px) {
  .form-inline .form-group {
    flex: 1;
  }
  .form-inline {
    display: flex;
    gap: 1rem;
  }
}

/*FOOTER*/
.legal_terms {
  padding: 20px 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal_terms a {
  color: var(--medium-grey);
  transition: all 0.3s ease-in-out;
}

.legal_terms a:hover {
  color: var(--color-primary);
}

/*MODAL*/
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999999;
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  position: relative;
  overflow-y: scroll;
  max-height: 500px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.alojamiento_detalle {
  padding: 20px 0;
  border-bottom: 1px solid var(--light-grey);
  display: flex;
  max-width: 100%;
  gap: 1rem;
}

.alojamiento-img img {
  display: flex;
  max-width: 200px;
}

.alojamiento-content a {
  color: var(--red);
}
@media (max-width: 640px) {
  .alojamiento_detalle {
    flex-flow: column;
  }
}
