
#userAlertMessage {
    background-color: var(--primary-color-1-light-6);
    min-height: 50px;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color-3);
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: Arial;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}

#userAlertMessage a {
    color: #4B8EE7;
    text-decoration: none;
}

#userAlertMessageClose {
    float: right;
    font-size: 20px;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}

#userAlertMessageClose:hover {
    color: var(--secondary-color-1);
}

#userAlertMessage a.userAlertMessageOK {
    color: var(--secondary-color-1);
    font-size: 16px;
    font-family: Arial;
    font-weight: bold;
    display: inline-block;
    border: 2px solid var(--secondary-color-1);
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 60px 0 10px;

    background-image: linear-gradient(var(--secondary-color-1), var(--secondary-color-1)), linear-gradient(var(--primary-color-1-light-6), var(--primary-color-1-light-6));
    background-size: 0 2px, auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    transition: .4s ease-out;

}

#userAlertMessage a.userAlertMessageOK:hover {
    border: 2px solid var(--primary-color-1-light-6);
    background-size: 100% 2px, auto;
}