:root {
    --background-color: #ebebeb;
    --main-color: #ddad66;
    --border-color: grey;
    --popup-background-color: rgba(0, 0, 0, .8);
    --popup-menu-color: rgba(235, 235, 235, .95);
    --error-background: rgba(255, 140, 60, .95);
    --info-background: rgba(60, 150, 255, .95);
    --disabled-color: lightgray;
}

@font-face {
    font-family: 'bebas';
    src: url('../fonts/bebasneuebold-webfont.woff2') format('woff2'),
         url('../fonts/bebasneuebold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helvetica_condensed_bold';
    src: url('../fonts/helveticaneue-condensed_bold-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneue-condensed_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helvetica_condensed_thin';
    src: url('../fonts/helveticaneue-condensed_thin-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneue-condensed_thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'helvetica_condensed';
    src: url('../fonts/helveticaneue-condensed-webfont.woff2') format('woff2'),
         url('../fonts/helveticaneue-condensed-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

::selection, 
.select2-container--default.select2-container--open .select2-results__option--highlighted.select2-results__option--selectable {
  background: var( --main-color );
  color: white;
}

body {
    margin: 0px;
    font-family: 'helvetica_condensed';
    background-color: var( --background-color );
    position: relative;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select:none; 
    user-select:none;
    -o-user-select:none;
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'bebas';
    font-weight: normal;
    text-transform: uppercase;
}

textarea {
    font-family: inherit;
}

.form-field label.input_range_label {
    text-align: center;
}

.form-field label.input_range_label:after {
    content: none;
}

.form-field .image-field-box {
    max-width: 100%;
    max-height: 100%;
}

#container {
    width: 100%;
    height: 100%;
    display: flex;
}

#content {
    display: flex;
    flex: auto;
    height: 100%;
    max-width: 100%;
    
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 25px;
}

#main-content {
    padding: 20px 20px 20px 80px;
    width: 100%;
    display: flex;
    flex-flow: column;
}

#left-menu {
    position: absolute;
    display: flex;
    top: 0px;
    left: 0px;
    height: 100%;
    min-width: 60px;
    width: 300px;
    border-style: solid;
    border-width: 0px 2px 0px 0px;
    border-color: var( --border-color );
    z-index: 10;
    background-color: var( --popup-menu-color );
}

#left-menu-content {
    margin: 20px;
    width: 100%;
}

#message-container {
    position: absolute;
    margin-left: 50%;
    margin-right: 50%;
    transform: translatex(-50%);
    top: 20px;
    width: 90%;
    max-width: 600px;
    color: white;
    font-weight: bold;
    z-index: 10000;
}

.message-box {
    width: 100%;
    padding: 10px;
    background-color: orange 0.8;
    border-radius: 3px;
    margin-bottom: 10px;
    cursor: pointer;
}

.message-box.error {
    background-color: var( --error-background );
}

.message-box.info {
    background-color: var( --info-background );
}

.loading-icon {
    margin-right: 5px;
}

.disabled {
    background-color: var( --disabled-color ) !important;
    cursor: wait !important;
    pointer-events: none;
}

.button {
    background-color: var( --main-color );
    display: block;
    padding: 10px;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    color: white;
    font-family: "bebas";
    text-align: center;
}

.login-button {
    display: inline-block;
    width: 200px;
}

.menu-title, .menu-list {
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select:none; 
    user-select:none;
    -o-user-select:none;
}

.menu-title {
    font-size: 20px;
    cursor: pointer;
    margin-top: 0px;
    margin-bottom: 10px;
}

.menu-title:hover {
    color: var( --main-color );
}

.menu-icon {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
}

.menu-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    cursor: pointer;
    font-size: 20px;
}

.menu-button:hover {
    color: var( --main-color );
}

.menu-list {
    padding-left: 35px;
    margin-top: 0px;
}

.menu-list li {
    list-style: none;
    cursor: pointer;
    padding: 3px 0px 3px 0px;
}

.menu-list li:hover {
    font-weight: bold;
}

.page-title {
    margin-top: 0px;
}

.error-message {
    margin-top: 0px;
    color: red;
}

.table-container {
    display: contents;
    width: 100%;
}

.tabulator-tableHolder {
    scrollbar-width: thin;
}

.button-container {
    margin-bottom: 10px;
    display: flex;
}

.button-container .button {
    margin-right: 5px;
    margin-bottom: 5px;
    width: max-content;
}

.reset-filter:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0b0";
    margin-right: 5px;
}

/* VIEW SCENARIOS */

.scenario-info {
    display: flex;
    flex-flow: row;
    margin: 10px 0 5px 0;
}

.scenario-info div:first-child {
    margin-right: 10px;
}

.dooh-scenarios-table {
    width: 100%;
    border-collapse: collapse;
}

