<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* --- module: gallery-blueimp --- */

.galleryBlueimp .gallerylinks {
    padding: 30px 0px 0px 0px;
}

.galleryBlueimp .gallerylinks .gallery-grid-item {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    background-color: rgba(0,0,0,0.05);
}

.galleryBlueimp .gallerylinks .imgholder {
    position: relative;
    z-index: 1;
}

.galleryBlueimp .gallerylinks .imgholder.hasDescription::after {
    content: '\f106';
    font-family: 'FontAwesome';
    text-align: center;
    color: #ffffff;
    width: 100%;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    position: absolute;
    bottom: 0;
    left: 0;

    transition: opacity 0.5s, bottom 0.5s;
    -webkit-transition: opacity 0.5s, bottom 0.5s;
    -moz-transition: opacity 0.5s, bottom 0.5s;

    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
}
.galleryBlueimp .gallerylinks .imgholder.hasDescription:before {
    display: block;
    content: '\f111\f111\f111';
    font-family: FontAwesome;
    text-align: center;
    font-size: 4px;
    line-height: 20px;
    letter-spacing: 5px;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    color: #ffffff;
    opacity: 0;

    transition: opacity 0.5s, bottom 0.5s;
    -webkit-transition: opacity 0.5s, bottom 0.5s;
    -moz-transition: opacity 0.5s, bottom 0.5s;
}
.galleryBlueimp .gallerylinks img {
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
}
.galleryBlueimp .gallerylinks .imgholder.hasDescription img {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    /* --- jumping image in chrome ---
    transition: 1s filter linear;
    -webkit-transition: 1s -webkit-filter linear;
    */
}

.galleryBlueimp .gallerylinks .imgdescription {
    position: absolute;
    top: 100%;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
}

.galleryBlueimp .gallerylinks  .gallery-grid-item::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 1;
}

.galleryBlueimp .gallerylinks .imgdescription .text {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 75%;
    color: #ffffff;
    padding: 0px 10px 0px 10px;
    overflow: hidden;
}

.galleryBlueimp .gallerylinks .gallery-grid-item:hover img {
    opacity: 0.3;
}

.galleryBlueimp .gallerylinks .gallery-grid-item:hover .imgdescription  {
    top: 0;
}

.galleryBlueimp .gallerylinks .gallery-grid-item:hover .imgholder.hasDescription::after  {
    opacity: 0;
    bottom: -20px;
}
.galleryBlueimp .gallerylinks .gallery-grid-item:hover .imgholder.hasDescription img  {
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

@keyframes showtruncate {
  0%    { bottom: -20px; }
  30%   { bottom: -20px; }
  100%  { bottom: 0px; }
}

.galleryBlueimp .gallerylinks .gallery-grid-item:hover .imgholder.hasDescription::before  {
    opacity: 1;
    bottom: 0px;

    animation: showtruncate 1s;
    -webkit-animation: showtruncate 1s;
    -moz-animation: showtruncate 1s;
}


/* ========== gallery grid: tablet/mobile ========== */
/* ====================================================== */
/*
.gallerylinks.swgridMultiCol[max-width~='932px'] .gallery-grid-item {
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}
.gallerylinks.swgridMultiCol[max-width~='932px'] .imgholder.hasDescription::after {
    display: none;
}
.gallerylinks.swgridMultiCol[max-width~='932px'] .imgdescription {
    position: relative;
    top: auto;
    bottom: auto;
}
.gallerylinks.swgridMultiCol[max-width~='932px'] .imgdescription .text {
    background: transparent;
    padding: 5px 5px 5px 5px;
    position: relative;
}
*/


/* ========== gallery grid ========== */
/* ====================================================== */
.gallerylinks.swgridMultiCol {}
.gallerylinks.swgridMultiCol .swgridFlex {
    margin-left: -2px;
    margin-right: -2px;
}
.gallerylinks.swgridMultiCol .swgridFlexItem {
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 4px;
    border: none;
    flex: 0 1 calc(16.667% - 4px);
    position: relative;
    transition: none;
}

/* ========== width: mobile ========== */
.gallerylinks.swgridMultiCol[max-width~='419px'] .swgridFlex {
    display: flex;
}
.gallerylinks.swgridMultiCol[max-width~='419px'] .swgridFlexItem {
    flex-basis: calc(50% - 4px);
    margin-bottom: 2px;
}

/* ========== width: mobile-landscape ========== */
.gallerylinks.swgridMultiCol[min-width~='420px'] .swgridFlexItem {
    flex-basis: calc(33.3333% - 4px);
}

/* ========== width: tablet ========== */
.gallerylinks.swgridMultiCol[min-width~='720px'] .swgridFlexItem {
    flex-basis: calc(25% - 4px);
}

/* ========== width: desktop ========== */
.gallerylinks.swgridMultiCol[min-width~='932px'] .swgridFlexItem {
    flex-basis: calc(20% - 4px);
}

/* ========== width: large ========== */
.gallerylinks.swgridMultiCol[min-width~='1140px'] .swgridFlexItem {
    flex-basis: calc(16.667% - 4px);
}</pre></body></html>