.info_container {
    display: none;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;
    position: fixed;
    z-index: 999;
}

.info_container.active {
    display: flex;
}

.info_container.success {
    background-color: greenyellow;
}

.info_container.error {
    background-color: red;
}

.info_content {
    display: flex;
    align-items: center;
    color: white;
    font-size: 17px;
}

.info_content img {
    margin-right: 10px;
}