#card-console {
  background-color: rgba(255, 254, 251, 0.9);
  box-shadow: 0 2px 5px rgba(53, 35, 26, 0.5);
  color: rgba(0, 0, 0, 0.6);
  position: fixed;
  padding: 10px 30px 10px 15px;
  font-size: 14px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.4em;
  border-radius: 8px;
  width: 300px;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  height: 600px;
  z-index: 11;
  user-select: initial;
  transition: right 0.2s ease-out;
}
#card-console.out {
  right: -300px;
}
#card-console .logo {
  /*margin: -10px -15px -10px -15px;*/
  width: 70%;
  margin: 5px 15% -10px 15%;
  height: auto;
}
#card-console button,
#card-console select {
  width: 100%;
}
#card-console .handle {
  transform: rotate(-90deg);
  position: absolute;
  top: 48%;
  left: -64px;
  background-color: rgba(255, 254, 251, 0.9);
  box-shadow: -2px 0 5px rgba(53, 35, 26, 0.5);
  color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  cursor: pointer;
}
#card-console .handle:hover {
  background-color: rgba(200, 255, 255, 1);
}
#square-marker {
  width: 44px;
  height: 44px;
  position: absolute;
  background-color: rgba(0,255,255, 0.3);
  z-index: 10;
}
#square-marker.freeze {
  background-color: rgba(255,0,255, 0.3);
  border-radius: 50%;
}