@import url(icons/materials.css);

main {
    height:auto;
}

#blazor-error-ui {
    background: var(--color-background);
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: var(--color-primary-darker);
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

:root {
    --bs-primary: #9ac33b;
    --color-background: #F5F5F5;
    --color-background-darker: #EFEFEF;
    --color-border: #9F9F9F;
    --color-border-darker: #707070;
    --color-primary: #9ACD32;
    --color-primary-darker: #6B8E23;
    --color-secondary: #A4E5EA;
    --color-secondary-darker: #5D7523;
    --color-accent: #9A2D92;
    --color-white: #FFFFFF;
    --color-black: #3A434F;
    --color-grey: #455261;
    --color-orange: #FFA500;
    --color-red: #ff0000;
    --color-freshopp-primary: #9ac33b;
    --color-freshopp-primary-darker: #5D7523;
    --color-freshopp-secondary: #C8D6A2;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    color: var(--color-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: Inter, Roboto, "Helvetica Neue", "Arial Nova", "Nimbus Sans", Arial, sans-serif;
    scrollbar-color: var(--color-primary-darker) var(--color-primary);
}

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 1rem;
        height: 1rem;
    }

    html::-webkit-scrollbar-thumb,
    body::-webkit-scrollbar-thumb {
        background-color: var(--color-primary-darker);
    }

    html::-webkit-scrollbar-track,
    body::-webkit-scrollbar-track {
        background: var(--color-primary);
    }


a {
    color: inherit;
    text-decoration: none;
}



button {
    background: none;
    cursor: pointer;
    border: none;
}

    button::-moz-focus-inner {
        border: none;
    }

    button:active {
        -webkit-transform: translateY(0.125rem);
        transform: translateY(0.125rem);
    }

    a:focus-visible,
    button:focus-visible {
        outline: 2px dotted var(--color-accent);
        outline-offset: 0.125em;
    }

.button__icon {
    background-color: var(--color-secondary-darker);
    color: var(--color-white);
}

