:root {
    --background-image-1: url('https://manage.hurricane.cbsproducts.com/assets/images/back.jpg');
    --width-sidebar: 250px;
}
html {
    /* background-image: url('/assets/images/back.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; */
}


.modal_wrapper {
    position: absolute;
    z-index: 99999;
    background-color: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--default-trans);
    
}
.modal_wrapper.closed {
    visibility: hidden;
    opacity: 0;
}
.modal_wrapper.opened {
    visibility: visible;
    opacity: 1;
}

.modal_wrapper .modal_box {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 2px;
}
.modal_wrapper .modal_box_contents {
    padding: 1vw;
}

.modal_wrapper .modal_box.auth_code {
    padding: var(--standard-page-padding) 0;
}
.auth_code h2 {
    font-family: var(--font-display-1);
    color: var(--main-colour-4);
}

.auth_code .row {
    padding: 0.5vw var(--standard-page-padding);
    text-align: center;
}

.auth_code .row label {
    font-family: var(--font-display-1);
    font-size: 20px;
}
.auth_code p span {
    font-weight: bold;
    color: var(--main-colour-4);
}

.loader_bar {
    /* background-color: var(--hha-main-col-2); */
    
	border: 5px solid var(--main-colour-2-shade-1);
	border-top: 5px solid var(--main-colour-4);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: Spin 4s linear infinite;
}
.widget_list {
    /* display: flex;
    flex-wrap: wrap;
    flex-direction: column; */
    /* overflow: hidden;
    overflow-y: scroll; */
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: stretch;

}
.widget_list.opened {
    max-height: calc(100vh - 80px);
    /* max-height: 100vh; */
    height: 100%;
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
}
.widget_list.closed {
    max-height: 0vh;
}
.widget_listcols {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    align-content: stretch;
    align-items: stretch;

}

.widget_listcols .dashwidget .contents {
    height: 100%;
}

.dashwidget.panel {
    padding: 0;
    margin: 0.5vw;
    flex: 0;
    min-width: 200px;
    max-width: calc(50% - 1vw);
    background-color: transparent;


}
.widget_listcols .dashwidget.panel  {
    flex: 1;
}
.dashwidget h2{
    margin: -0.5vw;
    margin-bottom: 5px;
    padding: 0;
    padding: 0.25vw;
    cursor: pointer;
    border-radius: 3px;
    transition: var(--default-trans);
    font-family: var(--font-display-1);
    font-size: 20px;
    display: flex;
    background-color: rgba(var(--main-colour-2-rgb),0.1);
    align-items: center;
    align-content: center;

}
.dashwidget h2:hover {
    background-color: #FFF;
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
}
.dashwidget h2 .txt {
    width: 100%;
    display: block;
}
.dashwidget h2 span.icon {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 5px;
    width: 34px;
    height: 34px;
    display: block;
    margin-right: 0.5vw;
    border-radius: 50px;
}
.dashwidget .contents {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding: 1vw;
}

.dashwidget .upload_area_overview {
    max-width: 100%;
}
.dashwidget .upload_area_browse_row {
    max-width: 300px;
}
.dashwidget  .upload_area_upload_btn {
    margin-left: 0;
}
.dashmachines {
    flex: 1;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    max-height: 100vh;
    justify-content: stretch;
    overflow-y: auto;
}
.dashmachines .dashwidget.panel {
    flex: 1;
    width: 33%;
    min-width: calc(33% - 1vw);
}



.dashwidget ul.info {
    padding: 0;
    list-style-type: none;
    display: flex;
    padding-bottom: 0.5vw;
    margin: 0 -0.5vw;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.dashwidget ul.info li {
    padding: 0.25vw;
    margin: 0 5px ;
    background-color: rgba(var(--main-colour-2-rgb),0.05);
    border-radius: 4px;
    display: flex;
    align-content: center;
    align-items: center;
}
.dashwidget ul.info li:first-child {
    margin-left: 0;
}
.dashwidget ul.info li label{
    font-size: 10px;
    font-weight: bold;
    text-align: right;
    display: block;
}
.dashwidget ul.info li output{
    display: block;
    font-family: var(--font-display-1);
    font-size: 20px;
    text-align: right;
    padding: 0.25vw;
    background-color: #FFF;
    border-radius: 3px;
    margin-left: 0.5vw;
    min-width: 50px;
    text-align: center;
}
.dashwidget ul.info li output .unit {
    font-size: 12px;
}
ul.dash_run_list {
    margin: 0 -1vw;
    margin-bottom: -1vw;
    padding: 1vw;
    list-style-type: none;
    background-color: RGBA(0,0,0,0.1);
}

ul.dash_run_list  li {
    display: flex;
    justify-content: stretch;
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    margin-bottom: 0.25vw;
    cursor: pointer;
}
ul.dash_run_list  li output {
    width: 100px;
    padding: 0.25vw 0.5vw;
    
    margin: 1px;
    transition: var(--default-trans);
    text-align: right;
}
ul.dash_run_list  li:hover{
    background-color: rgba(var(--main-colour-1-rgb),0.5);
}
.dashwidget.message {
}
.dashwidget.message span.icon {
    float: left;
    margin-right: 10px;
}

.widget_infocols {
    display: flex;
}
.widget_infocols .widget_infobox {
    border-right: solid 1px rgba(0,0,0,0.1);
    flex: 1;
}
.widget_infocols .widget_infobox:last-child{
    border-right: none;
}
.widget_infocols ul.widget_infobox {
    margin: 0;
    padding: 0;
    list-style-type: none;
    padding: 0.5vw;
}
.widget_infocols ul.widget_infobox li {
    background-color: #FFF;
    padding: 0.25vw 0.5vw;
    margin-bottom: 5px;
}
.widget_controls {
    display: flex;
    padding: 0.5vw 0;
}
.widget_controls .btn {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 5px;
    display: flex;
    border: none;
    align-items: center;
    align-content: center;
    transition: var(--default-trans);
    max-height: 50px;
    overflow: hidden;
    cursor: pointer;
    margin-right: 0.5vw;
}
.widget_controls .btn span {
    display: block;
}.data_list{
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    align-content: stretch;
    flex: 1;
    height: 0;
}

.data_list_head {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    align-content: stretch;
    margin-bottom: 0.25vw;

}
.data_list_foot {
    margin-top: 0.25vw;

    
}
.data_list_contents{
    flex: 1;
    overflow-y: auto;
    background-color: rgba(255,255,255,0.8);
}

table.data_table{
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-width: 0;
    border-collapse: collapse;    
   
}
table.data_table thead{
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);

}
.table.data_table thead tr{
    
}

