.fsp-image{
    position: relative;
}
.fsp-small .fsp-image:after{
    width: 50px;
    height: 50px;
    display: block;
    background-image:url(/fileadmin/templates/default/Images/corner-info.svg);
    background-repeat: no-repeat;
    background-size: cover;
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    opacity: 0.7;
}
.fsp-image:hover:after{
    opacity: 1;

}
.fsp-name{
    font-weight: bold;
    color: #636468;
}
.fsp-image:hover{
    cursor: pointer;
}
.fsp-fullscreen{
    background-color: rgba(0,0,0,0.9);
    position: fixed;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    pointer-events:none;
    transition: opacity 0.5s;
    color:white;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow-y: scroll;
}
.open .fsp-fullscreen{
    pointer-events:all;
    opacity: 1;
}
.fsp-close:before{
    content: "« "
    
}
.fsp hr{
border-color:white;
margin-top: 50px;
}
.fsp-close{
    text-decoration: underline;
   cursor: pointer;
    border-top: 1px solid white;
}
body.fsp-open{
overflow: hidden;
}
@media (min-width: 768px) {
.fsp-bottom{
    position: absolute;
    bottom: 0px;
}
}