﻿@charset "utf-8";

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media only screen and (min-width: 768px) {
  .top-of-page {
    bottom: 40px;
  }
}

.sticky-show {
  right: -51px !important;
}

.sticky-show-down {
  bottom: -56px !important;
}

@media only screen and (max-width: 767.98px) {
  .sticky-show-down ~ .top-of-page {
    bottom: 12px;
  }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
  .sticky-show-down ~ .top-of-page {
    bottom: 22px;
  }
}

.sticky {
  position: fixed;
  z-index: 1003;
  bottom: 0px;
  width: 100%;
  left: 0px;
  transition: bottom 0.4s ease, right 0.4s ease;
}

@media only screen and (min-width: 768px) {
  .sticky {
    right: 0px;
    top: 55%;
    bottom: auto;
    width: auto;
    left: unset;
    margin-top: -30px;
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) and (max-height: 670px) {
  .sticky {
    top: 210px;
    transform: none;
  }
}

.sticky .arrow {
  position: absolute;
  top: 50%;
  right: 45px;
  font-size: 20px;
  transform: translateY(-50%);
}

.sticky .arrow i {
  background-color: #db9b01;
  color: #ffffff;
  padding: 0.5rem 0.5rem 0.5rem 0.7rem;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}

.sticky .arrow-down {
  position: absolute;
  bottom: 53px;
  left: 50%;
  font-size: 22px;
  transform: translate(-50%, 0);
}

.sticky .arrow-down i {
  background-color: #db9b01;
  color: #ffffff;
  padding: 7px 12px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
  .sticky .arrow-down {
    bottom: 68px;
  }
}

.sticky ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 100%;
  padding-left: 0;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .sticky ul {
    flex-direction: column;
    width: auto;
  }
}

.sticky li {
  list-style: none;
  background-color: #db9b01;
  width: 25%;
  transition: width 0.2s;
  text-align: center;
  justify-content: center;
}

@media only screen and (min-width: 768px) {
  .sticky li {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
    width: 50px;
  }
}

@media only screen and (max-width: 767.98px) {
  .sticky li {
    width: 20%;
  }
}

.sticky li > a {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 12px 0;
  width: 100%;
  text-decoration: none !important;
}

@media only screen and (min-width: 768px) {
  .sticky li > a {
    height: 50px;
  }
}

@media only screen and (max-width: 767.98px) {
  .sticky li > a {
    flex-wrap: wrap;
    flex-direction: column;
    padding-bottom: 6px;
    font-size: 0.85rem;
  }
}

.sticky li > a > span {
  white-space: nowrap;
}

.sticky li i {
  color: white;
  font-size: 19px;
  display: inline-block;
}

@media only screen and (max-width: 767.98px) {
  .sticky li i {
    margin-bottom: 0.1rem;
  }
}

.sticky .sticky-name {
  padding-left: 6px;
  display: none;
  color: #ffffff;
}

@media only screen and (min-width: 768px) {
  .sticky .sticky-name {
    padding-left: 10px;
  }
}

@media only screen and (max-width: 767.98px) {
  .sticky .sticky-name {
    display: block;
    padding-left: 0;
  }
}

.sticky li:hover {
  flex-direction: row;
  align-items: center;
  background-color: #222222;
  z-index: 99;
}

@media only screen and (min-width: 768px) {
  .sticky li:hover .sticky-name {
    display: inline-block;
  }
}

@media only screen and (min-width: 768px) {
  .sticky li:hover {
    display: flex;
    width: 165px;
  }
}

@media only screen and (max-width: 767.98px) {
  .sticky li:hover {
    background-color: #222222;
    color: #bfa568;
    text-align: center;
    justify-content: center;
  }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
  .sticky ul li:first-child {
    padding-left: 0.5rem;
  }
  .sticky ul li:last-child {
    padding-right: 0.5rem;
  }
  .sticky ul li > a {
    padding-bottom: 1.5rem;
  }
}
