.region-tabs {
  font-size: 15px;
  left: 0;
  line-height: 36px;
  position: fixed;
  top: 50%;
  transform: translate(-100%, -50%);
  transition: all 0.3s ease 0s;
  z-index: 999;
}
.region-tabs h2,
.region-tabs .contextual {
  display: none;
}
.region-tabs .tabs {
  display: block;
}
.region-tabs .tabs ul {
  background-color: #f5f5f5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #cccccc;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.region-tabs .tabs ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.region-tabs .tabs ul li a {
  border-bottom: 1px solid #cccccc;
  color: #0d2e4e;
  display: block;
  padding: 0 25px 0 15px;
  text-decoration: none;
  transition: 0.3s ease 0s;
}
.region-tabs .tabs ul li a:hover {
  background-color: #ffffff;
}
.region-tabs .tabs ul li a.is-active {
  background-color: #ffffff;
  color: #ff4013;
}
.region-tabs .tabs ul li:last-child a {
  border-bottom: 0 none;
}
.region-tabs .toggle-tabs {
  background: #f5f5f5 url(./ic-pencil.svg) no-repeat scroll center center;
  border: 1px solid #cccccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  height: 38px;
  left: 100%;
  margin: 0 0 0 -1px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 38px;
}
.region-tabs.open {
  transform: translate(0, -50%);
}
