body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

body[logged=""] .logged-in,
body[logged=""] .logged-out,
body[logged="in"] .logged-out,
body[logged="out"] .logged-in {
    display: none !important;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
}

header nav .item {
    background-color: transparent;
    border-radius: 3px;
    padding: 0.8rem 1rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.logo {
    display: inline-block;
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 0.7rem;"
}

.action-call {
    border-radius: 3px;
    padding: 0.8rem 1rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: white;
    background-color: #6ac4e8;
    font-weight: bold;
}

.action-call:disabled {
    opacity: 30%;
}

.button {
    color: inherit;
    display: inline-block;
    background-color: transparent;
    border-radius: 3px;
    padding: 0.8rem 1rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.with-accent {
    color: white;
    background-color: #6ac4e8;
    font-weight: bold;
}

.section-features .feature {
    flex-grow: 1;
    flex-basis: 30%;
    max-width: 30%;
}
.section-features .feature h2 {
    color: #46aed7;
    font-weight: lighter;
    font-size: 1.7rem;
}

.section-features .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: stretch;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

#login {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display:flex;
    justify-content: center;
    align-items: center;

    /* hide: */
    width: 0;
    height: 0;
    overflow: hidden;
}

#login-overlay {
    background-color: rgba(0,0,0,0.0);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: background-color 0.2s ease;
}

#login-frame {
    position: relative;
    background-color: white;
    border-radius: 3px;
    padding: 24px;
    border: solid silver 1px;
    width: 300px;
    max-width: 90%;
    box-shadow: -8px -8px 16px rgb(0, 0, 0, 0.8);
    transition: all 0.8s ease 0.0s;
    margin-left: 0;
    margin-top: 0;
}

#login-frame .button {
    display: block;
}

#login.show {
    width: auto;
    height: auto;
}

#login.show #login-overlay {
    background-color: rgba(0,0,0,0.6);
}
#login.show #login-frame {
    box-shadow: 8px 8px 32px rgb(0, 0, 0, 0.8);
    /*margin-left: -8px;*/
    /*margin-top: -8px;*/
}

@media (max-width: 959px) {

    .section-features .inner {
        flex-direction: column;
    }

    .section-features .feature:before {
        content: "—";
        color: #46aed7;
    }

    .section-features .feature {
        max-width: 100%;
        width: 100%;
    }

    .logo span {
        display: none;
    }
}
