﻿/*** FORMS ***/

.form-group {
    display: flex;
    flex-direction: column; /* Placera label och input vertikalt */
    margin-bottom: 1rem; /* Utrymme mellan varje grupp */
}

.form-group label {
    margin-bottom: 0.2rem; /* Skapa lite utrymme under label */
    margin-left: 0.15rem;
    font-weight: bold; /* Valfritt: Gör texten fet för bättre läsbarhet */
}


/************/

/*** BUTTONS **/

    .input-button {
        width: auto;
        min-width: 120px;
    }

    .input-button[readonly] {
        background-color: #ffffff55;
    }

    .input-button[input-color=red] {
        background-color: #e20000cc;
    }
    .input-button[input-color=red]:hover {
        background-color: #e60000;
    }

    .input-button[input-color=lightblue] {
        background-color: #8899a3;
    }
    .input-button[input-color=lightblue]:hover {
        background-color: #7b8c97;
    }

    .input-button[hover-color=red]:hover {
        background-color: #ad2525;
    }


    .multiselectitem label {
        float: right;
        margin-right: 10px;
        margin-top: 2px;
    }

    /* The switch - the box around the slider */
    label.switch
    {
        bottom: 0px;
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 26px;
        height: 12px;
    }

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    /* The slider */
    .switch .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 10px;
        margin: 0px;
    }

    .switch .slider:before {
        position: absolute;
        content: "";
        height: 14px;
        width: 14px;
        left: -2px;
        bottom: -1px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

    .switch input:checked + .slider {
        background-color: #819faf;
    }

    .switch input:focus + .slider {
        box-shadow: 0 0 1px #2196F3;
    }

    .switch  input:checked + .slider:before {
        -webkit-transform: translateX(16px);
        -ms-transform: translateX(16px);
        transform: translateX(16px);
        background-color: #b0d2e5;
        box-shadow: inset 0 0 0 1px #819faf55;
    }

    /* Rounded sliders */
    .switch .slider.round {
        border-radius: 34px;
    }

    .switch .slider.round:before {
        border-radius: 50%;
        background-color: #eee;
        box-shadow: inset 0 0 0 1px #819faf55;
    }

    button.imagebutton {
       /* background-image: url('/images/svg/close_fill0_wght400_grad0_opsz48.svg');
        background-repeat: no-repeat;
        background-size: contain;*/
        padding: 0px;
        width: 20px;
        background-color: transparent;
        border: 0px solid transparent;
    }

    button.imagebutton:hover {
        cursor: pointer;
        opacity: 0.6;
        transform: scale(1.2);             
    }

    button.imagebutton img {
        width: 20px;
    }
/*** END BUTTONS ***/

/*** TABS ***/

div.ui-tabs[tabs-theme="lightblue"] .ui-tabs-panel {
    padding: 0px;
    border: 0px solid transparent;
}

div.ui-tabs[tabs-theme="lightblue"] ul[role="tablist"] {
    border-bottom: 0px;
    background-color: transparent;
    font-size: 14px;
}

div.ui-tabs[tabs-theme="lightblue"] li[role="tab"] {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-right: 3px;
    background: #8899a3;
}

div.ui-tabs[tabs-theme="lightblue"] li[aria-expanded="true"] {
    font-weight: bold;
}

div.ui-tabs[tabs-theme="lightblue"] li[aria-expanded="true"] a {
    color: #ffffffdd;
}

div.ui-tabs[tabs-theme="lightblue"] li[aria-expanded="false"] {
    background: #00000022;
}

div.ui-tabs[tabs-theme="lightblue"] li[aria-expanded="false"] a {
    color: #666;
}

/*** END TABS ***/
/*** ADMIN PAGE ***/
.adminbuttons-grid-container {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
}

    .adminbuttons-grid-container .column {
        padding: 10px;
        margin-right: 20px;
    }

    .adminbuttons-grid-container h2 {
        text-align: center;
        font-size: 15px;
        color: #444;
    }

    .adminbuttons-grid-container ul {
        list-style-type: none;
        padding: 5px;
        margin-top: 2px;
    }

    .adminbuttons-grid-container button {
        display: block;
    }

/*** END ADMIN PAGE ***/


/*** APARTMENT IMAGE ***/
    #apartmentcontainer button.imagebutton {
        position: absolute;
        right: 5px;
        top: 5px;
        z-index: 10;
    }

    #apartment_redlineimage {
        /*image-rendering: -webkit-optimize-contrast;*/
    }
/*** END APARTMENT IMAGE ***/

::-ms-reveal {
    display: none;
}

::placeholder
{
    color: #bbb;
}

#console {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 20px;
    background-color: black;
    color: white;
    border: 1px solid #888;
    text-align: center;
    width: auto;
    min-width: 300px; /* Adjust based on your preference */
    max-height: 200px; /* Adjust based on your preference */
    overflow-y: auto; /* Allows scrolling */
    display: none;
}

.console-message {
    opacity: 1;
    transition: opacity 0.5s;
}

.modal {
    display: none; /* Hidden by default */
    position: absolute;
    z-index: 1000;
    left: 0;
    top: 0;   
    overflow: auto;
    background-color: rgb(0, 0, 0, 0.5);    
    right: 0px;
    bottom: 0px;
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    /* margin: 10px auto; */
    /* padding: 20px; */
    border: 1px solid #888;
    /* width: 90%; */
    user-select: text;
    border-radius: 5px;
    position: absolute;
    inset: 10px;
    overflow-y: auto;
    padding: 0px;
    margin: 0px;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: sticky;
    top: 0px;
    margin-right: 8px;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }



/*:not(:empty)*/
/*#txtNewUserPassword:not(:placeholder-shown) {
    background-color: red !important;
}*/

.pwrevealcontainer {
    position: relative;
}

.pwrevealicon:has(+ input:not(:placeholder-shown)) {
    cursor: pointer;
    height: 100%;
    /* background-color: red; */
    background-image: url('/images/svg/visibility_fill0_wght400_grad0_opsz48.svg');
    position: absolute;
    top: 0px;
    right: 0px;
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    background-position-y: center;
    opacity: 0.9;
    margin-right: 7px;
}

.pwrevealicon.revealoff {
    background-image: url('/images/svg/visibility_off_fill0_wght400_grad0_opsz48.svg') !important;
}

.hidden
{
    display: none !important;
}

input, select {

}

    input:disabled, select:disabled {
        color: #555 !important;
        background-color: #bbb !important;
        transition-delay: 1000ms 1000ms !important;
        transition-property: color, background-color !important;
        transition-duration: 300ms, 500ms !important;
        transition-timing-function: linear !important;
    }


::-webkit-scrollbar {
    width: 11px;
    height: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    /*background: #f1f1f1;*/
    /*background-color: transparent;*/
    background-color: #00000011;
    /*border-radius: 6px;*/
    /*-webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);*/
    /*margin-top: 3px;
    margin-bottom: 3px;*/
}

/* Handle */
::-webkit-scrollbar-thumb {
    /*background: #92acba;  */
    background-color: #88888833;
    border-radius: 1px;
    /*-webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);*/
    margin-right: 2px;
    /*border-right: 1px solid #ddd;    */
}

::-webkit-scrollbar-corner {
    background-color: #00000011;
}

::-webkit-scrollbar-track-piece
{    
}

/* Basic css classes */
.basic-hover-cursor:hover
{
    cursor: pointer;
}


/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #abbfca;
}


.ui-front {
    z-index: 2001;
}

.ui-state-active {
    background-color: #555;    
}

.ui-selectmenu-open .ui-menu {
    background-color: #353535;
    color: white;
    font-size: 11px;    
}

.ui-menu-item-wrapper
{
    padding: 2px;
}

.ui-dialog-buttonset button, .ui-iggrid-modaldialog-caption-buttoncontainer button {
    background-color: #3e7593;
}

.ui-iggrid-groupedcolumnlabel
{
    color: black !important;
}

input:focus {
    outline: 1px solid #00000055;
}

tr:focus {
    outline: none;
}

.orderlabel, .dialogNormal label {
    font-size: 11px !important;
    padding-top: 10px !important; 
}

#griddiv .ui-iggrid-buttoncontainer {
    border-radius: 8px;
    background-color: #3e7593;
}

#griddiv .ui-igedit-dropdown-button {
    /*background-color: #6d9cb6 !important;*/
    background: rgb(223,223,223);
    background: linear-gradient(0deg, rgba(223,223,223,1) 0%, rgba(237,237,237,1) 35%);
    border-top: 1px solid black;
    border-bottom: 1px solid black;    
    height: 99%;
}


#viewercontainer ::-webkit-scrollbar {
    width: 8px;
}


/* Track */
#viewercontainer ::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

/* Handle */
#viewercontainer ::-webkit-scrollbar-thumb {
  background: #798e9c;  
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

/* Handle on hover */
#viewercontainer ::-webkit-scrollbar-thumb:hover {    
  background: #abbfca;  
}

.radiobuttoncontainer h2
{
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}



@supports(-webkit-appearance: none) or (-moz-appearance: none) {
  input[type='checkbox'],
  input[type='radio'] {
    /*-webkit-appearance: none;
    -moz-appearance: none;*/
  }
}

