.aside {
    min-width: 350px;
    width: 15%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fafafa;
    font-family: Assistant, sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    z-index: 2000;
    width: 0;
    min-width: 0;
    overflow: hidden;
    transition: .35s width ease, .35s min-width ease
}

.aside .aside-header {
    background-color: #ce2127;
    padding: 1em;
    padding-left: .5em;
    border-bottom: 2px solid #ce2127;
    font-size: 1.2em;
    color: #fff
}

.aside .aside-header .close {
    float: right;
    cursor: pointer;
    margin-left: 10px
}

.aside .aside-contents {
    padding: .5em;
    padding-bottom: 1em
}

.aside.in {
    width: 15%;
    min-width: 350px
}

.aside-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
    transition: .2s opacity ease;
    opacity: 0;
    display: none
}

.aside-backdrop.in {
    display: block;
    opacity: .5
}

.mobileMenuTitle {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #ce2127;
    text-align: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
	border:1px solid white;
}

.aside-contents ul {
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: right
}

.aside-contents ul li {
    height: 30px;
    border-bottom: 1px solid #ce2127;
    margin-bottom: 5px
}

.aside-contents ul li a {
    color: #ce2127;
    text-decoration: none!important
}
.aside-contents ul li a:hover{
	color:black;
}