table.data_table thead tr th{
    background-color: rgba(255,255,255,0.9);
    white-space: nowrap;
    font-family: var(--font-display-1);
    font-size: 20px;
    padding: 0.5vw;
    font-weight: normal;
    margin-bottom: 2px;
    border: none;
}

table.data_table tbody {
    /* display: block;
    overflow: hidden;*/
    overflow-y: scroll; 
    background-color: rgba(0,0,0,0.25);
}

table.data_table tbody tr {
    transition: var(--default-trans);
    margin-bottom: 2px;
    border-top: solid 1px  rgba(255,255,255,0.9);
    border-bottom: solid 1px  rgba(255,255,255,0.9);
}

table.data_table tbody tr td {
    padding: 0.5vw;
    cursor: pointer;
    white-space: nowrap;
    color: #FFF;
    border: none;
}
table.data_table tbody tr td span.unit{
    
}
table.data_table tfoot.run_list_data_footer{
    display:table;
	width:100%;
}
table.data_table tbody tr:nth-child(even) {
    background-color: rgba(var(--main-colour-2-rgb),0.25);
    
}
table.data_table tbody tr td.spacer {
    width: 100%;
}
table.data_table tbody tr:hover {
    background-color: rgba(var(--main-colour-4-rgb),0.9);
    /* border-top: solid 1px  rgba(var(--main-colour-4-rgb),0.9);
    border-bottom: solid 1px  rgba(var(--main-colour-4-rgb),0.9); */
}


.data_list .page_list {
    flex: 1;
    text-align: right; 
    display: flex;
    justify-content: flex-end;

}
.data_list .page_list ul {
    border-radius: 3px;
    background-color: RGBA(255,255,255,0.5);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding: 0.25vw;
    display: flex;
    margin: 0;
    list-style: none;
    transition: var(--default-trans);
}
.data_list .page_list ul.hidden {
    visibility: hidden;
}
.data_list .page_list li {
    margin: 0 0.25vw;
    transition: var(--default-trans);
}
.data_list .page_list li.disabled {
    opacity: 0.1;
}
.data_list .page_list li span {
    display: block;
}
.data_list .page_list li span.icon {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 5px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: inline-block;
    text-align: center;
}
.data_list .page_list li span.icon  i {
    text-align: center;
}
.data_list .page_list li span.txt {
    display: none;
}

.data_list .page_list li.page_number {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 5px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    line-height: 24px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
}
.data_list_search {
    display: flex;
    border-radius: 3px;
    background-color: RGBA(255,255,255,0.5);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding: 0.25vw;
    margin:  0 0.5vw;
}
.data_list_search input, .data_list_search select, .data_list_filter_item input, .data_list_filter_item  select{
    display: block;
    background-color: RGBA(255,255,255,1);
    border: solid 1px #E5E5E5;
    padding: 2px;
    line-height: 20px;
    height: 34px;
}

.data_list_filters {
    display: flex;
}
.data_list_filter_item {
    display: flex;
    border-radius: 3px;
    background-color: RGBA(255,255,255,0.5);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding: 0.25vw;
    margin:  0 0.5vw;
}
.data_list_filter_item label{
    padding-left: 0.25vw;
    padding-right: 0.25vw;
    line-height: 34px;
    height: 34px;
    font-size: 10px;
    font-weight: bold;
    background-color: RGBA(255,255,255,0.9);
}
.data_list_filters .btn_icon {
    cursor: pointer;
    font-size: 10px;
}
.flex_cols {
    display: flex;
    justify-content: stretch;
    align-items: flex-start;
}

.flex_cols>.col {
    
}


.sliding_form .screens {
	width: 100%;
	overflow: hidden;
}
.sliding_form .screens .screen_wrap {
	display: flex;
	width: 200%;
	transition: all 0.5s;
}

.sliding_form .screens .screen {
	width: 100%;
	padding: var(--standard-page-padding) 0;
}
.sliding_form .screens .screen.nopad {
    padding: 0;
}

