@font-face {
    font-family: regular;
    src: url(../fonts/museo_slab_500.otf);
}
@font-face {
    font-family: museo700;
    src: url(../fonts/Museo-700.ttf);
}
@font-face {
    font-family: opensansbold;
    src: url(../fonts/OpenSans-ExtraBold.ttf);
}
@font-face {
    font-family: opensansregular;
    src: url(../fonts/OpenSans-Regular.ttf);
}
.mrg10{ 
	margin-top:10px;
}
.borderZero{
	border:0 !important;
}
.fbold{
	font-family:opensansbold;
}
.fc-black{
	color:#000000 !important;
}
.fc-red{
	color:#FF4539;
}
.fc-big{
	font-size:2em;
}
.hidden{
	display:none !important;
}
.bk-orange{
	background-color:#FF5200;
}
.bk-green{
	background-color:#9ACC5F;
}
.bk-red{
	background-color:#FF4539;
}
.bk-blue{
	background-color:#665EA3;
}
.bk-grey{
	background-color:#DCDCDC;
}
.bk-grey-light{
	background-color:#F5F5F5;
}
.bk-black{
	background-color:#000000;
}
.museo700{
	font-family:museo700;
}
.input-select{
	border:1px #FF4539 solid;
}
body{
	margin:0px;
	padding:0px;
	color:#333333;
	font-family:'regular';
	font-size:1em;
	background-color:#FFFFFF;
}
.login{
	position:absolute;
	width:40%;
	height:auto;
	left:50%;
	margin-left:-20%;
	top:15%;
	color:#777777;
}
.login_top{
	text-align:center;
	font-size:1.5em;
	padding-bottom:10px;
}
.login_top img{
	width:70%;
}
#loading{
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background-color:#539adf;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
	z-index:999;
	display:none;
}

#imgLoad{
	position:fixed;
	width:121px;
	height:78px;
	left:50%;
	margin-left:-60px;
	top:50%;
	margin-top:-100px;
	z-index:999;
	display:none;
	color:#FFFFFF;
}

.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
 background-color: #FFFFFF;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
	
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.caja_login{
    border: 1px solid #e5e5e5;
	-moz-box-shadow: 0 4px 10px -1px rgba(200, 200, 200, 0.7);
	-webkit-box-shadow: 0 4px 10px -1px rgba(200, 200, 200, 0.7);
	box-shadow: 0 4px 10px -1px rgba(200, 200, 200, 0.7);
	background-color:#FFFFFF;
    font-weight: normal;
    margin-left: 8px;
    padding: 26px 24px 46px;
	float:left;
	border-radius:2px 2px 2px 2px;
}
.tit_login{
	width:100%;
	height:auto;
	float:left;
}
.input_login{
	width:100%;
	height:25px;
	float:left;
	border:1px #E5E5E5 solid;
	margin-bottom: 20px;
	background-color:#FBFBFB;
	border-radius:2px 2px 2px 2px;
}

