html, body {
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
    box-sizing: border-box;
}

BODY
{
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
    background: rgb(20,49,75);
    background: linear-gradient(180deg, rgba(20,49,75,1) 0%, rgba(10,39,64,1) 100%);
	font-family: Arial, Helvetica, sans-serif;
	Font-Size: 15px;
	color: white;
}


.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 */

    /* "blå" input felter*/
    .input-blue {
        font-size: 16px;
        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: white;
        background-color: rgb(21,52,80);
    }

    /* Små blå input felter */
    .small-input {
        height: 22px;
        width: 150px;
        padding-left: 10px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        color: white;
        background: rgb(21,52,80);
        background: linear-gradient(90deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 35%);
    } 

    /* korte Select felter f.eks. ingredienser */
    .select-blue {
        font-size: 18px;
        color: white;
        background: rgb(21,52,80);
        background: linear-gradient(90deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 35%);
        border: none;
        border-radius: 8px;
        height: 36px;
        width: 40%;
        padding-left: 15px;
        margin-top: 5px;
    }

    .select-blue option{
        color: white;
        background-color: rgb(21,52,80);
    }

    .select-template {
        font-size: 18px;
        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: white;
        background: rgba(24,142,152,1);
        border: none;
    }

    /* lange Select felter f.eks. bruger admin */
    .select-blue-long {
        font-size: 17px;
        color: white;
        background: rgb(21,52,80);
        background: linear-gradient(90deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 35%);
        border: none;
        border-radius: 8px;
        height: 40px;
        width: 100%;
        padding-left: 15px;
    }

    .select-blue-long option{
        color: white;
        background-color: rgb(21,52,80);
    }

    .select2-selection__rendered {
        width: auto;
        color: white!important;
        border: none;
        background: rgb(21,52,80);
        background: linear-gradient(90deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 35%);
    }

    .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;
    }

    .background-color {
        background-color: rgb(255, 166, 0);
    }

    /* input: Amounts */
    .amount-input {
        height: 36px;
        width: 20%;
        border-radius: 8px;
        border: none;
        padding-left: 15px;
        font-size: 18px;
        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: 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: white;
        margin-left: 10px;
        background-color: transparent;
    }

    .input-checkbox {
        width: auto;
        height: 30px;
    }

    /* Checkbox: Checked */
    .input-blue[type="checkbox"]:checked {
        accent-color: #1692bb;
    }

    /* Notefelt */
    .UserAdminNote {
        background: rgb(21,52,80);
        background: linear-gradient(0deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 100%);
        color: white;
        border-radius: 10px;
        padding-left: 10px;
        margin-bottom: 20px;
        width: 550px;
        height: 180px;
        border: 0.5px solid white;
    }

    /* (Bliver kun brugt på UserAdmin edit) */
    .UserAdminNote2 {
        background-color: #0B566E;
        color: white;
        padding-left: 10px;
        margin-bottom: 20px;
        border: 0.5px solid white;
    }

    .UserAdminNote:focus {
        outline: none;
        border-color: white;
        box-shadow: 0 0 10px #719ECE;
    }

    .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: white;
        border-radius: 10px;
        padding-left: 10px;
        margin-bottom: 20px;
        width: 250px;
        height: 50px;
        border: 0.5px solid white;
    }

    /* Knapper: Gem */
    .save-btn {
    font-size: 18px;
    font-weight: 500;
    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: Gem */
    .add-btn {
        width: auto;
        height: 35px;
        border: none;
        border-radius: 18px;
        font-size: 18px;
        color: white;
        padding-left: 15px;
        padding-right: 15px;
        background: rgb(11,86,112);
        background: linear-gradient(180deg, rgba(11,86,112,1) 0%, rgba(24,142,152,1) 100%);
        cursor: pointer;
        text-decoration: none;
        line-height: 2;
    }

    /* Knapper: Slet */
    .delete-btn {
        width: auto;
        height: 35px;
        border: none;
        border-radius: 18px;
        font-size: 18px;
        color: white!important;
        padding-left: 15px;
        padding-right: 15px;
        background: rgb(255,46,46);
        background: linear-gradient(260deg, rgba(255,46,46,1) 0%, rgba(255,143,47,1) 100%);
        cursor: pointer;
        text-decoration: none;
        line-height: 2;
    }

    /* Knapper: Login */
    #login-btn {
        font-size: 18px;
        font-weight: 500;
        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: 40px;
        border: none;
        border-radius: 25px;
        font-size: 18px;
        color: black;
        background-color: white;
        cursor: pointer;
    }


    /* Dropdowns */
    .input-dropdown {
        font-size: 17px;
        color: white;
        background-color: #0B566E;
        border: none;
        padding-top: 5px;
        padding-left: 5px;
        height: 30px;
        width: 97%;
    }
    
    /* Overskrifter */
    h4 {
        font-size: 18px;
        font-weight: 600;
        color: white;
    }

    h5 {
        font-size: 15px;
        font-weight: 500;
        color: white;
    }



