* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  clear: both;
  letter-spacing: 0.1px;
  line-height: 1.4;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

.stage {
  z-index: 9999;
  position: absolute;
  top: 0px;
  display: flex;
  height: 100vh;
  width: 100%;
}

.panda {
  align-self: flex-end;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  background-image: url("/img/panda.png");
  background-size: 200px;
  background-repeat: no-repeat;
  height: 200px;
  margin: 0 auto 0 auto;
  transform-origin: bottom;
  width: 200px;
}
.bounce-6 {
  animation-name: bounce-6;
  animation-timing-function: ease;
}
@keyframes bounce-6 {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-100px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-7px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}

header {
  display: flex;
  position: fixed;
  width: 90%;
  left: 5%;
  border-radius: 3px;
  background-image: url("/img/banner.jpeg");
  background-size: cover;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.19);
  font-weight: normal;
  float: left;
  height: 60px;
  border-radius: 15px;
}

header img {
  display: inline-block;
  width: 120px;
  margin-left: 18px;
  margin-top: 8px;
}

header h1 {
  display: inline-block;
  font-family: Helvetica;
  padding: 20px 0;
  font-size: 1.6rem;
  color: rgb(48, 48, 48);
  overflow: hidden;
  white-space: nowrap;
  margin-left: 30px;
}

body {
  position: absolute;
  width: 90%;
  left: 5%;
}

#main {
  position: absolute;
  width: 100%;
  top: 60px;
}
#installation_list {
  position: relative;
  align-content: center;
  margin: 0 auto;
}

#installation_list th {
  padding: 1px 5px;
  text-align: left;
}

#installation_list td {
  padding: 0px 4px;
}

#installation_list tr:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: 1s;
}

.button_icon {
  border: solid 1px lightgray;
  color: black;
  border-radius: 6px;
  padding: 6px 6px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  font-size: 60%;
  height: 30px;
  width: 30px;
}

.zoho_link {
  background-color: rgba(0, 0, 0, 0);;
  width: 60px;
  color: rgba(0, 0, 0, 0);
  background-image: url(/img/zoho.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; 
  filter: grayscale(100%);
}

.button_icon:hover {
  background-color: darkgray;
  color: white;
  transition: 1s;
}

.zoho_link.button_icon:hover{
  color: rgba(0, 0, 0, 0);
  filter: grayscale(0%);
}


.unsigned {
  color: red;
}
.signed {
  color: green;
}

nav {
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 14px;
}

li {
  display: inline-block;
  list-style: none;
  vertical-align: center;
  color: rgb(48, 48, 48);
  text-decoration: none;
  cursor: pointer;
  font-size: 28px;
}
.li-icon,
.li-icon div a,
.button {
  display: inline-block;
  list-style: none;
  vertical-align: top;
  width: 60px;
  text-align: center;
  color: rgb(48, 48, 48);
  text-decoration: none;
  cursor: pointer;
  font-size: 28px;
}

.li-icon:hover,
nav a:hover,
.button:hover {
  border-radius: 10px;
  background-color: darkgray;
  color: white;
  transition: 1s;
  border-radius: 8px;
}

.settings-dropdown {
  display: none;
}

.settings-dropdown {
  position: absolute;
  right: 0px;
  padding-top: 5px;
}

.settings-dropdown li {
  display: block;
  text-align: left;
  padding: 8px 40px;
  background-color: rgba(209, 209, 209, 0.8);
  font-weight: bold;
  color: rgb(48, 48, 48);
  margin: 2px;
  margin-right: 0px;
  border-radius: 5px;
  font-size: 1.3rem;
  animation: fadeIn ease 2s;
  -webkit-animation: fadeIn ease 2s;
  -moz-animation: fadeIn ease 2s;
  -o-animation: fadeIn ease 2s;
  -ms-animation: fadeIn ease 2s;
}

.settings-dropdown li:hover {
  background-color: darkgray;
  color: white;
}

.settings:hover .settings-dropdown {
  display: block;
  transition: 2s;
}

.settings a {
  text-decoration: none;
  color: rgb(48, 48, 48);
}

.icon-inactive {
  color: lightgray;
}

.icon-inactive:hover {
  color: lightgray;
  cursor: default;
  background-color: white;
}

.add-button::after {
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  display: inline-block;
  font-weight: 600;
}

.delete-button::after {
  font-family: "Font Awesome 5 Free";
  content: "\f2ed";
  display: inline-block;
  font-weight: 100;
}

.hide_row {
  display: none;
}

#installation_list > thead > tr {
  cursor: pointer;
}

