﻿/*#region General*/
* {
    padding: 0px;
    margin: 0px;
}

html, body {
    min-height: 240px;
    min-width: 215px;
    margin:0px;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12pt;
}

a {
    text-decoration: none;
    cursor: pointer;
}
    a:hover {
        text-decoration: underline;
    }
        a:hover img:not([class=logo]) {
            transform: scale(0.9);
            opacity: 0.9;
        }
input, textarea, select {
    font-size: 12pt;
}
    input[type=button], input[type=submit] {
        border-radius: 5px;
        border: 1px solid;
        height: 40px;
        width: 120px;
    }
ul {
    list-style-type: none;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently upported by Chrome and Opera */
}

.page {
   position:absolute;
   height:100%;
   width:100%;
}
/*#endregion*/

/*#region ICONS*/
.icon-s0 {
    width: 18px;
    height: 18px;
}
.icon-s1 {
    width: 24px;
    height: 24px;
}
.icon-s2 {
    width: 36px;
    height: 36px;
}
.icon-s3 {
    width: 42px;
    height: 42px;
}
.icon-s4 {
    width: 100px;
}

/*#endregion*/

/*#region HEADER*/
header {
    overflow: auto;
}
    /*NAVIGATION*/
    header nav {
        display: inline-block;
    }
        /*LOGO*/
        header nav.logo {
            float: left;
            width: 79%;
            align-self: center;
            max-width: 215px;
            min-width: 90px;
            padding: 0.7%;
        }
            header nav.logo img {
                width: 100%;
            }

        /*MENU HORIZONTAL*/
        .h-menu {
            text-align: left;
            float: left;
            max-width: 530px;
            margin: 0 auto;
            vertical-align: middle;
        }
            .h-menu ul li {
                display: inline-block;
            }
                .h-menu ul li:first-child {
                    display: none;
                    padding: 10px 5px;
                }
                    .h-menu ul li:first-child label {
                        display: block;
                        width: 100%;
                        text-align: left;
                    }
                .h-menu ul li a {
                    display: block;
                    text-transform: uppercase;
                    text-align: center;
                    text-decoration: none;
                    padding: 28px 20px
                }

        .h-menu-sh {
            display: inline-block;
        }

        @media only screen and (max-width: 925px) {
            .h-menu {
                float: left;
                max-width: 80%;
            }
                .h-menu ul li {
                    display: none;
                    text-align: center;
                    min-width: 100%;
                }
                    .h-menu ul li.h-menu-sh {
                        display: inline-block;
                    }
                    .h-menu ul li:first-child {
                        text-align: center;
                        display: block;
                    }
                    .h-menu ul li a {
                        display: block;
                        text-transform: uppercase;
                        text-align: center;
                        text-decoration: none;
                        padding: 5px 5px;
                    }
        }
/*#endregion*/

/*#region MENU ICONS*/
.i-menu {
    width: 18%;
    text-align: center;
    float: right;
    max-width: 220px;
    padding: 0.8%;
}
.i-menu li {
    display: inline-block;
}
.h-user {
    text-align: center;
    color: #fff;
    float: right;
    height: 100%;
}
.i-menu span {
    display: block;
    background-color: #EEE;
    border: solid 1px gray;
    font-size: 11px;
    padding: 2px;
}
/*#endregion*/

/*#region MENU VERTICAL : DISPLAY*/
.v-menu {
    position: absolute;
    z-index: 3;
    right: 7%;
}
    .v-menu li {
        border: 1px solid;
        border-bottom: 0px;
        display: block;
        width:200px;
        text-transform: capitalize;
    }
        .v-menu li li a {
            margin: 0 auto;
            text-align: center;
        }
        .v-menu li a {
            display: block;
            padding: 10px 15px;
            text-decoration: none;
        }

/*#endregion*/

/*#region MAIN*/

.main {
    overflow: hidden;
    min-height: 75%;
}

