@font-face {
  font-family: "Oswald";
  src: url("../font/Oswald-Medium.ttf");
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Regular.ttf");
}

body,
html {
  font-family: 'Roboto', sans-serif;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

footer {
  /*background-color: #F2F2F2; cambia el tono de gris para poder aumentar contraste con nuevo logo de gobierno*/
  background-color: #DDD;
}

header {
  left: 0px;
  top: 0px;
  width: 100%;
}

a {
  color: #7d0641;
  text-decoration: none;
}

h1 {
  font-family: 'Oswald', sans-serif;
  color: #B6004C;
  font-weight: bold;
  font-size: 32px;
  padding-left: 20px;
  animation-duration: 1s;
  animation-name: fadein;
}

h2 {
  font-family: 'Oswald', sans-serif;
  color: #7d0641;
  font-weight: bold;
  font-size: 22px;
}

h3 {
  font-family: 'Oswald', sans-serif;
  color: #7d0641;
  font-weight: bold;
  font-size: 22px;
  padding: 15px;
  animation-duration: 1s;
  animation-name: slidein;
}

h4 {
  font-family: 'Oswald', sans-serif;
  color: #7d0641;
  font-weight: bold;
  font-size: 22px;
  animation-duration: 1s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}

h5 {
  font-family: 'Oswald', sans-serif;
  color: #333333;
  font-weight: bold;
  text-align: left;
  animation-duration: 1s;
  animation-name: fadein;
}

h6 {
  font-family: 'Roboto', sans-serif;
  color: #7d0641;
  font-weight: bold;
  font-style: oblique;
  text-align: left;
  animation-duration: 1s;
  animation-name: fadein;
}

hr {
  width: 90%;
  border-top: 3px solid #000000;
  margin: auto;
}

p {
  text-align: justify;
  animation-duration: 1s;
  animation-name: fadein;
}

img {
  animation-duration: 1s;
  animation-name: fadein;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 100;
  }
}

.nav-side-menu {
  overflow: auto;
  font-size: 16px;
  background-color: #B6004C;
  /* position: fixed;*/
  top: 0px;
  /* width: 15%;*/
  height: 100%;
  text-align: left;
  padding: 0px;
  margin: 0px;
}

.nav-side-menu .brand {
  background-color: #B6004C;
  line-height: 20px;
  display: block;
  text-align: left;
  color: white;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 10px 10px 20px;
}

.nav-side-menu .toggle-btn {
  display: none;
  color: white;
}

.nav-side-menu ul,
.nav-side-menu li {
  list-style: none;
  padding: 0px;
  margin: 0px;
  line-height: 25px;
  cursor: pointer;
  background-color: #B6004C;
}

.nav-side-menu ul:not(collapsed) .arrow:before,
.nav-side-menu li :not(collapsed) .arrow:before {
  font-family: FontAwesome;
  content: "\f0d7";
  font-size: 20px;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: middle;
  float: right;
  color: white;
}

.nav-side-menu ul .active,
.nav-side-menu li .active {
  background-color: #666666;
}

.nav-side-menu ul .sub-menu li.active,
.nav-side-menu li .sub-menu li.active {
  color: white;
  background-color: #7d0641;
}

.nav-side-menu ul .sub-menu li.active a,
.nav-side-menu li .sub-menu li.active a {
  color: white;
}

.nav-side-menu ul .sub-menu li,
.nav-side-menu li .sub-menu li {
  background-color: #eeeded;
  border: none;
  line-height: 20px;
  margin-left: 0px;
  font-weight: normal;
  padding-left: 20px;
  margin: 0px;
}

.nav-side-menu ul .sub-menu li:before,
.nav-side-menu li .sub-menu li:before {
  /*font-family: FontAwesome;
  content: "\f105";
  content: url('../img/hojita.png');*/
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: middle;
}

.nav-side-menu ul .sub-menu li:hover,
.nav-side-menu li .sub-menu li:hover {
  text-decoration: none;
  background-color: #999999;
}

.nav-side-menu li {
  padding: 10px 10px 10px 20px;
}

.nav-side-menu li a {
  text-decoration: none;
  color: white;
  display: block;
}

.nav-side-menu li a i {
  padding-left: 10px;
  width: 20px;
  padding-right: 20px;
}

.nav-side-menu li:hover {
  text-decoration: none;
  background-color: #df396b;
}

