/*.notification-error,
.notification-success {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 13px;
    z-index: 10000;
    border-radius: 15px;
    animation: show 1s;
}

.notification-error {
    background: #ff4d3e;
}

.notification-success {
    background: #37b400;
}

#notification #message {
    color: wheat;
    margin-bottom: 0;
}

#notification #title {
    color: wheat;
}

.leftimg {
    cursor: pointer;
    float: left;*/ /* Выравнивание по левому краю */
/*margin: 7px 7px 7px 0;*/ /* Отступы вокруг картинки */
/*}*/

@keyframes show {
    0% {
        opacity: 0;
        transform: translateY(-15px)
    }

    100% {
        opacity: 1;
        transform: translateY(0px)
    }
}


/*upload*/
.upload-success,
.wrong-pass {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 13px;
    z-index: 10000;
    border-radius: 15px;
    animation: show 1s;
}

.upload-title,
.wrong-pass-title {
    padding: 14px 24px;
    display: flex;
    flex-direction: row;
    border-radius: 4px 4px 0px 0px;
}

.upload-title {
    background: #119D13;
}

.wrong-pass-title {
    background: #E53A3B;
}

.upload-title-icon,
.wrong-pass-title-icon {
    margin-right: 12px;
    margin-top: -4px;
}

.upload-title-message,
.wrong-pass-title-message {
    color: #FFF;
    font-family: 'Arial';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.upload-text,
.wrong-pass-text {
    padding: 24px 32px;
    background: #fff;
    border-radius: 0px 0px 4px 4px;
    border: 1px solid rgba(33,37,41,.125);
}

.upload-text-message,
.wrong-pass-text-message {
    color: #000;
    font-family: 'Arial';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 400px;
}
