﻿* {
    font: 13px / 1.5rem Asap, Arial, Helvetica, "Microsoft Yahei", "Hiragino Sans GB", SimSun, STXihei, Amiri, sans-serif;
    box-sizing: border-box;
}

/* vietnamese */
@font-face {
    font-family: "Asap";
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUcJmmWkA4.woff2) format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
    font-family: "Asap";
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUcJ2mWkA4.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: "Asap";
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/asap/v26/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUcKWmW.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/** COLORS **/
:root {
    --blue-secondary: #1d388b;
    --blue-primary: #003b73;
    /* #00005A, #003b73 */
    --teal-primary: #003a81;
    --teal-secondary: #003a81;
    --grey: rgb(152, 158, 163);
    --primary-bg: #FFF;
    --white: #FFF;
    --black: rgb(48, 48, 48);
    --red: #DC4C64;
    --green: #14A44D;

    /** TEXT COLORS **/
    --text-color-black: #303030;
    --text-color-grey: rgb(152, 158, 163);
    --text-color-white: #FFF;
    --text-color-blue: #005597;
    --text-color-green: #14A44D;
    --text-color-red: #bf0000;
    --text-color-footer: #a4afd0;

    /** INDICATOR: COLOR CODES peach #ffe4b8**/
    --beige: #e7e5a5;
    --color-code-black: #000000;
    --color-code-blau: #55BCEB;
    --color-code-braun: #B07660;
    --creme: #FFE4B8;
    --color-code-grey: #CFD4D8;
    --color-code-grün: rgb(159, 213, 188);
    --color-code-lila: #9e9ece;
    --color-code-aubergine: #9A9BCD;
    --color-code-orange: #F68933;
    --color-code-pfirsich: #ffe4b8;
    --color-code-rosa: #F58F9B;
    --color-code-red: #FF0000;
    --color-code-weiß: #FFFFFF;
    --color-code-gelb: #FFE895;

    --container-width: 1440px;
}

/** MAIN LAYOUT **/
.container {
    max-width: var(--container-width);
    padding-left: .5rem;
    padding-right: .5rem;
    margin: auto;
    position: relative;
}

.table-container {
    overflow-x: auto;
}

.card div .col-4 {
    width: 40%;
}

.fab-btn {
    display: none;
}

/** TABLETS **/
@media screen and (max-width: 1128px) and (min-width: 641px) {
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .backToTop {
        right: 50px;
    }

    .card-grid {
        justify-content: center
    }
}

/** DESKTOP **/
@media screen and (min-width: 1008px) {
    .desktop {
        display: flex !important;
    }

    .mobile {
        display: none !important;
    }

    .backToTop {
        right: 50px;
    }
}

html,
body {
    padding: 0px;
    margin: 0px;
    background-color: var(--primary-bg);
}

/* BUTTONS */
input[type=file]::file-selector-button,
.btn {
    color: var(--blue-primary);
    background: inherit;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid var(--blue-primary);
    border-radius: 0.25rem;
    display: inline-block;
    padding: .5rem 1rem .5rem;
    cursor: pointer;
}

.btn.red {
    color: var(--red);
    background: transparent;
    border: 1px solid var(--red);
}

.btn.red:hover {
    color: var(--white);
    background: var(--red);
    border: 1px solid var(--red);
}

input[type=file]::file-selector-button,
.btn.blue {
    color: var(--white);
    background: var(--blue-primary);
}

.btn.blue:disabled {
    color: var(--grey);
}

.btn:hover {
    text-decoration: underline;
}

.btn:hover:disabled {
    text-decoration: none;
}

.btn:hover {
    background-color: var(--blue-primary);
    color: var(--white);
}

.btn-list-container {
    position: relative;
    color: var(--blue-primary);
    background: inherit;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid var(--blue-primary);
    border-radius: 0.25rem;
    display: inline-block;
    cursor: pointer;
}

.btn-list-container>a {
    color: var(--blue-primary);
    display: inline-block;
    padding: .5rem 0 .5rem 1rem;
    border: 0;
}

.btn-list {
    padding: 3px;
    display: inline-block;
    height: 100%;
    padding: .5rem 1rem .5rem;
}