/* Standarder - Slut */


/* Login første skærm */

.wrapper-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

/* login - Start */

.TopLogin {
    Margin-Top: 10px;
    Margin-Bottom: 10px;
    Margin-Bottom: 10px;
    Margin-Left: auto;
    Margin-Right: auto;
    Max-Height: 400px;
    Text-Align: Center;
}

.TopLogin h2{
    color: white;
    font-size: 50px;
}

.TopLogin h2{
    color: white;
    font-size: 50px;
}

.Top {
    Margin-Top: 10px;
    Margin-Bottom: 10px;
    Margin-Bottom: 10px;
    Margin-Left: auto;
    Margin-Right: auto;
    Max-Height: 200px;
    Text-Align: Center;
}


.TopLogo {
    Margin-Top: 30px;
    Margin-Bottom: 30px;
    Max-Height: 200px;
}


.Logo {
    display: none;
    display: none;
    Margin-Top: 30px;
    Margin-Bottom: 30px;
    Max-Height: 200px;
}

.LostLink {
    color: white;
    text-decoration: none;
}

.LoginTopScreen {
    Margin-Left: auto;
    Margin-Right: auto;
    Text-Align: Center;
}
.LogoLogin {
    Height: 400px;
    display: none;
}

.LoginTitle {
    font-size: 20px;
    color: white;
}

#LoginInput {
    background-color: #09394E;
    color: white;
    border: none;
    border-radius: 25px;
    height: 40px;
    width: 230px;
    padding-left: 20px;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
}

#LoginInput:focus {
    background-color: #09394E;
    color: white;
    border: none;
    border-radius: 25px;
}

#LoginInput::placeholder {
    color: #6B8895;
    opacity: 1;
    font-size: 16px;
}

#LoginButton {
    text-align: left;
    background-color: #051126;
    color: #fff;
    border: none;
    border-radius: 25px;
    height: 40px;
    width: 230px;
    padding-left: 20px;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 16%));
    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 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: black;
    background-color: white;
    border: 1px solid 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: #fff;
    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 white;
}

/* Logout box - Slut */


/*** Menu - Start ***/

.menu-container {
	Display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    bottom: 0;
    width: 15vw;
    background-color: #051828;
    padding-left: 25px;
}

.menu-top {
    display: flex;
    flex-direction: row;
    justify-content: start;
    width: 100%;
    height: 200px;
    padding-top: 25px;
}

.menu-container ul {
    padding: 0;
    margin: 0;
}

.menu-logo {
    font-size: 22px;
    font-weight: 600;
}

#menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    list-style:none;
    height:680px;
    width: 100%;
    line-height: 60px;
}

.menu-bot {
    display: flex;
    flex-direction: column-reverse;
    justify-content: end;
    align-items: start;
    width: 100%;
    height: 200px;
    padding-bottom: 25px;
}

.menu-bot ul {
    list-style: none;
}

A.MenuText
{
    font-size: 20px;
    COLOR: white;
    TEXT-DECORATION: none;
}

.MenuText2 {
    font-size: 18px;
    color: white;
    text-decoration: none;
}


A.MenuText:hover
{
    COLOR: white;
    TEXT-DECORATION: none;
}

.menusub-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 85vw;
    height: 45px;
    background: rgb(21,52,80);
    background: linear-gradient(180deg, rgba(21,52,80,1) 0%, rgba(70,106,137,1) 100%);
}

