 /* Style the tab */
.tab {
    display: flex;
    overflow: hidden;
    background-color: #e8eaf6;
    font-size: 14px;
    padding: 16px 40px;
    border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 830px) {
    .tab {
	display: block;
    }
}
/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    background: #e8eaf6;
    color: #3f51b5;
  
}

/* Change background color of buttons on hover */
.tab button:hover {
    font-size:16px;
    font-weight:700;
}

/* Create an active/current tablink class */
.tab button.active {
    font-size:16px;
    font-weight:700;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
} 

.devsite-tab-container {
    position: relative;
    border: 1px solid #ccc;
}
@media only screen and (max-width: 414px) {
    .tabcontent {
	padding:0;
    }
}
    
