:root {
  --color-principal: #000000;
  --color-principal-oscuro: #153065;
  --color-gris: #e5e5e5;
  --color-gris-medio: #a5a5a5;
  --color-gris-oscuro: #6d6d6d;
  --color-acento: #ee2a3c;
  --color-invalid: #ee2a3c;
  --color-invalid-oscuro: #bb1a29;
}
.txt-principal{
	color:var(--color-principal);
}
* {margin:0; padding:0; outline:0; -webkit-font-smoothing: antialiased;	-moz-osx-font-smoothing: grayscale;}
a {
	text-decoration:none;
	color: var(--color-principal);
}
a img {border:0;}
a:hover {
    color: var(--color-principal-oscuro);
}
/*Generales*******************************************************************************/
body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	min-height: 600px;
	color:#222;
}
h2 {
    font-weight: 600 !important;
	margin-bottom: 20px;
    color: var(--color-principal);
}
small {
    margin-top: 10px;
}
a.text-danger:focus, a.text-danger:hover {
    color: var(--color-invalid-oscuro);
}
#wrapper {
	position:relative;
	z-index:1;
	width: 80vw;
}
#brand-header{
	width: 100%;
	padding: 25px 20px 25px 75px;	
}
#content-wrapper{
	width: 100%;
    margin: 0 0 0 75px;
    padding: 25px 0;

}
#wrapper {
	    min-height: 100vh !important;
    margin: 0 auto;
    background: white;
}


/* HEADER */
#brand-header{
	/* position:absolute; */
	z-index: 10;
	background: white;
	border-bottom: 1px solid var(--color-gris);
	display: flex;
    align-items: center;
	transition: all .3s;
}
#brand{
	width:50px;
}
#nombre-club{
	font-size: 16px;
	line-height: 1.2;
	width:200px;
	margin-left:10px;
	text-transform:uppercase;
	font-weight: 600;
    color: var(--color-principal);
}
#top-nav{
	padding-left: 20px;
}
#top-nav li{
	margin-right:20px;
    float: left;
}

/* COLUMNA IZQUIERDA */
#content-wrapper{
    display: flex;
}
#left-col-nav{
	width: 25%;
}
#left-nav{
	
}
#left-nav ul{
	
}
#left-nav li {
    padding: 10px 0 0 0;
}
#left-nav a{
	display: inline-block;
    padding: 0;
}

li.selected a{
	color:var(--color-principal) !important;
}
.steps-nav li {
    display: flex;
    align-items: center;
}
.steps-nav a{
	font-size: 15px;
    font-weight: 700;
	cursor: default;
	color: var(--color-gris-medio);
}
.steps-title a{
	font-size: 24px;
    font-weight: 700;
	cursor: default;
	color: #6d6d6d !important;
}

li.selected .step-dot, li.selected .dot{
	background: var(--color-principal) !important;
}
.step-dot, .dot {
	width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    background: var(--color-gris-medio);
    display: inline-grid;
    color: white;
    font-weight: 700;
    text-align: center;
    align-items: center;
    cursor: default;
    margin-right: 10px;
}
#second-nav a{
	color:var(--color-gris-medio);
}
#second-nav a:hover{
	color: var(--color-principal);
}

/* COLUMNA DERECHA */
.content-grande {
    width: 65%;
}
.wrapper-content {
	padding: 10px 0 5px;
}
.btn-white {
    border: 0;
	display: contents;
    text-align: center;
	font-weight: 600;
    color: var(--color-principal);
}
.profile-image {
	display: inline-block;
    float: none;
}

/* TEXTO */
h1 span{
	font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-principal);
}

/* FOOTER */
#footer{
	border-top: 1px solid var(--color-gris);
	padding: 25px 20px 25px 75px;
    background: white;
    width: 100%;
}
#footer-brand {
    display: inline-block;
    width: 150px;
}
#footer-contact {
	padding-top: 10px;
    display: inline-block;
    font-size: 13px;
    color: var(--color-gris-medio);
    float: right;
}

/* TABS */
.tab {
  display: none;
}

/* FORMS */
.formfield {
    margin-bottom: 25px;
}
.form-control {
    border: 0;
    border-bottom: 1px solid var(--color-gris);
    padding: 10px 0;
    color: var(--color-principal);
}
.invalid input,
.invalid .chosen-single 
{
	border-bottom: 1px solid var(--color-invalid) !important;
}
.invalid label.btn-white,
.invalid label#label-foto-dni
{
	color: var(--color-invalid) !important;
}
label {
	margin-bottom: 7px;
    font-weight: 600;
    font-size: 85%;
    color: var(--color-gris-oscuro);
    /* display: none; */
}
.aclaracion{
	display: none;
}
input, textarea{
	
}
button{
	
}
.one-col{
	width:100%;
}
.two-col{
	display: inline-grid;
    width: 45%;
    margin-right: 4%;
}
.three-col{
	display: inline-grid;
	width:30%;
	margin-right:2%;
}
.btn-enviar{
    text-align:center !important;
	/*float:right;*/
}

