@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,900');

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;
}



/***** REGLAS GLOBALES ******/

.display-none {
  display: none;
}

/*******************
REGLAS GLOBALES
********************/

* {box-sizing: border-box;}

img {
  width: 100%;
  display: block;
  height: auto;
  overflow: hidden;

}

a {
  color: inherit;
  text-decoration: inherit;
}

body{
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
}

strong{
  font-weight: 700;
}



/***** Tipografías *****/
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon-t2AeQKF.woff");
}


/***** elementos comunes ****/

.btn{
  background-color: #36B37E;
  color:white;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 15px;
}


h2{
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h3{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #9e732c, #b28c0d, #d09045, #90512c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




.container-m{
  max-width: 1200px;
  margin: 0 auto;
}


.resumen p, .planifica p{
  margin-bottom: 1rem;
}


/***** HEADER ******/

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: WHITE;
}

a {
  color: #F05A23;
}


/* header */

.header {
  background-color: white;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.2);
  position: fixed;
  width: 100%;
  z-index: 30;
  top: 0;
}

/* Asegúrate de que el contenido comienza después del header */
body {
  padding-top: 60px; /* Ajusta según la altura de tu menú */
}

.header-wrapper{
  max-width: 960px;
  margin: 0 auto;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  //background-color: #fff;
}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #9e732c, #b28c0d, #d09045, #90512c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 15px;

}

.header li a:hover,
.header .menu-btn:hover {
  background: linear-gradient(90deg, #b28c0d, #d09045, #eaa956, #b0703a); /* Colores más brillantes */;
  -webkit-background-clip: text;
  transition: .3s;
}

.header .logo {
  display: block;
  float: left;
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  padding: 10px 10px;
  color: #0000ff;
  font-weight: 900;
  text-decoration: none;
}

.header .logo img{
  max-width: 50px;
}
/* menu */

.header .menu {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  font-weight: 400;
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}

.box {
  max-width: 960px;
  margin: 0 auto;
  min-height: 800px;
  display: grid;
  justify-content: center;
  align-items: center;
}

.box h1 {
  font-size: 3em;
  color: white;
}


/* one */
.satu {
  background-color: GOLD;
}

/* two */
.dua {
  background-color: HOTPINK;
}

/* three */
.tiga {
  background-color: LIMEGREEN;
}

/* four */
.empat {
  background-color: BLUE;
}



/*** START : TABLET ***/
@media screen and (max-width: 768px){

}
/*** END : TABLET ***/


/*** START : MOBILE ***/
@media screen and (max-width: 480px){


}
/*** END : MOBILE ***/




/******* HERO ****/

.hero{

  background:url("../img/1-B0pNAHj.jpg");
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centra verticalmente */
  align-items: center; /* Centra horizontalmente */
  height: calc(100vh - 70px); /* Ocupar toda la altura de la pantalla */
  text-align: center; /* Alinear el texto en el centro */


}



.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Color negro con 50% de opacidad */
  z-index: 0; /* Asegura que el velo esté por encima de la imagen pero detrás del contenido */
}


.hero h1{
  color:white;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  text-align: center;
  max-width: 600px;
  line-height: 1.3;
  margin-block: 2rem;
  z-index: 10;
  text-shadow: 5px 5px 5px black;

}

.hero h1 span{
  display: block;
}
.hero .btn{

  font-size: 1.5rem;
  padding: 10px 2rem;
  border-radius: 40px;
  z-index: 10;
}

.claim{
  display: flex;
  position: absolute;
  bottom:0;


}

.claim-item{
  width: 25%;
  padding: 3rem;
  color: #6C4616;
  background:none;
}

.claim-item:nth-child(1){
  background:#F9EFE3;
}

.claim-item:nth-child(2){
  background:#EEE2D3;
}

.claim-item:nth-child(3){
  background:#E2D4C4;
}

.claim-item:nth-child(4){
  background:#DBCABA;
}



.resumen{
  display: flex;
  background:#eeeeee;

}

.resumen-intro{
  max-width: 50%;
  padding:5rem 10% 5rem 5%;
}

.resumen-info{
  margin-bottom: 2rem;
}

.medio-ambiente h4{
  font-size: 1.3rem;
  font-weight: 700;

}

.medio-ambiente h5{
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;

}

.medio-ambiente li{
  margin-bottom: 10px;
}

.medio-ambiente .allowed:before{
  content: "\e902";
  font-family: 'icomoon';
  font-size: 14px;
  margin-right: 5px;
}

