﻿/* Reset */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    padding: 0;
    line-height: 1;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
.flex {
    display: flex;
}

/* General */
a {
    color: inherit;
    text-decoration: underline;
}
html {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    height: 100%;
    color: black;
    font-family: "Source Sans Pro",sans-serif;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    word-break: break-word;
}
.md-form {
    margin: 0;
}
#standard-landing-page {
    height: 100%;
    display: flex;
    flex-direction: column;
}
#standard-landing-page.editing {
    padding-right: 350px;
}
#standard-landing-page.editing [can-edit]:hover,
#standard-landing-page.editing [can-edit].editing {
    outline: 3px solid red;
}
img {
    height: auto;
    max-width: 100%;
}

/* Editor */
#editor {
    position: fixed;
    right: 0;
    width: 375px;
    height: 100%;
    padding: 15px;
    background-color: white;
    box-shadow: black -3px 0 20px;
}
#editor .buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
#editor .header {
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 2px solid;
    margin-bottom: 10px;
}
#editor .header.spaced {
    margin-top: 30px;
}
#editor .btn-floating {
    margin: 0 0 0 10px;
    text-align: center;
}
#editor .btn-floating i {
    width: auto;
}
.toolbar {
    display: block;
    border-radius: 3px;
    border: 1px solid #fff;
    margin-bottom: 10px;
}
.toolbar a {
    display: inline-block;
    height: 1.7em;
    border-radius: 3px;
    font-size: 11px;
    line-height: 1.7em;
    text-decoration: none;
    background: #e1e1e1;
    border: 1px solid #ddd;
    padding: 0 0.5em;
    margin: 1px 0;
}
.toolbar a.active {
    background: #222;
    color: white;
}
.toolbar .block {
    padding: 2px 3px;
    display: inline-block;
    background: #eee;
    border-radius: 3px;
    margin: 2px 2px 2px 0;
}
#htmlEditor {
    padding: 10px;
    margin: 10px 0;
    border: 2px solid darkgray;
    border-radius: 4px;
}

/* Header */
header {
    flex: auto;
    background-color: #383D4B;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
header.floating {
    padding-bottom: 100px;
}
@media only screen and (max-width: 760px) {
    header {
        background-position: top;
        background-size: contain;
    }
    header.floating {
        padding-bottom: 0;
    }
}
.dark-container {
    background-color: #383D4B;
    color: white;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 992px;
    padding: 0 25px;
    width: 90%;
}
.dark-container.top {
    padding-top: 65px;
}
.dark-container.top a:hover{
    text-decoration:underline;
}
.dark-container.bottom {
    padding-bottom: 45px;
    width:100%;
}
.dark-container.bottom p {
    margin: 0;
    padding-top: 65px;
    font-size: 12px;
    text-align: center;
}
@media only screen and (max-width: 760px) {
    .dark-container {
        width: 100%;
    }
    .dark-container.top {
        padding-top: 45px;
    }
}

/* Logo */
.logo {
    display: flex;
    width: 90%;
    margin: 0 auto;
    padding: 65px 0 45px;
}
@media only screen and (max-width: 760px) {
    .logo {
        width: 100%;
        padding: 75px 0 35px;
        justify-content: center;
    }
}
.logo img {
    max-height: 70px;
}

/* Titles */
h1 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
}
@media only screen and (max-width: 760px) {
    h1 {
        font-size: 35px;
    }
}
h2 {
    font-family: Georgia;
    font-size: 24px;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 55px;
    text-align: center;
}
@media only screen and (max-width: 760px) {
    h2 {
        font-size: 20px;
    }
}

/* Steps */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.steps .step {
    flex: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 15px 44px;
    max-width: 275px;
    text-align: center;
}
.steps span {
    align-items: center;
    border-radius: 50%;
    border: 3px solid #A1AAB4;
    color: #A1AAB4;
    display: flex;
    font-size: 38px;
    height: 68px;
    justify-content: center;
    width: 68px;
}
.steps p {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 30px;
}

