@import '/_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css';

@import 'fabric.min.css';

@font-face {
    font-family: Monstserrat;
    src: url('../font/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'Poppins_Bold';
    src: url('../font/Poppins-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins_Light';
    src: url('../font/Poppins-ExtraLight.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    src: url('../font/Poppins-Light.ttf') format('truetype');
}

@media (prefers-color-scheme: light) {
    :root {
        --accent-stroke-menuview-active: rgba(232, 235, 250, 1);
        --accent-stroke-menuview-hover: rgba(232, 235, 250, 1);
        --body-font-color: #424242;
        --header-font-color: #242424;
    }

    body {
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --accent-stroke-menuview-active: rgba(98,100, 167, 0.4);
        --accent-stroke-menuview-hover: rgba(98,100, 167, 0.4);
        --body-font-color: #D6D6D6;
        --header-font-color: #FFFFFF;
    }

    body {
        --neutral-fill-layer-rest: #1F1F1F;
        --accent-base-color: #7F85F5;
        --accent-fill-rest: rgb(117, 133, 245, 0.8);
        --accent-fill-hover: #7F85F5;
        --accent-stroke-control-rest: rgb(117, 133, 245, 0.8);
        --accent-stroke-control-hover: #7F85F5;
        --neutral-fill-stealth-rest-on-neutral-fill-layer-rest: #1F1F1F;
    }
}

* {
    box-sizing: border-box;
    /* outline: 1px dashed #f00; */
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    --body-font: "SF Pro", SFPro, -apple-system, BlinkMacSystemFont, "Segoe UI", SegoeUI, "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    /* --body-font: "Segoe UI", SegoeUI, "Roboto"; */
    --type-ramp-base-font-size: 14px;
    --body-font-size: 18px;
    --caption-font-size: 12px;
    --subheadline-font-size: 18px;
    --progress-font-size: 14px;
    --font-weight: 400;
    --font-weight-bold: 600;
    font-family: var(--body-font);
    font-size: var(--type-ramp-base-font-size);
    line-height: var(--type-ramp-base-line-height);
    font-weight: var(--font-weight);
    color: var(--body-font-color);
    background: var(--neutral-fill-layer-rest);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

td {
    white-space: pre
}

/*.header {
    position: absolute;
    top: 0;
    left: 68px;
    border-bottom: solid 1px var(--neutral-layer-4);
    height: 30px !important;
    width: 100%;
}*/

.spacer {
    flex-grow: 1;
}

.stack-horizontal {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    column-gap: 10px;
    row-gap: 10px;
    width: 100%;
    gap: 10px;
}

.stack-vertical {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    column-gap: 10px;
    row-gap: 10px;
    width: 100%;
    gap: 10px;
}

.stack-vertical-nogap {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    width: 100%;
}

.stack-vertical-nogap-start {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
}

.stack-horizontal-nogap {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    width: 100%;
}

.row-gap15 {
    row-gap:15px;
}

.footer {
    background-color: var(--neutral-layer-2) !important;
    color: var(--neutral-foreground-rest) !important;
    border-top: solid 1px var(--neutral-layer-4)
}

.navmenu {
    height: calc(100dvh - 87px);
    align-items: stretch !important;
    cursor: pointer;
}

/* * */
/*.navmenu-item1 {
    position: absolute;
    top: 93px;
    left: 68px;
    cursor: pointer;
}

.navmenu-item2 {
    position: absolute;
    top: 143px;
    left: 68px;
    cursor: pointer;
}

.navmenu-item3 {
    position: absolute;
    top: 193px;
    left: 68px;
    cursor: pointer;
}

.navmenu-item4 {
    position: absolute;
    top: 243px;
    left: 68px;
    cursor: pointer;
}*/

.navmenu-item1 {
    display: none !important;
}

.navmenu-item2 {
    position: absolute;
    top: 93px;
    left: 68px;
    cursor: pointer;
}

.navmenu-item3 {
    position: absolute;
    top: 143px;
    left: 68px;
    cursor: pointer;
}

.navmenu-item4 {
    position: absolute;
    top: 193px;
    left: 68px;
    cursor: pointer;
}
/* * */
.menu {
    height: calc(100dvh - 1px) !important;
    background-color: var(--neutral-fill-layer-rest);
    border-right: calc(var(--stroke-width)* 1px) solid var(--neutral-stroke-layer-rest) !important;
    overflow-x: hidden;
    overflow-y: auto;
}

.menu-only {
}

.navmenu-icon {
    display: none;
}

.login-container {
    display: grid;
    grid-template-columns: 60% 40%;
}

    .login-container .login-column1 {
        height: calc(100dvh) !important;
        background-image: url('../Login.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .login-container .login-column2 {
        height: calc(100dvh) !important;
    }

.page-container {
    /*border: 1px dotted red; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1300px;
    width: calc(100dvw - 200px) !important;
    height: calc(100dvh - 100px) !important;
    /* height: 70%; */
}

    .page-container .page-column1 {
        /* border: 1px dotted green; */
        width: 100%;
        max-width: 600px;
        height: 100%;
        /* margin-top: 2rem; */
    }

    .page-container .page-column2 {
        /* border: 1px dotted green; */
        width: 100%;
        max-width: 600px;
        height: 100%;
        /* margin-top: 2rem; */
    }

.setting-container {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 30px;
    max-width: 1300px;
    width: calc(100dvw - 100px) !important;
    /* height: calc(100dvh - 800px) !important; */
    height: 70%;
}

    .setting-container .setting-column1 {
        width: 100%;
        max-width: 600px;
        height: 100%;
        /* margin-top: 2rem; */
    }

    .setting-container .setting-column2 {
        width: 90%;
        max-width: 650px;
        height: 100%;
        margin-left: 3rem;
    }

.setting-container-new {
    /* height: 100%; */
    width: 100%;
    margin-right: 20px;
    /* display: grid;
    grid-template-columns: 31% 31% 31%;
    gap: 30px;
    max-width: 1300px;
    width: calc(100dvw - 100px) !important;*/
    /* height: calc(100dvh - 800px) !important; */
    /* height: 70% !important; */
    height: calc(100dvh - 100px) !important;
}

.setting-window {
    margin-left: 3.5rem;
    width: 300px;
}

.settings-centered-column {
    margin: auto;
    width: 300px;
}

.settings-centered-column2 {
    margin: auto;
    width: auto;
    max-width: 650px;
}

@media (max-width: 1000px)
{
    .settings-centered-column2 {
        margin: auto;
        min-width: 300px;
        padding-left: 20px;
        padding-right: 40px;
    }

}

.action-icon {
    padding-top: 1px;
    margin-right: 4px;
    width: revert;
    width: 34px !important;
    height: 25px;
    border: calc(var(--stroke-width) * 1px) solid transparent;
    /* border-radius: calc(var(--control-corner-radius) * 1px); */
    background: var(--neutral-fill-stealth-rest);
}

.action-icon:hover {
    background: var(--neutral-fill-stealth-hover);
}


.multima-logo {
    width: 323px;
    height: 104px;
    background-image: url('../Multima.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.multima-znak {
    width: 40px;
    height: 40px;
    background-image: url('../Multima_znak.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.corner-image {
    position: absolute;
    top: 20px;
    right: 0;
    width: 323px;
    height: 104px;
}


@media only screen and (min-width : 960px) {

    .login-box {
        position: absolute;
        top: 187px;
        /* right: 192px; */
        right: calc((100dvw * 0.4) - 380px) !important;
        width: 300px;
        height: 394px;
    }

    .cut-text {
        text-overflow: ellipsis;
        overflow: hidden;
        width: 235px;
        height: 1.2em;
        white-space: nowrap;
    }
}

@media only screen and (max-width : 959px) {

    .login-container .login-column1 {
        display: none;
    }

    .login-container {
        grid-template-columns: 1fr;
    }

    .login-box {
        position: absolute;
        top: 187px;
        right: calc((100dvw / 2) - 150px) !important;
        width: 300px;
        height: 394px;
    }

    .page-container {
        grid-template-columns: 1fr;
        width: calc(100dvw - 100px) !important;
    }

    .setting-window {
        margin-top: 2rem;
        margin: auto;
        width: 300px;
    }

    .setting-container {
        grid-template-columns: 1fr;
    }

        .setting-container .setting-column2 {
            width: 100%;
            max-width: 600px;
            height: 100%;
            margin:0;
        }

    .setting-container-new {
        grid-template-columns: 1fr;
    }

        .setting-container .setting-column2 {
            width: 100%;
            max-width: 600px;
            height: 100%;
            margin: 0;
        }

    .cut-text {
        text-overflow: ellipsis;
        overflow: hidden;
        width: 85%;
        height: 1.2em;
        white-space: nowrap;
    }
    .back-button {
        align-self: start;
    }
}

.determinate {
    height: 6px;

}

.content {
    display: flex;
    margin: 10px 20px 20px 20px;
    width: 100%;
}

.content .activity-item * {
    line-height: 24px;
}

.content .activity-description * {
    line-height: 24px;
}

.content-center {
    background-color: var(--neutral-layer-6);
    margin: auto;
}

.content-spacer {
    height: 5px;
    max-height: 1%;
    margin:auto;
}


.h3-style {
    margin-top: 20px;
    margin-bottom: 5px;
    width: 100%;
    color: darkgrey;
}

.h5-style {
    margin-bottom: 0px;
}

.colorpicker-image {
    width: 108px;
    height: 108px;
    margin: auto;
    margin-top: 20px;
    /* background-image: url('../colorPicker.svg'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.settings-textarea {
    width:100%;
    height:100%;
    background-color:inherit;
    color:inherit;
    border: none;
}

textarea:focus {
    box-shadow: none;
    outline: none;
}

.align-end {
    display:flex;
    flex-direction:row-reverse;
    width:100%;
}

.back-button {
    align-self: end;
}

.emoji {
    height: 55px;
    width: 55px;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.preview_logo {
    height: 32px;
    width: max-content;
    align-self: center;
}

.preview_obrazek {
    height: 32px;
    width: max-content;
    align-self: center;
}

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

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


.center {
    text-align: center;
}

.space-above {
    margin-top: 10px;
}

.space-above-20 {
    margin-top: 20px;
}

.status-bar-safe-area {
    display: none;
}

@supports (-webkit-touch-callout: none) {
    .status-bar-safe-area {
        display: flex;
        position: sticky;
        top: 0;
        height: env(safe-area-inset-top);
        background-color: #f7f7f7;
        width: 100%;
        z-index: 1;
    }

    .flex-column, .navbar-brand {
        padding-left: env(safe-area-inset-left);
    }
}


.fluent-appbar[orientation=vertical][b-dkkdhxy2t7] .fluent-appbar-item:not([inpopover]) a.active::before {
    margin-top: 5px;
    height: 80% !important;
}

.fluent-presence-badge {
    font-size: 12px !important;
}

    /*.fluent-presence-badge *:first-child {
        margin-top: -10px;
    }*/

/* Maica */
/* Add pulsating effect using keyframes */
@keyframes pulsate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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

#atelier {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (max-height: 400px) {
    #atelier {
        display: none;
    }
}
/* Maica */

/* MaicaGrid*/
.maica-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.maica-grid > div {
    margin: 0;
    box-sizing: border-box;
}

/* Size xs */
.maica-grid > div[xs="auto"] {
    flex-grow: 0;
    max-width: none;
    flex-basis: auto;
}

.maica-grid > div[xs="true"] {
    flex-grow: 1;
    max-width: 100%;
    flex-basis: 0;
}

.maica-grid > div[xs="0"] {
    flex: 1;
    max-width: fit-content;
}

.maica-grid > div[xs="1"] {
    flex-grow: 0;
    max-width: 8.333%;
    flex-basis: 8.3333%;
}

.maica-grid > div[xs="2"] {
    flex-grow: 0;
    max-width: 16.667%;
    flex-basis: 16.667%;
}

.maica-grid > div[xs="3"] {
    flex-grow: 0;
    max-width: 25%;
    flex-basis: 25%;
}

.maica-grid > div[xs="4"] {
    flex-grow: 0;
    max-width: 33.333%;
    flex-basis: 33.333%;
}

.maica-grid > div[xs="5"] {
    flex-grow: 0;
    max-width: 41.667%;
    flex-basis: 41.667%;
}

.maica-grid > div[xs="6"] {
    flex-grow: 0;
    max-width: 50%;
    flex-basis: 50%;
}

.maica-grid > div[xs="7"] {
    flex-grow: 0;
    max-width: 58.333%;
    flex-basis: 58.333%;
}

.maica-grid > div[xs="8"] {
    flex-grow: 0;
    max-width: 66.667%;
    flex-basis: 66.667%;
}

.maica-grid > div[xs="9"] {
    flex-grow: 0;
    max-width: 75%;
    flex-basis: 75%;
}

.maica-grid > div[xs="10"] {
    flex-grow: 0;
    max-width: 83.333%;
    flex-basis: 83.333%;
}

.maica-grid > div[xs="11"] {
    flex-grow: 0;
    max-width: 91.667%;
    flex-basis: 91.667%;
}

.maica-grid > div[xs="12"] {
    flex-grow: 0;
    max-width: 100%;
    flex-basis: 100%;
}


@media(min-width: 600px) {

    /* Size sm */

    .maica-grid > div[sm="auto"] {
        flex-grow: 0;
        max-width: none;
        flex-basis: auto;
    }

    .maica-grid > div[sm="true"] {
        flex-grow: 1;
        max-width: 100%;
        flex-basis: 0;
    }

    .maica-grid > div[sm="0"] {
        flex: 1;
        max-width: fit-content;
    }

    .maica-grid > div[sm="1"] {
        flex-grow: 0;
        max-width: 8.333%;
        flex-basis: 8.3333%;
    }

    .maica-grid > div[sm="2"] {
        flex-grow: 0;
        max-width: 16.667%;
        flex-basis: 16.667%;
    }

    .maica-grid > div[sm="3"] {
        flex-grow: 0;
        max-width: 25%;
        flex-basis: 25%;
    }

    .maica-grid > div[sm="4"] {
        flex-grow: 0;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }

    .maica-grid > div[sm="5"] {
        flex-grow: 0;
        max-width: 41.667%;
        flex-basis: 41.667%;
    }

    .maica-grid > div[sm="6"] {
        flex-grow: 0;
        max-width: 50%;
        flex-basis: 50%;
    }

    .maica-grid > div[sm="7"] {
        flex-grow: 0;
        max-width: 58.333%;
        flex-basis: 58.333%;
    }

    .maica-grid > div[sm="8"] {
        flex-grow: 0;
        max-width: 66.667%;
        flex-basis: 66.667%;
    }

    .maica-grid > div[sm="9"] {
        flex-grow: 0;
        max-width: 75%;
        flex-basis: 75%;
    }

    .maica-grid > div[sm="10"] {
        flex-grow: 0;
        max-width: 83.333%;
        flex-basis: 83.333%;
    }

    .maica-grid > div[sm="11"] {
        flex-grow: 0;
        max-width: 91.667%;
        flex-basis: 91.667%;
    }

    .maica-grid > div[sm="12"] {
        flex-grow: 0;
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media(min-width: 1000px) {

    /* Size md */
    .maica-grid > div[md="auto"] {
        flex-grow: 0;
        max-width: none;
        flex-basis: auto;
    }

    .maica-grid > div[md="true"] {
        flex-grow: 1;
        max-width: 100%;
        flex-basis: 0;
    }

    .maica-grid > div[md="0"] {
        flex: 1;
        max-width: fit-content;
    }

    .maica-grid > div[md="1"] {
        flex-grow: 0;
        max-width: 8.333%;
        flex-basis: 8.3333%;
    }

    .maica-grid > div[md="2"] {
        flex-grow: 0;
        max-width: 16.667%;
        flex-basis: 16.667%;
    }

    .maica-grid > div[md="3"] {
        flex-grow: 0;
        max-width: 25%;
        flex-basis: 25%;
    }

    .maica-grid > div[md="4"] {
        flex-grow: 0;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }

    .maica-grid > div[md="5"] {
        flex-grow: 0;
        max-width: 41.667%;
        flex-basis: 41.667%;
    }

    .maica-grid > div[md="6"] {
        flex-grow: 0;
        max-width: 50%;
        flex-basis: 50%;
    }

    .maica-grid > div[md="7"] {
        flex-grow: 0;
        max-width: 58.333%;
        flex-basis: 58.333%;
    }

    .maica-grid > div[md="8"] {
        flex-grow: 0;
        max-width: 66.667%;
        flex-basis: 66.667%;
    }

    .maica-grid > div[md="9"] {
        flex-grow: 0;
        max-width: 75%;
        flex-basis: 75%;
    }

    .maica-grid > div[md="10"] {
        flex-grow: 0;
        max-width: 83.333%;
        flex-basis: 83.333%;
    }

    .maica-grid > div[md="11"] {
        flex-grow: 0;
        max-width: 91.667%;
        flex-basis: 91.667%;
    }

    .maica-grid > div[md="12"] {
        flex-grow: 0;
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media(min-width: 1280px) {

    /* Size lg */

    .maica-grid > div[lg="auto"] {
        flex-grow: 0;
        max-width: none;
        flex-basis: auto;
    }

    .maica-grid > div[lg="true"] {
        flex-grow: 1;
        max-width: 100%;
        flex-basis: 0;
    }

    .maica-grid > div[lg="0"] {
        flex: 1;
        max-width: fit-content;
    }

    .maica-grid > div[lg="1"] {
        flex-grow: 0;
        max-width: 8.333%;
        flex-basis: 8.3333%;
    }

    .maica-grid > div[lg="2"] {
        flex-grow: 0;
        max-width: 16.667%;
        flex-basis: 16.667%;
    }

    .maica-grid > div[lg="3"] {
        flex-grow: 0;
        max-width: 25%;
        flex-basis: 25%;
    }

    .maica-grid > div[lg="4"] {
        flex-grow: 0;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }

    .maica-grid > div[lg="5"] {
        flex-grow: 0;
        max-width: 41.667%;
        flex-basis: 41.667%;
    }

    .maica-grid > div[lg="6"] {
        flex-grow: 0;
        max-width: 50%;
        flex-basis: 50%;
    }

    .maica-grid > div[lg="7"] {
        flex-grow: 0;
        max-width: 58.333%;
        flex-basis: 58.333%;
    }

    .maica-grid > div[lg="8"] {
        flex-grow: 0;
        max-width: 66.667%;
        flex-basis: 66.667%;
    }

    .maica-grid > div[lg="9"] {
        flex-grow: 0;
        max-width: 75%;
        flex-basis: 75%;
    }

    .maica-grid > div[lg="10"] {
        flex-grow: 0;
        max-width: 83.333%;
        flex-basis: 83.333%;
    }

    .maica-grid > div[lg="11"] {
        flex-grow: 0;
        max-width: 91.667%;
        flex-basis: 91.667%;
    }

    .maica-grid > div[lg="12"] {
        flex-grow: 0;
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media(min-width: 1920px) {

    /* Size xl */

    .maica-grid > div[xl="auto"] {
        flex-grow: 0;
        max-width: none;
        flex-basis: auto;
    }

    .maica-grid > div[xl="true"] {
        flex-grow: 1;
        max-width: 100%;
        flex-basis: 0;
    }

    .maica-grid > div[xl="0"] {
        flex: 1;
        max-width: fit-content;
    }

    .maica-grid > div[xl="1"] {
        flex-grow: 0;
        max-width: 8.333%;
        flex-basis: 8.3333%;
    }

    .maica-grid > div[xl="2"] {
        flex-grow: 0;
        max-width: 16.667%;
        flex-basis: 16.667%;
    }

    .maica-grid > div[xl="3"] {
        flex-grow: 0;
        max-width: 25%;
        flex-basis: 25%;
    }

    .maica-grid > div[xl="4"] {
        flex-grow: 0;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }

    .maica-grid > div[xl="5"] {
        flex-grow: 0;
        max-width: 41.667%;
        flex-basis: 41.667%;
    }

    .maica-grid > div[xl="6"] {
        flex-grow: 0;
        max-width: 50%;
        flex-basis: 50%;
    }

    .maica-grid > div[xl="7"] {
        flex-grow: 0;
        max-width: 58.333%;
        flex-basis: 58.333%;
    }

    .maica-grid > div[xl="8"] {
        flex-grow: 0;
        max-width: 66.667%;
        flex-basis: 66.667%;
    }

    .maica-grid > div[xl="9"] {
        flex-grow: 0;
        max-width: 75%;
        flex-basis: 75%;
    }

    .maica-grid > div[xl="10"] {
        flex-grow: 0;
        max-width: 83.333%;
        flex-basis: 83.333%;
    }

    .maica-grid > div[xl="11"] {
        flex-grow: 0;
        max-width: 91.667%;
        flex-basis: 91.667%;
    }

    .maica-grid > div[xl="12"] {
        flex-grow: 0;
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media(min-width: 2560px) {

    /* Size xxl */

    .maica-grid > div[xxl="auto"] {
        flex-grow: 0;
        max-width: none;
        flex-basis: auto;
    }

    .maica-grid > div[xxl="true"] {
        flex-grow: 1;
        max-width: 100%;
        flex-basis: 0;
    }

    .maica-grid > div[xxl="0"] {
        flex: 1;
        max-width: fit-content;
    }

    .maica-grid > div[xxl="1"] {
        flex-grow: 0;
        max-width: 8.333%;
        flex-basis: 8.3333%;
    }

    .maica-grid > div[xxl="2"] {
        flex-grow: 0;
        max-width: 16.667%;
        flex-basis: 16.667%;
    }

    .maica-grid > div[xxl="3"] {
        flex-grow: 0;
        max-width: 25%;
        flex-basis: 25%;
    }

    .maica-grid > div[xxl="4"] {
        flex-grow: 0;
        max-width: 33.333%;
        flex-basis: 33.333%;
    }

    .maica-grid > div[xxl="5"] {
        flex-grow: 0;
        max-width: 41.667%;
        flex-basis: 41.667%;
    }

    .maica-grid > div[xxl="6"] {
        flex-grow: 0;
        max-width: 50%;
        flex-basis: 50%;
    }

    .maica-grid > div[xxl="7"] {
        flex-grow: 0;
        max-width: 58.333%;
        flex-basis: 58.333%;
    }

    .maica-grid > div[xxl="8"] {
        flex-grow: 0;
        max-width: 66.667%;
        flex-basis: 66.667%;
    }

    .maica-grid > div[xxl="9"] {
        flex-grow: 0;
        max-width: 75%;
        flex-basis: 75%;
    }

    .maica-grid > div[xxl="10"] {
        flex-grow: 0;
        max-width: 83.333%;
        flex-basis: 83.333%;
    }

    .maica-grid > div[xxl="11"] {
        flex-grow: 0;
        max-width: 91.667%;
        flex-basis: 91.667%;
    }

    .maica-grid > div[xxl="12"] {
        flex-grow: 0;
        max-width: 100%;
        flex-basis: 100%;
    }
}

/* MaicaGrid*/