.medio-ambiente .not-allowed:before{
  content: "\e900";
  font-family: 'icomoon';
  font-size: 14px;
  margin-right: 5px;
}


.planifica, .contacto{
  padding: 5rem 5%;
}

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


.planifica-intro{

  width: 60%;

}

.planifica-horario{

  width: 35%;
  padding-top: 2.3rem;

}

.planifica-intro-text{
  margin-bottom: 10px;
}


.planifica-intro-item{
  margin-bottom: 1rem;
}

.planifica-intro-item p{
  margin-bottom: 10px;
}

.planifica-iconos{
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.planifica-iconos-item{
  display: flex;
  flex-direction: column;
  width: 25%;
  max-width: 200px;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  border-radius:  0 0;
  margin-bottom: 2rem;
  background-color: #EEEeee;
  margin-right: 1rem;
}

.planifica-iconos-item img{
  max-width: 50px;
  margin-bottom: 10px;
}


.planifica-iconos-item h4{
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  padding:0 5px 2rem 5px;


}

.planifica-price{
  background-color: #6C4616;
  color: white;
  width: 100%;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 5px;

}

.planifica-price p{
  margin-bottom: 0;
}

ul.planifica-list{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul.planifica-list li{
  list-style: disc;
  margin-left:1.3rem;
}

.bus-propio{
  margin-bottom: 1rem;
}


/*** tabla horarios bus ***/

.tabla-horarios-title{
  color: #6C4616;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;

}

.tabla-horarios {
  border-collapse: collapse;
  font-size: 16px;
  text-align: center;
  max-width: 100%;
  min-width: 100%;
  margin-bottom: 1rem;

}

.tabla-horarios th, .tabla-horarios td {
  padding: 5px 25px;
  border: 1px solid #ddd;
  font-weight: 700;

}

.tabla-horarios th {
  background-color: #f4f4f4;
  font-weight: bold;
  background-color: #6C4616;
  color: white;

}

.tabla-horarios tr {
  width: 100%;
}


.bus-info{
  font-size: 15px;
}




.trees{
  background:url("../img/trees3-vMgNZtg.png");
  height: 220px;
  background-position: bottom;
  background-repeat: no-repeat;
  margin-bottom: -50px;
  z-index: 10;
  position: relative;
}




.comprar{
  background:#EEE2D3;
}

.comprar h2{
  margin-bottom: 5px;
}

.disclaimer-ticket{
  font-size: 15px;
  font-style: italic;
  margin-bottom: 1rem;
}

.comprar .container-m{

  padding: 5rem 5%;
}



.tabs {
  width: 100%;
  margin: 20px 0;
  max-width: 700px;
}

.tab-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 2rem;
}



.tab {
  display: flex;
  align-items: center;  /* Alinea verticalmente el contenido del li */
  justify-content: center; /* Centra el contenido horizontalmente dentro de la pestaña */
  padding: 10px 20px;
  padding: 10px 20px;
  cursor: pointer;
  color: #6C4616;
  font-weight: 700;
  border-bottom: none;
  margin-right: 5px;
  background-color: #FFFFFF;
}

.tab span{
  background-color: #6C4616;
  border-radius: 40px;
  padding: 5px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;          /* Ancho del círculo */
  height: 30px;         /* Alto del círculo */
  background-color: #6C4616; /* Color de fondo negro */
  color: white;         /* Color del texto blanco */
  border-radius: 50%;   /* Hace que el fondo sea circular */
  font-weight: bold;    /* Hace el texto más visible */
  margin-right: 10px;   /* Espacio entre el círculo y el texto */
}


.tab.active {
  background-color: #6C4616;
  color: white;
  font-weight: bold;
  border-top: 2px solid #6C4616;
}

.tab.active span {
  background-color: white;
  color:#6C4616;
}

.tab-content {
  display: none;
  padding: 1rem 3rem;
  border-top: 2px solid #6C4616;
  background-color: #E2D4C4;

  min-height: 450px;

}

.tab-content.active {
  display: block;
}


.tab-content form {
  display: flex;
  flex-direction: column;
}

.tab-content form label {
  margin: 10px 0 5px;
}

.tab-content label {
  width: 100%;
  display: block;
}

.tab-content input, .tab-content select {
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  width:100%;
  max-width: 500px;
  height: 2.66em;
}

.tab-content select {
  appearance: none; /* Para quitar el estilo nativo del select */
  -webkit-appearance: none; /* Compatibilidad con WebKit */
  -moz-appearance: none; /* Compatibilidad con Firefox */
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 16px;
  color: #333;
  border-radius: 5px;
  width: 100%;
}

select:focus {
  border-color: #007bff;
  outline: none;
}

.btn-tabs{
  max-width: 200px;
  margin-top: 1rem;
  border:0;
}

.btn-tab-continue {
  cursor: pointer;
}

.tab-contacto label, .tab-entradas label{
  font-weight: 600;
}

.resumen-pedido-compra{
  margin-bottom: 2rem;

}

.confirm-btn{
  margin-top: auto;
}

.tab-resumen h4{
  font-size: 1.3rem;
  font-weight: 700;
  margin-top:10px;
  margin-bottom: 1rem;
}
.tab-resumen li{
  margin-bottom: 8px;
}

.resumen-pedido-compra li span{
  font-weight: 600;
}

.btn-finalizar-compra{
  margin-bottom: 1rem;
  border:0;
}

#accept-policy{
  font-size: 15px;
}

