:root {
    /* colors */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-sand-white: #f7f7f7;
    --color-light-blue: #e6f0fb;
    /*--color-dark-blue: #122636;*/
    --color-dark-blue: #1e2b3c;
    --color-gray: #a5a5a5;
    --color-dark-blue2:#0F2A41;
    --color-baby-blue: #496293; /*6a9fdb*/


    /* elements */
    --element-button-background-color: var(--color-white);
    --element-button-background-hover-color: var(--color-gray);
    --element-button-background-selected-color: var(--color-dark-blue2);
    --element-box-background-color: var(--color-white);
    --element-content-box-background-color: var(--color-sand-white);
    --element-input-field-background-color: var(--color-light-blue);
    --element-input-checkbox-color: var(--color-baby-blue);
    --element-login-button-background-color: var(--color-dark-blue);
    --element-div-button-background-color: var(--color-black);
    --element-exort-button-background-color: var(--color-baby-blue);
    --element-save-button-background-color: var(--color-dark-blue);
}

html, body {
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
    box-sizing: border-box;
}

BODY
{
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    background: var(--color-white);
    /*background: linear-gradient(180deg, rgba(20,49,75,1) 0%, rgba(10,39,64,1) 100%);*/
	font-family: Arial, Helvetica, sans-serif;
	Font-Size: 16px;
}

A {
    color: var(--color-black);
}


/* Overskrifter - Start */

h3 {
    Font-Size: 27px;
}

h4 {
    Font-Size: 20px;
    font-weight: 400;
}

h5 {
    font-size: 15px;
    font-weight: 500;
}
/* Overskrifter - Slut */

INPUT {
    /* Rounded Corners */
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    margin-top: 1px;
    margin-left: -7px;
    margin-right: 20px;
    margin-bottom: 5px;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid var(--element-input-checkbox-color);
    border-radius: 5px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
/*    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
*/    accent-color: var(--element-input-checkbox-color);
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.61em;
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
/*    background-color: CanvasText;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
*/
}

input[type="checkbox"]:checked::before {
    background-color: var(--element-input-checkbox-color);
    transform: scale(1);
}

input[type="checkbox"]:focus {
    border: 0.15em solid var(--color-black);
}

TEXTAREA {
    font: inherit;

}


.Wrapper {
    width: 85vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}


/* Custom Scrollbars */

::-webkit-scrollbar {
    width: 6px;
  }
  
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  
  ::-webkit-scrollbar-thumb {
    background: rgb(11,86,112);
    background: linear-gradient(180deg, rgba(11,86,112,1) 0%, rgba(24,142,152,1) 100%);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #6E6E6E;
  }


