<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.blender {
  overflow-y: hidden;
}

.blenderContent {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
  
  overflow-y: hidden;

  background-color: white;

  visibility: visible;
  opacity: 0.0;
  -webkit-transition: all 1.0s ease-in;
  transition: all 1.0s ease-in;
  transform: scale(0.95)
}

.blenderList {
  position: absolute;
  top: 0px;
  left: 0px;
//  height: 500px;
//  width: 500px;
//  border: 1px solid black;
  
  opacity: 0.0;
}

.blenderBlend {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
//  border: 1px solid black;
}

.blenderItem {
  margin-bottom: 5px;
}

.zoomIn {
  transform: scale(1.0);
}


.blendIn {
  opacity: 1.0;
}

.blendOut {
  opacity: 0.0;
  top: -20px;
//  transform: scale(1.05);
}</pre></body></html>