* {
    padding: 0;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 13pt;
}

html {
    height: 100%;
}

body {
    display: grid;
    grid-template-rows: 80px auto;
    height: 100%;
}

/* --- START Allgemein --- */
h1 {
    font-size: 18pt;
}

h3 {
    font-size: 16pt;
    color: #4E8C5D;
    text-decoration: underline;
    font-weight: bold;
    padding: 10px 0px;
}

hr {
    margin: 5px 0;
}

.hidden {
    opacity: 0;
    height: 0;
    display: none !important;
}

/* > Buttons */
.button_save {
    background-color: rgba(88, 147, 102, 0.8);
}

.button_cancel {
    background-color: rgb(189 86 86 / 80%);
}

.button {
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in;
    padding: 5px 5px 5px 0px;
    cursor: pointer;
}

.button i {
    padding: 0 5px;
}

.btnRow {
    padding: 8px 0px 8px 8px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #929191;
    margin-bottom: 10px;
}

.btnRow img {
    padding: 0 5px;
}

/* User Message */
#userMessageBox {
    padding: 10px;
    border-radius: 10px;
    display: none;
    grid-template-columns: 32px auto;
    margin: 20px;
    opacity: 0;
    transition: all 0.2s ease-in;
    height: 0px;
}

#userMessageBox.visible {
    opacity: 1;
    height: auto;
    display: grid;
}

#userMessageBox.error {
    background-color: rgb(189 86 86 / 80%);
}

#userMessageBox.info {
    background-color: #dfe150;
}

#userMessageBox.success {
    background-color: #589366;
}

/* > Inputs / Textareas / Selects / Iframes */
input {
    padding: 3px;
    border-radius: 3px;
    width: 300px;
}

input[type="checkbox"] {
    width: 32px;
    height: 16px;
}

input.error {
    border: 1px solid #ff0000;
}

/* TODO Datei auswählen übersetzen */
/* #receiverEditCsvImport {
    visibility: hidden;
} */

select {
    padding: 4px;
    border-radius: 3px;
    width: 300px;
}

textarea {
    padding: 4px;
    border-radius: 3px;
}

iframe {
    width: 100%;
    height: 200px;
    border-radius: 3px;
}

/* > Labelgruppen */
.labelgroup {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px 0px;
    flex-wrap: wrap;
}

.labelgroup#clt_edit_clientlogo button {
    display: block;
    font-family: sans-serif;
    width:144px;
    height:27px; 
    /*border: 1px solid #8A8A8A;*/ 
    border-radius: 3px; 
    margin-bottom: 70px;
    margin-left: 44px;
    cursor: pointer;
}
.labelgroup#clt_edit_clientlogo button:active {
    border-style: inset;

}

.labelgroup label {
    width: 250px;
}

.labelgroup .multicontent {
    display: flex;
    flex-direction: column;
}

.labelgroup .multicontent input {
    margin: 5px 0px;
}

.labelgroup .multicontent input:first-child {
    margin-left: 0px;
}

.lab-inp-csv {
    display: block;
    font-family: sans-serif;
    width:142px;
    height:20px; 
    border: 1px solid #8A8A8A;
    background-color: #EFEFEF;
    text-align: center;
    border-radius: 3px; 
    cursor: pointer;
}

@media (min-width: 1400px) {
    .labelgroup .multicontent {
        flex-direction: row;
    }
    .labelgroup .multicontent input {
        margin: 5px;
    }
}

/* > Tabellenansicht */
.tablecontent {
    overflow-x: auto;
    white-space: nowrap;
    margin: 10px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

thead tr th:first-child,
tbody tr td:first-child {
    width: 32px;
    min-width: 32px;
    max-width: 32px;
}

.permissionTable thead tr th:first-child,
.permissionTable tbody tr td:first-child {
    width: unset;
    min-width: unset;
    max-width: unset;
}

table th,
table td {
    border: 1px solid lightgray;
    padding: 5px;
}

table th {
    border-bottom: 3px solid lightgray;
    background-color: #8dbf99;
}

table tr:nth-child(even) {
    background-color: #F3F3F3;
}

.tabform {
    margin: 0px 10px;
}

.tabform .tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}
  
