* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	background: #ebebeb;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Oswald", Arial, Sans-serif;
	font-weight: normal;
}

a {
	text-decoration: none;
	color:#BB1F35;
}

a:hover {
	text-decoration: underline;
}

.contenedor {
	max-width: 1000px;
	width: 90%;
	margin: auto;
}

.izquierda {
	float: left;
}

.derecha {
	float: right;
}

/* --- Header ---*/

header {
	color:#fff;
	margin-bottom: 30px;
	background: #ff686b;
}

header .contenedor {
	overflow: hidden;
}

header .logo {
	max-width: 300px;
}

header .logo a {
	color: #fff;
	font-family: "Oswald", Arial, Sans-serif;
	font-size: 28px;
	line-height: 70px;
}

header .logo a:hover {
	text-decoration: none;
}

header .buscar {
	display: inline-block;
	position: relative;
	margin-right: 15px;
}

header .buscar input[type="text"]{
	background: none;
	border:1px solid rgba(255,255,255,.7);
	color:rgba(255,255,255,.7);
	height: 30px;
	padding: 0 10px;
	padding-right: 32px; 
}

header .buscar input[type="text"]:hover,
header .buscar input[type="text"]:focus {
	color:#fff;
	border:1px solid #fff;
}

header .buscar .icono {
	color:rgba(255,255,255,.7);
	position: absolute;
	right: 0;
	background: none;
	border:none;
	cursor:pointer;
	padding: 6px;
	font-size: 16px;
	line-height: 16px;
}

header .buscar .icono:hover {
	color: #fff;
}

header .menu {
	display: inline-block;
}

header .menu ul {
	list-style: none;
}

header .menu ul li {
	display: inline-block;
	line-height: 70px;
}

header .menu ul li a {
	color: #fff;
	display: block;
	padding: 0px 20px;
	font-weight: bold;
}

header .menu ul li a:hover {
	background: #000;
	text-decoration: none;
}

header .menu ul li a .icono {
	margin-left: 15px;
}

/* --- Post --- */
.post {
	width: 100%;
	background: #fff;
	box-shadow: 0px 0px 5px rgba(0,0,0, .5);
	margin-bottom: 30px;
	padding: 30px;
}

.post article .titulo {
	font-family: "Oswald", Arial, Sans-serif;
	font-size: 28px;
	font-weight: normal;
	line-height: 28px;
	margin-bottom: 10px;
}

.post article .titulo a {
	color:#000;
}

.post article .fecha {
	color:#747474;
	font-size: 14px;
	margin-bottom: 20px;
}

.post article .thumb {
	margin-bottom: 20px;
}

.post article .thumb img {
	vertical-align: top;
	width: 100%;
}

.post article .extracto {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 20px;
}

.post article .continuar {
	padding: 15px;
	background: #ff686b;
	color:#fff;
	font-size: 1em;
	font-family: Arial, sans-serif, helvetica;
	border-radius: 2px;
	border:none;
	float: right;
	cursor: pointer;
}

.post article .continuar:hover{
	background: #cf2e2e;
}


.post article .textoresaltado {
	font-size: 1em;
	font-family: Arial, sans-serif, helvetica;
	border-radius: 2px;
	border:none;
	cursor: pointer;
}

.post article .textoresaltado:hover{
	background: #8FD8CE;
}

.btn {
	padding: 15px;
	background: #595959;
	color:#fff;
	font-size: 1em;
	font-family: Arial, sans-serif, helvetica;
	border-radius: 2px;
	border:none;
	float: right;
	cursor: pointer;
}

.btn:hover {
	text-decoration: none;
	background: #BB1F35;
}

/* --- Footer --- */
footer {
	background: #ff686b;
	color: #fff;
}

footer .copyright {
	text-align: center;
	font-size: 14px;
	padding: 15px 0;
}

/* --- Paginacion --- */

.paginacion {
	margin-bottom: 30px;
}

.paginacion ul {
	list-style: none;
	text-align: center;
}

.paginacion ul li {
	display: inline-block;
	margin:0 5px;
	color:#fff;
}

.paginacion ul li a {
	display: block;
	padding:10px 20px;
	background: #595959;
	color:#fff;
}

