@value highlightColor, panelBorderColor from '../colors.css';

.common {
  position: absolute;
  width: 64px;
  height: 64px;
  left: 6px;
  top: 58px;
  border-radius: 32px;
  border: none;
  padding: 0;
  background: white;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0 0 9px 3px panelBorderColor;
  display: none;
  z-index: 15;
}

.common:focus {
  outline: none;
  box-shadow: 0 0 9px 3px highlightColor;
}

.common:hover {
  background-color: rgb(248, 248, 248);
}

.collapsed {
  composes: common;
  background-image: url(../../images/filter.svg);
}

.expanded {
  composes: common;
  background-image: url(../../images/hideLeft.svg);
}

@media only screen
and (max-width: 768px) {
  .common {
    display: block;
  }
}
