.require-login{box-shadow:rgba(0,0,0,.16) 0 1px 4px;background-color:#fff;border-radius:5px;border-left:solid 10px red;padding-top:.5rem;padding-bottom:.5rem;display:none;position:absolute;width:100%;z-index:10;-webkit-animation:slide-bottom .5s cubic-bezier(.250,.460,.450,.940) forwards;animation:slide-bottom .5s cubic-bezier(.250,.460,.450,.940) forwards}.success-submit{box-shadow:rgba(0,0,0,.16) 0 1px 4px;background-color:#fff;border-radius:5px;border-left:solid 10px #4caf50;padding-top:.5rem;padding-bottom:.5rem;display:none;position:absolute;width:100%;z-index:10;-webkit-animation:slide-bottom .5s cubic-bezier(.250,.460,.450,.940) forwards;animation:slide-bottom .5s cubic-bezier(.250,.460,.450,.940) forwards}.success-body,.require-msg-body{display:flex;align-items:center;gap:1rem;height:inherit;padding-inline-start:1.5rem}.success-body h5,.require-msg-body h5{font-weight:bold!important;margin-bottom:0!important}.close-msg{background-color:transparent!important;color:gray!important;border:none!important;padding-inline-end:20px!important}.close-msg:hover{color:#000!important;background-color:transparent!important}@-webkit-keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}@keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}