.btn-list a {
    margin-left: .5rem;
    margin-right: .5rem;
    padding-top: .5rem;
    border-top: 1px solid white;
}

.btn-list-container.blue {
    color: var(--white);
    background: var(--blue-primary);
}

.btn-list-container a {
    color: var(--white);
    display: inline-block;
}

.btn-list-container.blue a {
    color: var(--white);
}

.btn-list ul {
    display: none;
    position: absolute;
    padding: .5rem 0 .5rem .5rem;
    background: var(--blue-primary);
    top: 18px;
    right: -2px;
    left: -1px;
}

.btn-list:hover ul {
    display: block;
}

a {
    color: var(--blue-secondary);
    cursor: pointer;
    outline: medium none;
    text-decoration: none;
}

a:focus {
    color: var(--blue-primary);
    text-decoration: underline;
	outline: 1px dotted #0088FF;
	outline-offset: 3px;
}

a.no-hover:hover,
a.no-hover {
    color: inherit;
    text-decoration: none;
}

a span,
a i {
    color: var(--black);
}

.error,
.error * {
    color: var(--text-color-red) !important;
}

.success {
    color: var(--text-color-green);
}

p {
    line-height: 1.25rem;
    font-size: 1rem;
}

.whitetext {
    color: var(--text-color-white);
}

h1,
h2,
h3,
h4 {
    margin: 0px;
    padding: 0px;
}

h1 {
    font-size: 3.5rem;
    line-height: 4rem;
}

h2 {
    font-size: 2.375rem;
    line-height: 2.365rem;
}

h3 {
    font-size: 2rem;
    line-height: 2.1rem;
}

h4 {
    font-size: 1.6rem;
    line-height: 1.8rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1.rem;
}


form {
    margin: 0;
    display: inline;
}

.breadcrumbs i {
    color: var(--grey);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--grey);
    margin-left: 15px;
    line-height: 22px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--grey);
    display: inline-block;
    margin-top: 0.1rem;
}

.breadcrumbs a:hover {
    color: var(--text-color-black);
}

.breadcrumbs a svg {
    color: var(--text-color-black);
    display: inline-block;
    margin-top: 0.1rem;
}

.breadcrumbs a svg:hover {
    color: var(--grey);
}

.main_content {
    min-height: calc(100vh - 449px);
    margin-bottom: 50px;
    position: relative;
}

/** FOOTER */
#footer {
    color: #fff;
}

.footer-content {
	background-color: #003A81;
}

#footer .col2 {
    color: #FFF;
	display:flex; 
	justify-content: space-between;
	align-items: center;
}

#footer .col {
    color: #FFF;
    padding-bottom: 10px;
    padding-top: 10px;
}

#footer .col p {
    color: #FFF;
    margin: 10px 20px;
}

#footer a {
    color: #FFF;
}

#footer a:hover {
    color: #00abbd;
	text-decoration: none;
}

/*** TABLE ***/
table {
    width: 100%;
    border-spacing: 0;
}

table * {
    font-size: 0.9rem;
}

table th {
    padding: 10px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    line-height: 15px;
    empty-cells: show;
}

table caption {
    text-align: left;
    margin-bottom: .5rem;
    color: var(--blue-primary);
    font-size: 30px;
}

table tbody tr:nth-child(even),
table.highlight .disable-highlight:hover:nth-child(even) {
    background: var(--white);
}

table tbody tr:nth-child(odd),
table.highlight .disable-highlight:hover:nth-child(odd) {
    background: rgb(241, 245, 249);
}

table td {
    text-align: left;
    margin: 0px;
    padding: 6px 4px 6px 4px;
    empty-cells: show;
    height: 50px;
}

.form-group-label {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 1rem 1rem 1rem 0;
}

.form-group-label a {
    font-weight: 700;
}

table.highlight tbody tr:hover {
    background-color: #e2f3ff;
}

table.highlight td {
    text-align: center;
    vertical-align: middle;
}