.button__img {
    background-color: transparent
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-check-input:checked {
    background-color: var(--color-freshopp-primary) !important;
    border-color: var(--color-freshopp-primary) !important;
}

.spacer {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.title-form {
    border-bottom: 0.104rem solid var(--color-border);
    margin-bottom: 0.26rem;
    overflow: hidden;
    padding-bottom: 0.521rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bg-freshopp
{
    background-color: #7d8300;
}

.bg-transparent
{
    background-color: transparent;
}

.btn-freshopp {
    background-color: var(--color-freshopp-primary-darker);
    color: white;
}

.form-check-input {
    clear: left;
  }
  
  .form-switch.form-switch-sm {
    margin-bottom: 0.5rem; /* JUST FOR STYLING PURPOSE */
  }
  
  .form-switch.form-switch-sm .form-check-input {
    height: 1rem;
    width: calc(1rem + 0.75rem);
    border-radius: 2rem;
  }
  
  .form-switch.form-switch-md {
    margin-bottom: 1rem; /* JUST FOR STYLING PURPOSE */
  }
  
  .form-switch.form-switch-md .form-check-input {
    height: 1.5rem;
    width: calc(2rem + 0.75rem);
    border-radius: 3rem;
  }
  
  .form-switch.form-switch-lg {
    margin-bottom: 1.5rem; /* JUST FOR STYLING PURPOSE */
  }
  
  .form-switch.form-switch-lg .form-check-input {
    height: 2rem;
    width: calc(3rem + 0.75rem);
    border-radius: 4rem;
  }
  
  .form-switch.form-switch-xl {
    margin-bottom: 2rem; /* JUST FOR STYLING PURPOSE */
  }
  
  .form-switch.form-switch-xl .form-check-input {
    height: 2.5rem;
    width: calc(4rem + 0.75rem);
    border-radius: 5rem;
  }

h1 {
    font-size: 3.125rem;
    font-style: normal;
    font-weight: 100;
    line-height: 1em;
    margin: 0.781rem 0;
}

h2 {
    font-size: 2.083rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
    margin: 0.781rem 0;
}

h3 {
    font-size: 1.667rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
    margin: 0.781rem 0;
}

h4 {
    font-size: 1.263rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
    margin: 0.781vw 0;
}

h6 {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
    margin: 0.781vw 0;
}



a {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    color: var(--color-black);
    -webkit-transition: color 0.1s linear;
    transition: color 0.1s linear;
}

.button-link {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    color: var(--color-black);
    -webkit-transition: color 0.1s linear;
    transition: color 0.1s linear;
    padding: 10px 20px;
    text-decoration: none;
}

.modal-footer {
    margin-top : 0rem;
    margin-bottom: -1.3rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-top: none;
}

.component-footer {
    margin-top : 0.5rem;
    margin-bottom: -1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-top: 1px solid #dee2e6;
}

a-hover:focus,
a-hover:hover {
    color: var(--color-secondary-darker);
}
    a:focus,
    a:hover {
        color: var(--color-secondary-darker);
    }

    a.current {
        color: var(--color-secondary-darker);
        text-decoration: underline;
    }

small {
    font-size: 0.781vw;
    line-height: 1.2em;
}

hr {
    background: var(--color-border-darker);
    border: none;
    height: 0.104rem;
    margin: 1.042rem auto;
    width: 100%;
}

.auto {
    flex: auto !important;
}

.one {
    flex: 1 !important;
}

.two {
    flex: 2 !important;
}

.three {
    flex: 3 !important;
}

.left {
    text-align: left !important;
}

.primary {
    color: var(--color-primary) !important;
}

.black {
    color: var(--color-black) !important;
}

.grey {
    color: var(--color-border) !important;
}

.bold {
    font-weight: bold !important;
}

.xxl {
    font-size: xxx-large !important;
}
header {
    top: 0;
    position: sticky;
    z-index: 100;
} 
.header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.mr-auto {
    flex: 1;
    margin: auto !important;
    display: flex;
    justify-content: space-between;
}

.header__welcome {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--color-background);
    color: var(--color-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 3.49rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 1.823rem;
}

.header__name {
    margin-right: 4.4270833333rem;
}

.header__nav {
    background: var(--color-primary);
    color: var(--color-black);
    height: 2.656rem;
}
.bg-color-freshopp {
    background: #7F9747;
    color: var(--color-white);
}

color-freshopp {
    color: #7F9747;
}

.btn-freshopp-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #9ACD32;
    --bs-btn-border-color: #9ACD32;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #9ACD32;
    --bs-btn-hover-border-color: #9ACD32;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #9ACD32;
    --bs-btn-active-border-color: #9ACD32;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #9ACD32;
    --bs-btn-disabled-border-color: #9ACD32;
}

.bg-freshopp-primary {
    background-color: #9ac33b;
    color: white;
}

.header__categories {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    list-style-type: none;
    position: relative;
    width: 100%;
}

.header__category {
    height: 100%;
}

    .header__category > a {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: var(--color-black);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 1.08rem;
        font-weight: bold;
        height: 100%;
        padding: 0 0.78125rem;
        text-align: center;
        -webkit-transition: color 0.05s linear;
        transition: color 0.05s linear;
    }

        .header__category > a:hover,
        .header__category > a.header__category--current {
            color: var(--color-white);
        }

        .header__category > a.header__category--current {
            text-decoration: underline;
        }

.header__layer {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background: var(--color-background-darker);
    border: 0.052rem solid var(--color-border-darker);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    inset: 2.656rem 0 auto;
    opacity: 0;
    pointer-events: none;
    padding: 1.5625rem 2.34375rem 3.90625rem;
    position: absolute;
    -webkit-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
    z-index: 100;
}

.header__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1.0416666667rem;
}

    .header__column:not(:last-child) {
        margin-right: 3.125rem;
    }

    .header__column > a {
        color: var(--color-black);
        font-size: max(12px, 1.08rem);
        -webkit-transition: color 0.1s linear;
        transition: color 0.1s linear;
    }

        .header__column > a:focus,
        .header__column > a:hover {
            color: var(--color-secondary-darker);
        }

        .header__column > a.current {
            color: var(--color-secondary-darker);
            text-decoration: underline;
        }

.nav-item a:focus-visible + .header__layer,
.nav-item a:hover + .header__layer,
.header__layer:hover,
.header__layer:focus-within {
    opacity: 1;
    pointer-events: auto;
}

.text-control {
    padding: .375rem .75rem; 
    margin: 5px;
}

.menu {
    align-items: center;
    background: var(--color-background-darker);
    margin-bottom: 0.521vw;
    padding: 0 1.5625vw;
}



.menu div.separator {
    background: var(--color-border-darker);
    height: 2.083rem;
    width: 0.052rem;
}

.menu--static {
    position: sticky;
    top: 6.146vw;
}

*[class*=menu__link] {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.08rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    padding: 0 1.0416666667rem;
    text-align: left;
    -webkit-transition: color 0.05s linear;
    transition: color 0.05s linear;
}

    *[class*=menu__link]:focus,
    *[class*=menu__link]:hover {
        color: var(--color-secondary-darker);
    }

    *[class*=menu__link][class*=icon__]::before {
        font-size: 2.0833333333rem;
        height: 2.0833333333rem;
        width: 2.0833333333rem;
    }

.menu__link--small {
    font-size: 1.0416666667rem;
}

.menu__link--current {
    color: var(--color-secondary-darker);
    text-decoration: underline;
}

.kanban {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.34375vw;
    width: 100%;
}

.kanban__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.521vw;
    min-width: 0;
}