/*@supports(-webkit-appearance: none) or (-moz-appearance: none) {
    label {
        padding-left: 5px;
    }

    input[type='radio']:hover {
        cursor: pointer;
    }

    input[type='radio']:hover:after {
        background-color: #f8eacf;
    }

    input[type='radio']:after {
        //transition: all 0.2s linear;
        width: 15px;
        height: 15px;
        border-radius: 15px;
        top: -2px;
        left: -1px;
        position: relative;
        background-color: #d1d3d1;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }

    input[type='radio']:checked:after {
        width: 15px;
        height: 15px;
        border-radius: 15px;
        top: -2px;
        left: -1px;
        position: relative;
        background-color: #ffa500;
        content: '';
        display: inline-block;
        visibility: visible;
        border: 2px solid white;
    }
}*/



.cmn-menuswitch-container
{    
    margin-top: 10px;
    width: 20px;
    height: 20px;
    padding: 0px;
    position: relative;
}


.cmn-menuswitch + label
{
    position: absolute !important;
    height: 100%;
    width: 100%;    
    cursor: pointer;
}

.cmn-menuswitch-line {
    position: absolute;
    top: calc(50% - 1px);
    height: 3px;
    width: 100%;
    background-color: #444;
    transition: all 0.3s ease-out;    
}

.cmn-menuswitch-line.cmn-menuswitch-top {
    transform: translateY(-3px) scale(.88235);
}

.cmn-menuswitch-line.cmn-menuswitch-bottom {
    transform: translateY(3px) scale(.88235);
}

@keyframes cmn-menuswitch-rotateleft {
    to {
        transform: rotateZ(-45deg);
    }
}

.cmn-menuswitch:checked + label .cmn-menuswitch-line.cmn-menuswitch-top {
    /*animation-duration: 3s;
    animation-name: cmn-menuswitch-rotateleft;
    animation-iteration-count: 1;*/
    transform: rotateZ(-45deg);    
}

.cmn-menuswitch:checked + label .cmn-menuswitch-line.cmn-menuswitch-bottom {
    transform: rotateZ(45deg);    
}

.cmn-menuswitch {
    display: none; /*Hide checkbox part*/
}

.cmn-menuswitch-menucontainer {
    width: auto;
    height: auto;
    background-color: #00000011;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 22px;
    border-radius: 6px;
    z-index: 100;
    margin: 0px;
    padding: 7px;
    opacity: 0;    
    transition: all 0.3s ease-out;
}

.cmn-menuswitch-menucontainer[menustate="open"] {
    opacity: 1;    
}

    .cmn-menuswitch-menucontainer ul {
        margin: 5px;
        text-align: left;
        list-style: none inside;
        padding: 0px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .cmn-menuswitch-menucontainer li {
        list-style-type: none;
        height: 20px;
        margin-bottom: 10px;
        border-bottom: 1px solid #77777744;
        color: #444;
        font-weight: 500;
        display: inline-block;
        white-space: nowrap;
    }

    .cmn-menuswitch-menucontainer li:hover {
        color: #222;
        border-bottom: 1px solid #777777;
        cursor: pointer;
    }


    .cmn-toggle {
        position: absolute;
        margin-left: -9999px;
        visibility: hidden;
    }
  .cmn-toggle + label {
    margin-top: 5px;
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;    
  }
  input.cmn-toggle-round + label {
    padding: 2px;
    width: 24px;
    height: 12px;    
    /*background-color: #bbb;*/
    border-radius: 10px;
  }
  input.cmn-toggle-round + label:before,
  input.cmn-toggle-round + label:after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    content: "";
  }
  input.cmn-toggle-round + label:before {
    right: 1px;
    background-color: #ebebeb;
    border: 1px solid #66666622;
    border-radius: 60px;
    transition: background 0.3s;
  }
  input.cmn-toggle-round + label:after {
    width: 14px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: margin 0.3s;
  }
  /* Checked background */
  input.cmn-toggle-round:checked + label:before {
    background-color: #85a3b4;
  }
  /* Checked marker */
  input.cmn-toggle-round:checked + label:after {
    margin-left: 13px;
    background-color: #b0d2e5;    
    box-sizing: border-box;
    border: 1px solid #80a2b5;                  
  }
  .cmn-toggle-label-top {
      display: grid;
      padding-left: 1px;
  }
  .cmn-toggle-label-left {                        
      margin-right: 16px;
      padding-top: 2px;      
  }
  .cmn-toggle-label-right {                  
      position: absolute;
      padding-left: 36px;
      padding-top: 2px;      
  }
  .cmn-toggle-container
  {      
      clear: both;      
  }

  .cmn-toggle-container > span {
      font-size: 12px !important;            
      line-height: 18px !important;   
      text-align: left;         
  }

  .cmn-toggle-labelleft
  {
      display: flex;
  }
  .cmn-toggle-labelleft > span
  {
      margin-right: 6px;
      padding-top: 2px;  
  }
  .cmn-toggle-labelright
  {
      display: flex;
  }
  .cmn-toggle-labelright > span
  {
      order: 2;      
      margin-left: 6px;
      padding-top: 2px;  
  }
  .cmn-toggle-labeltop
  {
      display: grid;
  }
  .cmn-toggle-labeltop > span
  {      
      margin-left: 1px;      
  }
  .cmn-toggle-labelbottom
  {
      display: grid;
  }
  .cmn-toggle-labelbottom > span
  {      
      margin-left: 1px;   
      order: 2;   
  }



.ibtreeSettings
{
    margin: 20px;
    color: #ddd;
    font-size: 12px;
}

.ibtreeSettings td
{
    padding-right: 10px;
}

.ibtreeContainerTable
{

}