.paginacion ul li a:hover {
	background: #BB1F35;
	text-decoration: none;
}

.paginacion ul .active {
	background: #BB1F35;
	padding:10px 20px;
}

.paginacion ul .disabled{
	background: #a8a8a8;
	padding:10px 20px;
	cursor: not-allowed;
}

.paginacion ul .disabled:hover {
	background: #a8a8a8;
}

/* --- Formularios --- */
.formulario {
	width: 100%;
	overflow: hidden;
}

.formulario input[type="text"],
.formulario input[type="email"],
.formulario input[type="password"],
.formulario input[type="date"],
.formulario textarea {
	border: 1px solid #A8A8A8;
	border-radius: 2px;
	padding: 16px;
	width: 100%;
	display: block;
	margin-bottom:20px;
	font-family:Arial, sans-serif, helvetica;
	font-size: 1em;
	color:#141938;
}

.formulario input[type="text"]:focus,
.formulario input[type="email"]:focus,
.formulario input[type="password"]:focus,
.formulario input[type="date"]:focus,
.formulario textarea:focus {
	border: 2px solid #595959;
	padding: 15px;
}

.formulario textarea {
	max-width: 100%;
	min-width: 100%;
	min-height: 70px;
	resize: vertical;
}

.formulario input[type="submit"]{
	padding: 12px;
	background: #ff686b;
	color:#fff;
	font-size: 22px;
	font-family: Lato, sans-serif, helvetica;
	border-radius: 3px 3px 3px 3px;
	border:none;
	display: block;
	cursor: pointer;
	margin-top: 4px;
	margin-left: auto;
    margin-right: auto;
}

.formulario input[type="submit"]:hover{
	background: #cf2e2e;
}

.formulario button[type="submit"]{
	padding: 12px;
	background: #ff686b;
	color:#fff;
	font-size: 22px;
	font-family: Lato, sans-serif, helvetica;
	border-radius: 3px 3px 3px 3px;
	border:none;
	cursor: pointer;
	margin-top: 4px;
}

.formulario button[type="submit"]:hover{
	background: #cf2e2e;
}

ul.textoajustado  { 
  margin: 0; 
  padding: 0; 
} 
ul.textoajustado textarea { 
	border: none;
	border-radius: 2px;
	padding: none;
	width: 100%;
	display: block;
	margin-bottom: 5px;
	font-family:Arial, sans-serif, helvetica;
	font-size: 1em;
	color:#141938;
	max-width: 100%;
	min-width: 100%;
	min-height: 5px;
	resize: vertical;
} 

.alert {
	padding: 1em;
	color:#fff;
	border-radius: 2px;
	margin-bottom: 20px;
	font-size: 14px;
}

.alert.error {
	background: #F2DEDE;
	border:1px solid #a94442;
	color: #a94442;
}

.alert.success {
	background: #4CAF50;
}

fieldset.group  { 
  margin: 0; 
  padding: 0; 
  margin-bottom: 1.25em; 
  padding: .125em; 
} 

fieldset.group legend { 
  margin: 0; 
  padding: 0; 
  font-weight: bold; 
  margin-left: 20px; 
  font-size: 100%; 
  color: black; 
} 


ul.checkbox  { 
  margin: 0; 
  padding: 0; 
  margin-left: 20px; 
  list-style: none; 
} 

ul.checkbox li input { 
  margin-right: .25em; 
} 

ul.checkbox li { 
  border: 1px transparent solid; 
  display:inline-block;
  width:90%;
} 

ul.checkbox li label { 
  margin-left: ; 
} 
ul.checkbox li:hover, 
ul.checkbox li.focus  { 
  background-color: #8FD8CE; 
  border: 1px gray solid; 
  width: 90%; 
} 

ul.grupoinput  { 
  margin: 0; 
  padding: 0; 
  margin-left: 20px; 
  list-style: none; 
} 
ul.grupoinput label { 
  display: inline-block;
  width: 150px;
  text-align: right; 
} 

ul.grupoinput input[type="text"] { 
  	border: 1px solid #A8A8A8;
	border-radius: 2px;
	padding: 4px;
	width: 60%;
	display: inline-block;
	margin-bottom:6px;
	font-family:Arial, sans-serif, helvetica;
	font-size: 1em;
	color:#141938;
} 