@media (max-width: 767px) {
  .nav-side-menu {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-side-menu .toggle-btn {
    display: block;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10 !important;
    padding: 3px;
    width: 40px;
    height: 30px;
    text-align: center;
    margin-right: 20px;
  }

  .brand {
    text-align: left !important;
    font-size: 22px;
    padding-left: 20px;
    line-height: 50px !important;
    background-color: #d6d6d6;
  }
}

@media (min-width: 767px) {
  .nav-side-menu .menu-list .menu-content {
    display: block;
  }
}

a.negro:link {
  color: black;
  font-size: 16px;
}

a.negro:visited {
  color: #666666;
  font-size: 16px;
}

.nopadding {
  margin: 0px;
  padding: 0px;
}

.padding1 {
  padding: 30px 50px 30px 50px;
}

.imgstilo {
  padding: 10px;
  width: 100%;
  animation-duration: 1s;
  animation-name: scalein;
}

@keyframes scalein {
  from {
    width: 1%
  }

  to {
    width: 100%;
  }
}

.imgstilo2 {
  padding: 30px;
  width: 70%;
  animation-duration: 1s;
  animation-name: scalein2;
}

@keyframes scalein2 {
  from {
    width: 1%
  }

  to {
    width: 70%;
  }
}

.imgstilo3 {
  padding: 30px;
  width: 50%;
  animation-duration: 1s;
  animation-name: scalein3;
}

@keyframes scalein3 {
  from {
    width: 1%
  }

  to {
    width: 50%;
  }
}

.imgstilo4 {
  padding: 30px;
  width: 90%;
  animation-duration: 1s;
  animation-name: scalein4;
}

@keyframes scalein4 {
  from {
    width: 1%
  }

  to {
    width: 90%;
  }
}

.imgstilo5 {
  padding: 30px;
  width: 100%;
  animation-duration: 1s;
  animation-name: scalein5;
}

@keyframes scalein5 {
  from {
    width: 1%
  }

  to {
    width: 100%;
  }
}

.linea-vertical-left {
  border-left: 3px solid #c0c0c0;
}

.linea-vertical-rigth {
  border-right: 3px solid #c0c0c0;
}

.padding20 {
  padding-left: 30px;
  padding-right: 30px;
}

.padding50 {
  padding-left: 50px;
  padding-right: 50px;
}

.logodane {
  width: 100%;
  max-width: 250px;
  /*margin: 20px;*/
  margin: 30px 0;
  ;
}

.logopositiva {
  width: 100%;
  /*max-width: 330px;*/
  max-width: 280px;
  margin: 20px;
}

.logogobierno {
  width: 100%;
  padding: 60px 20px 60px 20px;
}

.franja-magenta {
  height: 40px;
  background-color: #B6004C;
}

.btn-danger {
  color: #fff;
  background-color: #7d0641;
  border-color: #7d0641;
  margin: 2px;
}

.btn-danger:hover {
  color: #fff;
  background-color: #666666;
  border-color: #7d0641;
}

.btn-check:focus+.btn-danger,
.btn-danger:focus {
  color: #fff;
  background-color: #df396b;
  border-color: #df396b;
  box-shadow: 0 0 0 0.25rem rgba(223, 57, 107, 0.5);
}

.btn-check:checked+.btn-danger,
.btn-check:active+.btn-danger,
.btn-danger:active,
.btn-danger.active,
.show>.btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #df396b;
  border-color: #df396b;
}

.btn-danger.disabled,
.btn-danger.disabled {
  color: #fff;
  background-color: #7d0641;
  border-color: #7d0641;
}

.btn-danger:active,
.btn-danger.active,
.show>.btn-primary.dropdown-toggle {
  background-color: #B6004C;
  background-image: none;
  border-color: #B6004C;
}

.modal-header,
.modal-body,
.modal-footer {
  text-align: center;
  padding: 20px;
}

img[usemap] {
  border: none;
  height: auto;
  max-width: 100%;
  width: auto;
}

.cuadro {
  padding: 10px 50px 10px 50px;
  border-radius: 30px 0px 30px 0px;
  box-shadow: 0px 0px 8px #888888;
  border: 3px solid #7d0641;
  background-color: white;
}

#visor_imagenes {
  text-align: right;
}

.fondotitulo {
  background-color: #7d0641;
  color: white;
  padding: 5px 10px 5px 10px;
}

.pagination a {
  float: left;
  padding: 0 14px;
  line-height: 34px;
  color: #B6004C;
  text-decoration: none;
  border: 1px solid #cccccc;
  border-left-width: 0;
}

.pagination a:hover {
  background-color: #B6004C;
  color: #ffffff;
  border: 1px solid #cccccc;
}

.pagination .disabled {
  border-left-width: 1px;
  border-radius: 3px 0 0 3px;
  border: 1px solid #cccccc;
  color: #cccccc;
  background-color: transparent;
  cursor: default;
}

.pagination .disabled span,
.pagination .disabled a,
.pagination .disabled a:hover {
  color: #cccccc;
  background-color: transparent;
  cursor: default;
}

.page-item.active .page-link {
  color: #ffffff !important;
  background: #7d0641 !important;
  border: 1px solid #cccccc;
}

.pagination li:first-child a {
  border-left-width: 1px;
  border-radius: 3px 0 0 3px;
}


.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}


/*.img-filtro {
 filter: brightness(0.4);
}

#area1:hover, #area2:hover {
    opacity:0.2;
    filter: brightness(0.4);
}

area{
  border-color:red;
  border: 2px;
  filter: brightness(0.4);
}*/