.kanban__title {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2px;
    overflow: hidden;
    padding-bottom: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.kanban__container {
    background: var(--color-white);
    height: 1.875vw;
    color: var(--color-secondary-darker);
    padding: 0 0.521vw;
    text-align: right !important;
}

.kanban__button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.kanban__button--content {
    flex: auto;
    text-align: right;
    align-content: center;
}

.kanban__button--tab {
    font-size: unset !important;
    width: auto;
    background-color: transparent !important;
}

.kanban__xl {
    width: 48vw !important;
    height: 10vw !important;
    text-align: left !important;
}

.kanban__xl_h {
    height: 10vw !important;
    text-align: left !important;
}

.kanban__xl_w {
    width: 48vw !important;
}

.kanban__img {
    margin: 5px !important;
    height: fit-content !important;
}

.kanban__p {
    margin: 0 !important;
}

.kanban__grey {
    text-align: left;
    color: var(--color-white);
    background: var(--color-border) !important;
}

.kanban__secondary-darker {
    text-align: right;
    color: var(--color-secondary-darker);
}

.kanban__grey-darker {
    background: var(--color-border-darker) !important;
}

.kanban__white {
    background-color: var(--color-white) !important;
    color: var(--color-secondary-darker);
}

#kanban {
    border: none;
    border-radius: 0;
    font-size: 0.96vw;
    font-weight: 300;
    height: 1.875vw;
    padding: 0 0.521vw;
    background-color: var(--color-background);
}

    #kanban + button {
        background: var(--color-secondary-darker);
        border: none;
        border-left: 0;
        border-radius: 0;
        height: 1.875vw;
        width: 2.604vw;
    }

    #kanban:focus-visible {
        outline: none;
        background-color: var(--color-background);
    }

        #kanban:focus-visible + button {
            background-color: var(--color-background);
        }

    #kanban.kanban__button--content {
        color: var(--color-secondary-darker);
    }

.kanban__bottombar {
    background: var(--color-background);
}

.kanban__menu {
    background-color: var(--color-white);
    color: var(--color-secondary-darker);
}

.kanban_sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.kanban__column_sidebar {
    margin: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    flex: 1;
}

.kanban__container_sidebar1 {
    background: var(--color-secondary-darker);
    padding: 0.521vw;
    color: var(--color-orange);
    text-align: right;
    align-content: center;
    font-weight: bold;
    flex: 1;
}

.kanban__container_sidebar2 {
    background: var(--color-secondary-darker);
    padding: 0.521vw;
    color: var(--color-white);
    text-align: left;
    align-content: center;
    flex: 1;
}

.kanban__container_empty_sidebar {
    height: 1.875vw;
}

.kanban__container_empty {
    height: 1.875vw;
}

.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.container-noresponsive {
    padding: 1.302vw 1.042vw;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

#search {
    border: 0.052vw solid var(--color-border-darker);
    border-radius: 0;
    font-size: max(10px, 1.0416666667vw);
    height: 1.875vw;
    padding: 0 0.521vw;
    width: 16.6666666667vw;
}

    #search + button {
        background: var(--color-secondary-darker);
        border: 0.052vw solid var(--color-border-darker);
        border-left: 0;
        border-radius: 0 0.26vw 0.26vw 0;
        height: 1.875vw;
        width: 2.604vw;
    }

    #search:focus-visible {
        outline: none;
        border-color: var(--color-accent);
    }

        #search:focus-visible + button {
            border-color: var(--color-accent);
        }

.sidebar {
    background: var(--color-white);
    width: 33.3333333333rem;
    margin-right: 0.521rem;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    padding: 0 0.521rem;
}

.sidebar--hidden {
    margin: 0;
    opacity: 0;
    overflow: hidden;
    width: 0;
    height: 0;
}