.tabform .tab button {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    border-radius: 0 !important;
}
  
.tabform .tab button:hover {
    background-color: #ddd;
}
  
.tabform .tab button.active {
    background-color: #589366;
}

.tabform .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.tabform .tabcontent {
    animation: fadeEffect 0.7s;
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* > Headrow */
.headrow {
    display: flex;
    align-items: center;
    margin: 10px 1%;
    flex-wrap: wrap;
}

.headrow label {
    font-size: 17pt;
    width: 19%;
}

.headrow input {
    margin-left: 0px;
    font-size: 17pt;
    width: 79%;
}

@media (max-width: 1150px) {
    .headrow label {
        width: 100%;
    }
    
    .headrow input {
        width: 100%;
    }
}

/* > Footer/Infofield */
.infofield {
    bottom: 0;
}

.infofield .outerSpan {
    display: grid;
    grid-template-columns: auto auto auto auto;
    padding: 15px;
    color: #a6a6a6;
    width: 100%;
}

/* > Modal Form */
.popupModal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.popupModal .modal-menu {
    background-color: #589366;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 5px 5px 0px 0px;
}

.popupModal .modal-body {
    padding: 20px;
}

.popupModal .modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.popupModal .modal-footer button {
    margin-left: 5px;
}

.popupModal .modal-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    border-radius: 10px;
}
  
.popupModal .close {
    color: #fefefe;
    font-size: 28px;
    font-weight: bold;
    padding-right: 20px;
}
  
.popupModal .close:hover,
.popupModal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* --- END Allgemein --- */

/* --- START Hauptmenü --- */

section#mainmenu {
    width: 100%;
    border-bottom: 1px solid #303030;
    display: flex;
    flex-direction: row;
    justify-content: space-between;    
    align-items: center;
}

section#mainmenu div#mainmenu_user {
    margin-right: 50px;
    display: flex;
    align-items: center;
}

section#mainmenu div#mainmenu_user #usermeImg {
    margin-right: 10px;
}

section#mainmenu div#mainmenu_user i {
    margin-left: 5px;
}

section#mainmenu img {
    margin-left: 50px;
}

section#mainmenu .languageImg,
section#mainmenu .languageImg {
    margin-left: 4px;
}

section#mainmenu div#mainmenu_user span#mainmenu_username,
section#mainmenu div#mainmenu_user i,
section#mainmenu div#mainmenu_user li {
    cursor: pointer;
}

section#mainmenu div#mainmenu_user nav#mainmenu_usermenu {
    background-color: #f9f9f9;
    position: absolute;
    padding: 10px;
    right: 2%;
    border: 1px solid #000000;
    border-radius: 0px 0px 10px 10px;
    top: 79px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    min-width: 160px;
    z-index: 9999;
    display: none;
}

section#mainmenu div#mainmenu_user nav#mainmenu_usermenu ul {
    list-style: none;
    white-space: nowrap;
}

/* --- END Hauptmenü --- */

/* --- START Body --- */

div.flexbody {
    display: grid;
    grid-template-columns: 125px auto;
}

div.flexbody div.sidemenu {
    background-color: #303030;
    color: #f9f9f9;
}

.bodycontent {
    overflow-x: auto;
}

/* --- END Body --- */

/* --- START Sidemenu --- */

section#sidemenu .sidemenu_group {
    border-bottom: 1px solid grey;
    display: flex;
}

section#sidemenu .sidemenu_group.active {
    border-right: 6px solid #518E61;
}

section#sidemenu .sidemenu_group a {
    text-decoration: none;
    color: #fefefe;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 3px;
}

section#sidemenu .sidemenu_group a span {
    text-align: center;
}

section#sidemenu .sidemenu_group a img {
    width: 50%;
}

section#sidemenu .sidemenu_group.footer {
    bottom: 0;
    position: absolute;
    flex-direction: column;
    font-size: 12pt;
    width: 125px;
}

section#sidemenu .sidemenu_group.footer a span {
    font-size: 10pt;
}

/* --- END Sidemenu --- */

