/* FONTS */
@font-face {
	font-family: 'Montserrat';
	src: url('../includes/fonts/Montserrat-Regular.eot');
	src: local('☺'),
		url('../includes/fonts/Montserrat-Regular.woff') format('woff'),
		url('../includes/fonts/Montserrat-Regular.ttf') format('truetype'),
		url('../includes/fonts/Montserrat-Regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* HTML */
* {
	margin: 0;
	padding: 0;
}
html {
  font-size: 14px;
}
body {
	background: #EDEDED;
	font-family: 'Monserrat',Arial, sans-serif;
	color: #2E2E36;
}

h1, h2, h3 {
	font-family: 'Monserrat', Arial, sans-serif;
  font-weight: bold;
}

h1{
  margin-top: 30px;
  font-size: 2.5em;
  color: #DB518E;
}

h2 {
  margin-top: 20px;
	font-size: 1.9em;
  color: #2E2E36;
}

h3 {
	font-size: 1.3em;
  margin-top: 5px;
  color: #2E2E36;
}

p {
	text-align:justify;
	margin-top: 10px;
}

small {
	font-size: 0.6em;
}

header small {
  color: #FFF;
}

iframe{
  border: none;
  width: 100%;
  height: 700px;
}

canvas {
	display: block;
	position: relative;
	margin:30px auto;
	background: #FFF;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border:solid 1px #DB518E;
  cursor:crosshair; 
}


/* LINKS */
a {
	text-decoration: none;
}
a:link, a:visited {
	color: #DB518E;
  font-weight: bold;
}
a.btn:link, a.btn:visited {
	color:#FFF;
}
a:hover, a:active {
	color: #2E2E36;
}

.btn {
  font-weight: bold;
}

.btn-primary {
	color: #FFF;
	background-color: #DB518E;
	border-color: #DB518E;
}

.btn-primary:hover, .btn-primary:active {
	background-color: #2E2E36;
	border-color: #2E2E36;
}

.btn-danger, .btn-secondary{
  font-weight: bold;
}

.btn-secondary {
	font-weight: bold;
  background-color: #B2B2B2;
  border-color: #B2B2B2;
  color: #FFF;
}
.btn-secondary:hover, .btn-secondary:active {
	background-color: #B2B2B2;
	border-color: #B2B2B2;
}

/* BOOTSTRAP */
.container{
  max-width: 1440px; 
}

.modal-header{
  background-color: #DB518E;
}

.alert-primary {
  background-color: #DB518E;
  font-family: 'Monserrat', Arial, sans-serif;
  color: #FFF;
  font-size: 1.2em;
  font-weight: bold;
}

.img-thumbnail {
  max-width: 200px;
}

.carousel-inner{
  width:100%;
  max-height: 600px !important;
  background-color: #B4B4B4;
}
.carousel-item img {
  max-height: 600px !important;
}


/* HEADER */
header{
  background-color: #DB518E;
  font-family: 'Monserrat', Arial, sans-serif;
}

header h1{
  color: #FFF;
  text-align: center;
  font-size: 3em;
}
header h2{
  color: #FFF;
  text-align: center;
  font-size: 1.5em;
}

header .btn-primary {
	color: #FFF;
	background-color: #2E2E36;
	border-color: #2E2E36;
}

header .btn-primary:hover, header .btn-primary:active {
	background-color: #B2B2B2;
	border-color: #B2B2B2;
}

header #header_fondo{
	background: url("../../elementos/header_fondo.png") no-repeat top right;
}


/* MENÚ */
nav {
	background-color: #B2B2B2;
  width: 100%;
  border-top: solid 10px #2E2E36;
  border-bottom: solid 5px #2E2E36;
}

nav.navbar{
  padding: 0px;
}

a.nav-link:link, a.nav-link:visited{
	color: #2E2E36;
	font-weight: bold;
  padding: 8px 20px !important;
}

a.nav-link:hover, a.nav-link:active{
	color: #FFF;
	background-color: #DB518E;
}

div.dropdown-menu{
  background-color: #B2B2B2;
  border: none;
}
a.dropdown-item{
  font-size: 13px;
  color: #2E2E36;
}

button.navbar-toggler {
  color: #2E2E36;
}
button.navbar-toggler:hover, button.navbar-toggler:active {
  background-color: #B2B2B2;
  color: #FFF;
}



/*Listados*/
table.listado {
	width:100%;
	border-collapse: collapse;
	margin:10px auto;
}
table.listado tr{
	margin: 0 5px;
	border-bottom:solid 1px #2E2E36;
}
table.listado th{
	text-align:center;
	color: #FFF;
  background-color: #DB518E;
	font-weight: bold;
	border-top: solid 1px #2E2E36;
	padding: 5px;
}
table.listado td{
	padding:5px;
}


/*FORMULARIOS*/
label {
	color: #2E2E36;
}


/*FOOTER*/
footer{
	background: #B2B2B2;
  border-top: solid 5px #2E2E36;
  border-bottom: solid 10px #2E2E36;
  margin: 30px 0 0 0;
	padding: 30px 0;
	color: #FFF;
}

footer a:link, footer a:visited{
	color: #FFF;
}
footer a:hover, footer a:active{
	color: #FFF;
}



/*RESPONSIVE*/

@media screen and (max-width:992px) {
  header #header_fondo{
		background-image: none;
	}
}

@media screen and (max-width:576px) {
	
}