.bottombar {
    background: var(--color-white);
    margin-bottom: 0.521vw;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.bottombar--hidden {
    margin: 0;
    opacity: 0;
    overflow: hidden;
    width: 0;
    height: 0;
}



.first_tab {
    font-weight: 450;
}

.tab {
    border: 0.083vw solid var(--color-secondary);
    padding: 0.1vw 0.5vw;
}

table.table.table-bordered td {
    color : #3A434F;
    border-top: none;
}

table.table.table-bordered th {
    color : #3A434F;
    border-top: none;
}

.client {
    display: inline-block;
    width: 500px;
    height: 102px;
    margin: 10px;
    border-collapse: collapse;
    border: 1px solid;
    background: var(--color-white);
}

    .client:hover td,
    .client:hover th {
        background-color: var(--color-orange);
    }

.article {
    display: inline-block;
    width: 425px;
    height: 102px;
    margin: 10px;
    border-collapse: collapse;
    border: 1px solid;
    background: var(--color-white);
}

    .article:hover td,
    .article:hover th {
        background-color: var(--color-orange);
    }

.hub {
    display: inline-block;
    width: 10rem;
    height: 100%;
    margin: 5px;
    border-collapse: collapse;
    border: 1px solid var(--color-secondary-darker);
    color: var(--color-secondary-darker);
    padding: 0px 5px;
}

.hub1 {
    width: 10rem;
    height: 1.5rem;
    color: var(--color-orange);
    font-weight: bold;
}

.hub2 {
    height: 1rem;
    font-weight: bold;
}

.hub3 {
    height: 2.5rem;
    text-align: left;
}

.type {
    width: 100px;
    height: 100px;
    padding: 10px 0px 10px 10px;
    text-align: center;
}

.info {
    width: 200px;
    text-align: right;
}

.color-white {
    color: var(--color-background);
}

.text-label {
    color: var(--color-freshopp-primary-darker);
    font-weight: 300;
}

.cercle {
    padding-right: 20px;
    position: relative;
    z-index: 1;
}

    .cercle::before {
        margin: 0 1.042vw 0 0.677vw;
    }

    .cercle::after {
        aspect-ratio: 1;
        background: var(--color-secondary);
        border-radius: 50%;
        content: "";
        left: 10%;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 70px;
        z-index: -1;
    }

.switch-toggle {
    display: inline-block;
    width: 60px;
    height: 30px;
    background-color: var(--color-background);
    border: solid 1px var(--color-border);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}

    .switch-toggle input {
        display: none;
    }

.switch-handle {
    width: 30px;
    height: 30px;
    background-color: var(--color-white);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    border: solid 1px var(--color-border);
    transition: transform 0.3s ease;
}

.switch-toggle input:checked + .switch-handle {
    transform: translateX(30px);
    background-color: var(--color-secondary-darker);
}

.header__nav_bottombar {
    background-color: var(--color-white);
}

.header__nav_bottombar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.header__nav_bottombar ul li {
    display: inline;
}

.header__nav_bottombar ul li a {
    display: block;
    color: var(--color-black);
    padding: 10px 20px;
    text-decoration: none;
}

.header__nav_bottombar ul li a:hover {
    color: var(--color-secondary-darker);
    font-weight: bold;
}

.header__nav_bottombar ul li a:active {
    -webkit-transform: translateY(0.125rem);
    transform: translateY(0.125rem);
}



.styled-input-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}


.styled-input {
    border: none;
    outline: none;
    flex-grow: 1;
    font-size: 1.5vw;
    text-align: right;
    color: #00838f;
    font-weight: 300;
    padding-right: 1vw;
}

.styled-input-grey {
    background-color: #f5f5f5
}

.styled-input-disabled {
    background-color: var(--color-border)
}

    .styled-input::placeholder {
        color: #ddd;
    }

.dropdown-btn {
    display: block;
    width: 4vw;
    background-color: var(--color-secondary-darker);
}

.form-control{
    color: var(--color-freshopp-primary-darker);
    margin: 5px;
}

.btn-dropdown
{
    border: 1px solid;
    border-color:var(--color-freshopp-primary);
    background-color: white;
}

.btn-dropdown-toggle
{
    background-color: var(--color-freshopp-primary);
    color: white; 
    width: 50px;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.form-control-readonly {
    background-color: var(--color-border);
}

.form-enum {
    background-color: white;
}

.quickgrid[theme=freshopp] {
    
}

.quickgrid[theme=freshopp] .col-title {
    gap: 0.4rem; /* Separate the sort indicator from title text */
    font-weight: bold;
}

.quickgrid[theme=freshopp] .sort-indicator {
    color: blue;
}

.quickgrid[theme=freshopp] tr {
    margin-top:0.3rem;
    margin-bottom:0.3rem;
}

.quickgrid[theme=freshopp] button.col-title:hover, .quickgrid[theme=freshopp] .col-options-button:hover {
    
}

.quickgrid[theme=freshopp] button.col-title:active, ::deep .quickgrid[theme=freshopp] .col-options-button:active {

}

.validation-message {
    color:red;
}