/* --- START Kampagnen --- */

    /* > E-Mail Tab */
    section#campaigns #tabEMail button {
        width: 300px;
    }

    section#campaigns #tabEMail button i {
        float: left;
        padding-left: 5px;
        padding-top: 3px;
    }

    section#campaigns #tabEMail .labelgroup.fullwidth {
        display: grid;
    }

    section#campaigns #tabEMail .labelgroup.fullwidth input {
        width: unset;
    }

    section#campaigns #tabEMail textarea {
        resize: vertical;
        font-family: consolas;
    }

    section#campaigns #tabEMail iframe {
        resize: vertical;
        border: 1px solid rgb(118, 118, 118);
    }

    section#campaigns div#camModalChooseAd .modal-body {
        height: 500px;
        width: 750px;
        overflow-y: auto;
    }

    section#campaigns div#camModalChooseAd ul {
        list-style: none;
    }

    section#campaigns div#camModalChooseAd ul li ul {
        margin-left: 20px;
    }

    section#campaigns div#camModalChooseAd div#camModalErrorBody {
        margin: 10px;
        padding: 10px;
        background-color: rgb(189 86 86 / 80%);
        border-radius: 10px;
        max-height: 150px;
        overflow-y: auto;
    }

    section#campaigns #cam_edit_mailError {
        padding: 10px;
        border-radius: 10px;
        grid-template-columns: 32px auto;
        background-color: rgb(189 86 86 / 80%);
        display: none;
    }

    section#campaigns .placeholder {
        text-decoration: underline;
        color: rgb(0, 0, 255);
        cursor: pointer;
    }

    section#campaigns #camModalErrorBodyAddUser {
        display: none; 
        background-color: rgb(189 86 86 / 80%); 
        padding: 10px; 
        border-radius: 10px; 
        grid-template-columns: 32px auto; 
        margin: 20px;
    }
    
    section#campaigns .receiverEditContent .dropdown:hover .dropdown-content {
        display: block;
    }

    section#campaigns .receiverEditContent .tablecontent table tbody tr:hover {
        background-color: #c5e3cd;
        cursor: pointer;
    }

    @media (min-width: 768px) {
        section#campaigns #tabEMail .labelgroup.fullwidth {
            grid-template-columns: 250px auto;
    }
}

/* --- END Kampagnen --- */

/* --- START Templates --- */

    /* > E-Mail Tab */
    section#template #tabEMail button {
        width: 300px;
    }

    section#template #tabEMail button i {
        float: left;
        padding-left: 5px;
        padding-top: 3px;
    }

    section#template #tabEMail .labelgroup.fullwidth {
        display: grid;
    }

    section#template #tabEMail .labelgroup.fullwidth input {
        width: unset;
    }

    section#template #tabEMail textarea {
        resize: vertical;
        font-family: none;
    }

    section#template #tabEMail iframe {
        resize: vertical;
        border: 1px solid rgb(118, 118, 118);
    }

    @media (min-width: 768px) {
        section#template #tabEMail .labelgroup.fullwidth {
            grid-template-columns: 250px auto;
        }
    }

/* --- END Templates --- */

/* --- START Mandant --- */

#client_addUserModal_error {
    padding: 10px;
    border-radius: 10px;
    grid-template-columns: 32px auto;
    margin: 20px;
}

#client_addUserModal_error.error {
    background-color: rgb(189 86 86 / 80%);
}

/* --- END Mandant --- */

/* --- START Receiver Edit --- */

section#campaigns .receiverEditContent {
    margin: 0px 10px;
}

section#campaigns .newReceiverForm {
    display: grid;
    grid-template-columns: repeat(1, 100%);
}

section#campaigns .receiverEditContent table {
    border-collapse: collapse;
    width: 100%;
    margin: 5px 0;
}

section#campaigns .receiverEditContent table th {
    margin: 0 10px
}

section#campaigns .receiverEditContent table th,
section#campaigns .receiverEditContent table td {
    border: 1px solid lightgray;
    padding: 5px;
}

section#campaigns .receiverEditContent table th {
    border-bottom: 3px solid lightgray;
}

