body {
  font-family: "Open Sans", sans-serif !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
}

.footer-menu > .nav-link {
  font-family: "Open Sans", sans-serif !important;
  font-size: 0.875rem;
  font-weight: 400;
}

a {
  text-decoration: none;
}

[role=button], a, area, button, input, label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.card {
  margin-bottom: 2em;
  background: #D3D3D3;
  border: none;
  border-radius: 0;
}

.card-block {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0.9375rem;
}

/* Footer */
footer {
  font-size: 0.875rem;
}

footer .top_footer {
  background: #F5F5F5;
  border-top: 3px solid #D3D3D3;
  padding: 1em 0;
}

footer .bottom_footer {
  background: #D3D3D3;
  padding: 1em 0;
}

footer .nav a.nav-link {
  padding-top: 0.25em;
  padding-bottom: 0.2rem;
  color: #7A7A7A;
}

/* End Footer */
/* Meta Header*/
.meta-header {
  height: 60px;
  max-width: 150px;
}

.social_networks {
  height: 60px;
  max-width: 150px;
}

.search-form {
  height: 60px;
  max-width: 150px;
}

.meta-header .social_networks .fa-facebook-f,
.meta-header .social_networks .fa-instagram,
.meta-header .social_networks .fa-x-twitter,
.meta-header .social_networks .fa-youtube {
  border-radius: 500em !important;
  line-height: 1 !important;
  padding: 0.5em !important;
  width: 2em !important;
  height: 2em !important;
  text-align: center;
}

.meta-header .social_networks .fa-facebook-f {
  color: #4E76BB;
  -webkit-box-shadow: 0 0 0 0.1em #4E76BB inset;
  box-shadow: 0 0 0 0.1em #4E76BB inset;
}

.meta-header .social_networks .fa-facebook-f:hover {
  background: #4E76BB;
  color: white;
}

.meta-header .social_networks .fa-x-twitter {
  color: #555;
  -webkit-box-shadow: 0 0 0 0.1em #555 inset;
  box-shadow: 0 0 0 0.1em #555 inset;
}

.meta-header .social_networks .fa-x-twitter:hover {
  background: #555;
  color: white;
}

.meta-header .social_networks .fa-instagram {
  color: #C52C7C;
  -webkit-box-shadow: 0 0 0 0.1em #C52C7C inset;
  box-shadow: 0 0 0 0.1em #C52C7C inset;
}

.meta-header .social_networks .fa-instagram:hover {
  background: #C52C7C;
  color: white;
}

.meta-header .social_networks .fa-youtube {
  color: #EE3C38;
  -webkit-box-shadow: 0 0 0 0.1em #EE3C38 inset;
  box-shadow: 0 0 0 0.1em #EE3C38 inset;
}

.meta-header .social_networks .fa-youtube:hover {
  background: #EE3C38;
  color: white;
}

.header {
  height: 60px;
  background-color: white;
}

.header_banner {
  margin-top: 60px;
}

.header-menu {
  position: fixed;
  border-bottom: solid #007EC3 3px;
}

#toggler, #toggler:active, #toggler:focus {
  border: none !important;
  color: #007EC3;
  background-color: #007EC3;
  border-radius: 0;
  box-shadow: 0 0 0 0 !important;
  height: 60px;
  width: 94px !important;
}

.top-header-logo {
  max-width: 120px;
}

.banner-logo {
  max-width: 240px;
}

.category_menu {
  background-color: #007EC3;
  width: 100% !important;
  max-height: 0;
  overflow: hidden;
  transition: 0.6s max-height;
}

#links-container .nav-link {
  color: white !important;
}

.category_menu.displayed {
  max-height: 500px !important;
}

.nav-link {
  font-size: 12px;
  color: white;
  font-weight: bold;
  width: 100%;
}

.nav-link:hover, .nav-link:focus {
  color: white;
}

.column-menu {
  max-width: 200px;
}