.sliding_form .screen .loader {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.sliding_form .message {
	padding: 0 1vw;
}
.sliding_form .message p {
	background-color: rgba(var(--main-colour-4-rgb),0.25);
    background-color: #FFF;
    border: solid 1px var(--main-colour-4);
    padding: 5px;
    color: var(--main-colour-4);
    line-height: 24px;
    font-weight: bold;
    border-radius: 3px;

    animation-name: OpenVert;
	animation-duration: 2s;
	display: block;
}

.sliding_form .message i.material-icons{
    display: block;
    float: left;
	margin-right: 5px;
	color: var(--main-colour-4);
 
}

.sliding_form .control {
	padding: 0 1vw;
}
.sliding_form .control:first-child {
	margin-left: 0;
}
.sliding_form .control div {
	transition: var(--default-trans);
}
.sliding_form .control .hidden {
	opacity: 0;
	visibility: hidden;

}

.modal_form .flex_cols .col{
    padding: 1vw;
}


.form_control {
    display: flex;
    padding: 0.5vw 0;
}
.form_control .btn {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 0.5vw;
    display: flex;
    border: none;
    justify-content: stretch;
    align-items: center;
    align-content: center;
    transition: var(--default-trans);
    max-height: 50px;
    overflow: hidden;
    cursor: pointer;
    margin-right: 0.5vw;
    width: 100px;
}
.form_control .btn span, .form_control .btn span i {
    display: block;
}
.form_control .btn span.icon {
    margin-right: 0.5vw;
}

.panel.outform {
    background-color: RGBA(255,255,255,0);
    padding: 0;
}


.outform .group{
    background-color: RGBA(255,255,255,0.9);
    padding: 1vw;
    margin: 0vw;
}
.flex_group {
    display: flex;
    justify-content: stretch;
    padding: 0vw;
    padding-bottom: 0;
    margin: 0 -0.5vw;
}
.flex_group .group {
    margin: 0.5vw;
    flex: 1;
    margin-bottom: 1vw;
}

.outform .group h2 {
    font-family: var(--font-display-1);
    font-size: 20px;
    margin: 0;
    padding: 0;
    margin-bottom: 0.5vw;
}
.outform .group.solo {
    margin-bottom: 1vw;
}
.outform .group.small {
    flex: 0;
}
.outform .group.table {
    padding: 0;
    background-color: transparent;
}
.outform .group.table h2 {
    text-align: center;
    background-color: RGBA(255,255,255,0.9);
    margin: 0;
    padding: 0.5vw;
}
.outform .group.table label {
    font-size: unset;
}
.outform .group.table table {
    padding: 0 1vw ;
    background-color: #FFF;
}
.outform:first-child .flex_group{
    margin-top: -0.5vw;

}
.outform label {
    display: block;
    font-size: 12px;
    
    color: #333;
    line-height: 14px;
    margin: 0;
    padding: 0;
    font-weight: bold;
    margin-bottom: 5px;
}
.outform output {
    display: block;
    background-color: RGBA(255,255,255,0.9);
    background-color: RGBA(0,0,0,0.1);
    padding: 5px;
    line-height: 20px;
    height: 30px;
}
.outform input, .outform select,  .outform textarea{
    display: block;
    background-color: RGBA(255,255,255,1);
    border: solid 1px #E5E5E5;
    padding: 5px;
    line-height: 20px;
    height: 30px;
    width: 100%;
}
.outform textarea{ 
    height: unset;
}
.outform input:focus {
    border-radius: 3px;
    border: solid 1px var(--main-colour-4);
}

.outform .flex_cols {
    display: flex;
    justify-content: stretch;
    margin: 0 -0.5vw;
}
.outform .flex_cols>div {
    flex: 1;
    padding: 0 0.5vw;
}
.outform .flex_row {
    display: flex;
    justify-content: stretch;
    margin: auto -0.25vw;
}
.outform .flex_row .col {
    flex: 1;
    padding: 0 0.25vw;
}
.outform .flex_row .col.small {
    flex: 0;
}
.outform .flex_row .col.fixed_150 {
    flex: 0;
    min-width: 150px;
}
.outform .row {
    margin-bottom: 10px;
}

.outform .shown {
    transition: var(--default-trans);
    max-width: 100%;
}
.outform .hidden {
    overflow: hidden;
    max-width: 0;
    transition: var(--default-trans);
    padding: 0;
}
.outform .flex_row .col.hidden  {
    padding: 0;
}
.outform .flex_row .col.tocontents {
    flex: 0;

}
.row.block {
    max-height: 350px;
    min-height: 30px;
    
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.row.block output {
    flex: 1;
    overflow: auto;
    height: auto;
    min-height: 30px;
    flex: 1;
}
.row.block textarea {
}

.outform.fill {
    height: 100%;
}

.outform.fill .group{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.outform.fill .row.block {
    flex: 1;
    max-height: unset;

}

.outform.fill .row.block textarea {
    flex: 1;
}
.page_title {
    flex: 1;
    width: 100%;
    padding-left: 1vw;
}
.page_title h1 {
    color: #FFF;
    font-size: 30px;
    font-weight: normal;
}

.branded_page.with_title header #logo_brand {
    background-position: calc(100% - 20px) center;
    padding-right: 250px;
    
}

.main_page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    transition: var(--default-trans);
    justify-content: stretch;
    align-items: stretch;
    align-content: stretch;
}
.main_page .page{
    flex: 1;
}

.main_page footer {
    height: 0px;
    margin-top: 5px;
}
.app_main {
    display: flex;
    justify-content: stretch;
    align-content: stretch;
    flex: 1;
    height: 100%;
    opacity: 1;
    transition: var(--default-trans);
}
.app_main.hidden {
    
    opacity: 0;
}
.app_main .side_bar {
    height: 100%;
    flex: 0;
    transition: var(--default-trans);
    margin-right: 5px;
    padding: 0;
    
    
}

.app_main .side_bar.left {
    background-color:rgba(255,255,255,0.75);
    background-color: rgba(var(--main-colour-2-rgb),0.5);
}

.app_main .side_bar.right {
    background-color:rgba(0,0,0,0.5);
    position: absolute;
    right: 0;
    bottom: 0;
    margin-right: 0;
    transition: var(--default-trans);
}
.app_main .side_bar.right.closed {    
    max-width: 0vw;
}

.app_main .side_bar.right.opened {
    max-width: 100vw;
   

}

.app_main .side_bar.right  .side_bar_contents.openfull {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}


.app_main .main_contents {
    flex: 1;
    transition: var(--default-trans);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: stretch;
    align-items: stretch;
    align-content: stretch;
    padding: 0.5vw;
    padding-bottom: 0;

}
.main_contents_views {
    flex: 1;
    /* display: flex; 
    justify-content: stretch;
    align-items: stretch;
    align-content: stretch;*/
}
.main_view {
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    height: calc(100vh - 1vw - 84px);
}
.main_view.closed {
    max-height: 0;
}
.main_view.opened {
    max-height: 100%;
    width: 100%;
}
.view {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    overflow: hidden;
    transition: var(--default-trans);
    height: 100%;
    width: 100%;
    
}
.view.opened {
    max-width: 100%;
}
.view.closed {
    max-width: 0%;
    width: 0;
}
.view_content {
    height: 100%;
    overflow-y: auto;
    padding-right: 0.5vw;
    

}
.edit_view .view_content{
    height: 0;
    flex: 1;
}
.list_view {
}
.detail_view {
}
.form_view {
}


.main_page.branded_page header{
    margin-bottom: 5px;

}

.view_title {
    display: flex;
    justify-content: stretch;
    margin-bottom: 0.5vw;
    
}

.view_title h2 {
    flex: 1;
    font-family: var(--font-display-1);
    font-size: 20px;
    margin: 0;
    line-height: 26px;
    background-color: RGBA(255,255,255,0.9);
    
    padding: 0.5vw;
    border-radius: 3px;
}
.view_title .btn.withtxt {
    margin-right: 0.5vw;
    margin-left: 0.5vw;
}
.view_title .btn:first-child {
    margin-left: 0;
}
.view_title .btn:last-child {
    margin-right: 0;
}
.view_foot {
    display: flex;
    justify-content: stretch;
    background-color: RGBA(0,0,0,0.5);
    padding: 0.5vw;;
    
}
.view_foot .btn.withtxt {
    margin-right: 0.5vw;
}
.panel {
    background-color: RGBA(255,255,255,0.5);
    margin: 0.5vw 0;
    padding: 1vw;;
    flex: 1;
}
.panel.tofit {
    height: 0;

}
.panel.tocontents {
    flex: 0;
}

ul.info_list_boxes {
    margin: 0 -0.25vw;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
ul.info_list_boxes li {
    padding: 0.75vw;
    margin: 0.25vw;
    background-color: rgba(255,255,255,0.9);
    min-width: 100px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

}
ul.info_list_boxes li label{
    display: block;
    font-size: 12px;
    font-weight: bold;
    text-align: right;
}
ul.info_list_boxes li output{
    display: block;
    font-family: var(--font-display-1);
    font-size: 30px;
    text-align: right;
}
ul.info_list_boxes li output .unit {
    font-size: 20px;
}
ul.info_list_boxes li.small {
    flex: 1;
    overflow: visible;
}
ul.info_list_boxes li.small output {
}
ul.info_list_boxes li.small output span {
    font-size: 12px;
    font-weight: normal;
}
ul.info_list_boxes li.small output span b{
    font-size: 20px;
}

.btn_icon {
    cursor: pointer;
    border-radius: 3px;
    background-color: RGBA(255,255,255,0.5);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding: 0.25vw;
    display: flex;
    margin: 0;
    list-style: none;
    align-items: center;
    align-content: center;
    transition: var(--default-trans);

}

.btn_icon:hover {
    background-color: #FFF;;
}


.btn.withtxt {
    cursor: pointer;
    border-radius: 3px;
    background-color: RGBA(255,255,255,0.75);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding: 0.25vw;
    display: flex;
    margin: 0;
    list-style: none;
    align-items: center;
    align-content: center;
    transition: var(--default-trans);
    white-space: nowrap;

}
.btn.withtxt:hover {
    background-color: #FFF;;
}

.btn.withtxt span.icon, .btn_icon  span.icon {
    background-color: RGBA(255,255,255,0.9);
    border-radius: 3px;
    padding: 5px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: inline-block;
    text-align: center;
}
.btn.withtxt span {
    display: block;
    padding: 0 0.5vw;
}

.clear_btn {
    margin:  0 0.25vw;
    border-radius: 3px;
    
    width: 34px;
    height: 34px;
    text-align: center;
    transition: var(--default-trans);
}
.clear_btn:hover {
    background-color: RGBA(255,255,255,0.9);
}
.clear_btn span.icon {
    display: block;
    line-height: 34px;
    width: 34px;
    text-align: center;
    cursor: pointer;
}
.clear_btn span.icon i{
    font-size: 20px;
    line-height: 34px;
     
}

.modal_page {
    min-width: 200px;
    min-height: 200px;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 3px;
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    
}
.modal_page_head {
}
.modal_page_head h2 {
    font-family: var(--font-display-1);
    font-size: 24px;
    padding: 0;
    margin: 0;
    margin-bottom: 0.5vw;
    line-height: 26px;
}
.modal_page_foot {
}
.modal_page_body {
    flex: 1;
}


output.scrolling {
    overflow: scroll;
    display: block;
    background-color: #FFF;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    padding: 1vw;
}


.page_list {
    flex: 1;
    text-align: right; 
    display: flex;
    justify-content: flex-end;

}
.page_list ul {
    border-radius: 3px;
    background-color: RGBA(255,255,255,0.5);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding: 0.5vw;
    display: flex;
    margin: 0;
    list-style: none;
    transition: var(--default-trans);
}
.page_list ul.hidden {
    visibility: hidden;
}
.page_list li {
    margin: 0 0.25vw;
    transition: var(--default-trans);
}
.page_list li.disabled {
    opacity: 0.1;
}
.page_list li span {
    display: block;
}
.page_list li span.icon {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 5px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: inline-block;
    text-align: center;
}
.page_list li span.icon  i {
    text-align: center;
}
.page_list li span.txt {
    display: none;
}
.page_list li.page_number {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 5px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    line-height: 24px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
}

iframe.hidden {
    display: none;
}

.machine_view {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--default-trans);
    justify-content: stretch;
    height: 100%;
    max-width: 100%;
}
.machine_view.opened {
    max-height: calc(100vh - 100px);
    max-height: 100vh;
    padding-bottom: 0.5vw;
}
.machine_view.closed {
    max-height: 0vh;
}

.machine_view_overview {
    display: flex;
    justify-content: stretch;

}
.machine_view_overview>div {
    flex: 1;
    margin: 1vw;
    padding: 1vw;
}
.machine_view_overview h2 {
    font-family: var(--font-display-1);
    font-size: 20px;
    flex: 0;
    margin-bottom: 0.5vw;
    line-height: 26px;
}

.machine_view_details {
    background-color: rgba(255,255,255,0.5);
    max-width: 100%;
    transition: var(--default-trans);
}
.machine_view_notes {
    background-color: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    max-width: 100%;
    transition: var(--default-trans);
}

.machine_view_runs {
    margin: 1vw;
    background-color: rgba(255,255,255,0.5);
    flex: 1;
}

.machine_view_overview_head {
    display: flex;
    justify-content: stretch;
    align-items: center;
    align-content: center;
    margin-bottom: 0.5vw;
}
.machine_view_overview_head h2 {
    flex: 1;
    margin: 0;
}
.machine_view_overview_head .btn {
    transition: var(--default-trans);
    margin: 0;
    line-height: 26px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    max-width: 0;
    text-align: center;
    overflow: hidden;
    
}
.machine_view_overview_head .btn span {
    transition:inherit;
}
.machine_view_overview_head .btn span.icon {
    display: block;
    padding: 5px;
    background-color: RGBA(255,255,255,0.2);
    border: solid 1px transparent;
}
.machine_view_overview_head .btn span.icon i {
    transition:inherit;
    color: RGBA(255,255,255,0.9);
    display: block;
}

.machine_view_overview_head .btn span.txt {
    display: block;
    overflow: hidden;
    position: absolute;
    max-height: 0;
}
.machine_view_overview_head .btn:hover {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
}
.machine_view_overview_head .btn:hover span.icon{
    color: RGBA(var(--main-colour-3),0.9);
}
.machine_view_overview_head .btn.pos span.icon{
    border: solid 1px RGBA(0,255,0,0.5);
}
.machine_view_overview_head .btn.pos span.icon i {
    color: RGBA(0,255,0,0.5);
}
.machine_view_overview_head .btn.neg span.icon{
    border: solid 1px RGBA(255,0,0,0.5);
}
.machine_view_overview_head .btn.neg span.icon i{
    color: RGBA(255,0,0,0.5);
}
.machine_view_overview_head .btn:hover span.txt {
    /* display: block;
    max-height: 100px;
    transition: var(--default-trans); */
}
.edit .machine_view_overview_head .btn {
    max-width: 200px;
    margin: 0 5px;
}

.machine_view_overview_head .btn.edit {
    max-width: 200px;
}
.edit .machine_view_overview_head .btn.edit {
    max-width: 0;
    margin: 0;

} 

.machine_view_notes_contents {
    border: solid 1px RGBA(255,255,255,0.5);
    height: 100%;
    padding: 0.75vw;
    transition: var(--default-trans);

}
.machine_view_notes_contents:hover {
    cursor: pointer;
    background-color: rgba(255,255,255,0.5);
}
.machine_view_notes_contents.empty {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    color: RGBA(255,255,255,0.5);
}
.machine_view_notes_contents.empty:hover {
    color: RGBA(255,255,255,1);
}
.machine_view_notes_contents[contenteditable="true"]{
    color: #000;
    background-color: #FFF;
    border: solid 1px var(--main-colour-4);
    padding: 5px;
    font-size: 15px;
    justify-content: unset;
    align-items: unset;
    align-content: unset;
    resize: both;
  overflow: auto;
}
.machine_view_notes_contents[contenteditable="true"]:hover  {
    color: #000;
    background-color: #FFF;
}

.machine_view_details.edit {

}

.machine_view_overview .machine_view_details h2[contenteditable="true"] {
    color: #000;
    background-color: #FFF;
    border: solid 1px var(--main-colour-4);
    padding: 5px;
    font-size: 15px;
}
.with_details {
    display: flex;
    justify-content: stretch;
}
.with_details .machine_view {
    max-width: 0;
    overflow: hidden;
}
.with_details .machine_view>div {
    overflow: visible;
    min-width: 80vw;
}
.with_details .machine_view .machine_view_notes {
}
.with_details .machine_view .machine_view_details {

}
.with_details .machine_view .machine_view_details h2 {
    white-space: nowrap;
}
.with_details .machine_view .machine_view_details ul {
}
.with_details .machine_view  .run_list {

}

.machine_card_list {
    overflow: hidden;
    transition: var(--default-trans);
    height: 100%;
    max-width: 100%;
    overflow-y: scroll;
}
.machine_card_list.opened {
    max-height: 100vh;
}
.machine_card_list.closed {
    max-height: 0vh;
}
.machine_card {
    background-color: RGBA(255,255,255,0.1);
    margin: 0.5vw;
    cursor: pointer;
}

.machine_cardcontents {
    padding: 1vw;;
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    transition: var(--default-trans);
}
.machine_cardcontents h2 {
    font-family: var(--font-display-1);
    font-size: 20px;
    flex: 0;
    margin: 0;
    margin-bottom: 0.5vw;
    line-height: 26px;
}
.machine_card:hover .machine_cardcontents{
    background-color: RGBA(255,255,255,1);
}.main_messages {
    transition: var(--default-trans);
    display: flex;
    flex-direction: column;

}
.main_messages.opened {
    padding-bottom: 0;
}
.main_messages.closed {
    
}
.main_messages .message {
    transition: var(--default-trans);
    display: flex;
    margin: 0;
    margin-bottom: 1vw;
    background-color: rgba(var(--main-colour-1-rgb),0.5);
    overflow: hidden;
}

.main_messages .message.alert {

}
.main_messages .message.opened {
    max-height: 50vh;
}
.main_messages .message.closed {
    max-height: 0;
}
.main_messages .message .contents {
    align-items: center;
    margin: 5px;
    flex: 1;
}
.main_messages .message .close_btn{
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding:  0.5vw;
    cursor: pointer;
    
}
.main_messages .message .close_btn:hover i {
    color: var(--error-colour-1);
}
.main_messages .message .close_btn i{
    
}

.main_messages .message p {
    text-align: left;
    margin: 0;
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 34px;

}
.main_messages .message:last-child {
    margin-bottom: 0;
}
.main_messages .message .icon{
    display: block;
    float: left;
    margin-right: 1vw;
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding:  5px;
    
}
.main_messages .message.alert .icon i{
    display: block;
    color: var(--error-colour-1);
}
.main_messages .message p b {
    color: var(--error-colour-1);
}
.main_messages .message.info .icon i{
    display: block;
    color: var(--error-colour-2);
}.app_loader {
    position: absolute;
    background-color: RGBA(0,0,0,0.5);
    z-index: 999;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--default-trans);
}
.app_loader.opened {
    visibility: visible;
    animation-name: FadeIn;
    animation-duration: 1s;
}
.app_loader.closed {
    visibility: hidden;
    
}
.app_loader .loader_modal {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    width: 200px;
    height: 200px;
}
.app_loader .loader_modal .loader_bar {
    margin: 0 auto;
    margin-top: 50px;
}
.app_loader .loader_modal .loader_text {
    margin-top: 10px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;

}