/* Standarder - Start */

    .MainContent {
        height: 100vh;
        margin-top: 100px;
    }

    .bodySignIn-bg {
        background-image: url("/images/bagground1.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .shadow-box {
        display: flex;
        flex-direction: column;
        min-width: 400px;
        color: var(--color-black);
        background-color: var(--element-content-box-background-color);
        border-radius: 20px;
        Text-Align: Center;
        padding: 40px;
        margin-top: 35px;
        /*margin-bottom: 40px;*/
        margin-bottom: auto;

        /* Gradient background */
        /*background-color: #05192B;*/

        /* Rounded Corners */
        border-radius: 20px 20px 20px 20px;
        -moz-border-radius: 20px 20px 20px 20px;
        -webkit-border-radius: 20px 20px 20px 20px;
        z-index: 1;
    }

    .content-box {
        display: flex;
        flex-direction: column;
        color: var(--color-black);
        background-color: var(--element-box-background-color);
        border-radius: 20px;
        padding: 20px;
    
        /* Gradient background */
        /*background-color: #05192B;*/
    
        /* Rounded Corners */
        border-radius: 20px 20px 20px 20px;
        -moz-border-radius: 20px 20px 20px 20px;
        -webkit-border-radius: 20px 20px 20px 20px;
        z-index: 1;
    }

    .input-field {
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: none;
        height: 40px;
        min-width: 250px;
        padding-left: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
        background-color: var(--element-input-field-background-color);
    }
    
    .input-field:focus {
        border: none;
    }
    
    .input-field::placeholder {
        opacity: 1;
        font-size: 16px;
    }
    


    /* "blå" input felter*/
    .input-blue {
        font-size: 16px;
        color: var(--color-white);
        background: rgb(21,52,80);
        background: linear-gradient(0deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 100%);
        border: none;
        border-radius: 8px;
        padding-left: 15px;
        padding-right: -15px;
        height: 30px;
        width: 95%;
        margin-top: 5px;
    }

    .input-blue option {
        color: var(--color-white);
        background-color: rgb(21,52,80);
    }

    /* Små blå input felter */
    .small-input {
        width: 120px;
        text-align: center;
        border: none;
    } 

    .small-input-internal {
        width: 120px;
        height: 20px;
        text-align: center;
        border: 1px solid var(--color-black);
        border-radius: 8px;
        -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
    } 

    /* korte Select felter f.eks. ingredienser */
    .select-field {

        color: var(--color-black);
        background: var(--element-input-field-background-color);
        border: none;
        border-radius: 8px;
        height: 36px;
        width: 40%;
        padding-left: 15px;
        margin-top: 5px;
    }

    .select-field option{
        background-color: var(--element-input-field-background-color);
    }

    .select-template {
        font-size: 18px;
        color: var(--color-white);
        border: none;
        border-radius: 4px;
        height: 36px;
        width: 60%;
        padding-left: 15px;
        margin-top: 5px;
        background: rgb(11,86,112);
        background: linear-gradient(180deg, rgba(11,86,112,1) 0%, rgba(24,142,152,1) 100%);
    }

    .select-template option {
        font-size: 18px;
        color: var(--color-white);
        background: rgba(24,142,152,1);
        border: none;
    }

    /* lange Select felter f.eks. bruger admin */
    .select-blue-long {
        font-size: 17px;
        color: var(--color-black);
        background: var(--element-input-field-background-color);
        border: none;
        border-radius: 8px;
        height: 40px;
        width: 94%;
        padding-left: 15px;
    }

    .select-blue-long option{
        color: var(--color-black);
        background: var(--element-input-field-background-color);
    }

    .select2-selection__rendered {
        width: auto;
        border: none;
        color: var(--color-black);
        background: var(--element-input-field-background-color);
    }

    .select2-container--default, .select2-selection--single {
        border: none!important;
    }

    .select2-dropdown, .select2-dropdown--above {
        width: 320px !important;
    }

    .select2-search, .select2-search--dropdown { /* Indsat 13-07-2023 */
        background: rgb(21,52,80)!important;
        background: linear-gradient(90deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 35%)!important;
    }

    .select2-results__option, .select2-results__option--selectable:hover {
        background-color: #0B566E!important;
    }

    .select2-results__option--selectable {
        background: rgb(21,52,80)!important;
        background: linear-gradient(90deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 35%)!important;
        color: white!important;
    }

    .select2-results__option--selectable:hover {
        background: white!important;
        color: black!important;
    }

    /* input time */
    .div-time {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: left;
        Width: 150px;
    }
    .time-input {
        width: 50px;
    }

    /* input: Amounts */
    .amount-input {
        height: 36px;
        width: 20%;
        border-radius: 8px;
        border: none;
        padding-left: 15px;
        font-size: 18px;
        color: var(--color-white);
        background: rgb(113,138,160);
        background: linear-gradient(90deg, rgba(113,138,160,1) 0%, rgba(70,120,165,1) 35%);
    }

    /* input: Sort */
    .sort-input {
        height: 36px;
        width: 8%;
        border-radius: 8px;
        border: none;
        padding-left: 15px;
        font-size: 18px;
        text-align: center;
        color: var(--color-white);
        background: rgb(113,138,160);
        background: linear-gradient(90deg, rgba(113,138,160,1) 0%, rgba(70,120,165,1) 35%);
    }

    /* input: Titler der kan redigeres (opsætning) */
    .title-input {
        font-size: 18px;
        width: auto;
        border: none;
        border-bottom: 1px solid grey;
        color: var(--color-white);
        margin-left: 10px;
        background-color: transparent;
    }

    .input-checkbox {
        width: auto;
        height: 30px;
    }

    /* Checkbox: Checked */
    .input-blue[type="checkbox"]:checked {
        accent-color: var(--element-input-checkbox-color);
    }

    /* Notefelt */
    .UserAdminNote {
        color: var(--color-black);
        font-family: inherit;
        border-radius: 10px;
        padding-left: 10px;
        margin-bottom: 20px;
        width: 560px;
        height: 110px;
        border: none;
        background: var(--element-input-field-background-color);
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
        
    }

    .UserAdminNote:focus {
        outline: none;
        border: 2px solid var(--color-black);
        /*box-shadow: 0 0 10px #719ECE;*/
    }

    /* (Bliver kun brugt på UserAdmin edit) */
    .UserAdminNote2 {
        background-color: #0B566E;
        color: var(--color-white);
        padding-left: 10px;
        margin-bottom: 20px;
        border: 0.5px solid var(--color-white);
    }

    .user-admin-note-3 {
        background: rgb(21,52,80);
        background: linear-gradient(0deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 100%);
        color: var(--color-white);
        border-radius: 10px;
        padding-left: 10px;
        margin-bottom: 20px;
        width: 250px;
        height: 50px;
        border: 0.5px solid var(--color-white);
    }

    /* Input: Team search view */
    .view_search_input {
        font-size: 16px;
        font-weight: 400;
        color: var(--color-black);
        background-color: var(--color-white) !important;
        /*background: linear-gradient(260deg, rgba(72,178,181,1) 0%, rgba(70,179,150,1) 100%);*/
        border: none;
        border-radius: 10px;
        padding: 8px 20px;
        cursor: pointer;
        margin-right: auto;
        
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
        background-color: var(--element-exort-button-background-color);
    }

    /* Select: Team view */
    .view_team_select {
        font-size: 16px;
        font-weight: 400;
        color: var(--color-black);
        background-color: var(--color-white) !important;
        /*background: linear-gradient(260deg, rgba(72,178,181,1) 0%, rgba(70,179,150,1) 100%);*/
        border: none;
        border-radius: 10px;
        padding: 8px 20px;
        cursor: pointer;
        
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
        background-color: var(--element-exort-button-background-color);
    }

    /* Select: Line view */
    .view_line_select {
        font-size: 16px;
        font-weight: 400;
        color: var(--color-black);
        background-color: var(--color-white) !important;
        /*background: linear-gradient(260deg, rgba(72,178,181,1) 0%, rgba(70,179,150,1) 100%);*/
        border: none;
        border-radius: 10px;
        padding: 8px 20px;
        cursor: pointer;
        
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
        background-color: var(--element-exort-button-background-color);
    }


    /* Knapper: Gem */
    .save-btn {
        font-size: 18px;
        font-weight: 500;
        color: var(--color-white);
        background-color: var(--element-save-button-background-color) !important;
        /*background: linear-gradient(260deg, rgba(72,178,181,1) 0%, rgba(70,179,150,1) 100%);*/
        border: none;
        border-radius: 10px;
        padding: 8px 45px;
        cursor: pointer;
        
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
        background-color: var(--element-input-field-background-color);
    }

    /* Knapper: Tiløj */
    .add-btn {
        font-size: 16px;
        font-weight: 400;
        color: var(--color-white);
        background-color: var(--element-div-button-background-color) !important;
        /*background: linear-gradient(260deg, rgba(72,178,181,1) 0%, rgba(70,179,150,1) 100%);*/
        border: none;
        border-radius: 10px;
        padding: 8px 45px;
        cursor: pointer;
        
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
        background-color: var(--element-div-button-background-color);
    }

    /* Knapper: Eksport */
    .export-btn {
        font-size: 16px;
        font-weight: 400;
        color: var(--color-white);
        background-color: var(--element-exort-button-background-color) !important;
        /*background: linear-gradient(260deg, rgba(72,178,181,1) 0%, rgba(70,179,150,1) 100%);*/
        border: none;
        border-radius: 10px;
        padding: 8px 45px;
        cursor: pointer;
        
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
        background-color: var(--element-exort-button-background-color);
    }

    /* Knapper: Slet */
    .delete-btn {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        width: auto;
        height: 25px;
        border: none;
        border-radius: 10px;
        color: white!important;
        padding-top: 7px;
        padding-left: 15px;
        padding-right: 15px;
        background: var(--color-black);
        cursor: pointer;        
    }

    /* Knapper: Login */
    #login-btn {
        font-size: 18px;
        font-weight: 500;
        color: var(--color-white);
        background: rgb(72,178,181);
        background: linear-gradient(260deg, rgba(72,178,181,1) 0%, rgba(70,179,150,1) 100%);
        border: none;
        padding: 8px 45px;
        cursor: pointer;
    }

    /* Knapper: Logud */
    .logout-btn {
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 10px;
        font-size: 18px;
        color: var(--color-black);
        background-image: url("/images/logud_white.svg");
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        background-repeat: no-repeat;
        background-attachment: local;
        background-position: center;
        cursor: pointer;
    }

    /* Knaepper: Edit */
    .edit-btn {
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 10px;
        font-size: 18px;
        color: var(--color-black);
        background-image: url("/images/editbtn.svg");
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        background-repeat: no-repeat;
        background-attachment: local;
        background-position: center;
        cursor: pointer;
    }

    .arrow-btn {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        color: var(--color-white);
        background-image: url("/images/arrow1.png");
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        background-repeat: no-repeat;
        background-attachment: local;
        background-position: center;
        background-color: var(--element-div-button-background-color);
        border-radius: 10px;
        width: 43px;
        height: 43px;
        margin-left: 10px;
        cursor: pointer;

        /* Rounded Corners */
        border-radius: 10px 10px 10px 10px;
        -moz-border-radius: 10px 10px 10px 10px;
        -webkit-border-radius: 10px 10px 10px 10px;

        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
        z-index: 1;
    }



    /* Dropdowns */
    .input-dropdown {
        font-size: 17px;
        color: var(--color-white);
        background-color: #0B566E;
        border: none;
        padding-top: 5px;
        padding-left: 5px;
        height: 30px;
        width: 97%;
    }
    

    .td-alternate {
        border-bottom: 1px white solid;
    }

    .space-right30 {
        margin-right: 30px;
    }
    .removeTopMargin10 {
        margin-top: -10px;
    }
    .removeTopMargin15 {
        margin-top: -15px;
    }
    .removeLeftMargin15 {
        margin-left: -15px;
    }
    .removeLeftMargin30 {
        margin-left: -30px;
    }

    .stick-bottom-right {
        padding-top: 90px;
        text-align: right;
    }