.dooh-scenarios-table thead {
    color: var(--info-background);
    font-weight: bold;
    border-bottom: 2px var( --main-color ) solid;
}

.dooh-scenarios-table td {
    text-align: center;
    border-width: 0px 1px;
    border-style: solid;
    border-color: var( --main-color );
    height: 30px;
}

.dooh-scenarios-table tbody tr {
    border-width: 1px 0px;
    border-style: solid;
    border-color: var( --main-color );
}

.dooh-scenarios-table tr td:first-child {
    text-align: left;
    border: 0;
}

.dooh-scenarios-table tbody td.active {
    background-color: var(--info-background);
}

/* END VIEW SCENARIOS */

/*
.add-new:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0fe";
    margin-right: 5px;
} 
*/

/* POPUP WINDOWS */

.popup-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var( --popup-background-color );
    z-index: 20;
}

.popup-container {
   display: flex;
   position: absolute;
   background-color: rgba(255, 255, 255, 1);
   -webkit-appearance: none;
   -webkit-box-shadow: rgba(0, 0, 0, 0.3) -2px 0px 4px 0px;;
   box-shadow: rgba(0, 0, 0, 0.3) -2px 0px 4px 0px;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   width: 650px;
   height: max-content;
   max-width: 90%;
   max-height: 90%;
   border-radius: 0px 30px 0px 0px;
}

.popup-container.data-form-field {
   width: 900px;
}