table.tablesorter thead tr .header {
    background-image: url(/static/tena/assets/css/bg1.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    cursor: pointer;
    background-size: 22px 11px;
    padding-bottom: 15px;
}

table.tablesorter thead tr .headerSortUp {
    background-image: url(/static/tena/assets/css/asc.svg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 11px 11px;
}

table.tablesorter thead tr .headerSortDown {
    background-image: url(/static/tena/assets/css/desc.svg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 11px 11px;
}

td.action {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    /* TODO ADD FONT-SIZE*/
}

/*** Back to Top Button **/
.backToTop {
    background-color: var(--blue-primary);
    border-radius: 3px;
    bottom: 50px;
    color: var(--white);
    cursor: pointer;
    display: none;
    padding: 4px 15px 7px 15px;
    position: fixed;
    transition: all 0.2s ease;
    z-index: 80;
    transform: rotate(90deg);
    font-size: 2em;
}

.backToTop:after {
    content: "\2039";
}

.backToTop:hover {
    background-color: var(--blue-primary);
    color: var(--white);
    text-decoration: none;
}

/** INFO BOX */
.page-description,
.note {
    border: 1px rgba(0, 0, 0, .3) solid;
    border-radius: 3px;
    padding: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    width: 100%;
    /*test*/
    border: 1px rgba(99, 99, 99, 0.2) solid;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
}

.page-description h2,
.note h2 {
    margin-bottom: 1rem;
    margin-top: .5rem;
}

.page-description p,
.note p {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

/** CARD AND CARD-GRID */
.card-grid {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    transition: all 1.3s ease-in-out;
    overflow-y: clip;
    padding-bottom: 1rem;
    padding-top: 0.5rem
}

.card {
    overflow: hidden;
    width: calc((var(--container-width) / 5) - 1rem);
    padding: 1rem;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card.border.product {
    padding: 1rem;
}

.card.border {
    padding: 0 1rem 1rem 1rem;
    background-color: transparent;
    border-radius: .25rem;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
}

.card.border:hover {
    box-shadow: 2px 2px 10px rgb(0 0 0 / 35%);
}

.card h4 {
    width: 100%;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
}

.card.product h4 {
    text-align: center;
}

.card h5 {
    margin-top: .5rem;
    margin-bottom: .25rem;
    text-align: center;
}

.card p {
    margin-top: 0;
    margin-bottom: .1rem;
    width: 100%;
}

.card.product p {
    text-align: center;
}

.card ol {
    align-self: start;
    margin-top: 0px;
    padding-left: 20px;
}

.card ol * {
    font-size: 14px;
}

.card div {
    width: 100%;
}

.card label {
    display: block;
    margin-top: 5px;
    width: 100%;
    margin-bottom: 5px;
}

.card select,
.card input {
    display: block;
    width: 100%;
}

.card form {
    height: calc(100% - 2rem);
    width: 100%;
    padding-bottom: 4rem;
    position: relative;
}

.card .btn {
    margin-top: auto;
}

.report img {
    width: calc((var(--container-width) / 5) - 1rem);
}

.report>h4 {
    margin-bottom: 1rem;
}

.report a h4 {
    padding: 0 1rem 0 1rem;
}

.card form .btn {
    margin-top: 1rem;
    bottom: 0;
    position: absolute
}

div .red-card,
div .green-card {
    height: 75px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center
}

.red-card {
    background-color: #B81D13;
}

.green-card {
    background-color: #008450;
}

.red-card svg,
.green-card svg {
    font-size: 4rem;
    color: rgba(255, 255, 255, 1)
}


/* FORM / INPUTS **/
.form-group {
    margin-top: .5rem;
}

.form-card {
    background: #FFF;
    border: 1px rgba(99, 99, 99, 0.2) solid;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
    padding: 1rem;
    margin-top: 1rem;
}

.form-group.hide {
    display: none !important;
}

hr {
    opacity: 0.3;
    margin: 1rem;
}

.form-row {
    width: 100%;
    margin-bottom: .75rem;
    display: flex;
}

fieldset {
    border: rgba(0, 0, 0, .3) 1px solid;
    border-radius: 0.5rem;
}

.form-row>div {
    margin-left: .5rem;
    margin-right: .5rem;
    width: 400px;
    max-width: 400px;
    margin-bottom: 2px;
}

.form-row>div.full-width {
    width: 100%;
    max-width: 810px;
}

.form-row>div p {
    margin-bottom: 0;
    margin-top: 2px
}

label,
fieldset legend {
    font-weight: 700;
    font-size: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.wb {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.wb a {
    width: 100%
}

.stepper .stepper-input {
    height: 38px;
    background: #FFF;
    border: rgba(0, 0, 0, .3) 1px solid;
    padding: 6px 10px;
    border-radius: 0.25rem;
}

input[type=text],
input[type=password],
input[type=number],
textarea,
select {
    height: 38px;
    background: #FFF;
    border: rgba(0, 0, 0, .3) 1px solid;
    width: 100%;
    padding: 6px 10px;
    border-radius: 0.25rem;
}

.form-row div p {
    padding: 6px 10px;
}

input[type=text].readonly:not(.ignore),
input[type=password].readonly,
input[type=number].readonly,
textarea.readonly,
select.disabled {
    height: 38px;
    background: transparent;
    border: none;
    width: 100%;
    padding: 6px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    opacity: 1;
    color: black;
    cursor: default;
}



.stepper {
    margin: 0;
    width: 85px;
}

input[type=checkbox] {
    min-height: 1rem;
    min-width: 1rem;
    accent-color: var(--blue-secondary);
}

input[type=checkbox]:checked {
    color: red;
}

textarea {
    height: 125px;
}


/****** UTIL ******/
.col {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.category-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

div:first-child .category-title {
    margin-top: 1rem;
}

.category-title h2 {
    color: var(--text-color-black);
    margin-top: 1rem;
}


.col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.align-end {
    align-items: flex-end;
}

.mt {
    margin-top: 1rem;
}

.mt-05 {
    margin-top: 0.5rem;
}

.flex {
    display: flex;
}

.space-between {
    justify-content: space-between;
}

.gap05 {
    gap: 0.5rem;
}

.gap {
    gap: 1rem;
}

.wrap {
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: end;
}

.essity-logo {
    padding: 1rem;
}

.mt2 {
    margin-top: 2rem;
}

.mt4 {
    margin-top: 4rem;
}

.mb {
    margin-bottom: 15px;
}

.mb-0 {
    margin-bottom: 0px;
}

strong,
b {
    font-weight: bold;
}

.center {
    text-align: center;
    justify-content: center;
}

.textcolor-red,
.tc-red {
    color: var(--text-color-red);
}

.textcolor-green,
.tc-green {
    color: var(--text-color-green);
}

.tc-orange {
    color: orange;
}

/** Styling for lager page */
.error-field {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.error-field div {
    position: absolute;

}

#lager input {
    width: initial;
}

.error-field svg {
    color: var(--red);
    position: absolute;
    left: 10px;
    top: 30%;
}

/** Color indicator */
div.color-indicator {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: .25rem;
    border: 1px solid var(--black);
    margin: auto;
}

/** MODAL **/
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f8f8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.modal-footer {
    padding: 0 1rem 1rem 0;
}

.modal-header .close svg {
    height: 32px;
}

.jquery-modal.blocker.current {
    z-index: 100;
}

.close-modal {
    display: none !important;
}

.modal-header h3 {
    margin-top: 0;
    margin-bottom: 0;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal {
    border-radius: 0px;
    padding: 0px;
    overflow: auto;
    max-height: calc(100% - 40px);
}

.modal-content {
    padding: 0 1rem;
}

/*Small card*/
.small-card {
    width: 250px;
    height: 150px;
    padding: 1rem;
    border: 1px rgba(0, 0, 0, .1) solid;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: .5rem;
    /*test*/
    border-radius: 0.2rem;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
}

.small-card h4 {
    margin-top: 0;
    margin-bottom: 0;
}

.small-card .sub-title {
    margin-top: 0;
    opacity: 0.65;
    text-transform: uppercase;
}

/** slider **/
.slider {
    width: 100%;
    height: 265px;
    max-width: 350px;
    display: flex;
    gap: .5rem;
}

.slider .slider-list {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.slider .slider-list div {
    width: 4rem;
    height: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    padding: 0.3rem;
}

.slider .slider-list div.active {
    opacity: 1;
}

.slider .slider-list div img {
    height: 100%;
    width: 100%;
}

.slider .slider-container {
    width: 80%;
    height: 100%;
    position: relative;
}

.slider .slider-container div {
    width: 100%;
    position: absolute;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.slider .slider-container img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.slider .slider-container div.active {
    opacity: 1;
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.icon-link {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    margin-bottom: 0.1rem;
    gap: .25rem;
}

.icon-link svg {
    height: 22px;
    width: 22px;
}

#login input {
    font-size: 1.5rem;
    height: 45px;
}

ul {
    padding: 0;
}

.news ul {
    padding-left: 2rem;
}

i {
    font-style: italic;
    font-size: inherit;
    font-weight: inherit;
}


/** Product Selection */
.card.border.productSelection {
    height: calc(100% - 2rem);
    position: relative;
}

.card.border.activity.productSelection {
    height: calc(100% - 2rem);
}

.card.border.productSelection {
    width: calc((var(--container-width) / 5) - 1rem);
    padding: 1rem;
}

.edit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 270px;
}

.activity .edit {
    height: 210px;
}

.hasProduct .edit {
    display: none;
}

.edit svg {
    font-size: 4rem;
    padding: 1rem;
}

.notRecommended {
    POSITION: absolute;
    left: 1rem;
    font-size: 1.5rem;
    top: 1rem;
    color: var(--text-color-red);
}

.productSelection .remove,
.productSelection img,
.productSelection h4,
.productSelection .input-group,
.productSelection .productInterval,
.productSelection select {
    display: none;
}

.productSelection.hasProduct .input-group {
    display: flex;
}

.productSelection.hasProduct .remove,
.productSelection.hasProduct img,
.productSelection.hasProduct h4,
.productSelection.hasProduct .productInterval,
.productSelection.hasProduct select {
    display: block;
}

.productSelection.hasProduct .remove svg {
    font-size: 1.5rem;
    padding: 0;
}

.productSelection label {
    display: none;
}

.productSelection .remove {
    margin: 5px 0 5px 0;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.productSelection.hasProduct label {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 0;
}

.productSelection.hasProduct img {
    height: 120px;
    width: 120px;
}

.productSelection.hasProduct a h4 {
    height: 50px;
}

.btn-decrement,
.btn-increment {
    margin-top: 0 !important;
    background: var(--blue-primary);
    color: white;
}

.activity-label {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: .25rem;
    min-height: 24px;
}

.btn-decrement:hover,
.btn-increment:hover {
    text-decoration: none;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group .btn {
    position: relative;
    z-index: 2;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.form-control,
.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

input.search-input {
    padding-left: 25px;
    background: url("/static/tena/assets/images/icons/search.svg") no-repeat left;
    background-size: 20px;
    width: 200px;
    height: 34.5px;
}

.error-box,
.success-box {
    box-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
    max-width: 600px;
    margin: 100px auto;
}

.mandatory {
    color: var(--text-color-red);
    font-size: 1.5rem;
    font-weight: 600;
}

.hidden {
    display: none;
}

.tab-link {
    color: var(--grey);
    opacity: 0.75;
    font-size: 1.5rem;
}

.tab-link.active {
    opacity: 1;
    text-decoration: underline;
}

/* LOADING */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 4px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--blue-secondary) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

::-ms-reveal {
    display: none;
}

/* Multiselector */
.ms-container {
    width: 750px;
}

.ms-container:after {
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    font-size: 0;
    clear: both;
    min-height: 0;
    visibility: hidden;
}

.ms-container .ms-selectable,
.ms-container .ms-selection {
    background: #fff;
    color: #555555;
    float: left;
    width: 45%;
}

.ms-container .ms-selection {
    float: right;
}

.ms-container .ms-list {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
    height: 200px;
    padding: 0;
    overflow-y: auto;
}

.ms-container .ms-list.ms-focus {
    border-color: rgba(82, 168, 236, 0.8);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
    outline: 0;
    outline: thin dotted \9;
}

.ms-container ul {
    margin: 0;
    list-style-type: none;
    padding: 0;
}

.ms-container .ms-optgroup-container {
    width: 100%;
}

.ms-container .ms-optgroup-label {
    margin: 0;
    padding: 5px 0px 0px 5px;
    cursor: pointer;
}

.ms-container .ms-optgroup-label span {
    font-weight: 900;
}

.ms-container .ms-selectable li.ms-elem-selectable,
.ms-container .ms-selection li.ms-elem-selection {
    border-bottom: 1px #eee solid;
    padding: 2px 10px;
}

.ms-container .ms-selectable li.ms-hover,
.ms-container .ms-selection li.ms-hover {
    cursor: pointer;
    text-decoration: none;
    background-color: #e2f3ff;
}

.ms-container .ms-selectable li.disabled,
.ms-container .ms-selection li.disabled {
    background-color: #eee;
    color: #aaa;
    cursor: text;
}

/*Product overview - Ward level*/
#ProductOverView {
    gap: 2rem;
    position: relative;
    height: calc(100vh - 255px);
    background-color: var(--white);
    padding: 1rem;
}

#ProductOverView .products {
    position: absolute;
    top: 1rem;
    bottom: 1rem;
}

#ProductOverView .products ul {
    list-style: none;
    height: calc(100% - 265px);
    width: 260px;
    overflow-y: scroll;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#ProductOverView .products li {
    min-height: 45px;
    display: flex;
}

#ProductOverView .products li.art:hover {
    background-color: rgb(226, 243, 255);
    cursor: pointer;
}

#ProductOverView .product li h4 {
    align-self: center;
    margin: auto;
}

#ProductOverView .products ul li:nth-child(odd) {
    background: rgb(241, 245, 249);
}

#ProductOverView .products li:nth-child(even) {
    background: var(--white);
}

#ProductOverView .products .color-indicator {
    margin: auto 5px;
}

#ProductOverView .slot {
    text-align: center;
}

#ProductOverView .slot:hover {
    background-color: rgb(226, 243, 255);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.6)
}

#ProductOverView .slot:hover h4,
.slot:hover img {
    opacity: 0.7;
}

#ProductOverView .slot img {
    display: block;
    margin: auto;
    height: 50px;
    width: 50px;
}

