:root {
    --white:#ffffff;
    --light-gray: #f4f4f4;
    --pale-gray:#dcdfe3;
    --dark-blue: #364751;
    --green: #74b72a;
    --blue: #0081c2;
    --light-blue: #dde6ed;
    --yellow: #ffdf3d;
    --light-orange: #ffc87f;
    --red: #990050;
    --saira-regular: farofont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-spacing: 0;
    text-decoration: none;
    list-style-type: none;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
    scrollbar-gutter: unset;
}

body {
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
    font-family: var(--saira-regular);
}

input,
button,
textarea,
select {
    font: inherit;
}

.shop-layout {
    width: 100%;
}

.main {
    min-height: calc(100% - 207px); /* Komplette Höhe minus Header und Footer */
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 2rem; /* Instead of 'padding: 2rem 0;' to avoid overrides */
    padding-bottom: 2rem; /* Instead of 'padding: 2rem 0;' to avoid overrides */
    margin: 0 auto;
}

button, a {
    cursor: pointer;
}

.icon {
    height: 55px;
}

.row {
    display: flex;
    align-items: center;
}

.row-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.col {
    display: flex;
    flex-direction: column;
}

.hide {
    display: none;
}

/* Page Wrapper */
.gray-box {
    width: 100%;
    font-size: 11pt;
    padding: 30px;
    position: relative;
    top: -55px;
    margin-inline: auto;
    justify-content: center;
    background-color: var(--light-gray);
    color: var(--dark-blue);
    box-shadow: rgba(50, 50, 93, 0.25) 0 2px 5px -1px, rgba(0, 0, 0, 0.3) 0 1px 3px -1px;
}

.wrap {
    gap: 25px;
    justify-content: space-between;
}

/* Page Header */
.txt-1 {
    font-weight: 600;
}

.txt-1 a:visited {
    color: var(--dark-blue);
}

.txt-2 {
    font-weight: 600;
    font-size: 15pt;
    margin-top: 30px;
    margin-bottom: 15px;
}

.txt-3 {
    margin: 0 0 20px;
}

/* Page Header (new) */
.gray-box .breadcrumbs {
    font-weight: 600;
    padding: 20px 30px;
}

.gray-box .breadcrumbs a:visited {
    color: var(--dark-blue);
}


.gradient-btn {
    border: 0;
    outline: 0;
    color: #ffffff;
    height: 27px;
    padding: 2px;
    font-size: 11pt;
    font-weight: 600;
    text-align: center;
    border-radius: 3px;
    justify-content: center;
    background: linear-gradient(90deg, rgba(54, 71, 81, 1) 5%, rgba(102, 127, 140, 1) 50%, rgba(54, 71, 81, 1) 96%);
}

.gradient-btn:hover {
    background: var(--dark-blue);
}

/*square*/
.square {
    border-radius: 2px;
    display: inline-block;
    margin: 0;
    width: 10px;
    height: 10px;
}


.green-square {
    background: var(--green);
}

.blue-square {
    background: var(--blue);
}

.yellow-square {
    background: var(--yellow);
}

.red-square {
    background: var(--red);
}

/*************** popup ******************/

.overlay {
    position: fixed;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin-inline: auto;
    padding-top: 0;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    z-index: 999;
    display: none;
}

.overlay .row {
    justify-content: space-between;
}

.overlay-popup, .active-popup, .inactive-popup, .delete-popup {
    max-width: 600px;
    width: 80%;
    padding: 10px 40px;
    position: relative;
    background: #fff;
    margin: 20px auto;
    border: 1px solid #375470;
    border-radius: 6px;
    display: none;
}

.overlay-button, .popup-cancel-btn, .popup-active-btn, .popup-inactive-btn, .popup-delete-btn {
    width: 250px;
    margin: 15px 0;
}

.edit-acc-btn, .del-account-btn {
    background-color: transparent;
}

.overlay .square {
    margin-left: 6px;
    margin-right: 4px;
    width: 10px;
    height: 10px;
}

.overlay .username-txt {
    padding: 15px 0;
}

.overlay .note-txt {
    margin: 30px 0 20px;
}

.overlay .username-txt span {
    font-weight: 600;
    margin-left: 30px;
}

.overlay h3 {
    margin: 10px 0;
}

/*end of popup*/

/* Menu */

.naz-menu {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: var(--saira-regular);
    text-decoration: none;
    box-sizing: border-box;
    border-spacing: 0;
    list-style-type: none;
}

