/* Style the tab */
.tab {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    background-color: none;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: #E1E0DD;
    float: left;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.2s;
    margin-right: 1px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ccc;
}

/* Create an active/current tablink class */
.tab button.active,
.tab button.active * {
    background-color: #aaa;
    color: #fff;
    text-shadow: -1px -1px 0px #888;
    cursor: default;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 18px 12px;
    border: 1px solid #ccc;
    border-top: none;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    margin-bottom: 18px;
}