.blog-toc {
  align-self: start;
  padding: 16px;
  display: block;
}

.mobile-toc-button {
    display: none !important;
}

ul#toc-list, ul#toc-list-mobile {
  padding: 0;
  display: flex;
  flex-flow: column;
}

ul#toc-list li, ul#toc-list-mobile li {
    padding-bottom: 32px;
    list-style-type: none;
    position: relative;
    display: grid;
    padding-left: 16px;
}

ul#toc-list li:after, ul#toc-list-mobile li:after {
    content: '';
    width: 3px;
    height: 100%;
    position: absolute;
    background-color: #E52330;
    top: 8px;
    left: -3px;
}

ul#toc-list li:last-child:after, ul#toc-list-mobile li:last-child:after {
    content: "";
    width: 0;
    height: 0;
}

ul#toc-list li:before, ul#toc-list-mobile li:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50px;
  background-color: #E52330;
  position: absolute;
  top: 5px;
  left: -10px;
}

#toc-list li a, #toc-list-mobile li a {
    font-family: "Atyp Text", Sans-Serif;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    margin-left: 8px;
}

.blog-content-outer {
  position: relative;
}

.toc-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.toc-popup.visible {
    display: flex;
}

.toc-popup-content {
    background-color: #090A23;
    border-radius: 24px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.toc-popup-close {
    display: none;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 100;
}

.toc-popup-close:hover, .toc-popup-close:focus {
    background: none;
}

.toc-popup.visible .toc-popup-close {
    display: block;
    background: none;
}

.toc-popup .blog-toc {
    max-height: 330px;
    overflow-y: scroll;
    background: none;
}

.mobile-toc-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #E52330;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    line-height: 1em;
    padding: 0;
}

.mobile-toc-button:hover, .mobile-toc-button:focus, .mobile-toc-button:active {
    background-color: #E52330;
}

h3.toc-popup-mobile {
    color: #FFF;
    font-family: "Atyp Display", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 125%;
}

i.toc-icon img {
    min-width: 28px;
}

@media screen and (max-width: 1024px) {
    .blog-toc {
        display: none;
    }

    .mobile-toc-button {
        display: flex !important;
    }

    .toc-popup-content .blog-toc {
        display: block;
    }
}