.clearfix {
  display: block;
  zoom: 1;
}
.clearfix:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
.link-default {
  text-decoration: none;
  outline: none;
}
.hide {
  opacity: 0;
  visibility: hidden;
}
.show {
  opacity: 1;
  visibility: visible;
}
/** animate **/
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.scaleRotateAnimateDisplay {
  -webkit-transform: scale(1) rotate(180deg);
  -moz-transform: scale(1) rotate(180deg);
  -o-transform: scale(1) rotate(180deg);
  transform: scale(1) rotate(180deg);
}
.scaleRotateAnimateDisplayN {
  -webkit-transform: scale(0) rotate(0deg);
  -moz-transform: scale(0) rotate(0deg);
  -o-transform: scale(0) rotate(0deg);
  transform: scale(0) rotate(0deg);
}
.opacityDisplay {
  opacity: 0;
  visibility: hidden;
}
.couponBg {
  background: #ffbd27;
  background: -moz-linear-gradient(top, #ffbd27 0%, #ff6d00 99%);
  background: -webkit-linear-gradient(top, #ffbd27 0%, #ff6d00 99%);
  background: linear-gradient(to bottom, #ffbd27 0%, #ff6d00 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbd27', endColorstr='#ff6d00', GradientType=0);
}
.material_checkbox {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.material_checkbox .checkbox {
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  border-radius: 0;
}
.material_checkbox .checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #363636;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.material_checkbox .checkbox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: #f2f2f2;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  cursor: pointer;
}
.material_checkbox .checkbox:checked:before {
  height: 6px;
  border-color: #ffbd27;
  border-top-style: none;
  border-right-style: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.material_radio input[type="radio"] {
  display: none;
}
.material_radio input[type="radio"] + label {
  cursor: pointer;
}
.material_radio input[type="radio"] + label::before {
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #363636;
  border: 0px solid #363636;
  font-size: 0;
  position: absolute;
  bottom: 10px;
  left: 10px;
  transform: translate(-50%, 50%);
}
.material_radio input[type="radio"] + label::after {
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
  content: "";
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #363636;
  position: absolute;
  bottom: 10px;
  left: 10px;
  transform: translate(-50%, 50%);
}
.material_radio input[type="radio"]:checked + label::before {
  background-color: transparent;
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.material_radio input[type="radio"]:checked + label::after {
  width: 8px;
  height: 8px;
}
body #wrapper {
  /***** 版權 *****/
}
body #wrapper #colophon {
  background: rgb(247, 247, 247);
  padding-top: 50px;
}
body #wrapper #colophon .colophon_sitemap,
body #admin_wrapper #colophon .colophon_sitemap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  -o-align-items: baseline;
  align-items: baseline;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  padding: 0 10%;
  box-sizing: border-box;
  width: 100%;
  gap: 5vw;
}
body #wrapper #colophon .colophon_sitemap .colophon_item,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  gap: 30px;
}
/* body #wrapper #colophon .colophon_sitemap .colophon_item.payment,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item.payment {
  align-items: center;
} */

body #wrapper #colophon .colophon_sitemap .colophon_item:first-child,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item:first-child {
  flex: 1;
}
body #wrapper #colophon .colophon_sitemap .colophon_item h2,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item h2 {
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
}
body #wrapper #colophon .colophon_sitemap .colophon_item .menu,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item .menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  gap: 20px;
}
body #wrapper #colophon .colophon_sitemap .colophon_item .list,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item .list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  /* flex-wrap: wrap; */
  gap: 20px;
}
body #wrapper #colophon .colophon_sitemap .colophon_item .list.app_list,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item .list.app_list {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  gap: 24px;
}
body #wrapper #colophon .colophon_sitemap .colophon_item .list .item,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item .list .item {
  font-size: 14px;
  color: #363636;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  line-height: normal;
}
body #wrapper #colophon .colophon_sitemap .colophon_item .list .item:hover,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item .list .item:hover {
  color: rgb(255, 189, 39);
}
body #wrapper #colophon .colophon_sitemap .colophon_item .list .item .icon,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item .list .item .icon {
  margin-right: 10px;
}
body #wrapper #colophon .colophon_sitemap .colophon_item .list .item img,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item .list .item img {
  width: 100%;
  height: 100%;
}
body #wrapper #colophon .colophon_sitemap .colophon_item .list .item.qr_n_button,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item .list .item.qr_n_button {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 0;
  width: 120px;
}
body #wrapper #colophon .colophon_sitemap .colophon_item:last-child,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item:last-child {
  /* width: 50%; */
  margin-right: 0;
}
body #wrapper #colophon .colophon_sitemap .app_item .list .item img,
body #admin_wrapper #colophon .colophon_sitemap .app_item .list .item img {
  width: 100%;
}
body #wrapper #colophon .colophon_sitemap .sponsor_item .list,
body #admin_wrapper #colophon .colophon_sitemap .sponsor_item .list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
}
body #wrapper #colophon .colophon_sitemap .sponsor_item .list .item,
body #admin_wrapper #colophon .colophon_sitemap .sponsor_item .list .item {
  width: 125px;
  margin-right: 15px;
}
body #wrapper #colophon .colophon_sitemap .sponsor_item .list .item:last-child,
body #admin_wrapper #colophon .colophon_sitemap .sponsor_item .list .item:last-child {
  margin-bottom: 15;
}
body #wrapper #colophon .copy_rights,
body #admin_wrapper #colophon .copy_rights {
  background: #222222;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  color: rgb(255, 255, 255);
  font-size: 14px;
  margin-top: 50px;
  padding: 15px 10%;
}
body #wrapper #colophon .copy_rights .copy_rights_top,
body #admin_wrapper #colophon .copy_rights .copy_rights_top {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}
body #wrapper #colophon .copy_rights .copy_rights_top .social_list,
body #admin_wrapper #colophon .copy_rights .copy_rights_top .social_list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
body #wrapper #colophon .copy_rights .copy_rights_top .social_list_RWD,
body #admin_wrapper #colophon .copy_rights .copy_rights_top .social_list_RWD {
  display: none;
}
body #wrapper #colophon .copy_rights .copy_rights_top .social_list .item,
body #admin_wrapper #colophon .copy_rights .copy_rights_top .social_list .item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: auto 10px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  outline: none;
}
body #wrapper #colophon .copy_rights .copy_rights_top .social_list .item img,
body #admin_wrapper #colophon .copy_rights .copy_rights_top .social_list .item img {
  width: 100%;
  height: 100%;
}
body #wrapper #colophon .copy_rights .copy_rights_top .social_list .item:hover,
body #admin_wrapper #colophon .copy_rights .copy_rights_top .social_list .item:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}



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

 .social_list_RWD,
 .social_list_RWD {
  display: none;
}
 .social_list .item,
 .social_list .item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: auto 10px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  outline: none;
}