section#campaigns .receiverEditContent table tr:nth-child(even) {
    background-color: #F9F9F9;
}

@media (min-width: 768px) {
    section#campaigns .newReceiverForm {
        display: grid;
    }
}

/* --- END Receiver Edit --- */

/* --- START Index --- */

section#indexform {
    width: 100%;
    margin: 25px;
    display: flex;
    flex-direction: column;
}

/* --- END Index --- */

/* --- START Loginform --- */

section#loginform {
    border-radius: 8px;
    /*margin-left: 25%;
    margin-right: 25%;
    margin-top: 20vh;*/
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section#loginform .loginform_inner {
    border: 1px solid #dadada;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

section#loginform h1 {
    text-align: center;
    margin: 20px 0;
}

section#loginform img {
    margin: auto;
}

section#loginform form span#login_messagebox {
    opacity: 0;
    height: 0px;
    display: none;
}

section#loginform form span#login_messagebox.visible {
    opacity: 1;
    height: 62.22px;
    transition: all 0.2s ease-in;
    display: block;
}

section#loginform form div.input_container {
    display: flex;
    margin: 10px 0;
}

section#loginform form div.input_container.message {
    margin: 10px 0;
}

section#loginform form div.input_container .icon {
    padding: 10px;
    text-align: center;
    background-color: #4E8C5D;
    color: #fefefe;
    width: 20px;
    border-radius: 8px 0px 0px 8px;
}

section#loginform form div.input_container.message .icon {
    background-color: #e0dd18;
}

section#loginform form div.input_container .icon.inside {
    background-color: rgba(0,0,0,0);
    color: #dadada;
    width: 20px;
    border-radius: 0px;
    margin-left: -36px;
    cursor: pointer;
}

section#loginform form div.input_container .icon.inside:hover {
    color: #4E8C5D;
}

section#loginform form div.input_container input {
    width: 100%;
    border-radius: 0px 8px 8px 0px;
    border: 1px solid #dadada;
    outline: none;
    transition: all 0.2s ease-in;
}

section#loginform form div.input_container input:focus {
    border-color: #4E8C5D;
}

section#loginform form input[type="text"], 
section#loginform form input[type="password"] {
    text-align: center;
}

section#loginform form input[type="checkbox"] {
    margin-left: 20%;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    vertical-align: sub;
}

section#loginform form input[type="button"] {
    background-color: #4E8C5D;
    color: #fefefe;
    height: 34px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #dadada;
    cursor: pointer;
    transition: all 0.2s ease-in;
    width: 100%;
}

section#loginform form input[type="button"]:hover {
    background-color: #86ad1e;
}

section#loginform div#links {
    text-align: center;
}

section#loginform div#links a {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    color: #4E8C5D;
    transition: all 0.2s ease-in;
}

section#loginform div#links a:hover {
    color: #86ad1e;
}

@media only screen and (min-width: 2050px) {
    section#loginform h1 {
        font-size: 22pt;
    }
    section#loginform form input[type="text"], 
    section#loginform form input[type="password"] {
        font-size: 14pt;
        height: 40px;
    }
    section#loginform form div.input_container .icon {
        padding: 10px;
        padding-top: 15px;
        width: 50px;
    }
    section#loginform form input[type="checkbox"] {
        width: 30px;
        height: 30px;
    }
    section#loginform form label {
        font-size: 14pt;
    }
    section#loginform form input[type="button"] {
        height: 40px;
        font-size: 14pt;
        width: 100%;
    }
    section#loginform div#links a {
        font-size: 14pt;
    }
}

@media only screen and (max-width: 450px) {
    section#loginform form div.input_container {
        margin: 10px 0;
    }
    section#loginform form input[type="checkbox"] {
        margin-left: 5%;
    }
}

/* --- END Loginform --- */

/* --- START Registerform --- */

section#registerform {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section#registerform .registerform_inner {
    border: 1px solid #dadada;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    display: flex;
    flex-direction: column;
}

section#registerform .registerform_inner img {
    margin: auto;
}

section#registerform h1 {
    text-align: center;
    margin: 20px 0;
}

