
/* on dauer not yet needed */
.clearRange {
    display: flex;
    width: 10rem;
    font-size: 80%;
    font-weight: 600;
    cursor: pointer;
    background-color: brown;
    color: white;
    border-radius: 20%;
}

/* ######################## Start Modal */
.modal {
    /* The Modal (background) */
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 99999;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.modal-content {
    /* Modal Content */
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
    border-radius: 1rem;
}

.close {
    /* The Close Button */
    color: black;
    padding: 10px;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.flexrow {
    width: 100%;
    display: flex;
    flex-direction: row;
}

@media (min-width: 1600px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1550px;
    }      }
@media (min-width: 1800px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1750px;
    }      }
@media (min-width: 2000px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1950px;
    }      }
@media (min-width: 2200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 2150px;
    }      }

/* ######################## End Modal */
