﻿.req {
    color: red !important;
}

.text-center {
    text-align: center;
}

.swal2-container.swal2-center > .swal2-popup {
    font-size: 14px;
}

.validation-summary-errors * {
    color: red !important;
}

.field-validation-error {
    width: 100%;
    display: block;
    color: red !important;
}

    .field-validation-error * {
        color: red !important;
    }

.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;
        }

.pagination-container {
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
}

    .pagination-container .pagination {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

        .pagination-container .pagination > li {
            margin-right: 5px;
            border-radius: 50%;
            transition: all .3s ease-in;
        }

            .pagination-container .pagination > li > a {
                width: 32px;
                height: 32px;
                background-color: #FAFAFA;
                color: #444444;
                display: flex;
                -ms-align-items: center;
                -o-align-items: center;
                -webkit-align-items: center;
                align-items: center;
                -o-justify-content: center;
                -webkit-justify-content: center;
                justify-content: center;
                -ms-border-radius: 50%;
                border-radius: 50%;
                -ms-transition: all .3s ease-in;
                -o-transition: all .3s ease-in;
                -webkit-transition: all .3s ease-in;
                transition: all .3s ease-in;
            }

                .pagination-container .pagination > li > a:hover {
                    border: 2px solid #CC0500;
                    color: #e40d11;
                }

            .pagination-container .pagination > li.active a {
                border: 2px solid #CC0500;
                color: #e40d11;
            }