section#registerform .registerform_inner .formgroup,
section#registerform .registerform_inner .groupRow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section#registerform .registerform_sections div#register_part2,
section#registerform .registerform_sections div#register_part3,
section#registerform .registerform_sections div#register_part4 {
    display: none;
}

section#registerform div#register_billingAddress {
    opacity: 0;
    height: 0;
    display: none;
}

section#registerform div#register_billingAddress.visible {
    opacity: 1;
    height: auto;
    transition: all 0.2s ease-in;
    display: flex;
}

/* --- END Registerform --- */

/* --- START MailServerSettings --- */

div#mss_add_form {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

div#mss_add_form input {
    width: 50%;
    margin: 5px 0;
    height: 30px;
}

@media (max-width: 600px) {
    section#mailserversettings table, 
    section#mailserversettings thead, 
    section#mailserversettings tbody, 
    section#mailserversettings th, 
    section#mailserversettings td, 
    section#mailserversettings tr {
        display: block;
    }

    section#mailserversettings thead tr {
        display: none;
    }

    section#mailserversettings tr {
        margin: 0 0 1rem 0;
    }

    section#mailserversettings tr:nth-child(odd) {
        background: #F3F3F3;
    }

    section#mailserversettings td {
        border: none;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
    }

    section#mailserversettings td:before {
        white-space: nowrap;
    }

    section#mailserversettings td:nth-of-type(1):before { content: "Auswahl"; }
    section#mailserversettings td:nth-of-type(2):before { content: "Name"; }
    section#mailserversettings td:nth-of-type(3):before { content: "Host"; }
    section#mailserversettings td:nth-of-type(4):before { content: "Benutzername"; }
    section#mailserversettings td:nth-of-type(5):before { content: "Passwort"; }
    section#mailserversettings td:nth-of-type(6):before { content: "Kommentar"; }
}

/* --- END MailServerSettings --- */

/* --- START Adressbuch --- */
section#adressbook .ab_new_abentry {
    display: grid;
    grid-template-columns: repeat(1, 100%);
}

@media (min-width: 768px) {
    section#adressbook .ab_new_abentry {
        display: grid;
        grid-template-columns: repeat(2, 50%);
    }
}
/* --- END Adressbuch --- */

/* --- START Aktivierung komplett --- */

section#activation_complete {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section#activation_complete .register_complete_inner {
    border: 1px solid #dadada;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    display: flex;
    flex-direction: column;
}

section#activation_complete .register_complete_inner img {
    margin: auto;
}

section#activation_complete h1 {
    text-align: center;
    margin: 20px 0;
}

section#activation_complete div#links {
    text-align: center;
}

section#activation_complete div#links a {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    color: #4E8C5D;
    transition: all 0.2s ease-in;
}

section#activation_complete div#links a:hover {
    color: #86ad1e;
}

/* --- END Aktivierung komplett --- */

/* --- START Passwort vergessen --- */

section#password_lost {
    border: 1px solid #dadada;
    border-radius: 8px;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 20vh;
    display: flex;
    flex-direction: column;
}

section#password_lost h1 {
    text-align: center;
    margin: 20px 0;
}

section#password_lost img {
    margin: auto;
}

section#password_lost form {
    display: flex;
    flex-direction: column;
}

section#password_lost div#pwlost_part1 {
    display: flex;
    flex-direction: column;
}

section#password_lost div#pwlost_part2 {
    display: none;
    flex-direction: column;
}

section#password_lost div#pwlost_part2 p {
    text-align: center;
}

section#password_lost form span#password_lost_messagebox {
    opacity: 0;
    height: 0px;
    display: none;
}

section#password_lost form span#password_lost_messagebox.visible {
    opacity: 1;
    height: 62.22px;
    transition: all 0.2s ease-in;
    display: block;
}

section#password_lost form div.input_container {
    display: flex;
    margin: 10px 20%;
}

section#password_lost form div.input_container.message {
    margin: 10px 10%;
}

section#password_lost form div.input_container .icon {
    padding: 10px;
    text-align: center;
    background-color: #4E8C5D;
    color: #fefefe;
    width: 20px;
    border-radius: 8px 0px 0px 8px;
}