.sticky-headers {
    top: 0;
    position: sticky;
    z-index: 1;
    background-color: var(--white);
}

.sticky-cell {
    position: sticky;
    left: 0;
    background-color: inherit;
}

#ProductOverView .productSelectionTable td {
    max-width: 140px;
    max-height: 125px;
    width: 140px;
    height: 125px;
    min-width: 140px;
    min-height: 125px;
    border: 1px solid rgba(0, 0, 0, 0.1)
}

#ProductOverView .productSelectionTable td.resident {
    max-width: 200px;
    width: 200px;
    min-width: 200px;
}

#ProductOverView select {
    width: 260px;
}


.productInterval {
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
    height: 18px;
    margin-bottom: 5px;
}

/** TOILETING */
.time-container {
    display: flex;
    align-items: center;
}

input.time-left {
    border-radius: 3px 0 0 3px;
}

input.time-right {
    border-left: none !important;
    border-radius: 0 3px 3px 0;
}

input.time-left,
input.time-right {
    width: 2rem;
    appearance: none;
    border: rgba(0, 0, 0, .3) 1px solid;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

input[type="checkbox"]:checked.time-left,
input[type="checkbox"]:checked.time-right,
input[type="checkbox"]:hover.time-left,
input[type="checkbox"]:hover.time-right {
    background: #0075bb;
}

/*** TEXT ALLIGNS ***/
.text-left,
td.text-left {
    text-align: left;
}

.text-right,
td.text-right {
    text-align: right;
}

.text-center,
td.text-center {
    text-align: center;
}

.contact .cw3-4 {
    width: calc((var(--container-width) / 4) * 3 - 1rem);
    max-width: 100%;
}

.contact .cw1-4 {
    width: calc((var(--container-width) / 4) * 1 - 1rem);
    max-width: 100%;
}

.contact .cw1-2 {
    width: calc((var(--container-width) / 4) * 1 - 1rem);
    max-width: 100%;
}

.overflow-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Dashboard */
.placeholder-ward {
    padding: 0 1rem 1rem 1rem;
    background-color: transparent;
    border-radius: 0.25rem;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
    overflow: hidden;
    width: calc((var(--container-width) / 5) - 1rem);
    padding: 1rem;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sortable-widgets {
    display: none;
}

#sortable-widgets:not(.editMode) .toggleVisability {
    display: none;
}

#sortable-widgets.editMode .isHidden {
    opacity: 0.5;
}

