﻿/*Variables*/

:root {
    --ra-primary: #f95783;
    --ra-primary-lighten: #fe6790;
    --ra-primary-darken: #f04a77;
    --ra-secondary: #44D78F;
    --ra-primary-contrasttext: #ffffff;
    --ra-light-s1: #ffffff;
    --ra-light-s2: #FAFAFF;
    --ra-light-s3: #dadada;
    --ra-dark-s1: #858585;
    --ra-dark-s2: #1A1C21;
    --ra-dark-s3: #141414;
    --ra-dark-s4: #27272f;
    --ra-dark-s5: #404141;
    --ra-error: #ff4141;
    --ra-cancel: #f53737;
    --ra-success: #669d05;
    --ra-success-darken: #4f901b;
    --ra-success-text: #ffffff;
    --ra-gradient-dark-i1: linear-gradient(to right top, #343434, #353535, #363636, #373737, #383838, #383838, #393939, #393939, #383938, #383838, #373837, #373737);
    --ra-header: #181818;
}

/*Generics*/

.ra-apploader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right top, var(--ra-dark-s3), #1b1b1c, #212224, #27292c, #2d3035);
}

.ra-apploader-svg {
    position: absolute;
    z-index: 2;
    width: 400px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -webkit-animation: loader-scaleup 1.5s cubic-bezier(0.950, 0.050, 0.795, 0.035) infinite alternate both;
    animation: loader-scaleup 1.5s cubic-bezier(0.950, 0.050, 0.795, 0.035) infinite alternate both;
}

    .ra-apploader-svg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

@-webkit-keyframes loader-scaleup {
    0% {
        -webkit-transform: translate(-50%,-50%) scale(0.8);
        transform: translate(-50%,-50%) scale(1);
    }

    100% {
        -webkit-transform: translate(-50%,-50%) scale(1);
        transform: translate(-50%,-50%) scale(1.2);
    }
}

@keyframes loader-scaleup {
    0% {
        -webkit-transform: translate(-50%,-50%) scale(0.8);
        transform: translate(-50%,-50%) scale(1);
    }

    100% {
        -webkit-transform: translate(-50%,-50%) scale(1);
        transform: translate(-50%,-50%) scale(1.2);
    }
}

::-webkit-scrollbar-track {
    background-color: #d9d9d9;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    background-color: #6a6a6a;
    border-radius: 20px;
}

::-webkit-scrollbar {
    width: 10px;
}




/*Layout*/

html {
    height: 100%;
}

body {
    height: 100%;
}

div#app {
    height: 100%;
}

.ra-page {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--ra-dark-s3);
    padding: 10px 10px 10px 0px;
    overflow: hidden;
}

.ra-header {
    width: 100%;
    position: relative;
    padding: 8px 5px;
    top: 0;
    left: 0;
    z-index: 100;
}

.ra-body {
    width: 100%;
    position: relative;
    background-color: var(--ra-light-s2);
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.ra-content {
    width: 100%;
    margin: auto;
    height: 100%;
}

.ra-appdrawer {
    height: 100%;
    width: 76px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--ra-dark-s3);
    border-radius: 10px;
    padding-top: 28px;
    padding-bottom: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .ra-appdrawer.active {
        width: 250px;
    }

.ra-implementation {
    width: 92%;
    margin: auto;
    max-width: 1500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
}

.ra-impl-header {
    border-radius: 14px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-right: auto;
    width: 100%;
}

.ra-impl-body {
    border-radius: 28px;
    background-color: transparent;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.ra-impl-header-title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 22px;
}

.ra-impl-header-titleimg {
    width: 60px;
    height: 60px;
    background-color: #d4d4d4;
    border-radius: 50px;
}

    .ra-impl-header-titleimg svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(2px 4px 6px black);
        -webkit-filter: drop-shadow(2px 4px 6px black);
    }

.ra-impl-header-maintitle {
    font-weight: bold;
    font-size: 2.2rem;
    color: var(--ra-dark-s4);
}

.ra-impl-header-subtitle {
    font-size: 0.9rem;
    color: #7e7e7e;
}

.ra-impl-header-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 5px;
    transition: 0.2s;
}


/*Nav*/

.ra-nav-container {
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    transition: 0.3s;
}

.ra-appdrawer-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.ra-appdrawer.active .ra-nav-container {
    padding: 10px 15px;
}

.ra-nav-link {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    transition: 0.3s;
    padding: 10px 14px 10px 14px;
    border-radius: 15px;
    position: relative;
}

.ra-appdrawer.active .ra-nav-link.active {
    background-color: #212121;
}

.ra-nav-link:hover {
    background-color: #212121;
}

    .ra-nav-link p {
        color: white;
        font-size: 0px;
        font-weight: 300;
        opacity: 0;
        line-height: 0px;
    }

    .ra-nav-link:hover p {
        font-weight: 300;
    }