.app_model {
    position: absolute;
    background-color: RGBA(0,0,0,0.5);
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--default-trans);
    overflow: hidden;
}
.app_model.opened {
    visibility: visible;
    max-width: 100%;
    max-height: 100%;
    animation-name: FadeIn;
    animation-duration: 1s;
}
.app_model.closed {
    animation-name: FadeOut;
    animation-duration: 1s;
    max-height: 0;
}
.app_model_card {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
}
.app_model_header {

}
.app_model_header h2{
    font-family: var(--font-display-1);
    font-size: 20px;
    color: rgba(var(--main-colour-4-rgb),1);
    margin: 0;
    padding: 0.5vw;
}
.app_model_bodycontent {
    padding: 0.5vw;
}

.app_model_footer {
    display: flex;

}
.app_model_footer .btn.withtxt {
    margin: 0.5vw;
    width: 150px;
}
.app_model_pos {

}
.app_model_neg {
       
}

.btn.withtxt.app_model_pos span.icon{
    background-color: rgba(var(--error-colour-1-rgb),0.75);
}
.btn.withtxt.app_model_pos span.icon i {
    color: #FFF;
}

.btn.withtxt.app_model_neg span.icon{
    background-color: rgba(var(--error-colour-1-rgb),0.75);

}
.btn.withtxt.app_model_neg span.icon i {
    color: #FFF;
}
.run_detail {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: stretch;
    max-width: 100%;
    transition: var(--default-trans);
    overflow: hidden;
    max-height: calc(100vh - 100px);
    max-height: 100vh;

}

