@CHARSET "ISO-8859-1";
body, select {
	margin: 0;
	font-family: 'Roboto Slab', serif;
	font-size: medium;
}

.topnav {
	overflow: hidden;
	background-color: #1c1;
}

.topnav a {
	float: left;
	color: #f2f2f2;
	text-align: center;
	padding: 10px 14px;
	text-decoration: none;
	display: block;
	/* font-size: medium; */
}

.active {
	background-color: #4CAF50;
	color: white;
}

.topnav .icon {
	display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
	font-size: medium;
    border: none;
    outline: none;
    color: white;
    padding: 10px 14px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 14px 0px rgba(0,0,0,0.2);
    z-index: 2;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 9px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
	background-color: #8080ff;
	color: white;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 600px) {
	.topnav a:not(:first-child), .dropdown .dropbtn {
		display: none;
	}
	.topnav a.icon {
    	float: right;
    	display: block;
	}
}

@media screen and (max-width: 600px) {
	.topnav.responsive {
		position: relative;
	}
	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
	.topnav.responsive .dropdown {
		float: none;
	}
	.topnav.responsive .dropdown-content {
		position: relative;
	}
	.topnav.responsive .dropdown .dropbtn {
		display: block;
		width: 100%;
		text-align: left;
	}
}

/*
tab layout
*/
div.tab-container {
    text-align: center;
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    position: relative;
    margin: auto;
    overflow: hidden;
    display: inline-block;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 16px;
    transition: 0.3s;
    font-size: 17px;
}

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

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

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 4px 12px;
    border: 1px solid #afa;
    border-top: none;
}

/* 
w3 sampe sini
*/

#profile {
	padding: 6px;
	border: 1px solid grey;
	font-size: 17px;
	background-color: #2dd;
	font-family: Verdana;
	font-weight: bold;
	color: #224488;
}

table {
	background-color: #f8f8f8;
}

table tr:nth-child(even) {
	background-color: #eee;
}

th {
	text-align: center;
}

td, th {
	padding: 0px 3px;
	vertical-align: top;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #eee;
    color: red;
    text-align: center;
    font-size: 9px;
    font-family: Calibri, sans-serif;
}
/*
=== responsif tabel
*/
input[type=text], input[type=time], input[type=date], input[type=number], input[type=email], input[type=tel], input[type=password], select, textarea {
	padding: 2px 6px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	resize: vertical;
	font-weight: 400;
	width: -moz-available;
}

/* Style the submit button */
input[type=submit] {
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 15px;
	padding: 4px 18px;
}

/* Style the label to display next to the inputs */
label {
	display: inline-block;
	padding-top: 6px;
	padding-right: 6px;
	float: right;
}

/* Style the container */
.form-container {
	border-radius: 5px;
	background-color: #ddd;
	padding: 10px;
	text-align: left;
}

/* Floating column for labels: 25% width */
.col-25 {
	float: left;
	width: 25%;
	margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
	float: left;
	width: 75%;
	margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	.col-25, .col-75, input[type=submit] {
		width: 100%;
	    margin-top: 1;
	}
	label {
		float: left;
	}
}

/*=== bar-icon ===*/
.bar-container {
    display: inline-block;
    cursor: pointer;
}
   
.bar1, .bar2, .bar3 {
    width: 24px;
    height: 4px;
    background-color: #eee;
    margin-top: 2px;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-4px, 4px);
    transform: rotate(-45deg) translate(-4px, 4px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-4px, -4px);
    transform: rotate(45deg) translate(-4px, -4px);
}