.ra-appdrawer.active .ra-nav-link p {
    animation-name: navlinkactive;
    animation-duration: 0.2s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

.ra-appdrawer .ra-nav-link:before {
    content: "";
    position: absolute;
    background-color: var(--ra-primary);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 20px;
    height: 100%;
    border-radius: 15px;
    left: -60px;
    transition: 0.3s;
    opacity: 1;
}

.ra-appdrawer .ra-nav-link.active:before {
    opacity: 1;
    background-color: var(--ra-light-s1);
    left: -15px;
    box-shadow: 6px 0px 15px 0px #ffffff5e;
}

.ra-appdrawer.active .ra-nav-link:before {
    left: -60px;
}

.ra-appdrawer.active .ra-nav-link.active:before {
    left: -30px;
}

.ra-appdrawer .ra-nav-link:hover:before {
    opacity: 1;
    left: -30px;
}

.ra-nav-applogo-container {
    position: relative;
    height: 55px;
    margin: 10px auto 40px auto;
}

.ra-nav-applogo-small {
    width: 55px;
    height: 55px;
    transition: 0.2s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}

    .ra-nav-applogo-small img {
        width: 100%;
        height: 100%;
        object-fit: contain;
/*        -webkit-animation: shadow-drop-logo 3s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite alternate both;
        animation: shadow-drop-logo 3s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite alternate both;*/
    }

@-webkit-keyframes shadow-drop-logo {
    0% {
        filter: drop-shadow(rgb(0, 0, 0) 0px 0px 0px);
        -webkit-filter: drop-shadow(rgb(0, 0, 0) 0px 0px 0px);
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    100% {
        filter: drop-shadow(rgb(182, 98, 210) 2px 4px 10px);
        -webkit-filter: drop-shadow(rgb(182, 98, 210) 2px 4px 10px);
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }
}

@keyframes shadow-drop-logo {
    0% {
        filter: drop-shadow(rgb(0, 0, 0) 0px 0px 0px);
        -webkit-filter: drop-shadow(rgb(0, 0, 0) 0px 0px 0px);
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    100% {
        filter: drop-shadow(rgb(182, 98, 210) 2px 4px 10px);
        -webkit-filter: drop-shadow(rgb(182, 98, 210) 2px 4px 10px);
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }
}

.ra-nav-applogo-full {
    width: 170px;
    height: 48px;
    transition: 0.2s;
    padding: 5px 0;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}

    .ra-nav-applogo-full img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.ra-appdrawer.active .ra-nav-applogo-small {
    width: 100px;
    height: 60px;
}

/*.ra-appdrawer.active .ra-nav-applogo-full {
    opacity: 1;
}*/

.ra-nav-container .ra-nav-link .ra-svg-icon {
    color: #a1a1a1;
    transition: 0.8s;
}

.ra-nav-link:hover .ra-svg-icon {
    color: var(--ra-light-s1);
}

.ra-nav-container .ra-nav-link.active .ra-svg-icon {
    color: var(--ra-light-s1);
    filter: drop-shadow(-4px 0px 7px white);
    -webkit-filter: drop-shadow(-4px 0px 7px white);
}

@keyframes navlinkactive {
    0% {
        opacity: 0;
        font-size: 0px;
        line-height: 0px;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        font-size: 13px;
        line-height: 22px;
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }
}

.ra-navicon {
    margin: 0 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.ra-appdrawer.active .ra-navicon {
    animation-name: naviconactive;
    animation-duration: 0.3s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

.ra-nav-container .ra-nav-link .ra-imageicon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

    .ra-nav-container .ra-nav-link .ra-imageicon svg {
        width: 24px;
        height: 24px;
        object-fit: contain;
        transition: 0.6s;
    }

.ra-nav-container .ra-nav-link.active .ra-imageicon svg {
    filter: drop-shadow(-4px 0px 7px #ffffff9e);
    -webkit-filter: drop-shadow(-4px 0px 7px #ffffff9e);
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

@keyframes naviconactive {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    50% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.ra-appdrawer-account {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border-radius: 40px;
    box-shadow: 0px 0px 0px 0px black;
    border: 1px solid transparent;
    transition: 0.3s;
}

.ra-appdrawer-footer {
    padding: 0 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
}

.re-appdrawer-aplaclick {
    width: 165px;
    height: 95px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.active .re-appdrawer-aplaclick {
    opacity: 1;
    pointer-events: initial;
}

    .re-appdrawer-aplaclick img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

.ra-account-button {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border: 2px solid #f4f4f4;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 0px 0px 0px #5e5e5e, 0px 12px 14px 3px black;
    transition: 0.3s;
    background-color: #d4d4d4;
}

    .ra-account-button:hover {
        background-color: var(--ra-primary);
    }

        .ra-account-button:hover svg {
            transform: scale(1.2);
            -webkit-transform: scale(1.2);
        }

.ra-appdrawer.active .ra-account-button {
    width: 54px;
    height: 54px;
}

.ra-account-button svg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    /*filter: drop-shadow(0px 0px 5px #a7a7a7);*/
}

.ra-appdrawer-logout {
    width: 0;
    overflow: hidden;
    transition: 0.3s;
    height: 40px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: 0px 0px 0px 0px black;
    cursor: pointer;
    opacity: 0;
}

    .ra-appdrawer-logout .ra-svg-icon {
        color: var(--ra-light-s1);
    }

.active .ra-appdrawer-logout {
    width: 40px;
    margin: 0 10px 0 40px;
    opacity: 1;
    box-shadow: 0px 12px 14px 3px black;
}

    .active .ra-appdrawer-logout:hover {
        background-color: #262626;
    }


/*Login Page*/

.ra-page.login {
    padding: 0;
}

.ra-page.login .ra-body {
    height: 100%;
    border-radius: 0;
}

.ra-loginpage {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}


.ra-bckrimages-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.ra-loginpage-container {
    width: 100%;
    height: 100%;
    background-color: var(--ra-dark-s3);
    padding: 10px;
    overflow: hidden;
}

.ra-loginpage-container-inner {
    width: 100%;
    height: 100%;
    background-color: var(--ra-light-s2);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.ra-loginpage-formcolumn {
    width: 50%;
    height: 100%;
    padding: 20px;
}

.ra-loginpage-graphics {
    width: 50%;
    height: 100%;
    padding: 20px;
}

.ra-loginpage-graphics-content {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 22px 28px 29px #00000024;
    -webkit-animation: loginimg-breathe 8s ease-in-out 3s infinite alternate forwards;
    animation: loginimg-breathe 8s ease-in-out infinite 3s alternate forwards;
    position: relative;
}

    .ra-loginpage-graphics-content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.typing-container {
    position: absolute;
    width: max-content;
    bottom: 10px;
    left: 50%;
    font-family: 'Darker Grotesque', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #202020e3;
    color: white;
    font-size: 2rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    border-radius: 5px;
    padding: 10px 12px;
}

.typing-container.hidden {
    display: none;
}

.input-cursor {
    display: inline-block;
    width: 2px;
    height: 42px;
    background-color: white;
    margin-left: 8px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.input-cursor {
    animation: blink .6s linear infinite alternate;
}









.ra-loginpage-formcontainer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


@-webkit-keyframes loginimg-breathe {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

@keyframes loginimg-breathe {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

.ra-loginpage-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 530px;
}

    .ra-loginpage-form .mud-form {
        width: 100%;
    }

.ra-login-text1 {
    margin-top: 20px;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--ra-dark-s4);
}

.ra-login-text2 {
    font-size: 1rem;
    font-weight: 500;
    color: #5b5b5b;
    margin-bottom: 50px;
    transition: 0.5s ease-in-out;
    transition-delay: 0.7s;
    margin-top: 20px;
}



.ra-login-submit {
    width: 100%;
    height: 48px;
    color: var(--ra-light-s1);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    margin-top: 22px;
    transition: 0.2s;
    background-color: var(--ra-dark-s2);
}

    .ra-login-submit:hover {
        background-color: #303030;
        transform: scale(0.98);
        -webkit-transform: scale(0.98);
        box-shadow: 0px 22px 31px -10px #23232330;
    }

    .ra-login-submit:active {
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
    }


    .ra-login-submit.mud-button-filled:disabled {
        background-color: #303030 !important;
        transform: scale(1);
        -webkit-transform: scale(1);
    }






.ra-login-continue {
    width: 100%;
    height: 48px;
    color: var(--ra-light-s1);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    margin-top: 22px;
    transition: 0.2s;
    background-color: var(--ra-dark-s2);
}

    .ra-login-continue:hover {
        background-color: #303030;
        transform: scale(0.98);
        -webkit-transform: scale(0.98);
        box-shadow: 0px 22px 31px -10px #23232330;
    }

    .ra-login-continue:active {
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
    }


    .ra-login-continue.mud-button-filled:disabled {
        background-color: #303030 !important;
        transform: scale(1);
        -webkit-transform: scale(1);
    }

.username-notvalid {
    width: 100%;
    text-align: center;
    margin-top: 5px;
}

    .username-notvalid p {
        font-size: 0.9rem;
        font-weight: 500;
        color: #ff3c3c;
    }








.ra-login-subscribe {
    margin-top: 60px;
    font-size: 0.9rem;
    color: #5b5b5b;
    text-align: center;
}

.ra-login-subscribe a{
    margin-left: 5px;
    color: var(--ra-primary);
}

.username-label {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

    .username-label p {
        font-size: 1rem;
        padding: 13px 25px;
        background-color: #ededf2;
        border-radius: 10px;
        color: var(--mud-palette-text-primary);
    }


.username-label-change-icon {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ededf2;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: .2s;
    border: 1px solid #cccccc;
}

.username-label-change-icon svg{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

    .username-label-change-icon:hover {
        background-color: #535353;
    }

        .username-label-change-icon:hover svg {
            fill: white;
        }

















/*Header*/

.ra-header-button-wrapper {
    position: relative;
}

.ra-header-button.search {
    background-color: var(--ra-light-s1);
    padding: 7px;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0px 0px 20px -7px #00000047;
    margin: 0 10px;
    transition: 0.2s;
}

.ra-header-button.notif {
    background-color: var(--ra-light-s1);
    padding: 7px;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0px 0px 20px -7px #00000047;
    margin: 0 10px;
    transition: 0.2s;
}

    .ra-header-button.search:hover {
        background-color: var(--ra-light-s3);
    }

.ra-header-button.notif:hover {
    background-color: var(--ra-light-s3);
}

.ra-header-button .ra-svg-icon {
    color: var(--ra-dark-s1);
}

.ra-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.ra-useraccount-popup-maininfo {
    color: white;
    font-size: 0.8rem;
    font-weight: 300;
    text-align: left;
    padding: 0 10px 20px 10px;
    border-bottom: 1px solid var(--ra-dark-s2);
    box-shadow: 0px 22px 29px -28px black;
}

.ra-header-button.search:active {
    box-shadow: inset 0px 0px 15px -3px black;
}

.ra-header-button.notif:active {
    box-shadow: inset 0px 0px 15px -3px black;
}

.ra-useraccount-popup-name {
    color: var(--ra-primary);
    font-size: 1.4rem;
}

.ra-useraccount-popup-company {
    color: var(--ra-light-s1);
}

.ra-useraccount-popup-options {
    width: 100%;
    text-align: left;
    padding-top: 20px;
}

.ra-useraccount-popup-option {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 10px;
    cursor: pointer;
    transition: 0.2s;
    margin: 2px 0;
    border-radius: 4px;
}

    .ra-useraccount-popup-option p {
        margin-left: 10px;
        color: var(--ra-light-s3);
        font-size: 0.9rem;
        font-weight: 300;
    }

    .ra-useraccount-popup-option .ra-svg-icon {
        color: var(--ra-light-s3);
    }

    .ra-useraccount-popup-option.logout p {
        color: var(--ra-error);
        font-weight: 500;
    }

    .ra-useraccount-popup-option:hover {
        background-color: var(--ra-dark-s2);
    }


/*Welcome Page*/

.impl-index .ra-impl-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    overflow: initial;
}

.group-A {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.group-AA {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.group-AB {
    width: 50%;
    height: 100%;
}

.group-AAA {
    width: 50%;
    height: 100%;
}

.group-AAB {
    width: 50%;
    height: 100%;
}

.menuitemscard {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right top, #ab01ff, #ad0bff, #b013ff, #b219ff, #b41eff, #b624ff, #b828ff, #ba2dff, #bc33ff, #be39ff, #bf3eff, #c143ff);
    border-radius: 35px;
    box-shadow: inset 15px -45px 23px -4px #00000014, 0px 22px 28px 29px #00000024;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

    .menuitemscard .title {
        font-size: 1.5rem;
        color: white;
        font-weight: 500;
        text-shadow: 0px 3px 15px black;
    }

    .menuitemscard .count {
        font-size: 3rem;
        color: white;
        font-weight: 500;
        text-shadow: 0px 3px 9px black;
        background-color: #00000038;
        padding: 10px 60px;
        border-radius: 50px;
    }

    .menuitemscard .itemicon {
        width: 140px;
        height: 140px;
        background-color: #ffffff;
        border-radius: 90px;
    }

        .menuitemscard .itemicon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

















.ra-welcomepage-container {
    width: 80%;
    text-align: center;
    padding-bottom: 40px;
    margin: auto;
    max-width: 1300px;
}

.ra-welcomepage-title {
    margin: 25px 0;
    text-align: left;
    background-color: #f5f5f5;
    padding: 10px 28px;
    border-radius: 28px;
}

.ra-welcomepage-container-inner {
    width: 100%;
}

.ra-welcomepage-title h1 {
    color: #343434;
    font-size: 20px;
    font-weight: 300;
}

.ra-welcomepage-group {
    width: 100%;
    max-width: 1000px;
    margin-top: 50px;
}

.ra-welcomepage-groupitems {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 10px 0px;
    border-radius: 35px;
    gap: 25px;
}

.ra-welcomepage-groupitemswithsideitem {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

    .ra-welcomepage-groupitemswithsideitem .ra-welcomepage-groupitems {
        width: 60%;
    }
    .ra-welcomepage-groupitemswithsideitem .ra-welcomepage-sideitem {
        width: 35%;
        height: 100%;
    }

        .ra-welcomepage-groupitemswithsideitem .ra-welcomepage-sideitem .ra-welcomepage-groupitem {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .ra-welcomepage-groupitemswithsideitem .ra-welcomepage-sideitem .ra-welcomepage-groupitem .ra-welcomepage-groupitem-iconcontainer {
                justify-content: center;
                height: 150px;
            }
            .ra-welcomepage-groupitemswithsideitem .ra-welcomepage-sideitem .ra-welcomepage-groupitem .ra-welcomepage-groupitem-icon svg {
                width: 100px;
                height: 100px;
            }
            .ra-welcomepage-groupitemswithsideitem .ra-welcomepage-sideitem .ra-welcomepage-groupitem .ra-welcomepage-groupitem-title {
                text-align: center;
                font-size: 1.2rem;
            }

            .ra-welcomepage-groupitemswithsideitem .ra-welcomepage-sideitem .ra-welcomepage-groupitem .ra-welcomepage-groupitem-iconcontainer:before {
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
            }

            .ra-welcomepage-groupitemswithsideitem .ra-welcomepage-sideitem .ra-welcomepage-groupitem:hover .ra-welcomepage-groupitem-iconcontainer:before {
                transform: translate(-50%,-50%) scale(5);
                -webkit-transform: translate(-50%,-50%) scale(5);
                background-color: var(--ra-primary);
            }

            .ra-welcomepage-groupitemswithsideitem .ra-welcomepage-sideitem .ra-welcomepage-groupitem:active .ra-welcomepage-groupitem-iconcontainer:before {
                transform: translate(-50%,-50%) scale(20);
                -webkit-transform: translate(-50%,-50%) scale(20);
            }


.ra-welcomepage-groupitem {
    width: 100%;
    background-color: #232323;
    text-align: center;
    border-radius: 35px;
    overflow: hidden;
    transition: 0.1s;
    cursor: pointer;
    position: relative;
    z-index: 2;
    background-image: linear-gradient(to right top, var(--ra-dark-s3), #1b1b1c, #212224, #27292c, #2d3035);
    padding: 5px;
    box-shadow: 0px 22px 28px 29px #00000024;
    display: block;
}

    .ra-welcomepage-groupitem:active {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }

.ra-welcomepage-groupitem-iconcontainer {
    width: 100%;
    height: 95px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

    .ra-welcomepage-groupitem-iconcontainer:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        width: 72px;
        height: 72px;
        /*background-color: #24242473;*/
        z-index: 0;
        border-radius: 72px;
        transition: 0.4s;
    }

    .ra-welcomepage-groupitem-iconcontainer .ra-welcomepage-groupitem-icon {
        width: 100px;
        height: 100%;
        z-index: 2;
        position: relative;
        transition: 0.2s;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .ra-welcomepage-groupitem-iconcontainer .ra-welcomepage-groupitem-icon svg{
        width: 50px;
        height: 50px;
        transition: 0.2s;
    }






.ra-welcomepage-groupitem:hover .ra-welcomepage-groupitem-iconcontainer:before {
    transform: translate(-50%,-50%) scale(5);
    -webkit-transform: translate(-50%,-50%) scale(5);
    background-color: var(--ra-primary);
}

.ra-welcomepage-groupitem:hover .ra-welcomepage-groupitem-iconcontainer .ra-welcomepage-groupitem-icon svg {
    transform: scale(1.1) translateY(-15px);
    -webkit-transform: scale(1.1) translateY(-15px);
    filter: drop-shadow(23px 18px 4px black);
    -webkit-filter: drop-shadow(23px 18px 4px black);
}

.ra-welcomepage-groupitem:active .ra-welcomepage-groupitem-iconcontainer:before {
    transform: translate(-50%,-50%) scale(20);
    -webkit-transform: translate(-50%,-50%) scale(20);
}

.ra-welcomepage-groupitem-title {
    color: var(--ra-light-s1);
    font-size: 1rem;
    background-color: transparent;
    transition: 0.2s;
    border-top: 1px solid transparent;
    font-weight: 300;
    position: relative;
    text-align: left;
    padding: 4px 22px;
}

.ra-welcomepage-groupitem-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 22px;
    position: absolute;
    bottom: 12px;
    right: 12px;
}

.ra-welcomepage-groupitem-statvalue {
    min-width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0px 0px 28px -14px black;
    order: 2;
    padding: 0 8px;
}

    .ra-welcomepage-groupitem-statvalue.neutral {
        background-color: var(--ra-dark-s4);
        color: var(--ra-light-s1);
    }
    .ra-welcomepage-groupitem-statvalue.positive {
        background-color: var(--ra-primary);
        color: var(--ra-primary-contrasttext);
    }
    .ra-welcomepage-groupitem-statvalue.negative {
        background-color: var(--ra-error);
        color: var(--ra-light-s1);
    }

.ra-welcomepage-groupitem-statname {
    font-size: 0.7rem;
    color: #ffffffad;
    width: 74px;
    margin-bottom: 2px;
}

.ra-welcomepage-groupitem-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ra-welcomepage-group.mystats {
    border-radius: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
}

.ra-indexpagestats {
    height: 100%;
    border-radius: 30px;
    background-image: var(--ra-gradient-dark-i1);
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

    .ra-indexpagestats p {
        color: var(--ra-light-s1);
        font-size: 0.7rem;
        font-weight: 300;
    }

.ra-indexpagestats-inner {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.ra-indexpagestats .mud-charts-xaxis text {
    fill: white;
    font-size: 1.4em;
}

.ra-indexpagestats .mud-charts-yaxis text {
    fill: white;
    font-size: 1.5em;
}

.ra-indexpagestats .mud-chart .mud-chart-line {
    overflow: initial;
    width: 80%;
    margin: auto;
    height: 220px;
}

.ra-indexpagestats-chartcontainer {
    margin-bottom: 30px;
}


/*Implementations*/

/*Configuration*/

.mydataregion p {
    font-weight: bold;
    font-size: 1rem;
    color: #434343;
    margin-bottom: 15px;
}

.export-menublazedata {
    display: inline-block;
    background-color: #14a814;
    padding: 10px 30px;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

    .export-menublazedata:hover {
        background-color: #2cb92c;
    }

.export-menublazedata div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.versionsregion {
    margin-top: 100px;
}

.versionsvalues {
    color: #686868;
}

.configuration-content {
    background-color: #ededf2;
    border-radius: 20px;
    padding: 20px;
}


/*Items*/

.impl-items .ra-impl-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
}

.impl-items .ra-region-a {
    padding: 5px;
    border-radius: 28px;
    width: 100%;
}

    .impl-items .ra-region-a.main {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

.impl-items .ra-region-b {
    padding: 5px 18px;
    border-radius: 28px;
    width: 100%;
    height: 100%;
}

.impl-items .ra-icon-button.additem {
    border-radius: 28px;
    background-color: transparent;
}
    .impl-items .ra-icon-button.additem .ra-svg-icon {
        color: var(--ra-light-s1);
    }

    .impl-items .ra-icon-button.additem:hover {
        background-color: var(--ra-primary);
    }

    .impl-items .ra-icon-button.additem:active {
        background-color: var(--ra-primary);
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }

    .impl-items .ra-icon-button.additem:hover .ra-svg-icon {
        color: var(--ra-primary-contrasttext);
    }

    .impl-items .ra-icon-button.additem:active .ra-svg-icon {
        color: var(--ra-primary-contrasttext);
    }


.impl-items .ra-region-b.grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.impl-items .ra-grid-search {
    height: 40px;
    font-weight: 500;
    width: 100%;
    font-size: 15px;
    color: var(--ra-dark-s1);
    padding: 0 15px;
    border-radius: 28px;
    background-color: #6262620f;
}

    .impl-items .ra-grid-search::placeholder {
        color: var(--ra-dark-s1);
        font-weight: 300;
    }

.impl-items .ra-icon-button.itemsactions {
    border-radius: 28px;
    background-color: transparent;
}

    .impl-items .ra-icon-button.itemsactions .ra-svg-icon {
        color: var(--ra-light-s1);
    }

    .impl-items .ra-icon-button.itemsactions:hover {
        background-color: var(--ra-primary);
    }

    .impl-items .ra-icon-button.itemsactions:active {
        background-color: var(--ra-primary);
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }

    .impl-items .ra-icon-button.itemsactions:hover .ra-svg-icon {
        color: var(--ra-primary-contrasttext);
    }

    .impl-items .ra-icon-button.itemsactions:active .ra-svg-icon {
        color: var(--ra-primary-contrasttext);
    }


.ra-gridheader-left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.ra-gridheader-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.impl-items .ra-gridheader {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
}

.impl-items .ra-grid.items {
    padding: 12px 20px 12px 20px;
    border-radius: 14px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

    .impl-items .ra-grid.items .ra-grid-inner {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        overflow: auto;
        padding-right: 10px;
        height: 100%;
        width: 100%;
    }

    .impl-items .ra-grid.items .ra-gridrow {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 12px;
        transition: 0.2s background-color;
    }

        .impl-items .ra-grid.items .ra-gridrow.selected {
            background-color: #bababa6e;
            box-shadow: inset 7px 0px 46px -40px black;
        }

    .impl-items .ra-grid.items .ra-grid-footer {
        width: 100%;
        padding-left: 40px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 50px;
    }

    .impl-items .ra-grid.items .ra-rowcount {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 4px 15px;
        border-radius: 24px;
        background-color: #f1f1f6;
    }

    .impl-items .ra-grid.items .ra-rowcount-desc {
        font-size: 1rem;
        font-weight: 500;
        color: var(--ra-dark-s2);
    }

    .impl-items .ra-grid.items .ra-rowcount-value {
        font-size: 1.3rem;
        margin-left: 10px;
        font-weight: 500;
        color: var(--ra-dark-s5);
    }

    .impl-items .ra-grid.items .selectboxcontainer {
        width: 6%;
        height: 40px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .impl-items .ra-grid.items .selectbox {
        border-radius: 5px;
        border: 2px solid #b2b2b2;
        cursor: pointer;
        width: 20px;
        height: 20px;
        position: relative;
        transition: 0.2s;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

        .impl-items .ra-grid.items .selectbox.selected {
            background-color: #4b4b4b;
            border: 2px solid #4b4b4b;
        }


        .impl-items .ra-grid.items .selectbox svg {
            width: 15px;
            height: 15px;
            transform: scale(0);
            -webkit-transform: scale(0);
            transition: 0.2s;
        }

        .impl-items .ra-grid.items .selectbox.selected svg {
            transform: scale(1);
            -webkit-transform: scale(1);
        }



        .impl-items .ra-grid.items .selectbox.disabled {
            background-color: #a5a5a5a6;
            cursor: not-allowed;
            pointer-events: none;
        }

    .impl-items .ra-grid.items .rowcontent {
        width: 93%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: relative;
        border-radius: 30px;
        padding: 14px 12px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: 0.2s;
    }


        .impl-items .ra-grid.items .rowcontent div {
            text-align: center;
            color: var(--ra-dark-s5);
            font-size: 0.8rem;
            font-weight: 300;
        }

    .impl-items .ra-grid.items div.price {
        color: #14a814;
        font-weight: 500;
        font-size: 1rem;
        width: 10%;
    }

    .impl-items .ra-grid.items .image {
        width: 5%;
    }

    .impl-items .ra-grid.items .imagecontainer {
        width: 2.62rem;
        height: 2.62rem;
        overflow: hidden;
        border-radius: 30px;
        margin: auto;
        border: 2px solid #e9e9e9;
        padding: 7px;
    }

        .impl-items .ra-grid.items .imagecontainer svg {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .impl-items .ra-grid.items .rowcontent .description {
        width: 20%;
        color: var(--ra-dark-s2);
        font-size: 0.9rem;
        font-weight: 500;
        text-align: left;
    }

    .impl-items .ra-grid.items .category {
        width: 20%;
        color: var(--ra-dark-s2);
        font-size: 0.9rem;
        font-weight: 300;
        text-align: center;
    }

    .impl-items .ra-grid.items .ra-grid-loadmore {
        padding: 10px 20px;
        border-radius: 30px;
        cursor: pointer;
        transition: 0.2s;
        margin-bottom: 20px;
        margin-top: 8px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .impl-items .ra-grid.items .ra-grid-loadmore-text {
        color: #585858;
        font-size: 0.9rem;
    }

    .impl-items .ra-grid.items .ra-grid-loadmore .ra-svg-icon {
        color: #4b4b4b;
    }

        .impl-items .ra-grid.items .ra-grid-loadmore:hover {
            
        }

    .impl-items .ra-grid.items .ra-grid-loadmore:active {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }

    .impl-items .ra-grid.items .ra-grid-skeleton {
        width: 100%;
    }

    .impl-items .ra-grid.items .ra-gridrow.header .rowcontent {
        border: none;
        cursor: initial;
        background-color: transparent;
        padding: 8px 12px;
    }

        .impl-items .ra-grid.items .ra-gridrow.header .rowcontent div {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--ra-dark-s5);
        }

    .impl-items .ra-grid.items .ra-gridrow.header .rowcontent:hover {
        border: none;
        box-shadow: none;
    }

    .impl-items .ra-grid.items .ra-gridrow.header {
        background-color: var(--ra-light-s2);
        border-radius: initial;
        padding-right: 15px;
    }

.ra-grid-inner .ra-gridrow:nth-child(odd) {
    background-color: #6262620f;
}

.impl-items .ra-grid.items .ra-grid-inner .ra-gridrow:hover {
    background-color: #e2e2e2;
}

    /*Menu Items*/

    .impl-items .ra-grid.items .priceanalysis {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        width: 45%;
        height: 28px;
        border-radius: 20px;
    }

    .impl-items .ra-grid.items .priceanalysis-inner {
        position: absolute;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .impl-items .ra-grid.items .priceanalysis .mud-tooltip-root {
        width: 100%;
        height: 100%;
    }

.priceanalysis-tooltip {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--ra-light-s1);
    padding: 10px;
}

    .priceanalysis-tooltip div span {
        background-color: #44D78F;
        font-size: 0.8rem;
        padding: 4px 10px;
        border-radius: 12px;
        text-shadow: 2px 2px 7px black;
    }

    .priceanalysis-tooltip .cost span {
        background-color: #ff4e3b;
        font-size: 0.8rem;
    }

    .priceanalysis-tooltip .vat span {
        background-color: var(--ra-light-s3);
        font-size: 0.8rem;
        color: var(--ra-dark-s4);
    }

.impl-items .ra-grid.items div.profit {
    background-color: #44D78F;
    height: 100%;
    color: var(--ra-light-s1);
    font-weight: 500;
    text-shadow: 2px 2px 7px black;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    transition: 1s cubic-bezier(0, -0.34, 0.28, 1.31);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.impl-items .ra-grid.items div.cost {
    background-color: #ff4e3b;
    height: 100%;
    color: var(--ra-light-s1);
    text-shadow: 2px 2px 7px black;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    transition: 1s cubic-bezier(0, -0.34, 0.28, 1.31);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    gap: 5px;
}

    .impl-items .ra-grid.items div.cost.warning p {
        background-color: #42424224;
        color: white;
        font-weight: 500;
        border-radius: 10px;
        padding: 0 10px;
        text-shadow: none;
    }

    .impl-items .ra-grid.items div.cost.warning .cost-warning {
        width: 18px;
        height: 18px;
    }

        .impl-items .ra-grid.items div.cost.warning .cost-warning svg {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.impl-items .ra-grid.items div.vat {
    background-color: #646464;
    height: 100%;
    color: var(--ra-light-s1);
    text-shadow: 2px 2px 7px black;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    transition: 1s cubic-bezier(0, -0.34, 0.28, 1.31);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.impl-items.impl-menuitems .ra-grid.items .description {
    width: 40%;
}


/*Semi Processed*/

.impl-items.impl-semiprocesseditems .ra-grid.items .rowcontent {
    padding: 25px 12px;
}

.impl-semiprocesseditems .ra-grid.items .description {
    width: 30%;
}

.impl-semiprocesseditems .ra-grid.items .sku {
    width: 20%;
}

.impl-semiprocesseditems .ra-grid.items .unit {
    width: 20%;
}

.impl-semiprocesseditems .ra-grid.items .yield {
    width: 15%;
}

.impl-semiprocesseditems .ra-grid.items .prepqty {
    width: 15%;
}



    /*Raw Materials*/

.impl-items.impl-rawmaterials .ra-grid.items .rowcontent {
    padding: 25px 12px;
}

.impl-rawmaterials .ra-grid.items .description {
    width: 30%;
}

.impl-rawmaterials .ra-grid.items .sku {
    width: 30%;
}

.impl-rawmaterials .ra-grid.items .unit {
    width: 20%;
}

.impl-rawmaterials .ra-grid.items .yield {
    width: 20%;
}






/*Modals*/

.ra-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000061;
}

    .ra-modal-overlay.user-loggedout {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #00000061;
        z-index: 1500;
    }

    .ra-modal-overlay.refreshpage {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #00000061;
        z-index: 1500;
    }

.ra-modalcontainer.modal-item {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ra-modalcontainer.modal-useraccount {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ra-modalcontainer.modal-alerts {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ra-modalcontainer.modal-search {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right top, var(--ra-dark-s3), #1b1b1c, #212224, #27292c, #2d3035);
}

.ra-modalcontainer.modal-dialog.confirmation {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ra-modalcontainer.user-loggedout {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1501;
}

.ra-modalcontainer.refreshpage {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1501;
}

.ra-modalcontainer-innersurface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.ra-modal {
    width: 96vw;
    background-color: var(--ra-light-s2);
    height: 96%;
    border-radius: 22px;
    box-shadow: 0px 22px 28px 29px #00000024;
    padding: 20px;
}

.modal-item .ra-modal {
    width: 80vw;
    height: 80%;
    position: relative;
    padding: 0;
}


.ra-modal .ra-modal-exit {
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: #3d3d3d57;
    bottom: -64px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 40px;
}

    .ra-modal .ra-modal-exit:active {
        transform: translateX(-50%) scale(0.95);
        -webkit-transform: translateX(-50%) scale(0.95);
    }

.ra-modal .ra-modal-exit .ra-icon-button.closemodal .ra-svg-icon {
    color: var(--ra-light-s1);
}

    .ra-modal .ra-modal-exit:hover {
        background-color: #3d3d3d36;
    }


.modal-useraccount .ra-modal {
    width: 80vw;
    height: 80%;
    position: relative;
    padding: 0;
}

.modal-alerts .ra-modal {
    width: 80vw;
    position: relative;
    padding: 0;
    max-height: 80%;
    height: initial;
}

.modal-search .ra-modal {
    width: 80vw;
    height: 80%;
    position: relative;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.ra-modal-inner {
    height: 100%;
    overflow-y: auto;
    width: 100%;
    overflow-x: hidden;
    border-radius: 20px;
}

.ra-modalform {
    padding: 20px;
}

.ra-modal-body {
    padding: 20px;
}

.ra-modal-title {
    font-size: 2rem;
    color: var(--ra-dark-s4);
    font-weight: bold;
}

.modal-search .ra-modal-title {
    font-size: 2rem;
    color: var(--ra-light-s1);
    font-weight: bold;
}




.ra-modalitem-header {
    padding: 20px;
    position: relative;
    background-image: linear-gradient(to right top, var(--ra-dark-s3), #1b1b1c, #212224, #27292c, #2d3035);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.ra-modalitem-itempicture {
    width: 12.5rem;
    height: 12.5rem;
    border-radius: 100px;
    background-color: #fafaff;
    order: 1;
}

    .ra-modalitem-itempicture svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(2px 4px 6px black);
        -webkit-filter: drop-shadow(2px 4px 6px black);
        transition: 0.6s;
        transform: scale(1);
        -webkit-transform: scale(1);
        -webkit-animation: prfp-scaleup 0.6s cubic-bezier(0.895, 0.030, 0.685, 0.220) both;
        animation: prfp-scaleup 0.6s cubic-bezier(0.895, 0.030, 0.685, 0.220) both;
    }

.ra-modalitem-info {
    padding: 20px;
    border-radius: 50px;
    text-align: left;
    order: 2;
    min-width: 250px;
}

.ra-modalitem-title {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--ra-light-s1);
}

.ra-modalitem-subtext {
    font-size: 0.9rem;
    color: var(--ra-light-s1);
}













.ra-modalform-headeractions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.ra-formbox {
    margin-top: 20px;
}

.ra-formsection {
    margin: 20px 0px;
}

.ra-formregion {
    margin: 50px 0;
    padding: 20px;
    background-color: #ededf2;
    border-radius: 20px;
}

.ra-tabpanel .ra-formregion {
    margin: 0;
}

.ra-formregion-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: sticky;
    z-index: 2;
    top: 0;
    background-color: #ededf2;
}

.ra-formregion-headerleft {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.ra-formregion-header-icon {
    width: 3.75rem;
    height: 3.75rem;
}

    .ra-formregion-header-icon svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(2px 4px 6px black);
        -webkit-filter: drop-shadow(2px 4px 6px black);
    }

.ra-formregion-header-title {
    font-weight: bold;
    font-size: 1.8rem;
    color: #404141;
}

.ra-chart-container.foodcost {
    width: 80%;
    margin: auto;
    background-image: linear-gradient(to right top, var(--ra-dark-s3), #1b1b1c, #212224, #27292c, #2d3035);
    border-radius: 12px;
    box-shadow: 0px 4px 31px 3px #00000024;
    padding: 15px;
}

.ra-chart-title {
    font-size: 1.5rem;
    color: var(--ra-light-s1);
}

.ra-formregion-element {
    margin: 50px 0;
}

/*Recipe*/

.recipemethod {
    width: 100%;
    padding: 40px 20px 20px 20px;
}

.recipemethod-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 4px 6px black);
    -webkit-filter: drop-shadow(2px 4px 6px black);
}

.recipemethod-icon {
    width: 40px;
    height: 40px;
}

.recipemethod-title {
    font-weight: bold;
    font-size: 1.4rem;
    color: #404141;
}

.recipemethod-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    width: 100%;
    margin-bottom: 20px;
}


/*Modal Metrics*/

.priceanalysis-metrics {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.metric-iconcontainer .metric-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.metric-iconcontainer .metric-icon {
    width: 38px;
    height: 38px;
}

.metric {
    background-image: linear-gradient(to right top, var(--ra-dark-s3), #1b1b1c, #212224, #27292c, #2d3035);
    border-radius: 12px;
    box-shadow: 0px 4px 31px 3px #00000024;
    width: 20%;
    max-width: 250px;
    padding: 10px;
    height: 100px;
    position: relative;
}

.metric-title {
    font-size: 0.9rem;
    color: var(--ra-light-s3);
}

.metric-values {
    position: absolute;
    top: 32px;
    left: 10px;
}

.metric-value.main {
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--ra-dark-s5);
}

.metric-value.sec {
    font-size: 0.8rem;
    color: var(--ra-dark-s1);
    font-weight: bold;
}

.metric-iconcontainer {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.sellingprice .metric-value.main {
    color: #98cf66;
}

.contrmargin .metric-value.main {
    color: #44D78F;
}

.foodcost .metric-value.main {
    color: #ff4e3b;
}

.vat .metric-value.main {
    color: #646464;
}

.metric-warning {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -10px;
    right: -10px;
    -webkit-animation: warning-badge-breathe 2s ease-in-out infinite alternate forwards;
    animation: warning-badge-breathe 2s ease-in-out infinite alternate forwards;
}

    .metric-warning svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(2px 4px 6px black);
        -webkit-filter: drop-shadow(2px 4px 6px black);
    }

.metric-safe {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -10px;
    right: -10px;
    -webkit-animation: warning-badge-breathe 2s ease-in-out infinite alternate forwards;
    animation: warning-badge-breathe 2s ease-in-out infinite alternate forwards;
}

    .metric-safe svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(2px 4px 6px black);
        -webkit-filter: drop-shadow(2px 4px 6px black);
    }


@-webkit-keyframes warning-badge-breathe {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes warning-badge-breathe {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}



.threshold {
    width: 38px;
    height: 38px;
    border-radius: 53px;
}
.threshold-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.threshold-mainicon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: 2;
}


.negative .threshold-smallicon-1 {
    position: absolute;
    width: 45%;
    height: 45%;
    bottom: 0;
    left: 0;
    animation: losing-money 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite forwards;
    -webkit-animation: losing-money 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite forwards;
    opacity: 0;
    z-index: 3;
    filter: drop-shadow(2px 4px 6px black);
    -webkit-filter: drop-shadow(2px 4px 6px black);
}

.negative .threshold-smallicon-2 {
    position: absolute;
    width: 50%;
    height: 50%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    animation: losing-money 3.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s infinite forwards;
    -webkit-animation: losing-money 3.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s infinite forwards;
    opacity: 0;
    z-index: 3;
    filter: drop-shadow(2px 4px 6px black);
    -webkit-filter: drop-shadow(2px 4px 6px black);
}


.negative .threshold-smallicon-3 {
    position: absolute;
    width: 49%;
    height: 49%;
    bottom: 0;
    right: 0;
    animation: losing-money 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s infinite forwards;
    -webkit-animation: losing-money 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s infinite forwards;
    opacity: 0;
    z-index: 3;
    filter: drop-shadow(2px 4px 6px black);
    -webkit-filter: drop-shadow(2px 4px 6px black);
}

.negative .threshold-smallicon-4 {
    position: absolute;
    width: 43%;
    height: 43%;
    bottom: 0;
    left: 40%;
    animation: losing-money 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.3s infinite forwards;
    -webkit-animation: losing-money 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.3s infinite forwards;
    opacity: 0;
    z-index: 1;
}

.negative .threshold-smallicon-5 {
    position: absolute;
    width: 49%;
    height: 49%;
    bottom: 0;
    left: 10px;
    animation: losing-money 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s infinite forwards;
    -webkit-animation: losing-money 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s infinite forwards;
    opacity: 0;
    z-index: 3;
    filter: drop-shadow(2px 4px 6px black);
    -webkit-filter: drop-shadow(2px 4px 6px black);
}

.negative .threshold-smallicon-6 {
    position: absolute;
    width: 40%;
    height: 40%;
    bottom: 0;
    right: 10px;
    animation: losing-money 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s infinite forwards;
    -webkit-animation: losing-money 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s infinite forwards;
    opacity: 0;
    z-index: 3;
    filter: drop-shadow(2px 4px 6px black);
    -webkit-filter: drop-shadow(2px 4px 6px black);
}

.threshold-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@-webkit-keyframes losing-money {
    0% {
        opacity: 0;
        bottom: 20%;
    }

    0% {
        opacity: 1;
    }

    100% {
        bottom: 120%;
        opacity: 0;
    }
}

@keyframes losing-money {
    0% {
        opacity: 0;
        bottom: 20%;
    }

    0% {
        opacity: 1;
    }

    100% {
        bottom: 120%;
        opacity: 0;
    }
}



.positive .threshold-smallicon-1 {
    position: absolute;
    width: 35%;
    height: 35%;
    bottom: 0;
    left: 0;
    animation: gaining-money 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite forwards;
    -webkit-animation: gaining-money 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite forwards;
    opacity: 0;
    z-index: 3;
    filter: drop-shadow(2px 4px 6px black);
    -webkit-filter: drop-shadow(2px 4px 6px black);
}

.positive .threshold-smallicon-2 {
    position: absolute;
    width: 40%;
    height: 40%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    animation: gaining-money 3.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s infinite forwards;
    -webkit-animation: gaining-money 3.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s infinite forwards;
    opacity: 0;
    z-index: 3;
    filter: drop-shadow(2px 4px 6px black);
    -webkit-filter: drop-shadow(2px 4px 6px black);
}


.positive .threshold-smallicon-3 {
    position: absolute;
    width: 28%;
    height: 28%;
    bottom: 0;
    right: 0;
    animation: gaining-money 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s infinite forwards;
    -webkit-animation: gaining-money 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s infinite forwards;
    opacity: 0;
    z-index: 3;
    filter: drop-shadow(2px 4px 6px black);
    -webkit-filter: drop-shadow(2px 4px 6px black);
}

.positive .threshold-smallicon-4 {
    position: absolute;
    width: 30%;
    height: 30%;
    bottom: 0;
    left: 40%;
    animation: gaining-money 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.3s infinite forwards;
    -webkit-animation: gaining-money 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.3s infinite forwards;
    opacity: 0;
    z-index: 1;
}

.positive .threshold-smallicon-5 {
    position: absolute;
    width: 49%;
    height: 49%;
    bottom: 0;
    left: 10px;
    animation: gaining-money 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s infinite forwards;
    -webkit-animation: gaining-money 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s infinite forwards;
    opacity: 0;
    z-index: 3;
    filter: drop-shadow(2px 4px 6px black);
    -webkit-filter: drop-shadow(2px 4px 6px black);
}

.positive .threshold-smallicon-6 {
    position: absolute;
    width: 40%;
    height: 40%;
    bottom: 0;
    right: 10px;
    animation: gaining-money 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s infinite forwards;
    -webkit-animation: gaining-money 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s infinite forwards;
    opacity: 0;
    z-index: 3;
    filter: drop-shadow(2px 4px 6px black);
    -webkit-filter: drop-shadow(2px 4px 6px black);
}

@-webkit-keyframes gaining-money {
    0% {
        opacity: 0;
        bottom: 120%;
    }

    0% {
        opacity: 1;
    }

    100% {
        bottom: 20%;
        opacity: 0;
    }
}
@keyframes gaining-money {
    0% {
        opacity: 0;
        bottom: 120%;
    }

    0% {
        opacity: 1;
    }

    100% {
        bottom: 20%;
        opacity: 0;
    }
}




.metric-safe .mud-tooltip-root {
    width: 100%;
    height: 100%;
}
.metric-warning .mud-tooltip-root {
    width: 100%;
    height: 100%;
}


.metric-tooltip {
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    gap: 8px;
}

.metric-tooltip-icon {
    width: 32px;
    height: 32px;
}
    .metric-tooltip-icon svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.warning .metric-tooltip-icon svg {
    filter: drop-shadow(0px 3px 5px #ffd764b5);
    -webkit-filter: drop-shadow(0px 3px 5px #ffd764b5);
}

.safe .metric-tooltip-icon svg {
    filter: drop-shadow(0px 3px 5px #00ce77cf);
    -webkit-filter: drop-shadow(0px 3px 5px #00ce77cf);
}

.metric-tooltip-text {
    font-size: 0.8rem;
    font-weight: 300;
}


.metric-tooltip-values {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.warning .metric-tooltip-values p {
    color: #fdbf00;
}

.safe .metric-tooltip-values p {
    color: #00ce77;
}

.metric-tooltip-value1 {
    font-size: 1.5rem;
    font-weight: 500;
}
.metric-tooltip-value2 {
    font-size: 1.2rem;
    font-weight: 300;
}







.usagefilterinput {
    width: 100%;
    height: 100%;
    padding: 5px;
}

    .usagefilterinput input {
        background-color: #ededf2;
        width: 100%;
        height: 100%;
        border-radius: 12px;
        padding: 0 12px;
        font-size: 0.9rem;
        color: var(--mud-palette-text-primary);
    }

        .usagefilterinput input::placeholder {
            color: var(--mud-palette-text-secondary);
        }

.usagecategory {
    width: 100%;
    margin: 45px 0;
    padding: 0 20px;
}

.usagecategory-title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    background-color: #fafaff;
    border-radius: 12px;
    padding: 10px;
}

.usagecategory-title-icon {
    width: 46px;
    height: 46px;
}

    .usagecategory-title-icon svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.usagecategory-title-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ra-dark-s5);
}






/*Modal Dialog*/

.user-loggedout .ra-modal {
    width: 400px;
    height: initial;
    position: relative;
}

    .user-loggedout .ra-modal .ra-modal-inner {
        overflow: initial;
    }

    .user-loggedout .ra-modal .ra-modaldialog-icon {
        margin: -75px auto 20px auto;
    }

.ra-user-loggedout-text {
    font-size: 1.1rem;
    text-align: center;
    color: var(--ra-dark-s2);
    line-height: 25px;
    font-weight: 500;
}

.ra-user-loggedout-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 25px 0 0px 0;
    gap: 18px;
}

    .ra-user-loggedout-actions button:hover {
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
    }

.ra-user-loggedout-gotologin {
    font-size: 1.1rem;
    background-color: var(--ra-primary);
    color: var(--ra-primary-contrasttext);
    font-weight: 500;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0px 10px 18px 2px #00000063;
    width: 100%;
    transition: 0.2s;
}





.refreshpage .ra-modal {
    width: 400px;
    height: initial;
    position: relative;
}

    .refreshpage .ra-modal .ra-modal-inner {
        overflow: initial;
    }

    .refreshpage .ra-modal .ra-modaldialog-icon {
        margin: -75px auto 20px auto;
    }

.ra-refreshpage-text {
    font-size: 1.1rem;
    text-align: center;
    color: var(--ra-dark-s2);
    line-height: 25px;
    font-weight: 500;
}

.ra-refreshpage-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 25px 0 0px 0;
    gap: 18px;
}

    .ra-refreshpage-actions button:hover {
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
    }

.ra-refreshpage-btn {
    font-size: 1.1rem;
    background-color: var(--ra-primary);
    color: var(--ra-primary-contrasttext);
    font-weight: 500;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0px 10px 18px 2px #00000063;
    width: 100%;
    transition: 0.2s;
}





.ra-modaldialog-icon {
    width: 120px;
    height: 120px;
    margin: -75px auto 5px auto;
}

    .ra-modaldialog-icon svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0px -11px 4px #0000005c);
        -webkit-filter: drop-shadow(0px -11px 4px #0000005c);
        color: #0000005c;
    }

.modal-dialog.confirmation .ra-modal {
    width: 400px;
    height: initial;
    position: relative;
}

.ra-confirmation-text {
    font-size: 1rem;
    text-align: center;
    color: var(--ra-dark-s2);
    line-height: 25px;
    font-weight: 500;
}

.ra-confirmation-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 25px 0 0px 0;
    gap: 18px;
}

.unsaved-changes .ra-confirmation-continue {
    font-size: 1.1rem;
    background-color: #1d1d1d0f;
    color: var(--ra-dark-s3);
    font-weight: 500;
    height: 50px;
    border-radius: 10px;
}

.unsaved-changes .ra-confirmation-cancel {
    font-size: 1.1rem;
    background-color: var(--ra-dark-s2);
    color: var(--ra-light-s3);
    font-weight: 500;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0px 10px 18px 2px #00000063;
}

.ra-confirmation-actions button {
    width: 100%;
    transition: 0.2s;
}

    .ra-confirmation-actions button:hover {
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
    }

.modal-dialog.confirmation .ra-modal .ra-modal-inner {
    overflow: initial;
}

.delete-record .ra-confirmation-continue {
    color: var(--ra-cancel);
    font-size: 1.1rem;
    background-color: #1d1d1d0f;
    font-weight: 500;
    height: 50px;
    border-radius: 10px;
}

.delete-record .ra-confirmation-cancel {
    font-size: 1.1rem;
    background-color: var(--ra-dark-s2);
    color: var(--ra-light-s3);
    font-weight: 500;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0px 10px 18px 2px #00000063;
}

.ingr-lookup-noresults {
    padding: 10px;
}

    .ingr-lookup-noresults .searchvalue {
        width: 100%;
        font-size: 0.9rem;
        text-align: center;
        line-height: 25px;
    }

        .ingr-lookup-noresults .searchvalue span {
            font-weight: 500;
            color: var(--ra-primary);
            font-size: 1rem;
        }

    .ingr-lookup-noresults .actiontitle {
        font-size: 0.9rem;
        text-align: center;
        margin: 15px auto 20px auto;
        display: block;
        width: fit-content;
        background-color: #ededf2;
        padding: 5px 20px;
        border-radius: 12px;
    }

    .ingr-lookup-noresults .actions {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .ingr-lookup-noresults .createIngr {
        padding: 10px;
        background-color: #ededf2;
        border-radius: 12px;
        transition: 0.2s;
        cursor: pointer;
    }

        .ingr-lookup-noresults .createIngr .ra-imageicon {
            width: 40px;
            height: 40px;
            transition: 0.2s;
        }

            .ingr-lookup-noresults .createIngr .ra-imageicon svg {
                width: 100%;
                height: 100%;
                object-fit: contain;
                transition: 0.2s;
            }

        .ingr-lookup-noresults .createIngr:hover svg {
            transform: scale(1.2);
            -webkit-transform: scale(1.2);
        }

        .ingr-lookup-noresults .createIngr:active svg {
            transform: scale(1);
            -webkit-transform: scale(1);
        }



/*Components*/

.ra-productlogo {
    width: 150px;
    height: 35px;
    object-fit: contain;
}

    .ra-productlogo.large {
        width: 185px;
        height: 60px;
        object-fit: contain;
    }

    .ra-productlogo.small {
        width: 122px;
        height: 25px;
        object-fit: contain;
    }

    .ra-productlogo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


.ra-platformlogo {
    width: 150px;
    height: 35px;
    object-fit: contain;
}

    .ra-platformlogo.large {
        width: 300px;
        height: 100px;
        object-fit: contain;
    }

    .ra-platformlogo.small {
        width: 122px;
        height: 25px;
        object-fit: contain;
    }

    .ra-platformlogo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


@-webkit-keyframes shadow-drop-logo2 {
    0% {
        filter: drop-shadow(rgb(182, 98, 210) 0px 0px 2px);
        -webkit-filter: drop-shadow(rgb(182, 98, 210) 0px 0px 2px);
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    100% {
        filter: drop-shadow(rgb(182, 98, 210) 2px 4px 10px);
        -webkit-filter: drop-shadow(rgb(182, 98, 210) 2px 4px 10px);
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }
}

@keyframes shadow-drop-logo2 {
    0% {
        filter: drop-shadow(rgb(182, 98, 210) 0px 0px 2px);
        -webkit-filter: drop-shadow(rgb(182, 98, 210) 0px 0px 2px);
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    100% {
        filter: drop-shadow(rgb(182, 98, 210) 2px 4px 10px);
        -webkit-filter: drop-shadow(rgb(182, 98, 210) 2px 4px 10px);
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }
}












    /*Grid Select Tool*/

.ra-gridselections-tool {
    position: fixed;
    z-index: 100;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.ra-gridselections-tool-body {
    background-color: var(--ra-dark-s4);
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 22px;
    gap: 40px;
}

.tool-action-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tool-action-icon {
    width: 30px;
    height: 30px;
}

.ra-gridselections-tool-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.tool-title .counter {
    background-color: var(--ra-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-shadow: 0px 0px 11px black;
    font-weight: 500;
}

.tool-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1.5rem;
    font-weight: 300;
}


.tool-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.tool-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: .1s;
}

    .tool-action:hover {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }

    .tool-action:active {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
    }

.tool-action-title {
    font-size: 0.7rem;
    font-weight: 300;
}

.ra-gridselections-tool-body .splitter {
    width: 2px;
    height: 20px;
    background-color: var(--ra-light-s2);
    border-radius: 10px;
}

.ra-gridseltool-exit {
    width: 45px;
    height: 45px;
    background-color: #3d3d3d57;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

    .ra-gridseltool-exit .ra-svg-icon {
        color: var(--ra-light-s1);
    }

    .ra-gridseltool-exit:hover {
        background-color: #3d3d3d36;
    }




/*Alerts Modal*/

.ra-alerts-content {
    margin: 30px 0;
    padding: 50px 20px;
    background-color: #ededf2;
    border-radius: 20px;
}


/*Search Modal*/

.searcharea {
    padding: 38px 20px;
}

.searchinput input {
    height: 60px;
    border-radius: 45px;
    display: block;
    width: 100%;
    background-color: #ffffff;
    font-size: 1.6rem;
    padding: 26px;
    font-weight: 600;
    color: var(--ra-dark-s4);
}

.results-groupheader {
    width: 100%;
    padding: 12px 25px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    background-color: #00000052;
    border-radius: 20px;
}

.results-groupheader-icon {
    width: 38px;
    height: 38px;
    background-color: #d4d4d4;
    border-radius: 50px;
}

    .results-groupheader-icon svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(2px 4px 6px black);
        -webkit-filter: drop-shadow(2px 4px 6px black);
    }

.results-groupheader-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
}

.results-container {
    padding: 20px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.result-line {
    width: 100%;
    padding: 13px;
    background-color: #00000029;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s;
}

    .result-line:hover {
        background-color: #161616;
    }

.result-desccontainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.result-desc {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    background-color: #4343431c;
    padding: 10px;
    border-radius: 20px;
    width: 100%;
}

.result-desccontainer .cost-warning {
    width: 22px;
    height: 22px;
}

    .result-desccontainer .cost-warning svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0px 3px 5px #ffd764b5);
        -webkit-filter: drop-shadow(0px 3px 5px #ffd764b5);
    }

.result-values {
    margin-top: 22px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 45px;
}

.result-value-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.result-value-icon {
    width: 32px;
    height: 32px;
}

.result-value-text {
    font-size: 1rem;
    color: white;
}

.result-value {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0 5px;
    position: relative;
}

.modal-search .ra-noresults-text {
    color: var(--ra-light-s1);
}

.result-value .cost-warning {
    width: 22px;
    height: 22px;
}

    .result-value .cost-warning svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0px 3px 5px #ffd764b5);
        -webkit-filter: drop-shadow(0px 3px 5px #ffd764b5);
    }


/*User Account Modal*/

.ra-useraccount-header {
    padding: 20px;
    position: relative;
    background-image: linear-gradient(to right top, var(--ra-dark-s3), #1b1b1c, #212224, #27292c, #2d3035);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.ra-useraccount-profilepicture {
    width: 12.5rem;
    height: 12.5rem;
    border-radius: 100px;
    background-color: #fafaff;
    order: 2;
}

    .ra-useraccount-profilepicture svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(2px 4px 6px black);
        -webkit-filter: drop-shadow(2px 4px 6px black);
        transition: 0.6s;
        transform: scale(1);
        -webkit-transform: scale(1);
        -webkit-animation: prfp-scaleup 0.6s cubic-bezier(0.895, 0.030, 0.685, 0.220) both;
        animation: prfp-scaleup 0.6s cubic-bezier(0.895, 0.030, 0.685, 0.220) both;
    }

@-webkit-keyframes prfp-scaleup {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes prfp-scaleup {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


.ra-useraccount-info {
    padding: 20px;
    border-radius: 50px;
    text-align: left;
    order: 1;
    min-width: 250px;
}

.ra-useraccount-username {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--ra-light-s1);
}

.ra-useraccount-usercompany {
    font-size: 0.9rem;
    color: var(--ra-light-s1);
}

.ra-useraccount-body {
    padding: 20px;
}

.ra-useraccount-tabs {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.ra-useraccount-tab {
    color: var(--ra-dark-s2);
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

    .ra-useraccount-tab.active {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }

    .ra-useraccount-tab:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        height: 2px;
        background-color: var(--ra-primary);
        transition: 0.3s;
        width: 0%;
    }

    .ra-useraccount-tab.active:before {
        width: 100%;
    }

.ra-useraccount-tabpanel {
    padding: 40px 20px 20px 20px;
}

.ra-useraccount-panelinfocontent {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.ra-useraccount-panelinfo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: var(--ra-dark-s1);
    gap: 20px;
    font-size: 0.8rem;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    width: 100%;
}

.ra-useraccount-panelinfo .ra-svg-icon {
    color: var(--ra-dark-s2);
}

.changepassword-title {
    font-size: 1rem;
    color: white;
}

.changepassword-form {
    padding: 15px 15px;
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid #e0e0e0;
}

.changepassword-strength {
    text-align: center;
    margin: 14px;
}

    .changepassword-strength p {
        display: inline-block;
        padding: 10px 30px;
        transition: 0.2s;
        font-size: 1rem;
        font-weight: 500;
        background-color: white;
        border-radius: 10px;
        border: 1px solid #e0e0e0;
    }

.weak.changepassword-strength p {
    color: #ffb200;
}

.medium.changepassword-strength p {
    color: #33c763;
}

.strong.changepassword-strength p {
    color: var(--ra-primary);
}

.changepassword-header {
    width: 100%;
    background-image: linear-gradient(to right top, var(--ra-dark-s3), #1b1b1c, #212224, #27292c, #2d3035);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}



/*Generic UI Tools*/



@media (max-width: 1200px) {

    .desk {
        display: none;
    }
}

@media (min-width: 1201px) {

    .mob {
        display: none;
    }
}


.ra-t-box {
    padding: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.ra-t-elementsgroup-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ra-t-elementsgroup-spacebetween {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.px200 {
    width: 200px;
}

.px150 {
    width: 150px;
}

.ra-spacer.small {
    height: 20px;
}

.ra-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.ra-svg-icon {
    fill: currentColor;
}

.ra-svg-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex-shrink: 0;
    user-select: none;
}

.ra-svg-icon-size-Small {
    font-size: 1.2rem;
}

.ra-svg-icon-size-Medium {
    font-size: 1.5rem;
}

.ra-svg-icon-size-Large {
    font-size: 2.25rem;
}

.ra-button-wrapper {
    position: relative;
}

.ra-button {
    cursor: pointer;
    transition: 0.2s;
}

.ra-icon-button-size-Small {
    padding: 7px;
}
.ra-icon-button-size-Medium {
    padding: 10px;
}
.ra-icon-button-sizeLarge {
    padding: 14px;
}

.ra-noresults {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.ra-grid-inner .ra-noresults {
    margin: 20px 0;
}

.ra-noresults-text {
    color: var(--ra-dark-s5);
    font-size: 1.2rem;
    font-weight: bold;
}

.ra-noresults-img {
    width: 155px;
    height: 155px;
}

.ra-noresults-img svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ra-nothinghere {
    width: 100%;
    text-align: center;
    color: var(--ra-dark-s4);
}

.ra-tabs {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 90px;
    background-color: #ededf2;
    margin: auto;
    border-radius: 20px;
    padding: 13px 0;
}

.ra-tab {
    cursor: pointer;
    padding: 15px 25px;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 18px;
    border-radius: 20px;
    border: 2px solid transparent;
}

    .ra-tab.active {
        background-color: #fafaff;
        border: 2px solid white;
    }

    .ra-tab p {
        color: #555555;
        font-size: 1.3rem;
        font-weight: 600;
    }

.ra-tabpanel {
    padding: 20px 20px 20px 20px;
}

.ra-tab-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ra-tab-icon {
    width: 32px;
    height: 32px;
}



.ra-wizard {
    width: 100%;
    overflow: hidden;
}

    .ra-wizard.wzrd-loginform {
        height: 280px;

    }











.ra-wizard-inner {
    display: flex;
    flex-direction: row;
    height: 100%;
    position: relative;
}

.ra-wizard-step {
    width: 100%;
    transition: 0.2s;
    position: absolute;
    z-index: 1;
    height: 100%;
    padding: 0px 20px;
    left: 0;
    top: 0;
}

    .ra-wizard-step.active {
        opacity: 1;
        pointer-events: initial;
    }

    .ra-wizard-step.hidden {
        opacity: 0;
        pointer-events: none;
    }




/*Media Queries*/

@media (max-width: 1300px), (max-height: 800px) {


    html {
        font-size: 13px;
    }

    .ra-implementation {
        gap: 10px;
    }

    .ra-welcomepage-group {
        margin-top: 25px;
    }

    .impl-items .ra-grid.items .rowcontent {
        padding: 9px 12px;
    }

    .impl-items.impl-semiprocesseditems .ra-grid.items .rowcontent {
        padding: 12px 12px;
    }

    .impl-items.impl-rawmaterials .ra-grid.items .rowcontent {
        padding: 12px 12px;
    }

    .impl-items .ra-region-b.grid {
        gap: 5px;
    }

    .ra-formregion {
        margin: 25px 0;
        padding: 8px 20px;
    }

    .recipemethod {
        padding: 30px 20px 20px 20px;
    }

    .ra-modalform {
        padding: 5px 20px;
    }

    .ra-chart-container.foodcost {
        width: 95%;
    }

    .impl-items .ra-grid.items {
        gap: 8px;
    }

    .impl-items .ra-region-b {
        padding: 5px 0px;
    }

    .searcharea {
        padding: 22px 20px;
    }

    .searchinput input {
        height: 50px;
    }

    .result-values {
        margin-top: 15px;
    }

    .ra-login-subscribe {
        margin-top: 40px;
    }

    .ra-login-text2 {
        margin-bottom: 30px;
    }

    .ra-loginpage-form {
        width: 80%;
    }

}





/*MUDBLAZOR OVERRIDES*/

.mud-input.mud-input-outlined {
    background-color: #1d1d1d0f;
    border-radius: 10px;
}

.mud-input.mud-input-filled {
    background-color: #1d1d1d0f;
    border-radius: 10px;
}

    .mud-input.mud-input-filled.mud-disabled {
        background-color: rgb(75 75 75 / 64%);
    }

.mud-input.mud-disabled {
    color: #ffffff;
}

.mud-input-control > .mud-input-control-input-container > .mud-input-label-inputcontrol.mud-disabled {
    color: #ffffff;
}

.mud-input.mud-input-filled.mud-input-underline:after {
    transform: translateX(-50%) scaleX(0);
    -webkit-transform: translateX(-50%) scaleX(0);
    left: 50%;
    width: 0%;
}

.mud-input:focus-within.mud-input-underline:after {
    width: 0%;
    transform: translateX(-50%) scaleX(1);
    -webkit-transform: translateX(-50%) scaleX(1);
    left: 50%;
}

.mud-input.mud-input-filled.mud-input-underline.mud-input-error:after {
    width: 98%;
    transform: translateX(-50%) scaleX(1);
    -webkit-transform: translateX(-50%) scaleX(1);
    left: 50%;
}

.mud-input.mud-input-filled.mud-input-underline:hover:before {
    display: none;
}

.mud-shrink ~ label.mud-input-label.mud-input-label-inputcontrol {
    color: var(--ra-dark-s1);
}

.mud-table {
    box-shadow: none;
}

.mud-fab {
    text-transform: initial;
}

.mud-table-cell {
    border-bottom:0px;
}

.mud-table-pagination-toolbar {
    border-top: 0px;
}

.mud-input > textarea.mud-input-root.mud-input-root-filled.mud-input-root-margin-dense {
    margin-top: 28px;
    margin-bottom: 6px;
}


.mud-input:focus-within ~ label.mud-input-label.mud-input-label-inputcontrol {
    color: var(--mud-palette-text-primary);
}

.mud-input:focus-within.mud-input-underline {
    box-shadow: inset 0px 0px 12px -3px #00000012;
    background-color: rgba(0,0,0,.13);
}





/*RADZEN OVERRIDES*/
.ra-chart-container.foodcost .rz-scheme-pastel .rz-series-0 {
    filter: drop-shadow(2px 4px 10px #656565);
    -webkit-filter: drop-shadow(2px 4px 10px #656565);
}

span.rz-legend-item-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ra-light-s1);
    margin-left: 10px;
    padding: 8px 4px;
}

.rz-legend-item {
    align-items: center;
    display: flex;
    background-color: #232527;
    margin: 10px 0;
    border-radius: 10px;
    padding: 0 15px;
}

.foodcostAnalysisHover strong{
    font-size: 1rem;
}