
.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
  
  .nav-link {
    display: block;
    padding: 0.5rem 1rem; }
    .nav-link:hover, .nav-link:focus {
      text-decoration: none; }
    .nav-link.disabled {
      color: #6c757d; }
  
  .nav-pills .nav-link {
    border-radius: 0.25rem; }
  
  .nav-pills .nav-link.active,
  .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #78d5ef; }
  
  .tab-content > .tab-pane {
    display: none;
  position: relative; }
  
  .tab-content > .active {
    display: block;
  
  }


.tabs .tab-header {
        width: 100%;
}
.tabs .tab-header > div {
    width: 100%;
    height: calc(100% / 2);
    background: #ddd;
    text-indent: 20px;
    color: rgb(25, 24, 24);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: left;
    border-left: 5px solid #ddd;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}
.tabs .tab-header > div.active {
    border-left: 5px solid #00acee;
    color: #00acee;
    background: #eee;
}
.tabs .tab-content {
    padding: 20px 30px;
    flex: 1;
    position: relative;
}
.tabs .tab-content > div {
    position: absolute;
    top: -50vh;
    left: 100px;
    opacity: 0;
    transition: opacity 200ms ease-in-out 0ms,
                left 300ms ease-in-out 0ms,
                top 0ms ease-in-out 300ms ;
}
.tabs .tab-content > div.active {
    top: 20px;
    left: 20px;
    opacity: 1;
    transition: opacity 200ms ease-in-out 0ms,
                left 300ms ease-in-out 0ms,
                top 0ms ease-in-out 0ms ;
}