.w3-bar{width:100%;overflow:hidden}.w3-center .w3-bar{display:inline-block;width:auto}
.w3-bar .w3-bar-item{padding:8px 16px;float:left;width:auto;border:none;display:block;outline:0}
.w3-button:hover{color:#000!important;background-color:#ccc!important}
.w3-button-selected {
    background-color: #3e7593;
    color: white;
}

.bimsurfer-grid
{
    position: absolute;
    top: 0px; 
    left: 250px;
    right: 300px;
    z-index: 3;
    color: white;
    padding: 10px;
    background-color: #555555;
    font-size: 12px;
    display: none;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.bimsurfer-info
{
    position: absolute;
    top: 0px; 
    left: 250px;
    right: 300px;
    z-index: 2;
    color: white;
    padding: 10px;
    background-color: #555555;
    font-size: 12px;
    display: none;
}

.viewerhelp
{
    margin-left: -23px;
}

.viewerhelp li
{
    margin-top: 5px;
}

#tree3d
{
    font-size: 10px;
    color: white;
    /*position: absolute;*/
    top: 65px;
    right: 0px;
    margin-left: -23px;
    bottom: -10px;    
    padding-left: 5px;
}

#tree3d.ui-igtree a
{
    color: white !important;
}

.bimsurfer-static-ibtree
{
    position: absolute;
    top: 0;
    left: 0px;
    width: 250px;
    bottom: 0px;
    background-color: #555;
    color: black;
    /*overflow-y: scroll;
    overflow-x: scroll;*/
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-user-select: none;
    z-index: 2;
}

.bimsurfer-static-ibtree h1
{
    font-size: 11px !important;
}

.bimsurfer-static-ibtree .ui-igtree
{
    /*overflow: hidden !important;*/
}

.bimsurfer-metadata a, .bimsurfer-metadata a:visited, .bimsurfer-metadata a:hover
{
    color: white;
}

.printericon
{
    opacity: 0.7;
}

.printericon:hover
{
    cursor: pointer; 
    opacity: 0.9;
}

#logincontainer
{    
    width: auto;
    height: auto;    
    z-index: 40000;    
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); /* for IE 9 */
    -webkit-transform: translate(-50%, -50%); /* for Safari */    
}

.browserwarning
{    
    display: none;
    padding-top: 20px;
    font-size: 14px;
}

.validbrowsercontainer
{        
    margin-top: 20px;
    display: flex;
    justify-content: center; 
}

.validbrowser
{
    float: left;    
    width: 100px;    
    margin-left: 5px;
    margin-right: 5px;
    text-align: center;
    font-size: 14px;
}

.validbrowser img
{
    width: 40px;    
    height: 40px;
}

.igdt_IBDocNode
{
    transition: background-color 0.3s ease-out;
}

#iframetestold
{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1000000;
    overflow: hidden;
    display: block;
}

#iframetest
{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1000000;
    overflow: hidden;
    display: none;
}

#theiframe
{
    width: 100%;
    height: 100%;
}

.ib-tooltip {
    background-color: #ffffff !important;
    /*backdrop-filter: blur(9px);*/
    opacity: 1 !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    /*box-shadow: none !important;*/
    box-shadow: 0px 0px 10px 1px #33333333 !important;
    border: 1px solid #ccc !important;
    padding: 10px !important;
}

.ib-tooltip tr td:first-child {
    font-weight: bold;
    padding-right: 3px;
}

#logindiv a
{
    margin-top: 13px;
    font-size: 12px;
}

.EditMetadataContainer {
    position: absolute;
    top: 10px;
    bottom: 60px;
    left: 0px;
    right: 0px;
    padding: 10px;
    column-count: 3;
    overflow-y: hidden;
}

.DeleteDocuments_Message, .DialogMessage
{            
    padding: 30px;         
}

.gridStatusColumn img
{
    width: 20px;
}
 
.PropertyControl
{
    
}

.PropertyControl span
{
    font-size: 10px;    
    padding-left: 7px;
}

.PropertyControl input
{     
    width: 90% !important;
}

.AdminBasketButton
{
    float: right;
    display: inline-block;
}

.activelogins
{
    margin: 10px;
}

.activelogins .customergroup
{    
    font-size: 11px;
    font-weight: bold;
    padding-bottom: 5px;
    padding-top: 10px;
}

.activelogins .activelogin
{   
    font-size: 11px; 
    padding-left: 10px;    
}

.logdiv {
    margin: 10px;
    font-size: 12px;
    /*max-height: 500px !important;*/
    overflow-y: scroll;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 10px;
    margin-bottom: 5px;
    user-select: text;
}

.selectalltext
{
    user-select: text;
}

.menutable
{
    width: 100%;
    padding: 0px;
    margin: 0px;
    border-spacing: 0px;
    border-collapse: collapse;
    background-color: #3e7593;
    border-radius: 5px;
}

.menutable td
{        
    padding: 0px;
    margin: 0px;
    border-spacing: 0px;
    border-collapse: collapse;
}

html {
    /*background-color: #e2e2e2;*/
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

body {
    background-color: #e2e2e2;
    color: #333;
    font-size: .85em;
    font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
    overflow: auto;
}

a {
    color: #333;
    outline: none;
    padding-left: 3px;
    padding-right: 3px;
    text-decoration: underline;
}

    a:link, a:visited,
    a:active, a:hover {
        /*color: #333;*/
    }

    /*a:hover {
        background-color: #c7d1d6;
    }*/

.copyright a, .footer_left a {
    text-decoration: none;
}

.copyright a:hover, .footer_left a:hover {
    color: #888;
}

header, footer, hgroup,
nav, section {
    display: block;
}

mark {
    background-color: #a6dbed;
    padding-left: 5px;
    padding-right: 5px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

h1, h2, h3,
h4, h5, h6 {
    color: #000;
    margin-bottom: 0;
    padding-bottom: 0;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.75em;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

h5 a:link, h5 a:visited, h5 a:active {
    padding: 0;
    text-decoration: none;
}

/* info and errors */
.message-info {
    border: 1px solid;
    clear: both;
    padding: 10px 20px;
}

.message-error {
    clear: both;
    color: #e80c4d;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.message-success {
    color: #7ac0da;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.error {
    color: #e80c4d;
}

/* styles for validation helpers */
.field-validation-error {
    color: #e80c4d;
    font-weight: bold;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #e80c4d;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #e80c4d;
    font-weight: bold;
    font-size: 1.1em;
}

.validation-summary-valid {
    display: none;
}


#loadingdiv, .loadingdiv {
    /* position: absolute;
    z-index: 2000;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;  
    overflow: hidden;  
    display: none;*/

    position: absolute;
    z-index: 2000;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    overflow: hidden;
    /*background-color: #ff000011;*/
    /*backdrop-filter: blur(0.7px);*/
    display: none;
    opacity: 0;
}

    #loadingdiv.loadingdiv-visible, .loadingdiv.loadingdiv-visible {
        opacity: 1 !important;
        display: block;
    }

#loadingimg, .loadingimg
{
    display: none;
}

#loadingbg, .loadingbg {
    position: absolute;
    z-index: 2000;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: black;
    opacity: 0.1;
    display: none;
}

#loadingimg, .loadingimg
{
    position: absolute;
    left: 50%;
    top: 50%; 
    margin-left: -25px;
    margin-top: -25px;       
    z-index: 2001;
}

#loadingimg img, .loadingimg img
{
    width: 35px;    
    box-shadow: 0px 0px 5px 0px #fff;
    border-radius: 50px;    
    padding: 5px;
    background-color: #3e7593;
}

#header
{
    position: absolute;
    width: 100%;    
    top: 0px;
    height: 70px;
    font-size: 10px;
    padding-top: 5px;
    padding-left: 0px;
    background-color: white;    
}

#header > div
{
    padding: 10px;
}

.topheader
{
    width: 100%;
    height: 50px;   
}

.logodiv
{
    position: absolute;
    top: 0px;
    height: 15px;
    padding-top: 3px;    
    width: 100%;
    text-align: right;
}

.logodiv img
{
    height:25px;
}

#body {
    position: absolute;    
    width: 100%;    
    top: 0px;
    bottom: 50px;   
    background: #eee;
}

#footer
{
    position: absolute;
    width: 100%;    
    bottom: 0px;
    height: 35px;
    padding-bottom: 10px;
}

#footer > div
{
    padding: 0px;
    line-height: 40px;
}

/*#popupmessagediv
{
    width: 100%;
    height: 100%;
    z-index: 11000;
    position: absolute;
    top:0px;
    left: 0px;
    text-align: center;    
}

#popupmessage
{
    background-color: blue;
    width: 400px;
    height: 50px;        
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    position: fixed;
}*/

#searchinfoobject p, .searchinfoobject  p {
    display: inline;
    font-style: italic;
}

#searchinfo, #searchinfoobject, .searchinfoobject
{
    height: 60px;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;    
    z-index: 10000;
    position: absolute;
    top: 34px;
    left: 4px;
    border-radius: 4px;
    background: url('/images/gradient.jpg') no-repeat center center fixed;
    background-size: cover;    
    color: white;
    line-height: 30px;
    text-align: center;
    font-size: 11px;
    display: none;
}

#searchinfo
{
    height: 100px;
}

.searchexamplediv
{
    line-height: normal;
}

#grafiskdiv
{
    width: 900px;
    position: absolute;
    z-index: 1000;
    top: 50%;
    left: 50%;
    margin-top: -400px;
    margin-left: -450px;
    box-shadow: 0px 0px 20px 1px #333;
    display: none;
}

#grafisk
{
    
}


@keyframes ANIMATIONPREVIEW {
  0%   { opacity: 0;  }
  100%   { opacity: 1;  }
}

/*.previewdiv_active
{        
    display: block !important;
    backface-visibility: hidden;
    animation: ANIMATIONPREVIEW 0.5s 1;
    opacity: 1;    
}*/

/*#previewcontainer2
{
    position: absolute; 
    left: 0px; 
    top: 0px;
    height: 100px;
    right: 0px;
    display: none;
    z-index: 1000;
    background-color: red;
}*/

#previewcontainer {
    all: unset;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(0,0,0,0.3);
    /*background-color: rgba(0,0,0,0.4);*/
    /*background-image: linear-gradient(rgba(0,0,20,0.2), rgba(0,0,0,0.5));*/
    /*backdrop-filter: blur(2px); 
    -webkit-backdrop-filter: blur(2px);*/

    z-index: 1000;
    /*opacity: 0;*/
    display: none;
    pointer-events: none;
    justify-content: center;
    align-items: center;
    /*transition: opacity 1s ease-out, visibility 1s;*/
}

    /*#previewcontainer.hidden {
        opacity: 0;
        visibility: hidden;
        transition: opacity 1s ease-out, visibility 1s;
    }*/   

#previewimg {
    /*position: absolute;*/
    /*height: 100%;
    width: 100%;*/
    left: 0px;
    top: 0px;
    max-width: 800px;
    max-height: 700px;
    object-fit: contain;
    border-radius: 10px;
    border: 5px solid white;
    box-shadow: 0px 0px 20px 1px #333333;
    z-index: 1001;
}

#previewflip
{
    position: absolute;
    z-index: 2000;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;  
    overflow: hidden;  
    display: none;
}


#previewflipbg
{
    position: absolute;
    z-index: 2000;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;    
    background-color: black;
    opacity: 0.4;
}

#previewflipimgcontainer
{
    position: absolute;
    left: 50%;
    top: 50%;     
    z-index: 2001;
    box-shadow: 0px 4px 10px 0px #333;
    padding-bottom: 0px;
    background-color: #fff;
    border: 8px solid white;
}

#previewflipimg
{
    width: 100%;
}

#previewprev
{
    float: left;
}

#previewnext
{
    float: left;
}

.previewfooter
{
    width: 100%;    
    height: 20px;
    padding: 10px;    
}

.previewfooter div
{
    float: left;
    margin-right: 20px;
}

.previewclose
{   
    float: right;    
    color: white;
    width: 10px;
    height: 10px    
}

.preview
{
    cursor: pointer; 
    box-shadow: 0px 0px 2px 1px #ccc;   
}

.preview:hover
{
    box-shadow: 0px 0px 4px 1px #aaa;
}

.locked
{
    width: 18px;
}

#fullpage
{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow: hidden;       
}

.blurred
{
    -webkit-filter: blur(3px); 
    filter: blur(3px);
    opacity: 1.0;
}

.blurred2
{
    -webkit-filter: blur(14px); 
    -o-filter: blur(14px);
    filter: blur(14px);    
    opacity: 0.8;
}