/*#region DASHBOARD*/
.dashboard {
    text-align:center;
    overflow:auto;
    padding-bottom: 2%;
    width:100%;
}
    .dashboard .filter {
        width:100%;
        overflow:auto;
        font-size:13px;
    }
        .dashboard .filter ul {
            float:none;
            display: block;
            border:1px solid #000000;
            padding:4px;
            margin:1.5%;
        }
        .dashboard .filter li {
            display: inline-block;
            margin-left: 20px;
            margin-right: 20px;
        }
        .dashboard .filter li:hover {
            display: inline-block;
            color:#BD0006;
            cursor:pointer;
        }
        .dashboard .filter .PeriodDisplay {
            font-weight: bold;
            font-size: 20px;
            cursor: none;
        }
    .dashboard .charts {
        text-align: center;
    }
        .dashboard .charts .chart-content {
            float: left;
            position: relative;
            min-width: 213px;
            min-height: 30%;
            margin: 1.5%;
            margin-top: 0.5%;
            margin-bottom: 0.5%;
            padding: 1px;
        }
            .dashboard .charts .chart-content img {
                position: absolute;
                bottom: 0;
                right: 0;
            }
    .dashboard .info {
        width:100%;
        overflow:auto;
        font-size: 12px;
    }
    .dashboard .title {
        width: 100%;
        overflow: auto;
        font-size: 20px;
        font-weight: bold;
        color: #BD0006;
    }

    /*#region CONFIGURATION*/
    .dashboard .config {
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 0;
        border: 1px solid #000;
        background-color: #FFFFFF;
        padding: 0px;
        width: 90%;
        display: block;
        z-index: 1;
        position: absolute;
    }
        .dashboard .config .close {
            float:right;
        }
        .dashboard .config section {
            display: inline-block;
            width: 50%;
            float: left;
            text-align: left;
        }

        .dashboard .config .ChartSelect {
            width: 100%;
        }
            .dashboard .config .ChartSelect nav ul {
            width: 100%;
            display: block;
        }
                .dashboard .config .ChartSelect nav ul li {
                    display: inline-block;
                }
                .dashboard .config .ChartSelect nav ul li:hover {
                background-color: gray;
            }

        .dashboard .config .SQLQuery {
            width: 100%;
            background-color: aqua!important;
        }
        .dashboard .config .SQLQuery textarea {
                width:100%;
                height:200px;
            }
            .dashboard .config .SQLQuery .Result #ResultDisplay {
                overflow-y: scroll;
                width: 100%;
                border-top: 1px solid #000;
                border-bottom: 1px solid #000;
                height: 200px;
                font-size:smaller;
            }
            .dashboard .config .SQLQuery .Result #ResultDisplay td {
                border-bottom: 1px solid #DDD;
            }

        .dashboard .config .Chart {
                    float: left;
                    width: 100%;
                }
            .dashboard .config .Chart .Sample #ChartSample {
                height: 300px;
                overflow: auto;
            }
            .dashboard .config .Chart .Properties #ChartForm label {
                display: inline-block;
                width: 20%;
                max-width: 150px;
            }

     /*#endregion*/
     
    /*#region CUSTOM*/
        .dashboard .charts .chart-content.indicator {
            width: 21.5% !important;
        }
            
            .dashboard .charts .chart-content.indicator .title {
                font-size:12pt;
                font-weight:bold;
                color:rgb(163, 163, 163);
            }
            .dashboard .charts .chart-content.indicator .value {
                font-size: 32pt;
                font-weight: bold;
            }
            .dashboard .charts .chart-content.indicator ul {
                position:relative;
            }
            .dashboard .charts .chart-content.indicator .measure {
                float:right;
                position:absolute;
                right: 10%;
                top:70%;
            }
                .dashboard .charts .chart-content.chart-combined {
                    width: 71% !important;
                }
        .dashboard .charts .chart-content.chart-map {
            width: 21.5% !important;
            float:right;
        }
        .dashboard .charts .chart-content.chart-pie {
            width: 21.5% !important;
        }
        .dashboard .charts .chart-content.chart-bars {
            width: 46.25% !important;
        }
        .dashboard .charts .chart-content.chart-lines {
                width: 96.5% !important;
                overflow:hidden;
            }
    /*#endregion*/

    /*#region SOURCE*/
    .dashboard .source {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        display: block;
        background-color: #EEEEEE;
        border: 1px solid;
        z-index: 999;
    }
            .dashboard .source textarea {
                width: 100%;
                border: 0px;
                border-top: 1px solid;
            }
            .dashboard .source input[type=text] {
                float: left;
                width: 60%;
                min-width: 210px;
                border: 0px;
                height: 30px;
                background: transparent;
            }
            .dashboard .source input[type=button] {
                float: right;
                font-size: 10pt;
                border-radius: 4px;
                border: 1px solid;
                height: 30px;
                width: 60px;
                margin: 2px;
            }
    /*#endregion*/
    /*#endregion*/

