@charset "utf-8";

/*@import url(http://fonts.googleapis.com/css?family=Noto+Sans);
font-family: 'Noto Sans', sans-serif;*/

body {
    font-size: 12px;
    /*font-family:'Noto Sans';*/
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #666;
    min-height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    /*padding-right: 5px;
	padding-left: 5px;*/
    /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

a img {
    /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
}

a:link {
    color: #414958;
    text-decoration: underline;
    /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
    color: #4E5869;
    text-decoration: underline;
}

a:hover,
a:active,
a:focus {
    /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
}

.container {
    /* width: 85%; */
    /* max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
    min-width: 950px;
    /* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
    margin-top: 5px;
    margin: 0 auto;
    /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    position: relative;
}

.header {
    background: #5C2134;
    max-height: 10px !important;
}

.watermark {
    background-image: url('../../design/images/prueba.gif');
    background-repeat: no-repeat;
    background-position: 150px 40px;
    background-size: 500px;
}

.content {
    /*width: 85%;*/
    width: 800px;
    padding: 20px 0;
    /*overflow:hidden;
	width: 200px;*/
    /*margin-left:501px;*/
    display: table;
    margin: 0 auto;
    vertical-align: middle;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 33px;
    color: white;
}

.containerLogin {
    width: 85%;
    /*   max-width: 1260px; a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
    min-width: 900px;
    /* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
    margin-top: 5px;
    margin: 0 auto;
    /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    position: relative;
}

.contentLogin {
    border: 1px red;
    width: 85%;
    padding: 10px 0;
    /*width: 200px;*/
    margin-left: 501px;
    float: left;
    vertical-align: middle;
}

.footerLogin {
    /*margin-top:500px;*/
    font-size: 12px;
    /*padding: 150px 0;*/
    /*position: relative; this gives IE6 hasLayout to properly clear */
    /*clear: both;  this clear property forces the .container to understand where the columns end and contain them */
}

.sidebar1 {
    padding: 10px 0;
    /*float: left;*/
    width: 500px;
    background: #005AA8;
    /*padding-bottom: 10px;
	position: fixed;*/
}

.sidebar,
.contentLogin {
    min-height: 600px;
}

.fltrt {
    /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
}

.fltlft {
    /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
}

.clearfloat {
    /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}

.titulo {
    color: #FFF;
    font-size: 14px;
    letter-spacing: 0px;
    font-weight: normal;
}

.tituloInners {
    color: #FFF;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 13px;
    font-weight: normal;
}

.userDescr {
    font-size: 11px;
    letter-spacing: 0;
}

.tituloBig {
    font-size: 22px;
    color: #FFF;
    /* font-family: Arial,Helvetica , sans-serif;*/
}

.labelLeft {
    text-align: right;
    padding: 2px 2px 2px 2px;
}

#clave,
#fake_pass,
#password,
#usuario,
#fake_user {
    width: 100%;
    height: 45px;
    padding-left: 15px;
    /*padding-top: 0px;*/
    margin-bottom: 10px;
}

:root input[type="text"],
*:root input[type="password"],
*:root input[type="email"],
*:root input[type="number"],
*:root input[type="tel"],
*:root textarea {
    /*float: left;*/
    font-size: 12px;
    /*padding: 4px 2px;
    margin: 2px 0 2px 0px;
    /**/
    /*	background-color: rgba(255, 255, 255, 0.8);*/
    border: 1px solid #e0e0e0;
    color: #212121;
    /*font-family:  Arial,Helvetica;	*/
}

input[type="button"],
input[type="submit"] {
    display: inline-block;
    padding: 3px;
    /*margin: 3px;*/
    background: #5C2134;
    color: white;
    border: none;
    font-weight: bold;
    text-decoration: none;
    padding: 3px 10px 3px 10px;
    border-radius: 2px;
}

input[type="button"]:hover,
input[type="submit"]:hover {
    background: #3b1521;
    color: white;
    cursor: pointer;
}


/* ----------- stylized ----------- */

#stylized {
    display: table;
    border: solid 1px #ccc;
    /*background:#ebf4fb;
	background:#F3F3F3;*/
    padding: 5px 5px 5px 5px;
    width: 100%;
    border-radius: 5px;
    -moz-box-shadow: 0 0 10px 1px #ccc;
    -webkit-box-shadow: 0 0 10px 1px #ccc;
    box-shadow: 0 0 10px 1px #ccc;
}

#stylized h1 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

#stylized p {
    font-size: 11px;
    color: #666666;
    /*margin-bottom:20px;*/
    padding-bottom: 10px;
}

#stylized label {
    display: block;
    font-size: 12px;
    text-align: left;
    float: left;
    padding-left: 2px;
}

