/* CSS Document */
:root {
    --primary: #565117;
    --secondary: #c1d100;
    --light: #F0F6FF;
    --dark: #F0F6FF;
}
        body {
            font-family: 'Quicksand';
            margin: 0;
            background-color: #f5f5f5;
        }
        /*.container {
            position: relative;
            width: 100%;
            max-width: 400px;
            margin: auto;
            background: #575756;
            border-radius: 15px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
			min-height: 844px;
    		height: 100%;
        }*/
        .image {
            background: url("jpg/fondo-2.jpg") no-repeat center top;
            background-size: cover;
        }
        .content {
    padding: 30px 0px;
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    position: absolute;
    bottom: 0;
	width:100%;
	max-height: 590px;
    overflow: scroll;
}
.we-content.transp{
	background-color: transparent !important;
	z-index: 2;
	max-height: 100%;
}
.action.home {
    justify-content: center;
}
.action.home button {
    padding: 25px 50px;
    border-radius: 50px;
    font-size: 18px;
}
.transp h1{
color: var(--light) !important;
}
        .we-content h2 {
            font-size: 22px;
            color: #333;
            margin: 0;
        }
        .we-content p {
            font-size: 18px;
            color: #888;
            margin-bottom: 15px;
        }
        .selector {
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
        }
        .selector button {
            background-color: #b2a244;
            border: none;
            border-radius: 25px;
            padding: 8px 20px;
            margin: 0 5px;
            font-size: 14px;
            color: #fff;
            cursor: pointer;
        }
        .selector button.inactive {
            background-color: #f0f0f0;
            color: #888;
        }
        .action {
            display: flex;
            justify-content: flex-end;
            margin-top: 15px;
        }
        .action button {
            background-color: #ababab;
            border: none;
            border-radius: 25px;
            padding: 15px 30px;
            font-size: 16px;
            color: #fff;
            cursor: pointer;
        }
 .action button:hover {
            background-color: #c7d31e;
	 color:var(--primary);
        }
        .pagination {
            display: flex;
            justify-content: flex-start;
            margin-top: 10px;
        }
        .pagination span {
            width: 8px;
            height: 8px;
            background-color: #d3d3d3;
            border-radius: 50%;
            display: inline-block;
            margin: 0 4px;
        }
        .pagination .active {
            background-color: #b2a244;
        }
		
		.switch {
  position: relative;
  width: 80%;
  height: 50px;
  text-align: center;
  margin: auto;
  background: #cbc9c9;
  transition: all 0.3s ease;
  border-radius: 26px;
border:2px solid #807a04;
}

    .switch span {
      position: absolute;
      width: 22px;
      height: 4px;
      top: 50%;
      left: 50%;
      margin: -2px 0px 0px -4px;
      background: #fff;
      display: block;
      transform: rotate(-45deg);
      transition: all 0.2s ease;
    }
    .switch span:after {
      content: "";
      display: block;
      position: absolute;
      width: 6px;
      height: 14px;
      margin-top: -8px;
      background: #fff;
      transition: all 0.2s ease;
    }
    input[type=radio] {
      display: none;
    }
    .switch label {
      cursor: pointer;
      color: #807b1f;
      width: 140px;
      line-height: 50px;
      transition: all 0.2s ease;
    }
    label[for=chkConMcia] {
      position: absolute;
      left: 0px;
    }
    label[for=chkSinMcia] {
      position: absolute;
      right: 0px;
    }
#chkSinMcia:checked ~ .switch {
  background: #cbc9c9;
}
  #chkSinMcia:checked ~ .switch span {
    background: #fff;
    margin-left: -8px;
  }
    #chkSinMcia:checked ~ .switch span:after {
      background: #fff;
      height: 20px;
      margin-top: -8px;
      margin-left: 8px;
    }
#chkConMcia:checked ~ .switch label[for=chkConMcia] {
  color: #fff;
  background-color: #807b1f;
  border-radius: 26px;
}
#chkSinMcia:checked ~ .switch label[for=chkSinMcia] {
  color: #fff;
  background-color: #807b1f;
  border-radius: 26px;
}


.phone {
  width: 100%;
}
nav {
  background-color: transparent;
  height: 65px;
}
#menuToggle {
  display: flex;
  flex-direction: column;
  position: relative;
    top: 25px;
    right: 25px;
    z-index: 1;
    user-select: none;
    align-items: flex-end;
    flex-direction: column;
}

#menuToggle input
{
  display: flex;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

#menuToggle span
{
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -1px);
  background: #fff;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  width: 300px;
  height: 700px;
  margin: -50px -25px 0 -50px;
  padding: 50px;
  padding-top: 125px;
  background-color: var(--primary);
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  transition-delay: 2s;
}