.run_detail.closed {
    max-width: 0;


}
.run_detail .panel {
    flex: 1;
}
.run_detail_overview, .run_detail_details {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    flex: 1;
    min-width: 50%;
}
.run_detail_overview .info_list_boxes {
    justify-content: stretch;
}
.run_detail_overview .info_list_boxes  li {
    flex: 1;
    min-width: unset;
}
.run_detail_data_table {
    overflow-y: auto;
}
.run_detail_overview_map  {
    height: 50%;
}
.run_detail_overview_map iframe{
    height: 100%;
    width: 100%;
    border: none;
}
.run_detail_data_graph {
    padding: 0;
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
}
.run_detail_data_graph canvas{
    max-width: 100%;
    max-height: 100%;
}
.run_detail_overview_downloads.panel,  .run_detail_overview_info.panel {
    flex: 0;
}

.run_detail_title {
    display: flex;
    align-items: center;
    align-content: center;
    margin-bottom: 0.5vw;
}
.run_detail_title .btn_withtxt {
    margin-right:0;
}

.run_detail_title h2{
    font-family: var(--font-display-1);
    font-size: 20px;
    margin: 0;
    line-height: 26px;
    flex: 1;
}

.run_detail_overview_downloads {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
}
.run_detail_overview_downloads h2 {
    font-family: var(--font-display-1);
    font-size: 20px;
    margin: 0.5vw;
    line-height: 26px;    
}

