.modal__cnt {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(var(--SignalBlack-color), 0.95);
    z-index: 100;
    padding: 1rem;
    overflow-y: auto;
}

.modal__cnt--dark {
    background-color: var(--cl-drk-hg);
}

.modal {
    position: relative;
    color: rgb(var(--SignalWhite-color));
    font-size: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 50px auto;
}

.modal__cards {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.2rem;
}

.modal__cards--row {
    display: flex;
    flex-direction: row wrap;
    justify-content: center;
    gap: .6rem;
    margin-bottom: .6rem;
}

.modal__card {
    display: inline-block;
    width: auto;
    padding: calc(.6rem + 1vw);
    border: 1px solid var(--cl-clr-hg);
    border-radius: .5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
}

.modal__iframe {
    width: 90%;
    height: 30rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--cl-clr-md);
    padding: .6rem;
    border-radius: .6rem;
}

.modal__map {
    width: 100%;
    height: 100%;
    border-radius: .6rem;
}

.modal__text {
    font-size: calc(1rem + 2vw);
    margin: 1.5rem 0;
}