.notification {
    position: fixed;
    padding: 50px;
    max-width: 400px;
    width: 100%;
    left: 10px;
    bottom: 10px;
    border-radius: 10px;
    z-index: 12;
    display: none;
    box-shadow: 4px 6px 17px rgba(0, 0, 0, .04);
    backdrop-filter: blur(9px);
        border: 1px #2196f333 solid;
    
}

.notification-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

/* .notification__icon {
    width: 63px;
    height: 63px;
    margin-bottom: 30px
} */

.notification__text {
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    color: #fff;
    margin: 20px 0 0 0;
}

.notification__close {
    position: absolute;
    top: 18px;
    right: 18px;
    cursor: pointer
}

#color_box {
    display: none;
}

.notification__close rect {
    fill: #ffffff00;
    width: 0;
    display: none;
}

.notification.error {
    backdrop-filter: blur(9px);
        border: 1px #2196f333 solid;
}


@media screen and (max-width:570px) {
    .notification {
        width: calc(100% - 20px);
        max-width: 100%
    }
}