.blurredDragDrop
{
    -webkit-filter: blur(5px); 
    -o-filter: blur(5px);
    filter: blur(5px);    
    opacity: 1;
    transition: all 0.25s ease-out;
}

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

#flipcontainer
{
    display: none;
}

#flipbg
{
    position: absolute;
    left: 0px; 
    right: 0px;
    bottom: 0px;
    top: 0px;
    background-color: #020009;
    opacity:0.65;
    z-index: 1000;        
}        

#flipborder
{
    position: absolute;
    z-index: 1100;  
    left: 50%;
    top: 50%;
    margin-left: -570px;    
    margin-top: -400px;                   
} 
         
#flipborder table
{
    width: 100%;    
}       

#flipimg
{                    
    width: 920px; 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;    
}


#testimg
{
    width: 200px;
    height: 200px;    
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#flipclose
{
    position: absolute; 
    top: -10px;
    right: -10px;            
}

#flipcontent
{
    background-color: #bbb;
    box-shadow: 0px 4px 22px -5px #000;
    border: 1px solid #aaa;
    border-radius: 8px;
}

#flipfooter
{
    padding: 10px;
}

#flipclose:hover
{
    /*content:url("/images/close_hover.png");*/    
    cursor: pointer;
}

#flipprevious
{
    width: 100px;
    background: url('/images/previous.png') no-repeat;
    background-position: center;
}
#flipprevious:hover
{            
    background: url('/images/previous_hover.png') no-repeat;
    background-position: center;
    cursor: pointer;
}

#flipnext
{
    width: 100px;
    background: url('/images/next.png') no-repeat;
    background-position: center;
}

#flipnext:hover
{            
    background: url('/images/next_hover.png') no-repeat;
    background-position: center;
    cursor: pointer;
}

#metadebug
{    
    padding-left: 200px;    
    font-size: 11px;
}

.disabled
{
    opacity: 0.2;
}

.disabledrow
{
    color: #979797; 
    font-style: italic; 
}

.metaheader
{
    font-weight: bold;    
}

.thumb {
    cursor: pointer;    
    max-height: 59px;
    border: 1px solid #ddddddaa;
    border-radius: 2px;
    max-width: 90%;
    object-fit: contain;
    background-color: white;
}

.thumb:hover {
    /*box-shadow: 0px 0px 2px 0px #bbb;   */
    opacity: 0.95;
}

.genericapartment {
    height: 20px !important;
}

#footertable {
    width: 100%;
}

#footertable tr
{
    width: 100%;
}

#footertable td
{
    width: 33%;
    overflow: hidden;
}

#footertablewhite
{
    position: absolute; 
    bottom: 0px;
    color: white;
    width: 100%;
    background-color: #19445c;
    padding-top: 5px;
    padding-bottom: 5px;
}

#footertablewhite td
{
    width: 33%;
}

#footertablewhite .copyright
{
    color: #c7dcf2;
}

.copyright
{
    text-align: center; 
    vertical-align: middle;
    position: relative;
    /*padding-bottom: 15px;*/
    color: #555;  
    font-size: 12px;  
}

.copyright img, .copyrightimg {
    height: 11px;
    margin-right: 5px;    
    opacity: 0.9;      
    vertical-align: middle;
    margin-bottom: 3px;
}

.footer_left {
    color: #555;
    font-size: 12px;
}

.footer_left div {
    float: left;
    padding-right: 15px;
}





#logincopyright 
{
    position: absolute;
    bottom: 0px;
    width: 100%;
}





#socialLoginForm
{
    
}

.gridmenu
{
    font-size: 12px;
    width: 100%;
    height: 100%;
    background-color: #ddd;        
}

/*@page {
   margin: 2cm;
   size: landscape;
}

@media print {

}*/

.print_apartment_div
{

}

#canvas
{
    display: none;
}

/*#btnSaveApartmentImage
{
    position: absolute;
    left: 10px;
    top: 10px;
}*/

.apartmentdiv
{
    position: absolute;       
    top: 85px;    
    bottom: 0px;
    left: 0px;
    right: 0px;  
    background-color: #f4f4f4;              
}

.apartmentdivnew {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    /*background-color: #f4f4f4;*/
}

.apartmenttemplatediv {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #f8f8f8;
}

.apartmentmetadata {
    position: absolute;
    right: 40px;
    top: 30px;
    min-height: 100px;
    min-width: 100px;
    max-width: 300px;
    z-index: 1000;
    /*background-color: #00000007;*/
    border-radius: 10px;
    padding: 12px;
    font-family: sans-serif;
}

.apartmentmetadata h1 {
    font-size: 12px;
    color: #bbb;
}

.apartmentmetadata p {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
    font-weight: 600;
}

.apartmentmetadata:empty {
    display: none !important;
}

.apartmentbuttons
{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    width: 100px;
}

.apartmentbuttons input
{
    width: 100px;
}

.apartmentbutton-index {
    /*background-image: url('/images/gradient.jpg');
    background-size:cover;*/
    transition: all 0.25s ease-out;
    background-color: transparent !important;
    border-radius: 4px;
    font-size: 11px;
    color: black !important;
    margin: 2px;
    border: 1px solid transparent !important;
    text-shadow: none !important;
    /*box-shadow: 0px 0px 0px #333;*/
    padding: 5px;
    padding-left: 8px;
    padding-right: 8px;
    font-family: Verdana;
    text-decoration: none;
    /*border-bottom: 2px solid #3e759366 !important;*/
}

    .apartmentbutton-index:not(.apartmentbutton-index-selected):hover {
        box-shadow: none !important;
        /*border-bottom-color: #3e7593 !important;*/
        background-color: #3e759333 !important;
        border: 1px solid #3e759333 !important;
    }


.apartmentbutton-index-selected {
    /*background-image: url('/images/gradient.jpg');
background-size:cover;*/
    transition: all 0.25s ease-out;
    background-color: #3e7593 !important;
    border-radius: 4px;
    font-size: 11px;
    color: white !important;
    margin: 2px;
    border: 1px solid #1b4b69 !important;
    text-shadow: 0px 1px 2px #333;
    /*box-shadow: 0px 0px 0px #333;*/
    padding: 5px;
    padding-left: 8px;
    padding-right: 8px;
    font-family: Verdana;
    text-decoration: none;
}

/*.apartmentsavebutton {
    width: 100px;
}

.apartmentprintbutton
{
    position: absolute;       
    top: 40px;        
    left: 10px;
    z-index: 1000;
    width: 100px;
}*/
.apartmentframe {
    width: 100%;
    height: 100%;
}


#griddiv
{
   /* position: absolute;
    top: 85px;
    bottom: 0px;
    margin-right: 3px;
    box-shadow: 0px 0px 8px -3px #333;  */

    /*position: absolute;
    top: 0px;
    left: 0px;
    height: 500px;
    width: 100%;
    margin-right: 20px;*/

    
      
    /*background-color: greenyellow;
    position: absolute;
    top: 10px;
    bottom: 20px;*/
}

#grid_container {
    /*position: absolute !important;        */
}

#grid_container > .ui-iggrid-footer
{
   /* height: 20px !important;
    padding: 0px !important;
    background-color: red !important;    */
}

    #grid_hscroller_container {
        margin-bottom: -1px;
    }

.jsonGridDiv {
    /*top: 74px !important;*/
    box-shadow: none !important;
    position: relative;
    margin-right: 1px;
    height: 100%;
    padding: 0px;
    border-radius: 8px !important;
    overflow: hidden;
    margin-bottom: 0px;
    margin-top: 0px;
    border: 1px solid #ddd;
}

.editgridDiv
{
    top: 30px !important;
    overflow-y: hidden !important;
    font-size: 9px;
    position: absolute;
    bottom: 1px;
}

.editgrid-edited-value
{
    color: orange;
    font-weight: bold;
}

.roundedcorners {
    border-radius: 12px !important;
}

#tree.ui-igtree, #treeview.ui-igtree {
    /*position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: 0px;*/
    position: absolute;
    padding-left: 5px;
    padding-right: 5px;
}

#treeview.infoboxmargin {
    /*bottom: 150px;*/
}

#treeinfoboxdata {
    height: 100%;
    width: 100%;
    position: relative;
    overflow-y: auto;
}

#lblDocFiltered.visible {
    border-right: 2px solid #2d4d6355;
    margin-right: 5px;
    padding-right: 5px;
}

.nodocumentwarning {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    text-align: center;
    justify-content: center;
    color: #2d4d63;
    font-size: 120%;
    font-weight: bold;
    /*background-image: url('/images/backgrounds/bg01.svg');
    background-size: cover;*/
    /*background: linear-gradient(180deg, #3e7593, #73a5c1);*/
    background: linear-gradient(0deg, #e7e7e7, #f2f2f2);
}

/*#treeinfobox {
    background-color: white;*/
/* padding: 10px; */
/* background-color: #f3f3f3; */
/*border: 1px solid #ccc;
    font-size: 12px;
    border-radius: 5px;
    overflow: hidden;
    margin: 2px;
    margin-bottom: 5px;
}*/
#areapaneldiv {
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
}

.infopanel {    
    background-color: #3e7593dd;
    min-width: 300px;
    font-size: 12px;
    padding: 20px;
    border-radius: 5px;
    color: white;
    line-height: 180%;
    height: auto;
    margin: 10px;
    flex: 1;
}