section#password_lost form div.input_container.message .icon {
    background-color: #e0dd18;
}

section#password_lost form div.input_container .icon.inside {
    background-color: rgba(0,0,0,0);
    color: #dadada;
    width: 20px;
    border-radius: 0px;
    margin-left: -36px;
    cursor: pointer;
}

section#password_lost form div.input_container .icon.inside:hover {
    color: #4E8C5D;
}

section#password_lost form div.input_container input {
    width: 100%;
    border-radius: 0px 8px 8px 0px;
    border: 1px solid #dadada;
    outline: none;
    transition: all 0.2s ease-in;
}

section#password_lost form div.input_container input:focus {
    border-color: #4E8C5D;
}

section#password_lost form input[type="text"], 
section#password_lost form input[type="password"] {
    text-align: center;
}

section#password_lost form input[type="checkbox"] {
    margin-left: 20%;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    vertical-align: sub;
}

section#password_lost form input[type="button"] {
    background-color: #4E8C5D;
    color: #fefefe;
    height: 34px;
    margin: 10px 20%;
    border-radius: 8px;
    border: 1px solid #dadada;
    cursor: pointer;
    transition: all 0.2s ease-in;
}

section#password_lost form input[type="button"]:hover {
    background-color: #86ad1e;
}

section#password_lost div#links {
    text-align: center;
}

section#password_lost div#links a {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    color: #4E8C5D;
    transition: all 0.2s ease-in;
}

section#password_lost div#links a:hover {
    color: #86ad1e;
}

@media only screen and (min-width: 2050px) {
    section#password_lost h1 {
        font-size: 22pt;
    }
    section#password_lost form input[type="text"], 
    section#password_lost form input[type="password"] {
        font-size: 14pt;
        height: 40px;
    }
    section#password_lost form div.input_container .icon {
        padding: 10px;
        padding-top: 15px;
        width: 50px;
    }
    section#password_lost form input[type="checkbox"] {
        width: 30px;
        height: 30px;
    }
    section#password_lost form label {
        font-size: 14pt;
    }
    section#password_lost form input[type="button"] {
        height: 40px;
        font-size: 14pt;
    }
    section#password_lost div#links a {
        font-size: 14pt;
    }
}

@media only screen and (min-width: 1650px) {
    section#password_lost {
        margin-left: 35%;
        margin-right: 35%;
    }
}

@media only screen and (max-width: 1024px) {
    section#password_lost {
        margin-left: 12%;
        margin-right: 12%;
    }
}

@media only screen and (max-width: 650px) {
    section#password_lost {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media only screen and (max-width: 450px) {
    section#password_lost form div.input_container {
        margin: 10px 5%;
    }
    section#password_lost form input[type="checkbox"] {
        margin-left: 5%;
    }
}

/* --- END Passwort vergessen --- */

/* --- START Passwort vergessen --- */

section#password_reset {
    border: 1px solid #dadada;
    border-radius: 8px;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 20vh;
    display: flex;
    flex-direction: column;
}

section#password_reset h1 {
    text-align: center;
    margin: 20px 0;
}

section#password_reset img {
    margin: auto;
}

section#password_reset form {
    display: flex;
    flex-direction: column;
}

section#password_reset div#pwreset_part1 {
    display: flex;
    flex-direction: column;
}

section#password_reset div#pwreset_part2 {
    display: none;
    flex-direction: column;
}

section#password_reset div#pwreset_part2 p {
    text-align: center;
}

section#password_reset form span#password_reset_messagebox {
    opacity: 0;
    height: 0px;
    display: none;
}

section#password_reset form span#password_reset_messagebox.visible {
    opacity: 1;
    height: 62.22px;
    transition: all 0.2s ease-in;
    display: block;
}

section#password_reset form div.input_container {
    display: flex;
    margin: 10px 20%;
}

section#password_reset form div.input_container.message {
    margin: 10px 10%;
}

section#password_reset form div.input_container .icon {
    padding: 10px;
    text-align: center;
    background-color: #4E8C5D;
    color: #fefefe;
    width: 20px;
    border-radius: 8px 0px 0px 8px;
}

