@charset "UTF-8";
/* broezels | CSS for menu */


.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 111;
    top: 0;
    right: 0;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 65px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 5px 5px 10px 5px hsla(0,0%,0%,0.10);
    box-shadow: 5px 5px 10px 5px hsla(0,0%,0%,0.10);
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
    color: #009FE3;
    display: block;
    transition: 0.0s;
    }

.sidebar a:hover {
  color: #004899;
}

.sidebar .closebtn {
    position: absolute;
    top: 0px;
    right: 25px;
    font-size: 50px;
    margin-left: 50px;
    color: #009FE3;
    font-weight: bold;
}

.openbtn {
    cursor: pointer;
    padding: 0px 15px 0px 0px;
    border: none;
    background-color: rgba(255,255,255,0.00);
}

.openbtn:hover {
}

#main {
    transition: margin-right .5s;
    float: right;
}

/* broezels | menu for phone */
@media screen and (max-width: 475px) {
  .sidebar {padding-top: 60px;}
  .sidebar a {font-size: 25px;}
  .sidebar a {font-weight: bold;}
}