@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@700&display=swap");
@keyframes downUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spanUp {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mainImg {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
    color: #222222;
  }
  51% {
    color: #fff;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes backUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes textRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes width100 {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes width1200 {
  0% {
    width: 1200px;
  }
  100% {
    width: 100%;
  }
}
@keyframes zIndex {
  0% {
    z-index: 999;
  }
  100% {
    z-index: 0;
  }
}
@keyframes arrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floating {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-display: swap;
  src: local("Pretendard Black"), url("../fonts/Pretendard-Black.woff2") format("woff2"), url("../fonts/Pretendard-Black.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard ExtraBold"), url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"), url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"), url("../fonts/Pretendard-Bold.woff2") format("woff2"), url("../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("../fonts/Pretendard-SemiBold.woff2") format("woff2"), url("../fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url("../fonts/Pretendard-Medium.woff2") format("woff2"), url("../fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url("../fonts/Pretendard-Regular.woff2") format("woff2"), url("../fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard Light"), url("../fonts/Pretendard-Light.woff2") format("woff2"), url("../fonts/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard ExtraLight"), url("../fonts/Pretendard-ExtraLight.woff2") format("woff2"), url("../fonts/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard Thin"), url("../fonts/Pretendard-Thin.woff2") format("woff2"), url("../fonts/Pretendard-Thin.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #222222;
  font-family: "Pretendard", sans-serif;
}

a {
  color: #222222;
  text-decoration: none;
  font-family: "Pretendard", sans-serif;
}

ul, li, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

h1 {
  display: block;
  /*font-size: 3.4375rem;*/
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
  white-space: nowrap;
}

h2 {
  font-size: 3.4375rem;
}

h3 {
  font-size: 3rem;
}
@media all and (max-width: 1024px) {
  h3 {
    font-size: 5.5vw;
  }
}

span {
  font-size: 1.125rem;
}

header {
  width: 100%;
  background-color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 0 20px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.number_font {
  font-family: "Rajdhani", "Pretendard", sans-serif;
}

.logo {
  display: block;
  width: 120px;
}
@media all and (max-width: 1024px) {
  .logo {
    width: 80px;
  }
}
.logo img {
  max-width: 120px;
  width: 100%;
}

.header {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .header {
    height: 60px;
  }
}
.header .mo-menu-btn {
  display: none;
  width: 30px;
  position: relative;
  cursor: pointer;
  height: 30px;
}
.header .mo-menu-btn .line {
  transition: 0.4s ease;
  display: bock;
  width: 21px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 1px;
  background-color: #555;
}
.header .mo-menu-btn .line:first-child {
  top: calc(50% - 6px);
}
.header .mo-menu-btn .line:last-child {
  top: calc(50% + 6px);
}
.header .mo-menu-btn.active .line {
  display: block;
  width: 21px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 1px;
  background-color: #555;
}
.header .mo-menu-btn.active .line:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header .mo-menu-btn.active .line:nth-child(2) {
  display: none;
}
.header .mo-menu-btn.active .line:last-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header .nav-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
}
.header .nav-bg.active {
  display: block;
}
.header_menu {
  font-size: 18px;
  font-weight: 700;
  gap: 60px;
}
@media all and (max-width: 1024px) {
  .header_menu {
    margin-top: 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }
}
.header_menu li:hover a {
  color: #F44336;
}
.header_menu li.active a {
  color: #F44336;
}
.header .number {
  left: 36px;
  position: absolute;
  bottom: 44px;
}
.header .number p {
  color: #707070;
  font-size: 14px;
}
.header .number button {
  color: #707070;
  margin-top: 4px;
  font-size: 22px;
  font-weight: 600;
}
@media all and (max-width: 1024px) {
  .header .mo-menu-btn {
    display: block;
    z-index: 11;
  }
  .header nav {
    transition: 0.4s ease;
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    background-color: #fff;
    z-index: 10;
    width: 320px;
    padding-left: 36px;
  }
  .header nav.active {
    right: 0;
  }
}

footer {
  border-top: 1px solid #D4D4D4;
  width: 100%;
  background-color: #fff;
}

.footer {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 45px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 1024px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer_left {
  display: flex;
  gap: 48px;
}
@media all and (max-width: 1024px) {
  .footer_left {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 15px;
  }
}
.footer_text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding: 7px 0 0;
}
.footer_text::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: -24px;
  height: 32px;
  border-left: 1px solid #9D9D9D;
}
.footer_text > ul {
  display: flex;
  gap: 18px;
  font-size: 12px;
}
@media all and (max-width: 1024px) {
  .footer_text > ul {
    gap: 12px;
    flex-wrap: wrap;
  }
  .footer_text > ul li:first-child {
    width: 100%;
  }
}
.footer .copyright {
  color: #9D9D9D;
}

.sub_section {
  padding: 105px 0 135px;
}

.pc-show {
  display: block;
}
@media all and (max-width: 1024px) {
  .pc-show {
    display: none;
  }
}

.mo-show {
  display: none;
}
@media all and (max-width: 1024px) {
  .mo-show {
    display: block;
  }
}

main {
  overflow: hidden;
  position: relative;
}

.sub_section {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 390px;
  margin-top: 90px;
}
@media all and (max-width: 1024px) {
  .sub_section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sub_section > h4 {
  margin-bottom: 90px;
  font-size: 45px;
  font-weight: 500;
}
@media all and (max-width: 1024px) {
  .sub_section > h4 {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 80px;
    font-size: 26px;
    font-weight: 700;
  }
}
.sub_section > article {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}
@media all and (max-width: 1024px) {
  .sub_section > article {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    position: static;
  }
}
.sub_section .phone_nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media all and (max-width: 1024px) {
  .sub_section .phone_nav {
    display: none;
  }
}
.sub_section .phone_nav li {
  width: 185px;
  color: #707070;
  padding-bottom: 7px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}
.sub_section .phone_nav li.on {
  color: #F44336;
  border-bottom: 3px solid #F44336;
}
.sub_section .phone_wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub_section .phone_wrap .swiper-pagination {
  display: none;
}
@media all and (max-width: 1024px) {
  .sub_section .phone_wrap {
    position: static;
  }
  .sub_section .phone_wrap .swiper-pagination {
    display: block;
  }
}
.sub_section .circle_bg {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 526px;
  height: 526px;
  border-radius: 50%;
  background: #FADFDD;
}
@media all and (max-width: 1024px) {
  .sub_section .circle_bg {
    width: 250px;
    height: 250px;
    background-color: #FEF4F3;
    top: -100px;
    right: -80px;
    left: auto;
    transform: translate(0, 0);
    z-index: -1;
  }
}
.sub_section .phone_slider {
  z-index: 1;
  width: 320px;
  height: 632px;
  background: url(../img/images/sub-phone.png) no-repeat;
}
@media all and (max-width: 1024px) {
  .sub_section .phone_slider {
    margin-right: -20px;
  }
}
.sub_section .phone_slider .phone_slider_main {
  width: 274px;
  margin: 10px 0px 0px 12px;
  border-radius: 20px;
}
.sub_section .phone_slider img {
  width: 100%;
}
.sub_section .phone_slider_sub {
  width: 320px;
}
.sub_section .phone_text {
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 1024px) {
  .sub_section .phone_text {
    align-items: center;
    text-align: center;
  }
}
.sub_section .phone_text b {
  margin-top: 25px;
  line-height: 1.07;
  font-size: 28px;
  font-weight: 700;
}
@media all and (max-width: 1024px) {
  .sub_section .phone_text b {
    font-size: 20px;
    line-height: 1.4;
  }
}
.sub_section .phone_text p {
  margin-top: 15px;
  line-height: 1.55;
  color: #707070;
  font-size: 18px;
  font-weight: 500;
}
@media all and (max-width: 1024px) {
  .sub_section .phone_text p {
    font-size: 14px;
    line-height: 1.6;
  }
}
.sub_section .phone_text .swiper-slide {
  display: flex;
  flex-direction: column;
}
.sub_section .store_wrap {
  margin-top: 55px;
  display: flex;
  gap: 35px;
}
.sub_section .store_wrap .store_btn_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sub_section .store_wrap .store_btn_wrap > a {
  width: 180px;
  height: 52px;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub_section .store_wrap-text {
  text-align: center;
  line-height: 1.5;
  font-size: 23px;
}
.sub_section .store_wrap-text .bold {
  font-weight: 700;
  font-size: 26px;
}

.table-store_wrap{
	display: none;
}

@media all and (max-width: 1024px) {
  .sub_section .store_wrap {
    position: absolute;
    bottom: 0;
    flex-direction: column;
    left: 0;
    background-color: #F8F8F8;
    height: 280px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .sub_section .store_wrap .store_btn_wrap {
    flex-direction: row;
    gap: 17px;
  }
  
  .table-store_wrap {
    position: absolute;
    bottom: 0;
    flex-direction: column;
    left: 0;
    background-color: #F8F8F8;
    height: 280px;
    align-items: center;
    justify-content: center;
    width: 100%;
  	display: flex;
  	gap: 35px;
  }
  

	.table-store_wrap  .store_btn_wrap {
	  display: flex;
	  flex-direction: row;
	  align-items: center;
	  justify-content: center;
	  gap: 17px;
	}
	.table-store_wrap  .store_btn_wrap > a {
	  width: 180px;
	  height: 52px;
	  background-color: #fff;
	  border-radius: 7px;
	  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	}
	.table-store_wrap .store_wrap-text {
	  text-align: center;
	  line-height: 1.5;
	
	}
	.table-store_wrap .store_wrap-text .bold {

	  font-weight: 700;
	}
}

.swiper-pagination {
  bottom: 345px !important;
}

.swiper-pagination-bullet {
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background-color: #F44336;
  position: relative;
}
.swiper-pagination-bullet-active:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: 1px solid #f44336;
}

/* 테이블 */
.table-container {
  width: 100%;
  padding: 0px 60px;
  border-collapse: collapse;
  display: none;
}

/* 헤더 */
.table-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.left-input {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* select box */
.table-header .select-box {
  width: 140px;
  display: flex;
  height: 48px;
  align-items: center;
  gap: 10px;
  background-color: #f6f6f6;
}
.table-header .select-box select {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  padding: 8px 16px;
  background: url("../img/icons/select_icon.svg") calc(100% - 16px) center no-repeat;
  border: none;
  background-color: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
/* Option 메뉴 스타일 */
.table-header .select-box select option {
  background-color: #f6f6f6; /* option 배경색 */
  color: #222222; /* option 텍스트 색상 */
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

/* 검색바 */
.table-header .search-bar {
  display: flex;
  width: 260px;
  height: 48px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background-color: #f6f6f6;
}
.table-header .search-bar input {
  width: 100%;
  padding: 8px 16px;
  outline: none;
  border: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  background-color: #f6f6f6;
}
.table-header .search-bar img{
  cursor: pointer;
  margin-right: 10px;
}
.table-header .search-bar input::placeholder {
  color: #c2c2c2; /* placeholder 색상 */
}

/* info box  */
.table-header .info-box {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border: 1px solid rgba(51, 145, 255, 0.15);
  background: #f0f9ff;
}
.table-header .info-box .info-data {
  display: flex;
  align-items: center;
  gap: 12px;
}
.table-header .info-box .info-label {
  color: #222;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}
.table-header .info-box .span-border {
  width: 1px;
  height: 16px;
  background: rgba(51, 145, 255, 0.2);
}
.table-header .info-box .info-text {
  color: var(--light-blue, #3391ff);
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}
.table-header .info-box .info-text span {
  color: var(--light-blue, #3391ff);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

/* 테이블 css */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
}
th,
td {
  min-width: 60px;
  height: 44px;
  border: 1px solid #e5e9f0;
  text-align: center;
  color: #192534;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 15px */
}
th {
  background-color: #f5f7f9;
  font-weight: 600;
}

tr td:nth-child(2) {
  color: #3391ff;
  font-weight: 500;
}
tr .error {
  color: #ed4135 !important;
  font-weight: 500;
}

.td-index {
  width: 60px;
}

.td-welfare-items {
  width: 100px;
}

.td-card-type {
  width: 90px;
}

.td-franchisor-name {
  width: 160px;
}

.td-address {
  flex-grow: 1;
  padding: 0px 24px;
}

.td-visit-number {
  width: 75px;
}

.td-sales {
  width: 110px;
}

/* 페이지네이션 */
.table-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-pagination span,
.table-pagination a {
  text-decoration: none;
  color: var(--Secondary-GoolGray-CoolGray800, #0f1b2a);
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-pagination a {
  width: 32px;
  height: 32px;
}

a {
  background-color: none;
  text-decoration: none;
  outline: none;
}

a.active {
  justify-content: center;
  align-items: center;
  background-color: #3391ff;
  border-radius: 50px;
  color: var(--Text_04, #fff);
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.franchisor_sub{
	display: none;
}

/* 반응형 */
@media screen and (max-width: 1200px) {
	/* 가맹점 서브 정보*/
	.franchisor_sub_wrapper{
		width: 100%;
		display: flex;
		justify-content: center;
		margin-bottom: 30px;
	}
	.franchisor_sub{
		width: 320px;	
		display: flex;
  		flex-direction: column;	
  		align-items: center;
    	text-align: center;
	}
	.franchisor_sub b {
		margin-top: 25px;
	  	font-weight: 700;
	    font-size: 20px;
	    line-height: 1.4;
	}
	.franchisor_sub p {
	  	margin-top: 15px;
	  	line-height: 1.55;
	  	color: #707070;
	   	font-size: 14px;
	    line-height: 1.6;
	}
	
	.table-container{
		padding: 0px;
	}
	
  .table-header {
    width: 100%;
    padding: 0px;
    flex-direction: column; /* 다시 컬럼 방향으로 변경 */
  }

  .table-header .left-input {
    width: 100%;
  }

  .table-header .select-box {
    width: 40%;
    height: 31px; /* 높이 조정 */
  }

  .table-header .select-box select {
    background: url("../img/icons/select_icon.svg") calc(100% - 12px) center
      no-repeat;
    font-size: 14px; /* 폰트 크기 조정 */
    padding: 8px 12px; /* 패딩 조정 */
  }

  .table-header .search-bar {
    width: 60%;
    height: 31px; /* 높이 조정 */
  }

  .table-header .search-bar input {
    font-size: 14px; /* 폰트 크기 조정 */
    padding: 8px 12px; /* 패딩 조정 */
    height: 31px; /* 높이 조정 */
  }

  .table-header .info-box {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    height: 104px;
    padding: 0px 0px;
  }
  .span-border {
    display: none;
  }
  .table-header .info-box .info-data {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 16px;
    margin-left: 20px;
  }
  .table-header .info-box .info-data .info-label {
    width: 75px;
    font-size: 14px;
  }
  .table-header .info-box .info-data .info-text {
    font-size: 16px; /* 폰트 크기 조정 */
  }

  .table-header .info-box .info-data .info-text span {
    font-size: 12px; /* 폰트 크기 조정 */
  }

  .table-box {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 20px;
  }
  table {
    width: 100%;
  }
  th,
  td {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
    padding: 0 12px;
  }
}

@media screen and (max-width: 768px) {
  .table-pagination a:nth-child(n + 8):not(:nth-last-child(-n + 2)) {
    display: none;
  }
}

@media screen and (max-width: 350px) {
  .table-pagination a:nth-child(n + 6) {
    display: none;
  }
}

.table-pagination a.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow-x: auto;
  padding: 10px 0;
}

.table-pagination a {
  margin: 0 3px;
  padding: 5px 8px;
  text-decoration: none;
  color: #333;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.table-pagination a:hover {
  background-color: #f0f0f0;
}

.table-pagination a.active {
  background-color: #007bff;
  color: white;
}

/* 첫 페이지와 마지막 페이지 버튼에 추가 여백 */
#first-prev, #last-next {
  margin: 0 10px;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading .spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #F44336;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 350px) {
  .table-pagination a:nth-child(n + 6) {
    display: none;
  }
}

@media screen and (max-width: 1220px) {
  .store_wrap .qrcode#qrcode {
    display: none;
  }
}

.show-mobile-table-page{
  display: none;
}

.show-mobile-table-page-btn {
  width: 180px;
  height: 48px;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-mobile-phone-page{
  display: none;
}

.show-mobile-phone-page-btn{
  width: 180px;
  height: 48px;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1220px) {
  .show-mobile-table-page {
    display: block;
  }
  .show-mobile-phone-page{
    display: block;
  }
}