.store-notify {
        height: 50px !important;
      }
      .pricesBar {
        position: fixed;
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        height: 50px;
        background-color: #fff;
        color: #000;
        margin: 0;
        padding: 0;
        z-index: 100000;
        top: 0;
        right: 0;
      }

      .pricesBar ul {
        padding: 0;
        margin: 0;
        width: 100%;
        list-style: none;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
      }

      .pricesBar ul li {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 5px;
      }

      .desktopMenu {
        display: flex;
        flex-direction: row;
      }

      .pos {
        color: green;
      }

      .pos + span::before {
        content: '';
        display: inline-block;
        margin: 0 3px 0 5px;
        width: 0;
        height: 0;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        border-image: initial;
        border-bottom: 9px solid green;
        border-top: none;
      }

      .neg {
        color: red;
      }

      .neg + span::before {
        content: '';
        display: inline-block;
        margin: 0 3px 0 5px;
        width: 0;
        height: 0;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        border-image: initial;
        border-top: 9px solid red;
        border-bottom: none;
      }

      .pricesBar .mobile {
        display: none !important;
        position: relative;
      }

      #arrow {
        position: absolute;
        border-radius: 50%;
        left: 15px;
        top: 40%;
        transform: rotate(180deg);
        cursor: pointer;
        filter: invert(1);
      }

      #arrow.active {
        transform: rotate(0deg);
      }

      .pricesBar .dropdown {
        position: absolute;
        background-color: #fff;
        width: 100%;
        top: 100%;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      #arrow.active + .dropdown {
        display: flex !important;
        flex-direction: column;
      }

      .pricesBar .dropdown li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px;
      }

      @media (max-width: 725px) {
        body {
          margin: 50px 0 0 0;
        }

        .pricesBar .desktop {
          display: none !important;
        }

        .pricesBar .mobile {
          display: flex !important;
        }
      }