/* Standarder - Slut */


/* Login første skærm */
.frontText {
    flex: auto;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 70%; /* 390px */
}
.frontTextMax {
    width: 80%;
}

.frontShadow {
    width: 80vw;
}

.frontContentBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    Padding: 20px;
    width: 79vw;
}

.frontBox {
    Text-Align: left;
    width: 46%;
}

.frontTeamSelect {
    Text-Align: left;
    flex-direction: column;
}

.div-QR {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.frontQR {
    width: 150px;
    /*    
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: -135px;
    margin-bottom: 15px;
    */
}

.topLogoLeft {
    position: absolute;
    Top: 5px;
    Left: 15px;
    min-width: unset;
    width: 210px;
    height: 0px;
    padding: 25px;
    z-index: 99;
}

.topLinkMenu {
    position: absolute;
    Top: 5px;
    Right: 15px;
    width: 200px;
    height: 40px;
    z-index: 99;
}

.topLink, topLink:visited {
    display: inline-block;
    align-items: center;
    text-align: center;
    height: 17px;
    min-width: 60px;
    padding: 8px;
    margin-left: 10px;
    border-radius: 10px;

    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
    background-color: var(--element-button-background-color);
    cursor: pointer;
}

.topLink:hover {
    background-color: var(--element-button-background-hover-color);
}

.wrapper-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}


/* Signin / out - Start */
.signinShadowBoxes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 81vw;
    margin-bottom: 25%;
}

.signinShadow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80%;
    width: 37vw;
}

.signinContent {
    width: 100%;
    min-height: 75%;
}

.signinContent2 {
    display: flex;
    flex-direction: column;
    width: 37vw;
    height: 100%;
}

.singinTitle {
    width: 100%;
    text-align: left;
}

.singinTeamSelect {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    margin-bottom: 40px;
}

.singinTeamSelect h4 {
    margin: 0px;
    text-align: left
}

.singinTeamSelect2 {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.signin-teamName-field {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--color-white);
    background-color: var(--element-save-button-background-color);
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 10px;
    min-width: 110px;
    height: 43px;

    /* Rounded Corners */
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;

    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
    z-index: 1;
}

.signinName-field {
    width: 98%;
}

.signinBirthday-field {
    border: 0px;
    background-color: var(--element-input-field-background-color);
}

.signin-field-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--color-black);
    background-color: var(--element-input-field-background-color);
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    /*margin-right: 20px;*/
    margin-bottom: 10px;
    /*min-width: 230px;*/
    height: 43px;

    /* Rounded Corners */
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;

    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
    z-index: 1;
}

td .signinBirthday-field {
    width: 110px;
    text-align: center;
}

.signinTimeSelect {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    background-color: var(--color-white);
    border-radius: 10px;
    width: 150px;
    height: 30px;

    /* Rounded Corners */
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;

}

.container-signin-loginlist-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.signinQRBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--element-input-field-background-color);
    Padding: 40px;
    width: 37vw;
    height: 150px;
}
/* Signin / out - Slut */


/* login - Start */

.TopLogin {
    Height: 60px;
    Margin-Top: 10px;
    Margin-Bottom: 10px;
    Margin-Bottom: 10px;
    Margin-Left: auto;
    Margin-Right: auto;
    Max-Height: 400px;
    Text-Align: Center;
}

.shadow-box h2{
    color: var(--color-black);
    font-size: 35px;
    margin-top: 12px;
    margin-bottom: 38px;
}

.topLogoLeft h4{
    font-weight: 550;
    margin-top: -11px;
    color: var(--color-black);
}

.Top {
    Margin-Top: 10px;
    Margin-Bottom: 10px;
    Margin-Bottom: 10px;
    Margin-Left: auto;
    Margin-Right: auto;
    Max-Height: 200px;
    Text-Align: Center;
}


.topLogo {
    height: 30px;
    Margin-Top: -30px;
    Margin-Bottom: 85px;
    Max-Height: 50px;
}


.Logo {
    Margin-Top: 30px;
    Margin-Bottom: 30px;
    Max-Height: 200px;
}

.singleLineLogo {
    margin-top: 220px;
    padding-top: 22px;
    padding-bottom: 0px;
}

.lostLink {
    color: var(--color-gray);
    font-style: italic;
    text-decoration: none;
    text-Align: right;
    padding-top: 5px;
    padding-right: 20px;
}

.LoginTopScreen {
    Margin-Left: auto;
    Margin-Right: auto;
    Text-Align: Center;
}
.LogoLogin {
    Height: 400px;
    display: none;
}

.LoginTitle {
    font-size: 20px;
    color: var(--color-white);
}

#LoginInput {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    height: 40px;
    width: 360px;
    padding-left: 20px;
    margin-bottom: 16px;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
    background-color: var(--element-input-field-background-color);
}

#LoginInput:focus {
    border: none;
}

#LoginInput::placeholder {
    opacity: 1;
    font-size: 16px;
}

#LoginButton {
    text-align: center;
    background-color: var(--element-login-button-background-color);
    color: var(--color-white);
    border: none;
    height: 40px;
    width: 360px;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 80%));
    cursor: pointer;
}

/* Login - Slut */


/* Login company select - Start */

.LoginCompSel {
    display: flex;
    flex-direction: column;
    width: 80vw;
    height: 75vh;
    background-color: #05192B;
    border: 1px solid #072437;
    border-radius: 20px;
    padding-left: 30px;
    padding-right: 30px;

    /* Gradient background */
    background-color: #05192B;

    /* Rounded Corners */
    border-radius: 20px 20px 20px 20px;
    -moz-border-radius: 20px 20px 20px 20px;
    -webkit-border-radius: 20px 20px 20px 20px;
    z-index: 1;
}

.admin-login-top-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3%;
    border-bottom: 1px solid var(--color-white);
}

.admin-login-top-row h2 {
    font-size: 20px;
}

.admin-btn-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 60%;
}

.admin-btn {
    font-size: 15px;
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
    text-decoration: none;
}

.admin-company-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: start;
}

.admin-company-container a {
    color: var(--color-white);
    text-decoration: none;
}

.company-info {
    width: 35%;
    border-radius: 8px;
    padding-left: 25px;
    padding-bottom: 20px;
    background: rgb(15,42,65);
    background: linear-gradient(180deg, rgba(15,42,65,1) 0%, rgba(5,24,40,1) 100%);
}

.company-info li{
    list-style: none;
    font-size: 16px;
    margin-bottom: 1.5%;
}

.admin-logout-row {
    display: flex;
    flex-direction: row;
    justify-content: end;
    padding-bottom: 2%;
}

/* Login company select - Slut */


/* Logout box - Start */

.logout-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 60vh;
    border: 1px solid var(--color-white);
}

/* Logout box - Slut */


/*** Menu - Start ***/

.menu-container {
	Display: flex;
    flex-direction: column;
    width: 15vw;
    height: 100vh;
    color: var(--color-white);
    background-color: var(--color-black);
    padding-left: 25px;
}

.menu-top {
    display: flex;
    flex-direction: row;
    justify-content: start;
    width: 100%;
    height: 150px;
    padding-top: 25px;
}

.menu-top-letter-sign {
    color: var(--color-black);
    background-color: var(--color-white);
    font-weight: 600;
    border-radius: 30px;
    height: 30px;
    width: 35px;
    padding-top: 12px;
    padding-left: 5px;
    padding-right: 2px;

}

