.side-tabs {
  position: fixed;
  max-width: 500px;
  right: -324px;
  top: 10px;
  z-index: 101;
  margin: 0;
  padding: 0;
}
.fixed-right-wrap {
  position: fixed;
  top: 300px;
  z-index: 200;
  right: 0;
}
.fixed-right-wrap * {
  box-sizing: border-box;
}
.fixed-right-wrap .fixed-right-block {
  position: relative;
}
.fixed-right-wrap .fixed-right-block .fixed-btn {
  min-height: 238px;
  width: 44px;
  background: #fe8437;
  box-shadow: inset 0px -3px 0px rgba(0, 0, 0, 0.1);
  border-radius: 2px 0 0 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  vertical-align: top;
  position: relative;
  right: 0;
  transition: right 0.3s ease-in-out;
}
.fixed-right-wrap .fixed-right-block .fixed-btn:hover {
  background: #dc7230;
}
.fixed-right-wrap .fixed-right-block .fixed-btn .text {
  perspective: 100px;
  transform: rotate(-90deg) translateZ(0);
  font-weight: 600;
  will-change: transform;
  -webkit-transform-origin: 50% 51%;
  white-space: nowrap;
  direction: rtl;
  font-size: 17px;
  font-family: Arsenal, sans-serif;
  color: #fff;
}
.fixed-right-wrap .fixed-right-block .fixed-content {
  padding: 30px 20px;
  display: inline-block;
  background: #fff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.4);
  width: 370px;
  text-align: center;
  margin-left: -3px;
  position: absolute;
  right: -370px;
  transition: right 0.3s ease-in-out;
  border-radius: 2px;
}
@media (max-width: 479px) {
  .fixed-right-wrap .fixed-right-block .fixed-content {
    width: 280px;
    right: -280px;
  }
}
.fixed-right-wrap .fixed-right-block .fixed-content .title {
  font-family: Arsenal, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.fixed-right-wrap .fixed-right-block .fixed-content .subtitle {
  font-size: 16px;
  font-weight: 400;
  font-family: Arsenal, sans-serif;
  color: #000;
}
.fixed-right-wrap .fixed-right-block .fixed-content a, .fixed-right-wrap .fixed-right-block .fixed-content .fixed-content-btn {
     text-decoration: none;
    background: #169c9c;
    padding: 12px 18px;
    font-size: 17px;
    font-family: Arsenal, sans-serif;
    color: #fff;
    box-shadow: inset 0px -3px 0px rgba(0, 0, 0, 0.1), 7px 7px 0px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    display: inline-block;
    font-weight: 600;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 2px;
}