.outform .group .run_detail_overview_downloads h2 {
    margin: 0.5vw;
}
.run_detail_overview_downloads iframe {
    display: none;
}

.run_detail_overview_downloads a {
    display: block;
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    margin: 0.5vw;
    padding: 0.5vw;
    cursor: pointer;
    color: rgba(0,0,0);
    text-decoration: none;
    border-radius: 3px;
    padding: 5px;
    cursor: pointer;
    height: 34px;
    line-height: 24px;
    font-size: 12px;
    flex: 1;
    text-align: center;
    transition: var(--default-trans);
    max-width: 150px;
}
.run_detail_overview_downloads a:hover {
    background-color: rgba(var(--main-colour-1-rgb),0.75);
}
.run_detail_overview_downloads a:hover {

}
.run_detail_overview_downloads a span {
    display: block;
}


.run_list {
    padding: 0 1vw;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    align-content: stretch;
    flex: 1;
    height: 0;
}

.run_list_head {
    flex: 0;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    align-content: stretch;
    margin-bottom: 0.25vw;

}
.run_list_foot {
    flex: 0;
    
}
.run_list_contents{
    flex: 1;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.1);
}
.run_list_contents.no_runs {
    display: block;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
}
.run_list_contents.no_runs>div {
    padding: 1vw;
    background-color: rgba(var(--error-colour-1-rgb),0.5);
    color: #FFF;
    line-height: 30px;
}
.run_list_contents.no_runs>div span.icon {
    display: block;
    float: left;
    margin-right: 1vw;
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding:  5px;
}
.run_list_contents.no_runs>div span.icon i{
    display: block;
    color: var(--error-colour-1);
}
.run_list_contents.no_runs>div span.txt {
    padding:  5px;
}

.run_list_contents table.data_table tbody tr:hover {
    background-color: #FFF;
}
.run_list_contents table.data_table  tbody tr.active {
    background-color: rgba(var(--main-colour-3-rgb),0.9);
    color: #FFF;
    font-weight: bold;
}
.run_list_contents table.data_table tbody tr.hidden {
    display: none;
}
.run_list .filter_list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    /* background-color: RGBA(255,255,255,0.5); */
    

}
.run_list .filter_list li {
    margin:  0 0.25vw;
    display: flex;
    align-content: center;
    align-items: center;
    background-color: RGBA(255,255,255,0.5);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    cursor: pointer;
    padding: 0.5vw;
}
.run_list .filter_list li:first-child {
    margin-left: 0;
}
.run_list .filter_list label {
    font-size: 12px;
    margin-right: 0.25vw;
    padding: 0 0.5vw;
    
  

}
.run_list .filter_list select,  .run_list .filter_list input{
    display: block;
    border: solid 1px #FFF;
    border-radius: 3px;
    background-color: #FFF;
    line-height: 24px;
    height: 34px;
    padding: 0 5px;
}
.run_list .page_list {
    flex: 1;
    text-align: right; 
    display: flex;
    justify-content: flex-end;

}
.run_list .page_list ul {
    border-radius: 3px;
    background-color: RGBA(255,255,255,0.5);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding: 0.5vw;
    display: flex;
    margin: 0;
    list-style: none;
    transition: var(--default-trans);
}
.run_list .page_list ul.hidden {
    visibility: hidden;
}
.run_list .page_list li {
    margin: 0 0.25vw;
    transition: var(--default-trans);
}
.run_list .page_list li.disabled {
    opacity: 0.1;
}
.run_list .page_list li span {
    display: block;
}
.run_list .page_list li span.icon {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 5px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: inline-block;
    text-align: center;
}
.run_list .page_list li span.icon  i {
    text-align: center;
}
.run_list .page_list li span.txt {
    display: none;
}

