<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.gallery {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-flow: wrap;
    margin-top: 40px;
    margin-bottom: 67px;
}

.subpage .gallery {
    margin-bottom: 16px;
}

.subpage.references .gallery {
    margin-bottom: 67px;
}

.gallery .photo {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    overflow: hidden;
    border: none;
    transition: 0.08s ease-in;
    -o-transition: 0.08s ease-in;
    -ms-transition: 0.08s ease-in;
    -moz-transition: 0.08s ease-in;
    -webkit-transition: 0.08s ease-in;
    /* float: left; */
    /* margin-right: 10px; */
    /* margin-bottom: 10px; */
    flex: 0 1 20%;
    border: 0.1px solid #fff;
    position: relative;
}

.gallery .photo:hover, .gallery .photo a:hover{
    background: rgba(107 177 36 / 70%);
}

.gallery .photo a:hover::after {
    background: rgba(107 177 36 / 70%);
    content: "Zobrazit";
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    z-index: 99999;
    top: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.gallery .photo a {
    /* width: 150px; */
    /* height: 150px; */
    display: block;
    position: relative;
    transition: 0.08s ease-in;
    -o-transition: 0.08s ease-in;
    -ms-transition: 0.08s ease-in;
    -moz-transition: 0.08s ease-in;
    -webkit-transition: 0.08s ease-in;
}

.gallery .photo a img {
    position: static;
    max-width: none !important;
    width: 100% !important;
    height: auto !important;
}

.fancybox-skin {
    background: transparent !important;
}

.fancybox-opened .fancybox-skin {
    box-shadow: none !important;
}

.fancybox-opened .fancybox-title {
    text-align: center !important;
}
</pre></body></html>