/* Tabs CSS */

/* Style the tab */
.tabs {
    /* overflow: hidden; */
    /*border: 1px solid #ccc;
    background-color: #f1f1f1; */
	overflow-x: auto;
    white-space: nowrap;
}

/* Style the buttons that are used to open the tab content */
.tabs button {
    /* background-color: inherit; */
	background-color: #eaeaea;
	display: inline-block;
    /* float: left; */
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
	border-radius: 0;
	border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

@media only screen and (max-width : 768px)  {
  .tabs button { 
    padding: 14px 9px;
    font-size: 0.9em;; }
}

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

/* Create an active/current tablink class */
.tabs button.active {
    background-color: #FF9800;
    color: white;
	border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    /* border: 1px solid #eaeaea; */
    border-top: 3px solid #e6e6e6;
	-webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}