.menu-list a {
    color: var(--dark-blue);
}

.menu-list {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: var(--saira-regular);
    text-decoration: none;
    box-sizing: border-box;
    border-spacing: 0;
    list-style-type: none;
    display: none;
    position: fixed;
    top: 0;
    box-shadow: rgb(60 64 67 / 30%) 0 1px 2px 0, rgb(60 64 67 / 15%) 0 2px 6px 2px;
    white-space: nowrap;
    font-size: 11pt;
    z-index: 99999;
    cursor: pointer;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 95%;
    min-width: 170px;
    height: auto;
    -ms-overflow-style: scrollbar;
    background-color: var(--light-gray);
    color: var(--dark-blue);
}

.menu-list * {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: var(--saira-regular);
    text-decoration: none;
    box-sizing: border-box;
    border-spacing: 0;
    list-style-type: none;
}

.menu-list img {
    height: 18px;
    margin-top: -2px;
}

.menu-list li {
    margin: 0;
    border: 0;
    font-family: var(--saira-regular);
    text-decoration: none;
    box-sizing: border-box;
    border-spacing: 0;
    padding: 7px 61px 7px 10px;
    list-style-type: none;
    font-size: 11pt;
}

.menu-list li:hover {
    background-color: var(--pale-gray);
}

.menu-list a.external li {
    background: url(../images/menu/external.svg) no-repeat center right;
    background-size: 1em;
    background-position-x: calc(100% - 12px);
}

.menu-list a.external li:hover {
    background: var(--pale-gray) url(../images/menu/external.svg) no-repeat center right;
    background-size: 1em;
    background-position-x: calc(100% - 12px);
}

.menu-list .row {
    display: flex;
    align-items: center;
    height: auto;
}

.menu-list .col {
    display: flex;
    flex-direction: column;
}

.error {
    display: block;
    border: 1px solid darkred;
    border-radius: 3px;
    padding: 10px;
    margin: 10px 0;
}

/* Tabs */
.tabs {
    display: flex;
    align-items: center;
    list-style-type: none;
    /*width: 1100px;*/
}

.tab {
    padding: 11px 30px 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15pt;
    background-color: var(--light-gray);
    color:var(--dark-blue);
}

.tab.active {
    background-color: white;
}

.active[data-tab-content] {
    display: block;
}

[data-tab-content] {
    display: none;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: white;
}

.tab-content-box {
    padding: 30px;
}

input.calendarInput {
    background-image: url(../images/pages/main/Calendar.svg);
    background-repeat: no-repeat, repeat;
    background-position: right 0.3em top 50%, 0 0;
    background-size: 1.6em auto, 100%;
}

/* EPREL */
a.productImage {
    display: inline-block;
    width: 170px;
    height: 191px;
    overflow: hidden;
}

.eprel {
    position: absolute;
    cursor: pointer;
    width: 50px;
    top: 0;
    right: 0;
}

.login-jpg {
	width: 100%;
    margin-top: -2rem;
}

.start {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

.start__listing {
    width: 100%;
}

/* Benutzerdaten ändern */
.change-user-data-gray-box {
    max-width: 1050px;
}


/* Ihre Bestellungen */
.oders-gray-box {
    max-width: 1100px;
}
/* <= 1400px */
@media screen and (max-width: 87.5rem) {
    .main {
        min-height: calc(100% - 258px); /* Komplette Höhe minus Header und Footer */
    }
}

/* <= 1200px */
@media screen and (max-width: 75rem) {
    .main {
        min-height: calc(100% - 304px); /* Komplette Höhe minus Header und Footer */
        overflow-x: auto;
    }
}


/* <= 992px  */
@media screen and (max-width: 62rem) {
     .main {
        min-height: calc(100% - 210px); /* Komplette Höhe minus Header und Footer */
     }

    .login-jpg {
        display: none;
    }

    .gray-box {
        top: 0;
    }
}

/* <= 768px - Mobile und ipad hochkant */
@media screen and (max-width: 48rem) {
    .main {
        min-height: calc(100% - 307px); /* Komplette Höhe minus Header und Footer */
    }
}

/* <= 576px - Mobile */
@media screen and (max-width: 36rem) {
    .main {
        min-height: calc(100% - 433px); /* Komplette Höhe minus Header und Footer */
    }

    .wrap {
        flex-wrap: wrap;
        justify-content: center;
    }
}