﻿label.require:before {
    content: "*";
    color: red;
    font-weight: bold;
    float: right;
    margin-left: 6px;
    margin-top: 1px;
    font-size: 14px;
}


.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%);
    }
}

._popup_bg {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #00000094;
    backdrop-filter: blur(3px);
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    display:none;
}

._popup {
    width: 700px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 0px 41px rgba(0,0,0,0.5);
}

@media(max-width:700px){
    ._popup{
        width:100% !important;
    }
}

    ._popup ._popup_header {
        height: 50px;
        background-color: #e9e9e9;
        font-weight: bold;
        /* display: flex; */
        padding: 13px;
        font-size: 18px;
    }

        ._popup ._popup_header ._popup_close {
            float: left;
            /* flex: 1; */
            /* text-align: left; */
            width: 25px;
            height: 25px;
            background-color: #a01717;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            font-weight: 200;
            border-radius: 5px;
        }

    ._popup ._popup_body {
        flex: 1;
        overflow: auto;
        padding: 25px;
    }

        ._popup ._popup_body img {
            max-width: 90%;
            height: auto !important;
        }

    ._popup ._popup_footer {
        height: 100px;
        background-color: #f7f7f7;
        display: none;
    }

        ._popup ._popup_footer .popup_close_btn {
        }




.ws_prompt {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .ws_prompt .ws_prompt_window {
        width: 500px;
        background-color: white;
        border-radius: 5px;
        box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
        padding: 22px;
        max-width: 90vw;
    }

        .ws_prompt .ws_prompt_window h4 {
            margin-bottom: 31px;
            font-weight: 900;
        }

        .ws_prompt .ws_prompt_window textarea {
            width: 100%;
            height: 170px;
            border: 3px solid rgba(0,0,0,0.1);
            border-radius: 4px;
            margin-bottom: 23px;
            padding: 10px;
        }

        .ws_prompt .ws_prompt_window .ws_prompt_buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            column-gap: 26px;
        }

            .ws_prompt .ws_prompt_window .ws_prompt_buttons input {
                box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
                padding: 6px 30px;
            }

                .ws_prompt .ws_prompt_window .ws_prompt_buttons input:nth-child(2n+1) {
                }