﻿/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/*@import url('https://fonts.googleapis.com/css?Open+Sans:wght@300;400;600;700&display=swap');*/

/* ********** */
/* DEFAULTS */
/* ********** */

table.table-bordered th, table.table-bordered td {
    border: 1px solid #e1e1e1 !important;
}

html,
body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100vh;
    padding: 0;
    margin: 0;
    font-weight:400;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #404040;
    line-height: 1.6;
}

h1, h2, strong {
    font-weight: 700;
}

img {
    max-width: 100%;
}

/*.loading {
    color: #15aabf !important;
    font-size: 2em !important;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(359deg);
    }
}*/

/* ********** */
/* LAYOUT */
/* ********** */

.container {
    height: 100%;
    display: -ms-grid;
    display: grid;
    grid-gap: 0px;
    -ms-grid-columns: 80px 0px 200px 0px auto;
    grid-template-columns: 80px 200px auto;
    -ms-grid-rows: 70px 0px auto 0px 125px;
    grid-template-rows: 70px auto 125px;
    grid-template-areas: "h h h" "m m c" "f f f";
}

.header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    background-color: #ffeeea !important;
    color: #2e2e2d !important;
    grid-area: h;
    padding: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 2px solid #ffeeea;
    border-top: 2px solid #ffeeea;
    position: sticky;
    top: 0;
    z-index: 100000;
}

.container-collapse > .header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
}

.container-collapsed > .header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
}

.menu {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: m;
    background-color: #2E2E2D !important;
    /*background-color: rgb(33, 41, 68);*/
    color: #fff;
    transition-timing-function: ease-out;
    transition: 500ms;
}

.container-collapse > .menu {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
}

.content {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
    background-color: rgb(240, 240, 240);
    grid-area: c;
    padding-bottom: 2em;
}

.container-collapse > .content {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
}

.container-collapsed > .content {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}

.dashboard-chart > .content {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
}

.footer {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    background-color: rgb(235, 235, 235);
    grid-area: f;
}

.container-collapse > .footer {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
}

.container-collapsed > .footer {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
}

/* ********** */
/* HEADER */
/* ********** */

.header .logo {
    margin-top:15px;
    width: 265px;
}

    .header .logo img {
        width: 85%;
        margin-bottom: .65em;
    }

.header .overall-health {
    margin-right: 1em;
}

    .header .overall-health i {
        font-size: 3.25em;
        color: #fff;
    }

.header div.title {
    font-weight: 600;
    font-size: 18px;
    margin-right: 8px;
    color: #2e2e2d !important;
    /*    -webkit-animation-name: fade-in;
    animation-name: fade-in;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    background: -webkit-linear-gradient(#ff8902, #e52f70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
}
    .header div.title a,
    .header div.title a:visited {
        color: #2e2e2d !important;
        text-decoration: none;
    }
        .header div.title a:hover {
            color: #2e2e2d !important;
            text-decoration: underline;
        }

.header i.fa-bars {
    display: none;
}

.header .action-item i {
    font-size: 1.5em;
    background-color: rgba(100, 100, 100, .5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    vertical-align: middle;
    margin-right: .5em;
}

.header .greeting {
    white-space: nowrap;
    z-index: 1000;
    position: absolute;
    top: 1px;
    right: 5px;
    font-size: .65em;
}

.header .action {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .header .action i {
        margin-top: 15px;
    }

/* collapsed */

/*.container-collapse .header .logo {
    width: 80px;
}*/

    .container-collapse .header .logo img {
        /*content: url("images/flashiq-icon.png");*/
    }

/* ********** */
/* MENU */
/* ********** */

/* general */
div.menu {
    padding-top:75px !important;
}
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-margin-before: 0px;
    margin-block-start: 0px;
    -webkit-margin-after: 0px;
    margin-block-end: 0px;
    -webkit-margin-start: 0px;
    -moz-margin-start: 0px;
    margin-inline-start: 0px;
    -webkit-margin-end: 0px;
    -moz-margin-end: 0px;
    margin-inline-end: 0px;
    -webkit-padding-start: 0px;
    -moz-padding-start: 0px;
    padding-inline-start: 0px;
}

.menu a,
.menu a:hover {
    text-decoration: none;
    color: #fff;
}

/* parent nav */
.menu .parent-menu-item,
.menu li.toggler {
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: .25em;
    padding-bottom: .25em;
}

.menu li.toggler {
    margin-right: 15px;
    text-align: right;
    margin-top:5px;
    margin-bottom:6px;
}

.menu .parent-menu-item a {
    padding: .25em .25em;
    display: block;
    width: 100%;
}