#sortable-widgets:not(.editMode) .isHidden {
    display: none;
}

#dashboard-end-btn {
    display: none;
}

.successLabel {
    color: white;
    border: 1px solid green;
    background: green;
    border-radius: 15px;
    padding: 3px 6px;
}

.pendingLabel {
    color: white;
    border: 1px solid orange;
    background: orange;
    border-radius: 15px;
    padding: 3px 6px;
}

/* Custom slider */
.range-input {
    max-width: 75px;
}

.ui-slider {
    min-width: 250px;
    align-self: center;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -0.3em;
    margin-left: -0.6em;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: pointer;
    -ms-touch-action: none;
    touch-action: none;
}

.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
    border-radius: 4px;
}

.ui-slider-horizontal {
    height: 0.8em;
}

.ui-slider {
    position: relative;
    text-align: left;
}

.ui-slider-handle {
    border: 1px solid #c5c5c5;
    background: var(--blue-primary);
    border-radius: 4px;
    font-weight: normal;
    color: #454545;
}


@media screen and (max-width: 1128px) {

    .contact .tablet-full-width,
    .tablet-full-width {
        width: 100%;
    }

    header {
        border-bottom: 1px solid rgba(152, 158, 163, 0.5);
    }
}

/** MOBILE **/
@media screen and (max-width: 480px) {

    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .form-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .form-row div {
        width: 100%
    }

    .backToTop {
        right: 10px;
    }

    .card-grid {
        justify-content: center
    }

    .fab-btn {
        background-color: var(--blue-primary);
        border-radius: 50%;
        bottom: 7rem;
        right: 1rem;
        color: var(--white);
        cursor: pointer;
        padding: 4px 15px 7px 15px;
        position: fixed;
        transition: all 0.2s ease;
        z-index: 80;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 5rem;
        height: 65px;
        width: 65px;
        box-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
    }

    #sortable-ward-list .card img {
        height: 8rem;
        object-fit: cover;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    label {
        width: 100%;
    }

    form {
        width: 100%;
    }

    .small-card {
        width: 100%;
    }

    input.search-input {
        width: calc(100vw - 1rem);
    }

    .mobile-full-width,
    #login {
        width: 100%;
    }

    .product-grid div,
    .card.border.productSelection {
        width: 100%
    }

    .productSelection.hasProduct a h4 {
        height: initial;
    }

    .productSelection.hasProduct img {
        height: 75px;
        width: 75px;
    }

    .productSelection.hasProduct a:not(.edit) {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .productSelection.hasProduct .options {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .activity .edit {
        height: 60px;
    }

    .input-group .btn {
        width: initial;
    }

}

/** TABLETS **/
@media screen and (max-width: 1024px) and (min-width: 481px) {
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .backToTop {
        right: 50px;
    }

    .card-grid {
        justify-content: center
    }
}

/** DESKTOP **/
@media screen and (min-width: 1024px) {
    .desktop {
        display: flex !important;
    }

    .mobile {
        display: none !important;
    }

    .backToTop {
        right: 50px;
    }

    .contact .tablet-full-width,
    .tablet-full-width {
        width: 100%;
    }

    header {
        border-bottom: 1px solid rgba(152, 158, 163, 0.5);
    }
}

@media screen and (max-width: 800px) {
    .slider {
        flex-direction: column-reverse;
    }

    .slider .slider-list {
        flex-direction: row;
        width: 100%
    }

    .slider .slider-container {
        width: 100%;
    }
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.sliderinput {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.sliderinput:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.sliderinput {
    background-color: #2196F3;
}

input:focus+.sliderinput {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.sliderinput:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

#notification-list {
    z-index: 99;
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 300px;
}

#notification-list>div {
    width: 300px;
    border-top: 10px solid green;
    cursor: pointer;
    border-radius: 3px;
    margin-top: 1rem;
    width: 100%;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 25%);
    background: white;
}

#notification-list>div.SUCCESS {
    border-top: 10px solid green;
}

#notification-list>div.WARNING {
    border-top: 10px solid orange;
}

#notification-list>div.ERROR {
    border-top: 10px solid red;
}

#notification-list>div h4 {
    padding: 1rem;
}

#notification-list>div p {
    padding: 0 1rem 1rem 1rem;
    margin: 0;
}

.timeIndicatorBar {
    height: 4px;
    background: green;
}