/*#region HOME*/

/*#region : MENU SLIDE*/
.slide-menu {
    min-height:100%;
    position: absolute;
    z-index: 1;
    left: 0;
    width: 0px;
    overflow:hidden;
}
.slide-menu-nav {
    cursor: pointer;
}
.slide-menu .slide-menu-nav {
    text-align: right;
}
.slide-menu .v-menu {
    right: 0;
}
    .slide-menu .v-menu li {
        width: 220px;
    }
.slide-menu .v-menu li li a {
    padding-left : 30px;
    text-align: left;
}

.slide-menu-client {
    float: left;
    width: 100%;
    text-align: center;
    padding:10px;
}
    .slide-menu-client select {
        width: 40%;
        font-size: 18px;
        border-radius: 4px;
        border: 1px solid #BD0006;
    }

/*#endregion*/

/*#region HIGHLIGHTED*/
.highlighted {
    text-align: center;    
    width:100%;
}
    .highlighted div {
        display: inline-block;
        overflow: auto;
        width: 30%;
        min-width: 215px;
        min-height: 30%;
        margin: 1%;
    }
    .highlighted article {
        overflow: auto;
    }
        .highlighted article img {
            float: left;
            width: 40%;
            max-width: 150px;
        }
    .highlighted label {
        float: left;
        text-transform: uppercase;
        width: 60%;
        font-size: 14px;
        font-weight: bold;
        padding-top: 5%;
    }
    .highlighted p {
        overflow: hidden;
        float: left;
        width: 60%;
        text-transform: capitalize;
        padding-top: 5%;
        font-size: 85%;
        height: 50px;
    }
    .highlighted nav {
        text-align: left;
        width: 100%;
        height: 15%;
    }
        .highlighted nav li {
            margin-right: 1%;
            display: inline-block;
        }
            .highlighted nav li label {
                display: none;
                position: absolute;
                width: 100px;
                box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
                padding: 5px;
                z-index: 1;
            }
            .highlighted nav li:hover label {
                display: block;
            }
/*#endregion*/

/*#endregion*/

