/*
.content:not(.white) {
    background-color: #ddd;
}
*/

.gnsyso-section-container.gnsyso-protected > a {
    cursor: pointer;
}

.gnsyso-section-container .gnsyso-banner-teaser .gnsyso-banner-pw-protect-sub-teaser {
    font-size: 22px;
    font-weight: bold;
}

.gnsyso-gallery-card {
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .gnsyso-gallery-card {
        cursor: pointer;
    }
}

.gnsyso-gallery-card .gnsyso-listed-gallery-image {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
}

.gnsyso-image-overlay-caption-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    background-color: rgba(32,40,51,.70);
    z-index: 9;
    text-align: center;
    visibility:none
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.gnsyso-image-overlay-caption-container .gnsyso-overlay-caption-text-container {
    position: relative;
    top: 100%;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.6rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
}

@media (hover: hover) and (pointer: fine) {
    .gnsyso-gallery-card:hover .gnsyso-image-overlay-caption-container {
        visibility: visible;
        opacity: 1;
    }

    .gnsyso-gallery-card:hover .gnsyso-image-overlay-caption-container .gnsyso-overlay-caption-text-container {
        top: 0;
    }
}

.gnsyso-gallery-card.touch-hover .gnsyso-image-overlay-caption-container {
    visibility: visible;
    opacity: 1;
}

.gnsyso-gallery-card.touch-hover .gnsyso-image-overlay-caption-container .gnsyso-overlay-caption-text-container {
    top: 0;
}