﻿



  
/* autMVB */
.myca-auto-table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    border: 1px solid #cde4cd;
    background-color: #f6fdf6;
}

    .myca-auto-table th,
    .myca-auto-table td {
        padding: 8px;
        text-align: left;
        border: 1px solid #cde4cd;
        max-width: 170px;
        min-width: 170px;
    }

    .myca-auto-table th {
        background-color: #fff;
        padding: 8px;
        text-align: left;
        border-bottom: 1px solid #757575;
    }

    .myca-auto-table td {
        padding: 8px;
        border-bottom: 1px solid #dfeee0;
    }

    .myca-auto-table tr:nth-child(even) {
        background-color: #e8f7e8;
    }

    .myca-auto-table tr:nth-child(odd) {
        background-color: #f6fdf6;
    }

.myca-dropdown-container {
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
}

.myca-dropdown-item {
    padding: 8px 12px;
    background-color: #fafafa; 
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    transition: background-color 0.2s ease;
}

    .myca-dropdown-item:nth-child(even) {
        background-color: #f4f4f4;
    }

    .myca-dropdown-item:hover {
        background-color: #e8e8e8;
    }

.myca-float-dropdown-wrapper {
    position: relative;
    display: inline-block; 
}

.myca-float-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
    border-radius: 6px;
}

    .myca-float-dropdown-content.open {
        opacity: 1;
        max-height: 500px; 
    }

.myca-dropdown-wrapper {
    position: relative; 
    width: 100%; 
}

.myca-dropdown-display {
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: block; 
    font-variant: small-caps;
}

.myca-dropdown-panel {
    position: absolute;
    top: 100%; 
    left: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    max-width: 300px;
    min-width: 250px;
    display: block; 
}

@media (max-width: 768px) {
    .myca-dropdown-panel {
        max-width: 100%;
        min-width: 100%;
    }
}

.myca-dropdown-label {
    font-style: italic;
    font-weight: normal;
}

    .myca-dropdown-label.bold {
        font-style: normal;
        font-weight: bold;
    }


.myca-order-summary {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 16px;
    max-width: 400px;
    background-color: #f9f9f9;
    font-family: sans-serif;
    font-size: 14px;
}

@media (max-width: 768px) {
    .myca-order-summary {
        max-width: 100%;
    }
}


.summary-title {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: bold;
}

.summary-item,
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-top: 1px solid #e0e0e0;
}

    .summary-item:first-of-type {
        border-top: none;
    }

.total-label {
    font-weight: bold;
}

.total-price {
    font-weight: bold;
}


/* messagecenter */

.myca-card {
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    color: #868686;
    width: 100%;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
}

.myca-card-header {
    padding: .5rem;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.1); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.myca-card-body {
    padding: .5rem;
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
}