#stylized .small {
    color: #666666;
    display: block;
    font-size: 11px;
    font-weight: normal;
    text-align: left;
    /*	margin:2px 0 5px 10px*/
    ;
    width: 140px;
}

#stylized select {
    float: left;
    font-size: 12px;
    padding: 2px 2px 2px 2px;
    border: 1px solid #BABABA;
    margin: 2px 2px 2px 2px;
}


/*#stylized input {
	float:left;
	font-size:11px;
	margin:2px 2px 2px 2px;
	width:200px;
}*/


/* BULLETS */

ul {
    /*list-style-type: none;*/
    padding-left: 0;
    margin-left: 0;
}

li {
    /* background-image: url(../images/bullets/blue.gif);    */
    padding-left: 20px;
    list-style: none;
    /*margin-bottom:15px;*/
    /*text-decoration:none; 
  
  
	color:#666;
	
	background-position: left top; background-position: 0px 4px;*/
    background-size: 14px;
    background-repeat: no-repeat;
}

li a {
    text-decoration: none;
    color: #666;
}

li a:hover {
    color: #333;
}

li.pdf {
    background-image: url(../images/bullets/pdf.gif);
    padding-left: 20px;
}

.tbody1 {
    width: 100%;
}




/* INICIO LINEAS RICARDO SANTIAGO */

* {
    margin: 0;
    padding: 0;
}

html,
body {
    /*font-family: 'Noto Sans', sans-serif;*/
    font-family: Arial, Helvetica, sans-serif;
}

.FooterBG {
    background-color: #5C2134;
    background-size: 100%;
    min-height: 20px;
    width: 100%;
    color: #b3b0ab;
    font-size: 12px;
    text-align: center;
}

.col1 {
    border-top: 12px solid #401724;
    border-left: 10px solid #401724;
    max-width: 100%;
}

.col2 {
    border-top: 12px solid #B2945E;
    border-left: 10px solid #B2945E;
    max-width: 100%;
}

.col3 {
    border-top: 12px solid #979897;
    border-left: 10px solid #979897;
    max-width: 100%;
}

.col4 {
    border-top: 12px solid #12322b;
    border-left: 10px solid #12322b;
    max-width: 100%;
}

.contenedor-tabla {
    display: table;
    width: 100%;
}

.contenedor-fila {
    display: table-row;
    width: 100%;
}

.contenedor-columna {
    display: table-cell;
}

#leftcolumn {
    /*background-color: #005AA8; */
    background-color: #F2F2F2;
}



#BotonHeader {
    float: right;
    background-color: #401724;
    color: #B2945E;
    margin: -14px 10px 0 0;
}

#BotonHeader:hover {
    background-color: #401724;
    color: white;
    cursor: pointer;
}

@media print {
    .imgwater {
        display: block;
    }
}

#entrar {
    width: 100%;
    height: 45px;
}

.tableRounded {
    border: 1px solid white;
    border-radius: 2px 2px 2px 2px;
    box-shadow: 0 1px 3px #5C2134;
    border-spacing: 0px;
    margin: 1px;
    padding: 10px;
}


/* FIN LINEAS RICARDO SANTIAGO */


/*///////////////////// MODAL BOX START //////////////////*/

.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
    opacity: 0;
    /* display: none; */
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

.modalDialog:target {
    opacity: 1;
    /*display:yes;*/
    pointer-events: auto;
}

.modalDialog>div {
    /*width: 800px;*/
    /*height: 400px;*/
    position: relative;
    margin: 5% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 5px;
    background: #fff;
}

.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
    cursor: pointer;
}

.close:hover {
    background: #e37222;
}

.selectTR {
    background-color: white;
}

.selectTR:hover {
    background-color: #EBEBEB;
    cursor: pointer;
}

