.floating_bookmarks_wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 10;
  width: 0;
  display: none;
  right: 50px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.floating_bookmarks_wrap .nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}

.floating_bookmarks_wrap .nav-inner a {
  display: block;
  position: relative;
  padding: 10px 0;
  opacity: 1;
}

.floating_bookmarks_wrap .nav-inner a .nav-indicator {
  width: 6px;
  height: 6px;
  border-radius: 300px;
  background-color: rgba(0,0,0,.5);
  -webkit-transition: background-color 170ms ease-out;
  -moz-transition: background-color 170ms ease-out;
  -ms-transition: background-color 170ms ease-out;
  -o-transition: background-color 170ms ease-out;
  transition: background-color 170ms ease-out;
}

.floating_bookmarks_wrap .nav-inner a .nav-text {
  position: absolute;
  top: 50%;
  height: 11px;
  margin-top: -5.5px;
  white-space: nowrap;
  line-height: 11px;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  font-family: Arial,Helvetica,sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0em;
  font-family: franklin-gothic-urw;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #dc4c28;
  opacity: 0;
  -webkit-transition: opacity 170ms ease-out,transform 170ms ease-out,right 0s 170ms;
  -moz-transition: opacity 170ms ease-out,transform 170ms ease-out,right 0s 170ms;
  -ms-transition: opacity 170ms ease-out,transform 170ms ease-out,right 0s 170ms;
  -o-transition: opacity 170ms ease-out,transform 170ms ease-out,right 0s 170ms;
  transition: opacity 170ms ease-out,transform 170ms ease-out,right 0s 170ms;
  display: block;
  right: 100vw;
  margin-right: 11px;
  text-align: right;
  -webkit-transform: translatex(20%);
  -moz-transform: translatex(20%);
  -ms-transform: translatex(20%);
  -o-transform: translatex(20%);
  transform: translatex(20%);
}

.floating_bookmarks_wrap .nav-inner a .nav-text span {
  display: inline-block;
  vertical-align: baseline;
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 100%;
}

.floating_bookmarks_wrap .nav-inner a.active .nav-indicator {
  background-color: #111;
}

.floating_bookmarks_wrap .nav-inner a:hover .nav-text {
  right: 100%;
  -webkit-transition: opacity 170ms ease-out,transform 170ms ease-out,right 0s 0s;
  -moz-transition: opacity 170ms ease-out,transform 170ms ease-out,right 0s 0s;
  -ms-transition: opacity 170ms ease-out,transform 170ms ease-out,right 0s 0s;
  -o-transition: opacity 170ms ease-out,transform 170ms ease-out,right 0s 0s;
  transition: opacity 170ms ease-out,transform 170ms ease-out,right 0s 0s;
  opacity: 1;
  -webkit-transform: translatex(0);
  -moz-transform: translatex(0);
  -ms-transform: translatex(0);
  -o-transform: translatex(0);
  transform: translatex(0);
}

@media screen and (min-width: 1080px) {
  .floating_bookmarks_wrap {
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: -webkit-flex;
	 display: flex;
  }
}