#menuToggle input:checked ~ ul
{
  transform: none;
	list-style: none;
}
#menu a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
}
#menu a:hover, #menu a:active {
    color: var(--secondary);
}
label.jb {
    font-size: 18px;
    color: #888;
    padding: 10px 0 10px;
    display: block;
}
/*input {
    width: 90%;
    height: 40px;
    border-bottom: 2px solid grey;
    border-top: none;
    border-left: none;
    border-right: none;
    background: #f2f2f2;
    padding: 0 10px;
    font-size: 16px;
}
textarea:focus, input:focus{
    background: #ffffff;
	border-bottom: 2px solid var(--secondary);
	outline: none;
}*/
#header h1{
	color: var(--light);
}
.dir-rec a {
    padding: 15px;
    display: block;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--light);
}
.dir-rec a:hover {
    color: var(--secondary);
}
.date-input-container {
            background: #fff;
            padding: 0 20px 200px 20px;
            border-radius: 10px;
            text-align: center;
        }
        .date-input-container input[type="date"] {
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #ddd;
            font-size: 16px;
            width: 100%;
            max-width: 400px;
            box-sizing: border-box;
            margin-top: 10px;
			height:50px;
        }
        .date-input-container input[type="date"]:focus {
            border-color: #b2a244;
            outline: none;
        }
.time-picker-container {
            background: #fff;
	padding-top:5px;
            border-radius: 10px;
            text-align: center;
            max-width: 400px;
            width: 100%;
        }
        .time-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 10px;
        }
        .time-option {
            background-color: #f0f0f0;
            border: none;
            padding: 15px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s, color 0.3s;
			width: 100%;
        }
        .time-option:hover {
            background-color: #b2a244;
            color: #fff;
        }
        .time-option.active {
            background-color: #b2a244;
            color: #fff;
        }
        .price-display {
            margin-top: 20px;
            font-size: 18px;
            color: #333;
        }
       
        .verification-container label {
            display: block;
            font-size: 14px;
            color: #555;
            margin-bottom: 10px;
        }
        .code-inputs {
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        .code-inputs input {
            width: 26px;
            height: 40px;
            font-size: 18px;
            text-align: center;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        .code-inputs input:focus {
            border-color: #b2a244;
            outline: none;
        }
.errornotif {
    background-color: red;
    padding: 5px;
    display: block;
    margin: 20px 0;
}
.errornotif p{
    color:#fff;
	font-weight: bold;
}
.input-container input:focus {
            border-color: #b2a244;
        }
        .input-container .checkmark {
            color: #4CAF50;
            font-size: 20px;
            display: none;
        }
        .input-container.valid .checkmark {
            display: inline-block;
        }
.input-container.valid .checkmark {
    display: inline-block;
    float: right;
    margin-top: -34px;
    z-index: 9999;
    position: relative;
}
div#input-container {
    margin-bottom: 15px;
}
button.extrabut {
	background-color: var(--primary);
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}
button.extrabut:hover {
	background-color: var(--secondary);
}
.legalcond {
    padding-bottom: 10px;
}
.legalcond input {
    width: 30px;
	border-radius: 20px;
}
.legalcond span {
    display: inline-block;
    width: 74%;
    position: relative;
    text-align: left;
    vertical-align: top;
    padding-top: 10px;
}
a.contratopage {
    width: 100%;
    background-color: #f2f2f2;
    display: block;
	margin-bottom:10px;
}
.overimg {
    display: block;
    background-color: #000;
    width: 360px;
    height: 284px;
    position: absolute;
    opacity: 0.2;
}
.editfirma {
	width: 40px;
    position: absolute;
    top: 5%;
    right: 5%;
}
button.botsinfondo {
    background: transparent;
    color: #000;
}
button.botsinfondo:hover {
    background: transparent;
    color: var(--secondary);
}
button.bot2 {
    background-color: #cbc9c9;
    border: 2px solid var(--primary);
	color:var(--primary);
}
button.bot2:hover {
    border: 2px solid var(--secondary);
}
 .checkbox-wrapper-6 .tgl {
    display: none;
  }
  .checkbox-wrapper-6 .tgl,
  .checkbox-wrapper-6 .tgl:after,
  .checkbox-wrapper-6 .tgl:before,
  .checkbox-wrapper-6 .tgl *,
  .checkbox-wrapper-6 .tgl *:after,
  .checkbox-wrapper-6 .tgl *:before,
  .checkbox-wrapper-6 .tgl + .tgl-btn {
    box-sizing: border-box;
  }
  .checkbox-wrapper-6 .tgl::-moz-selection,
  .checkbox-wrapper-6 .tgl:after::-moz-selection,
  .checkbox-wrapper-6 .tgl:before::-moz-selection,
  .checkbox-wrapper-6 .tgl *::-moz-selection,
  .checkbox-wrapper-6 .tgl *:after::-moz-selection,
  .checkbox-wrapper-6 .tgl *:before::-moz-selection,
  .checkbox-wrapper-6 .tgl + .tgl-btn::-moz-selection,
  .checkbox-wrapper-6 .tgl::selection,
  .checkbox-wrapper-6 .tgl:after::selection,
  .checkbox-wrapper-6 .tgl:before::selection,
  .checkbox-wrapper-6 .tgl *::selection,
  .checkbox-wrapper-6 .tgl *:after::selection,
  .checkbox-wrapper-6 .tgl *:before::selection,
  .checkbox-wrapper-6 .tgl + .tgl-btn::selection {
    background: none;
  }
  .checkbox-wrapper-6 .tgl + .tgl-btn {
    outline: 0;
    display: block;
    width: 4em;
    height: 2em;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .checkbox-wrapper-6 .tgl + .tgl-btn:after,
  .checkbox-wrapper-6 .tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
  }
  .checkbox-wrapper-6 .tgl + .tgl-btn:after {
    left: 0;
  }
  .checkbox-wrapper-6 .tgl + .tgl-btn:before {
    display: none;
  }
  .checkbox-wrapper-6 .tgl:checked + .tgl-btn:after {
    left: 50%;
  }

  .checkbox-wrapper-6 .tgl-light + .tgl-btn {
    background: #f0f0f0;
    border-radius: 2em;
    padding: 2px;
    transition: all 0.4s ease;
  }
  .checkbox-wrapper-6 .tgl-light + .tgl-btn:after {
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
  }
  .checkbox-wrapper-6 .tgl-light:checked + .tgl-btn {
    background: var(--secondary);
  }
.checkbox-wrapper-6 {
    width: 80px;
    float: left;
}
.datosfinal span {
    font-weight: bold;
	color: var(--primary);
}
button.active {
    background-color: var(--secondary);
    color: var(--primary);
}
        .form-group {
            margin-bottom: 15px;
        }
        .checkbox-wrapper-6.ancho {
    width: 100%;
}
        #payment-form {
            display: none;
            margin-top: 20px;
        }
        #payment-form .form-group {
            margin-bottom: 10px;
        }
        #payment-form input {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-sizing: border-box;
        }
        #payment-form input:focus {
            border-color: #b2a244;
            outline: none;
        }