#search {
  position: relative;
  border-style: none;
  background-color: rgba(255, 255, 255, 0);
  color: rgba(0, 0, 0, 0.9);
  top: -2px;
  font-size: 60%;
}

.search {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.search > * {
  border: solid rgba(0, 0, 0, 0) 1px;
  color: darkgray;
  background-color: none;
  vertical-align: center;
}

.search:hover {
  border: solid rgba(0, 0, 0, 0.9) 1px;
}

.deployment_tab,
.config_tab {
  font-size: 20px;
  min-width: 180px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.05);
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.1);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 10px;
}

.deployment_tab_selected,
.config_tab_selected {
  background-color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.6);
  color: white;
  z-index: 10;
}

.add_tab {
  min-width: 0px;
}

[class*="nav-"] li:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  transition: 1s;
}

.deployment,
.config {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.01);
  border: solid rgba(0, 0, 0, 0.5) 1px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.config {
  position: relative;
}

[id*="deployment_"] {
  display: none;
}

[class*="container_configId_"] {
  display: none;
}

.deployment_selected {
  display: block;
}

.config_selected {
  display: block;
}

.module_config_body > div > * {
  display: block;
}

.config h1 {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  font-size: 20px;
}

.module_config_general {
  display: inline-block;
  margin-right: 25px;
}
.module_config_general input {
  height: 25px;
}

.config > div {
  display: inline;
}

.module_config_body {
  display: block;
}

.config button,
.config select,
.config input {
  margin: 2px;
  height: auto;
}

#destination {
  min-width: 250px;
}

#expiry {
  padding: 4px;
}

.delete {
  position: absolute;
  right: 25px;
}

.unsaved-changes {
  color: red;
  animation: blinker 1s linear infinite;
}
.unsaved-changes:hover {
  animation: none;
  color: white;
  transition: 1s;
}

@keyframes blinker {
  50% {
    opacity: 0.5;
  }
}

#loader {
  position: absolute;
  text-align: center;
  align-content: center;
  vertical-align: center;
  top: 0px;
  left: -50%;
  width: 200%;
  z-index: 1000;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
}

.hide {
  display: none;
}

.loader {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #3498db;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.installation_details {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

/* Unvisited link  */
a {
  color:rgb(4, 4, 177);
  text-decoration: none;
}
   
/* Visited link    */
a:visited {
  color:rgb(4, 4, 177);
} 

a:hover {
  color:rgba(0, 150, 255, 1);

}   /* Mouse over link */
a:active {color:#0000FF;}  /* Selected link   */

.installation_details textarea {
  display: inline-block;
  position: absolute;
  height: calc(100% - 15px);
  width: 60%;
  right: 0px;
  resize: none;
  top: 15px;
  border-radius: 3px;
  border: solid rgba(0, 0, 0, 0.5) 1px;
}

.installation_state_WARNING {
  color: orange;
}
.installation_state_WARNING::after {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 600;
}

.installation_state_EXPIRED {
  color: red;
}
.installation_state_EXPIRED::after {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 600;
}

.installation_state_OK {
  color: green;
}
.installation_state_OK::after {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
}

.installation_details table {
  display: inline-block;
  padding: 15px 0px;
}

.installation_details table td {
  padding-right: 15px;
}

.installation_details .td-lable {
  font-weight: bold;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.login{
  position: absolute;
  top: 20vh;
  left: 50%;
}

.login h2{
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.form-signin{
  position: relative;
  left: -50%;
  background-color: rgba(0, 0, 0, 0.03);
  padding: 30px;
  border-radius: 7px;
}

.form-signin td{
  padding: 4px 5px;
}

.login button{
  margin-top: 10px;
  width: 100%;
}