﻿.cloud {
    display: none;
    opacity: 0.7;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #777777;
    z-index: 200;
}

.outputTable a {
    color: #0274ba;
}

.outputTable a:hover, .outputTable a:active {
    color: #001e46;
}

.outputTable .text-right {
    text-align: right;
}

.outputTable .text-center {
    text-align: center;
}

.outputTable caption {
    font-size: 1.6em;
    font-weight: bold;
    color: black;
}

.outputTable {
	
    border: 0;
    border-collapse: separate;
    border-spacing: 0px;
    table-layout: fixed;
    width: 0px;
}

.outputTable td, .outputTable th {
    text-align: left;
    overflow: hidden;
    padding: 5px 10px;
    position: relative;
    white-space: normal;
    font-weight: normal;
}

.outputTable th {
    white-space: nowrap;
    text-overflow: ellipsis;
}

.outputTable span.longtext {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.outputTable tr:nth-child(2n+1) td {
    background-color: #f5f5f5;
}

.outputTable tr:last-child td {
    border-bottom: 1px solid #0274ba;
}

.outputTable tr.summaryRow td {
    background-color: #fdf2d9;
}

.outputTable tr:first-child th {
    padding: 7px 0px 7px 10px;
    background-color: #0274ba;
    color: white;
}

.outputTable .ui-resizable-handle {
    display: inline-block;
    width: 3px;
    height: 80%;
    background-color: #b7b7b7;
    z-index: 1 !important;
    top: 3px;
    border-radius: 2px;
}

.outputTable .ui-resizable-e {
    right: 0px;
}

.outputTable .order {
    display: inline-block;
    width: 20px;
}

.asc {
    border-bottom: 7px solid white;
    border-top: none;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    content: "";
    position: absolute;
    left: 5px;
    bottom: 16px;
}

.desc {
    border-top: 7px solid white;
    border-bottom: none;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    content: "";
    position: absolute;
    bottom: 6px;
    left: 5px;
}

/*.severity {
    width: 16px;
    height: 16px;
    border: 1px solid gray;
    border-radius: 8px;
    background-color: gray;
    color: white;
    position: absolute;
    left: 58px;
    bottom: 2px;
    text-align: center;
    font-size: 0.8em;
    cursor: pointer;
}*/

.mainContainer .pager {
    margin-top: 5px;
    position: relative;
    font-size: 1.2em;
    width: fit-content;
}

.mainContainer .pager span.button{
	padding:0 2px;
}

.settingsRow {
    width: fit-content;
}

.mainContainer .recordsPerPage {
    font-size: 1.2em;
}

.mainContainer .recordsPerPage span {
    position: relative;
    bottom: 1px;
    font-size: .8em;
}


.mainContainer .button {
    cursor: pointer;
}

.submitButton {
    padding: 5px 18px;
    color: #fff;
    text-decoration: none;
    display: block;
    cursor: pointer;
    border-radius: 2em;
    white-space: nowrap;
    text-align: center;
    line-height: 24px;
    background: #2ecc71;
    border: 0;
    width: fit-content;
}


.submitButton:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.portalTableloader {
    display: none;
    width: 20px;
    height: 20px;

    position: absolute;
    left: 0;

    border: 5px solid #81b9dc;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pageSelected {
    font-weight: bold;
    color: #efc511;
    font-size: 1.4em;
    position: relative;
    bottom: -2px;
}

.ordered-asc {
    border-bottom: 7px solid #efc511;
}

.ordered-desc {
    border-top: 7px solid #efc511;
}

.formSettings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    height: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    background-color: white;
    z-index: 500;
}

.formSettingsContainer{
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    min-height: 250px;
}

.formSettings .settingsHeader {
    width: 100%;
    height: 50px;
    box-sizing:border-box;
    background-color: #0274ba;
    border-radius:5px 5px 0 0;
    padding: 5px 0;
    text-align: center;
    font-size: 2em;
	color:white;
}

.formSettings div.orderContent {
    box-sizing:border-box;
    overflow-y: auto;
    flex: 1;
    padding: 10px 20px;
}

.formSettingsButtons {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    cursor: pointer;
    text-align:center;
    padding: 10px 0;
}

.formSettings .orderContent > span {
    float: right;
}

.order {
    max-height: 500px;
    padding: 0;
    margin: 0;
}

.formSettings .orderContent ul {
    padding: 0;
}

.formSettings li {
    list-style: none;
    display: block;
    width: 500px;
    border: 2px outset silver;
    margin-bottom: 3px;
    background-color: #ededed;
    color: black;
    line-height: 20px;
    padding: 3px 10px;
    overflow: hidden;
    cursor:default;
}

.formSettings li > span {
    float: right;
}

.parameters input[type="text"] {
    padding: 2px 10px;
}

.parameters input[type="submit"] {
    margin-left:10px;
    cursor:pointer;
}

.parameters{
    line-height: 36px;
}

.parameters .parameter {
    margin-right:5px;
}

.formSettings .formSettingsButtons input[type="button"] {
    margin-bottom: 20px;
    width: 110px;
    background-color: white;
    cursor: pointer;
}

.formSettings .formSettingsButtons input[type="button"]:first-child {
    margin-left: auto;
    margin-right: 20px;
}

.formSettings .formSettingsButtons input[type="button"]:last-child {
    margin-right: auto;
    margin-left: 20px;
}

#extendedParameters {
    line-height: 32px;
    padding-bottom: 5px;
}

#extendedParameters > .parameter:not(:first-child){
    margin-left:5px;
}

.parameter:not(.newLine) {
    display:inline-block;
}

.parameter {
    white-space:nowrap;
    margin-top:5px;
}

td.disabled a,td.disabled a:hover, td.disabled a:visited, td.disabled a:focus, td.disabled a:active  {
    color:gray !important;
    text-decoration: none !important;
    cursor: default !important;
    pointer-events: none;

}

.portalTableSettings {
    height: 20px;
    width: 20px;
    line-height: 20px;
    background: url('../skin/default_new/icons/settings.svg?v=1.0') no-repeat;
    background-position: center;
    cursor: pointer;
    position: absolute;
    right: 0;
}