/* 1. Base */
:root {
    --primary-background: rgba(93, 138, 166, 1.0);
    --primary-background-light: rgba(93, 138, 166, 0.25);
    --brand: #036474;
}

/* 2. Shared */

.wallpaper {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

/* 3. Specific */
.page-container {
    display: none;
}

.page-container.is-active {
    display: block;
}

.info-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: darkgrey;
}

.info-header {
    display: flex;
    padding: 1.0em 0.5em 0.5em 0.5em;
    align-items: center;
    justify-content: center;
}

.info-header:hover {
    background-color: lightgray;
}

.info-header-label {
    flex-grow: 1;
    font-weight: bold;
}

.info-header-icon {
    flex-grow: 0;
    display: block;
}

.info-header-icon.is-hidden {
    display: none;
}

.info-content {
    padding: 0.5em 0.5em 1.0em 0.5em;
    display: none;
}

.info-content.is-active {
    display: block;
}

.info-image-container {
    display: none;
    /* background-color: lightgray; */


}

.info-image-wrapper {
    position: relative;
    width: 325px;
    height: 705px;
    z-index: 20;
    overflow: hidden;
}

.info-image {
    position: absolute;
    /*top: -0.5vw;
    left: -0.5vw;*/
    width: 325px;
    height: 705px;
}

.rectangular {
    -webkit-clip-path: inset(30px 10px 30px 10px);
    clip-path: inset(50px 5px 30px 5px);
}

.ellipse {
    -webkit-clip-path: inset(30px 10px 30px 10px);
    clip-path: ellipse(5px 5px at 5% 95%);
}


.fixed-image {
    object-fit: scale-down;
    object-position: center;
    max-width: 240px;
}

.footer-elem {
    height: 24px;
}

.info-image-container.is-active {
    display: block;
}


.brand-image {
    margin: 1em;
    border-radius: 5px;
    border-color: white;
    border-width: 2px;
}

.has-border {
    margin: 1em;
    border-radius: 10%;
    border-color: white;
    border-width: 5%;
}

div.card-content {
    background: var(--primary-background-light);
}

nav.navbar {
    background: var(--primary-background-light);
}

.wallpaper {
    background-image: url("../img/austria.jpg");
    background-position: center;
    background-size: cover;
    opacity: 0.2;
    position: fixed;
}

.fa-check-square {
    color: green;
    opacity: 0.8;
}

.fixedsize {
    max-width: 180px;
    max-height: 320px;
}

img.align-self {
    align-self: center;
}

.image.appstore {
    max-width: 200;
    max-height: 432;
}

.brand-name {
    text-transform: uppercase;
    color: var(--brand);
    font-family: monospace;
}

.app-header {
    border-bottom: solid;
    border-bottom-width: 2px;
    border-color: var(--brand);
    /* border-right: solid; */
    /* border-right-width: 2px; */
}

a.feature {
    text-decoration: none;
}

a.feature:link {
    color: var(--brand);
    border-bottom: 1px solid var(--brand);
}

a.feature:visited {
    color: var(--brand);
    border-bottom: 1px solid var(--brand);
}

a.feature:hover {
    color: #2d8653;
    border-bottom: 1px solid #000099;
}

.foo {
    max-width: 480px;
}
@media screen and (max-width: 767) {
    .foo {
      max-width: 120px !important;
    }
  }

  