/* media */

/* Styles for mobile screens (up to 767px) */
@media (max-width: 767px) {
  .floating-setting-nav {
    display: none;
  }
  /* Additional mobile-specific styles */

  .nav--icons {
    position: fixed;
    bottom: 2em;
    left: 1em;
    right: 1em;
    width: 100%;
    z-index: 1000;
  }

  .nav--icons ul {
    list-style-type: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    width: 90%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 2em;
  }

  .nav--icons ul li a {
    font-family: sans-serif;
    font-size: 11px;
    /* letter-spacing: 1px; */
    text-decoration: none;
    color: #000;
    line-height: 1;
    vertical-align: middle;
    display: flex;
    align-items: center;
    border-radius: 3em;
    padding: 0.75em 1.25em;
    transition: 0.6s ease-in-out;
  }

  .icon-profile {
    max-width: 30px !important;
    opacity: 1 !important;
  }
  .nav--icons ul li a span {
    display: inline-block;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    padding-left: 0em;
    transform: translate3d(-0.5em, 0, 0);
    transition: opacity 0.6s, max-width 0.6s, transform 0.6s;
    transition-timing-function: ease-in-out;
  }

  .nav--icons ul li a:hover,
  .nav--icons ul li a.is-active {
    color: #fff;
    background-color: #bebcbc;
  }

  .nav--icons ul li a:hover span,
  .nav--icons ul li a.is-active span {
    opacity: 1;
    max-width: 80px;
    transform: translate3d(0, 0, 0);
  }
  /* ... */
}

/* Styles for tablets and larger screens (768px and above) */
@media (min-width: 768px) {
  .floating-setting-phone {
    display: none;
  }
  /* Additional styles for larger screens */
  .floating-setting-nav {
    position: fixed;
    width: 240px;
    padding: 10px;
    z-index: 9;
    top: 25%;
  }
  .floating-setting-nav:before {
    position: absolute;
    top: 0;
    width: 80px;
    content: "";
    height: 100%;
    border-radius: 10px;
    background: #fff;
    -webkit-box-shadow: 1px 0 10px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 1px 0 10px 0 rgba(0, 0, 0, 0.5);
  }
  .floating-setting-nav ul {
    position: relative;
    margin-left: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 15px;
  }
  .floating-setting-nav ul li {
    margin-bottom: 5px;
  }
  .floating-setting-nav ul li .seperator {
    display: block;
    height: 1px;
    background: #ddd;
    width: 50px;
    left: 0;
  }
  .floating-setting-nav ul li a {
    display: block;
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
  }
  .floating-setting-nav ul li a i {
    margin-right: 25px;
    color: var(--bs-light);
  }
  .floating-setting-nav ul li a strong {
    opacity: 0;
    visibility: hidden;
  }
  .floating-setting-nav ul li:hover a {
    background: var(--bs-light);
    color: #fff;
  }
  .floating-setting-nav ul li:hover a strong {
    opacity: 1;
    visibility: visible;
  }
  .floating-setting-nav ul li:hover a i {
    color: #fff;
  }

  /* ... */
}