.transp p {
    color: #fff;
    padding: 0 30px 20px;
}
.fondopantalla {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000;
    top: 0;
    opacity: 50%;
}
p.datosfinal {
    margin-top: 0;
    margin-bottom: 0;
}
hr {
    border-top: 1px solid #e1e1e1;
    color: #fff;
    border-bottom: 0;
    /*padding-bottom: 5px;*/
}
a.reciente {
    text-decoration: none;
    width: 100%;
    display: block;
}
a.reciente:hover {
    background-color:var(--secondary);
	border-radius: 15px;
}
a.reciente span {
    font-size: 14px;
}
.progreso {
    padding: 25px 0;
    background-color: var(--primary);
    margin-top: -30px;
    margin-bottom: 20px;
}
        .progress-container {
            display: flex;
            align-items: center;
            width: 300px;
    max-width: 90%;
    margin-left: 50px;
        }
        .progress-bar {
            position: relative;
            flex: 1;
            height: 10px;
            background-color: #ddd;
            border-radius: 5px;
            margin: 0 15px;
        }
        .progress {
            width: 100%;
            height: 100%;
            background-color: var(--secondary);
            border-radius: 5px;
            position: absolute;
            top: 0;
            left: 0;
        }
        .progress-step {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            font-size: 16px;
            position: relative;
        }
        .progress-step.incomplete {
            background-color: #ddd;
            color: #555;
        }
        .progress-step.completed::before {
            content: "✔️";
            font-size: 16px;
        }
        .progress-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }
        .progress-label {
            text-align: center;
            font-size: 12px;
            color: #fff;
            flex: 1;
        }
#toggle-text {
    margin-top: 20px;
    display: none;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    position: fixed;
    height: 603px;
    top: 200px;
    width: 380px;
	overflow: hidden;
	overflow-y:auto;
}
.close-btn:hover {
            background-color: #e04b4b;
        }
button#close-button {
    position: absolute;
    right: 10px;
    padding: 15px 20px;
}
td.arriba {
    vertical-align: top;
}
button.bot2.tmini {
    font-size: 14px;
}
 .rating-container {
            display: flex;
            gap: 28px;
    justify-content: center;
    padding: 20px 0;
    margin-bottom: 50px;
        }
        .rating-item {
            width: 50px;
            height: 50px;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-item:hover {
            transform: scale(1.1);
        }
        .rating-item.selected {
            fill: #FFD700; /* Color dorado para la cara seleccionada */
			background-color: var(--secondary);
    border-radius: 25px;
        }
textarea#w3review {
    width: 90%;
    margin-top: 20px;
	margin-bottom:40px;
    padding: 10px;
}
.graciascom {
    width: 320px;
    background-color: var(--primary);
    border-radius: 25px;
    padding: 20px;
    color: #fff !important;
    margin-bottom: 20px;
}
.graciascom h3 {
    margin-top: 5px;
    margin-bottom: 0;
	font-weight: bold;
}
.graciascom p {
    margin-top: 5px;
    margin-bottom: 0;
	color: #fff !important;
}
.rating-item2 {
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.2s;
}
.rating-item2:hover {
            transform: scale(1.1);
        }
        .rating-item2.selected {
            fill: #FFD700; /* Color dorado para la cara seleccionada */
			background-color: var(--secondary);
    border-radius: 40px;
        }