/*
file for custom css
filename referenced in:
application/views/themes/perfex/head.php
application/views/admin/includes/head.php
*/
@-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);}
}
.uia_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 991;
    width: 36px;
    height: 36px;
    margin: -18px 0px 0px 0px;
    border: 8px solid #d1db45;
    border-radius: 50%;
    border-top: 8px solid black;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
  }
  .uia_overlay {
    position: absolute; /* Sit on top of the page content */
    min-height: 36px;
    display: none;
    width: 101%; /* Full width (cover the whole page) */
    height: 125%; /* Full height (cover the whole page) */
    top: -5px;
    left: -5px;
    padding: 10px;
    /*border-radius: 5px;*/
    background-color: rgba(0, 0, 0, 0.25); /* Black background with opacity */
    z-index: 990; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
  }
  .uia_overlay_wrapper {
    position: relative;
    min-height: 36px;
    /*border-style:solid;
    border-width: 1px;
    border-color: red;*/
}
.site_table{
	width: 100%;
	margin-bottom: 30px;
	border-top: 1px solid #A3A3A3;
}
.serv_table{
	width: 100%;
}
.site_table th {
	padding: 5px;
}
.serv_table td {
	padding: 5px;
	border:2px solid #E3E8EE;
}
.serv_table th {
	padding: 5px;
	font-weight: bold;
	border:2px solid #E3E8EE;
	background-color: #F9FAFC;
}
.hidden-td {
	display: none;
}
.uia_dispo {
  background-color: #989898;
  /*border: 2px solid #989898;*/
  color: white;
  display: inline-block; 
  padding: 2px;
  margin: 2px; 
  border-radius: 5px; 
  /*font-weight: bold;*/
}
.uia_projtasksummary {
  width: 100%;
}
.uia_projtasksummary td{
  padding: 5px;
}
.task-item td{
  border-top-style: solid;
 border-top-color: #989898;
 border-top-width: 1px;
}
.uia_legacy_label {
  color: white;
  font-weight: bold;
  background-color:#ff6f00;
  padding: 1px;
  border-radius:0.25em;
}

/* Style APView */
div.apview-interfaces table tr:first-child {
  font-weight: bold;
  border-bottom: 1px solid black;
}

div.apview-sysinfo {
  width: auto;
}

div.apview table tr:nth-child(even) {
  background-color: #f1f1f1;
}

div.apview th, div.apview td {
  padding: 3px 3px 3px 3px;
  white-space: nowrap;
}

div.apview th:not(:last-child), div.apview td:not(:last-child) {
  border-right: 1px solid #d1d1d1;
}

div.apview-interfaces {
  overflow-x: auto;
}

div.apview div h2 {
  font-size: 18px !important;
  font-weight: bold !important;
}
.uia_copiedcomment {
  background-color:#faf5ed;
  padding: 5px;
}
#side-menu, #setup-menu-wrapper {
  position: fixed;
  overflow-y: scroll;
  height: 100%;
  padding-bottom: 100px;
}