﻿
#messageDiv {
   height:0px;
    width: calc( 100% - 16px );
    position: fixed;
    display: block;
    font-family: Calibri;
    font-weight: 600;
    z-index:5000;
}

/* Common styles for all alert types */
.alert {
    padding: 30px 60px;
    color: #0c0080;
    text-shadow: white 0 0 5px, white -1px -1px 5px, white 1px 1px 5px, white 2px 2px 5px;
    z-index: 5000;
    border-radius: 15px;
    /* margin: 0px auto 0 auto;*/
    width: fit-content;
    text-align: center;
    transform: translateY(-50px);
    box-shadow: 5px 5px 10px 1px #888888;
    position: relative;
    opacity: 0;
    transition: all 0.5s;
    overflow: hidden;
    float: right;
    clear: both;
    margin-top: 8px;
}

/* Specific backgrounds */
.danger {
    background: linear-gradient(to bottom, #f66d6d 0%, #ff0808 100%);
}

.success {
    background: linear-gradient(to bottom, #c6fa93 0%, #00ff21 100%);
}

.info {
    background: linear-gradient(to bottom, gold 0%, #dda92b 100%);
}

.progress-bar {
    height: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 50ms linear;
}

@media only screen and (max-width: 720px) {
    .alert {
        top:0;
        width: calc( 100% - 120px );
      
    }
}