/*#region TOOLBAR*/
.toolbar {
    min-height : 120px;
}
    .toolbar label {
        float: right;
        width: 100%;
        text-align: right;
        margin-bottom: 5px;
    }
    
    .toolbar .h-title {
        float: left;
        width: 70%;
        min-width: 220px;
        min-height: 40px;
        font-size: 30px;
        display:block;
    }
        .toolbar .h-title filter {
            display:inline-block;
            font-size: medium;
            color: #BD0006;
        }

    .toolbar .h-search {
        float: left;
        width: 30%;
        min-width: 220px;
        min-height: 40px;
        text-align: right;
        display: block;
    }
        .toolbar .h-search input {
            width: 80%;
            min-width: 220px;
            height: 50px;
            border: 0px;
            background: url(/images/search.svg) no-repeat;
            background-size: 48px 48px;
            background-position: right;
        }

    .toolbar .h-filter {
        width: 90%;
        display: block;
        float: left;
        font-size: 25px;
        padding: 10px;
        padding-top: 20px;
    }
        .toolbar .h-filter ul {
            display:inline-block;
        }
        .toolbar .h-filter li {
            display: inline-block;
        }
        .toolbar .h-filter li:last-child {
            cursor:pointer;
        }
        .toolbar .h-filter span:hover {
            text-decoration:underline;
            cursor: pointer;
        }
        .toolbar .h-filter .fld-config {
            width:100%;
            height: 35px;
        }
        .toolbar .h-filter .fld-config ul {
            margin: 1px;
            font-size: 9pt;
            cursor: pointer;
            color: #0094ff;
            border: 1px dashed #DDD;
        }
            .toolbar .h-filter .fld-config ul:hover {
                background-color:aliceblue;
            }
            .toolbar .h-filter .fld-config li {
                padding: 2px;
            }
            .toolbar .h-filter .popup {
                overflow: auto;
                position: absolute;
                background-color: #FFFFFF;
                border: 1px solid #000000;
                max-height: 60%;
                font-size: medium;
                cursor: pointer;
            }
            .toolbar .h-filter .popup ul {
                width: 200px;
            }
            .toolbar .h-filter .popup li {
                width:100%;
            }
            .toolbar .h-filter .popup li:hover {
                background-color: rgba(0,0,0,0.2);
            }
            
            .toolbar .h-shortcuts {
                float: right;
            }
        .toolbar .h-shortcuts li {
            display: inline-block;
        }
            .toolbar .h-shortcuts li label {
                display: none;
                position: absolute;
                box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
                padding: 5px;
                z-index: 1;
                margin-top: 30px;
                margin-left: -50px;
                width: 100px;
            }
                .toolbar .h-shortcuts label {
                    text-align: center;
                    min-width: 120px;
                }
        .toolbar .h-shortcuts li:hover label {
            display: block;
        }

    .toolbar .h-display {
        float: right;
        display: block;
    }
        .toolbar .h-display li {
            display:inline-block;
            cursor:pointer;
        }
        .toolbar .h-display li:hover {
            background-color:#DDD;
        }
            .toolbar .h-display li.selected {
                background-color: #BD0006;
            }
    /*TOOBAR-NAV*/
    .toolbar-nav {
        text-align: center;
        float: right;
        margin: 1% auto;
    }
/*#endregion*/

/*#region LIST*/
.list {
    padding: 2px;
}
.list .data.dataloading {
    background-image: url(/images/loading.svg);
    background-size: 3%;
    background-position: bottom;
    background-repeat: no-repeat;
}

    /*DATA*/
    .list .data {
        margin-top:20px;
        min-width: 220px;
        max-height: 480px;
        overflow: auto;
    }
        /*BLOCK*/
        .list .data.block article {
            overflow: auto;
            padding: 0.5%;
            margin-bottom: 0.5%;
        }
        .list .data.block ul {
            float: left;
        }
        .list .data.block img {
            float: left;
        }
        .list .data.block ul.column {
            width: 70%;
            font-size: 90%;
        }
            .list .data.block ul.column li {
                padding-right: 2px;
            }
        .list .data.block ul li label:first-child {
            font-weight: bold;
        }
        .list .data.block ul.subcolumn {
            font-size: small;
            width: 80%;
        }
        .list .data.block ul.nav {
            float: right;
            max-width: 20%;
        }
            .list .data.block ul.nav img {
                display: inline-block;
            }
            .list .data.block ul.nav label {
                display: none;
                position: absolute;
                box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
                padding: 5px;
                z-index: 1;
                margin-top: 30px;
                margin-left: -50px;
            }
            .list .data.block ul.nav li:hover label {
                display: block;
            }
        .list .data.block li {
            display: inline-block;
            padding: 3px;
        }


        /*TABLE*/
        .list .data.table li .split {
            display:none;
        }
        .list .data.table article {
            overflow: auto;
            vertical-align: bottom;
            padding:0px;
        }
            .list .data.table article:hover {
                background-color:#fce3e3;
            }
        .list .data.table ul {
            float: left;
            display:table-column;
        }
        .list .data.table img {
            float: left;
            height:auto;
            width:24px;
            margin:0px;
        }
        .list .data.table article:first-child img {
            margin-top:52px;
        }
        .list .data.table ul.column {
            width: 90%;
            font-size: 90%;
        }
        .list .data.table article:first-child ul.column li label:first-child {
            width: 100%;
            display: block;
            font-weight:bold;
            background-color: #EEE;
            border: 1px solid #000000;
            height: 46px;
            margin: 0px;
            padding: 2px;
        }
        .list .data.table article:first-child ul.column li {
            height: 92px;
        }
        .list .data.table ul.column li {
            padding: 1px;
            display: inline-block;
            vertical-align: top;
            margin: 0px;
            width: 12%;
            min-height:46px;
            height:auto;
            text-align:center;
        }
        .list .data.table ul li label:first-child {
            display:none;
        }
        .list .data.table ul li label {
            width: 100%;
            display: block;
        }
        .list .data.table ul.subcolumn {
            font-size: small;
            width: 80%;
            display: none;
        }
        .list .data.table ul.nav {
            float: right;
            max-width: 20%;
            padding:5px;
        }        
            .list .data.table ul.nav img {
                display: inline-block;
            }
            .list .data.table article:first-child ul.nav label {
                margin-top: 80px;
            }
            .list .data.table ul.nav label {
                display: none;
                position: absolute;
                box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
                padding: 5px;
                z-index: 1;
                margin-top: 25px;
                margin-left: -65px;
                width: auto;
            }
            .list .data.table ul.nav li:hover label {
                display: block;
            }
        .list .data.table li {
            display: inline-block;
            padding: 3px;
        }

        /*PAGE*/
        .list .pagination {
            width:100%;
            text-align:center;
        }
            .list .pagination input {
                width: 50px;
            }
            .list .pagination .page-number input {
                width:40px;
                margin:2px;
            }
        /*#endregion*/

