﻿label.require:before {
    content: "*";
    color: red;
    margin-left: 5px;
    font-size: 16px;
}


.form-validate-error {
    background-color: #ffb364;
    width: 100%;
    text-align: center;
    padding: 3px 0px;
    color: black;
    display: block;
}

.swal2-container.swal2-center > .swal2-popup {
    padding-bottom: 0px;
}

.ws_dialog_loader {
    width: 100%;
    height: 4.8px;
    display: inline-block;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

    .ws_dialog_loader::after {
        content: '';
        width: 192px;
        height: 4.8px;
        background: #13859f;
        position: absolute;
        top: 0;
        left: 0;
        box-sizing: border-box;
        animation: animloader 1.3s linear infinite;
    }

@keyframes animloader {
    0% {
        left: 0;
        transform: translateX(-100%);
    }

    100% {
        left: 100%;
        transform: translateX(0%);
    }
}
