/* Style the tab Dark */
.tab88 {
  float: left;
  background-color:#262626;
  width: 30%;
  height: auto;
}

/* Style the buttons inside the tab */
.tab88 button {
  display: block;
  background-color: inherit;
  color: White;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.4s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab88 button:hover {
  background-color: #000;
  color: #a6a182;
}

/* Create an active/current "tab button" class */
.tab88 button.active {
  background-color: #000;
  color: #a6a182;
}

/* Style the tab content */
.tabcontent88 {
  float: left;
  padding: 0px 12px;
  width: 70%;
  border-left: none;
  height: 100%;
}


/* Style the tab Light*/
body.bg-dark.bg-white .tab88 {
  float: left;
  background-color: #f1f1f1;
  width: 30%;
  height: auto;
}

/* Style the buttons inside the tab */
body.bg-dark.bg-white .tab88 button {
  display: block;
  background-color: inherit;
  color: #000;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
body.bg-dark.bg-white .tab88 button:hover {
  background-color: #ddd;
  color: #353535;
}

/* Create an active/current "tab button" class */
body.bg-dark.bg-white .tab88 button.active {
  background-color: #ccc;
  color: #353535;
}

/* Style the tab content */
body.bg-dark.bg-white .tabcontent88 {
  float: left;
  padding: 0px 12px;
  width: 70%;
  border-left: none;
  height: 100%;
}

.scp88-animate-top
{
    position:relative;
    animation:animatetop 0.4s;
}
@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}