* {
  scroll-behavior: smooth;
}

body {
  padding-top: 100px;
}
.nav-link {
  color: #999;
}
.nav-link:hover {
  color: #d48d69;
}
.rant-item{
  display: flex;
  border: solid 1px #dee2e6;
  margin-bottom: 20px;
  align-items: center;
  overflow: hidden;
}
.rant-name{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}
.rant-text{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}
.rant-img{
  width: 240px;
  background-size: cover;
}
.rant-info{
  flex: 1;
  padding: 20px;
}
.radio-container {
  display: inline-block;
  padding-left: 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #333;
  position: relative;
  margin-right: 10px;
  text-decoration: none;
  margin-bottom: 6px;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-container-check {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: solid 1px #BEBEBE;
  border-radius: 50%;
}

.radio-container input:checked~.radio-container-check {
  border: solid 1px #45515A;
}

.radio-container input:disabled~.radio-container-check {
  background-color: #E4E4E4;
  border: solid 1px #BEBEBE;
}

.radio-container input:checked~.radio-container-check::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 4px;
  height: 10px;
  width: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.radio-container input:checked:disabled~.radio-container-check::after {
  background-color: #BEBEBE;
}
.card-box{
  display: flex;
  align-items: stretch;
  margin: 0 0 20px 0;
  border-top: solid 1px #dee2e6;
  border-bottom: solid 1px #dee2e6;
  padding: 20px 0;
}
.card-box.fix{
  margin: -20px 0 20px 0;
  border-top: none;
}
.card-box-col{
  width: 33.3%;
  padding:0 15px;
  border-right: solid 1px #dee2e6;
}
.card-box-col:last-child{
  border-right: none;
}
.card-box-item{
  display: flex;
  position: relative;
  align-items: center;
}
.card-box-icon{
  font-size: 4rem;
  color: #d48d69;
  line-height: 1;
  width: 60px;
}
.card-box-info{
  flex: 1;
  padding-left: 20px;
}
.card-box-name{
  font-size: 1.125rem;
  font-weight: 500;
  color: #263238;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.card-box-num{
  font-size: 1rem;
  font-weight: 400;
  color: #263238;
  line-height: 24px;
  letter-spacing: 0.05em;
}
.card-box-num span{
  font-size: 2rem;
  font-weight: 700;
  color: #d48d69;
  line-height: 24px;
}
.login-title{
  font-size: 1.3rem;
  color: #263238;
  margin-bottom: 0.75em;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.table a{
  color: #d48d69;
}
.filter-box {
  padding: 0;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
}
.main-category {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #363636;
  line-height: 46px;
  border-bottom: solid 1px #dee2e6;
  text-decoration: none;
}

.main-category:hover,.main-category.active {
  color: #000;
  font-weight: 700;
}

.main-category span {
  font-size: 70%;
  font-weight: 300;
  color: #808080;
}

.main-category i {
  position: absolute;
  right: 0;
  top: 15px;
  transition: transform 0.3s ease-in-out;
}

.main-category.active i {
  transform: rotate(180deg);
}

.sub-category {
  list-style-type: none;
  padding: 15px 0;
  display: none;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.sub-category.active {
  display: flex;
}
.pd-side {
  width: 300px;
  padding-right: 60px;
}
.pd-main{
  flex: 1;
}
.category {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 6px;
}
.lable{
  font-size: 16px;
  color: #000;
  font-weight: 500;
  display: block;
  margin-bottom: 3px;
}
.other-box,.invoice-box{
  margin-top: 10px;
  display: none;
}
.other-box.active,.invoice-box.active{
  display: block;
}
.shopping-container {
 width: 100%;
}

.shopping-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin: 0 auto 20px auto;
  border: solid 1px #dee2e6;

}
.shop-bag-name{
  width: 25%;
}
.shop-bag-link {
  color: #263238;
  text-decoration: none;
  font-weight: 400;
  word-break: break-all;
}

.shop-bag-link:hover {
  color: #d48d69;
  text-decoration: underline;
}

.shop-bag-delete-btn a {
  display: inline-block;
  color: #263238;
}

.shop-bag-delete-btn a:hover {
  color: #d48d69;
}

.shopping-table th {
  background-color: #dee2e6;
  color: #263238;
  font-weight: 400;
  padding: .7rem 0;
  font-size: 1rem;
  font-variant: small-caps;
  text-align: center;
}

.shopping-table td {
  padding: .75rem;
  text-align: center;
  border-bottom: solid 1px #dee2e6;
}

.shopping-table td:last-child {
  border-right: 0 none;
}

.shop-bag-img,
.shop-bag-delete,.shop-bag-color {
  width: 100px;
}

.shop-bag-total {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 24px;
}
.shop-bag-total span{
  color: #dc3545;
}
.product-content{
  padding-top: 24px;
  font-size: 1rem;
  color: #474747;
  font-weight: 400;
}
.product-content h3{
  font-size: 1.5rem;
  color: #263238;
  font-weight: 500;
  margin-bottom: 1em;
}
.product-content h5{
  font-size: 1.2rem;
  color: #263238;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.breadcrumb-item a{
  color: #d48d69;
}
.pd-swiper {
  overflow: hidden;
  margin-bottom: 10px;
}
.thumbs {
  overflow: hidden;
  position: relative;
}
.pd-row {
  display: flex;
}

.product-pic {
  width: 50%;
  padding-right: 60px;
}

.product-info {
  width: 50%;
}

.product-name {
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  font-weight: 500;
  color: #263238;
  margin-bottom: 16px;
}

.product-price {
  font-size: 20px;
  font-weight: 400;
  color: #555;
  margin-bottom: 16px;
}
.product-price b{
  color: #000;
  font-weight: 700;
}
.product-price span{
  text-decoration: line-through;
}
.product-point {
  font-size: 20px;
  font-weight: 400;
  color: #2B292A;
  margin-bottom: 16px;
}
.product-point span{
  display: inline-block;
  margin: 0 4px;
  color: #dc3545;
}
.product-point b{
  color: #000;
  font-weight: 700;
}
.product-num {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.product-num .number-box {
  margin-bottom: 0;
  padding-left: 0;
}

.number-box {
  display: inline-block;
  margin-bottom: 4px;
}

.number-box input {
  width: 40px;
  height: 18px;
  text-align: center;
  border: none;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  margin: 0 2px;
  background-color: transparent;
}

.number-spinner {
  display: flex;
  align-items: center;
}

.num-bt {
  background-color: transparent;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  width: auto;
  height: auto;
  outline: none;
  font-size: 1.5rem;
  color: #000;
}

.num-bt:focus {
  outline: none;
  color: #d48d69;
}
.map-box{
  height: calc( 100dvh - 100px );
  position: relative;
}
.form-label span{
  color: #f40000;
}
.form-check-label a{
  color: #d48d69;
}
.error{
  color: #f40000;
  font-size: 0.875rem;
}
.login-btn-box{
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-btn-box .btn{
  width: 50%;
}
.login-btn-box .btn:nth-child(2){
  margin-left: 10px;
}
.alert-warning {
  display: none;
}
.wait {
  font-size: 14px;
  color: #263238;
  padding-right: 10px;
}

.mg-box {
  display: flex;
  margin: 0 -15px;
}

.mg-box .form-control {
  margin: 0 15px;
  text-align: center;
}
.login-text {
  font-size: 1rem;
  color: #263238;
  margin-bottom: 20px;
}
.step-box {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 0;
}

.step-box li {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #999;
  margin: 0 10px;
  border-radius: 50%;
}

.step-box li.active {
  background-color: #d48d69;
}
.notice-box {
  font-size: 0.875rem;
  color: #263238;
  font-weight: 400;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: solid 1px #dee2e6;
  margin-bottom: 24px;
  position: relative;
}

.notice-box a {
  color: #d48d69;
}

.notice-box::after {
  content: '或';
  display: inline-block;
  padding: 3px 8px;
  background-color: #fff;
  position: absolute;
  color: #263238;
  font-size: 1rem;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
}

.line-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 40px;
  background-color: #4CC764;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 12px;
}

.line-btn img {
  height: 26px;
  margin-right: 6px;
}

.form-label {
  font-size: 0.875rem;
}

.tab-arr {
  display: none;
}

.tab-arr.active {
  display: block;
}

.form-group {
  margin-bottom: 1rem;
}

.login-err {
  display: none;
  width: 100%;
  font-size: 1rem;
  color: #dc3545;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}

.login-err.active {
  display: block;
}

.login-box {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  border-top: solid 1px #dee2e6;
  border-bottom: solid 1px #dee2e6;
  padding: 30px 30px 40px 30px;
  font-size: 1rem;
}

.login-notice {
  max-width: 600px;
  padding: 10px 30px 60px 30px;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #263238;
  margin: 0 auto;
}

.login-notice a {
  color: #f88705;
}

.login-text {
  font-size: 1rem;
  color: #263238;
  margin-bottom: 20px;
}

.home-title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #2B292A;
  margin-bottom: 36px;
}

.tab-box {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  padding: 0 30px;
  display: flex;
  padding-top: 10px;
}

.tab-box a {
  border-bottom: none;
  background-color: #dee2e6;
  display: inline-block;
  font-size: 18px;
  line-height: 36px;
  color: #777;
  font-weight: 500;
  padding: 0 30px;
  border-radius: 15px 15px 0 0;
  text-decoration: none;
}

.tab-box a:hover {
  text-decoration: none;
}

.tab-box a.active {
  color: #fff;
  background-color: #d48d69;
}

.button-container {
  display: none;
}

.mask-box {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}

.side-bag-list {
  max-width: 360px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  padding: 50px 20px;
  transform: translateX(360px);
  overflow: auto;
}

.mask-box.active {
  display: block;
}

.mask-box.active .side-bag-list {
  animation: side 0.5s forwards 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes side {
  0% {
    transform: translateX(360px);
  }

  100% {
    transform: translateX(0);
  }
}

.side-close {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/close.svg);
  background-size: contain;
  position: absolute;
  top: 10px;
  right: 10px;
}

.side-close:hover {
  opacity: 0.7;
}

.bag-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.bag-img {
  width: 70px;
}

.bag-info {
  width: calc(100% - 110px);
  padding: 0 10px;
}

.delete-btn {
  font-size: 16px;
  display: inline-block;
  color: #000;
}

.bag-name {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0;
}

.bag-price {
  color: #d48d69;
  font-size: 14px;
  font-weight: 500;
}

.bag-btn-box {
  border-top: solid 1px #dee2e6;
  padding-top: 16px;
}

.bag-btn-box .btn {
  min-width: 160px;
}

.toast {
  border-color: #F5FCEA;
  background-color: #F5FCEA;
  position: fixed;
  top: 120px;
  left: 20px;
  z-index: 998;
  min-width: 300px;
  max-width: 100%;
}

.heart {
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  right: 10px;
  top: 4px;
  z-index: 9;
  cursor: pointer;
}

.heart.active {
  color: #f40000;
}

.card-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.modal-content {
  border-radius: 16px;
}

.modal-footer {
  padding-bottom: 30px;
}

.modal-header {
  border-bottom: none;
}

.modal-body {
  padding: 0 80px;
}

.bg-color {
  background-color: #F9F1E7 !important;
}

.btn {
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 26px;
}

.modal-footer {
  display: flex;
  justify-content: center;
  border-top: none;
}

.modal-footer .btn {
  min-width: 120px;
}

main {
  overflow: hidden;
}

header {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  z-index: 99;
}

.menu-container {
  width: 100%;
  height: 100px;
  max-width: 1260px;
  padding: 0 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto;
}

.logo {
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 30px;
}

.logo img {
  height: 60px;
  width: auto;
}

.menu {
  list-style-type: none;
  display: inline-flex;
  padding: 0;
  margin: 0;
}

.menu li {
  display: inline-block;
  padding: 0 24px;
}

.menu li a {
  font-size: 1rem;
  color: #474747;
  font-weight: 500;
  text-decoration: none;
}

.menu li a:hover,
.menu li a.active {
  color: #d48d69;
}

.user {
  display: inline-block;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #474747;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.cart {
  display: inline-block;
  padding: 0 24px;
  font-size: 1.3rem;
  line-height: 1;
  color: #474747;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.num {
  display: inline-flex;
  font-size: 10px;
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  background-color: #f40000;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  top: -6px;
  right: 20px;

}

.login {
  display: inline-block;
  padding: 6px 12px 4px;
  font-size: 1rem;
  line-height: 1.2;
  color: #474747;
  border: solid 1px #474747;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.login:hover {
  background-color: #474747;
  color: #fff;
}

.banner {
  width: 100%;
  height: 360px;
  background-image: url(../images/banner.png);
  background-size: 1920px auto;
  background-position: top -60px center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-title {
  color: #000;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
}

.banner-en {
  font-size: 0.875rem;
  line-height: 1;
  color: #474747;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.main-container {
  width: 100%;
  max-width: 1260px;
  padding: 60px 30px;
  position: relative;
  margin: 0 auto;
}

.search-box {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.select {
  display: inline-block;
  position: relative;
  padding-right: 10px;
}

.select a {
  display: block;
  line-height: 40px;
  border: solid 1px #dee2e6;
  border-radius: 20px;
  width: 160px;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  color: #474747;
}

.select a:focus {
  box-shadow: 0 0 5px #dee2e6;
}

.select-menu {
  list-style-type: none;
  padding: 0;
  display: none;
  position: absolute;
  top: 105%;
  width: calc(100% - 10px);
  background-color: #fff;
  box-shadow: 0 0 5px #474747;
  z-index: 99;
  border-radius: 15px;
  overflow: hidden;
}

.select-menu.active {
  display: block;
}

.select-menu li {
  cursor: pointer;
  color: #474747;
  line-height: 40px;
  text-align: center;
  border-bottom: solid 1px #474747;
}

.select-menu li:hover {
  background-color: #474747;
  color: #fff;
}

.select-menu li:last-child {
  border-bottom: none;
}

.search-box {
  width: 100%;
  margin-bottom: 20px;
  display: block;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.search-input {
  width: 320px;
}

.search-input input {
  height: 40px;
  border: solid 1px #dee2e6;
  border-radius: 20px;
  width: 100%;
  padding: 0 20px;
}

.search-input input:focus {
  outline: none;
}

.search-input i {
  font-size: 1.5rem;
  color: #474747;
  position: absolute;
  right: 10px;
  top: 4px;
  z-index: 2;
}

.more-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
  color: #d48d69;
}

.more-btn::before {
  content: 'More +';
}

.filter-list.active .more-btn::before {
  content: 'Close -';
}

.filter-list {
  width: 100%;
  border-top: solid 1px #dee2e6;
  border-bottom: solid 1px #dee2e6;
  padding: 15px 60px 5px 20px;
  position: relative;
  position: relative;
  margin-bottom: 30px;
  height: 58px;
  overflow: hidden;
}

.filter-list.active {
  height: auto;
}

.filter-row {
  display: flex;
}

.col-left {
  width: 180px;
  padding-right: 40px;
  text-align: justify;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  height: 26px;
  overflow: hidden;
  color: #474747;
}

.col-left:after {
  content: '';
  width: 100%;
  display: inline-block;
}

.col-right {
  width: 100%;
  padding: 0;
}

.tag-box {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 15px;
}

.tag-mark {
  display: inline-block;
  padding: 6px 18px;
  font-size: 13px;
  color: #b5b5b5;
  font-weight: 500;
  background-color: #fff;
  border: solid 1px #dee2e6;
  line-height: 1;
  border-radius: 20px;
  cursor: pointer;
}

.tag-box input:checked~.tag-mark {
  color: #fff;
  background-color: #d48d69;
  border: solid 1px #d48d69;
}

.tag-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.food-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 -15px;
}

.food-col {
  width: 33.3%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.food-card {
  position: relative;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  padding: 0 20px 20px 20px;
  height: 100%;
  border: solid 1px #dee2e6;
}

.store-pic {
  width: calc(100% + 40px);
  height: 0;
  padding-top: 65%;
  background-size: cover;
  position: relative;
  margin-bottom: 10px;
  margin-left: -20px;
}

.medal {
  width: 40px;
  position: absolute;
  z-index: 3;
  bottom: -35px;
  right: 10px;
}

.store-name {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 4px;
  color: #000;
  padding-right: 30px;
}

.google-place {
  display: flex;
  flex-wrap: wrap;
  font-weight: 400;
  line-height: 1.5;
  font-size: 14px;
}

.stars {
  margin-right: 6px;
}

.stars i {
  color: rgb(250, 214, 10);
  font-size: 12px;
}

.google-place a {
  display: inline-block;
  text-decoration: none;
}

.hashtag a {
  display: inline-block;
  margin-right: 5px;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 4px;
  color: #2700b4;
}

.ml-2 {
  margin-left: 6px;
}

.b-start {
  display: inline-block;
  margin-left: 5px;
  text-decoration: none;
  color: #555;
}

.b-base {
  position: relative;
  margin: 20px 0 10px 0;
}

.b-base .b-start {
  position: absolute;
  right: 0;
}

.b-hours,
.address,
.tel {
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}

.pagination {
  padding-top: 20px;
}

.pagination li {
  padding: 0 4px;
}

.page-item.disabled {
  filter: grayscale(100%);
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 28px;
  border-radius: 4px;
}

footer {
  background-color: #dee2e6;
  padding: 30px 0;
  font-size: 0.875rem;
  color: #474747;
  letter-spacing: 0.05em;
}

.footer-box {
  width: 100%;
  max-width: 1260px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-link {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
}

.footer-link li {
  display: inline-block;
  padding: 0 16px;
}

.footer-link li a {
  font-size: 0.875rem;
  color: #474747;
  font-weight: 500;
  text-decoration: none;
}

.apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #d48d69;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: fixed;
  z-index: 101;
  right: 30px;
  bottom: 30px;
}
.info-box {
  position: absolute;
  width: 300px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: #fff;
  animation: map-side 0.5s forwards ease-in-out;
  opacity: 0;
}
.delete {
  display: inline-block;
  color: black;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background-image: url(../images/close.svg);
  background-size: cover;
  z-index: 11;
}

@keyframes map-side {
  0% {
    opacity: 0;
    transform: translateX(-360px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 1023.9px) {
  .row.fix{
    padding-right: 10px;
  }
  .other-box.active, .invoice-box.active {
    padding-right: 10px;
}
.invoice-box .form-select,.invoice-box .form-control{
  margin-bottom: 6px;
}
  .shopping-table,
  .table {
    border: none;
    font-size: 14px;
    position: relative;
  }

  .shopping-table thead,
  .table thead {
    display: none;
  }

  .shopping-table tr {
    border: solid 1px #dee2e6;
    display: block;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 5px 0px #dee2e6;
    padding-left: 85px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
  }

  .table tr {
    border: solid 1px #dee2e6;
    display: block;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 5px 0px #dee2e6;
    position: relative;
    padding: 10px;
  }

  .shopping-table td,
  .table td {
    display: block;
    padding: 0.5rem;
    text-align: left;
    border-bottom: none;
  }

  .shopping-table tr td,
  .table tr td {
    display: block;
    padding: 10px 0 0 10px;
    text-align: left;
    border-bottom: none;
  }

  td:before {
    content: attr(data-head);
    display: inline-block;
  }

  tr.fix td:before {
    content: '';
    display: none;
  }

  .shop-bag-img {
    width: 80px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .shop-bag-delete-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .shopping-table tr.fix {
    padding: 0 0 5px 0;
  }

  .table-bordered td,
  .table-bordered th {
    border: none;
  }
  .map-box{
    height: calc( 100dvh - 60px );
    position: relative;
  }
  .banner {
    height: 300px;
    background-size: 1024px auto;
  }

  body {
    padding-top: 60px;
  }

  .cart {
    padding: 0 16px;
    font-size: 1.1rem;
  }

  .login {
    padding: 4px 8px 3px;
    font-size: 0.875rem;
  }

  .menu {
    display: block;
    height: calc(100dvh - 60px);
    max-height: 0;
    position: fixed;
    top: 60px;
    left: 0;
    background-color: #fff;
    width: 100%;
    padding: 0;
    overflow: hidden;
    transition: 0.5s;
    opacity: 0;
  }

  .menu.active {
    opacity: 1;
    max-height: 100dvh;
    padding-top: 30px;
  }

  .menu li {
    width: 100%;
    display: block;
    padding: 0;
  }

  .menu li a {
    display: block;
    text-align: center;
    line-height: 60px;
  }

  .menu-container {
    height: 60px;
    padding: 0 20px;
  }

  .logo {
    display: inline-block;
    position: absolute;
    top: 12px;
    left: 20px;
  }

  .logo img {
    height: 36px;
    width: auto;
  }

  .side-bag-list {
    max-width: 90%;
  }

  .num {
    font-size: 9px;
    width: 16px;
    height: 16px;
    top: -5px;
    right: 10px;
  }

  .button-container {
    display: inline-block;
    height: 14px;
    width: 24px;
    cursor: pointer;
    transition: opacity .25s ease;
    position: relative;
    margin-left: 16px;
  }

  .button-container:hover {
    opacity: .9;
  }

  .button-container.active .top {
    transform: translateY(6px) translateX(0) rotate(45deg);
  }

  .button-container.active .middle {
    opacity: 0;
  }

  .button-container.active .bottom {
    transform: translateY(-6px) translateX(0) rotate(-45deg);
  }

  .button-container span {
    border: none;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
    background-color: #474747;
  }

  .button-container span:nth-of-type(2) {
    top: 6px;
  }

  .button-container span:nth-of-type(3) {
    top: 12px;
  }

  .main-container {
    padding: 30px 20px;
  }

}
@media (max-width: 767.98px) {

  .card-box {
    flex-direction: column;
    margin: 0 ;
    border-top: none;
    border-bottom: none;
    padding:0;
} 
.card-box.fix{
  margin: 0;
  border-top: solid 1px #dee2e6;
}
.card-box-col {
  width: 100%;
  padding:15px 0;
  border-right: none;
  border-bottom: solid 1px #dee2e6;
}
.card-box-col:last-child {
  border-bottom: none;
}
  .pd-row {
    flex-direction: column;
}
.product-pic {
  width: 100%;
  padding-right: 0;
}
.product-info {
  padding:24px 0;
  width: 100%;
}
.product-name {
  font-size: 24px;
  margin-bottom: 12px;
}
.product-price {
  font-size: 18px;
  margin-bottom: 12px;
}
.num-bt {
  font-size: 1.2rem;
}
.number-box input {
  width: 36px;
  height: 16px;
  font-size: 16px;
}
.product-num {
  font-size: 18px;
  margin-bottom: 12px;
}
  .banner {
    height: 220px;
    background-size: 768px auto;
    background-position: top center;
  }

  .banner-title {
    font-size: 1.8rem;
  }

  .food-col {
    width: 50%;
  }

  .footer-box {
    padding: 0 20px;
    flex-direction: column;
  }

  .filter-row {
    flex-direction: column;
  }
  .rant-img {
    width: 120px;
}
.rant-info {
  flex: 1;
  padding:0 10px;
}
.rant-name {
  font-size: 16px;
  color: #333;
}
.rant-text {
  font-size: 14px;
  line-height: 1.4;
}
  .col-left {
    width: 100%;
    padding-right: 0;
    text-align: left;
    font-size: 14px;
    line-height: 1;
    height: auto;
  }

  .filter-list {
    padding: 15px 0 5px 0;
    margin-bottom: 20px;
    height: 86px;
  }

  .copy-right {
    padding-top: 4px;
  }
  .home-title {
    font-size: 24px;
    margin-bottom: 24px;
}
.pd-side {
  width: 220px;
  padding-right: 10px;
}
.category {
  font-size: 20px;
  line-height: 40px;
  border: solid 1px #363636;
  font-weight: 500;
  color: #000;
  margin-bottom: 6px;
  text-align: center;
  position: relative;
}
.mb-category {
  display: none;
}

.mb-category.active {
  display: block;
}
.pd-side {
  width: 100%;
  padding-right: 0;
}
}

@media (max-width: 575.98px) {
  .pagination {
    padding: 0;
    margin: 0;
  }

  .apply {
    width: 60px;
    height: 60px;
    font-size: 0.875rem;
    right: 0;
    bottom: 80px;
  }

  .food-col {
    width: 100%;
  }

  .modal-body {
    padding: 0 30px;
  }

  .select a {
    width: 100px;
    line-height: 34px;
    font-size: 0.875rem;
  }

  .search-input input {
    height: 34px;
    font-size: 0.875rem;
  }

  .search-input i {
    font-size: 1.3rem;
    top: 2px;

  }
  .login-box {
    padding: 30px 0 40px 0;
}


.rant-item {
  flex-direction: column;
  border-radius: 6px;
}
.rant-img {
  width: 100%;
}
.rant-info {
  width: 100%;
  padding:10px;
}
}