.privacy-policy a{
  text-decoration: underline;
}

#privacy-error{
  font-size: 14px;
}

/* Estilo base para la tabla */
.tabla-popup {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
  text-align: left;
}

/* Estilo para las celdas del encabezado */
.tabla-popup th {
  background-color: #E2D4C4;
  padding: 10px;
  text-align: left;
  font-weight: 700;
}

/* Estilo para las celdas de la tabla */
.tabla-popup td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* Alternar colores de las filas */
.tabla-popup tbody tr:nth-child(odd) {
  background-color: #f9f9f9; /* Color para filas impares */
}

.tabla-popup tbody tr:nth-child(even) {
  background-color: #ffffff; /* Color para filas pares */
}

/* Opcional: estilizar el borde de la tabla */
.tabla-popup {
  border: 1px solid #ccc;
  text-align: left;
  margin-top: 1rem;
}




/* Velo negro para oscurecer la pantalla */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Velo negro semitransparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Estilo del pop-up */
.popup-message {
  background: white; /* Fondo blanco para el pop-up */
  border: 2px solid #9e732c; /* Colores relacionados con el diseño */
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  text-align: center;
  border-radius: 8px;
  font-size: 15px;
  max-width: 500px; /* Ancho máximo del pop-up */
  width: 100%; /* Ancho total hasta el máximo */
}

.popup-message p{
  margin-bottom: 10px;
}

/* Estilo del botón */
.popup-message button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #9e732c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup-message button:hover {
  background-color: #b28c0d; /* Cambia a un tono más claro al pasar el cursor */
}




/******** MAPA ********/

.location{
  display: flex;
}

.location-data{
  display: flex;
  width: 50%;
}

.location-map{
  width: 100%;
  display: flex;

}

.location-map iframe{
  width: 100%;
  height: 100%;
}



.location-info{
  background-color: #36B37E;
  display: flex;
  flex-direction: column;
  color: white;
  width: 30%;
  padding: 2rem 1rem;
  background: linear-gradient(45deg, #9e732c, #b28c0d, #d09045, #90512c);



}

.location-info-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid;


}

.location-info-item:last-of-type{
  border-bottom: 0;
  margin-bottom: 0;
}


.loc-number{
  font-size: 2rem;
  font-weight: 700;
}

.loc-text{
  font-size: 14px;
  margin-bottom: 1rem;
}

.location-picture{
  background:url("../img/3-T3nj653.jpg") center;
  position: relative;
  color: white;
  display: flex; /* Convierte el div en un contenedor flex */
  flex-direction: column; /* Alinea elementos en una columna */
  justify-content: center; /* Centra verticalmente */
  align-items: center; /* Centra horizontalmente */
  max-width: 60%;
  box-sizing: border-box;
  padding: 2rem 7rem;
  width: 100%;


}

.location-picture h4{
  position: relative;
  font-size: 2rem;
  z-index: 10;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px black;

}


.location-picture p{
  position: relative;
  font-size: 1.2rem;
  z-index: 10;
  font-weight: 700;
  text-shadow: 1px 1px 20px black;
}


.location-picture::before {
  content: ''; /* Pseudo-elemento vacío */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Fondo negro semi-transparente */
  z-index: 1; /* Asegura que el velo esté sobre el fondo pero debajo del texto */
}

.contacto{
  background: white;
}


.footer {
  background-color: #333; /* Color de fondo del footer */
  color: #ffffff; /* Color del texto */
  padding: 20px 0; /* Espaciado interno */
  text-align: center; /* Centra el contenido horizontalmente */
  position: relative; /* Posiciona relativo para futuros estilos si es necesario */
}

