.info-container {
    display: flex;
    background-color: #bb133c;
    color: rgba(255,255,255, 0.9);
    position: fixed;
    top: 10%;
    right: -1000px;
    padding: 12px;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    z-index: 30000;
    border-radius: 12px;
    transition: right 0.5s ease;
}

.info-container.show {
    right: 10px;
}

.info-container p {
    font-size: 1.25rem;
    margin: 0;
}

.info-container span {
    cursor: pointer;
    font-size: 1.5rem;
}

.error-label {
    color: #e81d4f!important;
}

.notification-link {
    text-decoration: none;
    color: rgba(255,255,255, 0.9);
    border-bottom: 1px solid rgba(255,255,255, 0.9);
}

.notification-link:hover {
    color: white;
    border-bottom: 1px solid white;
    transition: 0.4s;
}

@media screen and (max-width: 500px) {
    .info-container {
        min-width: 290px;
        width: 95%;
        column-gap: 10px;
    }

    .info-container p {
        font-size: 1.125rem;
    }
}