/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Nov 29, 2019, 10:24:58 PM
    Author     : stephen
*/
.TabButton {}
.TabDisabled {
    opacity: .5;
}
.Tab {
    overflow: scroll; 
/*    width: inherit;*/
    background-color: white;
    visibility:hidden;
    display: none;
}

.Tabs {
    display: flex;
    position: relative;
    border-bottom: 5px solid blue;
    background-color: white;
    width:100%;
}
.TabPane {
/*        position: fixed;*/
        visibility: visible;
        margin-top: 2px;
        border-width: 2px;
        border-color: blue;
        border-style: solid;
        background: white;
/*        overflow: scroll;   */
}

.TabButtonSelected{
  background-color:Blue;     
  color: White;
  visibility: visible;
  display:block;
}

.TabSelected {
  
    visibility: visible;
    display: block;
}