.menu .parent-menu-item i {
    font-size: 1.5em;
    background-color: rgba(100, 100, 100, .5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    vertical-align: middle;
    margin-right: .5em;
}
.menu .parent-menu-item:hover,
.menu .select,
.menu .child-menu-item:hover {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    background-color: rgba(125, 125, 125, .5);
    background: linear-gradient(to bottom right, rgba(125, 125, 125, .55), rgba(125, 125, 125, .75));
    /*    background-color: rgba(100, 100, 100, .5);
    background: linear-gradient(to bottom right, rgba(23, 64, 107, .75), rgba(23, 64, 107, .25));*/
    /*    background-color: #21737f;
    background: -webkit-linear-gradient(to bottom right, #3a9ba9, #21737f);
    background: linear-gradient(to bottom right, #3a9ba9, #21737f);*/
}

    .menu .parent-menu-item:hover ul {
        background-colorxx: #212121;
    }

.menu i.menu-toggler {
    font-size: 2em;
    width: 40px;
    height: 40px;
    border-radius: 25%;
    line-height: 40px;
    vertical-align: middle;
    cursor: pointer;
}

.menu i.child-toggler {
    float: right;
    -webkit-transform: translate(0px, -40px);
    transform: translate(0px, -40px);
    background-color: transparent;
    /*background: -webkit-linear-gradient(#ff8902, #e52f70);*/
    /*background: linear-gradient(to bottom right, #fb0f1b, #fbd3b1);*/
    font-size: 1.5em;
    width: 30px;
    height: 30px;
    border-radius: 25%;
    line-height: 30px;
    vertical-align: middle;
    cursor: pointer;
}
/* left navigation menu */
button.side-nav-open,
button.side-nav-close {
    cursor: pointer;
    position: absolute;
    top: 120px;
    left: 245px;
    width: 40px;
    height: 40px;
    margin: 0px;
    background-color: #fff;
    background-image: url("images/sidenav-close.svg");
    background-repeat: no-repeat;
    background-position: center center;
    border: none !important;
    border-radius: 100px;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.102);
}

    button.side-nav-close:focus,
    button.side-nav-open:focus {
        outline: none !important;
    }

button.side-nav-close {
    top: 120px;
    left: 65px;
    width: 25px;
    height: 25px;
    background-image: url("images/sidenav-open.svg");
}
/* child nav */

.menu .child-menu {
    display: none;
}

.menu .container-expand {
    margin-bottom: .25em;
    padding-top: 0;
    padding-bottom: 0;
}
    .menu .container-expand .child-menu {
        display: block;
        background-color: #2E2E2D;
        padding-bottom: 0;
    }

.menu .child-menu-item {
    padding: 0;
    margin-top: .25em;
    margin-bottom: .25em;
    margin-left: 4em;
    font-size: .85em;
}
    .menu .child-menu-item i {
        font-size: 1.25em;
        background-color: rgba(100, 100, 100, .5);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        text-align: center;
        line-height: 30px;
        vertical-align: middle;
        margin-right: .5em;
    }
    /* override remix style icon because it appears smaller */
    .menu .ri-e-bike-line {
        font-size: 1.75em !important;
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
    }

.menu .child-menu-item:hover {
    background-color: rgba(50, 50, 50, .5);
}
.menu i.dashboard-delete {
    font-size: 1em;
    background-color: transparent !important;
    float: right;
    margin-top: -35px;
    cursor:pointer;
}

/* collapsed */

.container-collapse {
    -ms-grid-columns: 80px auto;
    grid-template-columns: 80px auto;
    -ms-grid-rows: 65px auto 125px;
    grid-template-rows: 65px auto 125px;
    grid-template-areas: "h h" "m c" "f f";
}

    .container-collapse .child-menu {
        padding: .25em 1.25em;
        background-color: rgb(0, 0, 0, .75);
        width: 200px;
        -webkit-transform: translate(80px, -25px);
        transform: translate(80px, -25px);
        position: absolute;
        z-index: 1000;
    }

    .container-collapse .child-menu-item {
        margin-left: 0;
    }

    .container-collapse .parent-menu-item span {
        display: none;
    }

    .container-collapse .child-menu-item span {
        display: inline;
    }

.container-collapsed {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -ms-grid-rows: 65px auto 125px;
    grid-template-rows: 65px auto 125px;
    grid-template-areas: "h" "c" "f";
}

    .container-collapsed .menu {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
        grid-area: c;
        z-index: 1000;
    }

/* ********** */
/* FOOTER */
/* ********** */

.footer .copyright {
    font-size: .75em;
    margin-top: 3em;
    margin-bottom: 1.25em;
    text-align: center;
}

