@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400&family=Playfair:opsz,wght@5..1200,300;5..1200,400;5..1200,500&display=swap');
/*@charset "UTF-8";*/

:root {
  --font-family-playfair:'Playfair', serif;
  --font-family-inter:'Inter', sans-serif;
}

a {
  font-family: var(--font-family-inter);
  color: #ffffff;
}

a:hover{
  text-decoration: none;
}

p, h4, h5, h2{
  font-family: var(--font-family-inter);
}

h1{
  font-family: var(--font-family-playfair);
  color: #ffffff;
  text-align: center;
  font-size: 48px;
}

h5{
  font-weight: bold;
  padding: 2% 0 2%;
}


.contenedor-principal{
  background: url("/img/register/fondo.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  padding: 4% 0;
}

.contenedor-principal-golfpass{
    background: url("/img/register/fondo-golfpass.png");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    padding: 4% 0;
}

.idiomas {
  text-align: right;
  font-size: 18px;
  padding: 0 10% 0 0;
}

.idiomas a {
  margin: 5px;
}

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}



/*form styles*/
#msform {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

#msform fieldset .form-card {
  background: white;
  border: 0 none;
  border-radius: 0px;
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
  padding: 40px 40px 30px 40px;
  box-sizing: border-box;
  width: 94%;
  margin: 0 3% 20px 3%;

  /*stacking fieldsets above each other*/
  position: relative;
}

#msform fieldset {
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;

  /*stacking fieldsets above each other*/
  position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform fieldset .form-card {
  width: 60%;
  margin: 0 auto;
  text-align: left;
  color: #000000;
}

#msform input, #msform textarea {
  padding: 0px 8px 4px 8px;
  border: none;
  border: 1px solid #000000;
  border-radius: 5px;
  margin-bottom: 15px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-family-inter) !important;
  color: #000000;
  font-size: 16px;
  letter-spacing: 1px;
}

#msform input:focus, #msform textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none;
  font-weight: 400;
  border-bottom: 2px solid #000000;
  outline-width: 0;
  border-radius: 0;
  font-family: var(--font-family-inter) !important;
}

/*Blue Buttons*/
#msform .action-button {
  width: 100%;
  background: rgb(0, 0, 0);
  font-weight: 400;
  color: white;
  border: 1px solid #000000;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 7% 0 3% 0;
  transition: 0.5s;
}

#msform .action-button:hover {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;

}



/*Previous Buttons*/
#msform .action-button-previous, .boton-enviar {
  width: 40%;
  background: rgb(0, 0, 0);
  font-weight: 400;
  color: white;
  border: 1px solid #000000;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 7% 0 3% 0;
  display: inline-block;
}

#msform .action-button-previous:hover, .boton-enviar:hover {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  transition: 0.5s;

}

.botones-ultimo-paso {
  margin: 0 auto;
  text-align: center;
}


/*Dropdown List Exp Date*/
select.list-dt {
  border: none;
  outline: 0;
  border-bottom: 1px solid #000000;
  padding: 2px 5px 3px 5px;
  margin: 2px;
}

select.list-dt:focus {
  border-bottom: 2px solid skyblue;
}

/*The background card*/
.card {
  z-index: 0;
  border: none;
  border-radius: 0.5rem;
  position: relative;
}

/*FieldSet headings*/
.fs-title {
  font-size: 25px;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: left;
}

/*progressbar*/
#progressbar {
  margin-bottom: 40px;
  overflow: hidden;
  color: rgb(255, 255, 255);
}
 #progressbar li span{
  color: #ffffff;
  background-color: #000000;
  border-radius: 100px;
  padding: 5px 10px;
 }

#progressbar .active span {
  color: #000000;
  background-color: #ffffff;
  border-radius: 100px;
  padding: 5px 10px;
}


#progressbar li {
  list-style-type: none;
  font-size: 12px;
  width: 2%;
  display: inline-block;
  position: relative;
  padding: 10px 0;
}



/*Fit image in bootstrap div*/
.fit-image{
  width: 100%;
  object-fit: cover;
}

.ocultar {
  display: none !important;
}

.mostrar {
  display: block !important;
}

.linea-step {
  background-color: #000000;
  padding: 0 15%;
  color: #000000;
  font-size: 2px;
  margin: -5px 10px 0 10px;
}

.linea-step-blanca{
  background-color: #ffffff !important;
}

.select2{
  width: 100% !important;
}

.select2-container--classic .select2-selection--single {
  background-color: #ffffff !important;
  background-image: none !important;
  border-radius: 5px !important;
  border: 1px solid #000000 !important;
  height: 34px !important;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  line-height: 29px !important;
}


.select2-container--classic .select2-selection--single .select2-selection__arrow {
  height: 33px !important;
  background-color: transparent !important;
  border-left: none !important;
  background-image: none !important;
}

.campo-country-2{
  margin-bottom: 15px !important;
}

.container-thanks {
  width: 35%;
  text-align: center;
  padding: 3% 3%;
  background: #ffffff;
  margin-top: 6%;
}

.container-thanks h5{
  font-size: 24px;
}


.select option {
  text-transform: capitalize;
}
