﻿
.divMessageBox_ERP {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.6);
    z-index: 100000;
}

.MessageBoxContainer_ERP {
    top: 35%;
    color: #fff;
    position: relative;
    width: 100%;
    background-color: #a3bdd3;
    background-color: #152c51cf;
    padding: 20px;
    background-image: linear-gradient(to top,#294d6cc7,hwb(216deg 7% 61% / 66%));
}

.MessageBoxMiddle_ERP {
    position: relative;
    left: 20%;
    width: 60%;
}

    .MessageBoxMiddle_ERP .MsgAltTitle {
        letter-spacing: -1px;
        font-size: 24px;
        font-weight: 300;
    }

    .MessageBoxMiddle_ERP .pAltText {
        font-style: 30px;
    }

.MessageBoxContainer_ERP input, .MessageBoxContainer_ERP select {
    width: 50%;
    padding: 5px;
}

.MessageBoxButtonSection_ERP {
    width: 100%;
    height: 30px;
}

    .MessageBoxButtonSection_ERP button {
        float: right;
        margin-right: 7px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 14px;
        font-weight: 700;
    }

.animated_ERP {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated_ERP.fast {
        -webkit-animation-duration: .5s;
        -moz-animation-duration: .5s;
        -o-animation-duration: .5s;
        animation-duration: .5s;
    }

    .animated_ERP.hinge {
        -webkit-animation-duration: 2s;
        -moz-animation-duration: 2s;
        -o-animation-duration: 2s;
        animation-duration: 2s;
    }

    .animated_ERP.fast {
        -ms-animation-duration: .4s;
    }

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animated_ERP.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}


@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    -moz-animation-name: fadeOut;
    -o-animation-name: fadeOut;
    animation-name: fadeOut;
}