.model-card {
    border-radius: 20px;
    border: 1px solid #eeedf2;
    box-shadow: 0px 10px 8px lightgray;
    background-color: white;
    cursor: pointer;
}

.model-card-btn {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    font-size: 1.2rem;
    border: 1px solid #050248;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050248;
    cursor: pointer;
}

#show-filters {
    cursor: pointer;
}

.filter-banner {
    font-size: 1em;
    text-align: left;
    font-weight: bold;
    border-bottom: 1px solid lightblue;
    width: 100%;
    padding-bottom: 1em;
    display: flex;
    justify-content: space-between;
    color: #004fb2;
}

.modal-inner {
    transform: translateX(100%);
    background: white;
    /*height: 100svh;*/
    width: 85vw;
    transition: transform 0.2s;
    font-size: 3.5svh;
    max-width: 500px;
    position: relative;
    overflow: visible;
    color: #050248;
}

.modal-inner-right {
    transform: translateX(100%);
    background: white;
    height: 100svh;
    width: 100%;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2svh;
    font-size: 1em;
}

.modal-inner-right.open {
    transform: translateX(0);
}

.modal-inner-right.open .modal-inner-left {
    transform: translateX(-100%);
}

a:hover {
    text-decoration: none;
}