.menu-logo {
    font-size: 22px;
    font-weight: 500;
    margin-top: 8px;
    margin-left: 10px;
}

.menu-container ul {
    padding: 0;
    margin: 0;
}


#menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    list-style:none;
    height:600px;
    width: 100%;
    line-height: 60px;
}

#menu-bot {
    position: relative;
    list-style:none;
    width: 284px;
    line-height: 60px;
    bottom: 10px;
}

.menu-bot {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    width: 100%;
    /*height: 200px;*/
    padding-bottom: 25px;
}

.menu-bot ul {
    list-style: none;
}

A.MenuText
{
    font-size: 20px;
    COLOR: var(--color-white);
    TEXT-DECORATION: none;
    margin-left: 10px;
}


A.MenuText:hover
{
    COLOR: var(--color-white);
    TEXT-DECORATION: none;
}

.MenuText2 {
    font-size: 18px;
    color: var(--color-white);
    text-decoration: none;
    margin-left: 10px;
    line-height: 40px;
}

A.MenuSub-btn
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 170px;;
    height: 45px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-black);
    border: 1px solid var(--color-black);
    border-radius: 8px;
    cursor: pointer;
    margin-right: 20px;
}

A.MenuSub-btn:hover
{
    COLOR: var(--color-white);
    TEXT-DECORATION: none;
    background-color: var(--element-button-background-hover-color);
}

A.MenuSub-Btn-NotSelected {
    color: var(--color-black);
    background-color: var(--color-white);
}

.menusub-text2 {
    width: 100%;
    margin-top: -15px;
    font-weight: 500;
}

.menusub-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    Text-Align: Center;
    padding: 0px;
    margin-bottom: 0px;
}

.menu-point {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 260px;
    line-height: 60px;
}

.MenuMark {
    background: rgb(11,86,112);
    background: linear-gradient(180deg, rgb(34, 34, 34) 0%, rgb(55, 55, 55) 100%);
    width: 100%;
    margin-left: -22px;
    text-align: left;
    padding-left: 22px;
}

.MenuMarkSubLeft {
    padding: 12px 12px;
    background: rgb(20,49,75);
    /* border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: -15px; */
}

.MenuMarkSub {
    padding: 12px 12px;
    background: rgb(20,49,75);
}

.MenuMarkSubRight {
    padding: 12px 12px;
    background: rgb(20,49,75);
}

#menu li:hover, #menu-bot li:hover {
    background: rgb(20, 20, 20);
    background: linear-gradient(180deg, rgb(20, 20, 20) 0%, rgb(30, 30, 30) 100%);
    width: 100%;
    margin-left: -22px;
    text-align: left;
    padding-left: 22px;
}

.menu-icon-home {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    background-image: url("/images/oversigt_dark.svg");
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    background-repeat: no-repeat;
    background-attachment: local;
    background-position: center;
    cursor: pointer;
}

.menu-icon-home-light {
    background-image: url("/images/oversigt_light.svg");
}

.menu-icon-teamreg {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    background-image: url("/images/hold-registrering_dark.svg");
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    background-repeat: no-repeat;
    background-attachment: local;
    background-position: center;
    cursor: pointer;
}

.menu-icon-teamreg-light {
    background-image: url("/images/hold-registrering_light.svg");
}

.menu-icon-hourrep {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    background-image: url("/images/time-rapport_dark.svg");
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    background-repeat: no-repeat;
    background-attachment: local;
    background-position: center;
    cursor: pointer;
}

.menu-icon-hourrep-light {
    background-image: url("/images/time-rapport_light.svg");
}

.menu-icon-lists {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    background-image: url("/images/lister_dark.svg");
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    background-repeat: no-repeat;
    background-attachment: local;
    background-position: center;
    cursor: pointer;
}

.menu-icon-lists-light {
    background-image: url("/images/kunder_light.svg");
}

.menu-icon-customers {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    background-image: url("/images/kunder_dark.svg");
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    background-repeat: no-repeat;
    background-attachment: local;
    background-position: center;
    cursor: pointer;
}

.menu-icon-customer-light {
    background-image: url("/images/kunder_light.svg");
}

.menu-icon-settings {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    background-image: url("/images/system-indstillinger_dark.svg");
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    background-repeat: no-repeat;
    background-attachment: local;
    background-position: center;
    cursor: pointer;
}

.menu-icon-settings-light {
    background-image: url("/images/system-indstillinger_light.svg");
}

.error-report {
    color: var(--color-white);
    font-size: 18px;
}

/*** Menu - Slut ***/


/*** User admin - Start ***/

A.UserAdd-btn
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 170px;;
    height: 45px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-black);
    border: 1px solid var(--color-black);
    border-radius: 8px;
    cursor: pointer;
    margin-right: 20px;
}

A.UserAdd-btn:hover
{
    COLOR: var(--color-white);
    TEXT-DECORATION: none;
    background-color: var(--element-button-background-hover-color);
}


.user-admin-btn-row1 {
    display: flex;
    flex-direction: row;
    justify-content: end;
    Text-Align: Center;
    padding: 0px;
    margin-bottom: 0px;
}

.UserAdminOverview {
    display: flex;
    flex-direction: column;
    width: 75%;
    height: 80%;
    border-radius: 18px;
    background-color: #05192B;
    color: var(--color-white);
    overflow-y: scroll;
}

.UserAdminAddExtra {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px 40px;
}

.AddExtra {
    height: 40px;
    font-size: 16px;
    color: var(--color-white);
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    cursor: pointer;
}

.user-admin-h3 {
    font-size: 20px;
}

.admin-user-p{
    font-size: 18px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 15px 0px;
    
}

.user-admin-custbox-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-bottom: 15px;
    margin-left: 20px;
    width: 100%;
}

.UserAdminCustBox {
    display: flex;
    flex-direction: column;
    height: 100px;
    width: 70%;
    padding-left: 15px;
    padding-top: 15px;
    background: rgb(15,42,65);
    background: linear-gradient(180deg, rgba(15,42,65,1) 0%, rgba(5,24,40,1) 100%);
    border-radius: 8px;
}

.user-admin-note-users {
    height: 100px;
    width: 22%;
    padding-left: 15px;
    padding-top: 15px;
    background: rgb(21,52,80);
    background: linear-gradient(0deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 100%);
    border-radius: 8px;
}

.UserAdminName {
    display: flex;
    flex-direction: column;
    width: 50%;
    cursor: pointer;
}

/* Edit user */

.UserEditContent {
    display: flex;
    flex-direction: column;
    border: 1px solid #072437;
    border-radius: 25px;
    background-color: #05192B;
    color: var(--color-white);
    padding: 10px 20px 10px 40px;
    min-width: 800px;
}

.UserEditContent h4 {
    font-size: 18px;
}

.UserAdminAddUser {
	Text-align: Right;
	Margin-Top: -18px;
}

.UserAdminCustEditBox {
	display: flex;
    flex-direction: row;
    align-items: center;
    height: 40px;
}

.UserAdminCustEditBox:hover {
    background: rgb(0,106,139);
    background: linear-gradient(180deg, rgba(0,106,139,1) 0%, rgba(66,132,154,1) 100%);
}

.UserAdminCustText {
    display: flex;
    flex-direction: row;
    align-items: center;
	Width: 50%;
}

.UserAdminCustValue {
    display: flex;
    flex-direction: row;
	Width: 50%;
}