.footer div.social-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .footer div.social-media > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-decoration: none;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 1.1em;
        padding: 15px;
        color: #fff;
        background-color: #c0c0c0;
        border-radius: 25px;
        margin-left: 10px;
        margin-right: 10px;
        width: 15px;
        height: 15px;
    }

        .footer div.social-media > a.facebook:hover {
            background-color: #4183d7;
        }

        .footer div.social-media > a.twitter:hover {
            background-color: #19b5fe;
        }

        .footer div.social-media > a.linkedin:hover {
            background-color: #000;
        }

        .footer div.social-media > a.instagram:hover {
            background-color: #f62459;
        }

        .footer div.social-media > a.youtube:hover {
            background-color: #f22613;
        }

.footer span.delimiter {
    display: inline-block;
    padding: 0 .25em;
}

/* ********** */
/* CONTENT */
/* ********** */
.toolbar {
    margin-bottom: .5em;
    background-color: rgb(125, 125, 125);
    /*background: linear-gradient(to bottom, rgba(100, 100, 100, 1), rgba(100, 100, 100, .65));*/
    /*    background: -webkit-linear-gradient(#3a9ba9, #21737f);
    background: linear-gradient(to bottom, #3a9ba9, #21737f);*/
    border-bottom: 1px solid rgb(150,150,150);
    padding: .25em .5em;
    min-height: 50px;
    /*-webkit-box-shadow: 0 0 2px rgba(0,0,0, .75);*/
    /*box-shadow: 0 0 2px rgba(0,0,0, .75);*/ /* even more subtle */
    display: flex;
    align-items: center;
}
.toolbar-row {
    display: flex;
    align-items: center;
}
.toolbar-left {
    display: flex;
    align-items: center;
}

.toolbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.toolbar-item {
    margin-right: .5em;
}

.toolbar label {
    display: block;
    font-size: .75em;
    color: #fff;
    margin-bottom: -2px;
}

.toolbar select,
.toolbar input {
    font-size: 13px !important;
    width: 150px;
    height: 28px;
    padding-left: 4px;
    border-radius: 4px;
    border: 1px solid #f1f1f1;
}

.toolbar-sm select,
.toolbar-sm input {
    font-size: .75em;
    width: 90px;
    height: 25px;
    padding-left: 5px;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
}