.category_menu.fixed-menu {
  background-color: #007EC3;
  width: 100% !important;
  max-height: 0;
  overflow: hidden;
  transition: 0.6s max-height;
}

.sticky-links > .nav-link {
  font-size: 12px;
  color: white;
  font-weight: bold;
  width: 100%;
}

.header-menu.sticky-menu {
  position: fixed;
  border-bottom: solid #007EC3 3px;
}

#header-navbar.sticky-navbar {
  display: flex;
  flex-direction: column;
}

/* Inicio slider*/
.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 100px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slider .slide-track:hover {
  animation-play-state: paused;
}

.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
  animation: scroll 40s linear infinite;
  display: flex;
  width: 5000px;
}

.slider .slide {
  height: 100px;
  width: 250px;
}

.fslide {
  align-items: center;
  display: flex;
  height: 24vh;
  justify-content: center;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2500px);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2500px);
  }
}
/* fin slider */
.main {
  display: flex;
}

.header-admin {
  height: 60px;
  display: block;
}

.user-section {
  width: 180px;
  display: flex;
  justify-content: space-between;
}

.user-section:hover {
  cursor: pointer;
}

.user-logo {
  max-width: 40px;
}

.sidebar {
  width: 70px;
  background-color: rgba(0, 127, 195, 0.856);
  border-right: solid black 1px;
  padding: 10px 10px;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  bottom: 0;
  transition: all ease-in-out 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.sidebar.displayed {
  width: 300px;
  justify-content: flex-start;
}

.sidebar-logo {
  display: none;
  margin: 10px auto;
  background-color: rgba(245, 245, 245, 0.6);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sidebar.displayed > .sidebar-logo {
  display: flex;
}

.text-menu.visible {
  display: block;
}

.text-menu {
  display: none;
  color: white;
  margin-left: 20px;
}

.menu-item > a {
  color: #f5f5f5;
}

.menu-item:hover, .list-group-item.active {
  background-color: rgb(230, 57, 136) !important;
  border-radius: 8px;
}

.dropdown-menu > li:hover {
  cursor: pointer;
}

#burguer {
  width: 50px;
  background-color: #c52c7c;
  color: white;
  margin-bottom: 20px;
}

.test {
  height: 100vh;
  border: solid black 1px;
}

.admin-content {
  background-color: #f5f5f5;
  max-width: calc(100vw - 70px);
}

.table-container {
  max-width: 400px;
}

.custom-table {
  width: 1500px;
}

.breadcrumb-item a,
.custom-table th a {
  color: #555;
}

/* Botones personalizados*/
.btn-inicio,
.btn-inicio:hover {
  background-color: rgb(230, 57, 136);
}

.btn-verde {
  color: #fff;
  background-color: #1cc88a;
  border-color: #1cc88a;
}

.btn-rojo {
  color: #fff;
  background-color: #e74a3b;
  border-color: #e74a3b;
}

.btn-amarillo {
  color: #fff;
  background-color: #f6c23e;
  border-color: #f6c23e;
}

.btn-verde:hover {
  color: #fff;
  background-color: #169969;
  border-color: #169969;
}

.btn-rojo:hover {
  color: #fff;
  background-color: #ac3429;
  border-color: #ac3429;
}

.btn-amarillo:hover {
  color: #fff;
  background-color: #f6c23e;
  border-color: #f6c23e;
}

/* FIn botones perzonalizados*/
/* Dropzone */
.dropzone {
  border: 3px dotted #cecece !important;
  border-radius: 10px !important;
  text-align: center !important;
}

.icon_control {
  position: absolute;
  right: 5px;
  top: 5px;
  background: #e15952;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  padding: 4px;
  box-shadow: 2px 2px 2px #424141;
  font-size: 0.8em;
  color: #fff;
  text-align: center;
}

.icon_control:hover {
  background: #f818ad;
}

.icon_setmain {
  position: absolute;
  right: 40px;
  top: 5px;
  background: #52e176;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  padding: 3px 4px;
  box-shadow: 2px 2px 2px #424141;
  font-size: 0.8em;
  color: #fff;
  text-align: center;
}

.icon_setmain:hover {
  background: #fdf916;
  color: #555;
}

.icon_setmain.active {
  background: #fdf916;
  color: #555;
  border: 1px solid #b3b3b3;
}

.icon_imgUpload {
  background: #2591cb;
  color: #fff;
  padding: 10px;
  border-radius: 22px !important;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    display: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

/* end dropzone */
tr {
  font-size: 0.9rem;
}

/*validation error */
.error-message {
  display: flex;
  width: 100%;
  background: #f8d7da;
  margin: 5px;
  padding: 5px;
  border: 1px solid #f9bac0;
  border-radius: 8px !important;
  color: #000;
  font-size: 0.9em;
}

/** End Error Message **/
.w-20 {
  width: 20% !important;
}

.w-35 {
  width: 35% !important;
}

.w-40 {
  width: 40% !important;
}

.breadcrumb-item.active a {
  color: #007ec3 !important;
  font-weight: bold;
}

.bd-form {
  border: solid #dee2e6;
  padding: 1.5em;
  margin-right: 0;
  margin-left: 0;
  border-width: 1px;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* Sort List*/
.slist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slist li {
  margin: 10px;
  padding: 15px;
  border: 1px solid #dfdfdf;
  background: #f5f5f5;
  border-radius: 1em;
}

/* (B) DRAG-AND-DROP HINT */
.slist li.hint {
  border: 1px solid #ffc49a;
  background: #feffb4;
}

.slist li.active {
  border: 1px solid #ffa5a5;
  background: #ffe7e7;
}

.post-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  text-shadow: 0 2px 2px #000;
  width: 100%;
}

.post-figure > a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  border: solid #D3D3D3 1px;
}

figure a, .galleries a {
  background: url("/img/el19_gray.png");
  background-repeat: repeat;
  background-repeat: no-repeat;
  background-position: center;
}

.main-lateral > a {
  min-height: 100px;
}

.discursos {
  border: solid #D3D3D3 1px;
  background-color: #F5F5F5;
}

.discurso:last-child {
  border: none !important;
}

.discurso {
  background-color: #F5F5F5;
}

.discurso > a {
  text-decoration: none;
  color: #373737;
  font-size: 1rem;
}

.discurso > a:hover {
  text-decoration: underline;
  color: #007ec3;
}

.post-overlay:hover {
  text-decoration: underline;
}

.coronavirus {
  margin: 0 0 1rem;
  border: solid #D3D3D3 1px;
}

.coronavirus-movil {
  background-image: url("../img/coronavirus2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 70px;
}

.coronavirus-movil > a {
  height: 70px;
}

.coronaTitle {
  color: #C52C7C;
}

.secondary-posts {
  margin: 0 0 1rem;
  padding: 0;
}

.el19tv {
  background-color: #F5F5F5;
}

.btn-ver-mas19tv:hover {
  color: #007EC3 !important;
}

.link-19tv:hover {
  color: #007EC3 !important;
}

.iframe-19tv {
  height: 40vh;
  width: 100%;
}

.iframe-19tv-section {
  height: 70vh;
  width: 100%;
}

.block-title a {
  color: #fff;
}

h3.block-title {
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
}

.nacionales,
.deportes,
.internacionales,
.economicas,
.municipales,
.juventud {
  background-color: #F5F5F5;
}

/* Botones El 19 TV*/
.carousel-indicators [data-bs-target] {
  border-radius: 100%;
  background-color: #fff;
  height: 15px;
  width: 15px;
}

.carousel-captions {
  max-width: 100%;
  width: 100%;
  background-color: rgba(7, 125, 195, 0.78) !important;
  left: 0;
  bottom: 9px;
  display: block !important;
  height: 80px;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
}

.gallery-posts {
  max-height: 200px !important;
}

@media (min-width: 240px) {
  .carousel-captions .small-caption {
    font-size: 0.8rem !important;
    display: block;
    line-height: 16px;
  }
}
@media (min-width: 350px) {
  .gallery-posts {
    max-height: 240px !important;
  }
}
@media (min-width: 400px) {
  .coronavirus-movil {
    height: 100px;
  }
  .coronavirus-movil > a {
    height: 100px;
  }
}
@media (min-width: 450px) {
  .gallery-posts {
    max-height: 300px !important;
  }
}
@media (min-width: 576px) {
  .post-overlay.small-caption,
  .credito.small-caption,
  .carousel-captions .small-caption {
    font-size: 0.7rem;
    display: block;
    line-height: 16px;
  }
  .discurso > a {
    font-size: 0.9rem;
  }
  .secondary-posts {
    padding: 0 calc(var(--bs-gutter-x) * 0.2);
  }
  .main-lateral {
    padding: 0 calc(var(--bs-gutter-x) * 0.2);
  }
  .coronavirus-movil {
    height: 120px;
  }
  .coronavirus-movil > a {
    height: 120px;
  }
  .gallery-posts {
    max-height: 200px !important;
  }
}
@media (min-width: 768px) {
  .post-overlay.small-caption,
  .credito.small-caption {
    font-size: 0.9rem;
    line-height: 1rem;
  }
  .coronavirus-movil {
    height: 150px;
  }
  .coronavirus-movil > a {
    height: 150px;
  }
  .gallery-posts {
    max-height: 210px !important;
  }
  .iframe-19tv {
    height: 51vh;
  }
  .iframe-19tv-section {
    height: 80vh;
  }
}
@media (min-width: 992px) {
  .first-row {
    max-height: 410px;
  }
  .first-row:first-child {
    height: 410px;
  }
  .discursos {
    max-height: 410px;
    overflow: hidden;
  }
  .discurso > a {
    font-size: 0.7rem;
  }
}
@media (min-width: 1200px) {
  .first-row {
    max-height: 500px;
  }
  .first-row:first-child {
    height: 500px;
  }
  .discursos {
    max-height: 500px;
  }
  .discurso > a {
    font-size: 0.8rem;
  }
}
@media (min-width: 1400px) {
  .first-row {
    max-height: 550px;
  }
  .first-row:first-child {
    height: 550px;
  }
  .discursos {
    max-height: 550px;
  }
}
.post .post-header .post-meta {
  border-top: 1px solid #e6e6e6;
  color: #454545;
  font-size: 0.8125rem;
  padding: 5px 0;
}

.post .post-content img,
.post .post-image img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}

.post .post-content {
  padding: 5px;
}

.post .post-content h3,
.post .post-content a {
  color: #454545;
  font-size: 1em;
  font-weight: bold;
}

.post .post-content a {
  color: #007EC3;
}

.post-content p iframe {
  width: 100%;
  height: 30vh;
}

.read-more {
  color: #373737;
  font-size: 0.9rem;
}

.read-more:hover {
  text-decoration: underline;
  color: #007EC3;
}

/* Social Network Share */
.social_networks .fa-facebook-f,
.social_networks .fa-instagram,
.social_networks .fa-x-twitter,
.social_networks .fa-youtube,
.social_networks .fa-whatsapp {
  border-radius: 500em !important;
  line-height: 1 !important;
  padding: 0.5em !important;
  width: 2em !important;
  height: 2em !important;
  text-align: center;
}

.social_networks .fa-facebook-f {
  color: #4e76bb;
  -webkit-box-shadow: 0 0 0 0.1em #4e76bb inset;
  box-shadow: 0 0 0 0.1em #4e76bb inset;
}

.social_networks .fa-facebook-f:hover {
  background: #4e76bb;
  color: #fff;
}

.social_networks .fa-x-twitter {
  color: #454545;
  -webkit-box-shadow: 0 0 0 0.1em #454545 inset;
  box-shadow: 0 0 0 0.1em #454545 inset;
}

.social_networks .fa-x-twitter:hover {
  background: #454545;
  color: #fff;
}

.social_networks .fa-instagram {
  color: #c52c7c;
  -webkit-box-shadow: 0 0 0 0.1em #c52c7c inset;
  box-shadow: 0 0 0 0.1em #c52c7c inset;
}

.social_networks .fa-instagram:hover {
  background: #c52c7c;
  color: #fff;
}

.social_networks .fa-youtube {
  color: #ee3c38;
  -webkit-box-shadow: 0 0 0 0.1em #ee3c38 inset;
  box-shadow: 0 0 0 0.1em #ee3c38 inset;
}

.social_networks .fa-youtube:hover {
  background: #ee3c38;
  color: #fff;
}

.social_networks .fa-whatsapp {
  color: #25d366;
  -webkit-box-shadow: 0 0 0 0.1em #25d366 inset;
  box-shadow: 0 0 0 0.1em #25d366 inset;
}

.social_networks .fa-whatsapp:hover {
  background: #25d366;
  color: #fff;
}

/* End MetaHeader*/
@media (min-width: 400px) {
  .postGallery {
    height: 230px;
  }
}
@media (min-width: 500px) {
  .postGallery {
    height: 280px;
  }
}
@media (min-width: 768px) {
  .postGallery {
    height: 210px;
  }
  .post-content p iframe {
    display: block;
    margin: 0 auto;
    width: 90%;
    height: 400px;
  }
}
@media (min-width: 992px) {
  .postGallery {
    height: 180px;
  }
}
@media (min-width: 1200px) {
  .postGallery {
    height: 200px;
  }
}
.pagination a {
  color: #555;
  font-size: 0.9em;
}

.pagination .page-item.active {
  --bs-pagination-active-bg: #007ec3;
}

.content_description {
  font-size: 0.8rem;
}

.principal-vtodos {
  line-height: 0.8 !important;
}

.gsecondary-row {
  min-height: 100px;
}

.gsecondary-row > a {
  display: block;
  height: 100%;
}

@media screen and (min-width: 576px) {
  .gsecondary-row > a > img {
    width: 148px !important;
    height: 104px !important;
  }
}
/* Medium bootstrap (md) = 768px */
@media screen and (min-width: 768px) {
  .gsecondary-row > a > img {
    width: 200px !important;
    height: 140px !important;
  }
}
@media screen and (min-width: 1200px) {
  .gsecondary-row > a > img {
    width: 255px !important;
    height: 174px !important;
  }
}
.coloris {
  padding: 0.5rem;
}

.div-color {
  height: 24px;
  width: 24px;
  margin: 0 auto;
}

.credito {
  background-color: rgba(0, 126, 195, 0.6);
  text-shadow: 0 2px 2px #000;
  width: 100%;
}

.text-blue {
  color: #007EC3 !important;
}

.text-gray {
  color: #D3D3D3 !important;
}

.text-dark-gray {
  color: #D3D3D3 !important;
}

.bg-gray {
  background-color: #D3D3D3 !important;
}

.bg-dark-gray {
  background-color: #555 !important;
}

.border-dark-gray {
  border: solid #555 1px !important;
}

.blue {
  background-color: #007EC3;
}

.orange {
  background-color: #f97703;
}

.purple {
  background-color: #01417a;
}

.green {
  background-color: #00AD3B;
}

.red {
  background-color: #950831;
}

.pink {
  background-color: #C52C7C;
}

.logo-notfound {
  width: 350px;
}

.btn-backhome {
  border: solid #C52C7C 1px;
  background-color: none;
  color: #C52C7C;
}

.btn-backhome:hover {
  /* border: solid #C52C7C 1px; */
  background-color: #C52C7C;
  color: white;
}

.text-pink {
  color: #C52C7C;
}

.img-404 {
  width: 100%;
}

.order-item {
  padding: 10px 5px;
  background-color: #cfe2ff;
  border-radius: 0.25rem;
  border-color: #b6d4fe;
  color: #084298;
}

.drop-zone {
  margin: 10px 0;
  background-color: #fff3cd;
}

.selectedTitle {
  position: sticky;
  left: 0;
  background-color: #198754 !important;
  color: white !important;
}

.selectedRow .actions {
  position: relative;
  z-index: 11;
  background-color: rgb(223, 223, 223);
}

@media (min-width: 240px) and (max-width: 480px) {
  .sidebar {
    width: 300px !important;
    justify-content: flex-start !important;
  }
  .tblpanel {
    width: 100%;
    margin: 0.5rem 0 0.5rem 0;
    text-align: left;
  }
  .table-container {
    width: 330px;
  }
  .custom-table, .w-40, .w-25 {
    width: 100% !important;
  }
  .custom-table thead {
    display: none;
  }
  .table tbody,
  .table tbody tr,
  .table tbody td {
    display: block;
    text-align: left !important;
  }
  .div-color {
    margin: 0;
  }
  .actions > .btn {
    width: 100%;
    margin: 0.3rem 0;
  }
  .table tbody td img {
    width: 100%;
    height: auto;
  }
  .w-35 {
    width: 100% !important;
  }
}
@media screen and (min-width: 576px) {
  .nav-link {
    width: 50%;
  }
  .galeriaTop figure {
    height: 320px;
    width: 100%;
    overflow: hidden;
  }
  .table-container {
    max-width: 550px;
  }
  .newList li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .newList li {
    margin: 10px;
    padding: 15px;
    border: 1px solid #dfdfdf;
    background: #f5f5f5;
    border-radius: 1em;
  }
}
/* Medium bootstrap (md) = 768px */
@media screen and (min-width: 768px) {
  .galeria img.juventud {
    width: 324px;
    height: 210px;
  }
  .sidebar {
    width: 300px !important;
    justify-content: flex-start !important;
  }
  .text-menu {
    display: block !important;
  }
  .sidebar-logo {
    display: flex !important;
  }
  .nav-sidebar {
    margin-top: 100px;
  }
  .galeriaTop figure {
    height: 400px;
    width: 100%;
    overflow: hidden;
  }
  .table-container {
    max-width: 700px;
  }
  .admin-content {
    max-width: calc(100vw - 200px);
  }
}
@media screen and (min-width: 992px) {
  .meta-header {
    max-width: 500px;
    align-items: center;
  }
  .social_networks {
    height: auto;
  }
  .nav-link {
    width: auto;
    color: #454545;
  }
  .nav-link:hover, .nav-link:focus {
    color: #007EC3;
  }
  .header-menu {
    width: auto;
    position: static;
    margin-bottom: 10px;
    border-bottom: solid #D3D3D3 1px;
  }
  .category_menu {
    background-color: white;
    width: 100% !important;
    max-height: 100px;
  }
  #links-container .nav-link {
    color: #454545 !important;
  }
  .header_banner {
    margin-top: 0;
  }
  .discursos {
    overflow: scroll;
  }
  .lista-discursos li {
    font-size: 15px;
  }
  .text-photo {
    font-size: 13px !important;
  }
  .destacada {
    max-height: 300px;
  }
  .galeria img.juventud {
    width: 100%;
    max-height: 132px;
  }
  .special-caption {
    height: 100%;
  }
  .table-container {
    max-width: 880px;
  }
  .admin-content {
    max-width: calc(100vw - 300px);
  }
  .dropdown-menu li {
    margin: 0;
    padding: 0;
  }
  .img-404 {
    width: 800px;
  }
  .order-item {
    max-width: 768px;
  }
  .drop-zone {
    max-width: 850px;
  }
}
@media screen and (min-width: 1200px) {
  .destacada {
    max-height: 350px;
  }
  .galeria img.juventud {
    max-height: 160px;
  }
  .special-caption {
    height: auto;
  }
  .table-container {
    max-width: 1100px;
  }
  .order-item {
    max-width: 992px;
  }
}
@media screen and (min-width: 1400px) {
  .table-container {
    max-width: 1500px;
  }
}/*# sourceMappingURL=main.css.map */