.scrollable {
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.popup-container.full-width {
    width: 100%;
    height: 100%;
    max-width: 90%;
}

.popup-content {
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
    display: flex;
    margin: 10px;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.popup-title {
    margin: 0px;
}

.popup-column-4 {
    flex: 0 0 25%;
}

.popup-colum {
    display: inline-block;
    flex: 0 0 50%;
}

.popup-colum-full {
    display: inline-block;
    flex: 0 0 100%;
}

.popup-colum-content {
    margin: 10px;
}

.popup-container input,
.popup-container textarea {
    padding: 10px 5px;
    width: 100%;
    margin-bottom: 10px;
}

.popup-double-column {
    display: flex;
}

.popup-container .half-field-1 {
    width: 50%;
    padding-right: 5px;
    margin-bottom: 0px;
}

.popup-container .half-field-2 {
    width: 50%;
    padding-left: 5px;
    margin-bottom: 0px;
}

.popup-container .select2 {
    width: 100% !important;
    margin-bottom: 10px;
}

.popup-table-container {
    height: calc( 75% - 30px );
}

.popup-form {
    display: flex;
    width: 100%;
    margin-bottom: 0px;
}

.popup-label {
    display: block;
    width: 100%;
}

.popup-checkbox {
    float: right;
    width: auto !important;
}

/* EXCEL IMPORT FORM CONTAINER */
.excel-import-form-container {
    position: fixed;
    z-index: 100;
    width: 50%;
    height: 50%;
}

.excel-import-form-container textarea{
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.excel-import-form-container .button-container {
    width: 100%;
}

/* REPORT PAGE */
.report-title {
    color: var( --primary-color );
    text-align: center;
}

.report-subtitle {
    color: var( --secondary-color );
    text-align: center;
    margin-top: 20px !important;
}

.field-list {
    display: grid;
    margin-bottom: 20px;
}
.field-list span {
    font-size: 20px;
    color: var(--text-color);
}

.field-list span:first-of-type {
    font-size: 20px;
    font-weight: bolder;
    color: var(--secondary-color);
}

.report-table-container {
    overflow-y: auto;
    max-height: 510px;
    width: 100%;
}

.report-table-container thead th {
    position: sticky;
    top: 0px;
    background-color: var(--background-color);
}

.report-table-container .report-table-row.totals td {
    position: sticky;
    bottom: 0px;
    background-color: var(--background-color);
}

.report-table {
    width: 100%;
    border-collapse: collapse;
}

.report-table-cell:first-child {
    padding-left: 0px !important;
}

.report-table-cell {
    padding-left: 5px !important;
}

.report-table-cell.right {
    text-align: right;
}

.report-table-cell.left {
    text-align: left;
}

.report-table-row.report-table-header .report-table-cell {
    font-weight: bold;
    color: var( --secondary-color );
    border-bottom-style: solid;
    border-bottom-width: 5px;
    border-bottom-color: var(--primary-color);
    white-space: nowrap;
}

.report-table-row.totals .report-table-cell {
    font-weight: bold;
    color: var( --primary-color );
    border-top-style: solid;
    border-top-width: 3px;
    border-top-color: var(--primary-color);
}

.report-table-row.content:hover {
    background-color: rgba( 255, 255, 255, 0.75 ) !important;
    cursor: pointer;
}

.report-table-row.content .report-table-cell {
    padding: 5px 0px;
}

.report-table-row.content:nth-child(odd) {
    background-color: rgba( 255, 255, 255, 0.5 );
}

.report-table-cell {
    display: table-cell;
}

/* TABLE */
.table {
    display: table;
}

.table .table-row {
    display: table-row;
}

.table .table-row .table-cell {
    display: table-cell;
    padding-right: 10px;
    line-height: 20px;
}

.table.list .table-row .table-cell:first-of-type {
    font-weight: bold;
}

/* TABULATOR */
.tabulator-table .tabulator-row:nth-child(2n) {
    background-color: whitesmoke;
}

.tabulator-row.tabulator-selected {
    background-color: var( --main-color ) !important;
    color: white;
}

.sub-table .tabulator-row .tabulator-cell[tabulator-field="ubicazione"]:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    margin-right: 5px;
    color: lightgray;
}

.sub-table .tabulator .tabulator-header {
    display: none;
}

/* TAB MENU */
.tab-menu {
    min-height: 44px;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tab-button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

.tab-button:hover {
  background-color: #ddd;
}

.tab-button.active {
  background-color: #ccc;
}

.tab-content {
  display: none;
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: thin;
  border: 1px solid #ccc;
  border-top: none;
  padding: 20px;
}

input {
    font-family: 'helvetica_condensed';
    padding: 5px 10px;
    border: 1px solid;
    border-color: var(--border);
}

/* MEDIA CONTAINER */
.media-container {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
    height: 720px;
}

.media-element {
    width: 100%;
    max-width: 20%;
    flex: 0 0 20%;
    position: relative;
    margin-bottom: 30px;
    padding: 0px 15px 0 15px;
    box-sizing: border-box;
    text-align: center;
}

.media-image {
    height: 220px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.media-image.contain {
    background-size: contain;
}

.media-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 0px;
}

.media-actions {
    visibility: hidden;
    opacity: 0;
    display: flex;
    position: absolute;
    top: 0;
    left: 15px;
    transition: visibility 0s, opacity 0.3s linear;
}

.media-element:hover .media-actions {
    visibility: visible;
    opacity: 1;
}

.media-actions div {
    margin: 5px;
    padding: 10px;
    border-radius: 3px;
    background-color: var( --main-color );
    cursor: pointer;
    color: white;
    font-family: "bebas";
    text-transform: uppercase;
}

.media-label {
    padding: 5px;
    background-color: whitesmoke;
}

.upload-media-button-container {
    width: 100%;
    display: flex;
}

.media-upload-label {
    background-color: var( --main-color );
    display: block;
    padding: 10px;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    color: white;
    font-family: "bebas";
    text-align: center;
}

.media-progress {
    width: 100%;
}

/* Report */
.report-filter-toggle {
    cursor: pointer;
    font-size: 1em;
    margin-bottom: 10px;
}

.report-filter-toggle:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: darkgray;
}

.report-filter-toggle.open:before {
    content: '\f150';
}

.report-filter-toggle.close:before {
    content: '\f151';
}

.report-filter-toggle:after {
    text-transform: uppercase;
    content: 'Nascondi filtri';
    color: darkgray;
}

.report-filter-toggle.open:after {
    content: 'Nascondi filtri';
}

.report-filter-toggle.close:after {
    content: 'Mostra filtri';
}

@media only screen and (max-width: 767px) {
    .media-element {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media only screen and (min-width: 768px) {
    .media-element {
        width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
    }
}

@media only screen and (min-width: 992px) {
    .media-element {
        width: 33%;
        max-width: 33%;
        flex: 0 0 33%;
    }
}

@media only screen and (min-width: 1200px) {
    .media-element {
        width: 20%;
        max-width: 20%;
        flex: 0 0 20%;
    }
} 

/* FORM ELEMENTS */
.form-field label.input-media-thumbnail {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    width: 100px;
    height: 100px;
}

.form-field label.input-media-thumbnail:after {
    content: "";
}

.form-field {
    width: 100%;
    margin: 0px 0px 20px 0px;
    box-sizing: border-box;
}

.form-field.no-label label {
    display: none;
}

.form-field.no-margin{
    margin: 0px;
}

.form-field.half-width {
    width: 50%;
    float: left;
}

.form-field.half-width.first {
    padding-right: 10px;
}

.form-field.half-width.last {
    padding-left: 10px;
}

.form-field label {
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
    cursor: pointer;
}

.form-field input, .form-field select {
    padding: 10px 5px;
    cursor: pointer;
}

.form-field select {
    width: 100%;
}

.form-field label:after {
    content: ":";
}

.form-field.checkbox-field {
    display: inline-block;
    position: relative;
}

.form-field.checkbox-field input {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
}

.form-field.checkbox-field.first input {
    right: 10px;
}

.form-field .select2 {
    width: 100% !important;
}

.full-width {
    width: 100%;
    max-width: 100%;
}

.hidden, .form-field.checkbox-field.hidden {
    display: none;
}

.ui-dialog {
    z-index: 1001 !important;
}

.separator {
    border-bottom: 3px solid grey;
    padding-bottom: 20px;
}

/* COLUMN LAYOUT */

.column-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0px -10px;
}

.column {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}

.column25 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0px 10px; 
}

.column33 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0px 10px;
}

.column50 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0px 10px;
}

