﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 60px;
    /*padding-bottom: 20px;*/
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
/*    max-width: 280px; */
    max-width: 100%;
}


/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}

p.notice {
    background-color: #DDA0DD;
    padding: 15px;
    color: white;
    text-shadow: 1px 1px 2px #DA70D6;
}
p.notice-big {
    background-color: #DDA0DD;
    padding: 15px;
    color: white;
    text-shadow: 1px 1px 2px #DA70D6;
    font-size: xx-large;
}
div.notice {
    background-color: #DDA0DD;
    color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    width: 100%;
    min-height:50px;
}
/* Login */

.login-body {
    border: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Verdana,Arial,sans-serif,Helvetica;
}

table.login-table {
    height:300px;
    width:40%;
    margin: 0px auto;
}

table.login-fields-table {
    width:40%;
}

table.mobile-table {
    font-size:4em;
    margin-left:20px;
}

.login-field {
    width: 100%;
    padding: 12px 23px;
    max-width:80%;
    border: 2px solid #999;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.login-field:focus,
.login-field:active {
    border: 2px solid #c2272d;
}
h1.login-greeting {
    text-align:center;
    font-size:2em;
    font-weight: bold;
    color: #999;
    margin-bottom:60px;
    margin-top:60px;
}

.login-button,
.csubmit
 {
    background-color: #c2272d;
    border: none;
    color: #fff;
    margin-top:20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

table.mobile-table .login-button {
    min-height: 200px;
}
.login-button:active,
.login-button:focus,
.login-button:hover,
.csubmit:active,
.csubmit:focus,
.csubmit:hover

 {
    border:none;
}
.csubmit {
    padding:15px;
    font-size:1em;
    width:100%;
}

/* Filter */

.filter-date {
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    background-color: #FFFFFF;
    background-image: none;
    color: #000000;
    font-family: Arial;
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
    padding: 4px 4px 4px 4px;
    margin: 0;
    text-align: left;
}

.filter-combo {
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    background-color: #FFFFFF;
    background-image: none;
    color: #000000;
    font-family: Arial;
    font-weight: normal;
    font-size: 13px;
    padding: 4px 4px 4px 4px;
    margin: 0;
    box-sizing: border-box;
}

.switch {
    position: relative;
    display: inline-block;
    width: 196px;
    height: 26px;
    margin-top: 5px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d30d0d;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #0dd30d;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(170px);
    -ms-transform: translateX(170px);
    transform: translateX(170px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 30px;
}

.slider.round:before {
    border-radius: 50%;
}


.switch_small {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 26px;
    margin-top: 5px;
}

.switch_small input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider_small {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d30d0d;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider_small:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider_small {
    background-color: #0dd30d;
}

input:focus + .slider_small {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider_small:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}

/* Rounded sliders */
.slider_small.round {
    border-radius: 30px;
}

.slider_small.round:before {
    border-radius: 50%;
}

.bmargin {
    margin-bottom:15px;
}

/* Data table */
.data-table {
    background-color: lightgray;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    min-height: 50px;
    text-align: left;
    padding: 6px;
    width: 100%;
}

.data-table-notice {
    background-color: #DDA0DD;
    color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    min-height: 50px;
    text-align: left;
    padding: 6px;
    width: 100%;
}

.data-label {
    width: 20%;
}

.data-value {
    font-weight: bold;
}

/* Menu */
.navbar-newitem {
    background: rgb(108,208,128);
}

.navbar-inverse {
    background: rgb(38,91,137);
    background: linear-gradient(0deg, rgba(38,91,137,1) 0%, rgba(51,121,182,1) 100%);
}

.navbar-inverse .navbar-nav .navbar-newitem > li > a {
    color: #fff;
}

.navbar-inverse .navbar-nav .navbar-newitem > li > a:hover,
.navbar-inverse .navbar-nav .navbar-newitem > li > a:focus {
    color: #bf0000;
}

.navbar-inverse .navbar-brand {
    color: #fff;
    font-weight: bold;
}

.navbar-newitem {
    color: #fff;
    font-weight: bold;
}

div.AuthFailure {
    padding: 30px;
    background-color: #09A519;
    color: white;
    margin-top: 10px;
    font-size: 2em;
    font-weight: bold;
    /*box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);*/
}

p.AuthFailure {
    margin: 0 0 10px;
    /*text-shadow: 0px 0px 6px #fff;*/
}
div.selectedwkp {
    /* border-right: 8px solid #bf0000; */
    
    margin-top: 5px;
}
div.material1 {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    margin-bottom:10px;
}
span.OrgName {
    font-size:0.9em;
    color: #999;
}

ul.RoleList {
    margin-top:15px;
}
li.RoleItem {
    font-size:0.9em;
}

/* Checkbox */
/* The container */
.cbcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top:15px;
}

/* Hide the browser's default radio button */
.cbcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.cbcontainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.cbcontainer input:checked ~ .checkmark {
  background-color: #c2272d;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.cbcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.cbcontainer .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
h2.wkplc {
    margin-top:15px;
}
h2.divtitle {
    text-align: center;
    color: #c2272d;
}

.popup {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.3);
    z-index: 2000;
}

.popup-inner {
    height: 110px;
    overflow: auto; /* auto Or scroll, depending on your needs*/
    /*max-width: 700px;
    width: 90%;
    padding: 40px;*/
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 2px 6px rgba(0,0,0,1);
    border-radius: 3px;
    background: #fff;
}

.popup-inner-larger {
    /*height: 600px;
    overflow: scroll;*/ /* auto Or scroll, depending on your needs (size of content) */
    max-width: 800px;
    width: 95%;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 2px 6px rgba(0,0,0,1);
    border-radius: 3px;
    background: #fff;
}

.popup-inner-xlarge {
    height: 600px;
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 1700px;
    width: 95%;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 2px 6px rgba(0,0,0,1);
    border-radius: 0px;
    background: #fff;
}

.loader {
    /*border: 16px solid #f3f3f3;
    border-top: 16px solid #c2272d;
    border-bottom: 16px solid #c2272d;

    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -webkit-animation: spin 2s linear infinite;
    clear: none;
    float: left;*/
    background-image: url('../Images/spinner.gif');
    background-repeat: no-repeat;
    width: 90px;
    height: 90px;
    background-position: center;
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

div.kivhul {
    background-color:#E6E6FA;
    padding-top:10px;
}

p.slip-menu {
    text-align: center;
    margin-left: 10px;
    margin-top: 15px;
    background: linear-gradient(0deg, rgba(38,91,137,1) 0%, rgba(51,121,182,1) 100%);
    width: 50px;
    height: 33px;
    display: inline-block;
}

div.leftpanel_off {
    float: left;
    width: 0%;
    left: -300px;
    display: block;
    transition: 1s;
    position:relative;
   
}
div.leftpanel_on {
    float: left;
    width: 230px;
    display: block;
    transition: 1s;
    left: 0px;
    position: relative;
}

div.rightpanel_on {
    float: left;
    width: 100%;
    transition: 1s;
}

div.rightpanel_off {
    float: left;
    width: calc(100% - 230px);
    transition: 1s;
}

ul.leftmenu {
    list-style-type: none;
    background: linear-gradient(to left, #0080C0 0%, #006980 100%);
    margin-left:-20px;
}
li.limenuitem {
    font-size: 1.2em;
    margin-top:10px;
}

li.limenuitem > a {
    color: white;
}

div.bluebackc {
    background-color:#0080C0;
    height:100%;
}

.cbut {
    padding-left:20px;
    padding-right: 20px;
    background-color: #3370b7;
    color: #ffffff;
    margin:5px;
    border: 1px solid #2e6da4;
    min-width:150px;
}
input.cbut:hover {
    color: #ffffff;
}
p.lp {
    font-style: italic;
    font-size:1.8em;
    text-align:center;
}
.hideelement
{display:none;}

.mc {
    margin-left:0px;
}

.rotate {
    -moz-transform: rotate(-90.0deg);
    -o-transform: rotate(-90.0deg);
    -webkit-transform: rotate(-90.0deg);
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0.083);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0.083)";
    transform: rotate(-90.0deg);
}
table.ras {
    margin:30px;
    table-layout:fixed;
    border:1px solid #999;
}
td.rolename,
td.assv,
td.orgname {
    padding: 10px;
    word-wrap: break-word;
}
td.assv, td.rolename {
    text-align: center;
    border-left: 1px dotted #999;
}

tr.rolehead
{
    font-weight: bold;
}
tr.odd {
    background-color:#efefef;
}
p.error {
    font-weight: bold;
    color:#bf0000;
}

/*Responsive*/
h1, .h1 {
    font-size: 30px;
}

.row{
    margin-right:0px;
    margin-left:0px;
}
.clearfix {
    clear: both;
}

.tablet-hidden{
    display:block;
}

.desktop-hidden{
    display: none;
}

    .desktop-hidden li span {
        color: #eee;
        font-size: 15px;
    }

    .mobile-hidden {
        display: block;
    }

.mobile-nav-user-container {
    width: calc(100% - 75px);
    float: left;
    padding-left:10px;
}

#doclisttable_wrapper, #userlist_wrapper, #bonclisttable_wrapper, #cornealisttable_wrapper, #pth-stat-result-table_wrapper {
    overflow-x: auto;
}

.kivhul .code {
    font-size: 1.5em;
    text-align: center;
    letter-spacing: 5px;
    margin-top: 10px;
    padding: 5px;
    /*width: calc(100% - 120px);*/
    border: 1px solid #000;
    border-radius: 10px;
    display: inline-block;
}

.kivhul .print {
    text-align: center;
    margin-top: 10px;
    width: 35px;
    display: inline-block;
}

    .kivhul .print span {
        font-size: 1.5em;
    }

.kivhul .back {
    text-align: center;
    margin-top: 10px;
    width: 35px;
    display: inline-block;
    margin-right: 5px;
}

    .kivhul .back span {
        font-size: 1.5em;
    }

.th-minwidth{
    width:140px !important;
}

.btn-minwidth {
    min-width: 70px;
}

.btn-refresh-filter {
    margin-top: 22px !important;
    float: right;
    width: 130px !important;
    margin-right: 15px;
}
/*.user-edit-table-container{
    padding:0;
    overflow-x:auto;
}*/
.user-edit-table-container .slider_small {
    display: none;
}

    .user-edit-table-container .switch_small input[type="checkbox"] {
        opacity: 1;
        width: 20px;
        height: 20px;
    }

    .user-edit-table-container .ras{
        margin:30px 0;
    }

    .user-edit-table-container .col-md-3, .user-edit-table-container .col-md-2 {
        padding-right: 0px;
        padding-left: 0px;
    }

#MainContent_FilterPozicio {
    max-width: 280px;
}

.filter-p {
    font-weight: bold;
    color: #e0dede;
    margin-top: 5px;
    font-size: 0.9em;
    margin-left: 15px;
    margin-right: 15px;
}

.modal-dialog .modal-header .close span {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
}

.custom-button-container {
    width: 215px;
    margin-left: auto;
    margin-right: auto;
}

.custom-button-container-short {
    width: 162px;
    margin-left: auto;
    margin-right: auto;
}

#doclisttable a{
    cursor:pointer;
}

