/* Panel boczny */
#panel {
    position: fixed;
    top: 150px;
    right: -141px;
    z-index: 1;
    transition: right 0.5s ease-out 0s;
}
 
#panel:hover {
    right: -120px;
}
 
#panel #content {
    width: 250px;
    height: 210px;
    padding: 10px;
    border-top: 0px solid #cfcfcf;
    border-right: none;
    border-bottom: 0px solid #cfcfcf;
    border-left: 0px solid #cfcfcf;
    z-index: 1;
    background: ;
    position: relative;
    border-radius: 10px 0 0 10px;
}
 
#panel #title {
    width: 95px;
	height: 68px;
    border: 2px solid #cfcfcf;
    background: ;
    color: #e9e9e9;
    font-weight: bold;
    border-radius: 10px;
    padding: 5px 5px 10px 0px;
    text-align: center;
    position: relative;
    top: 100px;
    left: -122px;
    z-index: 1;
}