@media (max-width: 560px) {
    body {
        min-height: 100vh;
    }
}

body {
    background-image: url("../images/login-bg.jpg");
    width: 100%;

    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

body::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background-color: rgba(253, 248, 248, 0.56);
}

.btn-ei {
    color: #ffffff;
    border: 1.5px solid #ceff7a;
    background-color: #343a40;
}

.btn-ei:hover {
    color: #ffffff;

}

.text-small {

    font-size: smaller;
}

.vertical-center {
    min-height: 100%; /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */
}

/*v-cloak*/
[v-cloak] > * {
    display: none;
}

[v-cloak]::before {

    content: "Loading...";

}

/*swal*/
.swal2-styled.swal2-confirm {
    border: 0;
    border-radius: .25em;
    background: initial;
    background-color: black !important;
    color: #fff;
    font-size: 1.0625em;
}

/*for VUE transition */
.fade-enter-active, .fade-leave-active {
    transition: opacity .3s;
}

.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */
{
    opacity: 0;
}

.customer-spinner .spinner-border {

    display: inline-block;
    width: 5rem;
    height: 5rem;
    vertical-align: text-bottom;
    border: .1em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;

}