/*#region FORM*/
.form {
    padding: 0.5%;
}

.fields {
    overflow: auto;
    padding-bottom:70px;

}

    .fields .form-title {
        text-transform: capitalize;
        font-size: 18px;
        font-weight: bold;
        width: 100%;
    }

    .fields section.col {
        float: left;
        width: 48%;
        min-width: 215px;
        margin: 1%; /*2x lef , right*/
    }

    .fields section[class^=fl-] * {
        width: 100%;
        border: 0px;
    }
    .fields section[class^=fl-] label {
        font-size: small;
        padding-bottom: 5px;
    }
    .fields section[class^=fl-] input[readonly] {
        color:#908e8e
    }
    .fields section[class^=fl-] span {
        float:right;
        text-align: right;
        font-size: x-small;
    }

    /*fl-select*/
    .fields section[class^=fl-select] div {
        position: relative;
    }
    .fields section[class^=fl-select] ul {
        position: absolute;
        overflow-y: scroll;
        width: 100%;
        height: 100px;
        border: 1px solid #000000;
        background-color: #FFFFFF;
    }
    .fields section[class^=fl-select] li {
        cursor:pointer;
    }
    .fields section[class^=fl-select] li:hover {
        background-color:#EEEEEE;
    }

    .fields section[class^=fl-select-search] select {
        position:absolute;
        border:1px solid #000000;
    }

    /*fl-checklist*/
    .fields section[class=fl-checklist] {
        overflow-y: scroll;
        min-height: 310px;
        max-height: 420px;
    }    

    .fields section[class=fl-checklist] img {
        float: right;
    }

    .fields section[class=fl-checklist] li {
        display: inline-block;
        width: auto;
    }

    .fields section[class=fl-checklist] li[role] {
        float: right;
    }

    .fields section[class=fl-checklist] li[role] a {
        width: 24px;
    }

    .fields section[class=fl-checklist] ul {
        border-bottom: 1px solid #EEEEEE;
    }
    .fields input.required, textarea.required {
        background-color: #fce3e3;
    }

    /*fl-list*/
    .fields section[class=fl-list] {
        overflow-y: scroll;
        min-height: 210px;
        max-height: 520px;
    }
    .fields section[class=fl-list] img {
        float: right;
    }
    .fields section[class=fl-list] li {
        display: inline-block;
        width: auto;
    }
        .fields section[class=fl-list] li[role] {
            float: right;
        }
            .fields section[class=fl-list] li[role] a {
                width: 24px;
            }
    .fields section[class=fl-list] ul {
        border-bottom: 1px solid #EEEEEE;
    }

    /*fl-file*/
    .fields section[class=fl-file] input {
        border:0px;
        background-color:white;
    }
    .fields section[class=fl-file] input[class=click-to-action]  {
        color:blue;
        text-decoration:underline;
        cursor:pointer;
    }

    /*fl-info*/
    .form .fl-info {
        float: left;
        margin: 1% auto;
        font-size: small;
        color: #404040;
    }

