﻿/*Form Style*/
.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;
        }

/*EndForm Style*/

.pagination-container {
    float: none;
    direction: ltr;
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 18px;
    text-align: left;
}

    .pagination-container .pagination {
        display: flex;
        justify-content: flex-start;
    }

        .pagination-container .pagination li {
            width: 37px;
            height: 37px;
            z-index: 2;
            cursor: pointer;
            margin: 0 6px 0 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #111;
        }

            .pagination-container .pagination li.active {
                background-image: url(../images/bg-pager.png);
                background-repeat: no-repeat;
            }

                .pagination-container .pagination li.active a {
                    color: #fff;
                }
