#error-message-application {
    position: fixed;
    height: auto;
    background: rgba(216, 73, 73, 0.9);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 2px 1px 0 rgba(0, 0, 0, 0.19);
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 5px;
    transition: 0.1s;
    text-align: center;
    z-index: 1001;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0
}
#error-message-application .error-message-icon {
    padding: 3px 10px;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    font-size: 16px;
    position: absolute;
    right: 10px;
    top: 12px;
    height: 30px;
    width: 30px;
    cursor: pointer
}
#error-message-application .error-message-notice {
    position: absolute;
    left: 10px;
    right: 5;
    top: 12px;
    font-size: 20px;
    border: 2px solid white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: white
}
#error-message-application .error-message-notice span {
    position: relative;
    top: 3px
}
#error-message-application .message-text {
    color: #ffffff;
    font-size: 14px;
    margin-left: 45px;
    text-align: left;
    margin-right: 40px
}
#error-message-application .line {
    position: absolute;
    height: 3px;
    width: 22px;
    background-color: white;
    display: block;
    border-radius: 2px;
    top: 12px
}
#error-message-application .line.left {
    transform: rotate(45deg);
    left: 2px
}
#error-message-application .line.right {
    transform: rotate(-45deg);
    right: 2px
}
#error-message-application.hidden-error {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 2s, opacity 1s linear
}
#error-message-application.visible-error {
    visibility: visible;
    opacity: 1;
    transition: opacity 1s linear
}