.content-area .application-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 240px;
    height: 240px;
    margin: 15px;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 20px rgba(142,156,170,0.2);
}

.application-card > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: var(--sub-white);
    border-radius: 0.5rem 0.5rem 0 0;
    width: 100%;
    height: 180px;
}

.application-card > a > .image {
    max-width: 140px;
    max-height: 140px;
}

.application-card > .bottom-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    
    width: inherit;
    height: 60px;

    padding: 0 15px;
}

.application-card > .bottom-bar.no-sub {
    justify-content: flex-start !important;
    padding-top: 10px;
}

.application-card > .bottom-bar > a > .title,
.guide-card > a > .title {
    font-size: 1.25rem;
    max-width: 210px;
    
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.application-card > .bottom-bar > a > .settings {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.application-card > .bottom-bar > a > .settings > .title {
    font-size: 0.9rem;
    margin-left: 5px;
    margin-top: -0.1rem; /* visual center */
}

.application-card > .bottom-bar > a > .settings > .icon {
    width: 0.9rem;
    height: 0.9rem;
}

.content-area-app .card-container .guide-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 240px;
    height: 120px;
    margin: 15px;
    background-color: white;
    border-radius: 0.25rem;
    box-shadow: 0 2px 20px rgba(142,156,170,0.2);
}

.guide-card > a > .title {
    font-size: 1.25rem !important;
    padding: 0 15px;
    margin: 7px 0 0 0;
    max-width: 240px !important;
}

.guide-card > a > .title.create {
    padding-top: 5px;
}

.guide-card > .link > .bg > .image {
    background-color: var(--sub-white);
    max-height: 75px;
    object-fit: cover;

    border-radius: 0.25rem 0.25rem 0 0;
}

.guide-card > .link > .bg > .icon {
    background-color: var(--sub-white);
    max-height: 50px;

    border-radius: 0.25rem 0.25rem 0 0;
}

.guide-card > a > .bg {
    background: var(--sub-white);
    border-radius: 0.25rem 0.25rem 0 0;
    width: 240px;
    height: 75px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;

    width: 100%;
    min-width: 425px;
    max-width: 960px;
    margin: 15px;

    background: var(--sub-white);
    border-radius: 0.25rem;
    box-shadow: 0 2px 20px rgba(142,156,170,0.2);
}

.content-card.large {
    max-width: 100% !important;
    width: 100% !important;
}

.selection-card {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;

    width: calc(30vw);
    min-width: 400px;
    min-height: 300px;
    padding: 45px;

    background: white;
    border-radius: 0.25rem;
    box-shadow: 0 2px 20px rgba(142,156,170,0.2);
}

.settings-card-large,
.guide-card-large,
.place-card-large {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;

    width: calc(100% - 17px) !important;
    max-width: 915px;
    min-width: 400px;
    min-height: 200px;

    background: white;
    border-radius: 0.25rem;
    box-shadow: 0 2px 20px rgba(142,156,170,0.2);
}

.settings-card-large.with-left-bar,
.guide-card-large.with-left-bar,
.place-card-large.with-left-bar {
    max-width: 1000px !important;
}

.place-card-large.with-left-bar.with-preview {
    max-width: 605px !important
}

.preview-card {
    margin: 15px;
}

.preview {
    background: white;
    border:none;
    width: 100%;
    min-height: 500px;
    height: 542px;
    box-shadow: 0 2px 20px rgba(142,156,170,0.2);
}