td a {
    font-weight: bold;
}

#doclisttable td .deleted{
    background-color: red;
    padding: 2px 4px;
    color: #fff;
}

#doclisttable td .secret {
    background-color: orange;
    padding: 2px 4px;
    color: #fff;
}

#doclisttable td .archiv {
    background-color: blue;
    padding: 2px 4px;
    color: #fff;
}

.calendar-print {
    background-image: url('../Images/printer.png');
    width: 32px;
    height: 32px;
   /* position: absolute;
    right: 165px;
    bottom: 12px;*/
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top:25px;
}

@media (max-width: 1023px) and (min-width: 768px) {
    .tablet-hidden {
        display: none!important;
    }

    .tablet-show {
        display: block;
        margin-top: 20px!important;
        margin-bottom: 10px;
    }

    .th-minwidth {
        min-width: 140px !important;
    }

    .btn-admin {
        width: 100%;
        margin: 5px;
    }

        .user-edit-table-container {
            padding: 0;
            overflow-x: auto;
        }

        .user-edit-input-row .col-md-3, .user-edit-input-row .col-md-2 {
            padding-right: 0px;
            padding-left: 0px;
        }

    .filter-row input {
        width: 100%;
    }

    .btn-refresh-filter {
        margin-top: 0x;
        margin-bottom: 15px;
        float: right;
        width: 130px !important;
        margin-right: 15px;
    }

}

@media (max-width: 767px) {
    .tablet-hidden {
        display: none!important;
    }
    
    .desktop-hidden {
        display: block;
    }

    .mobile-hidden {
        display: none;
    }

    div.kivhul {
        margin-top: 10px;
    }

    .th-minwidth {
        min-width: 140px !important;
    }

    .btn-admin {
        width: 100%;
        margin: 5px;
    }

    .user-edit-table-container {
        padding: 0;
        overflow-x: auto;
    }

    .user-edit-input-row .col-md-3, .user-edit-input-row .col-md-2 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .filter-row input{
        width: 100%;
    }

    .btn-refresh-filter {
        margin-top:0px !important;
        margin-bottom: 5px;
        float: right;
        width: 130px !important;
        margin-right: 5px;
    }

    #MainContent_FilterPozicio {
        max-width: 100%;
    }

    .filter-p {
        font-weight: bold;
        color: #e0dede;
        margin-top: 5px;
        font-size: 0.9em;
        margin-left: 15px;
        margin-right: 15px;
        padding: 0 5px;
    }
}

/*@media (min-width: 1500px) {
    .container{
        max-width: 1260px;
    }
}*/


