/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Hide header on scroll*/
#header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  background-color: #ffffff;
}

#header.header--hide {
  transform: translateY(-100%);
}

#header.header--show {
  transform: translateY(0);
}

@media (max-width: 767px) {
  #header {
    position: relative;
    transform: none !important;
  }
}

/*Blog sidebar*/

@media (min-width: 768px) {
  .elements--post--blog--sidebar__container {
    position: relative;
  }
  
  .elements--post--blog--sidebar__container .elements--post2--blog--author__card__2 {
    position: sticky;
    top: 24px;
    align-self: flex-start;
  }
}
.elements--post--blog--toc__card.cards__card {
    margin-bottom: 24px;
    background-color: #f7f5f3 !important;
    border: none !important;
    box-shadow: none;
    filter: none !important;
    -webkit-filter: none !important;
    padding: 32px;
  }
  
  .elements--post--blog--toc__title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: px !important;
    line-height: 1.3 !important;
    margin-bottom: 24px;
    margin-top: 0;
    color: #121212;
  }
  
  .elements--post--blog--toc__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
  }
  
  .elements--post--blog--toc__list li {
    margin-bottom: 8px;
  }
  
  .elements--post--blog--toc__list a {
    color: #059669;
    text-decoration: none;
  }
  
  .elements--post--blog--toc__select {
    display: none;
  }
  
  .elements--post--blog--toc.hide-table-of-contents {
    display: none;
  }

  
  @media (max-width: 767px) {
    .elements--post--blog--toc__card.cards__card {
      padding: 24px;
    }
    
    .elements--post--blog--toc__list {
      display: none;
    }
    
    .elements--post--blog--toc__select {
      display: block;
    }
    
    .elements--post--blog--toc__select select {
      width: 100%;
      padding: 12px;
      border: 1px solid #A3A3A3;
      border-radius: 4px;
      background-color: white;
      color: #121212;
      font-size: 14px;
    }
  }

  .elements--post2--blog--author__card__2 {
    position: static;
  }
}