/* Style the header: fixed position (always stay at the top) */
.header {
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 9999;
    width: 100%;
    background-color: #f1f1f1;
    opacity: 1;
    transition: .7s;
    -webkit-transition: .7s;
    -moz-transition: .7s;
}
.rcReadingTimePostCountWrapper{
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 200px;
    margin: 0 auto;
    padding-top: 5px;
}
.rcReadingTimePostCountWrapper p{
    font-weight:bold;
    margin: 0;
}
  
  /* The progress container (grey background) */
  .progress-container {
    width: 100%;
    height: 5px;
    background: #ccc;
  }
  
  /* The progress bar (scroll indicator) */
  .progress-bar {
    height: 5px;
    background: #002fa7;
    width: 0%;
  }

  @media (max-width: 1199px){
    .header{
        top: 70px;
    }
  }
  @media (max-width: 991px){
      .header{
          top: 57px;
      }
  }
  @media (max-width: 642px){
      .header{
          top: 108px;
      }
  }
  @media (max-width: 322px){
      .header{
          top: 149px;
      }
  }