.MenuMark {
    background: rgb(11,86,112);
    background: linear-gradient(180deg, rgba(11,86,112,1) 0%, rgb(20,49,75) 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 {
    background: rgb(11,86,112);
    background: linear-gradient(180deg, rgba(11,86,112,1) 0%, rgba(24,142,152,1) 100%);
    width: 100%;
    margin-left: -22px;
    text-align: left;
    padding-left: 22px;
}

.error-report {
    color: white;
    font-size: 18px;
}

/*** Menu - Slut ***/


/*** User admin - Start ***/

.uder-admin-container {
    display: flex;
    flex-direction: row;
    justify-items: start;
    align-items: center;
    width: 95%;
    height: 100%;
}

.UserAdminOverview {
    display: flex;
    flex-direction: column;
    width: 75%;
    height: 80%;
    border-radius: 18px;
    background-color: #05192B;
    color: white;
    overflow-y: scroll;
    overflow-x: hidden;
}

.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: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    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: 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 white;
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
}

.UserAdminButton {
    margin-top: 5px;
    margin-bottom: 5px;
}

.UserAdminButton input {
    font-size: 16px;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
}

.UserAdminButton .back-button {
    font-size: 16px;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
}

.user-admin-button-row .save-button {
    font-size: 16px;
    color: black;
    background-color: white;
    border: 1px solid white;
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
} 


/*** User admin - Slut ***/


.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%;
}


/*** 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 #fff;
}

.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: #fff;
}

.add-volume-types {
    height: 40px;
    width: 200px;
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    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: #fff;
}

.input-title {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    padding-left: 6px;
    width: 40px;
}

.input-title-border {
    background-color: transparent;
    border: 1px solid white;
    color: #fff;
    font-size: 16px;
    padding-left: 6px;
    width: 40px;
  }

.input-title:focus {
    outline: none;
}

/*** Menu Template - Slut ***/


/*** Product Category - START ***/

.setup-container {
    display: flex;
    flex-direction: column;
    height: 90vh;
    width: 95%;
    gap: 50px;
}

.setup-top-container {
    display: flex;
    flex-direction: column;
    height: 340px;
    width: 100%;
    background-color: #051828;
    border-radius: 18px 0px 0px 18px;
}

.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;
    gap: 5px;
    height: 100%;
    width: 100%;
    margin-left: 5px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.cat-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: #fff;
    background-color: #0F2A41;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
}

.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: end;
    height: 35px;
    padding-right: 20px;
}

.cat-col2-bot {
    display: flex;
    flex-direction: column;
    margin: 40px 20px 40px 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid 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 white;
    border-radius: 20px;
    cursor: pointer;
    background: white;
    color: black;
} 

/*** Product Category - END ***/


/*** Product Setup - START ***/

.setup-container-2 {
    display: flex;
    flex-direction: row;
    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 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;
}

.ingredient-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%;
}

/*** Product Setup - END ***/


/*** Ingredients - START ***/

#ingredients-list {
    width: 250px;
    margin-left: 0;
}

.ingredients-btn {
    color: white;
    text-decoration: none;
}

.ingr-bot-container-items {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 15px;
    height: 275px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 20px;
}

.container-items-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.small-input option {
    color: white;
    background: rgb(21,52,80);
}

.ingredient-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

/*** Ingredients - END ***/


/*** OrderEdit - START ***/

.setup-container-3 {
    display: flex;
    flex-direction: row;
    height: 95%;
    width: 100%;
    gap: 50px;
}

.temp-col1-bot #select2-customerID-container {
    color: black;
}

.temp-col1-bot span {
    color: black;
    background-color: #0B566E;
}

.select2-results__option {
    color: black;
}

#select2-custDeliveryID-container {
    color: #000000;
}

#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 white;
}

#productPriceNew1, #productPriceNew2, #productPriceNew3, #productPriceNew4, #productPriceNew5 {
    margin-left: 65px;
    border: 1px solid white;
}

#customerNote {
    background: rgb(21,52,80);
    background: linear-gradient(0deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 100%);
    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;
}

.orders-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%;
}

.order-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;  
}

.orders-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;
}

.date-time-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 25px;
}


/*** OrderEdit - Slut ***/


/*** Orders - Start ***/

.setup-container-orders {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    height: 90vh;
    width: 95%;
    gap: 50px;
}

