  
   
        .bar-wrapper {
            width: 100%;
            height: 3 rem;
            position: fixed;
            left: 0;
            bottom: 0;
            background: #fff;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 0.01rem solid #eee;
            z-index: 2;
        }
        .bar-wrapper .bar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .bar-wrapper .bar-item .bar_icon {
            width: 1.5rem;
            height:1.5rem;
            margin-bottom: 0.05rem;
        }
        
        .bar-wrapper .bar-item .bar_home {
            background: url(/assets/icon/home.png) no-repeat;
            background-size: contain;
        }
        .bar-wrapper .bar-item .bar_search{
          background: url(/assets/icon/search.png) no-repeat;
          background-size: contain;
      }
        .bar-wrapper .bar-item .bar_booking{
            background: url(/assets/icon/booking.png) no-repeat;
            background-size: contain;
        }
        .bar-wrapper .bar-item .bar_workout {
            background: url(/assets/icon/workout.png) no-repeat;
            background-size: contain;
        }
        .bar-wrapper .bar-item .bar_my{
            background: url(/assets/icon/my.png) no-repeat;
            background-size: contain;
        }
        .bar-wrapper .bar-item .bar_text {
            font-size: 1.0 rem;
            color: rgba(102,102,102,1);
        }
/* 
        .agree-cookie {
            position: fixed;
            display: block;
            bottom: 1rem;
            left: 0;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
            z-index: 999
          }
          
          .agree-cookie.approved {
            display: none
          }
          
          .agree-cookie-inner {
            display: inline-flex;
            text-align: left;
            margin: 0 auto;
            max-width: calc(100% - 2rem);
            padding: .5rem;
            background-color: #fff;
            box-shadow: 0 3px 10px 0 rgba(0,0,0,.2)
          }
          
          .agree-cookie-inner:after {
            content: "";
            clear: both
          }
          
          .agree-cookie-inner .agree-cookie-content {
            font-size: 16px;
            padding: .5em
          } */