.status {
    z-index: 1;
    position: fixed;
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 20px 20px 20px;
    left: 10px;
    bottom: 10px;
    border-radius: 15px;
    background-color: #FFF;
    box-shadow: 0 0 5px grey;
}

.status p {
    margin: 0 10px;
}

.status div {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    box-shadow: 0 0 0;
}

.status .close {
    text-align: right;
    padding: 10px 0 0 0;
}

.status .close button {
    border-radius: 25px;
    border: none;
    padding: 5px;
    background-color: #FFF;
}

.status .close button:hover {
    background-color: var(--hover-background);
    cursor: pointer;
}

.status .close span {
    padding: 2px;
}

.status p {
    text-align: center;
    color: #000;
}

@media screen and (max-width: 730px) {
    .status {
        left: 50%;
        transform: translateX(-50%);
        padding: 0 0 20px 0;
    }
}