.environment-container {
  background-color: #00A0D0;
  color: #fff;
  position: fixed;
  height: 15px;
  top: 0;
  width: 200px;
  left: calc(50% - 100px); /* Move to right from center for half width of AEM tools sidebar */
  z-index: 99999;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: opacity 1s 0s ease;
  -webkit-transition: opacity 1s 0s ease;
  -moz-transition: opacity 1s 0s ease;
}

.environment-container:hover {
  opacity: 0;
  transition: opacity 0.2s 0s ease;
  -webkit-transition: opacity 0.2s 0s ease;
  -moz-transition: opacity 0.2s 0s ease;
}

.environment-container:hover p {
  display: none;
}

.environment-label {
  height: 100%;
  width: 100%;
  margin: 0 0;
  padding: 0;
  text-align: center;
  font-size: 10px;
}
