/* Style the tab */
.tab {
    float: left;
    /* position: fixed;*/
    border: 0px solid white;
    background-color: #213768 !important;
    width: 100%;
    xheight: 300px;
}

/* Style the buttons inside the tab */
.tab button {
    display: block;
    background-color: #213768;
    padding: 10px 5px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 12px;
    color:white;
}

/* 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;
    padding-left:10px !important;
    border: 0px solid #ccc;
    width: 80%;
    border-left: none;
    xmargin-left:25% !important;
}