/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

.notice__container {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100vw;
    top: 0;
    text-align: center;
}

.notice {
    font-size: 15px;
    color: rgb(29,28,29);
    -webkit-animation: displayNotice 5s;
    animation: displayNotice 5s;
    padding: 10px;
    margin: 0;
    opacity: 0;
    width: 100vw;
}

.notice--successfully {
    background-color: rgb(255,199,199);
}

.notice--error {
    background-color: rgb(255,199,199);
}

@-webkit-keyframes displayNotice {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes displayNotice {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
