* {box-sizing: border-box}

/* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
  height: 100%;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  /* float: left; */
  /* padding: 0px 12px; */
  /* border: 1px solid #ccc; */
  width: 100%;
  /* border-left: none; */
  /* height: 100vh; */
}




.scroll-top {
    position: fixed;
    display: block;
    bottom: 1.5625rem;
    right: 1.5625rem;
    z-index: 999;
    background: rgba(255, 255, 255, .9);
    height: 2.375rem;
    width: 2.375rem;
    line-height: 2.25rem;
    text-align: center;
    font-size: .875rem;
    border-radius: 100%;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, .05);
    transition: .5s all ease;
    transform: translateY(4.25rem);
    color: #788487;
}

.scroll-top.scroll-top-visible {
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-0.3125rem);
}

@media (max-width: 767.98px) {
    .scroll-top {
        display: none;
    }
}


.sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 80px;
  z-index:9;
}

.none{
  display: none;
}

.todo {
  min-height: 100vh;
}
