﻿.swal2-container.swal2-center > .swal2-popup {
    font-size: 14px;
}

.validation-summary-errors * {
    color: red;
}

.field-validation-error {
    width: 100%;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
}

    .field-validation-error * {
        color: red;
    }

.relative {
    position: relative
}

#loading {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    width: 100%;
    height: 100%;
}

    #loading::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.19);
    }

    #loading > figure {
        height: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 100;
        transform: translateX(-50%);
    }

        #loading > figure > img {
            height: auto;
            object-fit: cover;
            text-align: center;
            margin: 0 auto;
        }

        #loading > figure > figcaption {
            text-align: center;
            margin: 10px auto;
            padding: 10px 0;
            color: #000;
        }

/*gallery*/
.gallery {
    text-align: center;
    margin-top: 60px;
}

    .gallery li {
        width: 290px;
        height: 190px;
        margin: 10px;
        display: inline-block;
        border: 5px solid #fff;
        overflow: hidden;
        position: relative;
        text-align: center;
        box-shadow: 2px 2px 10px #C2C2C2;
        cursor: pointer;
    }

        .gallery li img {
            width: 100%;
            height: 100%;
            max-height: 100%;
        }

        .gallery li a {
            width: 100%;
            height: 100%;
            position: absolute;
            overflow: hidden;
            top: 0;
            left: 0;
            -moz-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
            -webkit-transition: all .4s ease-in-out;
            background-color: rgba(241, 241, 241, 0.47);
            opacity: 0;
        }

            .gallery li a:hover {
                opacity: 1;
            }

            .gallery li a .info {
                text-decoration: none;
                padding: 7px 14px;
                background-color: #22245d;
                color: #fff;
                text-transform: uppercase;
                box-shadow: 0 0 1px #000;
                -webkit-box-shadow: 0 0 1px #000;
                display: block;
                margin-top: 20px;
            }

/*galleryimage-list*/
.galleryimage-list {
    --column: 4;
    --gap-column: 10px;
    --gap-row: 30px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--gap-column) / -2);
    width: calc(100% + var(--gap-column));
    margin-top: 50px;
}

    .galleryimage-list > li > a {
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .galleryimage-list > li > a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.5);
            transition: all .5s;
        }

        .galleryimage-list > li > a:hover::after {
            height: 0;
        }

/*galleryvideo-list*/
.galleryvideo-list {
    --column: 3;
    --gap-column: 10px;
    --gap-row: 30px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--gap-column) / -2);
    width: calc(100% + var(--gap-column));
    margin-top: 50px;
}

    .galleryvideo-list > * {
        width: calc((100% - (var(--column) * var(--gap-column))) / var(--column));
        margin: 0 calc(var(--gap-column) / 2) var(--gap-row);
    }

    .galleryvideo-list > li > a {
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .galleryvideo-list > li > a > video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .galleryvideo-list > li > a .playbtn {
            background-size: 120px;
        }

.content ul {
    list-style: none;
    padding-left: 0;
}

    .content ul > li {
        list-style: none;
        position: relative;
        margin-bottom: 16px;
        padding-left: 30px;
        line-height: 1.45;
    }

        .content ul > li:before {
            content: "";
            width: 20px;
            height: 20px;
            top: 3px;
            left: 0;
            background: url(/content/images/checkmark.png) no-repeat 50%;
            background-size: contain;
            position: absolute;
        }