/**
 * Settings
 * @author Nick
 */
/**
 * Dashboard cards
 * @author Nick
 */
.card {
  background-color: #ffffff;
  position: relative;
  border: 1px solid #dfdfdf;
  margin-top: 1rem;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.card a {
  display: block;
}
.card.card--teaser.is-editable {
  background-color: #232d64;
  color: #ffffff;
}
.card.card--teaser.is-editable .video-container:before {
  content: '';
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .85;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: ease-in-out 0.15s;
  transition: ease-in-out 0.15s;
}
.card.card--teaser.is-editable:hover .video-container:before {
  background-color: #dc1964;
}
.card.card--teaser.is-editable:hover .card__actions {
  opacity: 1;
}
.card.card--teaser .card__actions {
  color: #ffffff;
  position: absolute;
  right: 15px;
  bottom: 60px;
  opacity: 0;
  z-index: 2;
}
.card.card--teaser .card__actions ul {
  margin: 0;
}
.card.card--teaser .card__actions ul li {
  padding-bottom: 0;
  opacity: .8;
}
.card.card--teaser .card__actions ul li:hover {
  opacity: 1;
}
.card.card--detail .card__actions {
  margin-top: 1.5rem;
}
.card a {
  text-decoration: none;
}
.card a:hover {
  text-decoration: none;
}
.card__block {
  padding: 5%;
}
.card__settings {
  background-color: rgba(239, 239, 240, 0.85);
  padding: 2.5% 5%;
}
.card__block > *:last-child,
.card__settings > *:last-child {
  margin-bottom: 0;
}
.card__title {
  margin-top: 0;
  margin-bottom: .25em;
}
.card__subtitle {
  color: rgba(35, 45, 100, 0.5);
  margin-bottom: 1em;
}
/**
 * Video wrapper 16:9 ratio
 * https://alistapart.com/article/creating-intrinsic-ratios-for-video
 */
.single-moov .video-container {
  padding-bottom: 54.1%;
}
.video-container {
  position: relative;
  padding-top: 25px;
  padding-bottom: 52.4%;
  height: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/**
 * Responsive styles
 */
@media (min-width: 992px) {
  .col-md-2 .card .card__title {
    font-size: 1rem;
  }
  .col-md-2 .card .card__actions {
    bottom: 45px;
  }
}
@media (min-width: 992px) {
  .col-md-3 .card .card__title {
    font-size: 1rem;
  }
  .col-md-3 .card .card__actions {
    bottom: 60px;
  }
}
@media (min-width: 992px) {
  .col-md-4 .card .card__title {
    font-size: 1rem;
  }
  .col-md-4 .card .card__actions {
    bottom: 75px;
  }
}
@media (min-width: 992px) {
  .col-md-5 .card .card__title {
    font-size: 1.75rem;
  }
  .col-md-5 .card .card__actions {
    bottom: 90px;
  }
}
@media (min-width: 992px) {
  .col-md-6 .card .card__title {
    font-size: 2rem;
  }
  .col-md-6 .card .card__actions {
    bottom: 105px;
  }
}
@media (min-width: 992px) {
  .col-md-7 .card .card__title {
    font-size: 2.25rem;
  }
  .col-md-7 .card .card__actions {
    bottom: 119px;
  }
}
@media (min-width: 992px) {
  .col-md-8 .card .card__title {
    font-size: 2.5rem;
  }
  .col-md-8 .card .card__actions {
    bottom: 134px;
  }
}
@media (min-width: 992px) {
  .col-md-9 .card .card__title {
    font-size: 2.75rem;
  }
  .col-md-9 .card .card__actions {
    bottom: 148.5px;
  }
}
@media (min-width: 992px) {
  .col-md-10 .card .card__title {
    font-size: 3rem;
  }
  .col-md-10 .card .card__actions {
    bottom: 163px;
  }
}
@media (min-width: 992px) {
  .col-md-11 .card .card__title {
    font-size: 3.25rem;
  }
  .col-md-11 .card .card__actions {
    bottom: 178px;
  }
}
@media (min-width: 992px) {
  .col-md-12 .card .card__title {
    font-size: 3.5rem;
  }
  .col-md-12 .card .card__actions {
    bottom: 193px;
  }
}
/**
 * Responsive video embeds
 * @author Nick
 */
.wp-video,
video.wp-video-shortcode,
.mejs-container,
.mejs-overlay.load {
  width: 100% !important;
  height: 100% !important;
}
.mejs-container {
  padding-top: 56.25%;
}
.wp-video,
video.wp-video-shortcode {
  max-width: 100% !important;
}
video.wp-video-shortcode {
  position: relative;
}
.mejs-mediaelement {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.mejs-controls {
  display: none;
}
.mejs-overlay-play {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto !important;
  height: auto !important;
}
/**
 * Moovlypedia
 * @author Nick
 */
.moovlypedia .filter {
  background-color: #FAF9FC;
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
  padding: 25px 0;
}
.moovlypedia .filter:after {
  content: '';
  display: block;
  background-color: #FAF9FC;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vw;
  width: 300vw;
  z-index: -1;
}
.moovlypedia .filter .current {
  color: #dc1964;
}
.moovlypedia .filter .act {
  color: inherit;
  /* The7 fix */
}
.moovlypedia .grid,
.moovlypedia .paginator {
  margin-top: 25px;
  margin-bottom: 25px;
}
.moovlypedia .grid .hidden {
  display: none;
  visibility: hidden;
}
.moovlypedia .paginator .button-load-more {
  border: none;
}
.single-moov .page-title .wf-table {
  padding: 0 !important;
}
.single-moov .card .list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: 0;
}
.single-moov .card .list-inline li {
  display: inline-block;
  padding: 0 0 5px;
}
.single-moov .card .list-inline li:not(:last-child) {
  margin-right: 5px;
}
.single-moov .card .tags {
  list-style-type: none;
  padding: 0;
}
.single-moov .card .tags li a {
  color: inherit;
  background-color: rgba(165, 165, 165, 0.1);
  font-size: 80%;
  border-radius: 10px;
  padding: 5px 10px;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
}
.single-moov .card .tags li a:hover {
  background-color: #232d64;
  color: #ffffff;
  text-decoration: none;
}
/**
 * Moovlypedia
 * @author Nick
 */
.moovlypedia .filter {
  background-color: #FAF9FC;
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
  padding: 25px 0;
}
.moovlypedia .filter:after {
  content: '';
  display: block;
  background-color: #FAF9FC;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vw;
  width: 300vw;
  z-index: -1;
}
.moovlypedia .filter .current {
  color: #dc1964;
}
.moovlypedia .filter .act {
  color: inherit;
  /* The7 fix */
}
.moovlypedia .content {
  position: relative;
}
@media (min-width: 992px) {
  .moovlypedia .content .searchform {
    position: absolute;
    top: 0;
    right: 25px;
    z-index: 999;
    height: 84px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.moovlypedia .searchform .field {
  margin-bottom: 0;
}
.moovlypedia .searchform .submit {
  top: 33px !important;
}
.moovlypedia .featured,
.moovlypedia .grid,
.moovlypedia .paginator {
  margin-top: 50px;
  margin-bottom: 50px;
}
.moovlypedia .grid .hidden {
  display: none;
}
.moovlypedia .paginator .button-load-more {
  border: none;
}
.moovlypedia .featured-title {
  font-size: 2.5em;
  line-height: 1.25;
}
.moovlypedia .featured-category {
  color: #dc1964;
  text-transform: uppercase;
}
.moovlypedia .flex-middle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.search.moovlypedia .grid {
  margin-top: 0;
}
.moovlypedia .large-category-button:hover {
  cursor: pointer;
}
.moovlypedia .popular-tags {
  margin: 50px 0;
}
.moovlypedia .popular-tags span {
  font-size: 80%;
}
.moovlypedia .popular-tags .tags {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.moovlypedia .popular-tags .tags:before {
  content: none;
}
.moovlypedia .popular-tags .tags li a {
  color: inherit;
  background-color: rgba(165, 165, 165, 0.1);
  font-size: 80%;
  border-radius: 10px;
  padding: 5px 10px;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
  text-decoration: none;
}
.moovlypedia .popular-tags .tags li a:hover {
  background-color: #232d64;
  color: #ffffff;
  text-decoration: none;
}