﻿/*Form Style*/
.relative {
    position: relative
}

#loading {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 5000;
    width: 100%;
    height: 100%;
    text-align: center
}

#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;
}