.orders-container {
    background-color: #051828;
    height: 95%;
    width: 90%;
    border-radius: 18px 0px 0px 18px;
    margin-left: 15px;
    margin-right: 15px;
    overflow-y: scroll;
}

.orders-set-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 100%;
    border-radius: 18px 0px 0px 0px;
    background: rgb(21,52,80);
    background: linear-gradient(0deg, rgba(21,52,80,1) 0%, rgba(28,73,111,1) 100%);
} 

.orders-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%); */
}

.sticky-header {
    position: sticky;
    top: 0;
}

.orders-list-rows {
    table-layout: fixed;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.orders-list-rows td {
    width: 14%;
    height: 25px;
    font-size: 15px;
}

.orders-list-rows tr:hover {
    cursor: pointer;
    background: rgb(0,106,139);
    background: linear-gradient(180deg, rgba(0,106,139,1) 0%, rgba(66,132,154,1) 100%);
}

.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 white;
}

.temp-col1-custlist button {
    height: 40px;
    padding: 10px 10px;
    font-size: 16px;
    color: black;
    background-color: white;
    border: 1px solid #fff;
    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: 55%;
    gap: 10px;
    padding-right: 10px;
}

.search-row-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.input-search {
    background-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: 35px;
    height: 100%;
    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;
}

.cust-form {
    display: flex;
    flex-direction: column; 
    padding-left: 20px;
    padding-right: 20px;
    height: 95%;
    width: 90%;
    border-radius: 18px;
    background-color: #051828;
    overflow-y: scroll;
    padding-bottom: 20px;
}

.customer-col-1 {
    display: flex;
    flex-direction: column;
}

table input {                                   
    padding-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 #fff;
    border-spacing: 0px;
}

.td-top-border {
    border-top: 2px solid #fff !important;
}


/*** Print af lister - Slut ***/

/*** Print styring - Start ***/
@media print {

    BODY {
        overflow-x: visible !important;
        Margin-left: 35px;
    }

    H3 {
        Color: #000;
    }
    
    table {
        width: 100%;
    }

    .background-color {
        -webkit-print-color-adjust:exact !important;
        print-color-adjust:exact !important;
    }

    .dayRecipes-table, .dayRecipes-container > Table > tbody > tr > td {
        border-collapse: collapse !important;
        border: 1px solid #000;
    }
    .orderSheet-container > Table > tbody > tr > td, .dayRecipes-container > Table > tbody > tr > td {
        color: #000;
    }
    
    .td-top-border {
        border-top: 2px solid #000 !important;
    }

    div.pagebreak { /* Kræver DIV */
        clear: both;
        page-break-after: always;
		page-break-inside: avoid;
        -webkit-region-break-inside: avoid;
    }

    .noprint, .hidden-print {
        display: none;
    }
}
/*** Print styring - Slut ***/


/* General Settings - Start */

.general-settings-container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    height: 90vh;
    width: 95%;
}

.gen-set-col {
    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;
}

.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;
    border-bottom: 1px solid #54616C;
    position: sticky;
    top: 0;
    background-color: #051828;
    z-index: 99;
}

.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 h3 {
    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%;
}

/* General Settings - Slut */


/* OrderSheet - Start */

.hasDatepicker {
    background-color: #0B566E;
    height: 20px;
    color: white;
    font-size: 15px;
}

#ui-datepicker-div {
    background-color: #09394E;
    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: white;
}

#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 {
    background: rgb(21,52,80);
    background: linear-gradient(0deg, rgba(21,52,80,1) 0%, rgba(50,98,139,1) 100%);
    color: white;
    border-radius: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
    width: 450px;
    height: 250px;
    border: none;
}

.system-txt-col2 {
    display:flex;
    flex-direction: column;
    width: 35%;
    gap: 15px;
    padding-top: 15px;
}


/* System Text - Slut */



/* 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: 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: black;
        background-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: white;
    }

    h5 {
        font-size: 13px;
        font-weight: 500;
        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: white;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .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-rows {
        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%;
    }

    .orders-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%;
    }

}


@media only screen 
   and (min-width : 2560px) 
   and (max-height : 1440px) {


    .orders-container {
        width: 80%;
    }

    #curve_chart, #curve_chart2, #curve_chart3 {
        height: 400px;
        width: 500px;
    }



   }