/* Actions */
.action-group,.actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
.actions .action {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: auto;
    margin: 10px 8px;
    width: 250px;
    min-height: 80px;
    background-color: #007DBC;
    border-radius: 14px;
    border: 0;
    color: white;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    padding: 14px 20px;
    text-decoration: none;
}

.child-actions .action span {
    display:flex;
    align-items: center;
}

@media only screen and (max-width: 760px) {
    .actions .action {
        width: 100%;
        margin: 10px 8px;
    }
}
.actions .action img {
    width: 75px;
    margin-bottom: 10px;
}
.actions-back {
    padding-left: 50px;
    font-style: italic;
}
.actions-back i {
    margin-right: 5px;
}
@media only screen and (max-width: 760px) {
    .actions-back {
        padding-left: 0;
        margin-bottom: 25px;
        text-align: center;
    }
}

/* Tooltip */
.tooltips {
    padding-top: 25px;
    margin: 0 auto;
    max-width: 992px;
    width: 90%;
    background-color: #383D4B;
    color: white;
    text-align: center;
}
@media only screen and (max-width: 760px) {
    .tooltips {
        width: 100%;
    }
}
.tooltips.top {
    margin-bottom: 20px;
}
.tooltips a.link,
.tooltips a.link:hover {
    font-size: 15px;
    font-style: italic;
    text-decoration: underline;
}
.tooltips a.link i {
    margin-right: 10px;
}
.arrow-area {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.arrow-up {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid white;
}
.tooltips .tooltip-area {
    padding: 25px;
    background-color: white;
    color: black;
}
.tooltips .tooltip-area .text {
    margin: 0 auto;
    max-width: 730px;
    padding: 0 50px;
    width: 90%;
    text-align: left;
    font-size: 13px;
}
@media only screen and (max-width: 760px) {
    .tooltips .tooltip-area .text {
        padding: 0;
    }
}
.tooltips .tooltip-area .text p:last-child {
    margin-bottom: 0;
}

/* Additional Information */
.add-info {
    margin: 0 auto;
    max-width: 730px;
    padding: 50px 0;
    width: 90%;
}
.add-info h2 {
    color: #383D4B;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
}
@media only screen and (max-width: 760px) {
    .add-info h2 {
        font-size: 30px;
    }
}
.add-info .dropdowns {
    margin-top: 45px;
}
.dropdown button {
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    border: 0;
    border-top: 1px solid #676F7C;
    color: #383D4B;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    padding: 14px 20px;
    text-align: left;
    width: 100%;
}
@media only screen and (max-width: 760px) {
    .dropdown button {
        font-size: 22px;
    }
}
.dropdown button i {
    color: #007DBC;
}
.dropdown.open button {
    background-color: #E9EDF2;
    border-top: 0;
}
.dropdown .info {
    display: none;
    font-size: 14px;
    line-height: 1.6;
    padding: 50px 78px 50px 20px;
}
@media only screen and (max-width: 760px) {
    .dropdown .info {
        padding: 30px 20px;
    }
}
.dropdown.open .info {
    display: block;
}

/* Footer */
footer {
    background-color: #383D4B;
    color: #A1AAB4;
    padding: 45px 0 !important;
}
@media only screen and (max-width: 760px) {
    footer {
        padding: 35px 0;
        border-top: 1px solid white;
    }
}
footer .container {
    align-items: center;
    display: flex;
    margin: 0 auto;
    max-width: 636px;
    width: 90%;
}
footer .container > div {
    width: 100%;
}
@media only screen and (max-width: 760px) {
    footer .container {
        flex-direction: column;
        text-align: center;
    }
}
footer img {
    max-width: 145px;
    margin-right: 25px;
}
@media only screen and (max-width: 760px) {
    footer img {
        margin-right: 0;
    }
}
footer p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
}
@media only screen and (max-width: 760px) {
    footer p {
        margin-top: 20px;
    }
}
footer a {
    color: #A1AAB4;
}

div.info-section {
    border: solid 1px;
    border-radius: 8px;
    padding: 5px 5px 5px 5px;
    margin-bottom: 3px;
}