.social_list .item:first-child {
  margin-left: 0; /* Remove margin for the first item */
}
 .social_list .item img,
 .social_list .item img {
  width: 100%;
  height: 100%;
}
 .social_list .item:hover,
 .social_list .item:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}





body #wrapper #colophon .copy_rights .copy_rights_bottom,
body #admin_wrapper #colophon .copy_rights .copy_rights_bottom {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-top: 12px;
}
body #wrapper #colophon .copy_rights .copy_rights_bottom .item,
body #admin_wrapper #colophon .copy_rights .copy_rights_bottom .item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  margin-right: 24px;
}
body #wrapper #colophon .colophon_sitemap .copy_rights_middle h2,
body #admin_wrapper #colophon .colophon_sitemap .copy_rights_middle h2 {
  font-size: 18px;
  font-weight: bold;
}
body #wrapper #colophon .colophon_sitemap .copy_rights_middle .item,
body #admin_wrapper #colophon .colophon_sitemap .copy_rights_middle .item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-right: 12px;
  width: 100%;
}
body #wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 14px;
}
body #wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons .image,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons .image {
  width: 46px;
  height: 46px;
  border-radius: 2px;
  overflow: hidden;
}
body #wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons .image img,
body #admin_wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons .image img {
  width: 100%;
  height: 100%;
  border-radius: 1px;
}
body #wrapper #colophon .copy_rights .copy_rights_bottom .item .icon.company,
body #admin_wrapper #colophon .copy_rights .copy_rights_bottom .item .icon.company {
  margin-right: 10.25px;
  /* margin-top: 2px; */
}
body #wrapper #colophon .copy_rights .copy_rights_bottom .item .icon.address,
body #admin_wrapper #colophon .copy_rights .copy_rights_bottom .item .icon.address {
  margin-right: 11.25px;
  /* margin-top: 2px; */
}
body #wrapper #colophon .copy_rights .copy_rights_bottom .item .icon.email,
body #admin_wrapper #colophon .copy_rights .copy_rights_bottom .item .icon.email {
  margin-right: 9px;
  /* margin-top: 2px; */
}

