@media print, screen and (min-width: 768px) {
  .fixednav {
    position: fixed;
    right: 0;
    top: calc(100px*0.85);
    z-index: 999;
  }
  .fixednav__btn {
    width: calc(80px*0.85);
    height: calc(40px*0.85);
    background: #e60000;
    border-radius: 5px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .fixednav__btn:hover {
    opacity: 0.7;
  }
  .fixednav__btn .img-open {
    display: none;
  }
  .fixednav__btn .img-close {
    display: block;
  }
  .fixednav__btn.close {
    border-radius: 5px 0 0 5px;
  }
  .fixednav__btn.close .img-open {
    display: block;
  }
  .fixednav__btn.close .img-close {
    display: none;
  }
  .fixednav__list {
    width: calc(80px*0.85);
    font-size: 1.1rem;
    line-height: 1.2;
    border: 1px solid #ddd;
    border-radius: 0 0 0 5px;
    box-sizing: border-box;
  }
  .fixednav-item {
    border-bottom: 1px solid #ddd;
  }
  .fixednav-item:last-child {
    border-bottom: 0;
  }
  .fixednav-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: calc(78px*0.85);
    height: calc(78px*0.85);
    background: #fff;
  }
  .fixednav-item a img {
    width: 100%;
  }
  .fixednav-item a:hover {
    background: #fff0f0;
  }
  .fixednav-item--red a {
    background: #e60000;
    border-radius: 0 0 0 5px;
  }
  .fixednav-item--red a:hover {
    background: #e60000;
    opacity: 0.7;
  }
}

@media only screen and (max-width: 767px) {
  .fixednav {
    display: none;
  }
}

/*# sourceMappingURL=maps/fix-nav.css.map */