.areainfopanel {
    display: grid;
    grid-template-columns: auto 100px;
    /*background-color: #3e7593dd;*/
    width: 300px;
    font-size: 11px;        
    color: white;
    line-height: 180%;
    height: auto;    
}

.infopanel-header {
    font-weight: bold;
    padding-bottom: 10px;
}

.infopanel-rowdata {
    grid-auto-rows: max-content;
}

.infopanel-rowdata > div
{
    
}
   

    .editgrid_container {
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 35px auto;
        height: 100%;
    }

.editgrid_grid
{
    position: relative;
}

.leftpaneldiv {
    /*height: 100%;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 72px auto 0px;*/
    display: flex;
    flex-direction: column;
    height: calc(100vh - 57px);
    gap: 3px;
}

.roundedcard.objectsearchinfo {
    min-height: 30px;
    color: #3e7593;
    font-weight: bold;
    background-color: transparent;
    border: 0px solid transparent;
    align-items: center;
    display: flex;
    padding: 5px;
    box-sizing: border-box;
}

.rightpaneldiv {
    height: 100%;
    display: grid;
    grid-template-columns: 100%;
    /*grid-template-rows: 72px auto;*/
    grid-template-rows: 72px calc(100% - 76px); /* Infragistics grid seems to have problems with auto */
}   

.panelloading {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #33000055;
    z-index: 100;
}

.panelloading .spinner {
    position: absolute !important;
    top: calc(50% - 20px) !important;
    left: calc(50% - 25px) !important;
}


#infoboxtable {
    padding: 10px;
    font-size: 10px;
    color: #656565;
}

#infoboxtable td:nth-child(1) {
    font-weight: bold;
    vertical-align: top;
    width: 100px;
}

#infoboxtable td:nth-child(2) {
    padding-left: 10px;
}

.ib-igtree-filtered-node > a {
    font-weight: bold;
    font-style: italic;
    color: #3e7593 !important;
}

.ib-igtree-filtered-parent-node > a {
    font-style: italic;
    font-weight: 500;
}

.panelheader {
    /*position: relative;
    background-color: #ddd;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 74px;    
    background-color: #ccc;*/
}    

.panelheader-menurow {
    position: relative;
    height: 40px;
    background-color: #3e7593;
    border-radius: 5px;
}

.submenurow
{
    
}

.panelheader .submenurow {
    display: flex;
    width: 100%;
}

.panelheader .submenurowdocument {
    display: grid;
    grid-template-columns: 200px 1fr 250px;
    width: 100%;
}

.orderdiv {
    position: absolute;
    top: 53px;
    bottom: 0px;
    margin-right: 3px;
    box-shadow: 0px 0px 8px -3px #333;
    /*background-color: greenyellow;
    position: absolute;
    top: 10px;
    bottom: 20px;*/
}

.rightpane
{
    position: relative;
    height: 100%;
    overflow: hidden;
    background-color: #ddd;
}



.infodiv h1
{
    color: white;
    font-size: 18px; 
    padding-left: 0px;
}

.infodiv .tablecontainer
{   
    /*position: absolute;
    top: 100px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: block;*/ 
    /*float: left;
    margin-right: 50px;       
    padding: 20px;*/    
    /*height: 2500px;*/  
    
    width: auto;
}

.infodiv {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    overflow-y: hidden;
    /*position: absolute;
    width: 100%;     
    top: 0px;
    bottom: 0px;*/
    box-shadow: 0px 0px 8px -3px #333;
    background-color: #709eb7;
    color: white;
    font-size: 12px;
    /*background-color: greenyellow;
    position: absolute;
    top: 10px;
    bottom: 20px;*/
    /*padding-left: 50px;*/
    padding-top: 10px;
    /*height: 7000px;*/
    display: flex;
    flex-direction: row;
    /*align-items: center ;*/
}

.areareportdiv {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;   
}

.areareportgrid {
    margin-top: 0px;
    margin-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.areareportgrid > div
{
    border-radius: 7px;
}

.areareportgrid h1
{
    padding-bottom: 10px;
}

#legenddatacontainer {
    height: auto;
    display: flex;
}

.legenddata_areatype
{
    padding-left: 0px !important; 
    /*margin-left: 0px !important;*/
    text-align: center !important;
    height: auto !important;
    line-height: normal !important;
    font-weight: bold;
    padding-top: 0px !important;
}

.legenddata div {
    min-height: 30px;
    text-align: left;
    position: relative;
    padding-left: 40px;
    padding-right: 10px;
    margin-bottom: 5px;    
    line-height: 30px;
}

.legenddata span {
    line-height: normal;   
    display: inline-block;  
}

.legenddata svg {
    position: absolute;
    top: 5px;
    left: 5px;
}

.legenddata
{
    width: 100%;
}



.infodiv .tablecolumn {
    float: left;
}

.infodiv .tablerow {
    display: table-row;
}

.infodiv .tablecell
{
    padding-top: 10px;
    padding-right: 26px;
    display: table-cell;  
    white-space: nowrap;
}

.infodivinner
{
    
}

#treemenu
{
    font-size: 12px;
    width: 100%;
    background-color: #3e7593;
    color: white; 
    height: 50px;    
}

.treediv
{
    position: absolute; 
    top: 82px; 
    right: 0px;     
    left: 0px;   
    bottom: 0px;
    display: grid;  
    grid-template-columns: 100%;      
    grid-template-rows: 100% 0%;    
    overflow: hidden;
    /*box-shadow: 0px 0px 0px -2px #333;*/        
}

.fastapidata
{    
    height: 100%; 
    width: 100%; 
    border-top: 1px solid #ccc;       
    background-color: #eee;
    padding: 10px;          
    font-size: 13px;      
    font-weight: bold;
    color: #1e5574;
}

.fastapidata hr
{
    margin-right: 20px;
    border: 1px solid #1e5574;
}

.fastapidata_content
{
    font-size: 11px;  
    font-weight: normal;  
    display: grid;  
    grid-template-columns: 20% 70%;      
    grid-auto-rows: min-content;  
    grid-row-gap: 10px;
    grid-column-gap: 20px;
}

.fastapidata_content div:nth-child(2n+1)
{
    font-weight: bold;    
}

#dialogGrid {
    border-radius: 8px;
    border: 1px solid #00000044;
    font-size: 12px !important;
}

    #dialogGrid .ui-igdialog-content {
        display: grid !important;
        /*grid-template-rows: minmax(80px, 160px) auto;*/
        grid-template-rows: auto auto;
        grid-auto-rows: min-content;
        /*grid-row-gap: 10px;
        grid-column-gap: 20px;*/
        overflow: hidden;
    }

#dialogGrid .w3-bar-item
{
    font-size: 12px;
}

#grid3d {
    
}




    .graphicalsearch {
        position: absolute;
        bottom: 0px;
        height: 190px;
        width: 100%;
        border-top: 1px solid #ccc;
        background-color: #eee;
    }



.username
{
    color: #1e5574;
    font-weight: bold;
    font-size: 12px;
}

.username:hover
{
    color: #5c8ea9;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
}


#downloadframe
{
    display: none;
}

#loginhtml, #loginbody
{    
    margin: 0px;
    padding: 0px;
    border: 0px;

    width: 100vw;
    height: 100vw;

    overflow: hidden;

    background: url('/images/gradient.jpg') no-repeat center center fixed;
    background-size: cover;    
}

.progressbarcontainer
{
    margin: 0px;
    padding: 0px;
    border: 0px;

    background: url('/images/gradient.jpg') no-repeat center center fixed;
    background-size: cover;    
}

.progresstext
{
    width: 100%;
    text-align: center;
    margin-top: 10px;
    color: white;
    font-weight: 600;
    text-shadow: 0px 2px 3px #0d354e;
}

.documentlistlabel
{
    text-shadow: 0px 1px 1px white;    
}

.documentlistlabelnew {
    text-shadow: 0px 1px 1px white;
    /*position: absolute;
    left: 250px;
    top: 15px;*/
    padding-left: 10px;
    font-size: 12px;

}

.messagebody
{
    margin: 0px;
    padding: 0px;
    border: 0px;

    background-color: transparent;
    background: url('/images/gradient.jpg') no-repeat center center fixed;
    background-size: cover;    
}

.sessiontimeoutcontainer {
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    min-width: 350px;
    max-width: 500px;
    height: auto;
    z-index: 2000;
    display: none;
}

.sessiontimeoutcontainer .messagediv {
    background-color: white;
    border-radius: 12px;
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 9px #333;
}

.messagecontainer
{
    position: absolute;
    top: 50%;    
    left: 50%;
    transform: translate(-50%, -50%);    

    width: auto;
    min-width: 350px;
    max-width: 500px;
    height: auto;
}

.messagecontainer a
{
    color: #555;    
    text-decoration: none;
}

.messagecontainer a:hover {
    color: #777;    
}

.messagebody #messagediv {
    background-color: white;
    border-radius: 12px;
    background: #ddd;
    padding: 20px;
    box-shadow: 0px 4px 9px #333;
}

#lmessageinput, #messagebutton, #messagetitle
{
    text-align: center;    
}

