.fa {
  display: inline-block;
  font-family: Awesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	color: #909090;
}
/* GENERALES */
a{
	-webkit-transition:all 200ms linear;
	-moz-transition:all 200ms linear;
	-o-transition:all 200ms linear;
	-ms-transition:all 200ms linear;
	transition:all 200ms linear;
}
*{
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family:'Open Sans';
}
h1, h2, h3, h4, h5, h6{
	color: #565656;
	font-family: Dosis;
}
body {
	background-color: #fff;
}
a{
	color:#4c4c4c;
	text-decoration:none;
}

/* CLEAR */
.clear::before{
	display: table;
  content: " ";
}
.clear::after{
	display: table;
  content: " ";
	clear:both;
}
/*-------- DEFAULT THEME --------*/
.bg{
	width:100%;
	height:100vh;
	background-color: #000;
	opacity: .8;
	position: fixed;
	z-index:1;
	display: none;
	top:0;
}

/* SIDEBAR DEFAULT */
.box{
	margin-bottom: 10px;
}
.box img{
	max-width: 100%;
}

/* SLIDE DEFAULT */
.slide{
	height: 650px;
	width: 100%;
	margin-bottom:0!important;
}
.camera_pag { /* PAGINATION SLIDE */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 2;
}

/* CONTENT */
.block-padding-default {
    padding: 40px 20px;
}

.block-content h1 {
    color: #400e71;
    margin: 8px 0;
    font-family: light;
}
.block-content img {
    max-width: 100%;
    height: auto;
}
.block-content p,
.block-content li{
    font-size: 1em;
    line-height: 30px;
    padding: 5px 0;
}
.block-content li {
    margin-left: 20px;
}
.post-image{
	height:300px;
	background-size: cover;
	background-position: center;
}

/* FORMULARIOS */
.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="date"],
.form input[type="time"],
.form input[type="number"],
.form select,
.form textarea{
	width: 100%;
	margin: 0 0 10px;
	border: 0;
	padding: 10px 15px;
	font-size: .9em;
	border:1px solid #cecece;
	border-radius:5px;
	max-width:100%;
	min-width:100%;
	background-color: #f7f7f7;
}
.form label{
    display:block;
}
.form button,
.form input[type="submit"]{
	margin: 5px 0;
	padding: 6px 25px;
	background-color: #03A9F4;
	border-radius: 4px;
	border:0;
	color: #fff;
	font-weight: bold;
}
.form button:hover,
.form input[type="submit"]:hover{
    box-shadow:1px 1px 10px gray;
}

/* TABLES */
.tables{
	border-spacing: 0;
	width: 100%;
	text-align: left;
	clear: both;
  	max-width: none!important;
	border-collapse: separate!important;
}
.tables th{
	padding: 8px;
	font-size:.95em;
	color: #333;
	background-color:#f3f3f3;
	text-align: center;
}
.tables td{
	padding: .75rem;
	color: #575962;
	vertical-align: middle;
	font-size: 13px;
	border-bottom: 1px solid #f6f6f6;
}
.tables td a{
	color:#2196F3;
}
.tables tr:hover td{
	background: #ececec;
	color: #339;
	opacity:1;
}
.tables td.col_right {
    text-align: right;
}
.tables td.col_center {
    text-align: center;
}
.tables tfoot tr:last-child td{
	border-bottom:0;
	background-color:#f3f3f3;
	font-weight:bold;
}
