.card-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: left;
  margin: 25px 0 10px;
  color: #666a73;
  position: relative;
}
.card-carousel-wrapper.mar-0{ margin: 0 !important; }

.card-carousel {
  display: flex;
  justify-content: center;
  width: 100%;
}
.card-carousel--overflow-container {
  overflow: hidden;
  display: inline-flex;
}
.card-carousel--overflow-container.over-unset{
  overflow: unset;
}
.card-carousel--nav__left, .card-carousel--nav__right {
  display: inline-block;
  width: 10px;
  height: 10px;
  padding: 6px;
  box-sizing: border-box;
  border-top: 2px solid #b30000;
  border-right: 2px solid #b30000;
  cursor: pointer;
  margin: 0 10px;
  transition: transform 150ms linear;
  position: absolute;
  top: -20px;
}
.card-carousel--nav__left[disabled], .card-carousel--nav__right[disabled] {
  opacity: 0.2;
  border-color: black;
}
.card-carousel--nav__left {
  transform: rotate(-135deg);
  right: 25px;
}
.card-carousel--nav__left:active {
  transform: rotate(-135deg) scale(0.9);
}
.card-carousel--nav__right {
  transform: rotate(45deg);
  right: 5px;
}
.card-carousel--nav__right:active {
  transform: rotate(45deg) scale(0.9);
}

.card-carousel-cards {
  display: flex;
  transition: transform 500ms ease-in-out;
  transform: translatex(0px);
}
.card-carousel-cards .card-carousel--card {
  margin: 0 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px 0 rgb(8 61 90 / 40%), 0 2px 2px 0 rgb(40 44 53 / 8%);
  background-color: #fff;
  border-radius: 4px;
  z-index: 3;
  margin-bottom: 2px;
}

.card-carousel-cards .card-carousel--card.mar-b-10 {
  margin:0 0 10px 0;
}

/* .card-carousel-cards .card-carousel--card:first-child {
  margin-left: 0;
}
.card-carousel-cards .card-carousel--card:last-child {
  margin-right: 0;
} */
.card-carousel-cards .card-carousel--card img {
  vertical-align: bottom;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: opacity 150ms linear;
  user-select: none;
}
.card-carousel-cards .card-carousel--card img:hover {
  opacity: 0.5;
}
.card-carousel-cards .card-carousel--card--footer {
  border-top: 0;
  padding: 7px 15px;
}
.card-carousel-cards .card-carousel--card--footer p {
  padding: 3px 0;
  margin: 0;
  margin-bottom: 2px;
  font-size: 19px;
  font-weight: 500;
  color: #2c3e50;
  user-select: none;
}
.card-carousel-cards .card-carousel--card--footer p:nth-of-type(2) {
  font-size: 12px;
  font-weight: 300;
  padding: 6px;
  background: rgba(40, 44, 53, 0.06);
  display: inline-block;
  position: relative;
  margin-left: 4px;
  color: #666a73;
}
.card-carousel-cards .card-carousel--card--footer p:nth-of-type(2):before {
  content: "";
  float: left;
  position: absolute;
  top: 0;
  left: -12px;
  width: 0;
  height: 0;
  border-color: transparent rgba(40, 44, 53, 0.06) transparent transparent;
  border-style: solid;
  border-width: 12px 12px 12px 0;
}
.card-carousel-cards .card-carousel--card--footer p:nth-of-type(2):after {
  content: "";
  position: absolute;
  top: 10px;
  left: -1px;
  float: left;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: white;
  box-shadow: -0px -0px 0px #004977;
}


.not-card{ transition: background 0.25s; }
.not-card:hover,
.not-card:active { background: #688aa9; color: white; }
.not-card .card-img, 
.not-card .card-img-video { background: #dedede; background-size: 75%; overflow: hidden; position: relative; }
.not-card .card-img:hover::before, 
.not-card .card-img:focus::before { content: " "; width: 100%; height: 100%; background: #333333a1; position: absolute; z-index: 1; left: 0; top: 0; font-family: "Fontawesome"; padding: 40%; font-size: 3em; color: whitesmoke; }
.not-card .card-img:hover::after,
.not-card .card-img:focus::after { content: var(--card-icon, "\f1ea"); width: 100%; height: 100%; position: absolute; z-index: 2; left: calc(50% - 0.5em); top: calc(50% - 0.5em); color: whitesmoke; font-family: "Fontawesome"; font-size: 3em; }
.not-card .card-img-video:hover::before,
.not-card .card-img-video:focus::before { content: var(--card-icon, "\f01d"); width: 100%; height: 100%; background: #333333a1; position: absolute; z-index: 1; left: 0; top: 0; font-family: "Fontawesome"; padding: 40%; font-size: 3em; color: whitesmoke;}
/* .not-card .card-img-video:hover::after,
.not-card .card-img-video:focus::after{ content: var(--card-text, 'Ver Video'); width: 100%; height: 100%; position: absolute; z-index: 2; left: 0; top: 87%; color: whitesmoke; font-family: roboto; font-size: 1em; background: #b300009c;} */
.not-card .card-img-video a.card-link{ display: inline-block; width: 100%; height: 100%; }
.not-card .card-img img.card, 
.not-card .card-img-video img.card{ max-height: 300px; height: 200px; width: 100%; background-position: 50% 50%; background-size: cover; background-color: transparent; background-repeat: no-repeat; border: 0; transform: scale(1); -webkit-animation: zoomout 1s ease-in ; animation: zoomout 1s ease-in ; transition: all .5s ease-in-out; }
.not-card .card-img:hover img.card, 
.not-card .card-img:focus img.card,
.not-card .card-img-video:hover img.card,
.not-card .card-img-video:focus img.card{ background-size: cover; transform: scale(1.2); -webkit-animation: zoomin 0.5s ease-in; animation: zoomin 0.5s ease-in; transition: all .5s ease-in-out; position: relative; }
.not-card img.card-no-animation{ transform: unset !important; -webkit-animation: unset !important; animation: unset !important; transition:unset !important; }
.not-card .card-fecha { position: absolute; top: 0; right: 0; padding: 2px 10px; background: #c03b3b; color: white; border-top-left-radius: 15px; border-bottom-right-radius: 15px; }
.not-card .card-subtitulo { text-align: right; /*padding-bottom: 5px;*/ /*color: #096797;*/ line-height: 1em; font-family: 'PT Sans'; padding: 0.25rem; }
.not-card .card-titulo { line-height: 1.2em; text-align: justify; font-size: 0.9em; padding-top: 5px; font-family: 'Roboto'; padding: 0.25rem; }
.not-card .card-titulo::first-letter { text-transform: capitalize; }