#messagetitle {
    padding-bottom: 10px;
    text-shadow: 0px 1px 1px white;
    color: #777;
    font-size: 24px;
    /*font-family: 'Roboto Condensed', 'Century Gothic';*/    
    font-weight: bold;
}

#messagetext {
    color: #777;
    font-size: 14px;
    /*font-family: 'Roboto Condensed', 'Century Gothic';*/    
    font-weight: bold;
    margin: auto;
}

#admindiv
{
    position: absolute;
    
    top: 50%;    
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    min-height: 300px;
    height: 95% !important;

    border-radius: 12px;
    background: #ddd;
    padding: 0px;     

    box-shadow: 0px 4px 9px #333;
}

#admintitle {
    padding-bottom: 10px;
    text-shadow: 0px 1px 1px white;
    color: #777;
    font-size: 24px;    
    font-weight: bold;
    padding-top: 20px;
}

#admininput, #adminbutton, #admintitle
{
    text-align: center;    
}

#adminbutton input[type=button],input[type=submit]
{
    width: 150px;
}



#logindiv
{
    
    background-color: white;
        
    width: 260px;
    height: 165px;

    border-radius: 12px;
    background: #ddd;
    padding: 20px;

    box-shadow: 0px 4px 9px #333;
}

#iContentDiv
{
    position: absolute;
    background-color: white;
    top: 50%;    
    left: 50%;

    width: 260px;
    height: 165px;

    border-radius: 12px;
    background: #ddd;
    padding: 20px;

    transform: translate(-50%, -50%);

    box-shadow: 0px 4px 9px #333;
}

#termsagreediv
{
    margin-top: 20px;
    text-align: center;    
}

#userinfo
{
    margin-top: 25px;    
}

#userinfo div
{
    width: 300px;
    margin: auto;
}

#userinfo input
{
    width: 300px;    
}

.userinfo_header
{
    font-size: 13px;
    position: relative;
    left: -10px;
}

#logininput, #loginbutton, #logintitle
{
    text-align: center;        
}

#logininput select
{
    width: 250px;
}

#logininput input
{
    margin-bottom: 6px;
}

#loginbutton {
    padding-top: 8px;
}

#loginbutton input
{
    width: 250px;
}

#logintitle {
    padding-bottom: 10px;
    text-shadow: 0px 1px 1px white;
    color: #777;
    font-size: 24px;
    /*font-family: 'Roboto Condensed', 'Century Gothic';*/    
    font-weight: bold;
}

#logintitle img
{
    width: 130px;
}


.basketmessage {
    color: #777;
    font-size: 14px;
    /*font-family: 'Roboto Condensed', 'Century Gothic';*/    
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}


input[type=text], input[type=password], input[type=date], select {
    width: 240px;
    border-radius: 4px;
    border: 1px solid #aaa;
    /*box-shadow: inset 0px 1px 6px #aaa;*/
    font-size: 11px;
    font-family: Verdana;
    color: #555;
    /*margin: 4px;*/
    padding: 5px;
}

select
{
    width: 162px;
}

input[type=text]:hover, input[type=password]:hover, select:hover
{
    border: 1px solid #6392a3;    
}

input[type=button], input[type=submit], a.linkbutton {
    /*background-image: url('/images/gradient.jpg');
    background-size:cover;*/
    transition: all 0.25s ease-out;
    background-color: #3e7593;
    border-radius: 5px;
    font-size: 11px;
    color: white;
    margin: 2px;
    border: 1px solid #1b4b69;
    text-shadow: 0px 1px 2px #333;
    /*box-shadow: 0px 0px 0px #333;*/
    padding: 7px;
    padding-left: 9px;
    padding-right: 9px;
    font-family: Verdana;
    text-decoration: none;
}

.centered-input{
    display: block !important;
    margin: auto !important;
}

.linkstyle:hover
{
    text-decoration: underline;
    cursor: pointer;
}

a.linkbutton:hover {
    color: white !important;
}


input[type=button]:disabled, input[type=button]:disabled:hover, input[type=submit]:disabled, input[type=submit]:disabled:hover, a.linkbutton:disabled, a.linkbutton:disabled:hover {
    background-image: url('/images/gradient_disabled.jpg');
    cursor: pointer;
    color: #e2e2e2;
    text-shadow: 0px 0px 0px transparent;
    border: 1px solid #777;
    box-shadow: 0px 0px 0px #333;
    cursor: default;
}

input[type=button]:focus
{
    outline: 0px transparent !important;
}

.ig_IBDocControl:focus, .ig_IBDocSelected:focus
{
    outline: 0px transparent !important;
}


.buttonimage {
    /*background-color: blue;*/
    display: inline-block;
    height: 100%;
    width: 100px;   
    text-align: center;    
}

.buttonimage img {
    vertical-align: middle;
}

.buttonnotificationblock {
    position: relative;
    display: inline-block;
    margin-left: -12px;
}

.buttonnotificationtext {
    position: absolute;
    top: 1px;
    left: 6px;
    font-size: 11px;
    color: white;
    font-family: Consolas, 'Courier New', SansSerif, Arial;
    text-align: left;
}

input[type=button]:hover, input[type=submit]:hover, a.linkbutton:hover {
    cursor: pointer;
    /*box-shadow: inset 0px 1px 3px #444;*/
    background-color: #346b89;    
}

input[type=checkbox]
{    
    border: 1px solid #1e5180;    
}

input[type=checkbox]:hover
{
    border: 1px solid #6392a3;
}

input[type=checkbox] + label
{
    font-size: 11px;
    bottom: 1px;
    position: relative;
}

input[type=color] 
{    
    -webkit-appearance: none;
    margin-top: 5px;
    padding: 0px;
    border: 0px solid red;
    border-radius: 3px;
    margin-left: 3px;
}

label 
{
    font-size: 11px;
    bottom: 1px;
    position: relative;
}

.gridmenu input[type=checkbox], #treemenu input[type=checkbox]
{
    /*margin-top: 11px;*/
}

.button
{
    width: 100px;
    font-size: 12px;
    padding: 5px;
}

.changepasswordfailed
{
    margin-left: 5px !important;
    margin-right: 5px !important;
}

#loginfailed:empty
{
    display: none !important;    
}

.errormessagediv:empty
{
    display: none;    
}

.adminbasket_share
{
    position: absolute;
    bottom: 0px;
    /*padding: 20px;*/
    right: 0px;
    left: 0px;
}

#BasketSharedDiv input, #BasketNotSharedDiv input, #BasketSaveDiv input {
    margin-right: 7px !important;
}

@-webkit-keyframes ANIMATIONNAME {
    0%   { opacity: 1; }
  50% { opacity: 0.5; }
  100%   { opacity: 1; }
}
@-moz-keyframes ANIMATIONNAME {
  0%   { opacity: 1; }
  50% { opacity: 0.5; }
  100%   { opacity: 1; }
}
@-o-keyframes ANIMATIONNAME {
  0%   { opacity: 1; }
  50% { opacity: 0.5; }
  100%   { opacity: 1; }
}
@keyframes QUICKMESSAGE {
  0%   { opacity: 0.0; }
  25% { opacity: 1; }
  75%   { opacity: 1; }  
  100%   { opacity: 0; display: none; }
}

.quickmessage
{
    display: none;
    opacity: 0;

    position: absolute;
    top: 50px;
    left: 50px;
    width: auto;
    min-width: 50px;
    z-index: 1000;
    border-radius: 7px;
    padding: 2px 10px 2px 10px;

    background-color: #1c674b;
    border: 0px solid #0f4f37;
    color: white;
    text-align: center;

    box-shadow: 0px 2px 5px #333;

    animation-timing-function: ease-in-out;
}

#loginfailed, .errormessagediv, .loginfailed
{    
    margin-top: 24px;

    margin-left: 30px;
    margin-right: 30px;

    color: white;      
     
    border: 2px solid #6c1212;
    border-radius: 7px;
    background: #8f1b1b;

    padding: 8px 30px 8px 30px;
    text-align: center;

    box-shadow: 0px 4px 9px #333;
}



#adminmessages {
    padding: 10px;
    overflow-y: scroll;
    overflow-x: hidden;
}

#adminmessages th
{
    text-align: left;
}

#adminmessages td
{
    padding: 5px;
}

.hidden
{
    display: none;
}

.igdt_IBDocNodeImage
{
    width: 20px;
}

.objectsearchdiv {
    height: 32px;
    width: 100%;
    /*background-color: #ddd;*/
    /*border-bottom: 1px solid #ccc;*/
    display: block;
}

.IBListbox
{
    overflow-y: visible;
}

.IBListbox option {
    line-height: 25px;
    padding: 5px;
    margin: 0px;
    border-radius: 5px;
}

