

main {
  padding-top: 115px;
  padding-bottom: 20px;
}
main .content {
    padding: 0px 0px 0px 0px;
}
/* Scroll behavior styles */
#mainHeader {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  background-color:#ffffff;
}
.top-bar {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:20px 16px;
    font-size: 20px;
}
.icon {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor; /* enables text color control */
    color: #333; /* adjust to your brand color */
}
.logo {
    width: 32px;
    height: 32px;
    display: block;
    fill: currentColor; /* enables text color control */
    color: #333; /* adjust to your brand color */
}
.top-bar > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* for consistent icon spacing */
}

.tab-bar {
    height: 42px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 500;
}

.tab {
    flex: 1;
    text-align: center;
    position: relative;
    cursor: pointer;
}

    .tab.active {
        font-weight: 800;
    }

        .tab.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 30%;
            right: 30%;
            height: 0px;
            background-color: #018cd9;
            border-radius: 2px;
        }
.header--hidden {
  transform: translateY(-100%);
}

#mainFooter {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.footer--faded {
  transform: translateY(100%);
  opacity: 0;
}
.header-thread {
    width: 100%;
   /* height: 56px;*/
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.00);
    z-index: 10;
}
    .header-thread h2 {
        flex: 1;
        margin: 0 8px;
        font-size: 18px;
        font-weight: bold;
    }