/*---The sidebar menu---*/
.sidebar {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
}

/* The sidebar links */
.sidebar a {
    padding: 12px 8px 12px 32px;
    text-decoration: none;
    font-family: Caviar Dreams;
    font-size: 20px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidebar a:hover, .sidebar a.active {
    color: #00C2AF;
}

/* Position and style the close button (top right corner) */
.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* The button used to open the sidebar */
.openbtn {
  margin: 2% 0 0 5%;
  transition: .5s ease;
  display: inline-block;
  font-size: 20px;
  cursor: pointer;
  position: fixed;
  background-color: #6F4B87;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 100px;
}

.openbtn:hover {
  color: #008DC9;
  transition: .5s ease;
  background-color: black;
  box-shadow: 5px 5px 50px #D0685A;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s; /* If you want a transition effect */
    padding: 0px;
}