.IBListbox option:checked {
    background: linear-gradient(#aaa, #aaa);
}

.clearbutton {
    height: 16px;
    position: absolute;
    right: 2px;
    top: 6px;
    width: 16px;
    /*background-image: url(/Images/close.png);*/
    background-image: url('/Images/viewer/close.svg');    
    filter: brightness(0.5);
    background-size: 14px 14px;
}

.clearbutton:hover {        
    filter: brightness(0.2);
    cursor: pointer;    
}

.objectsearcheditor {
    position: absolute;
    left: 1px;
    right: 1px;
    top: 4px;
}

.objectsearcheditor .searchbox {
    width: 100%;
    box-sizing: border-box;
    padding-right: 20px;
}

.textboxdiv
{ 
    text-align: left;
    width: 150px;
    margin: auto;
    padding-right: 20px;
}

.textboxdiv h1 {
    font-size: 12px;
    color: #777;
    padding-left: 8px;
}


.ighg_IBDocGroupIndentCell img
{    
    height: 60%;
    cursor: pointer;
}

/* <div class="lds-ripple"><div></div><div></div></div> */

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;  
}
.lds-ripple div {
  position: absolute;
  border: 2px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1.3s cubic-bezier(0, 0.2, 0.9, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 16px;
    left: 16px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 32px;
    height: 32px;
    opacity: 0;
  }
}



/* <div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div> */
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;  
}
.lds-ellipsis div {
  position: absolute;
  top: 0px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}



/* <div class="lds-dual-ring"></div> */
.lds-dual-ring {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: auto;  
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;  
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/* <div class="lds-ring"><div></div><div></div><div></div><div></div></div> */
.lds-ring {
  display: inline-block;
  position: relative;  
  height: 20px;  
  width: 20px;
  margin: auto;    
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;  
  width: 20px;
  height: 20px;  
  border: 2px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ifastloader_text
{
    font-weight: normal;
    font-size: 11px;
    color: white;
    margin-top: 5px;
    opacity: 0.8;
}

.ifastloader {
  border: 2px solid #f3f3f333; 
  border-top: 3px solid #d0dee6;   
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: ifastloader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  margin: auto;
}

@keyframes ifastloader {
  0% { transform: rotate(0deg); }
  50% { border: 2px solid #f3f3f311; border-top: 3px solid #d0dee6; }
  100% { transform: rotate(360deg); }
}

 .spinner {
    margin: 10px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinner > div {
    background-color: #19445c;
    height: 100%;
    width: 6px;
    display: inline-block;
  
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;

    border-radius: 4px;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
    20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
    }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
    }
}



#tree, #treeview
{
    font-size: 11px;
}

#confirmDialog
{

}

#confirmDialog .dialog_buttons
{
    margin-top: 25px;
    float: right;
}

.dialog2022 {
    border-radius: 7px;
    font-size: 13px;
    text-align: center;
}

.dialog2022 .ui-dialog-titlebar
{
    background-color: white !important;
    border: 0px solid transparent !important;    
    text-align: center !important;
}

.dialog2022 .ui-igdialog-headertext
{
    color: black !important;
    padding-top: 10px;
    font-weight: bold !important;
}

.dialog2022 .ui-igdialog-headertext {
    width: 100% !important;
    max-width: 100% !important;
}

.dialog2022 .dialog_buttons
{
    float: none !important;
    margin-bottom: 10px;
    margin-top: 15px !important;
}

.dialog2022 .dialog_buttons input {
    border-radius: 6px; 
}



.UserRightsGridDiv {
    /*overflow-x: hidden;
max-height: 250px;*/    
    max-height: 700px;
    overflow-y: hidden;
    /*overflow: hidden;*/
}

.UserRightsGrid
{
          
}

.dialogNormal
{
    /*box-shadow: 0px 4px 9px #333;*/
    position: absolute;
    top: 20px;
    left: 20px; 
    right: 30px;
    bottom: 50px;
    padding-left: 0px;
    padding-right: 0px;
}

.dialogNormal input
{            
}

.dialogNormal label, .orderlabel
{
    font-size: 13px;        
}

.dialogNormal label::after
{    
    padding-bottom: 10px;
    content: "";
    display:block;
}


.dialogNormal textarea
{
    width: 100%;
    height: 100px;
    font-size: 12px !important;
}

.dialogNormal_buttons
{
    position: absolute;
    bottom: 10px;
    left: 0px;
    right: 0px;
    text-align: right;
    padding-bottom: 20px;
    padding-right: 20px;
}

.ui-igeditor-input-container input
{
    box-shadow: none;    
    margin: 0px;
    padding-left: 2px;
}

.ui-igcombo-listitem
{
    font-size: 11px !important;
}


.loggedindiv {
    margin-right: 10px;
}

.helpicon
{
    margin-left: 10px; 
    width: 18px;
    vertical-align: middle;
}

.helpicon:hover
{
    cursor: pointer;
    opacity: 0.75;
}


.footerdiv
{
    width: 100%;        
    line-height: 40px;
    font-size: 12px;
}

.footerdivleft, .footerdivleft div {
    float: left;
}

.footerdivright, .footerdivright div {
    float: right;
    margin-right: 10px;
}

.logo {
    height: 35px;
    width: auto;
    margin: 0px;
    padding-left: 10px;
    padding-top: 5px;
    padding-right: 10px;
    mix-blend-mode: darken;    
    image-rendering: optimizeQuality;
}

/**** Inputs ****/



.select-css {
    /*display: block;*/
    font-size: 12px;
    font-family: sans-serif;
    font-weight: 700;
    color: #555;
    line-height: 1.0;
    padding: .6em 1.4em .5em .8em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0px;
    margin-top: 2px;
    margin-bottom: 5px;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    border-radius: .5em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'), linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .6em auto, 100%;
}
.select-css:disabled
{
    color: #ccc;        
}

.select-css::-ms-expand {
    display: none;
}
.select-css:hover {
    border-color: #888;
}
.select-css:focus, .textbox-css:focus {
    border-color: #aaa;
    box-shadow: 0 0 1px 2px rgba(62, 117, 147, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none;
}
.select-css option {
    font-weight:normal;
}

.textbox-css {
    /*display: block;*/
    font-size: 12px;
    font-family: sans-serif;
    font-weight: 700;
    color: #555;
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;    
    margin-top: 2px;
    margin-bottom: 5px;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
    border-radius: .5em;
    background-color: #fff;
}

 {
    border-color: #aaa;
    box-shadow: 0 0 1px 2px rgba(62, 117, 147, .7);
    box-shadow: 0 0 0 3px -moz-mac-focusring;
    color: #222;
    outline: none;
}

 .changeportal
 {
     float: left;
     margin-top: 7px;
 }
/****************/

/**** Admin ****/

.AccessGroupsContainer
{
    /*height: 100%;*/
    /*position: absolute;
    top: 0px;
    bottom: 0px;*/    
    
    overflow: hidden;    
}

.AccessGroupsContainer select.select-css
{
    /*margin-left: 4px !important;*/
}

    .AccessGroupsDataTitle {
        font-size: 13px !important;
        line-height: 180%;
        padding-left: 2px;
        margin-bottom: 15px;
        color: #555;
        font-weight: bold;
        border-bottom: 2px solid #aaa;
        text-align: left;
    }

.AccessGroupsData {
    color: #555;
    font-size: 12px;
    padding: 20px;
    width: 205px;
    float: left;
}

.AccessGroupsData select
{
    margin-bottom: 5px;
}

.AccessGroupsData p
{
    padding-left: 6px;
    margin-top: 0px;
}

.AccessGroupsData input:disabled
{    
    opacity: 0.6;
}

.AccessGroupsData input[type=submit]
{
    /*float: right;*/
}

.AccessGroupsDataHeader
{
    padding-left: 2px;
}

.AccessGroupsTop
{
    /*position: absolute;
    top: 0px;
    bottom: 100px;*/
}

.AccessGroupsGridDiv
{
    position: absolute;
    height: 200px;
    top: 160px;            
}


/*** Print tool ***/
#printtool-printscale-scalebuttons input {
    font-size: 10px;
    padding: 5px;
    /*width: auto;*/
    width: 50px;
}

#printtool-printscale-scalebuttons input:disabled {
    opacity: 0.4;
    color: #ffffffaa;
}


/*** Symbol tool */
#selectedsymbol {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #ccc;
    border: 5px solid #ccc;
    border-radius: 8px;
}

#selectedsymbol:hover {    
    background-color: #dadada;    
     border: 5px solid #dadada;
    cursor: pointer;
}

#previewsymbol:empty {
    display: none;
}

#previewsymbol{
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #ccc;
    border: 5px solid #ccc;
    border-radius: 8px;
}

#symbolgrid {    
    margin-left: 14px;
}

#symbolgrid img 
{
    float: left;   
    margin-right: 10px;  
    user-select: none;
    -webkit-user-drag: none;
    opacity: 0.9;
    /*box-sizing: border-box;*/
}

#symbolgrid img:hover
{
    background-color: #dadada;    
    border: 2px solid #dadada;
    cursor: pointer;
    opacity: 1;
}

#symbolgrid img.selectedsymbol{
    border: 2px solid #fff;
    background-color: #fff;  
    opacity: 1;
}


.symboliconnew
{       
    width: 42px;
    height: 42px;
    margin-top: 2px;
    margin-bottom: 2px;
    background-color: #ccc;
    border: 2px solid #ccc;
    border-radius: 8px;
}


/* Area report */

.flex-break {
    flex-basis: 100%; 
    height: 0;
}