.input_login input{
	width:90%;
	height:100%;
	font-size:130%;
	color:#555555;
	font-weight:lighter;
	border:0;
	padding:0;
	padding-left:5px;
	background-color:transparent;
}
.boton_login{
	width:100%;
	height:30px;
	background-image: -webkit-linear-gradient(top, #2a95c5, #21759b); /* For Safari 5.1 to 6.0 */
	background-image: -o-linear-gradient(top, #2a95c5, #21759b); /* For Opera 11.1 to 12.0 */
	background-image: -moz-linear-gradient(top, #2a95c5, #21759b); /* For Firefox 3.6 to 15 */
	background-image: linear-gradient(to bottom, #2a95c5, #21759b); /* Standard syntax */
	float:left;
	color:#FFFFFF;
	text-align:center;
	border:1px #B7B7B7 solid;
	padding-top:8px;
	cursor:pointer;
	border-radius:2px 2px 2px 2px;
}
.boton_login:hover{
	background-image: -webkit-linear-gradient(top, #2a95dd, #21759b); /* For Safari 5.1 to 6.0 */
	background-image: -o-linear-gradient(top, #2a95dd, #21759b); /* For Opera 11.1 to 12.0 */
	background-image: -moz-linear-gradient(top, #2a95dd, #21759b); /* For Firefox 3.6 to 15 */
	background-image: linear-gradient(to bottom, #2a95dd, #21759b); /* Standard syntax */
}
#error_login{
	width:100%;
	height:auto;
	float:left;
	border:1px #CC0000 solid;
	background-color:#FFEBE8;
	color:#333333;
	margin-bottom:10px;
	display:none;
}
#error_login span{
	display:block;
	padding:10px;
	font-size:0.9em;
}

.body{
	padding:50px;
}

#content {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}

#panel_cabecera{
	width:100%;
	height:94px;
	padding:0px;
	margin:0px;
	background-image:url(../img/logo.png);
	background-size:250px auto;
	background-repeat:no-repeat;
	background-position:50px center;
	text-align:right;
	position:relative;
	background-color:#DCDCDC;
}
#menu_cabecera{
	position:absolute;
	right:10px;
	bottom:10px;
	color:#FFFFFF;
}
#panel_cabecera a{
	color:#FFFFFF;
	text-decoration:none;
}
#panel_cabecera a:hover{
	text-decoration:underline;
}


input{
	padding:10px;
	font-size:1.2em;
	width:100%;
	border:0;
	background-color:transparent;
}

input.small{
	width:90px;
	font-size:1em;
	padding:5px;
	text-align:right;
	color:#FF4539;
}

select{
	padding:10px;
	font-size:1.2em;
	width:100%;
	border:0;
	background-color:transparent;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	background-image:url(../img/select.png);
	background-repeat:no-repeat;
	background-position:right center;
	background-size: auto 23%;
}

textarea{
	background-color:transparent;
	color:#0f204c;
	width:98%;
	height:60px;
}

textarea.giant{
	background-color:transparent;
	color:#0f204c;
	width:98%;
	height:150px;
}

.fila_tit{
	width:100%;
	float:left;
	padding-top:10px;
}
.fila_input{
	width:100%;
	float:left;
	border:1px solid #cdcdcd;
	color:#0f204c;
}
.fila_input:hover{
	border:1px #696969 solid;
}
.fila_input:focus{
	border:1px #696969 solid;
}
.fila_tit_2{
	width:100%;
	float:left;
	position:relative;
	top:-10px;
}
.fila_tit_2 input{
	width:auto !important;
}
.fila_input_small{
	width:40%;
	float:left;
	border:1px solid #cdcdcd;
	color:#0f204c;
}
.fila_input_small:hover{
	border:1px #696969 solid;
}
.fila_input_small:focus{
	border:1px #696969 solid;
}

.fila_btn{
	width:100%;
	float:left;
	text-align:center;
	padding-top:10px;
	padding-bottom:10px;
	background-color:#6dbf3f;
	color:#FFFFFF;
	border-radius:5px;
	font-style:italic;
	margin-top:10px;
	border: 1px solid #b7b7b7;
	cursor:pointer;
	text-decoration:none;
}

.fila_btn:hover{
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
	opacity: 0.8;
}

.fila_btn a{
	color:#FFFFFF;
	text-decoration:none;
}

.fila_btn_red{
	width:100%;
	float:left;
	text-align:center;
	padding-top:10px;
	padding-bottom:10px;
	background-image: -webkit-linear-gradient(top, #CC0000, #6F0100); /* For Safari 5.1 to 6.0 */
	background-image: -o-linear-gradient(top, #CC0000, #6F0100); /* For Opera 11.1 to 12.0 */
	background-image: -moz-linear-gradient(top, #CC0000, #6F0100); /* For Firefox 3.6 to 15 */
	background-image: linear-gradient(to bottom, #CC0000, #6F0100); /* Standard syntax */
	color:#FFFFFF;
	margin-top:10px;
	border: 1px solid #b7b7b7;
	cursor:pointer;
}

.fila_btn_small{
	background-image: linear-gradient(to bottom, #2a95c5, #21759b);
    border: 1px solid #b7b7b7;
    color: #ffffff;
    cursor: pointer;
    float: left;
    margin-left: 10px;
    padding: 13px;
    text-align: center;
    width: 10%;
}

.btn_new{
	width:100%;
	float:left;
	text-align:center;
	padding:20px 0;
	color:#FFFFFF;
	margin-top:10px;
	cursor:pointer;
	text-decoration:none;
	font-size:2.3em;
}

.btn_new:hover{
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
	opacity: 0.8;
}

.btn_new a{
	color:#FFFFFF;
	text-decoration:none;
}

.btn_new .icon{
	position:relative;
	top:15px;
	left:15px;
	width:50px;
}

.padding_view_picture{
	float:left;
	width:100%;
	position:relative;
	text-align:center;
	padding-top:5px;
}

.btn_new_2{
	width:90%;
	float:left;
	text-align:center;
	padding:10px 0;
	color:#FFFFFF;
	margin-top:10px;
	cursor:pointer;
	text-decoration:none;
	font-size:1.2em;
	position:relative;
	left:50%;
	margin-left:-45%;
}

.btn_new_2:hover{
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
	opacity: 0.8;
}

.tab{
	width:100%;
	float:left;
	text-align:center;
	padding:10px 0;
	color:#FFFFFF;
	margin-top:10px;
	cursor:pointer;
	text-decoration:none;
	font-size:1.5em;
}

.tab:hover{
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
	opacity: 0.8;
}

.tab_line{
	border-bottom:5px #9ACC5F solid;
}

.btn_new_2 a{
	color:#FFFFFF;
	text-decoration:none;
}

.btn_new_2 .icon{
	position:relative;
	top:5px;
	width:25px;
}

.tag{
	border: 1px solid #cdcdcd;
    border-radius: 10px;
    float: left;
    margin-right: 5px;
    padding: 5px;
    text-align: center;
    width: auto;
	font-size: 1.2em;
}

.tag span{
	margin-left:5px;
	font-weight:bold;
	cursor:pointer;
}

#panel_movil{
	display:none;
}

table{
	width:100%;
	padding:0;
}
th{
	text-align:left;
	background-color:#DCDCDC;
	color:#FFFFFF;
	padding:10px;
	font-style:italic;
}
td{
	padding:10px;
	padding-bottom:20px;
	border-bottom:1px #4f4f4f solid;
	color:#4f4f4f;
	font-style:italic;
}
.esqIzqTop{
	border-radius:3px 0 0 0;
	border-left:1px #dfdfdf solid;
}
.esqDerTop{
	border-radius:0 3px 0 0;
	border-right:1px #dfdfdf solid;
}
.td_left{
	border-left:1px #dfdfdf solid;
}
.td_right{
	border-right:1px #dfdfdf solid;
}
tr:hover{
	background-color:#eeeeee;
}
.div-full{
	width:100%;
	float:left;
}

.btnEditar{
	text-decoration:underline;
	color:#21759b;
	cursor:pointer;
}
.btnEliminar{
	text-decoration:underline;
	color:#21759b;
	cursor:pointer;
	
}
.btnEditar:hover{
	color:#D54D21;
}
.btnEliminar:hover{
	color:#D54D21;
}
.fila_opciones{
	width:100%;
	display:block;
}
#error{
	width:100%;
	height:auto;
	float:left;
	border:1px #CC0000 solid;
	background-color:#FFEBE8;
	color:#333333;
	margin-top:10px;
	display:none;
}
#error span{
	display:block;
	padding:10px;
	font-size:0.9em;
}
#div_video{
	display:none;
}
.txa-right{
	text-align:right;
}
.txa-center{
	text-align:center;
}
.box-dep{
	border-radius: 10px;
	text-align:center;
	height:100px;
	color:#FFFFFF;
	background-image: -webkit-linear-gradient(top, #2a95c5, #21759b); /* For Safari 5.1 to 6.0 */
	background-image: -o-linear-gradient(top, #2a95c5, #21759b); /* For Opera 11.1 to 12.0 */
	background-image: -moz-linear-gradient(top, #2a95c5, #21759b); /* For Firefox 3.6 to 15 */
	background-image: linear-gradient(to bottom, #2a95c5, #21759b); /* Standard syntax */
	font-size:1.6em;
	vertical-align:middle;
	display:table-cell;
	
}
.box-dep a{
	color:#FFFFFF;
}
.table{
	display:table !important;
	width:100%;
}
td img{
	margin-right:5px;
}
.cell{
	display:table-cell !important;
}
.circle{
	width: 18px;
    height: 18px;
    border-radius: 100%;
    margin-top: 3px;
    margin-right: 3px;
	float:left;
}

.circleBig{
	width: 35px;
    height: 35px;
    border-radius: 100%;
    margin-right: 3px;
	float:left;
	text-align:center;
	cursor:pointer;
}

.circleBig span{
	position:relative;
	top:3px;
	font-size:1.5em;
	color:#FFFFFF;
}

.opacity30{
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	-moz-opacity:0.3;
	opacity: 0.3;
}

.w50{
	width:50%;
	float:left;
	position:relative;
	min-height:30px;
}

.goBack{
	text-decoration:none;
}

.box{
	text-align:center;
	padding:50px;
	font-size:1.6em;
	float:left;
	margin:5px;
	text-decoration:none;
	border:1px #DCDCDC solid;
	color:inherit;
	min-width:150px;
}

.box_small{
	text-align:center;
	padding:25px;
	font-size:1.6em;
	float:left;
	margin:5px;
	text-decoration:none;
	border:1px #DCDCDC solid;
	color:inherit;
	min-width:100px;
}

.title-logo{
	width:auto;
	height:auto;
	float:left;
	position:relative;
}

.title-text{
	width:auto;
	height:auto;
	float:left;
	position:relative;
	margin-left:10px;
}

.title-text .title-big{
	font-size:1.8em;
}

.title-text .title-small{
	font-size:0.8em;
}

.route{
	width:100%;
	position:relative;
	float:left;
	height:auto;
}

.route .date-route{
	width:25%;
	height:auto;
	float:left;
	position:relative;
}

.route .date-route .circle-route{
	width:70px;
	height:70px;
	border-radius:50px;
	padding:10px;
	text-align:center;
	color:#FFFFFF;
	position:relative;
	left:50%;
	margin-left:-45px;
	font-size:0.9em;
}

.route .text-route{
	width: 68%;
    padding: 2%;
	height:auto;
	float:left;
	position:relative;
	
}

.route .text-route .title-route{
	font-family:opensansbold;
}

.route .text-route .desc-route{
	font-weight:bold;
	font-size:0.8em;
	font-family:opensansregular;
}

.route .text-route .desc-route .icon{
	position:relative;
	top:4px;
}

.history{
	width:100%;
	position:relative;
	float:left;
	height:auto;
	padding-bottom:10px;
}

.history .line-history{
	width: 8%;
	height:auto;
	float:left;
	position:relative;
}

.history .text-history{
	width: 90%;
	height:auto;
	float:left;
	position:relative;
	font-family:opensansregular;
	border-bottom:1px #DCDCDC dashed;
}

.only-responsive{
	display:none;
}

@media (max-width: 600px) {
	
body{
	font-size:0.9em;
}

.only-responsive{
	display:block;
}

.btn_new{
	font-size:1.8em;
}

.btn_new .icon{
	position:relative;
	top:10px;
	left:15px;
	width:30px;
}

.route .date-route .circle-route{
	width:57px;
	height:57px;
	border-radius:50px;
	padding:10px;
	text-align:center;
	color:#FFFFFF;
	position:relative;
	left:50%;
	margin-left:-38px;
	font-size:0.9em;
}

.box{
	padding:50px 0;
}

.box_small{
	padding:25px 0;
}

.login{
		width:80%;
		margin-left:-40%;
	}	

#panel_izq{
	display:none;
}
#panel_der{
	width:100%;	
}
#panel_movil{
	position:absolute;
	top:10px;
	left:10px;
	width:40px;
	height:40px;
	display:block;
	background-image: -webkit-linear-gradient(top, #2a95c5, #21759b); /* For Safari 5.1 to 6.0 */
	background-image: -o-linear-gradient(top, #2a95c5, #21759b); /* For Opera 11.1 to 12.0 */
	background-image: -moz-linear-gradient(top, #2a95c5, #21759b); /* For Firefox 3.6 to 15 */
	background-image: linear-gradient(to bottom, #2a95c5, #21759b); /* Standard syntax */
}
.dibujo_menu{
	background-color: #ffffff;
    border-radius: 2px;
    clear: both;
    float: left;
    height: 4px;
    left: 50%;
    margin-bottom: 4px;
    margin-left: -35%;
    position: relative;
    top: 10px;
    width: 70%;
}
#cajablanca_txt{
	padding-left:auto;
	padding-right:auto;
}

table {
		overflow-x: auto;
		display: block;
	}
	
.body{
	padding:20px;
}

.w50{
	width:100% !important;
}

.responsive-100{
	width:100% !important;
	float:left !important;
}

.responsive-none{
	display:none !important;
}

#panel_cabecera{
	height:130px;
	background-position:center 13px;
}

}

@media (min-width: 600px) {
	.real-none{
		display:none;
	}
}

@media (min-width: 1300px) {
	.login{
		width:30%;
		margin-left:-15%;
	}	
	
}




