.in-block{
  padding: 40px 0;
}
.text-warning{
  color: #cb8905;
}
.text-success{
  color: #078407;
}
/* 1. Contenedor principal: Espaciado entre campos */
.field-wrapper {
  margin-bottom: 1.25rem; /* Separación vertical consistente */
  width: 100%;
  position: relative;
}
.field-wrapper .payment{
  gap: 6px;
  display: flex;
  align-items: center;
}
.field-btn{
  display: inline-block;
  position: relative;
}
.field-btn .input-active,
.field-group .input-active,
.field-wrapper .input-active{
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:10;
  position:absolute;
  border-radius:0.3125rem;
  cursor:not-allowed!important;
  background-color:rgba(255,255,255,.3)
}
.form-footer .field-wrapper{
  margin-bottom: 0;
}
/* 2. El Grupo: El corazón del diseño (Flexbox) */
.field-group,
th .field-input,
td .field-input {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field-group{
  position:relative
}
/* Estado Focus: Efecto profesional al seleccionar */
.kr-popin-button{
  border-radius: 20px;
}
.csw-privacy-term{
  padding-top: 15px;
  border-top: 1px solid var(--csw-border-light);
}
/* Textarea: Altura adaptable y estilo uniforme */
textarea.field-input {
  min-height: 120px;
  resize: vertical;
  padding: 1rem;
  font-family: inherit;
  border: 1px solid #dcdcdc;
}
.field-group:focus-within,
th .field-input:focus-within,
td .field-input:focus-within,
textarea.field-input:focus-within {
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}
/* 3. Icono: Ajuste estético */
.field-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  color: inherit;
  min-width: 26px;
  font-weight: 600;
  border-left: 1px solid #e2e8f0;
}
/* Opcional: Si el icono está a la izquierda, cambiamos el borde a la derecha */
.field-group .field-icon:first-child {
  border-left: none;
  border-right: 1px solid #e2e8f0;
}
td .field-group{
  margin: 3px auto;
}
td .field-group .field-input{
  border: 0;
  box-shadow: none;
}
/* 4. Input y Select: Ocupa todo el resto del espacio */
.field-input {
  width: 100%;
  padding: 0.375rem 1rem;
  border: 0;
  background: #ffffff;
  font-size: inherit;
  color: #333;
  outline: none;
  border-radius: 5px;
  font-family: inherit;
}
/* Ajuste específico para selectores */
select.field-input {
  cursor: pointer;
}

/* 5. Estado desactivado o placeholder */
.field-input::placeholder {
  color: #717C87;
}
/* Campo Deshabilitado o Solo Lectura */
.field-input:disabled,
.field-input[readonly] {
  background-color: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.8;
}

/* El grupo completo se vuelve gris si el input hijo está bloqueado */
.field-group:has(.field-input:disabled),
.field-group:has(.field-input[readonly]) {
  background-color: #f1f5f9;
  border-color: #e2e8f0;
}


