/* Panel boczny */
#panel {
    position: fixed;
    top: 110px;
    right: -272px;
    z-index: 99999;
    transition: right 0.5s ease-out 0s;
}
 
#panel:hover {
    right: 0;
}
 
#panel #content {
    width: 250px;
    height: 300px;
    padding: 10px;
    border-top: 2px solid #cfcfcf;
    border-right: none;
    border-bottom: 2px solid #cfcfcf;
    border-left: 2px solid #cfcfcf;
    z-index: 20;
    background: #527f76;
    position: relative;
    border-radius: 10px 0 0 10px;
}
 
#panel #title {
    width: 170px;
	height: 30px;
    border: 2px solid #cfcfcf;
    background: #669999;
    color: #cfcfcf;
    font-weight: bold;
    border-radius: 10px;
    padding: 5px 5px 25px 5px;
    text-align: center;
    position: relative;
    top: 170px;
    left: -109px;
    transform: rotate(-270deg);
    z-index: 1;
}