@import url("https://fonts.googleapis.com/css?family=Raleway");

.sidebar1 {
    position: fixed;
    top: 50%;
    top: 38%;
    z-index: 1;

    width: 55px;
    height: 50px;
    margin-top: 15px;
    box-sizing: border-box;

    border-radius: 5px;
    box-shadow: 0 5px 10px 0;
}

.sidebar1 a {
    display: block;
    padding: 16px;

    font-size: 16px;

    transition: all .3s ease;
    text-align: center;

    color: #fff;
    background-color: #212635;
    box-shadow: 0 5px 10px 0 #000;
}

.sidebar1 a:hover {
    color: #fff;
    background-color: #212635;
}

.active1 {
    background-color: #008CB0 !important;
}

.active1 a:hover {
    color: #e1a26b;
}


/*--- Overlay Search ---*/
.overlay-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    width: 100%;
    height: 100%;

    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, .9);
}

.overlay-content-sidebar {
    position: relative;
    top: 46%;

    width: 80%;
    margin: auto;
    margin-top: 30px;

    text-align: center;
}

.overlay-sidebar .closebtn-sidebar {
    position: absolute;
    top: 20px;
    right: 45px;

    font-size: 60px;

    cursor: pointer;

    color: white;
}

.overlay-sidebar .closebtn-sidebar:hover {
    color: #86585d;
}

.overlay-sidebar input[type=text] {
    float: left;
    width: 84%;
    padding: 15px;

    font-family: "Raleway", sans-serif;
    font-size: 17px;

    color: black;
    border: none;
    border: 2px solid;
    border-color: #86585d;
    background: white;
}

.overlay-sidebar input[type=text]:hover {
    border-color: #86585d;
    background: #f1f1f1;
}

.overlay-sidebar button {
    float: left;
    width: 16%;
    padding: 15px;

    font-size: 20px;

    cursor: pointer;

    color: white;
    border: none;
    background: #86585d;
}

.overlay-sidebar button:hover {
    background: #b4767d;
}

.overlay-h2-sidebar {
    font-family: "Raleway", sans-serif;

    color: white;
}

@media (max-width: 851px){
    .sidebar1{
        display: none;
    }
    .cd-top.cd-is-visible {
        visibility: hidden;
        display: none;
        overflow-x: hidden;
    }
    html, body{
        overflow-x: hidden;
    }
}