/********************
TAB SET
********************/
/* ---Vertical Tab Set--- */
.AE-v_tab {
  margin-top: 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
  border-top: 1px solid #bdc3c7;
  border-bottom: 1px solid #bdc3c7;
  margin-bottom: 15px; 
  display: flex; 
  align-items: flex-start; 
  justify-content: center; 
  flex-direction: row;
}
          
/* Style the tab */
.AE-v_tab .tab {
  float: left;
  background-color: #ecf0f1;
  width: 20%;
  min-width: 125px;
  height: auto;
}

/* Style the buttons inside the tab */
.AE-v_tab .tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.AE-v_tab .tab button:hover, .AE-v_tab .tab button:focus {
  background-color: #bdc3c7; 
}

/* Create an active/current "tab button" class */
.AE-v_tab .tab button.active {
  background-color: #277CB4;
  color: #fff;
}

/* Style the tab content */
.AE-v_tab .tabcontent {
  float: left;
  padding: 5px 20px;
  width: 80%;
  border: none;
  background-color: white;
  border-left: none;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
/* ---END Vertical Tab Set--- */

/* ---Horizontal Tab Set--- */
/* Style the tab */
.AE-h_tabset {
  margin-top: 20px;
  margin-bottom: 20px;
}

.AE-h_tab {
  overflow: hidden;
  background-color: #f2f2f2;
  border-bottom: 1px solid #bdc3c7;
  width: 100%;
  min-width: 500px;
}

/* Style the buttons inside the tab */
.AE-h_tab button {
  background-color: #ecf0f1;
  float: left;
  border: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  min-width: 100px;
}

/* Change background color of buttons on hover */
.AE-h_tab button:hover, .AE-h_tab button:focus {
  background-color: #bdc3c7;
}

/* Create an active/current tablink class */
.AE-h_tab button.active {
  background-color: #277CB4;
  color: #fff;
}

/* Style the tab content */
.AE-h_tabcontent {
  display: none;
  padding: 5px 20px;
  background-image: none; 
  background-color: 
  white; height: 100%;
  border-bottom: 1px solid #bdc3c7;
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
} 
/* ---END Horizontal Tab Set--- */