.sidepanelopen p {
    height: 50px;
    margin-bottom: 0px;
    border: 1px solid white;
}
.sidepanelopen {
    position: fixed;
    top: 70%;
    right: -1px;
    margin-top: -75px;
    width: 230px;
    cursor: pointer;
    z-index: 100;
    display: block;
    animation-name: slideout !important;
    animation-duration: 0.5s !important;
}
.sidepanel p {
    height: 50px;
    margin-bottom: 0px;
    border: 1px solid white;
}
.sidepanel {
    position: fixed;
    top: 70%;
    right: -180px;
    margin-top: -75px;
    width: 230px;
    cursor: pointer;
    z-index: 100;
    display: block;
}
.slideinanim {
    animation-name: slidein;
    animation-duration: 0.5s;
}
.sidebaropt {
    transition: 0.3s;
    background-color: #E32227;
    opacity: 0.8;
	margin: unset !important;
}
.sidebaropt:hover {
    transition: 0.3s;
    opacity: 1;
}
@keyframes slidein {
	0% {right: -1px;  }
	100% {right: -180px; }
}
@keyframes slideout {
	0% {right: -180px;  }
	100% {right: -1px;  }
}