.fix-bottom {
  align-items: center;
  background-color: #CAB69E;
  /*background: red;*/
  border-radius: 20px;
  bottom: 120px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  position: fixed;
  right: 20px;
  width: 80px;
  z-index: 1000;
  @media screen and (max-width: 1016px) {
    border-radius: 20px 20px 0 0;
    bottom: env(safe-area-inset-bottom, 0);
    flex-direction: row;
    /*left: 0;*/
    /*right: 0;*/
    left: 50%;
    right: auto;
    transform: translate(-50%, 0) !important;
    width: 100%;
  }

  &.fix-bottom.off {
    display: none;
  }

  & a {
    align-items: center;
    border-bottom: 1px solid #efefef55;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 4px;
    row-gap: 4px;
    text-align: center;

    @media screen and (max-width: 1016px) {
      border-bottom: 0;
      border-right: 1px solid #efefef55;
      padding: 12px 0;
    }

    &:last-child {
      border-bottom: none;
      @media screen and (max-width: 1016px) {
        border-right: none;
      }
    }

    & i {
      height: 20px;
      width: 20px;
    }

    & span {
      color: #ffffff;
      font-size: 12px;
      font-weight: 500;
      position: relative;
      word-break: keep-all;

      &::before {
        background-color: #CAB69E;
        border-radius: 50%;
        bottom: -8px;
      + + + 9 content: '';
        height: 4px;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
        transition: all 0.2s ease-in-out;
        width: 4px;
      }
    }
  }

  & a:hover span::before {
    background-color: #2563eb;
  }
}