.run_list .page_list li.page_number {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 5px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    line-height: 24px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
}
.search_view {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--default-trans);
    justify-content: stretch;
    height: 100%;
    max-width: 100%;
}
.search_view.opened {
    max-height: calc(100vh - 100px);
    max-height: 100vh;
    padding-top: 1vw;
    padding-bottom: 0.5vw;
}
.search_view.closed {
    max-height: 0vh;
}

.with_details .search_view{
    max-width: 0;
    overflow: hidden;
}


.side_bar_contents {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
    transition: var(--default-trans);
    padding: 0.5vw;
}
.app_main .side_bar.opened .side_bar_contents {
    width: var(--width-sidebar);
}
.app_main .side_bar.closed .side_bar_contents {
    width: calc(34px + 2vw);
}

.app_main .side_bar.closed .side_bar_contents{
    padding: 0;
}
/* .app_main .side_bar.minimised .side_bar_contents {
    width: calc(38px + 1vw);
} */

.side_bar_contents .item {
    margin: 0vw;
    padding: 0;
    transition: var(--default-trans);
    margin-bottom: 1vw;

}
.side_bar_contents .item.spacer {
    flex: 1;
}
.side_bar_contents .item.opened {
    flex: 1;
}
.side_bar_contents .item.closed {
    flex: 0;
}
.side_bar .side_expand { 
    transition: var(--default-trans);    
    padding: 0.5vw;
}
.side_bar .side_expand.closed {
    padding: 0 0.5vw; 
}
.side_bar.closed .side_expand {
    max-width: 0;
    max-height: 0;
    height: 100%;
}

.side_bar .togglebtn  {
    margin: 0 0.5vw;
    padding: 0.5vw;
    transition: var(--default-trans);
    cursor: pointer;
    background-color: rgba(var(--main-colour-1-rgb),0.5);

}

.side_bar_contents .item .btn {
    background-color: rgba(255,255,255,0.9);
    transition: var(--default-trans);
    cursor: pointer;
    display: flex;
    padding: 0.5vw;
    margin: 0;
    border-radius: 5px;

}
.side_bar_contents .item .btn:hover {
    background-color: #FFF;
    background-color: rgba(var(--main-colour-1-rgb),0.5);
}
.side_bar_contents .item .btn .txt {
    font-weight: bold;
    padding-left: 10px;
    
}
.side_bar_contents .item .btn span {
    display: block;
    height: 34px;
    line-height: 34px;

}



.side_bar.closed  .side_bar_contents .item .btn .txt {
    transition: var(--default-trans);
    max-width: 0;
    position: absolute;
    overflow: hidden;
    margin-left: 34px;
    background-color: RGBA(255,255,255,0.9);
    padding: 0;
    

}
.side_bar.closed  .side_bar_contents .item .btn:hover {
    background: transparent;
}
.side_bar.closed  .side_bar_contents .item .btn:hover .icon {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.side_bar.closed  .side_bar_contents .item .btn:hover  .txt {
    max-width: 50vw;
    padding-right: 20px;
    margin-left: 34px;
    padding-left: 10px;

    
    

}
.side_bar.closed  .togglebtn {
  
}

.side_bar.closed  .side_bar_contents .item {
    /* margin: 0.5vw 0; */
}

.side_bar .togglebtn span.icon, .side_bar_contents .item .btn span.icon {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 5px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: inline-block;
}

.side_bar .togglebtn span.txt {
    display: none;
}


.side_bar_contents .item .btn span.icon {

}
.side_bar.closed .side_expand {
    padding: 0;
    width: 0;
    overflow: hidden;
}
.upload_view {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--default-trans);
    justify-content: stretch;
    height: 100%;
    max-width: 100%;
}
.upload_view.opened {
    max-height: 100vh;
}
.upload_view.closed {
    max-height: 0vh;
}

.side_drop_area {
    margin: 10px 0;
    line-height: 40px;
    border: dashed 2px rgba(0,0,0,0.5);
    color: rgba(0,0,0,0.25);
    border-radius: 6px;
    text-align: center;
    transition: var(--default-trans);
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}
.side_upload_progress .opened .side_drop_area {
    line-height: 100px;
    opacity: 1;
}
.side_drop_area.file_over {
    border: dashed 2px rgba(0,0,0,1);
    color: rgba(0,0,0,1);
    background-color: #FFF;
}

.side_upload_progress {
    display: flex;
    margin-bottom: 5px;
    justify-content: stretch;
    align-items: center;
    align-content: center;
    transition: var(--default-trans);
    max-height: 100px;
}
.side_upload_progress.closed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
}
.side_upload_progress h2 {
    font-size: 8px;
    margin: 0;
    padding: 0;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;    
}
.side_upload_progress .progress {
    border: solid 1px var(--main-colour-4);
    width: 100%;
    height: 6px;
    padding: 1px;
    margin: 0 10px;
}
.side_upload_progress .progress>div {
    background-color: var(--main-colour-4);
    height: 4px;
    transition: var(--default-trans);

}