.UserAdminCustValue input {
    padding: 10px 5px;
}

.UserAdminCustValue select {
    padding: 10px 10px;
}

.UserAdminCustValue select {
    padding: 10px 10px;
}

.user-admin-button-row {
    height: 10vh;
    display: flex;
    flex-direction: row-reverse;
    justify-content: end;
    gap: 10px;
    align-items: center;
}

.UserAdminDeleteButtonField a {
    font-size: 16px;
    color: red;
    text-decoration: none;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
}

.UserAdminButton {
    margin-top: 5px;
    margin-bottom: 5px;
}

.UserAdminButton input {
    font-size: 16px;
    color: var(--color-white);
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
}

.UserAdminButton .back-button {
    font-size: 16px;
    color: var(--color-white);
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
}

.user-admin-button-row .save-button {
    font-size: 16px;
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
} 


/*** User admin - Slut ***/

.wait-shadow {
    width: unset;
}
.wait {
    Text-Align: Center;
}

/*** Menu Template - Start ***/

.menu-template-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    height: 90vh;
    width: 100%;
    gap: 20px;
}

.menu-temp-row1 {
    display: flex;
    flex-direction: column;
    width: 95%;
    height: 35%;
    background-color: #051828;
    border-radius: 18px;
    padding-left: 30px;
    padding-right: 30px;
}

.menu-temp-row2 {
    display: flex;
    flex-direction: column;
    width: 95%;
    height: 60%;
    background-color: #051828;
    border-radius: 18px;
    padding-left: 30px;
    padding-right: 30px;
}

.menu-temp-inner-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 70%;
}

.menu-temp-newlines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 52%;
    height: 100%;
    border-right: 1px solid grey;
    padding-top: 10px;
    overflow-y: scroll;
}

.menu-temp-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 40%;
    font-size: 16px;
    overflow-y: scroll;
}

.temp-lines-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.title-row2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 45%;
}

.menu-save-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 60px;
}

.menu-btn-row1 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    align-items: end;
    width: 50%;
    height: 100%;
    gap: 25px;
}

.menu-btn-row2 {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: end;
    width: 50%;
}

.menusub-btn-row1 {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: end;
    width: 100%;
    /*height: 100%;*/
    margin-left: 75px;
    margin-bottom: auto;
    gap: 25px;    
}

/*** Menu Template - Slut ***/


/*** Styles for Column 1 - Start ***/

.template-col-1 {
    display: flex;
    flex-direction: column;
    height: 75vh;
    width: 33vw;
    border: 1px solid #072437;
    border-radius: 25px;
    background-color: #05192B;
}

.temp-col1-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    margin-left: 40px;
    margin-right: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-white);
}

.temp-col1-bot {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
    padding-bottom: 40px;
}

.temp-col1-top h3 {
    font-size: 20px;
    color: var(--color-white);
}

.add-volume-types {
    height: 40px;
    width: 200px;
    font-size: 16px;
    color: var(--color-white);
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    cursor: pointer;
}

/*** Styles for Column 1 - Slut ***/


/*** Styles for Column 2 - Start ***/

.template-col-2 {
    display: flex;
    flex-direction: column;
    height: 75vh;
    width: 33vw;
    border: 1px solid #072437;
    border-radius: 25px;
    background-color: #05192B;
    overflow-y: scroll;
}

.temp-col2-bot {
    display: flex;
    flex-direction: column;
    margin-left: 40px;
    margin-right: 20px;
    margin-top: 40px;
}

.temp-col2-top h3 {
    font-size: 20px;
    color: var(--color-white);
}

.input-title {
    background-color: transparent;
    border: none;
    color: var(--color-white);
    font-size: 16px;
    padding-left: 6px;
    width: 40px;
}

.input-title-border {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    font-size: 16px;
    padding-left: 6px;
    width: 40px;
  }

.input-title:focus {
    outline: none;
}

/*** Menu Template - Slut ***/


/*** Team reg - Start ***/
.teamreg-container, .setup-container-customer, .customer-container, .settings-container, .teamsetting-container, .user-admin-container {
    display: flex;
    flex-direction: column;
    height: 98%;
    width: 93%;
    /*gap: 50px;*/
}

.teamreg-container2 {
    
    width: 1000px;
}

.teamreg-top-container {
    display: flex;
    flex-direction: column;
    /*height: 340px;
    min-width: 550px;
    width: 100%;
    background-color: #051828;
    border-radius: 18px;*/
    padding-bottom: 30px;
}

.teamreg-items-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 98%;
    padding-left: 5px;
    padding-bottom: 3px;
}

.teamSigninShadowBoxes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
 /*   width: 80vw;*/
}

.teamSigninContent {
    width: 390px;
    /*min-height: 75%;*/
    padding-left: 30px;
    margin-bottom: 30px;
}

.teamreg-cust-list-row {
    display: flex;
    /*flex-direction: column;
    justify-content: space-between;*/
    align-items: start;
    width: 100%;
    padding-left: 5px;
    padding-bottom: 0px;
}

/*** Team reg - Slut ***/


/*** Team reg hour - Start ***/

.teamreghour-top-container {
    display: flex;
    flex-direction: column;
    /*height: 340px;
    min-width: 950px;
    width: 100%;
    background-color: #051828;
    border-radius: 18px;*/
    padding-bottom: 30px;
    margin-left: -33%;
}

.teamreghour-items-row {
    justify-content: space-between;
    align-items: center;
    width: 98%;
    padding-left: 5px;
    padding-bottom: 3px;
    text-align: left;
}

.select-team, .select-systemtext {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding-bottom: 53px;
}

.select-systemtext {
    justify-content: space-between;
    padding-bottom: unset;
}

.select-team .arrow-btn, .select-systemtext .arrow-btn {
    height: 25px;
    width: 25px;
    background-size: 16px 16px;
    border-radius: 8px 8px 8px 8px;
    -moz-border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px 8px 8px 8px;
}

.select-team-text, .select-user-admin-text {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: -30px;
    margin-bottom: 20px;
}

.select-team-title {
    
}
td.trh-center {
    text-align: center;
}
td.trh-right {
    text-align: right;
}
td.trh-topline {
    border-left: 1px #fff solid;
    border-right: 1px #fff solid;
    border-top: 1px #fff solid;
}
td.trh-bottomline {
    border-left: 1px #fff solid;
    border-right: 1px #fff solid;
    border-bottom: 1px #fff solid;
}
td.trh-siteline {
    border-left: 1px #fff solid;
    border-right: 1px #fff solid;
}
td.trh-all-line {
    border: 1px #fff solid;
}
td.bg-gray {
    background-color: #bbb;
}

/*** Team reg hour - Slut ***/

/*** Teamlist - START ***/

/*
.setup-container {
    display: flex;
    flex-direction: column;
    height: 90vh;
    width: 95%;
    gap: 50px;
}

.setup-top-container {
    display: flex;
    flex-direction: column;
    /*height: 340px;
    min-width: 550px;
    width: 100%;
    background-color: #051828;
    border-radius: 18px;*/
/*    padding-bottom: 30px;
}
*/
.setup-site-title-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    margin-left: 75px;
}

.setup-site-title h4{
    text-align: left;
    font-weight: 550;
}

.setup-settings-title h4{
    text-align: left;
    font-weight: 550;
    margin-top: -10px;
}

