﻿.warning-box {
    background-color: #FDB4B4;
    height: 3rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem 0 1rem;
}

.close-warning-box-button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.close-warning-box-button::after {
    content: "\00D7";
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    position: absolute;
}
