.sidebarFav {
    height: 100vh;
    width: 15vw;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 80px;
    border-left: 1px solid #e0e2e6;
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.sidebarFav a {
    text-decoration: none;
    color: #0081d5;
    display: block;
    transition: 0.3s;
    font-weight: bold;
    width: 384px;
    margin-top: 15px;
    border-bottom: 1px solid #e0e2e6;
    padding: 16px;
}

.sidebarFav a:hover {
    color: #818181;
}

.sidebarFav .closebtn {
    position: absolute;
    font-size: 36px;
    margin-left: -30px;
    margin-top: -20px;
}

.MenuFav {
   min-width: 100%;
    min-height: 6vh;
    position: relative;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e2e6;
}

.delFav {
    min-width: 100%;
    min-height: 6vh;
    position: relative;
    background-color: #d9413b;
    border-bottom: 1px solid #e0e2e6;
}

.delFav i{
	color: #fff !important;
    padding-top: 6px;
}    


.icondelFav {
    top: 10px;
    position: relative;
    margin-left: 20px;
    color: #333
}

#mainFav {
    transition: margin-left .5s;
    padding: 16px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidebarFav {
        padding-top: 15px;
    }

    .sidebarFav a {
        font-size: 18px;
    }
}


@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
