/* Sidebar with Style */

/* Fonts */
@import url("https://fonts.googleapis.com/css?family=Inter");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");

/* body {
    font-family:"Source Sans Pro",sans-serif;
    background-color: #d0e0f8;
    white-space: nowrap;
} */
.heading {
    font-family:"Inter",sans-serif;
}
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    /* z-index: 1; */
    z-index: 2;
    top: 0;
    left: 0;
    /* background-color: lightblue; */
    background-color: #f0f0f0;
    overflow-x: hidden;
    /* transition: 0s; */
    transition: 0.5s;
    padding-top: 15px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    white-space: nowrap;
}
.backsidebar {
    background-color: rgb(0,0,0,0.3);
    display: none;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}
.sidebar span {
    /* padding: 8px 8px 8px 20px; */
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 15px;
    font-size: 18px;
    display: block;
}
.sidebar h2 {
    padding-left: 20px;
    display: block;
}
.sidebar a {
    color: black;
    padding: 8px 8px 8px 20px;
    font-size: 18px;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}
.sidebar a:hover {
    background-color: #d0d0d0;
    border-radius: 6px;
}
.sidebar .closebtn {
    /* padding: 8px 8px 8px 20px; */
    background-color: #d0d0d0;
    border-radius: 6px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    font-size: 0px;
    transition: 0.3s;
}
.sidebar .closebtn:hover {
    background-color: #b0b0b0;
}
.sidebar .closebtn img {
    padding: 8px;
}
.openbtn {
    background-color: #d0d0d0;
    font-size: 24px;
    cursor: pointer;
    background-color: lightblue;
}
.openbtn img {
    padding: 8px;
}

/* Search */
#mySearch {
	width: 100%;
	font-family:"Inter",sans-serif;
	font-size: 18px;
	padding: 11px;
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-left: 16px;
	width: 240px;
}
.search {
	width: 100%;
	font-family:"Inter",sans-serif;
	font-size: 18px;
	padding: 5px 10px;
    background-color: #283040;
    color: white;
	border: 1px solid gray;
	border-radius: 6px;
	width: 200px;
}

/* Style the navigation menu inside the left column */
#myMenu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