/* Contenedor del control */
.csw-control {
  display: inline-block;
  position: relative;
  padding-left: 2rem;
  user-select: none;
  font-size: inherit;
  color: #1e293b;
}
.csw-control-block{
  display: block;
  margin: 5px 0;
}
/* Ocultar el input original */
.csw-control input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.csw-control a{
  margin: 0 4px;
}
/* El nuevo elemento visual (el cuadrado o círculo) */
.csw-mark {
  position: absolute;
  left: 0;
  height: 1rem;
  width: 1rem;
  border: 1px solid #777;
  background: #fff;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}
/* Checkbox: forma cuadrada */
.csw-control-checkbox .csw-mark {
  border-radius: 3px;
}

/* Radio: forma circular */
.csw-control-radio .csw-mark {
  border-radius: 50%;
}

/* Hover effect */
.csw-control:hover input ~ .csw-mark {
  background-color: #CC6898;
}

/* Cuando está seleccionado (Active/Checked) */
.csw-control input:checked ~ .csw-mark {
  background-color: #890B87;
  border-color: #890B87;
}

/* El "check" o punto interior */
.csw-mark::after {
  content: "";
  position: absolute;
  display: none;
}

.csw-control input:checked ~ .csw-mark::after {
  display: block;
}

/* Diseño del check (Checkbox) */
.csw-control-checkbox .csw-mark::after {
  left: 0.22rem;
  top: -0.1rem;
  width: 0.35rem;
  height: 0.65rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Diseño del punto (Radio) */
.csw-control-radio .csw-mark::after {
  left: 0.19rem;
  top: 0.19rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
}

.csw-control input[type="checkbox"],
.csw-control input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #890B87;
}
.csw-pull-left { float: left; }
.csw-pull-right { float: right; }

.form-booking .csw-alert-success{
  padding:0.9375rem 0.625rem
}
.form-booking .csw-alert-dafault{
  padding:0.375rem 0.625rem;
  margin-bottom:0.9375rem!important;
}
.form-footer .field-wrapper .csw-btn{
  margin: 5px auto;
}

.menu a.csw-btn-cart{
  padding: 4px;
}
.menu a.csw-btn-cart .no-mobile{
  font-size:0.75rem;
  margin-left:0.375rem;
}
.menu a.csw-btn-cart:hover{
  color:var(--csw-primary);
}
.book-panel{
  margin: 30px auto;
  padding: 20px;
  border: 1px solid var(--csw-border-light);
  border-radius: 16px;
  background-color: #fff;
  box-shadow:0px 0px 0px 1px rgba(0,0,0,0.02),0px 8px 16px 0px rgba(0,0,0,0.10);
}
#kactusbk_content .pax-body{
  padding: 10px;
  border:1px solid var(--csw-primary-hover);
  margin-bottom: 20px;
  border-radius: var(--csw-sm-radius);
}
.hotel-wrap{
  padding-top:0.9375rem
}
.is-mobile{
  display:none
}
.form-booking{
  color:#333;
}
.img-zoom{
  border-radius: 8px;

}
.img-zoom a{
  display: block;
  line-height: 0;
}
.book-body img{
  max-height: 150px;
  object-fit: cover;
}
.pax-title{
  color: var(--csw-primary-hover);
}
.csw-alert p{
  margin: 0;
}
.form-booking .widget{
  position:relative;
  margin-bottom:1.5625rem
}
.content-cards ul{
  display: flex;
  gap: 0.625rem;
  justify-content: center;
}
.csw-update-cart{
  margin-top:1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
}
.csw-update-cart .csw-btn-warning {
  margin-left: auto;
}
.form-booking .widget:last-child{
  margin-bottom:0
}
.form-booking .widget ul{
  margin:0
}
.form-booking .widget ul li{
  list-style:none
}
.form-booking .widget hr{
  background-color:#ddd
}
.wpcf7-form textarea.form-control,.form-booking textarea.form-control{
  height:7.5rem
}
.form-booking .columns li{
  width:48%;
  display:inline-block;
  float:left;
  margin:1%
}
.form-booking .field-group{
  position:relative
}
.form-booking p{
  margin:0
}
.book-detail,
.book-footer li{
  list-style: none;
}
.price-summary{
  display: flex;
  align-items: end;
  flex-direction: column;
  justify-content: end;
  margin-bottom: 15px;
}
.price-summary .safe-payment{
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: space-between;
}
.book-footer .vc_col-sm-7 .csw-alert{
  padding:0.375rem 0.625rem;
}
.book-footer .item-btn{
  list-style: none;
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 15px;
  justify-content: space-between;
}
main .form-body .field-group{
  margin:0.3125rem 0
}
.form-booking .form-footer{
  margin:0
}
body .form-footer .btn-lg{
  display: inline-flex;
  position: relative;
  align-items: center;
}
.form-footer .btn-lg .icon{
  margin-right: 0.375rem;
}
.form-wrapper{
  display:table;
  width:100%
}
.wpcf7-form-control-wrap[data-name="presupuesto"] .form-control{
  padding-left:2.1875rem
}
.input-addon{
  top:0.0625rem;
  left:0.0625rem;
  padding:0.3125rem 0.9rem 0.375rem 0.9rem;
  z-index:10;
  background-color:#f9f9f9;
  border-right:0.0625rem solid #ddd;
  position:absolute;
  border-top-left-radius:0.25rem;
  border-bottom-left-radius:0.25rem
}
.book-now{
  top:5rem
}
.book-now .book-now-wrap{
  display:none
}
.book-now.affix .book-now-wrap{
  display:table;
  width:100%
}
.load-car,.loading{
  top:0;
  left:0;
  bottom:0;
  width:100%;
  z-index:1000;
  display:none;
  border-radius:0.3125rem;
  position:absolute;
  background:url(../img/loader.gif) center center no-repeat rgba(255,255,255,.75)
}
.time-counter{
  float: left;
}
.time-counter img{
  max-width:0.625rem;
  padding:0.0625rem;
  border-radius:50%;
  background-color:#fff
}
.msg-error{
  font-weight:400;
  border-radius:0.1875rem;
  color:#b00000;
  position:absolute;
  top:50%;
  right:0.3125rem;
  margin-top:-0.3125rem
}
.error-sm{
  font-size:0.8125rem
}
.text-price{
  font-size:1.0625rem;
  font-weight:700;
  white-space:nowrap
}
.text-lg{
  font-size:1.5625rem;
  font-weight:700;
  white-space:nowrap
}
.sidebar .widget .tour-options{
  margin-top:0.9375rem
}
.tour-options .icon{
  color:#090;
  float:left;
  margin:0.1875rem 0.625rem 0 0
}
.ui-widget-content a:hover{
  color:#000000;
  background-color:#F1E08E
}
.field-group .icon{
  width:1.125rem;
  height:auto;
  display:flex;
  margin:auto;
  text-align:center;
}
.field-group br{
  display:none!important
}
.field-group .iti{
  display:table-cell
}
.iti.iti--allow-dropdown{
  width: 100%;
}