.setup-bot-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 550px;
    width: 35%;
    margin-bottom: 50px;
    background-color: #051828;
    border-radius: 18px;
}

.setup-items-container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    flex-wrap: wrap;
    /*padding-left: 10px;
    padding-right: 10px;*/
    gap: 20px;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.team-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 45px;
    list-style: none;
    font-size: 16px;
    text-align: center;
    color: var(--color-white);
    background-color: var(--element-button-background-selected-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    /*margin-top: 20px;*/
}

.team-list:hover {
    background-color: #0B566E;
}

.team-list-int, .systemtext-list-int {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 210px;
    height: 110px;
    margin-top: 15px;
    padding: 10px;
    list-style: none;
    font-size: 14px;
    text-align: left;
    color: var(--color-black);
    background-color: var(--element-input-field-background-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.team-list-int:hover, .systemtext-list-int:hover {
    color: var(--color-black);
     background-color: var(--element-box-background-color);
}

.team-list-int-selected {
    color: var(--color-white);
    background-color: var(--element-button-background-selected-color);
}

.systemtext-list-int {
    justify-content: flex-start;
    height: 25px;
}
.member-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 45px;
    list-style: none;
    font-size: 16px;
    text-align: center;
    color: var(--color-black);
    background-color: var(--element-input-field-background-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.member-list:hover {
    background-color: var(--color-white);
    border: 1px solid var(--color-black);
    margin: -1px;
}


.setup-bot-container-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 275px;
    margin-left: 10px;
    margin-right: 10px;
}

.setup-bot-container-bot {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 40px;
    padding-top: 15px;
    /*padding-right: 20px;*/
}

.cat-col2-bot {
    display: flex;
    flex-direction: column;
    margin: 40px 20px 40px 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-white);
}

.cat-col2-bot h4 {
    font-size: 16px;
}

.cat-col2-bot .input-title {
    margin-left: 10px;
}

.cat-col2-bot2 {
    display: flex;
    flex-direction: row;
    align-items: center;       
    justify-content: center;
}

.cat-col2-bot2 .input-title {
    height: 40px;
    padding: 5px 10px;
    width: 30%;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    cursor: pointer;
    background: var(--color-white);
    color: var(--color-black);
} 

/*** Teamlist - END ***/


/*** Team settings - START ***/

.teamSetting-content {
    width: 450px;
    min-height: 75%;
    padding-left: 30px;
    margin-bottom: 30px;
    background-color: var(--color-sand-white);
}

.teamsettings-container {
        line-height: 38px;
}

.teamSetting-content2 {
    width: 365px;
    margin-right: 70px;

}

.teamsetting-timeselect-box {
    display: flex;
    justify-content: space-evenly;
    background-color: var(--color-white);
}

.teamsettings-line {
    line-height: 38px;
}

.teamsettings-line2 {
    align-items: baseline !important;
    text-align: left;
}

.systemtext-settings-right {
    line-height: 38px;
    justify-content: flex-start !important;

}

.systemtext-settings-right-input {
    margin-left: 116px;
}

.systemtext-settings-right-input2 {
    margin-left: 95px;
}

.systemtext-settings-line {
    line-height: 38px;
    align-items: flex-start !important;
}

.setup-container-2 {
    display: flex;
    /*height: 90vh;
    width: 95%;*/
    gap: 50px;
}

.sub-container-col1 {
    display: flex;
    flex-direction: column;
    gap: 35px;
    height: 100%;
    width: 850px;
}

.sub-container-col2 {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 630px;
}

.products-container {
    display: flex;
    flex-direction: column;
    height: 40%;
    background-color: #051828;
    border-radius: 18px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 15px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.products-edit-container {
    display: flex;
    flex-direction: column;
    height: 60%;
    background-color: #051828;
    border-radius: 18px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 35px;
    overflow-y: scroll;
}

.products-title-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 15px;
}

.products-price-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.product-info-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-top: 6px;
    margin-bottom: 6px;
}

.product-info-row:hover {
    background: rgb(11,86,112);
    background: linear-gradient(180deg, rgba(11,86,112,1) 0%, rgba(24,142,152,1) 100%);
}

.product-info-inner-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 20%;
    border-bottom: 1px solid var(--color-white);
}

.ingridient-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #051828;
    border-radius: 18px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 35px;
}

/*.teams-box {
    height: 75%;
    padding-left: 15px;
    padding-right: 15px;
}*/

.box-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: sticky;
    padding-left: 15px;
    padding-right: 15px;
}

.delete-row2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 10px;
    width: 100%;
    height: auto;
    background-color: #051828;
}

.save-row {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: start;
    margin-top: 10px;
    height: 50px;
    width: 95%;
}

/*** Team settings - END ***/


/*** Teams - START ***/

#teams-list {
    width: 250px;
    margin-left: 0;
}

.teams-btn {
    color: var(--color-white);
    text-decoration: none;
}

.teams-bot-container-items {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 15px;
    height: 320px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 20px;
}

.container-items-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 98%;
    padding-left: 5px;
    padding-bottom: 3px;
}

.container-items-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 98%;
/*    padding-left: 5px;*/
    padding-bottom: 3px;
}

.container-items-row h4 {
    font-size: 16px;
    font-weight: 600;;
}

.small-input option {
    color: var(--color-white);
    background: rgb(21,52,80);
}

/*.teams-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}*/

/*** Teams - END ***/


/*** Orders list - START ***/

.setup-container-3 {
    display: flex;
    flex-direction: row;
    height: 95%;
    width: 100%;
    gap: 50px;
}

.temp-col1-bot #select2-customerID-container {
    color: var(--color-black);
}

.temp-col1-bot span {
    color: var(--color-black);
    background-color: #0B566E;
}

.select2-results__option {
    color: var(--color-black);
}

#select2-custDeliveryID-container {
    color: var(--color-black);
}

#select2-prodIDNew1-container, #select2-prodIDNew2-container,
#select2-prodIDNew3-container, #select2-prodIDNew4-container, #select2-prodIDNew5-container {
    width: 100%;
}

#productAmountNew1, #productAmountNew2, #productAmountNew3, 
#productAmountNew4, #productAmountNew5 {
    display: inline-block;
    margin-left: 65px;
    border: 1px solid var(--color-white);
}

#productPriceNew1, #productPriceNew2, #productPriceNew3, #productPriceNew4, #productPriceNew5 {
    margin-left: 65px;
    border: 1px solid var(--color-white);
}

#customerNote {
    background: rgb(21,52,80);
    background: linear-gradient(0deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 100%);
    color: var(--color-white);
    border-radius: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
    width: 90%;
    height: 180px;
}

.gen-set-form-order {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    width: 100%;
    height: 95%;
}

.orderedit-col2-top {
    background-color: #051828;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2%;
    height: 10vh;
    margin-left: 20px;
    margin-right: 20px;
}

.pers-count-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 65%;
    font-size: 18px;
    background: rgb(15,42,65);
    background: linear-gradient(180deg, rgba(15,42,65,1) 0%, rgba(5,24,40,1) 100%);
}

.menu-template-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    border-bottom: 1px gray solid;
}

.customer-headline-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.order-lines {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.order-lines-amount {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 55%;
}

.order-headlines {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 54%;
}

.pers-count {
    margin-left: 10px;
}

.count-headline {
    margin-left: 190px;
}

#newLines {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.customer-lines-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;  
    flex-wrap: wrap;  
}