ul.grupoinput input[type="text"]:focus {
	border: 1px solid #595959;
	padding: 4px;
}

ul.inputfecha  { 
  margin: 0; 
  padding: 0; 
  text-align: right; 
  list-style: none; 
} 
ul.inputfecha label { 
  display: inline-block;
  width: 50px;
  text-align: right; 
} 

ul.inputfecha input[type="date"] { 
  	border: 1px solid #A8A8A8;
	border-radius: 2px;
	padding: 16px;
	width: 180px;
	display: inline-block;
	margin-bottom:6px;
	font-family:Arial, sans-serif, helvetica;
	font-size: 1em;
	color:#141938;
} 

ul.inputfecha input[type="date"]:focus {
	border: 2px solid #595959;
	padding: 15px;
}

ul.inputfecha input[type="text"] { 
  	border: 1px solid #A8A8A8;
	border-radius: 2px;
	padding: 16px;
	width: 160px;
	display: inline-block;
	margin-bottom:6px;
	font-family:Arial, sans-serif, helvetica;
	font-size: 1em;
	color:#141938;
} 

ul.inputfecha input[type="text"]:focus {
	border: 2px solid #595959;
	padding: 15px;
}

.column {
  float: left;
  width: 50%;
  padding: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


.header-image {
    margin-bottom: 0;
    border-bottom: 1px solid #EAEAEA;
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/******************************************************************************/
/******************************************************************************/
.calendar {
    display: flex;
    flex-flow: column;
}
.calendar .header .month-year {
    font-size: 22px;
    font-weight: bold;
    color: #636e73;
    padding: 20px 0;
}
.calendar .days {
    display: flex;
    flex-flow: wrap;
}
.calendar .days .day_name {
    width: calc(100% / 7);
    border-right: 1px solid #fff;
    padding: 20px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: #818589;
    color: #fff;
    background-color: #047C84;
}
.calendar .days .day_name:nth-child(7) {
    border: none;
}
.calendar .days .day_num {
    display: flex;
    flex-flow: column;
    width: calc(100% / 7);
    border-right: 1px solid #e6e9ea;
    border-bottom: 1px solid #e6e9ea;
    padding: 5px;
    font-weight: bold;
    color: #7c878d;
    cursor: pointer;
    min-height: 100px;
}
.calendar .days .day_num span {
    display: inline-flex;
    width: 30px;
    font-size: 18px;
}
.calendar .days .day_num .event {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    padding: 3px 2px;
    border-radius: 4px;
    background-color: #f7c30d;
    color: #fff;
    word-wrap: break-word;
}
.calendar .days .day_num .event.green {
    background-color: #04C4C4;
}
.calendar .days .day_num .event.blue {
    background-color: #518fce;
}
.calendar .days .day_num .event.red {
    background-color: #ce5151;
}
.calendar .days .day_num:nth-child(7n+1) {
    border-left: 1px solid #e6e9ea;
}
.calendar .days .day_num:hover {
    background-color: #fdfdfd;
}
.calendar .days .day_num.ignore {
    background-color: #fdfdfd;
    color: #ced2d4;
    cursor: inherit;
    font-size: 14px;
}
.calendar .days .day_num.selected {
    background-color: #f1f2f3;
    cursor: inherit;
}

.radio-toolbar input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.radio-toolbar label {
    display: block;
    max-width: 25%;
    min-width: 220px;
    background-color: #04C4C4;
    padding: 10px 20px;
    font-family: sans-serif, Arial;
    font-size: 16px;
    border: 2px solid #444;
    border-radius: 4px;
	margin-left: auto;
    margin-right: auto;    
}

.radio-toolbar input[type="radio"]:checked + label {
    background-color:#ff686b;
    border-color: #ff686b;
}

.radio-toolbar input[type="radio"]:focus + label {
    border: 2px dashed #444;
}

.radio-toolbar label:hover {
  background-color: #04fcfc;
}

.bicolor h2 {
	color: black;
}

.bicolor span {
	color: #04C4C4;
}