.disabled{
  opacity:.5;
  cursor:not-allowed
}

.is-table{
  width:100%;
  display:table;
  padding:0;
  margin:0
}
.field-input.single-select{
  border: 1px solid #dcdcdc;
}
.is-table p:empty{
  display:none
}
.is-table li{
  display:table-row
}
.is-table .cell{
  display:table-cell;
  width:100%;
  vertical-align:middle
}
.is-table .cell.left{
  width:33.33333%;
  text-align:center
}
.is-table .cell:first-child{
  padding-bottom:0.3125rem;
  vertical-align:bottom;
  padding-right:0.625rem;
}
.is-table .cell.right{
  width:33.33333%
}
.title-border{
  border-bottom:0.0625rem solid #ccc;
  display:block;
  padding-bottom:0.75rem;
  margin-bottom:0.9375rem
}
.vc_heading_text{
  font-size:0.9375rem;
  font-weight:400;
  display:table;
}
.vc_heading_text p{
  margin-bottom:0;
}
.icon-block .csw_icon-container{
  margin-top:1.25rem;
}
.csw-tour-filters{
  margin:0;
  gap:0.625rem;
  display:flex;
  align-items:end;
}
.csw-filter-cat{
  margin:0 auto;
}
.csw-reset-filter.btn{
  border-radius:0.3125rem;
  padding-bottom:0.3125rem;
}
/* Tabla */
table.table{
  width: 100%;
  border: 1px solid transparent;
  border-collapse: collapse;
}
table.table td,
table.table th{
  padding: 6px;
  text-align: left;
  border: 1px solid var(--csw-border-light);
}
table.table td.text-center,
table.table th.text-center{
  text-align: center;
  align-items: center;
}
table.table td.text-right,
table.table th.text-right{
  text-align: right;
  align-items: end;
}
table.table-book{
  margin: 15px auto;
}
table.table-book thead th{
  padding: 8px;
  background: var(--csw-bg-light);
  border-bottom-width: 3px;
}
table.table-book.no-border td{
  border: 0;
}
.col-thumb .img-zoom{
  width: 100%;
}
#paypal-button-container{
  width: 300px;
}
.book-body .price-summary{
  align-items: start;
}
@media (max-width: 1920px){
  .field-icon{
    padding: 0;
  }
  th .field-input:not(select),
  td .field-input:not(select){
    padding: 4px 6px;
  }
  td select.field-input{
    padding-left: 4px;
  }
}
@media (max-width: 1023px){
  .is-mobile{
    display: inline-block!important;
  }
  .table-book th,
  .table-book td{
    display: flex;
    text-align: left;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
  .table-book .field-group{
    width: 100%;
    margin: 0;
  }
  .csw-control{
    display: inline-block;
  }
  .book-footer .item-btn{
    flex-direction: column;
  }

  .page-payment .book-footer .csw-btn{
    width: 100%;
  }

}
@media (max-width: 767px){
  .field-wrapper .payment{
    display: inline-block;
  }
  #paypal-button-container{
    width: 260px;
  }
  .page-payment{
    padding: 0 20px;
  }
  .tour-fields .field-group {
    margin: 6px auto;
  }

}
@media (max-width: 700px){
  .field-wrapper .payment{
    display: inline-block;
  }

}