@media (max-width: 1200px) {
  body #wrapper #colophon .colophon_sitemap,
  body #admin_wrapper #colophon .colophon_sitemap {
    padding: 0 5%;
    gap: 4vw;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item .list.app_list,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item .list.app_list {
    gap: 16px;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons {
    gap: 12px;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons .image img,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons .image img {
    border-radius: 3px;
  }
}
@media (max-width: 768px) {
  body #wrapper #colophon .colophon_sitemap,
  body #admin_wrapper #colophon .colophon_sitemap {
    gap: 2.5vw;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item {
    gap: 20px;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item:first-child,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item:first-child {
    flex: unset;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons .image,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons .image {
    width: 30px;
    height: 30px;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item .list.app_list,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item .list.app_list {
    gap: 12px;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item .list .item.qr_n_button,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item .list .item.qr_n_button {
    width: 80px;
  }
  body #wrapper #colophon .copy_rights .copy_rights_bottom,
  body #admin_wrapper #colophon .copy_rights .copy_rights_bottom {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    -ms-align-items: baseline;
    -o-align-items: baseline;
    align-items: baseline;
    gap: 12px;
  }
}

@media (max-width: 580px) {
  body #wrapper #colophon .colophon_sitemap,
  body #admin_wrapper #colophon .colophon_sitemap {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item {
    width: 100%;
    flex: unset;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item .menu,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item .menu {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item .menu .list,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item .menu .list {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    width: 100%;
    gap: 20px;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item .menu .list .item,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item .menu .list .item {
    text-align: center;
    margin-right: auto;
    width: 100%;
    font-size: 14px;
    min-width: 120px;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons .image,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item.payment .item .payment_icons .image {
    width: 46px;
    height: 46px;
  }
  body #wrapper #colophon .colophon_sitemap .colophon_item .list .item.qr_n_button,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item .list .item.qr_n_button {
    width: 120px;
  }
  body #wrapper #colophon .copy_rights .copy_rights_top,
  body #admin_wrapper #colophon .copy_rights .copy_rights_top {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
  body #wrapper #colophon .copy_rights .copy_rights_top .social_list,
  body #admin_wrapper #colophon .copy_rights .copy_rights_top .social_list {
    display: none;
  }
  body #wrapper #colophon .copy_rights .copy_rights_top .social_list_RWD,
  body #admin_wrapper #colophon .copy_rights .copy_rights_top .social_list_RWD {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
  }
  body #wrapper #colophon .copy_rights .copy_rights_top .social_list_RWD .item,
  body #admin_wrapper #colophon .copy_rights .copy_rights_top .social_list_RWD .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: auto 10px auto 0px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;
    outline: none;
  }
  body #wrapper #colophon .copy_rights .copy_rights_top .social_list_RWD .item img,
  body #admin_wrapper #colophon .copy_rights .copy_rights_top .social_list_RWD .item img {
    width: 100%;
    height: 100%;
  }
  body #wrapper #colophon .copy_rights .copy_rights_top .social_list_RWD .item:hover,
  body #admin_wrapper #colophon .copy_rights .copy_rights_top .social_list_RWD .item:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@media (max-width: 414px) {
  body #wrapper #colophon .colophon_sitemap .colophon_item,
  body #admin_wrapper #colophon .colophon_sitemap .colophon_item {
    width: 100%;
    flex: unset;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    gap: 24px;
  }

  body #wrapper #colophon .copy_rights .copy_rights_top,
  body #admin_wrapper #colophon .copy_rights .copy_rights_top {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
  body #wrapper #colophon .copy_rights .copy_rights_top .social_list,
  body #admin_wrapper #colophon .copy_rights .copy_rights_top .social_list {
    display: none;
  }
}
