#alertPlaceHolder {
    position: absolute;
    top: 6%;
    left: 72%;
    width: 25vw;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.alertBox {
    position: relative;
    /* min-width: 18%; */
    display: flex;
    justify-content: space-between;
    padding: 0.125rem 1.5rem;
    border: 1px solid grey;
    background-color: #fff;
}

#closeAlert {
    color: #000;
}

.alertTitle {
    margin: 0;
}

.alertBody {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    #alertPlaceHolder {
        width: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
}