﻿.gradient-blue {
    background: linear-gradient(265.84deg, #5579f8 11.82%, #5505ff 96.57%);
}

.gradient-purple {
    background: linear-gradient(84.14deg, #801dff 2.58%, #b983ff 96.22%);
}

.gradient-green {
    background: linear-gradient(85.02deg, #00b8ac -2.19%, #6dd6cf 94.1%);
}

.gradient-orange {
    background: linear-gradient(81.42deg, #ffb31f 35.58%, #fbdb8b 97.17%);
}

.gradient-red {
    background: linear-gradient(81.42deg, #FF1744 35.58%, #FF5252 97.17%);
}

.gradient-dark-green {
    background: linear-gradient(85.02deg, #388E3C -2.19%, #43A047 94.1%);
}

.gradient-indigo {
    background: linear-gradient(85.02deg, #303F9F -2.19%, #3949AB 94.1%);
}

/** {
    outline: 1px solid red;
}*/

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid #fff;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

.authentication-card {
    margin-top: -32px;
    align-self: center;
    width: 420px;
}

@media (max-width: 600px) {
    .authentication-card {
        width: 360px;
        margin-top: -18px;
    }
}

.shop-card {
    cursor: pointer;
    background: rgb(134,140,253);
    background: linear-gradient(90deg, rgba(134,140,253,1) 0%, rgba(161,165,250,1) 50%, rgba(160,164,249,1) 100%);
}

    .shop-card .shop-icon {
        fill: white !important;
    }

    .shop-card h6,
    .shop-card p {
        color: white !important;
    }

    .shop-card .mud-card-content {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }


.language-string-grid {
    display: grid;
    grid-template-columns: auto 1fr;
}

.lng-string {
    display: grid;
    grid-template-columns: auto 1fr;
}


    .lng-string .lng-string-field .mud-input-root {
        padding: 0 !important;
    }

    .lng-string .lng-string-field .mud-input.mud-input-underline:after,
    .lng-string .lng-string-field .mud-input.mud-input-underline,
    .lng-string .lng-string-field .mud-input.mud-input-underline::before,
    .lng-string .lng-string-field .mud-input.mud-input-underline.mud-input-error::after {
        border-bottom: 0 !important;
    }


.login-divider {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    align-items: center;
}


.datagrid-center-header {
    display: flex;
    justify-items: center;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.text-white {
    color: white !important;
}

.text-primary {
    color: var(--mud-palette-primary);
}

.stat-element-avatar.mud-avatar-filled {
    background-color: white !important;
    color: black;
}

.chart-item {
    height: 32rem;
}

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

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

.loader-image {
    max-height: 160px;
    max-width: 160px;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.loader-image {
    animation: heartbeat 1s linear infinite;
}

@media (min-width: 768px) {
    .loader-image {
        max-height: 240px;
        max-width: 240px;
    }
}

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

.h-screen {
    height: 100vh;
}

.only-top-border-tabs > .mud-tabs-tabbar {
    border-top-left-radius: var(--mud-default-borderradius);
    border-top-right-radius: var(--mud-default-borderradius);
}

.authentication-header {
    display: flex;
    flex-direction: column;
    min-height: 20rem;
    background-color: var(--mud-palette-primary);
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
}


.loader-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    background-color: #808080;
    z-index: 2000;
    width: 100vw;
    height: 100vh;
}


.loader-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .loader-ripple div {
        position: absolute;
        border: 4px solid #fff;
        opacity: 1;
        border-radius: 50%;
        animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .loader-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes loader-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

.apexcharts-tooltip {
    border-color: var(--mud-palette-surface) !important;
    color: var(--mud-palette-text-primary) !important;
    background-color: var(--mud-palette-surface) !important;
}

    .apexcharts-tooltip .apexcharts-tooltip-title {
        background: var(--mud-palette-drawer-background) !important;
        color: var(--mud-palette-text-primary) !important;
    }

.apexcharts-datalabels .apexcharts-text {
    fill: var(--mud-palette-text-primary) !important;
}

.apexcharts-legend-series {
    color: var(--mud-palette-text-primary) !important;
}

.ntak-result {
    text-align: center !important;
    font-weight: bold;
    color: white !important;
}

    .ntak-result.ntak-success {
        background-color: var(--mud-palette-success);
    }

    .ntak-result.ntak-waiting {
        background-color: var(--mud-palette-info);
    }

    .ntak-result.ntak-partial {
        background-color: var(--mud-palette-warning);
    }

    .ntak-result.ntak-failed {
        background-color: var(--mud-palette-error);
    }


.page-filter .mud-expand-panel-icon {
    order: 1;
}

.page-filter .mud-expand-panel-text {
    order: 2;
}

.button-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.large-alert .mud-alert-icon {
    align-self: center;
}

.warning-table-row {
    background-color: var(--mud-palette-warning) !important;
}

.error-table-row {
    background-color: var(--mud-palette-error) !important;
}

    .warning-table-row > .mud-table-cell,
    .error-table-row > .mud-table-cell {
        color: white !important;
    }

        .warning-table-row > .mud-table-cell .mud-icon-root.mud-svg-icon,
        .error-table-row > .mud-table-cell .mud-icon-root.mud-svg-icon {
            fill: white !important;
        }

.center-table-header.mud-table-cell .column-header {
    justify-content: center !important;
}


.chat-button {
    position: fixed !important;
    bottom: 80px;
    right: 40px;
    border-radius: 50% !important;
    width: 60px;
    height: 60px;
    font-size: 24px;
    text-align: center;
    line-height: 60px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

.chat-modal {
    position: fixed;
    bottom: 150px;
    right: 40px;
    width: 360px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background:hsl(291 100% 97%);
}

.chat-header {
    background-color: #9117ff;
    color: white;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.chat-body {
    flex: 1;
}