.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9999;
  }

  .header__navbar {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    font-weight: 700;
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 2px 2px rgb(0 0 0 / 6%), 0 0 2px rgb(0 0 0 / 7%);
    border-bottom: 1px solid #fff;
    z-index: 10;
  }

  .header__content {
    display: flex;
    height: 100%;
    align-items: center;
  }

  .nav__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
  }
  .header__navbar-logo {
    width: 51px;
    height: auto;
    text-decoration: none;
  }
  .navbar__list {
    display: flex;
    list-style: none;
    align-items: center;
    font-size: var(--text-font);
    margin-left: 40px;
    text-transform: uppercase;
  }
  .navbar__list-item {
    display: list-item;
    height: var(--header-height);
  }
  
  .list__item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: var(--header-height);
    margin-right: 24px;
    color: rgba(0, 0, 0, .87);
    letter-spacing: 1px;
  }
  
  .list__item-menu {
    box-shadow: inset 0 -6px #00754a;
  }
  
  .header__info {
    display: flex;
    font-size: var(--text-font);
    font-weight: 600;
    font-size: 1.4rem;
    align-items: center;
  }
  
  .sign__btn {
    text-decoration: none;
    color: rgba(0, 0, 0, .87);
    background: none;
    border-radius: 50px;
    border-style: solid;
    border-width: 1px;
    display: inline-block;
    font-weight: 600;
    line-height: 1.2;
    padding: 7px 16px;
    text-align: center;
    text-decoration: none;
    transition: all .2s ease;
  }
  
  .locate {
    margin-right: 40px;
    padding-right: 8px;
  }
  .locate:hover {
    color: #00754a;
  }
  
  .locate i {
    transform: translateY(2px);
    font-size: 20px;
    padding-right: 6px;
  }
  .user-item__link {
    font-size: 13px;
    text-decoration: none;
    color: rgba(0, 0, 0, .87);
    font-weight: 700;
  }
  
  .locate__icon-map {
    padding-right: 8px;
    font-size: 20px;
  }
  
  .btn__sign-in {
    margin-right: 16px;
  
  }
  
  .btn__join-now {
    background-color: #000;
    border-color: #000;
    color: #fff;
  }
  
  .list__item:hover,
  .header__info:hover {
    cursor: pointer;
    color: #00754a;
  }
  
  .btn__sign-in:hover {
    background-color: rgba(0, 0, 0, .06);
  }
  
  .btn__join-now:hover {
    background-color: rgba(0, 0, 0, .7);
    border-color: rgba(0, 0, 0, .7);
  }
  .header__menu {
    width: 100%;
    height: var(--menu-height);
    background-color: #f9f9f9;
    /* display: flex; */
    padding-left: 131px;
    padding-right: 40px;
    border: 1px solid #edebe9;
    display: flex;
    align-items: center;
  }
  /* start mobile */
  .header__menu-bars {
    margin-right: 24px;
      font-size: 24px;
      user-select: none;
      transition: all linear 0.2s;
      display: none;
  }
  .header__menu-exit {
    margin-right: 32px;
      font-size: 32px;
      user-select: none;
      display: none;
  }
  .nav__mobile {
    position: fixed;
    top: 83px;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 100%;
    background-color: #fff;
    z-index: 3;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
    display: none;
    transform: translateX(101%);
    transition: all linear 0.2s;
  }
  .nav__mobile-list {
    margin: 24px 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  }
  
  .nav__mobile-list__item {
    width: 100%;
  }
  
  .nav__mobile-list__item-link {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    padding: 20px;
    width: 100%;
  }
  
  .nav__info {
    padding: 40px;
    height: auto;
  }
  .nav__sign {
    min-height: 50px;
  }
  .header__find {
    font-size: 20px;
  }
  
  .nav-sign__btn {
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 7px 16px;
    line-height: 1.2rem;
    font-size: 14px;
    margin-right: 12px;
  }
  
  
  .overlay {
    position: fixed;
    top: 83px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    display: none;
  }
  
  .nav-input:checked~.overlay {
    display: block;
  }
  
  .nav-input:checked~.nav__mobile {
    transform: translateX(0%);
  }
  
  .nav-input:checked~body {
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
  .btn {
    padding: 7px 16px;
    border: 1px solid #000;
    border-radius: 50px;
    line-height: 1.2;
  }
  
  .sign-btn {
    margin-right: 16px;
  }
  
  .sign-btn:hover {
    background-color: rgba(0, 0, 0, .06);
  }
  
  .join-btn {
    background-color: #000;
    color: #fff;
  }
  
  .join-btn:hover {
    background-color: rgba(0, 0, 0, .7);
    border-color: rgba(0, 0, 0, .7);
  }
  /* mobile */
  .menu__item {
    display: flex;
    align-items: center;
    height: var(--menu-height);
  }
  
  .item__list {
    height: var(--menu-height);
    display: flex;
    margin: 0;
    list-style: none;
    align-items: center;
    width: 100%;
    padding-left: 0;
  }
  .li__item {
    display: flex;
    height: var(--menu-height);
    align-items: center;
  }
  
  .item__list-link {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -.01em;
    text-decoration: none;
    font-size: 1.3rem;
    color: rgba(0, 0, 0, .87);
    margin-right: 32px;
    /* padding: 18px 0; */
  }

  .item__all-active {
    position: relative;
  }
  
  .item__all-active::after {
    border-bottom: 1px solid;
    bottom: -3px;
    content: "";
    left: 0;
    position: absolute;
    width: 100%;
  }
  .app__container {
    margin-top: 153px;
  }
  .header-container {
    background-color: #1f3933;
    height: 250px;
    display: flex;
    padding-left: 131px;
    padding-right: 40px;
    justify-content: space-around;
    align-items: center;
  }
  .header__menu {
    font-size: 1.4rem;
    font-weight: 700;
  }
  .img-item {
    border-radius: 50%;
  }
  .container-img {
    margin-right: 88px;
    padding: 16px 0;
  }
  .container-title {
    color: #fff;
    font-size: 28px;
  }
.menu-container {
  position: relative;
  padding-top: 32px;
  display: flex;
  justify-content: space-around;
}
.detail {
  width: 550px;
}
.nutrition {
  width: 450px;
}
.detail-size {
  font-weight: 600 !important;
  margin-bottom: 32px !important;
}
.size-optional {
  padding: 0 8px 12px;
  display: block;
  position: relative;
  font-size: 2.2rem;
}
.size-optional::after {
  background: #d4e9e2;
    border-radius: 12px;
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%;
}
.relative {
  position: relative;
}
input[type=radio].short-check:checked  ~ .short-no-active{
  display: none;
}
input[type=radio].short-check:checked  ~ .short-active{
  display: block;
}

  .short-no-active {
    position: absolute;
    top: -22px;
    left: -6px;
    /* display: none; */
  }
  .short-active {
    position: absolute;
    top: -22px;
    left: -6px;
    display: none;
  }

  input[type=radio].tall-check:checked  ~ .tall-no-active{
    display: none;
  }
  input[type=radio].tall-check:checked  ~ .tall-active{
    display: block;
  }
  .tall-no-active {
    position: absolute;
    top: -18.9px;
    left: -5.8px;
    /* display: none; */
  }
  .tall-active {
    position: absolute;
    top: -19px;
    left: -5.5px;
    display: none;
  }

  input[type=radio].grande-check:checked  ~ .grande-no-active{
    display: none;
  }
  input[type=radio].grande-check:checked  ~ .grande-active{
    display: block;
  }
  .grande-no-active {
    position: absolute;
    top: -18px;
    left: -5.5px;
  }
  .grande-active {
    position: absolute;
    top: -18px;
    left: -5.5px;
    display: none;
  }
  input[type=radio].venti-check:checked  ~ .venti-no-active{
    display: none;
  }
  input[type=radio].venti-check:checked  ~ .venti-active{
    display: block;
  }
  .venti-no-active {
    position: absolute;
    top: -16px;
    left: -5.5px;
  }
  .venti-active {
    position: absolute;
    top: -16px;
    left: -5.5px;
    display: none;
  }
  .element-text {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .element-mass {
    font-size: 1.6rem;
  }
  .detail-element {
    display: grid;
    text-align: center;
    margin-bottom: 32px;
  }
  .element {
    display: flex;
    justify-content: space-around;
    border: 0;
  }

  .locate-size {
    margin-bottom: 50px;
  }
  .locate-size i {
    transform: translateY(2px);
    font-size: 20px;
    padding-right: 6px;
  }

  .locate-text {
    color: rgba(0,0,0,.58);
    font-size: 1.4rem;
    font-weight: 400;
  }

  .nutrition-heder {
    font-weight: 600;
  }
  .describe {
    font-weight: 400;
    color: rgba(0,0,0,.58);
    line-height: 2.5rem;
  }

  .calories {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.4rem;
  }
  .daily {
    display: flex;
    justify-content: flex-end;
    font-size: 1.4rem;
    padding: 10px 0;
    border-bottom: 1px solid #d4e9e2;
  }
  .total-fat {
    display: flex;
    font-size: 1.5rem;
    padding: 10px 0;
    font-weight: 600;
    border-bottom: 1px solid #d4e9e2;
  }

  .saturated-fat {
    display: flex;
    font-size: 1.5rem;
    padding: 10px 0;
    border-bottom: 1px solid #d4e9e2;
  }

  .advice {
    font-size: 1.4rem;
  }

  .summary {
    display: flex;
    background-color: #1e3932;
    height: 250px;
    padding: 32px 40px 32px 131px;
  }
  

  .summary-general {
    flex-grow: 1;
  }
  .summary-item {
    font-size: 1.4rem;
    font-weight: 700;
    color: #cba258!important;
    border: 2px solid #cba258;
    border-radius: 5px;
    width: 80px;
  }

  .summary-text {
    white-space: pre-line;
    font-size: 1.5rem;
    color: hsla(0,0%,100%,.7)!important;
    font-weight: 500;
    width: 450px;
    line-height: 2rem;
}
.summary-nutrition {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}
.oder {
  position: fixed;
  z-index: 1;
  bottom: 155px;
  right: 45px;
}
.oder-bt {
  border: 0;
  background: #00a862;
  border-radius: 500px;
  color: #fff;
  display: inline-block;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  padding: 18px 2.4rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition-duration: .2s;
  transition-property: transform,box-shadow,width,height;
  transition-timing-function: ease;
  cursor: pointer;
}

  /* end container */

  /* footer css */
  .footer {
    overflow-x: hidden;
    padding: 48px 40px 0 131px;
    box-shadow: 0 -1px 3px rgb(0 0 0 / 10%), 0 -2px 2px rgb(0 0 0 / 6%), 0 0 2px rgb(0 0 0 / 7%);
  }
  
  .footer-category {
    border-bottom: 2px solid rgb(213, 213, 213);
    padding-bottom: 32px;
  }
  
  .footer-category__item {
    position: relative;
  }
  
  .footer-category h5 {
    font-weight: 500;
    font-size: 19px;
    margin-bottom: 32px;
  }
  
  .footer-category li {
    padding: 10px 0;
  }
  
  .category-wrap {
    user-select: none;
  }
  
  .category-list {
    width: 100%;
  }
  
  .category-list-item a {
    text-decoration: none;
    font-size: 15px;
    color: rgba(0, 0, 0, .58);
    width: 100%;
    font-weight: 500;
    padding: 0;
  }
  
  .extend-btn {
    transition: all linear 0.22s;
  }
  
  .category-list-item a:hover {
    color: black
  }
  
  .footer-social {
    padding: 32px 0;
  }
  
  .footer-social a {
    text-decoration: none;
    color: black;
    font-size: 32px;
    margin-right: 10px;
  }
  
  .rules {
    padding-bottom: 28px;
  }
  
  .rules-item {
    padding: 0 14px;
    border-right: 2px solid #ccc;
  }
  
  .rules-item:last-child {
    border: none;
  }
  
  .rules-item a {
    display: block;
    padding: 0 14px;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
  }
  
  .rules-item a:hover {
    text-decoration: underline;
  }
  
  .license {
    padding: 0 0 56px 14px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
  }
  
  /* bottomDrawer */
  .bottomDrawer {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    background-color: #1e3932!important;
    height: 94px;
  
  }
  .bottom-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 400px;
  padding-right: 266px;
  height: 100%;
  }
  .menu-search {
  display: flex;
  align-items: center;
  box-shadow: inset 0 -1.5px 0 hsl(0deg 0% 100% / 30%);
  flex-direction: row;
  flex-grow: 1;
  justify-content: space-between;
  min-width: 240px;
  min-height: 48px;
  text-decoration: none;
  line-height: 1.5;
  }
  .search-text {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  }
  .text-item {
  color: hsla(0,0%,100%,.7)!important;
  font-weight: 700;
  }
  .text-choose {
  color: #fff;
  font-weight: 700;
  }
  .menu-cart {
    background-repeat: no-repeat;
    display: inline-block;
    height: 32px;
    width: 32px;
  }
  .cart-link {
    color: #fff;
  }
    /* Responsive */
    @media (max-width: 1024px) {
        .footer-category__item {
          color: rgba(0, 0, 0, 0.8);
          position: relative;
          display: flex;
          align-items: center;
          max-height: 40px;
          margin: 24px 0 0 0;
          top: 0;
        }
      
        .footer-category__item:hover {
          cursor: pointer;
        }
      
        .footer-category h5 {
          font-size: 18px;
          margin: 32px 0;
          padding: 0;
        }
      
        .category-wrap {
          max-height: 64px;
          overflow: hidden;
          transition: all 0.25s linear;
        }
      
        .category-wrap.expand {
          max-height: 360px;
        }
      
        .category-list.active {
          display: block;
        }
      
        .footer-category button {
          background-color: transparent;
          width: 44px;
          height: 44px;
          font-size: 24px;
          right: 0;
          margin-left: auto;
          text-align: center;
          align-self: center;
          border: 0;
          border-radius: 50px;
        }
      
        .footer-category button:hover {
          background-color: rgb(235, 235, 235);
          cursor: pointer;
          transition: all .2s ease-out;
        }
        .footer {
          padding-bottom: 50px;
    
        }
      }
      
      @media (min-width: 1024px) {
        .header {
          position: fixed;
        }
      
        .card {
          width: 25%;
        }
      
        .hide-on-pc {
          display: none;
        }
      
        .bottom-menu {
          padding-right: 90.625px;
        }
        
        .footer {
          padding: 48px 0 100px 131px; 
        }
    
      }
      /* responsive */
      @media (min-width: 1024px) {
        .menu-container {
          padding-left: 131px;
          padding-right: 40px;
        }

        .detail {
          width: 550px;
        }
        .nutrition {
          width: 450px;
        }
        .header {
          position: fixed;
        }
      
        .card {
          width: 25%;
        }
      
        .hide-on-pc {
          display: none;
        }
      
        .bottom-menu {
          padding-right: 90.625px;
        }
      }

      @media (max-width: 1023px) {
        .header__navbar {
          padding: 0 24px;
        }
        .header-container {
          flex-direction: column;
          padding-bottom: 60px;
          align-items: center;
        }
        .title-menu {
          padding-bottom: 32px;
        }
        
        .bottom-menu {
          padding-left: 99px;
          padding-right: 16px;
          
        }
      }

@media (max-width: 820px) {
  .detail {
    width: 400px;
  }
  .nutrition {
    width: 400px;
  }
} 

      @media (max-width: 799px) {
        .header__menu-bars,
          .header__menu-exit {
              display: block;
          }
          .header__navbar {
            padding: 0 24px;
          }
          .app__container {
            margin-top: 83px;
          }
          .header-container {
            padding-top: 100px;
            padding-bottom: 100px;
          }
      
          .img-item {
            width: 100px;
            height: 100px;
          }
          .menu-container {
            flex-direction: column;
            align-items: center;
          }
          .nutrition {
            width: 550px;
          }
          .nav__mobile {
              display: block;
          }
          .navbar__list {
            display: none;
          }
          .header__info {
            display: none;
          }
          .header__navbar {
            display: flex;
            justify-content: space-between;
            height: 83px;
          }
          .nav__content {
            display: none;
          }

          .rules {
            flex-direction: column;
          }
        
          .rules-item {
            border: 0;
            margin-bottom: 4px;
            padding: 8px 0;
          }
        
          .bottom-menu {
            padding-left: 99px;
            padding-right: 16px;
            
          }
        
          .cart-link {
            color: hsla(0,0%,100%,.7)!important;
          }
        
          .text-choose {
            color: hsla(0,0%,100%,.7)!important;
          }
        }

@media (max-width: 767px) {
  .bottom-menu {
    padding-left: 16px;
  }
}

@media (max-width: 600px) {
  .detail {
    width: 400px;
  }
  .nutrition {
    width: 400px;
  }
  .summary-item {
    width: 90px;
  }
  .summary {
    padding-left: 90px;
  }
}
@media (max-width: 415px) {
  .header__menu {
    padding-left: 16px;
  }
  .footer {
    padding-left: 16px;
  }

  .detail {
    width: 340px;
  }
  .nutrition {
    width: 340px;
  }
  .summary {
    padding-left: 10px;
  }

  .summary-text {
    width: 370px;
  }
  .bottom-menu {
    padding-left: 16px;
  }
}
@media (max-width: 376px) {
  .header__menu {
    padding-left: 16px;
  }
  .detail {
    width: 270px;
  }
  .nutrition {
    width: 270px;
  }
  .summary {
    padding-left: 10px;
  }

  .summary-text {
    width: 340px;
  }
  .footer {
    padding-left: 16px;
  }
}
@media (max-width: 320px) {
  .header__navbar {
    padding-right: 0;
  }
  .header__menu {
    padding-right: 16px;
  }
  .bottom-menu {
    padding: 0 10px;
  }

  .summary-text {
    width: 290px;
  }
}