/* Style the tab */
.tab {
    overflow: hidden;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: none;
    background-color: #f1f1f1;
}

    /* Style the buttons that are used to open the tab content */
    .tab button {
        background-color: inherit;
        float: left;
        border-left: solid thin #c0c0c0;
        border-top: solid thin #c0c0c0;
        border-right: solid thin #c0c0c0;
        border-bottom: solid thin #c0c0c0;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        font-size: 10pt;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #fff;
            font-weight: bold;
            border-bottom: none;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    /*padding: 6px 12px;*/
    border: 1px solid #ccc;
    border-top: none;
}

/*.tablinks{
    width: 20%;
}*/