.animation__switch {
  position: relative;
}
.animation__switch:hover {
  opacity: 0.7;
}
.animation__switch:after,
.animation__switch:before {
  position: absolute;
  top: 45%;
  right: 16px;
  width: 16px;
  height: 2px;
  background-color: #0a6371;
  content: '';
}
@media (max-width: 767px) {
  .animation__switch:after,
  .animation__switch:before {
    width: 8px;
  }
}
.animation__switch:after {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.animation__switch.collapsed:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