.footer-content {
  max-width: 800px; /* Ancho máximo para el contenido del footer */
  margin: 0 auto; /* Centra el contenedor en el medio */
}

.footer a {
  color: #ffffff; /* Color de los enlaces */
  text-decoration: none; /* Quita el subrayado de los enlaces */
  margin: 0 10px; /* Espaciado horizontal entre los enlaces */
  font-size: 16px; /* Tamaño de fuente */
}

.footer a:hover {
  text-decoration: underline; /* Subraya los enlaces al pasar el cursor */
}

/******* página gracias *****/

.gracias{
  text-align: center;
  font-size: 1.2rem;
  background-color: #F9EFE3;
}

.gracias span{
  font-weight: 700;
}

.gracias ul li{
  margin-bottom: 1rem;
}

.gracias ul{
  margin-bottom: 2rem;
}

.gracias .location-data{
  height: 400px;
  width: 100%;
  max-width: 100%;

}


.gracias a{
  background: linear-gradient(90deg, #b28c0d, #d09045, #eaa956, #b0703a);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}
/***** página políticas ****/

.politics, .gracias .container-m{
  padding: 5rem 5%;
}

.politics p, .politics h3, .gracias p, .gracias h3{
  margin-bottom: 1rem;
}

.politics h3{
  padding-top: 1rem;
}

.politics ul{
  list-style: circle;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width:1100px){

  .hero{
    height: auto;
    padding: 10% 2rem;
  }

  .hero h1{
    font-size: 3rem;
  }

  .hero .btn{
    font-size: 1.2rem;
  }


  .claim{
    display: flex;
    position: relative;
  }

  .claim-item{
    padding: 1.5rem 2rem;
  }

  .resumen-intro{
    padding: 3rem 5% 3rem 2rem;
  }

  .resumen{
    flex-direction: column-reverse;
  }

  .resumen-intro{
    max-width: 100%;
    padding: 3rem 5%;
  }

  .resumen-fotos{
    display: flex;
  }

  .planifica-iconos-item h4{
    padding: 0 5px 1rem 5px;
  }

  .planifica-price{
    height: 54px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .comprar{
    display: flex;
    justify-content: center;
  }


}


@media (max-width:900px){


  .planifica-box{
    flex-direction: column;
  }

  .planifica-intro, .planifica-horario{
    width: 100%;
  }

  .planifica-price{
    height: auto;
  }

  .location{
    flex-direction: column;
  }



  .location-data, .location-picture{
    max-width: 100%;
    width: 100%;
  }


}

@media (max-width:650px){

  .claim{
    flex-wrap: wrap;
  }
  .claim-item{
    padding: 1rem 1.5rem;
    width: 50%;
  }

  .planifica-iconos{
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .planifica-iconos-item{
    width: 30%;
    margin-right: 0;
  }

  .location-picture{
    padding:2rem 10%;
  }

  .hero{
    background-attachment: inherit;
    background-size: 100%;
  }
}


@media (max-width:500px){
  .claim-item{
    width: 100%;
  }

  .tab{
    flex-direction: column;
    width: 100%;
    padding: 10px 10px;
    text-align: center;
  }

  .tab span{
    margin-right: 0;
  }

  .planifica-iconos-item h4{
    font-size: 14px;
  }

  .hero h1{
    font-size: 2rem;
  }

  .trees{
    background:url("../img/trees_mobile-QKK27x7.png");
    background-repeat: no-repeat;
    margin-bottom: -130px;
  }

  .hero{
    background:url("../img/hero_mobile2-RB_APlZ.jpg")top;
    min-height: 400px;
  }
}


/* Cambia el color del placeholder a negro */
input::placeholder {
  color: black; /* O el color que desees */
  opacity: 1; /* Asegura que el placeholder no sea transparente */
}

/* Para asegurarte de que se aplique correctamente, también puedes incluir */
input:-ms-input-placeholder { /* IE 10+ */
  color: black;
}
input::-ms-input-placeholder { /* Microsoft Edge */
  color: black;
}



/* Estilo para el input de fecha */
.fecha-input {
  width: 100%; /* O el tamaño deseado */
  padding: 10px;
  font-size: 16px;
}

/* Estilo para ajustar el tamaño del calendario */
.flatpickr-calendar {
  font-size: 14px; /* Cambia el tamaño de la fuente en el calendario */
}


/**
Checkbox
 */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.4em;
  width: 1.4em;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #b28c0d;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* reCAPTCHA badge */
.grecaptcha-badge { visibility: hidden; }