.toolbar-lg select,
.toolbar-lg input {
    width: 200px;
}
.toolbar-xl select,
.toolbar-xl input {
    width: 350px;
}
.feedback {
    position: fixed !important;
    bottom: 0px !important;
    right: 5px !important;
    z-index: 1000 !important;
    font-size: 1em !important;
    color: #fff !important;
    text-transform: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: rgba(46, 46, 45, .75);
    /*background: linear-gradient(to bottom, rgba(80, 80, 80, 1), rgba(80, 80, 80, .65));*/
    /*    background: linear-gradient(to bottom right, #ff8902, #e52f70);*/
    /*background-color:rgba(200, 200, 200, .5);*/
    /*background-color: rgba(33, 41, 68, .85);*/
    /*background: linear-gradient(to bottom right, #ff8902, #e52f70);*/
    /*    background-color: #1f7e8c;
    background: linear-gradient(to bottom right, #1f7e8c, #3a9ead);*/
    cursor: pointer;
}

    .feedback button {
        color: #fff;
    }

    .feedback:hover {
        background-color: #3a9ead;
        background: linear-gradient(to bottom left, #1f7e8c, #3a9ead);
        color: #333;
        /*background: linear-gradient(to top left, #ff8902, #e52f70);*/
    }

    .feedback i.fa-angle-down,
    .feedback i.fa-angle-up {
        padding-top: 5px;
        padding-right: 5px;
        color: #fff;
    }

button.button-feedback i {
    color: #fff;
    background-color: rgba(100, 100, 100, .5);
}

button.button-feedback:hover i {
    background-color: rgba(100, 100, 100, .5);
}
/* ********** */
/* MEDIA QUERY */
/* ********** */
@media (min-width:880px) and (max-width:1226px) {
    .header div.title {
        font-size: 1em !important;
    }
    .toolbar-item button {
        height: 45px;
    }
    .toolbar-item button i {
        display:none;
    }
}
@media (min-width:551px) and (max-width: 881px) {
/*    .container {
        -ms-grid-columns: 80px 0px auto;
        grid-template-columns: 80px auto;
        -ms-grid-rows: 65px 0px auto 0px 125px;
        grid-template-rows: 65px auto 125px;
        grid-template-areas: "h h" "m c" "f f";
    }*/
/*    .menu .parent-menu {
        text-align: center;
    }
    .child-menu-item {
        margin-left: 0;
    }
    .menu .child-menu {
        padding: .25em 1.25em;
        background-color: rgb(0, 0, 0, .75);
        width: 200px;
        -webkit-transform: translate(80px, -25px);
        transform: translate(80px, -25px);
        position: absolute;
        z-index: 1000;
    }
    .header .logo {
        width: 80px;
    }
        .header .logo img {
            content: url("images/flashiq-icon.png");
        }
    .parent-menu-item span {
        display: none;
    }
    .child-menu-item span {
        display: inline;
    }
    .menu i.child-toggler {
        -webkit-transform: translate(15px, -40px);
        transform: translate(15px, -40px);
    }*/
    /*.header {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
    }
    .menu {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }
    .content {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
    }
    .footer {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
    }
    .container-collapsed .menu {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
    }
    .dashboard-chart .chart-content {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
    }*/
}
@media (max-width: 550px) {
    .container {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
        -ms-grid-rows: 150px 0px auto 0px 125px;
        grid-template-rows: 150px auto 125px;
        grid-template-areas: "h" "c" "f";
    }

    .header {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 5;
        grid-area: h;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
        -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
        grid-template-areas: "l h" "t a";
    }

    .container-collapse > .header {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
    }

    .container-collapsed > .header {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }

    .header .logo {
        grid-area: l;
        margin-top: 15px;
    }

    .header .overall-health {
        grid-area: a;
        margin-left: auto;
        margin-top: 8px;
        margin-right: 30px;
    }

    .header div.title {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        margin-top: 8px;
        grid-area: t;
    }

    .header i.fa-bars {
        display: inline-block;
        margin-right: 5px;
        cursor: pointer;
    }

    .header .greeting {
        display: none;
    }

    .header .action {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 5;
        grid-area: h;
    }

    .menu {
        -ms-grid-row: 3;
        -ms-grid-column: 5;
        grid-area: c;
        /*z-index:1000;*/
    }

    .container-collapse > .menu {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }

    .container-collapsed > .menu {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }

    .dashboard-chart > .menu {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
    }

    .menu li.toggler {
        display: none;
    }

    .footer .copyright {
        margin-top: 1em;
    }

    .footer span.copyright-text {
        display: block;
    }

    .header {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }

        .header > .header {
            -ms-grid-row: 1;
            -ms-grid-column: 2;
            -ms-grid-column-span: 1;
        }

    .content {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }

    .footer {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }

    .container-collapsed .menu {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }

    .header > .chart-title {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }

    .dashboard-chart .chart-content {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }
}
/* SEARCHABLE SELECT */
.search-select {
    width: 100% !important;
}

.select2-results__option select2-results__option--selectable:first-child {
    padding: 0 !important;
    margin: 0 !important;
    display: none !important;
}

input.select2-search__field {
    box-shadow: none !important;
    outline: none !important;
    border-width: 0 !important;
    background-color: #eaeefa;
    border-bottom: 1px solid #d6ddf4 !important;
}

.select2-selection__rendered,
.select2-selection__rendered:hover {
    color: #000 !important;
    padding-top: 4px !important;
}

.select2-selection__arrow {
    top: 5px !important;
}

.select2-results__options {
    font-family: inherit !important;
    font-size: 13px !important;
}

.select2-selection__rendered {
    padding: 0 !important;
    margin: 0 !important;
    padding-top: 4px !important;
    font-size: 13px !important;
    padding-left: 5px !important;
    padding-right:4px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal !important;
}

@media (min-width:551px) and (max-width: 725px) {
    .header {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
    }

        .header .action {
            -ms-grid-row: 1;
            -ms-grid-column: 1;
            -ms-grid-column-span: 3;
        }

    .menu {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
    }
}

@media (max-width: 550px) {
    .header {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }

        .header > .header {
            -ms-grid-row: 1;
            -ms-grid-column: 2;
            -ms-grid-column-span: 1;
        }

        .header .logo {
            -ms-grid-row: 1;
            -ms-grid-column: 1;
        }

/*        .header .logo {
            width: 265px;
        }*/
            .header .logo img {
                width: 50%;
                margin-bottomx: .65em;
            }

        .header .overall-health {
            -ms-grid-row: 2;
            -ms-grid-column: 2;
        }

        .header > div.title {
            font-size:1em;
            -ms-grid-row: 2;
            -ms-grid-column: 1;
        }

        .header .action {
            -ms-grid-row: 1;
            -ms-grid-column: 1;
            -ms-grid-column-span: 1;
        }

        .header > .action {
            -ms-grid-row: 1;
            -ms-grid-column: 2;
            -ms-grid-column-span: 1;
        }

    .menu {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }
}
