@charset "UTF-8";
/* /START DEV SETUP / */
body {
    /* font-family: 'Mulish', sans-serif; */
    margin: unset;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Mulish', sans-serif;
} */

.single-content p {
    margin-bottom: 0px;
}

h1 {
    font-size: 32px;
    line-height: 36px;
}

h2 {
    font-size: 30px;
}

h1,
h2 {
    font-weight: 700;
}

a {
    color: #5ea378;
}

::selection {
    color: #fff;
    background: #1c6b4e;
}

/* Alle styles für p tags zurücksetzen */
p {
    padding: unset;
    /* font-family: 'Mulish', sans-serif; */
}

thead th,
tr th {
    color: #555;
    font-weight: 700;
    padding: 9px 24px;
}

tr td {
    padding: 6px 10px !important;
    border-top: 1px solid #eee;
}

/* /END DEV SETUP / */
.shortcode__wrapper {
    margin: 0 auto;
    max-width: 1080px;
}

@media only screen and (max-width: 1150px) and (min-width: 1080px) {
    .shortcode__wrapper {
        padding: 0 2em;
    }
}
@media only screen and (max-width: 1080px) {
    .shortcode__wrapper {
        width: 80%;
        padding: unset;
    }
}
/* Buttons */
button:not(a > button) {
    padding: 10px 20px;
    color: #ffffff;
    border: 0;
    /* border-radius: 0.5em; */
    background: #6bc690;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.5s;
}

.button-primary {
    padding: 10px 20px;
    color: #ffffff;
    border: 0;
    border-radius: 0.5em;
    background: #6bc690;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.5s;
    width: unset;
}
.button-primary a {
    color: unset;
}

.full-width {
    width: 100%;
}

.button-primary:hover {
    background: #7adda1 !important;
    background-color: #7adda1 !important;
}

button:hover {
    background: #7adda1 !important;
    background-color: #7adda1 !important;
}

.btn-primary-fw :hover {
    background: #7adda1 !important;
    background-color: #7adda1 !important;
}

#content h1 {
    margin-bottom: 1em;
}

#content h1 {
    margin-bottom: 1em;
}

.btn-light {
    padding: 10px 20px;
    color: #5ea378;
    border: 0;
    border-radius: 0.5em;
    background-color: #edf8f1;
    font-size: 16px;
    cursor: pointer;
}

.btn-light:hover {
    background-color: #daf1e3;
}

.inactive,
.inactive:hover {
    cursor: unset;
    color: #cecece;
    background-color: #f0f0f0;
}

.btncenter {
    width: 100%;
    text-align: center;
}

.required {
    color: red;
}

/* /START GENERAL / */
.backend-wrapper {
    display: flex;
    max-width: 1300px;
    /* max-width: 900px; */
    margin: 40px auto 0 auto;
    padding: 0 2em 5em 0;
    justify-content: center;
    overflow-x: hidden;
}

#content {
    width: 100%;
    padding: 0 1em;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    line-height: 1.6em !important;
}

.container {
    width: 100% !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: white;
    -webkit-transition: all 3.5s ease-in-out;
    -moz-transition: all 3.5s ease-in-out;
    -ms-transition: all 3.5s ease-in-out;
    -o-transition: all 3.5s ease-in-out;
    transition: all 3.5s ease-in-out;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 1em;
    width: 100%;
}

.section {
    display: flex;
    width: 100%;
    padding-top: 2em;
    justify-content: space-between;
}

.section:first-child {
    padding: 0;
    padding-top: 0;
}

@media only screen and (max-width: 1150px) {
    .section-flex-start {
        align-items: flex-start;
    }
}
@media only screen and (min-width: 780px) and (max-width: 900px) {
    .section-flex-start {
        flex-direction: column;
    }
}

@media only screen and (max-width: 780px) {
    nav {
        /* background: red; */
        display: block !important;
    }
}
/* /Unter 600px volle Breite einnehmen/ */
@media only screen and (max-width: 600px) {
    #content {
        flex-direction: column;
        margin-left: 0;
    }
    .section {
        flex-direction: column;
        padding-top: 0em;
    }
    .backend-wrapper {
        padding: 0 1em 5em 1em;
    }
}

.preview-message {
    width: 100%;
    background: #f5f5f5;
    border-radius: 2em;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.preview__message__inner {
    max-width: 380px;
    width: 100%;
}

.preview-message a {
    background-color: #1d6b4e;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 0.5em;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.5s;
}

.preview__message__text h2 {
    font-size: 20px;
    padding-top: 1em;
    line-height: 30px;
    margin: unset;
    padding-bottom: unset;
}

.preview__message__text p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 2em;
}

.preview-message img {
    height: 125px;
}

.preview-message-small {
    min-height: 100px;
    height: 100px;
    width: 90%;
    max-width: 230px;
    background: #f5f5f5;
    border-radius: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1em;
}
.preview-message-small p {
    font-size: 16px;
    line-height: 24px;
}

/* Project Page footer z-index for mobile menu */
footer.et-l.et-l--footer {
    z-index: 0 !important;
    position: relative;
}