.extrainfo-container {
    display: flex;
    flex-direction: column;
    font-size: 11px;    
    overflow-y: auto;
}

.extrainfo-row {
    display: flex;
    border-bottom: 1px solid #dddddd44;    
}

.extrainfo-header {
    font-weight: bold;
    color: #fff;
    /*background: linear-gradient(0deg, #3e7593 0%, transparent 55%);    */
    background-color: #3e7593;
    border-radius: 5px;
}

.extrainfo-cell {
    flex: 1;
    padding: 10px;
    box-sizing: border-box;
    border-right: 1px solid #dddddd44;
    width: 70px;
    overflow: hidden;
}

.extrainfo-row:last-child .cell {
    border-bottom: none;
}

.extrainfo-cell:last-child {
    border-right: none;
}


/*****************/

.ui-progressbar .ui-progressbar-value {
    background: #3e7593 !important;
}


/***************/
.ui-igdialog-overlay {
    backdrop-filter: blur(0.9px);
    opacity: 1;
    background-color: #00000055;
}


/*.ui-igdialog-overlay
{
    backdrop-filter: blur(6px); 
    -webkit-backdrop-filter: blur(6px);        
}


.ui-dialog
{
    background: rgba(62, 117, 147, 0.5) !important;
    
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

.ui-igdialog .ui-igdialog-content, .ui-igdialog-content
{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.ui-dialog-titlebar
{
    background: rgba(62, 117, 147, 0.4) !important;   
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);  
    color: #111;            
    border-top-right-radius: 10px !important;
    border-left-right-radius: 10px !important;
}

.ui-dialog, .ui-dialog.ui-igdialog
{
    background: transparent;
}

.ui-igdialog .ui-igdialog-content, .ui-igdialog-content
{
 
}*/


/* igCombo */

.igcomboitem
{
    vertical-align: middle;
    line-height: 20px;
}

.igcomboitem img
{
    height: 20px;
    vertical-align: bottom;
    width: 20px;
}

.igcomboitem span
{
    padding-left: 7px;           
    padding-right: 7px;           
}


/* igTree */

.ui-igtree-node.ui-igtree-noderoot.ui-igtree-node-nochildren {
    /*display: none;*/
    opacity: 0.6;
    pointer-events: none;
}

/* text */
.ui-igtree-node.ui-igtree-noderoot.ui-igtree-node-nochildren > a
{
    
}


/* overrides infragistics */
.ui-igcombo-fieldholder input {
    border: none;
}

.ui-igcombo-button
{
    background-color: white;
}

.uploadToArchiveFrame {
    /*width: 50%;
    height: 50%;
    position: absolute;
    top: 20px;
    z-index: 1000;
    background-color: white;*/
}

#dropArea {
    display: none; /* Initially hidden */
    border: 1px dashed #aaa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    position: fixed;
    top: 15%;
    left: 30%;
    width: 40%;
    height: 70%;
    z-index: 1000;
    background-color: #ddd;
}

    #dropArea.visible {
        display: flex; /* Visible when dragging files */
        flex-direction: column;
    }

    #dropArea .closebutton {        
        height: 20px;
        transition: 0.3s ease-in-out;
        opacity: 0.5;
        position: absolute;
        right: 10px;
    }

    #dropArea .closebutton:hover {
        /*content: url("image2.jpg"); */
        opacity: 1;
        cursor: pointer;
    }    

    #dropArea h1 {
        color: #333;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-weight: normal;
        margin-bottom: 10px;
    }

progress.upload-progress {
    width: 95%;
    margin-bottom: 2px;
    accent-color: #3e7593;
}

/*progress.upload-progress::-webkit-progress-bar {
    background-color: red;
}

progress.upload-progress::-webkit-progress-value {
    background-color: blue;
}*/

td[role="gridcell"] p {
    max-height: 50px;
    text-overflow: ellipsis;
}

.upload-grid-container {
    display: grid;
    /*grid-template-columns: repeat(3, 1fr); */ /* 3 columns of equal width */
    grid-template-columns: 2fr 120px 1fr 30px;
    gap: 0px; /* Space between rows and columns */
    margin: 20px;
    padding: 10px;
    /*border: 1px solid #ccc;*/
    /*background-color: #f9f9f9;*/
    flex: 1;
    overflow: auto;
    grid-auto-rows: 30px;
}

    .upload-grid-container .grid-item-statusimage {
        width: 15px;
        margin-top: 1px;
        opacity: 0.7;
        padding-bottom: 5px;        
        padding-top: 5px;
    }

    .upload-grid-container .grid-item {
        text-align: left;
        margin: -1px;
        border-bottom: 1px solid #bbbbbb77;
        padding-bottom: 5px;
        padding-top: 5px;
    }

.upload-grid-container td[role="gridcell"] p {
    max-height: 57px;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 0px;
}

.upload-grid-container .progress-bar {
    width: 0%;
    height: 20px;
    background-color: #4CAF50;
    text-align: center;
    line-height: 20px;
    color: white;
    transition: width 0.4s ease;
    border-radius: 3px;
    font-size: 11px;
}


.edit-grid-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: absolute;
}

.login-mfa-header
{    
    text-align: center;
}

.login-mfa-header h1 {
    color: #000000aa;
    font-size: 16px;
}

.login-mfa-header div {
    padding: 12px;
    font-size: 12px;
}

/*.igtree-loading {
    background: url('path/to/your/custom-loading.gif') no-repeat center center;
    width: 100px;*/ /* Set appropriate width */
/*height: 100px;*/ /* Set appropriate height */
/* Add any other necessary styling */
/*}*/
#notification-container {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    touch-action: none;
    pointer-events: none;
}

/* Grundläggande stil för varje notis */
.notification {
    margin-top: 10px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    opacity: 0;
}

/* exit button in viewer */
.viewer_exitarea {
    width: auto;
    height: 20px;
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 13px;
    right: 10px;
    background-color: #333;
    padding: 5px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    z-index: 50000;
    transition: all linear 0.3s;
}

.mobileBackground {
    background: rgb(79,84,88);
    background: linear-gradient(90deg, rgba(79,84,88,1) 0%, rgba(69,100,131,1) 50%, rgba(96,74,74,0.9976365546218487) 100%);
}

.viewer_exitarea img
{
    height: 20px;   
    opacity: 0.7;
}

.viewer_exitarea img:hover {        
    opacity: 1;
}

.RunTestsContainer
{
    padding: 10px;
}

.RunTests {
}

.RunTests h1 {
    font-size: 15px;
    color: #3e7593;
}

.RunTests p {
    font-size: 12px;
}

.RunTests p.subitem {
    padding-left: 25px;    
}




.flexcontainer {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Full viewport height */
    gap: 3px;
}

.flextop, .flexbottom {
    background-color: lightgray;
    padding: 20px;
}

/* Middle div takes up available space */
.flexmiddle {
    flex: 1;
    background-color: lightblue;
    overflow-y: auto; /* Scrollable if content overflows */
}

.roundedcard {
    background-color: white;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-left: 2px;
    margin-right: 2px;
}

.print_rotationreset_warning {
    color: #e36666;
    font-weight: bold;
    font-size: 110%;
}

img[alt="Close"]:hover {
    cursor: pointer;
}

img {
    -webkit-user-drag: none; /* För WebKit-webbläsare */
    user-drag: none; /* Standard, om framtida stöd */
}

/**** INFRAGISTICS OVERRIDES */
/* Feature list container */
.ui-widget-content:has(.ui-iggrid-featurechooser-list) {
    border-radius: 7px;
}

/* Feature list */
.ui-iggrid-featurechooser-list {
    background-color: transparent !important;
    display: flex !important;
    width: auto !important;
    border-radius: 10px;
}

/* Feature list items */
.ui-iggrid-featurechooser-list li {
    /*width: 120px !important;*/        
}
    
.ui-iggrid-featurechooser-list li:hover {
    background-color: #ffffffbb !important;    
}

/* ui-icon ui-iggrid-icon-column-chooser*/

/* Feature list first item */
.ui-iggrid-featurechooser-list li:first-child {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

/* Feature list last item */
.ui-iggrid-featurechooser-list li:last-child {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}
    
/* Feature list separator */
.ui-iggrid-featurechooser-separator {
    display: none !important;
}

/* Infragistics buttons */
.ui-igbutton {
    border-radius: 4px !important;
}

/* Infragistics dialog title bar */
.ui-dialog-titlebar {
    background-color: #538aa8;
}

/* Feature Column Sort remove buttons */
.ui-iggrid-sorting-dialog-sortbybuttons
{
    border: none !important;
}

/* Feature Column Sort remove button on hover */
.ui-igbutton.ui-state-hover > .ui-icon-circle-close {    
    color: #ddd !important;
}

/* Feature Group By - remove the <p> around $val in group by text */
.ui-iggrid-groupedrow td[data-gbsummary=true] p {
    display: inline;
    margin: 0; /* Remove any additional space around the text */
}

.ui-iggrid-expandbuttoncontainer-group-by
{
    display: flex !important;
}

.ui-iggrid-expandbutton {
    margin: auto !important;
}

.ui-iggrid-groupedrow {
    height: 30px !important;
    background-color: #e0e0e0 !important;
    font-weight: bold;
}