@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.overlay.hidden {
  opacity: 0;
}

.loader {
  width: 100px;
  height: 100px;
  background-image: url(loading.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  background: #f3f3f3;
  color: #293038;
}

.site_title {
  width: 250px;
}

.navbar {
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  min-width: 450px;
}
.navbar .logo-text {
  text-decoration: none;
  font-size: 20px;
  color: #293038;
}
.navbar .logo-under-text {
  color: gray;
}

.navbar-nav .nav-link:hover {
  background-color: #dfdfdf;
  color: #fff;
}
.navbar-nav .active {
  text-decoration: underline;
}

.image-container {
  margin: 5px;
}

.days-link {
  text-decoration: none;
}

.transparent-card {
  padding-left: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  padding: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  min-width: 450px;
  background-color: #fff;
}

.card_header {
  font-weight: 700;
  display: flex;
  text-transform: uppercase;
}

.card_image {
  position: relative;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  padding-right: 5px;
  padding-bottom: 5px;
}

.card_video {
  width: 332px;
}

.card_metrics {
  font-weight: 700;
  display: flex;
  margin-top: -3px;
  color: #1976d2;
  padding-bottom: 15px;
  margin-left: -3px;
}

.card_text {
  flex-grow: 1;
  margin-right: 10px;
}

.card_media {
  display: flex;
  flex-wrap: wrap;
}

.card_footer {
  margin-top: 0;
}

.ico {
  width: 50px;
}

.ico_card {
  width: 27px;
  margin-top: -4px;
  padding-right: 5px;
}

.parent {
  position: relative;
}

.child {
  float: right;
  color: gray;
}

.play-icon {
  position: relative;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-image: url(play-button-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: red;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}
.popup-close:hover {
  background-color: #8b0000;
}/*# sourceMappingURL=style.css.map */