/*
Theme Name: Bifrost Child
Theme URI: https://neuronthemes.com/bifrost
Description: This is a child theme of Bifrost
Author: NeuronThemes
Author URI: https://neuronthemes.com
Template: bifrost
Version: 2.0.0
*/

/* Core functionality */
#animated-text-strip{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  overflow: hidden;
}
#animated-text-strip .marquee {
  white-space: nowrap;
  animation: marquee 5s linear infinite;
  max-width: none;
padding: 0px 20px;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

/* Styles for the sake of the demonstration */
#animated-text-strip{
  background:#CABBFA;
  padding: 1rem 0;
}

.single-post header.l-template-header, .blog header.l-template-header, .archive header.l-template-header{
    background-color: var(--e-global-color-secondary);
}

    .single-post .container {
        max-width: 960px;
    }

.m-author-box {
    padding: 0px;
    border-top: 0px;
    border-bottom: 0px;
}


@media (min-width: 1367px) {
    .container {
        max-width: 1140px;
    }
}