.customer-row {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 20px;
}

.confirmation-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 20px;
}

.note-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /*margin-top: 50px;*/
    width: 100%;
    /*height: 100px;*/
}

.note-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: start;
}

.date-time-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 25px;
}

/*** Orders - Slut ***/


/*** Orders - Start ***/

.setup-container-ordersOLD {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    height: 90vh;
    width: 95%;
    gap: 50px;
}

.setup-container-customer {
    height: 900px;
}

.customer-set-top {
    padding: 20px;
} 

.customer-head th, .user-admin-head th{
    height: 30px;
    text-align: left;
    border-bottom: 1px solid grey;
    /* background: rgb(0,106,139);
    background: linear-gradient(180deg, rgba(0,106,139,1) 0%, rgba(66,132,154,1) 100%); */
}

.customer-list-rows, .user-admin-list-rows {
    table-layout: fixed;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.customer-list-rows td, .user-admin-list-rows td {
    text-align: left;
    width: 14%;
    height: 25px;
    font-size: 15px;
}

.customer-list-rows tr:hover {
    cursor: pointer;
    background: var(--element-button-background-hover-color);
}

.temp-col1-custlist {
    position: sticky;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 12vh;
    width: 100%;
    border-bottom: 1px solid var(--color-white);
}

.temp-col1-custlist button {
    height: 40px;
    padding: 10px 10px;
    font-size: 16px;
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 20px;
    cursor: pointer;
}

.changestatus-row {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    width: 20%;
    gap: 10px;
    padding-right: 10px;
}

.changestatus-row-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.search-row {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    width: 100%; /* 55%; */
    gap: 10px;
    padding-right: 10px;
}

.search-row-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.input-search {
    background-color: var(--color-white);
    color: #051828;
    height: 20px;
    width: 150px;
    border: none;
    padding-left: 10px;
    border-radius: 8px;
    font-size: 17px;
}

/*** Orders - Slut ***/


/*** Customers - START ***/

.cust-container-col1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 620px;
    width: 100%;
}

.cust-container-col2 {
    display: flex;
    flex-direction: column;
    gap: 35px;
    height: 100%;
    width: 50%;
}

.cust-list-rows {
    width: 100%;
}

.cust-list-rows td {
    width: 40%;
    text-align: left;
}

td {
    font-size: 15px;
}

.customer-td-center, .user-admin-td-center {
    text-align: center !important;
}

.customer-info-table {
    text-align: left;
}

.customer-td-checkbox {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
    grid: unset;
}

td .customer-td-checkbox {
    margin-left: 40% !important;
    background-color: var(--element-input-field-background-color);
}

.customer-td-center .edit-btn, .customer-td-center  .input-checkbox {
    float: left;
    position: relative;
    left: 25%;
}

.customer-delete-box, .user-admin-action-box {
    float: Right;
    position: relative;
    text-align: right;
}

/*
.cust-form {
    display: flex;
    flex-direction: column; 
    padding-left: 20px;
    padding-right: 20px;
    height: 95%;
    width: 90%;
    overflow-y: scroll;
}
*/

.customer-col-1 {
    display: flex;
    flex-direction: column;
}

.customer-delete-checkbox {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}


table .input-checkbox {                                   
    margin-left: 5px;
}

table {
    width: 95%;
}

.delivery-data {
    display: flex;
    flex-direction: row;
    width: 100%;
}

/*** Customers - END ***/


/*** Print af lister - Start ***/
.print-button {
    position: relative;
    Margin-Top: -50px;
    margin-right: 5px;
}

.orderSheet-container {
    Width: 100%;
}

.orderSheet-container > Table > tbody > tr > td {
    font-size: 12px;
}

.dayRecipes-table {
    border-collapse: collapse !important;
}
.dayRecipes-container > Table > tbody > tr > td {
    font-size: 12px;
    border: 1px solid var(--color-white);
    border-spacing: 0px;
}

/*** Print af lister - Slut ***/

/*** Print styring - Start ***/
@media print {
    BODY {
        overflow-x: visible !important;
    }

    H3 {
        Color: var(--color-black);
    }
    
    Font {
        Color: var(--color-black);
    }
    TD {
        Color: var(--color-black);
        Border-Color: var(--color-black);
        -webkit-print-color-adjust: exact;
    }
    .Wrapper {
        Display: unset;
        Margin-left: 11%;
    }

    td.trh-topline {
        border-left: 1px #000 solid;
        border-right: 1px #000 solid;
        border-top: 1px #000 solid;
    }
    td.trh-bottomline {
        border-left: 1px #000 solid;
        border-right: 1px #000 solid;
        border-bottom: 1px #000 solid;
    }
    td.trh-siteline {
        border-left: 1px #000 solid;
        border-right: 1px #000 solid;
    }
    td.trh-all-line {
        border: 1px #000 solid;
    }
    
    div.pagebreak { /* Kræver DIV */
        clear: both;
        page-break-after: always;
		page-break-inside: avoid;
        -webkit-region-break-inside: avoid;
    }

    .noprint {
        display: none;
        width: 0px;
        height: 0px;
    }

    .shadow-box {
        width: 100%;
        Text-Align: Center;
        padding: 0px;
        margin-bottom: 0px;
    }

    /*** Team reg - Start ***/
    .teamreg-container {
        flex: none;
        height: 100%;
        width: 100vw;
        margin-Left: -40px;
        /*gap: 50px;*/
    }
    /*** Team reg - Slut ***/

}
/*** Print styring - Slut ***/


/* General Settings - Start */

.settings-container {
    width: unset;
    padding-bottom: 300px;
}

.general-settings-container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    height: 90vh;
    width: 95%;
}

.general-settings-content-half {
    width: 630px;
    margin-bottom: 30px;
}

.gen-set-colOLD {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 650px;
    background-color: #051828;
    border-radius: 18px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
    overflow-y: scroll;
}

/* Bruges af time rapporter */
.gen-set-top { 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    /*margin-left: 10px;
    margin-right: 10px;*/
    margin-bottom: 10px;
    position: sticky;
    top: 0;
    z-index: 99;
}

.gen-set-top h4 {
    font-weight: 500;
    margin-top: -10px;
}

.setup-top-container .gen-set-top {
    justify-content: flex-start;
}

.gen-set-select-team-new {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.gen-set-team-text {
    margin-top: -10px;
    margin-bottom: -10px;
}
.general-top-container {
    /*display: flex;
    flex-direction: row;
    justify-content: space-between;*/
    width: 1380px;
}

.general-top-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 1380px;
}

.gen-set-top-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #54616C;
    position: sticky;
    top: 0;
    background-color: #051828;
    z-index: 99;
}

.top-row-1 {
    display: flex;
    flex-direction: row;
    justify-content: start;
    width: 100%;
}

.top-row-2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 35em;
    height: 75px;
}

/*.gen-set-top {
    font-weight: 500;
    text-transform: uppercase;
}*/

.gen-set-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.gen-set-mid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.gen-set-bot {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    height: 10%;
    padding-top: 10px;
}

/* General Settings - Slut */


/* OrderSheet - Start */

.hasDatepicker {
    /*background-color: #0B566E;*/
    height: 20px;
    /*color: var(--color-white);*/
    font-size: 15px;
}

#ui-datepicker-div {
    background-color: #09394E;
    color: var(--color-white);
}

.ui-datepicker-title {
    border: 0.5px solid #072437;
    color: #072437;
}

