body {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    margin: 0;
}

.medium {
    font-weight: 500;
}

.semibold {
    font-weight: 600;
}

h1 {
    font-size: 24px;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

@media screen and (max-width: 767px) {
    .m-flex-col {
        flex-direction: column;
    }

    .half {
        width: 100% !important;    
    }
    
    header h1 {
        display: none;
    }

    .m-no-flex-grow {
        flex-grow: 0 !important;
    }
    .m-flex-grow {
        flex-grow: 1 !important;
    }
    
    header > form > input {
        width: 90%;
    }

    iframe {
        min-width: 350px !important;
        width: 350px !important;
    }

    .m-hide {
        display: none;
    }

    .m-only {
        display: flex !important;
    }
}

.m-only {
    display: none;
}

.j-center {
    justify-content: center;
}

.j-end {
    justify-content: flex-end;
}

.j-between {
    justify-content: space-between;
}

.j-around {
    justify-content: space-around;
}

.i-center {
    align-items: center;
}

header {
    column-gap: 16px;
    padding: 16px 32px;
}

header > form > input {
    height: 20px;
    padding: 8px;
    border-radius: 8px;
}

#content {
    height: calc(100vh - 92.16px);
}

.half {
    width: 50%;
}

.cg-2 {
    column-gap: 1rem;
}

.cg-1 {
    column-gap: 0.5rem;
}

.tag {
    background-color: #DD1F40;
    color: white;
    border-radius: 8px;
    padding: 8px;
}

.rg-1 {
    row-gap: 0.5rem;
}

.rg-2 {
    row-gap: 1rem;
}

.box {
    /* background-color: lightgrey; */
    border-radius: 12px;
    border: 2px solid lightgrey;
    padding: 16px;
}

.walk-box {
    border-radius: 12px;
    border: 2px solid lightgrey;
    padding: 0 16px;
}

.flex-grow {
    flex-grow: 1;
}

header > a {
    color: black;
    text-decoration: none;
}

.fa-walk {
    height: 24px;
    width: 24px;
}

.fa-arrow {
    height: 16px;
    width: 16px;
}

#search-title {
    margin: 0;
    text-align: center;
}

iframe {
    min-width: 800px;
    width: 25vw;
    height: 400px;
}

.mn-selected {
    color: #DD1F40;
}