button.btn{
	display: inline-block !important;
    text-transform: uppercase;
    padding: 10px 35px;
    border-radius: 20px;
	margin: 0 auto;
}
.btn-normal{
    background-color: var(--color-gris-medio);
    border-color: var(--color-gris-medio);
    color: #FFFFFF;
}
.btn-normal:hover, .btn-normal:focus, .btn-normal:active {
    background-color: var(--color-gris-oscuro);
    border-color: var(--color-gris-oscuro);
    color: #FFFFFF;
}
.btn-primary {
    background-color: var(--color-principal);
    border-color: var(--color-principal);
    color: #FFFFFF;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary, .btn-primary:active:focus, .btn-primary:active:hover, .btn-primary.active:hover, .btn-primary.active:focus {
    background-color: var(--color-principal-oscuro);
    border-color: var(--color-principal-oscuro);
}
.btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active, .open .dropdown-toggle.btn-white, .btn-white:active:focus, .btn-white:active:hover, .btn-white.active:hover, .btn-white.active:focus {
    border: 0;
}
.link-documento {
   font-size:0.9em;
}

.img-dni {
    max-width: 100px;
    max-height: 100px;
}

.label-foto {
    display: block;
}

#label-foto-dni{
    font-size:0.9em !important;
	margin: 0 auto 7px auto;
    /*display: normal !important;*/
    background: transparent;
    display: block;
    font-weight:normal !important;
    text-align: left !important;
}
#icon-foto-dni{
	margin: 0 auto !important;
	background-repeat:no-repeat;
    padding-left: 25px !important;
}

.chosen-single {
	padding: 5px 10px !important;
    display: flex !important;
    align-items: center !important;
	border: 0 !important;
    background: white !important;
}
.chosen-drop {
    border: 0 !important;
}
.chosen-search input {
	border: 0 !important;
	border-bottom: 1px solid var(--color-gris) !important;
}
.chosen-results{
	padding: 0 0 15px 0 !important;
    margin: 0 !important;
} 
.chosen-search{
	padding:10px !important;
}

.chosen-container-active .chosen-single,
.chosen-container-active .chosen-drop{
	border:1px solid var(--color-principal) !important;
}
.chosen-whit-drop{
}
.form-control:focus, .single-line:focus {
	border-bottom-width: 2px;
    border-color: var(--color-principal) !important;
}
.active-result{
	padding: 5px 10px !important;
}
.active-result:hover{
	background:var(--color-principal) !important;
}
.result-selected{
	background:#b2b2b2 !important;
}
.highlighted{
	background:var(--color-principal) !important;
}

.mobile{
	display:none;
}
.desktop{
	display:block;
}
#domicilio-tabs{
	
}
.text-danger {
    color: var(--color-invalid);
}
#domicilio-tabs {
    border-bottom: 1px solid var(--color-gris);
}
.radio.radio-inline.active {
    border-bottom: 3px solid var(--color-principal-oscuro);
}
.radio.radio-inline {
    padding: 20px;
}
.radio label::after {
    background-color: transparent !important;
}
.radio label::before { 
    border: none !important;
}
.radio input[type="radio"] {
    display: none !important;
}
#bandera{ 
	width: 300px;
    height: 100vh;
    position: fixed;
    z-index: 1;	
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.cuadro-mensaje {
	text-align: center;
    padding: 0 0 50px 0;
    margin: 100px 0 50px 0;
    border: 1px solid var(--color-principal);
    border-radius: 20px;
}
.msj-success .icono-msj{
	border: 5px solid white;
    background-color: white;
	padding: 10px;
	width: 110px;
    height: 110px;
    display: block;
    margin: 0 auto;
	background-image:url(../imgs/icono-success.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    top: -50px;
}
#numero-tramite{
	color: var(--color-gris-oscuro);
    font-weight: 600;
    font-size: 25px;
}

#loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    top: 0;
    z-index: 1;
    align-items: center;
}
#wrapper-loader{
	position: relative;
    display: block;
    margin: 0 auto;
}
.sk-spinner-fading-circle .sk-circle:before {
    background-color: var(--color-principal) !important;
}
#content-brand{
	min-width:25%; 
	display: flex; 
	align-items: center;
}
.pace .pace-progress {
    background: var(--color-acento) !important;
}
.text-aviso{
	color: #000000 !important;
}
.text-aviso:hover{
	color: #a5a5a5 !important;
}
/* MEDIA QUERIES */
@media only screen and (min-width: 768px) {
	#brand-header.sticky{
		position:fixed;
		top:0;
		-webkit-box-shadow: 0px 1px 3px 0px #00000052;
		-moz-box-shadow: 0px 1px 3px 0px #00000052;
		box-shadow: 0px 1px 3px 0px #00000052;
		padding: 15px 20px 15px 75px;
	}
	#brand-header.sticky #brand{
		width:40px;
	}
	#brand-header.sticky #content-brand{
		min-width: 20%;
	}
}
@media only screen and (max-width: 767px) {
	.btn-primary {
		display: block !important;
	}
	#content-brand{
		display: block; 
	}
	
	#bandera{
		width: 100vw;
		height: 150px;
		position: fixed;
		top: 0;
	}
	#degradado{
		height:100%;
		background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
	}
	body {
		background-size: 100%;
		background-position: center -80%;
	}
	.mobile{
		display:block;
	}
	.desktop{
		display: none !important;
	}
	#bottom-nav{
		position: fixed;
		bottom: 0;
		background: var(--color-principal);
		width: 100%;
		padding: 30px 20px;
	}
	#bottom-nav .step{
		display:none;
	}
	#bottom-nav .step.selected{
		display:block;
	}
	#bottom-nav li.selected a {
		color: white !important;
	}
	#wrapper {
		width: 100vw;
		margin-top: 150px;
	}
	#content-wrapper {
		margin: 0; 
	}
	#content-wrapper {
		display: block;
	}
	#left-col-nav {
		width: 100%;
	}
	.content-grande {
		width: 100%;
	}
	#left-col-nav,
	.content-grande {
		padding: 0 30px;
	}
	.two-col.responsivo{
		width: 100%;
	}
	.three-col.responsivo{
		width: 100%;
	}
	#brand-header {
		overflow: hidden;
		position: relative;
		display: block;
		text-align: center;
		padding: 60px 20px 40px;
	}
	#brand {
		position: fixed;
		top: 100px;
		left: 50%;
		margin-left: -30px;
		width: 60px;
	}
	#nombre-club {
		margin: 0;
		font-size: 20px;
		width: 100%;
	}
	#brand-header.sticky{
		position:fixed;
		top:0;
		-webkit-box-shadow: 0px 1px 3px 0px #00000052;
		-moz-box-shadow: 0px 1px 3px 0px #00000052;
		box-shadow: 0px 1px 3px 0px #00000052;
	}
	#brand-header.sticky #brand{
		position: initial;
		width: 45px;
		margin: 0 auto;
	}
	#brand-header.sticky{
		padding: 10px;
		height: 90px;
	}
	#brand-header.sticky #nombre-club{
		opacity:0;
	}
	
	.form-control {
		height: auto;
		font-size: 18px;
	}
	small {
		margin-top:10px;
		font-size: 100%;
	}
	#bottom-nav{
		display: flex;
		align-items: center;
	}
	#goto-step-2 {
		color: white;
		text-transform: uppercase;
		text-align: right;
	}
	#goto-step-2 i{
		height: 15px;
		width: 13px;
		display: inline-block;
	}
	.steps-dots {
		display: flex;
		position: absolute;
		top: -15px;
	}
	.step-dot {
		width: 30px;
		height: 30px;
	}
	.dot {
		padding: 4px;
		width: 30px;
		height: 30px;
		font-size: 17px;
	}
	.steps-nav a {
		font-size: 16px;
		color: white;
	}
	#footer {
		margin: 0px 0 170px 0;
		padding: 25px 20px;
	}
	#footer-brand{
		display: block;
		width: 50%;
		margin: 0 auto;
	}
	#footer-contact {
		display: block;
		font-size: 15px;
		margin: 20px 0;
		text-align: center;
	}
	
	#menu_on{
		position: fixed;
		top: 35px;
		left: 30px;
		width:30px;
		height: 20px;
		z-index: 20;
	}
	#menu_on span{
		width: 100%;
		height: 4px;
		border-radius: 4px;
		display: block;
		position: absolute;
		background: #ffffff;
		transition: all 0.25s ease; 
		transform-origin : 0px 100%;
	}
	#brand-header.sticky #menu_on span{
		background: var(--color-principal);
	}
	#menu_on span:nth-child(2){
		top: calc(50% - 2px);
	}
	#menu_on span:nth-child(3){
		bottom: 0;
	}
	.menu-expanded #menu_on span:nth-child(1){
		transform: rotate(45deg) translate(-2px,1px); 
	}
	.menu-expanded #menu_on span:nth-child(2){
		opacity: 0;
	}
	.menu-expanded #menu_on span:nth-child(3){
		transform: rotate(-45deg) translate(-3px,3px); 
	}
	#label-foto-dni {
		width: 100%;
		text-align: center;
	}
	label {
		font-size: 100%;
	}

}

.class_color_generico {
    color:#5D5D5D !important;
}
/*CLASE param BOTON HOME*/
.class_boton_inicio {
    color:#5D5D5D !important;
}
.class_boton_download {
    color:#5D5D5D !important;
}

.class_color_generico_boton {
    color:#FFFFFF !important;
    background-color:#5D5D5D !important;
}

.class_color_generico_boton_normal {
    color:#5D5D5D !important;
    background-color:#FFFFFF !important;
}

.color-rojo {
    color:#e77d7d !important;
}

.color-verde {
    color:#69A168 !important;
}

.comentarios_textbox-color {
    color:#5D5D5D !important
}
.comentarios_textbox-small {
   font-size:0.7em;
}


.msj-success .icono-msj-for-icon{
	border: 5px solid white;
    background-color: white;
	padding: 10px;
	width: 110px;
    height: 110px;
    display: block;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    top: -50px;
}