.ui-datepicker-next, .ui-datepicker-prev {
    border: 0.5px solid #072437;
}

/* OrderSheet - Slut */


/* Dashboard - Start */

.dashboard-top-row {
    display: flex;
    flex-direction: column;
    background-color: #051828;
    width: 100%;
    height: 50%;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 18px;
}

.dashboard-graph-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
}

rect {
    background-color: transparent;
}

text {
    color: var(--color-white);
}

.grayText {
    color: var(--color-gray);
    font-style: normal;
    text-decoration: none;
    text-Align: left;
    padding-bottom: 15px;
}

#curve_chart, #curve_chart2, #curve_chart3 {
    height: 250px;
}

.dashboard-bot-row {
    display: flex;
    flex-direction: column;
    background-color: #051828;
    width: 100%;
    height: 50%;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 18px;
}

/* Dashboard - Slut */


/* System Text - Start */

.system-txt-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.system-txt-col1 {
    display: flex;
    flex-direction: column;
    width: 65%;
    padding-top: 15px;
    gap: 15px;
}

.system-txt-note {
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
    width: 450px;
    height: 250px;
    border: 1px solid var(--color-black);
    -webkit-border-radius: 8px;
}

.system-txt-col2 {
    display:flex;
    flex-direction: column;
    width: 35%;
    gap: 15px;
    padding-top: 15px;
}


/* System Text - Slut */

/* Switch button - Start */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: -1px;
    left: 0;
    right: -5px;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    border: 1px solid #84c375;
    background-color: #e3fbc7;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    background-color: #84c375;
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  /* Switch button - End */


@media only screen 
    and (min-width : 2560px) 
    and (max-height : 1440px) {


   .customer-container {
       width: 80%;
   }

   #curve_chart, #curve_chart2, #curve_chart3 {
       height: 400px;
       width: 500px;
   }



}


@media only screen 
    and (max-width : 1850px) {

    .container-items-row {
        flex-direction: column;
    }

    .signin-field-box {
        width: 95%;
        margin-left: 10px;
    }

    .systemtext-settings-right {
        line-height: unset;
        align-items: flex-start !important;
    
    }
    
    .systemtext-settings-right-input, .systemtext-settings-right-input2 {
        margin-left: unset;
        align-items: flex-start !important;    
    }
    
}


/* Responsiv: Ipad Air - Rotation: Landscape */

@media only screen 
   and (max-width : 1180px) 
   and (max-height : 820px) {


    /* Standarder - Start */

    /* Knapper: Login */
    #login-btn {
        font-size: 18px;
        font-weight: 500;
        color: var(--color-white);
        background: rgb(72,178,181);
        background: linear-gradient(260deg, rgba(72,178,181,1) 0%, rgba(70,179,150,1) 100%);
        border: none;
        border-radius: 20px;
        padding: 8px 45px;
        cursor: pointer;
    }

    /* Knapper: Logud */
    .logout-btn {
        width: 100px;
        height: 30px;
        border: none;
        border-radius: 25px;
        font-size: 16px;
        color: var(--color-black);
        background-color: var(--color-white);
        cursor: pointer;
    }

    .delete-btn {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 14px;
    }
    
    /* Overskrifter */

    h3 {
        font-size: 15px;
    }

    h4 {
        font-size: 14px;
        font-weight: 600;
        color: var(--color-white);
    }

    h5 {
        font-size: 13px;
        font-weight: 500;
        color: var(--color-white);
    }

    /* Input */

    .small-input {
        width: 100%;
    }

    /* Standarder - Slut */


    /* Menu: Start */

    .menu-logo {
        font-size: 16px;
    }

    .MenuText {
        font-size: 15px!important;
    }

    .error-report {
        font-size: 14px;
    }

    .MenuMarkSubLeft, .MenuMarkSub, .MenuMarkSubRight  {
        padding: 20px 20px;
    }

    /* Menu: Slut */


    /* Bruger administration: Start */

    .gen-set-col {
        display: flex;
        flex-direction: column;
        height: 98%;
        width: 90%;
        background-color: #051828;
        border-radius: 18px;
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 20px;
        overflow-y: scroll;
    }

    .UserAdminOverview {
        display: flex;
        flex-direction: column;
        width: 95%;
        height: 90%;
        border-radius: 18px;
        background-color: #05192B;
        color: var(--color-white);
        overflow-y: scroll;
    }

    .user-admin-h3 {
        font-size: 17px;
    }

    .admin-user-p {
        font-size: 16px;
    }

    .gen-set-bot {
        height: 150px;
    }
    
    /* Bruger Administration - Slut */
    

    /* Dashboard - Start */

    .dashboard-container1 {
        width: 28%;
        height: auto;
    }

    defs {
        width: 400px;
    }

    /* Dashboard - Slut */


    /* General Settings - Ipad Air - Start */ 

    .general-list-rowsOLD {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* General Settings - Ipad Air - Slut */


    /* Orderedit - Ipad Air - Start */

    .top-row-2 {
        justify-content: center;
    }
 
    .count-headline {
        margin-left: 62px;
    }

    .pers-count-div {
        width: 200px;
    }

    #prodIDNew1, #prodIDNew2, #prodIDNew3, #prodIDNew4, #prodIDNew5 {
        width: 150px;
    }

    #productAmountNew1, #productAmountNew2, #productAmountNew3, 
    #productAmountNew4, #productAmountNew5 {
        margin-left: 50px;
    }

    .order-lines-amount {
        width: 55%;
    }

    .customer-row {
        width: 100%;
        margin-top: 20px;
    }

    /* Orderedit - Ipad Air - Slut */
    

    /* Customers - Ipad Air - Start */

    .setup-container-2 {
        gap: 10px;
        width: 100%;
    }

    .cust-container-col1 {
        height: 100%;
        width: 50%;
    }

    .setup-container-orders {
        width: 98%;
    }

    .gen-set-top {
        margin-left: 0px;
    }

    .UserAdminNote {
        width: 400px;
    }

    /* Customers - Ipad Air - Slut */


    /* Products Setup - Ipad Air - Start */

    .products-container {
        margin-left: 10px;
    }

    .products-edit-container {
        margin-left: 10px;
    }

    .ingridient-container {
        margin-right: 10px;
    }
    
    /* Products Setup - Ipad Air - Slut */


    /* Menu Templates - Ipad Air - Start */

    .menu-temp-row2 {
        height: 70%;
    }

    /* Menu Templates - Ipad Air - Slut */


    /* Category Setup - Ipad Air - Start */

    .setup-bot-container {
        width: 70%;
    }

}

/* Responsiv: Samsung Tab2- Rotation: Landscape */
@media only screen 
    and (max-width : 1024px) {

    body {
        zoom: 115%;
    }

    .frontShadow {
        width: 71vw;
        Margin-left: -130px;

    }

    .div-QR {
        display: none;
    }

    .MainContent {
        height: 100vh;
    }
    .frontContentBox {
        flex-direction: column;
        width: 66vw;
    }

    .frontBox {
        width: 63vw;
        margin-bottom: 15px;
    }

    .signinShadow {
        width: 60vw; /* 71vw */
    }

    .signinShadowBoxes {
        flex-direction: column;
        justify-content: space-evenly;
        height: 100vh;
        margin-top: 22px;
    }

    .signinContent {
        min-height: 72%;
    }

    .signinQRBox {
        width: 71vw;

    }

}