/*section-message*/
section.message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 400px;
    z-index: 1000;
}

/*ico-info*/
.icon-info {
    cursor: pointer;
}
    .icon-info em {
        display: none;
        position: absolute;
        top: -100%;
        left: 103%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 1000;
        width:200px;
    }

    .icon-info:hover em {
        display: block;
    }

/*#endregion*/

/*#region REPORT*/
.report {
    height:100%;
}
/*#endregion*/
/*#endregion*/

/*#region FOOTER*/
footer {
    font-size: small;
    overflow: auto;
    text-align: center;
}
    footer p.title {
        font-weight: bold;
        font-size: large;
        width: 100%;
        max-width: 100%;
        text-align: center;
        text-transform: uppercase;
        margin: 0 auto;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    footer section {
        vertical-align: top;
        text-align: left;
        display: inline-block;
        width: 30%;
        margin: 0 auto;
        max-width: 30%;
        min-width: 215px;
        margin-top: 10px;
    }
        footer section.copyright {
            display: block;
            padding-top: 25px;
            text-align: center;
            max-width: 90%;
            width: 90%;
            margin: 0 auto;
            height: 40px;
        }
        footer section.cookie {
            display: none;
            width: initial;
            max-width: 80%;
            min-width: 200px;
            margin: auto;
        }
        footer section.cookie div {
            display: block;
            border: solid 1px #000000;
            border-radius: 10px;
            color: #000;
            background-color: #fff;
            padding: 15px;
            min-height:40px;
            position:absolute;
            z-index:600;
            margin:auto;
            bottom:10%;
            left:20px;
            right:20px;
        }
            footer section.cookie input {
                float: right;
                cursor:pointer;
            }
            /*#endregion*/

/*#region DIALOG*/
            .dialog-box {
                display: none;
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                z-index: 20;
            }

    .dialog-box.message {
        display: block;
    }
        .dialog-box.message .window {
            display: block;
            position: relative;
            overflow: hidden;
            max-width: 480px;
            min-width: 200px;
            padding: 5px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
            .dialog-box.message .window .title {
                float: left;
                font-weight: bold;
                width: 90%;
            }
            .dialog-box.message .window .close {
                float: left;
                width: 10%;
                text-align: right;
            }
            .dialog-box.message .window .description {
                text-align: center;
                margin: 10%;
            }
            .dialog-box.message .window nav {
                text-align: center;
            }
        .dialog-box.message .loader {
            display: none;
        }
    .dialog-box:active .window {
        transform: translate(-50%, -50%) scale(1.01);
    }

    .dialog-box.loading {
        display: block;
        opacity: 0.8;
    }
        .dialog-box.loading .window {
            display: none;
        }
        .dialog-box.loading .loader {
            position: absolute;
            max-width: 200px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            opacity: 1;
            filter: alpha(opacity=100);
        }

/*#endregion*/

/*#region MEDIA*/
.media {
    min-height: 25px;
    position: absolute;
    display: none;
    overflow:hidden;
    width: 100%;
    font-size: small;
    /*opacity : 0.8;*/
}
    .media p {
        padding-left: 40px;
    }

    .media.success {
        display: block;
        color: #000000;
        background-image: linear-gradient(-90deg, forestgreen,rgba(87, 250, 0, 0.5));
    }
    .media.alert {
        display: block;
        color: #000000;
        background-image: linear-gradient(-90deg, orange,rgba(232, 250, 0, 0.50));
    }
    .media.error {
        display: block;
        color: #000000;
        background-image: linear-gradient(-90deg, red,rgba(250, 106, 106, 0.50));
    }

@media(max-width: 1930px) {
    .media {
        border-bottom: 1px solid forestgreen;
    }
}
@media(max-width: 1024px) {
    .media {
        border-bottom: 1px solid blue;
    }
}
@media(max-width: 760px) {
    .media {
        border-bottom: 1px solid yellow;
    }
}
@media(max-width: 360px) {
    .media {
        border-bottom: 1px solid red;
    }
}
@media(max-width: 240px) {
    .media {
        border-bottom: 1px solid orange;
    }
}

/*#endregion*/
