.filter-selection__link_type_reset {
    margin: 0 5px 5px 0;
    padding: 10px 16px;
    border: 1px solid #ff8989;
    background: none;
    line-height: 1;
    color: #333;
    transition: all .3s ease;
    border-radius: 20px;
}

.toggle-sidebar {
    display: none;
    font-size: 115%;
    line-height: 44px;
    -webkit-transition: color 200ms ease;
    -moz-transition: color 200ms ease;
    -o-transition: color 200ms ease;
    transition: color 200ms ease;
    color: #016189;
    text-decoration: none;
    border: grey solid 1px;
    padding: 2px;
}
.toggle-sidebar:hover {
	background: rgba(255, 255, 0, 0.3);
    cursor: pointer;
}

.black-window.hidden-tag{
    background-color: black;
    display: none;
    cursor: pointer;
    opacity: 0.7;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
}

@media (max-width: 991px){
    #secondary.widget-area {
    	max-width: 80%;
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        overflow-y: auto;
        padding: 40px 30px;
        z-index: 1000;
    	background-color: white;
        transition: all 700ms ease;
        -webkit-transition: all 700ms ease;
        -moz-transition: all 700ms ease;
        -o-transition: all 700ms ease;
        transition: all 700ms ease;
        transform: translateX(-100%);
    }
    
    .toggle-sidebar {
        display: inline;
    }
    
}