.upload_area {
    display: flex;
    padding: 1vw;
    align-content: stretch;
    align-items: stretch;
    justify-content: stretch;
}
.upload_area_overview {
    max-width: 300px;
}
.upload_area_droparea {
    margin: 10px 0;
    line-height: 40px;
    border: dashed 2px rgba(0,0,0,0.5);
    color: rgba(0,0,0,0.25);
    border-radius: 6px;
    text-align: center;
    transition: var(--default-trans);
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    height: 100px;

    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    
}
.upload_area_droparea.file_over {
    border: dashed 2px rgba(0,0,0,1);
    color: rgba(0,0,0,1);
    background-color: #FFF;
}
.upload_area_browse {
    font-size: 14px;
    font-weight: bold;

   
    transition: var(--default-trans);
    
    
}
.upload_area_browse label {
    display: block;
    margin-bottom:  0.5vw;

}
.upload_main_browse_current {
    transition: var(--default-trans);
    overflow: hidden;
    
}
.upload_main_browse_current.opened {
    max-height:  100vh;
}
.upload_main_browse_current.closed {
    max-height:  0;
}
.upload_main_browse_current ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 12px;
    
}
.upload_main_browse_current ul li {
    margin-bottom: 5px;
    padding: 0.5vw;
    background-color: RGBA(255,255,255,0.5);
}
.upload_area_browse_row {
    display: flex;
    justify-content: stretch;
    align-items: center;
    align-content: center;
}
.upload_area_browse_row label {
    flex: 1;
}
 .upload_area_browse input {
    margin-bottom:  0.5vw;
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    display: none;
}
.upload_area_browse button, .upload_area_browse .button {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 5px;
    display: flex;
    border: none;
    align-items: center;
    align-content: center;
    transition: var(--default-trans);
    max-height: 50px;
    overflow: hidden;
    cursor: pointer;
}
.upload_area_browse button:hover, .upload_area_browse .button:hover {
    background-color: #FFF;
}
.upload_area_upload_btn {
    margin:  5px auto;
}
.upload_area_browse button.disabled {
    max-height: 0;
}
.upload_area_browse button span {
    display: block;
}
.upload_area_browse button span.icon {
    padding: 5px;
    cursor: pointer;
    width: 34px;
    height: 34px;
    display: inline-block;
    text-align: center;
}
.upload_area_browse button span.txt {
    padding: 0 0.25vw;

}
.upload_card_list {
    
    transition: var(--default-trans);
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(255,255,255,0.2);
    margin: 0.5vw;
    flex: 1;
}
.upload_card_list.closed {
    max-height: 0;
} 
.upload_card_list.opened {
    max-height: 50vh;
} 
.upload_card {
    margin: 1vw;
    background-color: RGBA(255,255,255,0.5);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 2px;
    transition: var(--default-trans);
    max-width: 500px;
}
.upload_card.closed {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    margin: 0;
}
.upload_card_contents {
    padding: 1vw;
    width: 250px;
}
.upload_card_contents h2 {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: normal;
    display: flex;
    align-items: center;

}
.upload_card_contents .filename {
    font-size: 0.8em;
    margin: 0;
    font-weight: bold;
    margin-bottom: 5px;
}
.upload_card_contents h2 .txt {
    width: 100%;
}
.upload_card_contents h2 .icon {
    margin-left: 10px;
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 5px;
    width: 34px;
    height: 34px;
    display: inline-block;
}

.upload_card_contents .progress {
    border: solid 1px var(--main-colour-4);
    width: 100%;
    padding: 3px;
    margin: 0;
}
.upload_card_contents .progress>div {
    background-color: var(--main-colour-4);
    height: 10px;
    transition: var(--default-trans);

}
.cancel_btn {
    margin: 10px auto;
    text-align: center;
    width: 150px;
    padding: 5px;
    cursor: pointer;
    background-color: rgba(var(--main-colour-1-rgb),0.5);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
}
.progress.closed {
    height: 0;
    overflow: hidden;
    padding: 0;
    border-style: none;
}
.upload_card_contents .message {
    
    line-height: 24px;
    font-weight: bold;
    border-radius: 3px;
}
.upload_card_contents .message.opened {
    background-color: #FFF;
    padding: 5px;
}
.upload_card_contents .message.error {
    border: solid 1px var(--error-colour-1);
    color: var(--error-colour-1);
}

.upload_card_contents .message.opened, .side_upload_progress .message.opened {
    animation-name: FadeIn;
    animation-duration: 2s;
} 


.upload_card_contents .message .icon{
    display: block;
    float: left;
    margin-right: 5px;
 
}
.upload_card_contents .message.error i.material-icons, .side_upload_progress .message.error i.material-icons{
    color: var(--error-colour-1);
}
.side_upload_progress .message .icon  {
    display: block;
    margin-right: 5px;
}
.side_upload_progress .message .icon i.material-icons{
}



.with_details .upload_view{
    max-width: 0;
    overflow: hidden;
}

.dashwidget.profile {

}.user_menu {
    float: right;
    margin-right: 0vw;
    position: relative;
    border-right: solid 2px rgba(0,0,0,0.5);
}
.user_menu_button {
    display: flex;
    justify-content: start;
    align-items: stretch;
    margin: 15px;
    cursor: pointer;
}

.user_menu_button .user_menu_icon {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    border-radius: 3px;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    color: var(--main-colour-2);
    transition: var(--default-trans);
    height: 34px;
    margin: 3px;
}

.user_menu_button .user_menu_icon i{
    
}
.user_menu_button .user_menu_name {
    font-family: var(--font-display-1);
    color: #FFF;
    font-size: 20px;
    padding: 0 1vw ;
    height: 40px;
    line-height: 20px;
    vertical-align: middle;
    text-align: left;
}   

.user_menu_button .user_menu_name .company {
    display: block;
    text-align: left;
    font-size: 14px;
    font-family: var(--font-body-1);

}

.user_menu .user_menu_drop {
    z-index: 9999;
    max-height: 0;
    overflow: hidden;
    transition: var(--default-trans);
    position: absolute;
    width: 100%;
    
}
.user_menu:hover .user_menu_drop {
    max-height: 100vh;

}
.user_menu:hover {
    background-color: RGBA(0,0,0,0.1);
    transition: var(--default-trans);
}
.user_menu:hover .user_menu_button {

}
.user_menu_drop_contents {
    background-color: RGBA(255,255,255,0.9);
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
    padding: 5px 0;
}
.user_menu .user_menu_drop ul {
   margin: 0;
   padding: 0;
   list-style-type: none;
}

.user_menu .user_menu_drop ul li a{
    text-decoration: none;
    color: var(--main-colour-2);
    font-weight: bold;
    display: flex;
    align-content: center;
    
    padding: 5px;
    line-height: 30px;
    transition: var(--default-trans);
}
.user_menu .user_menu_drop ul li .icon {
    display: inline-block;
    height: 30px;
    width: 30px;
    margin-right: 10px;
    background-color: RGBA(0,0,0,0.1);
    border-radius: 2px;
    padding: 3px;
}
.user_menu .user_menu_drop ul li a:hover {
    background-color: RGBA(0,0,0,0.1);
}