.myca-card-footer {
    padding: 0.5rem;
    text-align: right;
    background-color: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.only_icon.ringing {
    animation: ringBell 0.7s ease-in-out;
}

@keyframes ringBell {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-12deg);
    }

    45% {
        transform: rotate(8deg);
    }

    60% {
        transform: rotate(-6deg);
    }

    75% {
        transform: rotate(4deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.ring-fade-in {
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
    z-index: 2;
}

.ring-fade-out {
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    z-index: 1;
}


.myca-card-highlight {
    animation: myca-pulse-highlight 2s ease-in-out infinite;
    box-shadow: 0 0 0px rgba(100, 190, 80, 0.0);
    border-radius: 8px;
}

@keyframes myca-pulse-highlight {
    0% {
        box-shadow: 0 0 0px rgba(100, 190, 80, 0.0);
    }

    50% {
        box-shadow: 0 0 24px 6px rgba(120, 200, 90, 1);
    }

    100% {
        box-shadow: 0 0 0px rgba(100, 190, 80, 0.0);
    }
}
.mycrow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: .5rem 0.25rem 0.5rem 0.25rem;
    width: 100%;
}

.mycrow-label {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
}


.buttonCross {
    position: relative;
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

    .buttonCross:before,
    .buttonCross:after {
        content: "";
        display: block;
        background-color: #8e8e8e;
        position: absolute;
        transition: 0.35s;
        width: 100%;
        height: 3px;
        border-radius: 3px;
    }

    .buttonCross:before {
        top: 50%;
        left: 0;
        transform: translateY(-50%) rotate(45deg);
    }

    .buttonCross:after {
        top: 50%;
        left: 0;
        transform: translateY(-50%) rotate(-45deg);
    }

    .buttonCross:not(.active):before {
        transform: translateY(-50%) rotate(0deg);
        opacity: 0;
    }

    .buttonCross:not(.active):after {
        transform: translateY(-50%) rotate(0deg);
        opacity: 0;
    }







.slide-in-left {
    transform: translateX(-15px);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

    .slide-in-left.active {
        transform: translateX(0);
        opacity: 1;
    }

    .slide-in-left:not(.active) {
        transform: translateX(-15px);
        opacity: 0;
        transition: transform 0.3s ease-in-out, opacity 0.5s ease-in-out;
    }

.slide-in-right {
    transform: translateX(15px);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

    .slide-in-right.active {
        transform: translateX(0);
        opacity: 1;
    }

    .slide-in-right:not(.active) {
        transform: translateX(15px);
        opacity: 0;
        transition: transform 0.3s ease-in-out, opacity 0.5s ease-in-out;
    }

.accordionPlusMinus {
    position: relative;
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

    .accordionPlusMinus.active:before {
        transform: translateY(-50%) rotate(-90deg);
        opacity: 0;
    }

    .accordionPlusMinus.active:after {
        transform: translateY(-50%) rotate(0);
    }

    .accordionPlusMinus:before,
    .accordionPlusMinus:after {
        content: "";
        display: block;
        background-color: #8e8e8e;
        position: absolute;
        top: 50%;
        left: 0;
        transition: 0.35s;
        width: 80%;
        height: 3px;
        border-radius: 3px;
    }

    .accordionPlusMinus:before {
        transform: translateY(-50%);
    }

    .accordionPlusMinus:after {
        transform: translateY(-50%) rotate(90deg);
    }



.accordionArrow {
    position: relative;
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

    .accordionArrow.active:before,
    .accordionArrow.active:after {
        transform: translateY(-50%) rotate(45deg);
    }

    .accordionArrow:before,
    .accordionArrow:after {
        content: "";
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%) rotate(-45deg);
        transition: 0.35s;
        border: solid gray;
        border-width: 0 3px 3px 0;
        border-radius: 0px 2px 0px 2px;
        padding: 3px;
    }

    .accordionArrow.active:after {
        top: 1px;
    }

.mycborder {
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 3px;
}

    .mycborder.bordershadow {
        box-shadow: 0 4px 5px -3px gray;
    }

.mycborder-top {
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 5px 5px 0px 0px;
}

    .mycborder-top.bordershadow {
        box-shadow: 0 4px 5px -3px gray;
    }

.mycborder-middle {
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0px;
}

    .mycborder-middle.bordershadow {
        box-shadow: 0 4px 5px -3px gray;
    }

.mycborder-bottom {
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0px 0px 5px 5px;
}

    .mycborder-bottom.bordershadow {
        box-shadow: 0 4px 5px -3px gray;
    }

.mycripple {
    position: relative;
    overflow: hidden;
}

    .mycripple::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(0, 0, 0, 0.5) 10%, transparent 10.01%);
        background-repeat: no-repeat;
        background-position: 50%;
        transform: scale(10, 10);
        opacity: 0;
        transition: transform 0.3s, opacity 1s;
        border-radius: 0 0 50% 50%;
    }

    .mycripple:active::after {
        transform: scale(0, 0);
        opacity: 0.1;
        transition: 0s;
    }

.scrollable-logger {
    max-height: 200px;
    overflow-y: scroll;
}

    .scrollable-logger::-webkit-scrollbar {
        width: 8px;
    }

    .scrollable-logger::-webkit-scrollbar-thumb {
        background-color: lightgray;
        border-radius: 6px;
    }

.scrollable-dropdown {
    max-height: 500px;
    overflow-y: scroll;
}

    .scrollable-dropdown::-webkit-scrollbar {
        width: 8px;
    }

    .scrollable-dropdown::-webkit-scrollbar-thumb {
        background-color: lightgray;
        border-radius: 6px;
    }


.mycNotify {
    box-sizing: border-box;
    position: absolute;
    width: 359px;
    z-index: 200;
    background: rgba(0,0,0,0.15);
    border-radius: .7rem;
    word-wrap: normal;
}

    .mycNotify.SuccessBack {
        background: rgba(0,0,0,0.15);
        background-image: linear-gradient(#92c787, #63b330 50%,#528545);
    }

    .mycNotify.WarningBack {
        background: rgba(0,0,0,0.15);
        background-image: linear-gradient(#ffac45,#d47500 50%,#c17414);
    }

    .mycNotify.ErrorBack {
        background: rgba(0,0,0,0.15);
        background-image: linear-gradient(#fb5f5c, #d52222 50%, #bf2727);
    }


.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    z-index: 100;
}

.mycElementSlideDownDiv {
    z-index: 200;
    position: fixed;
    width: 100%;
    left: 0;
}

.mycElementSlideDown {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 1;
}

    .mycElementSlideDown.elementSlideDown_hidden {
        transform: translateY(-100%);
        opacity: 0;
    }

.loadingOverlay {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    position: fixed;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    display: block;
}

    .loadingOverlay.overlay_disabled {
        display: none !important;
    }

    .loadingOverlay.overlay_hidden {
        transition: opacity 0.3s ease;
        opacity: 0;
    }

    .loadingOverlay.overlay_visible {
        transition: opacity 0.3s ease;
        opacity: 1;
    }

.mycElementSlideInLeft {
    transition: transform 0.2s ease-out, opacity 0.15s ease-out;
    opacity: 1;
}

    .mycElementSlideInLeft.elementSlideInLeft_hidden {
        transform: translateX(-100%);
        opacity: 0;
    }

.mycElementSlideInRight {
    transition: transform 0.2s ease-out, opacity 0.15s ease-out;
    opacity: 1;
}

    .mycElementSlideInRight.elementSlideInRight_hidden {
        transform: translateX(100%);
        opacity: 0;
    }

.mycShowElement {
    transition: transform 0.2s ease-out, opacity 0.15s ease-out;
    opacity: 1;
}

    .mycShowElement.mycShowElement_hidden {
        transform: scale(0.85);
        opacity: 0;
    }

    .mycShowElement.mycShowElement_hiddenv2 {
        transform: scale(1);
        opacity: 0;
    }

.mycElementSlideContent {
    max-height: 1000px !important;
    transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
    opacity: 1;
}

    .mycElementSlideContent.mycElementSlideContent_hidden {
        max-height: 0 !important;
        transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
        opacity: 0;
    }



.rz-button-icon-left {
    position: absolute;
    height: 100% !important;
    left: 0px !important;
    top: 0 !important;
    line-height: 2 !important;
    font-size: 150% !important;
    width: 20% !important;
}

.loadingSpinner {
    border: 10px solid silver;
    border-top: 10px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    position: absolute;
}

.loadingSpinnerDiv {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    position: fixed;
    z-index: 3;
    background-color: rgba(0,0,0,0.4);
}

.loadingBar {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
}


.externalHtml {
    overflow-x: hidden;
    overflow: scroll;
    max-height: 720px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}



.accordion-content {
    max-height: 0 !important;
    opacity: 0 !important;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.accordion-content-show {
    max-height: 700px !important;
    opacity: 1 !important;
    transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
}


.workerShow {
    display: block !important;
}

.workerHidden {
    display: none !important;
}

.workerDiv {
    align-items:center;
    display:flex;
    margin: .8rem auto .8rem auto;
}

.workerLoading {
    border: 8px solid silver;
    border-top: 8px solid #66b32f;
    border-radius: 50%;
    width: 60px;
    height:60px;
    animation:spin 1000ms infinite;
}


.a_anchor_m {
    display:contents;
}

.a_anchor_d {
    display:inline-block;
}

.logo_mobile {
    width: 25%;
}

@media (min-width: 768px) {
    .logo_mobile {
        width: 10%;
    }
}


.logo_desktop {
    width: 15%;
}

.mycp_shadow {
    box-shadow: 0 0.5rem 1rem #dfdfdf;
}

.mycp_separator {
    padding: 0.5rem 1rem;
    background-color: #f5f5f5;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
}

.mycp_primary {
    background-color: #63b330;
}

.mycp_secondary {
    background-color: rgba(99,179,48,255);
}

.mycp_warning {
    background-color: rgba(99,179,48,255);
}

.mycp_danger {
    background-color: #5055a0;
}
.mycp_cart {
    position:sticky;
    top:0;
    z-index:2;
    background:white;
}

.mycp_offcan_cart {
    width: 97% !important;
    top: 0;
    border-radius: 7px;
    border: 2px solid;
    margin: 0.5rem !important;
}

.mycp_offcan_footer {
    bottom: 0 !important;
    position: absolute !important;
    width: 100% !important;
    border-top: 1px solid rgba(0,0,0,.125);
}

.category_element {
    position: fixed !important;
    top: 0 !important;
    z-index: 1;
    overflow-y: hidden;
    overflow-x: auto;
    white-space:nowrap;
    width: -moz-available; /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
    width: fill-available;
    margin-right: 0.5rem;
    max-width: calc(1800px - 1rem);
    border-radius: 0px 0px 3px 3px;
    border: solid 1px rgba(0,0,0,.125);
    border-top: 0px;
}

#categoryBar {
    height: 37px;
}

    #categoryBar a {
        white-space: pre;
        color: #f2f2f2;
        text-align: center;
        text-decoration: none;
    }

        #categoryBar a:hover {
            background-color: #ddd;
            color: black;
        }

        #categoryBar a.active {
            background-color: #f2f2f2;
            color: black;
            border-color: transparent;
        }

/* mycp buttons */

.mycp_btn_sm {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: 500;
    outline: none;
    position: relative;
    transition: all 0.3s;
}

.mycp_btn_sm_a {
    text-align: center;
    width: 100%;
    display: block;
    color: white !important;
    text-decoration: none;
}
.mycp_btn_sm_a2 {
    text-align: center;
    color: white !important;
    text-decoration: none;
}

.mycp_btn_sm:before {
    font-family: 'Material Icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}


.mycp_btn_lg {
    border: none;
    border-radius: 10px;
    font-size: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 25px 80px;
    display: inline-block;
    letter-spacing: 3px;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .mycp_btn_lg:before {
        font-family: 'Material Icons';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .mycp_btn_lg:after {
        content: '';
        position: absolute;
        z-index: -1;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

/* Icon separator */

.mycp_btn_sm_sep {
    padding: 5px 20px 5px 50px;
}

    .mycp_btn_sm_sep:before {
        background: rgba(0,0,0,0.15);
    }


.mycp_btn_m_sep {
    padding: 10px 50px 10px 100px;
}

    .mycp_btn_m_sep:before {
        background: rgba(0,0,0,0.15);
    }

.mycp_btn_lg_sep {
    padding: 25px 60px 25px 120px;
}

    .mycp_btn_lg_sep:before {
        background: rgba(0,0,0,0.15);
    }

/* Buttons */

.mycp_centered {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.mycp_btn_round {
    border-style: none;
    border-radius: 25px;
    height: 50px;
    width: 50px;
}

.mycp_btn_warning {
    background-image: linear-gradient(#de963d, #d47500 50%, #c36c00);
    color: #fff;
}

    .mycp_btn_warning:active {
        background-image: linear-gradient(#de963d, #d47500 50%, #c36c00);
        top: 2px;
    }

    .mycp_btn_warning:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 33%;
    }

.mycp_btn_warning_pr {
    background-image: linear-gradient(#de963d, #d47500 50%, #c36c00);
    color: #fff;
}

    .mycp_btn_warning_pr:active {
        background-image: linear-gradient(#de963d, #d47500 50%, #c36c00);
        top: 2px;
    }

    .mycp_btn_warning_pr:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 20%;
    }

.mycp_btn_danger {
    background-image: linear-gradient(#7191b3,#446e9b 50%,#4e56a2);
    color: #fff;
}

    .mycp_btn_danger:active {
        background-image: linear-gradient(#7191b3,#446e9b 50%,#4e56a2);
        top: 2px;
    }

    .mycp_btn_danger:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 33%;
    }

.mycp_btn_danger_pr {
    background-image: linear-gradient(#7191b3,#446e9b 50%,#4e56a2);
    color: #fff;
}

    .mycp_btn_danger_pr:active {
        background-image: linear-gradient(#7191b3,#446e9b 50%,#4e56a2);
        top: 2px;
    }

    .mycp_btn_danger_pr:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 20%;
    }


.mycp_btn_primary {
    background-image: linear-gradient(#92c787, #63b330 50%,#528545);
    color: #fff;
}

    .mycp_btn_primary:active {
        background-image: linear-gradient(#92c787, #63b330 50%,#528545);
        top: 2px;
    }

    .mycp_btn_primary:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 33%;
    }

.mycp_btn_primary_pr {
    background-image: linear-gradient(#92c787, #63b330 50%,#528545);
    color: #fff;
}

    .mycp_btn_primary_pr:active {
        background-image: linear-gradient(#92c787, #63b330 50%,#528545);
        top: 2px;
    }

    .mycp_btn_primary_pr:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 20%;
    }

    .mycp_btn_primary_pr:disabled {
        pointer-events: none;
        opacity: .65;
    }

.mycp_btn_success {
    background-image: linear-gradient(#92c787,#45b32d 50%,#528545);
    color: #fff;
}

    .mycp_btn_success:active {
        background-image: linear-gradient(#92c787,#45b32d 50%,#528545);
        top: 2px;
    }

    .mycp_btn_success:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 33%;
    }
    .mycp_btn_success:disabled {
        pointer-events:none;
        opacity:.65;
    }

.mycp_btn_success_pr {
    background-image: linear-gradient(#92c787,#45b32d 50%,#528545);
    color: #fff;
}

    .mycp_btn_success_pr:active {
        background-image: linear-gradient(#92c787,#45b32d 50%,#528545);
        top: 2px;
    }

    .mycp_btn_success_pr:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 20%;
    }

    .mycp_btn_success_pr:disabled {
        pointer-events: none;
        opacity: .65;
    }


.mycp_btn_secondary {
    background-image: linear-gradient(#cdcccc,#999 50%,#6a6363);
    color: #fff;
}

    .mycp_btn_secondary:active {
        background-image: linear-gradient(#cdcccc,#999 50%,#6a6363);
        top: 2px;
    }

    .mycp_btn_secondary:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 33%;
    }

    .mycp_btn_secondary:disabled {
        pointer-events: none;
        opacity: .65;
    }

.mycp_btn_secondary_pr {
    background-image: linear-gradient(#cdcccc,#999 50%,#6a6363);
    color: #fff;
}

    .mycp_btn_secondary_pr:active {
        background-image: linear-gradient(#cdcccc,#999 50%,#6a6363);
        top: 2px;
    }

    .mycp_btn_secondary_pr:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 20%;
    }

    .mycp_btn_secondary_pr:disabled {
        pointer-events: none;
        opacity: .65;
    }

.mycp_btn_delete {
    background-image: linear-gradient(#fb5f5c, #d52222 50%, #bf2727);
    color: #fff;
}

    .mycp_btn_delete:active {
        background-image: linear-gradient(#fb5f5c, #d52222 50%, #bf2727);
        top: 2px;
    }

    .mycp_btn_delete:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 33%;
    }

    .mycp_btn_delete:disabled {
        pointer-events: none;
        opacity: .65;
    }

.mycp_btn_delete_pr {
    background-image: linear-gradient(#fb5f5c, #d52222 50%, #bf2727);
    color: #fff;
}

    .mycp_btn_delete_pr:active {
        background-image: linear-gradient(#fb5f5c, #d52222 50%, #bf2727);
        top: 2px;
    }

    .mycp_btn_delete_pr:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 20%;
    }

    .mycp_btn_delete_pr:disabled {
        pointer-events: none;
        opacity: .65;
    }


.mycp_btn_value {
    background-image: linear-gradient(#91c7f7,#3399f3 50%,#2467a3);
    color: #fff;
}

    .mycp_btn_value:active {
        background-image: linear-gradient(#91c7f7,#3399f3 50%,#2467a3);
        top: 2px;
    }

    .mycp_btn_value:before {
        border-radius: 5px 0px 0px 5px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 150%;
        width: 33%;
    }



    /* Bigger Buttons */
.mycp_btn_lg_primary {
    background-image: linear-gradient(#92c787, #63b330 50%,#528545);
    color: #fff;
}

    .mycp_btn_lg_primary:active {
        background-image: linear-gradient(#92c787, #63b330 50%,#528545);
        top: 2px;
    }

    .mycp_btn_lg_primary:before {
        border-radius: 10px 0px 0px 10px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 200%;
        width: 60px;
    }



.mycp_btn_lg_danger {
    background-image: linear-gradient(#7191b3,#446e9b 50%,#355272);
    color: #fff;
}

    .mycp_btn_lg_danger:active {
        background-image: linear-gradient(#7191b3,#446e9b 50%,#355272);
        top: 2px;
    }

    .mycp_btn_lg_danger:before {
        border-radius: 10px 0px 0px 10px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 3;
        font-size: 200%;
        width: 60px;
    }


/* Analyse*/

.chart-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.chart-container {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    justify-content: start;
    padding: 1rem;
    border: 1px solid #ccc;
    background: #f8f8f8;
    height: 300px;
    border-radius: 6px;
    font-size: 12px;
}

.bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.bar {
    width: 100%;
    transition: height 0.5s ease;
}

.bar-label-top {
    margin-bottom: 0.2rem;
    font-weight: bold;
}

.bar-label-bottom {
    margin-top: 0.3rem;
    color: #333;
}

.chart-vertical-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px;
    background-color: #f0f2f5;
    font-size: 12px;
    width: 100%;
    border: lightgray 1px solid;
    border-radius: 6px;
}

.horizontal-bar-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bar-label-left {
    width: 45px;
    text-align: left;
    font-weight: bold;
    color: #345678;
}

.bar-horizontal {
    height: 20px;
    position: relative;
    border-radius: 4px;
    transition: width 0.4s ease;
}

.bar-value {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.chart-legend {
    min-width: 150px;
    border-left: 1px solid #ccc;
    padding-left: 15px;
    box-sizing: border-box;
}

.legend-entry {
    font-size: 12px;
    color: #444;
    margin-bottom: 10px;
}

.bar-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.bar-horizontal-multi {
    height: 20px;
    position: relative;
    border-radius: 4px;
    transition: width 0.4s ease;
}

.bar-value-multi {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 11px;
}

.bar-value-left {
    display: inline-block;
    width: 100px;
    text-align: left;
    margin-left: 6px;
    font-weight: bold;
    font-size: 11px;
}

.bar-value-right {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 11px;
}


    
/* Placeholder */
.image-placeholder {
    height: 220px;
    position: relative;
}

.placeholder-content {
    display: flex;
}

.placeholder-content, .placeholder-text {
    height: 30.75px;
    position: relative;
}

.placeholder-content, .placeholder-text {
    width: 100%;
}

.cardimage-wraper {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #f1f7f9;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 9px 9px 6px -5px #9b9b9b;
}

.cardbtn-wraper {
    position: relative;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(#92c787, #63b330 50%,#528545);
    z-index: 1;
    overflow: hidden;
    border-radius: 5px;
}

.activity {
    position: absolute;
    left: -45%;
    height: 100%;
    width: 45%;
    background-image: linear-gradient(to left, rgba(251,251,251, .05), rgba(251,251,251, .3), rgba(251,251,251, .6), rgba(251,251,251, .3), rgba(251,251,251, .05));
    background-image: -moz-linear-gradient(to left, rgba(251,251,251, .05), rgba(251,251,251, .3), rgba(251,251,251, .6), rgba(251,251,251, .3), rgba(251,251,251, .05));
    background-image: -webkit-linear-gradient(to left, rgba(251,251,251, .05), rgba(251,251,251, .3), rgba(251,251,251, .6), rgba(251,251,251, .3), rgba(251,251,251, .05));
    animation: placeholer_loading 1.2s infinite;
    z-index: 2;
}

@keyframes placeholer_loading {
    0% {
        left: -45%;
    }

    100% {
        left: 100%;
    }
}
/* Icon Modifier */

.only_icon {
    font-family: 'Material Icons';
    font-size: 160%;
    padding-top: 0px;
}

.icon-primary {
    background-image: linear-gradient(#92c787, #63b330 50%,#528545);
    color: #fff !important;
}

.icon-secondary {
    background-image: linear-gradient(#cdcccc,#999 50%,#6a6363);
    color: #fff !important
}
.icon-warning {
    background-image: linear-gradient(#ffac45,#d47500 50%,#c17414);
    color: #fff !important
}
.icon-danger {
    background-image: linear-gradient(#7191b3,#446e9b 50%,#355272);
    color: #fff !important
}

.icon-delete {
    background-image: linear-gradient(#fb5f5c, #d52222 50%, #bf2727);
    color: #fff !important
}

/* Icons */
.icon-cart:before {
    content: "\e8cc";
}

.icon-auto-mvb:before {
    content: "\ebe7";
}

.icon-done:before {
    content: "\e876";
}

.icon-info:before {
    content: "\e88e";
}

.icon-info-outlined:before {
    content: "\e88f";
}

.icon-back:before {
    content: "\f1e6";
}

.icon-backspace:before {
    content: "\e14a";
}

.icon-euro:before {
    content: "\e926";
}

.icon-cancel:before {
    content: "\e5c9";
}

.icon-login:before {
    content: "\ea77";
}

.icon-logout:before {
    content: "\e9ba";
}

.icon-register:before {
    content: "\ef40";
}

.icon-menu-book:before {
    content: "\ea19";
}

.icon-news:before {
    content: "\eb81";
}

.icon-rss-feed:before {
    content: "\e0e5";
}

.icon-receipt:before {
    content: "\ef6e";
}

.icon-download:before {
    content: "\e2c4";
}

.icon-card:before {
    content: "\e870";
}

.icon-add-card:before {
    content: "\eb86";
}

.icon-home:before {
    content: "\e88a";
}

.icon-personal:before {
    content: "\f02e";
}

.icon-account:before {
    content: "\e871";
}

.icon-lug:before {
    content: "\e873";
}

.icon-online:before {
    content: "\e8e5";
}

.icon-checkout:before {
    content: "\eff1";
}

.icon-arrow-up:before {
    content: "\f182";
}

.icon-bin:before {
    content: "\e92b"
}

.icon-edit:before {
    content: "\e745"
}

.icon-subacc:before {
    content: "\e7fe"
}

.icon-food-bank:before {
    content: "\f1f2"
}

.icon-qr-code:before {
    content: "\ef6b"
}

.icon-qr-code-scanner:before {
    content: "\f206"
}

.icon-refresh:before {
    content: "\e5d5"
}

.icon-search:before {
    content: "\e8b6"
}

.icon-open-in-new:before {
    content: "\e89e"
}

.icon-notification:before {
    content: "\e003"
}
.icon-notification-active:before {
    content: "\e7f7"
}
.icon-notification-off:before {
    content: "\e7f6"
}