section#password_reset form div.input_container.message .icon {
    background-color: #e0dd18;
}

section#password_reset form div.input_container .icon.inside {
    background-color: rgba(0,0,0,0);
    color: #dadada;
    width: 20px;
    border-radius: 0px;
    margin-left: -36px;
    cursor: pointer;
}

section#password_reset form div.input_container .icon.inside:hover {
    color: #4E8C5D;
}

section#password_reset form div.input_container input {
    width: 100%;
    border-radius: 0px 8px 8px 0px;
    border: 1px solid #dadada;
    outline: none;
    transition: all 0.2s ease-in;
}

section#password_reset form div.input_container input:focus {
    border-color: #4E8C5D;
}

section#password_reset form input[type="text"], 
section#password_reset form input[type="password"] {
    text-align: center;
}

section#password_reset form input[type="checkbox"] {
    margin-left: 20%;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    vertical-align: sub;
}

section#password_reset form input[type="button"] {
    background-color: #4E8C5D;
    color: #fefefe;
    height: 34px;
    margin: 10px 20%;
    border-radius: 8px;
    border: 1px solid #dadada;
    cursor: pointer;
    transition: all 0.2s ease-in;
}

section#password_reset form input[type="button"]:hover {
    background-color: #86ad1e;
}

section#password_reset div#links {
    text-align: center;
}

section#password_reset div#links a {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    color: #4E8C5D;
    transition: all 0.2s ease-in;
}

section#password_reset div#links a:hover {
    color: #86ad1e;
}

@media only screen and (min-width: 2050px) {
    section#password_reset h1 {
        font-size: 22pt;
    }
    section#password_reset form input[type="text"], 
    section#password_reset form input[type="password"] {
        font-size: 14pt;
        height: 40px;
    }
    section#password_reset form div.input_container .icon {
        padding: 10px;
        padding-top: 15px;
        width: 50px;
    }
    section#password_reset form input[type="checkbox"] {
        width: 30px;
        height: 30px;
    }
    section#password_reset form label {
        font-size: 14pt;
    }
    section#password_reset form input[type="button"] {
        height: 40px;
        font-size: 14pt;
    }
    section#password_reset div#links a {
        font-size: 14pt;
    }
}

@media only screen and (min-width: 1650px) {
    section#password_reset {
        margin-left: 35%;
        margin-right: 35%;
    }
}

@media only screen and (max-width: 1024px) {
    section#password_reset {
        margin-left: 12%;
        margin-right: 12%;
    }
}

@media only screen and (max-width: 650px) {
    section#password_reset {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media only screen and (max-width: 450px) {
    section#password_reset form div.input_container {
        margin: 10px 5%;
    }
    section#password_reset form input[type="checkbox"] {
        margin-left: 5%;
    }
}

/* --- END Passwort vergessen --- */

/* -- START Auswertung --- */

section#auswertung #auswertungsabsender {
    margin: 30px 0;
}

section#auswertung #auswertungsabsender h1 {
    margin: 10px 0;
}

section#auswertung div.ausw_header {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 10px;
}

section#auswertung div.container {
    border: 1px solid lightgray;
    width: 50%;
}

section#auswertung div.container h1 {
    background-color: #8DBF99;
    text-align: center;
    padding: 5px;
    border-bottom: 3px solid lightgray;
}

section#auswertung div.container p {
    padding: 5px;
    display: flex;
    justify-content: space-between;
}

section#auswertung div.container p span.bold {
    font-weight: bold;
}

section#auswertung p:nth-child(even) {
    background-color: #F3F3F3;
    border: 1px solid lightgray;
}

section#auswertung div.leftcontainer {
    margin-right: 20px;    
}

section#auswertung div.rightcontainer {
    margin-left: 20px;    
}

@media (max-width: 1070px) {
    section#auswertung div.ausw_header {
        flex-direction: column;
    }

    section#auswertung div.container {
        width: 100%;
    }

    section#auswertung div.leftcontainer {
        margin-right: 0px;    
    }
    
    section#auswertung div.rightcontainer {
        margin-left: 0px;    
        margin-top: 20px;
    }
}

/* -- END Auswertung --- */