.disableTR {
    background: #BABABA;
    z-index: 99999;
    opacity: 1;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

.button3 {
    display: table;
    white-space: nowrap;
    height: 52px;
    background: #B2945E;
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 28px 10px 0px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.button3:hover {
    background: #8f7649
}

.button3:selected {
    background: #8f7649
}

.button3-1 {
    display: table;
    white-space: nowrap;
    height: 52px;
    background: #414958;
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 28px 10px 0px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.button3-1:hover {
    background: #E37222;
}

.button4 {
    float: left;
    display: table;
    white-space: nowrap;
    margin: 5px;
    background: #e8c27d;
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 0px 10px 0px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.button4:hover {
    background: #8f7649;
}

.button4_selected {
    float: left;
    display: table;
    white-space: nowrap;
    margin: 5px;
    background: #8f7649;
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 0px 10px 0px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.parrafo {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: bold;
}


/*///////////////////// MODAL BOX END //////////////////*/

.wait {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
    margin: auto;
}

html,
body {
    height: 100%;
    margin: 0;
}

main {
    min-height: 100%;
}

.content-inside {
    padding: 20px;
    padding-bottom: 50px;
}

.cellToleft {
    float: left;
    padding: 0px 5px 0px 5px;
    margin: 0px 5px 0px 5px;
}

.BorderNaranja {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    padding: 2px 0px 10px 0px;
    border-bottom: 1px solid #5C2134;
    font-weight: bold;
    color: #000;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.page-header,
.page-footer {
    flex-shrink: 0;
}

.page-body {
    flex-grow: 1;
}

 

@keyframes gradient2 {
	0% {
		background-position: 0% 30%;
	}
	30% {
		background-position: 30% 40%;
	}
	50% {
		background-position: 50% 60%;
	}
	80% {
		background-position: 80% 90%;
	}
	100% {
		background-position: 90% 100%;
	}
}
:root{
    --arena: #dbd1c1;
    --blanco: #ffffff;
	--guinda: #4d1c1c;
	--guindatenue: #5f4444;
    --btn:#ded8cf;
    --anim-duration: 2s;
}

.btn1 {
	/*background: linear-gradient(90deg, var(--color3),var(--color1), var(--color2), var(--color3));*/
	background: radial-gradient(90px circle at top center, var(--btn) 30%, var(--blanco));
	background-size: 180% 40%;
	animation: gradient2 var(--anim-duration)  ease-in-out infinite alternate;
	box-shadow: 1px 1px 3px 0 #bbbbbb;
  }
  
  
  /* CSS */
  .button-75 {  
	
	align-items: center;  
	border: 0;
	border-radius: 5px;
	box-sizing: border-box;
	color: #000000;
	cursor: pointer;  
	display: flex;
	flex-direction: column;
	font-family: monospace,sans-serif;	
	font-size: 18px;
	font-weight: 900;
	height: 54px;
	justify-content: center;
	letter-spacing: .4px;
	line-height: 1;
	max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 3px;
	text-decoration: none;
	text-transform: uppercase;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	opacity: .95;  		
  }
 

  
  .button-75:active {
	outline: 0;
  }
  
  .button-75:hover {
	outline: 0;
  }
  
  .button-75 span {
	transition: all 200ms;
  }
  
  .button-75:hover span {
	transform: scale(1.1);  
	
  }
  
  
	.button-75 {
	  font-size: 18px;
	  height: 40px;
	}
  
	.button-75 span {
	  line-height: 50px;
	}
  


  .logo{
	text-align-last: auto;    
	/*filter:drop-shadow(.3px .3px 4px white)*/
	filter: invert(1);
  }
  .logo:hover{
	filter:drop-shadow(.3px .3px 4px rgb(199, 195, 195));
	box-shadow:none;
  }

  
  .leyenda{	
	filter:drop-shadow(.3px .3px 4px #cf883f);
  }

  .footerLogin2{
	color:white;
	background: linear-gradient(90deg,var(--guinda), var(--guindatenue) ,var(--guinda) );
	filter:drop-shadow(.3px .3px 4px var(--guinda));
	background-size: 100%;
	opacity: .9;
  }

  
  .add-button {
    position: absolute;
    top: 1px;
    left: 1px;
    display: none;
  }
  
  .installerButton {    
    display: none;
  }

  .alert-anuncio {
    background-color: #f4f2f2 ;
    box-shadow: 1px 1px 3px 0 #bbbbbb;

  }

  .svgicon {
    filter:drop-shadow(.3px .3px 1px rgb(248, 170, 0));

  }

  .grecaptcha-badge { opacity:.5 !important;} 

  .loader {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 6rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .loader:before,
  .loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    animation: pulsOut 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.75));
  }
  .loader:before {
    width: 100%;
    padding-bottom: 100%;
    box-shadow: inset 0 0 0 1rem #fff;
    animation-name: pulsIn;
  }
  .loader:after {
    width: calc(100% - 2rem);
    padding-bottom: calc(100% - 2rem);
    box-shadow: 0 0 0 0 #fff;
  }

  @keyframes pulsIn {
    0% {
      box-shadow: inset 0 0 0 1rem #fff;
      opacity: 1;
    }
    50%, 100% {
      box-shadow: inset 0 0 0 0 #fff;
      opacity: 0;
    }
  }

  @keyframes pulsOut {
    0%, 50% {
      box-shadow: 0 0 0 0 #fff;
      opacity: 0;
    }
    100% {
      box-shadow: 0 0 0 1rem #fff;
      opacity: 1;
    }
  }
      
  
  
  
  
  
  
  
  