.column75 {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0px 10px;
}

.column100 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0px 10px;
}

.column h1, .column h2, .column h3, .column h4, .column h5 {
    width: 100%;
}

 /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .column25 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .column33 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .column50 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .column75 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .column25 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .column33 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .column75 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .column25 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .column75 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .column25 {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0px 10px; 
    }

    .column33 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        padding: 0px 10px;
    }

    .column50 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0px 10px;
    }

    .column75 {
        flex: 0 0 75%;
        max-width: 75%;
        padding: 0px 10px;
    }

    .column100 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0px 10px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .column25 {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0px 10px; 
    }

    .column33 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        padding: 0px 10px;
    }

    .column50 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0px 10px;
    }

    .column75 {
        flex: 0 0 75%;
        max-width: 75%;
        padding: 0px 10px;
    }

    .column100 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0px 10px;
    }
} 

.column h1, .column h2, .column h3, .column h4, .column h5 {
    margin-top: 0px;
}

.media-adjust-container {
  position: relative;
  z-index: 9;
  background-color: grey;
  border: 1px solid #d3d3d3;
  text-align: center;
  padding: 20px;
}

#media-adjust-image {
  cursor: move;
  z-index: 10;
  position: relative;
  scale: 1;
}

.media-adjust-column {
    background-color: white;
    position: relative;
}

.media-adjust-image.max-height {
    height: 100%;
}

.media-adjust-image.max-width {
    width: 100%;
}

div {
    box-sizing: border-box;
}

/* DATEPICKER */
.date-highlight a.ui-state-default {
    background-color: black;
    color: white;
}

.date-highlight a.ui-state-default:hover {
    background-color: var( --main-color );
}

/* LOADING OVERLAY */
#loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1001;
}

#loading-image,
.loading-image {
    width: 50%;
    height: 100%;
    max-width: 300px;
    background-image: url('../images/loading-monkey.gif');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: auto;}

/* SELECT2 */
.form-field .select2-container--default .select2-selection--single,
.form-field .select2-container--default .select2-selection--single .select2-selection__arrow,
.form-field .select2-container--default .select2-selection--single .select2-selection__clear {
    height: 37px;
}

.form-field .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 37px;
}

/* INPUT RANGE */
input[type=range] {
  height: 32px;
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
  border: 0px;
  padding: 0px;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 16px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: #B6B6B6;
  border-radius: 25px;
  border: 1px solid #8A8A8A;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #828282;
  border: 1px solid #8A8A8A;
  height: 24px;
  width: 35px;
  border-radius: 6px;
  background: #DADADA;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #B6B6B6;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 16px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: #f1f1f1;
  border-radius: 25px;
  border: 1px solid #8A8A8A;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #828282;
  border: 1px solid #8A8A8A;
  height: 24px;
  width: 35px;
  border-radius: 6px;
  background: #DADADA;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 16px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #B6B6B6;
  border: 1px solid #8A8A8A;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-fill-upper {
  background: #B6B6B6;
  border: 1px solid #8A8A8A;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 1px 1px 1px #828282;
  border: 1px solid #8A8A8A;
  height: 24px;
  width: 35px;
  border-radius: 6px;
  background: #DADADA;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #B6B6B6;
}
input[type=range]:focus::-ms-fill-upper {
  background: #B6B6B6;
}

/* Dashboard */
    .update-list {
        overflow-y: auto;
    }
    
    .update-list p {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .update-list ul {
        list-style: square;
        border-bottom: 1px solid;
        padding-bottom: 15px;
        margin-top: 5px;
    }

    
    .audience-table {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
    }
    
    .audience-row:nth-child(even) {
        
        background-color: whitesmoke;
        
    }
    
    .audience-table .audience-header,
    .audience-table .audience-row {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
    }
    
    .audience-table .audience-header {
        
        font-weight: bolder;
        
    }
    
    .audience-table .audience-cell {
        
        width: 70px;
        padding: 5px;
        line-height: 35px;
        text-align: center;
        
    }
    
    .audience-table .audience-cell .audience-value {
        
        width: 100%;
        height: 100%;
        padding: 5px;
        text-align: center;
        border: 0;
        background-color: transparent;
        
    }
    
    .audience-table .audience-cell:first-child {
        
        text-align: left;
        padding-left: 10px;
        font-weight: bold;
        
    }
    
    