
.tab {
    float: right;
    /*border: 1px solid #ccc;*/
    /*background-color: #f1f1f1;*/
    width:100%;
    /*height: 300px;*/
}

/* Style the buttons inside the tab */
.tab button {
    display: block;
    color: #2d0059;
    padding: 5px 5px;
    width: inherit;
    border: none;
    outline: none;
    text-align: right;
    cursor: pointer;
    transition: 0.3s;

    background: #ededed;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 5px;

}

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

/* Create an active/current "tab button" class */
.tab button.active {
    background-color: #b7e1e5;
}

/* Style the tab content */
.tabcontent {
    float: left;
    text-align: center;
    padding: 0px 0px 10px 0px;
   /* border: 1px solid #ccc;*/
    /*width: 50%;*/
    border-left: none;
    height: auto;
}