:root {
  --primaryColor: #FB5C67;
  --primaryColor--100: #FFF2F3;
  --blue: #1e90ff;
  --gray: #d4d4d4;
  --white: #ffffff;
  --yellow: #f7c244;
  --dark-charcoal: #333;
  --gold: #cbac00;
  --gold-500: #c76b00;
  --white-350: #d0d0d0;
  --white-400: #c1c1c1;
  --black-150: #90949D;
  --black-200: #909090;
  --black-600: #464950;
  --black-900: #000000;
  /* #000 in decimal RGB */
  --black-900-rgb: 0, 0, 0;
  --gray-900: #5F636C;
  --bgBody: #f4f5f7;
  --primaryFont: "Noto Sans JP", sans-serif;
  --outfitFont: "Outfit", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: -webkit-fill-available;
}

body {
/*   background-color: var(--bgBody); */
  color: var(---dark-charcoal);
  font-family: var(--primaryFont);
  font-weight: 400;
  font-size: 14px;
	
}
body.hp-template--listing-view-page {
	overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
}

a {
  color: inherit;
}

a:hover {
  color: var(--white);
}

img {
  max-width: 100%;
}

.site-content {
  padding: 20px 0;
}

.site-container {
	padding: 0 20px;
	overflow: inherit;
	padding-bottom: 30px;
}

.container {
  	max-width: 1055px;
}

.container:after {
  display: none;
}

.l-flexContent {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .l-flexContent {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .l-flexContent {
    flex-wrap: wrap;
  }
}

.l-mainContent {
  width: 730px;
  flex: 0 0 730px;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .l-mainContent {
    width: 100%;
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 767px) {
  .l-mainContent {
    width: 100%;
    flex: 1 1 100%;
  }
}

.l-sidebar {
  width: 275px;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .l-sidebar {
    width: 100%;
    flex: 1 1 100%;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
  }

  .l-sidebar .c-box {
    width: 49%;
  }

  .l-sidebar .c-box:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .l-sidebar {
    width: 100%;
    flex: 1 1 100%;
    margin-top: 10px;
  }
}

.c-searchForm .search-form {
  position: relative;
}

.c-searchForm .search-field {
  width: 300px;
  height: 40px;
  border: 2px solid var(--gray);
  border-radius: 20px;
  padding: 0 40px 0 20px;
  font-size: 14px;
}

.c-searchForm .search-field::placeholder {
  color: var(--white-350);
}

@media screen and (max-width: 767px) {
  .c-searchForm .search-field {
    width: 150px;
  }
}

.c-searchForm .search-submit {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  background: transparent;
  height: 100%;
  color: var(--dark-charcoal);
}

.c-searchForm .search-submit:hover {
  opacity: 0.7;
}

.c-searchForm .search-submit .feather {
  width: 18px;
  height: 18px;
}

.c-box {
  border: 1px solid var(--white-350);
  border-radius: 4px;
  background: var(--white);
}

.c-box:not(:first-child) {
  margin-top: 10.5px;
}

.c-box__title {
  border-bottom: 1px solid var(--white-350);
  padding: 15px;
}

.c-box__title>* {
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.c-box__title svg {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.c-box__title i {
  margin-right: 5px;
}

.c-box__content {
  padding: 15px;
}

.c-box-nav ul {
  list-style: none;
  margin-left: 0;
}

.c-box-nav ul li {
  position: relative;
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.c-box-nav ul li:before {
  color: var(--dark-charcoal);
  font-size: 12px;
  content: "\f054";
  top: 0.3rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  position: absolute;
  left: 0;
  transition: color 0.25s;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  display: flex;
  transition: 0.3s all;
  position: relative;
  padding-right: 20px;
}

.news-item:not(:first-child) {
  margin-top: 13px;
}

.news-item__date {
  font-size: 11px;
  color: var(--primaryColor);
  width: 80px;
}

.news-item__title {
  font-size: 12px;
  text-decoration: none;
  color: var(--dark-charcoal);
  width: calc(100% - 80px);
}

.news-item .feather {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-btn--link,
.c-btn--tab {
  color: var(--dark-charcoal);
  font-size: 14px;
  box-shadow: 0px 0px 0px 1px var(--gray) inset;
  transition: all 0.3s ease-in-out;
}

.button--primary {
  background-color: var(--primaryColor);
  font-family: inherit;
}

.c-btn--tab {
  cursor: pointer;
  font-size: 15px;
  width: 105px;
  height: 35px;
  margin: 0 5px;
  font-weight: bold;
}

.c-btn--tab.is-active,
.c-btn--tab:hover {
  color: var(--primaryColor);
  box-shadow: 0px 0px 0px 2px var(--primaryColor) inset;
}

.c-btn--link {
  cursor: pointer;
  font-size: 14px;
  width: 215px;
  height: 40px;
  position: relative;
}

.c-btn--link .feather {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  position: absolute;
}

.c-btn--link:hover {
  color: var(--white);
  background: var(--primaryColor);
  box-shadow: 0px 0px 0px 2px var(--primaryColor) inset;
}

.c-btn--fa {
  font-weight: bold;
  background-color: var(--primaryColor);
  color: var(--white);
  height: 35px;
  line-height: 35px;
  margin-top: 7px;
  display: flex;
  align-items: center;
  padding: 0 5px;
  border: 2px solid transparent;
  font-size: 14px;
}

.c-btn--fa:hover {
  color: var(--white);
}

.c-btn--fa .hp-icon {
  display: none;
}

.c-btn--fa[data-state=active] {
  border-color: var(--primaryColor);
  background-color: var(--white);
  color: var(--primaryColor);
}

.c-btn--fa[data-state=active]:hover {
  color: var(--primaryColor);
}

.c-btn--fa .feather {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}

.c-btn--fa .feather polygon {
  fill: var(--white);
}

.c-btn--radius {
  border-radius: 4px;
}

.c-btn--round {
  border-radius: 30px;
}

button[type=submit] {
  background-color: var(--primaryColor);
  font-family: inherit;
}

.c-card {
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
}
.hp-template--vendor-view-page .c-card {
	/* margin: 0 -20px; */
	padding-bottom: 20px;
}
.c-card:not(:last-child) {
  margin-bottom: 30px;
}

.c-card--6-column .c-card-item {
  width: calc(16.6666666667% - 10px);
}

@media screen and (max-width: 767px) {
  .c-card--6-column .c-card-item {
    width: calc(50% - 7px);
  }
}

.c-card--4-column .c-card-item {
  width: calc(25% - 10px);
}

@media screen and (max-width: 767px) {
  .c-card--4-column .c-card-item {
    width: calc(50% - 7px);
  }
}

.c-card--2-column .c-card-item {
  width: calc(50% - 7px);
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .c-card--2-column .c-card-item {
    width: calc(33.3333333333% - 10px);
  }
}

@media screen and (max-width: 767px) {
  .c-card--2-column .c-card-item {
    width: calc(50% - 7px);
  }
}

.c-card-img {
  	position: relative;
	aspect-ratio: 1;
}

.c-card-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
}

.c-card-img--sm {
  height: 115px;
}

.c-card-point {
  width: 48px;
  height: 20px;
  border-radius: 10px;
  background: var(--white);
  color: var(--primaryColor);
  font-size: 10px;
  font-weight: bold;
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-align: center;
  align-items: center;
  justify-content: center;
  line-height: 20px;
}

.c-card-point .feather {
  margin-right: 2px;
  width: 16px;
  height: 16px;
}

.c-card-point .feather polygon {
  fill: var(--primaryColor);
}

.c-card-date {
  font-size: 11px;
  margin-bottom: 6px;
}

.c-card-relative {
  position: relative;
}

.c-card-relative .c-card-cover {
	height: 82px;
    background-color: #ccc;
}

.c-card-link {
  font-size: 12px;
  color: var(--dark-charcoal);
  font-weight: bold;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 36px;
}

.c-card-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}

.c-card-link:hover {
  color: inherit;
}

.c-card-author {
  margin-top: 5px;
  display: flex;
}

.c-card-author__img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex: 0 0 24px;
}

.c-card-author__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-card-author__info {
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding-left: 5px;
  padding-top: 2px;
  font-size: 12px;
}

.c-card-price {
  margin-bottom: 5px;
}

.c-card-price__tax {
  font-size: 10px;
}

.c-card-item {
  position: relative;
  transition: 0.3s all;
}

.c-card-item:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .c-card-item:hover {
    opacity: 1;
  }
}

.c-card-item--sm {
  font-size: 10px;
}

.c-card-item--sm .c-card-img {
  height: 115px;
}

.c-card-item--sm .c-card-link {
  font-size: 11px;
}

.c-card-item--sm .c-card-author__info {
  font-size: 10px;
}

.c-card-item--sm .c-card-point {
  right: 5px;
  bottom: 5px;
}

.c-card-item--sm .c-card-point .feather {
  margin-right: 2px;
  width: 12px;
  height: 12px;
}

.c-card-item--sm .c-btn--fa {
  height: 30px;
  line-height: 30px;
  font-size: 10px;
  padding-right: 0;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .c-card-item--sm .c-btn--fa {
    font-size: 9px;
  }
}

.c-card-item--sm .c-btn--fa .feather {
  width: 14px;
  height: 14px;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .c-card-item--sm .c-btn--fa .feather {
    width: 12px;
    height: 12px;
  }
}

.c-card-rank {
  position: relative;
}

.c-card-rank:before {
  width: 17px;
  height: 17px;
  border-radius: 3px;
  position: absolute;
  border-radius: 50%;
  top: 7px;
  left: 7px;
  z-index: 9;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--white);
}

.c-card-rank:nth-child(1):before {
  content: "1";
  background-color: var(--yellow);
}

.c-card-rank:nth-child(2):before {
  content: "2";
  background-color: var(--black-200);
}

.c-card-rank:nth-child(3):before {
  content: "3";
  background-color: var(--gold-500);
}

.c-card-rank:nth-child(4):before {
  content: "4";
  background-color: var(--black-600);
}

.c-card-rank:nth-child(5):before {
  content: "5";
  background-color: var(--black-600);
}

.c-card-rank:nth-child(6):before {
  content: "6";
  background-color: var(--black-600);
}

.js-tab-content {
  margin-top: 15px;
}

input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=max],
input[type=min],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=step],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=value],
select,
textarea {
  font-size: 14px;
}

@media screen and (max-width: 767px) {

  input[type=color],
  input[type=date],
  input[type=datetime-local],
  input[type=datetime],
  input[type=email],
  input[type=max],
  input[type=min],
  input[type=month],
  input[type=number],
  input[type=password],
  input[type=range],
  input[type=search],
  input[type=step],
  input[type=tel],
  input[type=text],
  input[type=time],
  input[type=url],
  input[type=value],
  select,
  textarea {
    font-size: 16px;
  }
}

.c-breadcrumb {
  border-bottom: 1px solid var(--gray);
  background-color: var(--white);
  font-size: 12px;
  color: var(--black-150);
  padding: 10px 0;
}

.c-breadcrumb a {
  color: var(--primaryColor);
}

.c-breadcrumb a:hover {
  color: currentColor;
}

.c-page-title {
  padding: 15px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray);
}

.c-page-title h1 {
  font-size: 20px;
  color: var(--dark-charcoal);
  font-weight: bold;
}

.c-page-title__filter {
  display: flex;
  margin-top: 15px;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .c-page-title__filter {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.c-page-title__filter-info {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .c-page-title__filter-select {
    margin-top: 15px;
  }
}

.c-page-title__filter-select select {
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  .c-page-title__filter-select select {
    padding: 5px;
    font-size: 12px;
  }
}

.header-navbar {
  background-color: var(--white);
  padding: 10px 50px;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .header-navbar {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .header-navbar {
    padding: 10px;
  }
}

.header-navbar:last-child {
  border-bottom: 1px solid var(--gray);
}

.header-navbar .header-logo {
  max-width: 170px;
}

.header-navbar .header-logo__name {
  color: var(--primaryColor);
  font-size: 25px;
  font-family: var(--outfitFont);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .header-navbar .header-logo__name {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .header-navbar .header-logo__name {
    font-size: 16px;
  }
}

.header-navbar__burger {
  position: relative;
  z-index: 9;
  margin-right: 10px !important;
  width: 40px;
  height: 40px;
  background-color: var(--primaryColor);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

.header-navbar__burger:hover {
  opacity: 0.7;
}

.header-navbar__menuIcons {
  display: flex;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .header-navbar__menuIcons {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header-navbar__menuIcons {
    display: none;
  }
}

.header-navbar__menuIcons #menu-icons-account .icon svg {
  width: 17px;
}

.header-navbar__menuIcons .menu-icons {
  display: flex;
}

.header-navbar__menuIcons .menu-icons:last-child {
  padding-left: 12.5px;
  margin-left: 17.5px;
  border-left: 1px solid var(--gray);
}

.header-navbar__menuIcons .menu-icon {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-width: 52px;
  padding: 0 7.5px;
}

.header-navbar__menuIcons .menu-icon .notify {
  width: 17px;
  height: 17px;
  border: 1px solid var(--white);
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  border-radius: 50%;
  background-color: var(--primaryColor);
  color: var(--white);
  display: flex;
  line-height: 13px;
  justify-content: center;
  top: 0;
  right: -4px;
}

.header-navbar__menuIcons .menu-icon .icon {
  position: relative;
  width: 35px;
  height: 35px;
  background-color: var(--white-400);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 1px solid var(--white-400);
}

.header-navbar__menuIcons .menu-icon .icon svg {
  width: 18px;
  stroke: var(--white);
}

.header-navbar__menuIcons .menu-icon small {
  font-size: 10px;
}

.header-navbar__menuIcons #menu-cart .icon svg {
  transform: translateX(-1px);
}

.header-navbar__menuIcons #menu-login .icon {
  background-color: var(--white);
  border-color: var(--primaryColor);
}

.header-navbar__menuIcons #menu-login .icon svg {
  stroke: var(--primaryColor);
}

.header-navbar__menuIcons #menu-club .icon {
  background-color: var(--blue);
  border-color: var(--blue);
}

.header-navbar__menuIcons #menu-account .icon {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.header-navbar .c-searchForm {
  margin-right: 20px;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .header-navbar .c-searchForm {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .header-navbar .c-searchForm {
    margin-right: 0;
  }
}

.header-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  display: none;
}

.header-menu.is-show {
  display: block;
}

.header-menu>a {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("../images/icon/menu-open.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background: url("../images/icon/menu-open.png") no-repeat center/contain;
}

.header-menu>a i {
  display: none;
}

.header-menu .menu {
  margin-left: 0;
  list-style: none;
}

.header-menu .header-navbar__menuIcons {
  display: none;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .header-menu .header-navbar__menuIcons {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .header-menu .header-navbar__menuIcons {
    display: block;
  }
}

.header-menu .header-navbar__menuIcons .menu-icons {
  justify-content: center;
  margin-bottom: 20px;
}

.header-menu .header-navbar__menuIcons .menu-icons:last-child {
  padding-left: 0;
  margin-left: 0;
  border-left: 0;
}

.header-menu-wrap {
  width: 275px;
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .header-menu-wrap {
    width: 245px;
  }
}

.header-overplay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 275px;
  background-color: rgba(var(--black-900-rgb), 0.2);
}

@media screen and (max-width: 767px) {
  .header-overplay {
    left: 245px;
  }
}

.header-menu-top {
  padding: 20px 25px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .header-menu-top {
    padding: 20px 15px;
  }
}

.header-menu-close {
  margin-right: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

.header-menu-close:hover {
  opacity: 0.7;
}

.header-menu-close svg {
  width: 40px;
  height: 40px;
}

.menu-list__title {
  font-weight: bold;
  padding: 10px 25px;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .menu-list__title {
    padding: 10px 15px;
  }
}

.menu-list__item {
  padding: 10px 25px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .menu-list__item {
    padding: 10px 15px;
  }
}

.menu-list__item:hover,
.menu-list__item.is-active {
  background-color: var(--bgBody);
  color: var(--dark-charcoal);
}

.menu-list__item .icon {
  margin-right: 5px;
  display: flex;
}

.menu-list__item .icon svg {
  width: 15px;
  height: 15px;
}

.c-footer {
	/* background-color: var(--black-600); */
	padding: 45px 50px 0;
	color: var(--white);
	padding-top: 0;
	position: relative;
	z-index: 99;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .c-footer {
/*     margin-top: 50px; */
    padding: 30px 15px 0;
	padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-footer {
/*     margin-top: 40px; */
    padding: 30px 15px 0;
	padding-top: 0;
  }
}

.c-footer_logo {
  font-family: var(--outfitFont);
  font-size: 25px;
  text-transform: uppercase;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .c-footer_logo {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .c-footer_logo {
    font-size: 16px;
  }
}

.c-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray-900);
  padding-bottom: 20px;
}

.c-footer__top .bnt-twitter {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-footer__top .bnt-twitter i {
  color: var(--white);
  font-size: 15px;
}

.c-footer__menu {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
}

.c-footer__item {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .c-footer__item {
    width: 100%;
    margin-bottom: 15px;
  }
}

.c-footer__item h3 {
  color: var(--white);
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .c-footer__item h3 {
    margin-bottom: 10px;
  }
}

.c-footer__item ul {
  list-style: none;
  padding-right: 10px;
  padding-left: 0;
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .c-footer__item ul {
    margin-bottom: 10px;
  }
}

.c-footer__item a {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  transition: opacity 0.3s ease-in-out;
}

.c-footer__item a:hover {
  opacity: 0.5;
}

.c-footer__copyright {
  border-top: 1px solid var(--gray-900);
  font-size: 12px;
  text-align: center;
  padding: 10px 0 15px;
  margin-top: 120px;
}

@media screen and (max-width: 767px) {
  .c-footer__copyright {
    margin-top: 0;
  }
}

.button--primary,
button[type=submit],
input[type=submit],
.header-navbar__menu>ul>li.current-menu-item::before,
.header-navbar__burger>ul>li.current-menu-item::before,
.hp-menu--tabbed .hp-menu__item--current::before,
.woocommerce #respond input#submit.alt,
.woocommerce button[type=submit],
.woocommerce input[type=submit],
.woocommerce button[type=submit]:hover,
.woocommerce input[type=submit]:hover,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.title::before,
.footer-widgets .widget__title::before,
.hp-page__title::before,
.hp-section__title::before,
.hp-listing--view-block .hp-listing__featured-badge {
  background-color: var(--primaryColor);
}

.header-navbar__menu ul li.active>a,
.header-navbar__menu ul li.current-menu-item>a,
.header-navbar__menu ul li a:hover,
.footer-navbar__menu ul li a:hover,
.hp-menu--tabbed .hp-menu__item a:hover,
.hp-menu--tabbed .hp-menu__item--current a,
.widget_archive li a:hover,
.widget_categories li a:hover,
.widget_categories li.current-cat>a,
.widget_categories li.current-cat::before,
.widget_product_categories li a:hover,
.widget_product_categories li.current-cat>a,
.widget_product_categories li.current-cat::before,
.widget_meta li a:hover,
.widget_nav_menu li a:hover,
.widget_nav_menu li.current-menu-item>a,
.widget_nav_menu li.current-menu-item::before,
.woocommerce-MyAccount-navigation li a:hover,
.woocommerce-MyAccount-navigation li.current-menu-item>a,
.woocommerce-MyAccount-navigation li.current-menu-item::before,
.widget_pages li a:hover,
.widget_recent_entries li a:hover,
.wp-block-archives li a:hover,
.wp-block-categories li a:hover,
.wp-block-latest-posts li a:hover,
.wp-block-rss li a:hover,
.widget_archive li:hover>a,
.widget_categories li:hover>a,
.widget_product_categories li:hover>a,
.widget_meta li:hover>a,
.widget_nav_menu li:hover>a,
.woocommerce-MyAccount-navigation li:hover>a,
.widget_pages li:hover>a,
.widget_recent_entries li:hover>a,
.wp-block-archives li:hover>a,
.wp-block-categories li:hover>a,
.wp-block-latest-posts li:hover>a,
.wp-block-rss li:hover>a,
.widget_archive li:hover::before,
.widget_categories li:hover::before,
.widget_product_categories li:hover::before,
.widget_meta li:hover::before,
.widget_nav_menu li:hover::before,
.woocommerce-MyAccount-navigation li:hover::before,
.widget_pages li:hover::before,
.widget_recent_entries li:hover::before,
.wp-block-archives li:hover::before,
.wp-block-categories li:hover::before,
.wp-block-latest-posts li:hover::before,
.wp-block-rss li:hover::before,
.post-navbar__link:hover i,
.pagination>a:hover,
.pagination .nav-links>a:hover,
.post__details a:hover,
.tagcloud a:hover,
.wp-block-tag-cloud a:hover,
.comment__details a:hover,
.comment-respond .comment-reply-title a:hover,
.hp-link:hover,
.hp-link:hover i,
.pac-item:hover .pac-item-query,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus {
  color: var(--primaryColor);
}

.woocommerce {
  width: 100%;
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
}

.woocommerce-account .woocommerce::after,
.woocommerce-account .woocommerce::before {
  display: none;
}

.u-color--yellow {
  color: var(--yellow);
}

.u-color--primary {
  color: var(--primaryColor);
}

.u-color--blue {
  color: var(--blue);
}

.u-color--gold {
  color: var(--gold);
}

/* position */
.u-flex--center {
  display: flex;
}

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

.u-mx--auto {
  margin: auto;
}

.hp-form__actions {
  font-size: 14px;
}

.hp-form__actions a {
  color: var(--primaryColor);
}

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

.wp-pagenavi a,
.wp-pagenavi span {
  border: 1px solid var(--gray);
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  margin: 0 3px;
  line-height: 39px;
}

@media screen and (max-width: 767px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 10px;
  }
}

.wp-pagenavi a:hover {
  color: var(--primaryColor);
  border-color: var(--primaryColor);
  background-color: var(--primaryColor--100);
}

.wp-pagenavi span {
  color: var(--primaryColor);
  border-color: var(--primaryColor);
  background-color: var(--primaryColor--100);
}

.hp-form--listing-submit .hp-form__button {
  pointer-events: none;
  background-color: #909090;
}

.hp-form--listing-submit .hp-form__button.is-active {
  pointer-events: inherit;
  background-color: var(--primaryColor);
}

/* 08-03-2023 */
.container,
.l-mainContent,
.l-sidebar {
  width: 100%;
  flex: auto;
}

.site-content .l-flexContent {
  display: block;
}

#wrapper__inner {
  max-width: 480px;
  margin: 0 auto;
  background: #F4F5F7;
  min-height: 100vh;
	padding-bottom: 50px;
}

#wrapper {
  background: #fff;
  min-height: 100vh;
}

.header-navbar {
  padding: 15px 13px;
}

.header-navbar .header-logo {
  max-width: 146.5px;
}

.header-navbar__menuIcons .menu-icon {
  padding: 0;
  min-width: auto;
  margin-left: 22px;
}

.header-navbar__menuIcons .menu-icon .icon {
  margin-bottom: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
}

.header-navbar__menuIcons .menu-icons:last-child {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

.header-navbar__menuIcons .menu-icon#menu-search svg {
  width: 22px;
  height: 22px;
}

body.home .site-content {
  padding-top: 0;
}

.l-topNews {
  margin-bottom: 13px;
}

.l-topNews .list__item {
  background: #FB5C67;
  display: flex;
  align-items: center;
  padding: 13px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding-right: 30px;
  transition: .3s ease;
}

.l-topNews .list__item:hover {
  opacity: .7;
}

.l-topNews .list__item .lbl {
  font-size: 12.5px;
  width: 55.5px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 12px;
  margin-right: 10px;
  flex-shrink: 0;
}

.l-topNews .list__item:after {
  width: 7px;
  height: 7px;
  border: 1px solid;
  position: absolute;
  content: '';
  transform: rotate(45deg);
  border-left: none;
  border-bottom: none;
  right: 15px;
  pointer-events: none;
}

.l-topNews .list__item .ttl {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-card-item.swiper-slide {
  width: 147px;
}

.c-card.swiper-wrapper {
  flex-wrap: nowrap;
  --gap: 0;
}

.c-card-item.swiper-slide {
  margin-right: 17px;
}

.c-card-item.swiper-slide .c-card-img {
  height: auto;
  line-height: 1;
  position: relative;
  padding-bottom: 100%;
}

.c-card-item.swiper-slide .c-card-img img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
}

.c-card-item.swiper-slide .c-card-point {
	right: auto;
	left: 50%;
	transform: translateX(-50%);
	bottom: -12px;
	border: 1px solid #eee;
}

.c-card-item.swiper-slide .c-card-link {
  min-height: auto;
	    margin-top: 20px;
    padding: 0 10px;
}

.c-card-item.swiper-slide .c-btn--fa {
  margin-top: 10px;
}

.c-box__content.c-box__content--custom {
  padding-top: 20px;
  padding-bottom: 30px;
}

.c-card-item.swiper-slide .c-btn--fa {
	font-size: 11px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px;
}

.c-card-item.swiper-slide .c-btn--fa .feather {
  width: 12px;
  height: 12px;
  margin-right: 3px;
  transform: translateY(.5px);
}

.c-card--3-column .c-card-item {
  width: calc(100% / 3);
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  right: 0;
  background: #fff;
  z-index: 10;
  border: 2px solid #EDEDED;
  padding:10px;
}

.f-menu ul {
  display: flex;
  justify-content: center;
  gap: 6.875%;
  align-items: center;
  list-style: none;
  margin:0;
}

.f-menu ul li {
  width: 62.5px;
  margin: 0;
}

.f-menu .txt{
  color:#333;
  font-weight: bold;
  font-size: 12.5px;
}

.f-menu ul li a{
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.f-menu .icon--mail {
  position: relative;
}

.f-menu .icon--mail.has-notification::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FB5C67;
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
  pointer-events:none;
}

.header-navbar__menuIcons{
  display:flex;
}

.loader{
  width: 100%;
  text-align: center;
  display:none;
}

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

.loader svg{
  animation: anim-rotate 2s linear infinite;
}

.js-tab-content{
  display:none;
}

.header-menu-wrap{
  width: 275px;
  left:auto;
  right:0;
}

.header-overplay{
  left: 0;
  width: calc(100% - 275px);
}

.header-menu-top {
  padding: 10px 10px 0;
}

.header-menu-close {
  margin-right: 0;
  margin-left: auto;
}

.menu-icon#menu-account {
  margin-right: 0!important;
  width: 32px;
  height: 32px;
}

.menu-list__item {
  border-top: 1px solid #E8E8E8;
  padding: 10px 24px;
}

.menu-list__item:last-child {
  border-bottom: 1px solid #E8E8E8;
}

.menu-list__title {
  padding: 10px 24px;
}

.menu-list:not(:last-child) {
  margin-bottom: 20px;
}

.header-menu-wrap{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header-menu-close svg {
  width: 32px;
  height: 32px;
}

.header-searchForm {
  display:none;
}

.header-searchForm__inner{
  position: absolute;
  top: 0;
  left: 0;
  max-width: 480px;
  margin: 0 auto;
  right: 0;
  height: 63px;
  background: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 0;
}

.header-navbar .c-searchForm {
  margin-right: 0;
}

.c-searchForm .search-field {
  width: 100%;
}

.header-searchForm .c-searchForm {
  flex: auto;
}

.header-searchForm__back {
  width: 35px;
  height: 35px;
  position: relative;
  cursor: pointer;
}

.header-searchForm__back:before {
  content: '';
  width: 12px;
  height: 12px;
  border: 1px solid;
  position: absolute;
  transform: rotate(45deg);
  border-right: none;
  border-top: none;
  top: 11px;
  left: 15px;
}

.header-searchForm .c-searchForm .search-field {
  height: 33px;
  border-width: 1px;
  font-size: 14px;
  padding: 0 40px 0 15px;
}

.header-searchForm .c-searchForm .search-submit {
  padding: 0 15px;
}

.header-navbar__menuIcons .menu-icon#menu-search {
  cursor: pointer;
}

@media screen and (max-width: 767px){
  .header-menu-close svg {
    width: 25px;
    height: 25px;
  }

  .header-navbar .header-logo__name{
    font-size: 22px;
  }

  .f-menu ul{
    gap: 15px;
  }
  
  .f-menu .txt {
      font-size: 11px;
  }
}

/* */
.logo-start {
  height: 100vh;
  width: calc((100vw - 480px)/2);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  font-size: 30px;
  letter-spacing: .3em;
  margin-right: -0.3em;
  font-weight: 300;
  display: flex;
}

.qr-start {
  height: 100vh;
  width: calc((100vw - 480px)/2);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  font-size: 30px;
  letter-spacing: .3em;
  margin-left: -0.3em;
  font-weight: 300;
  display: flex;
}

.qr_start_inner {
  text-align: center;
}

.qr_start_inner p {
  font-size: 13px;
  letter-spacing: 0;
}

.header-navbar {
  position: relative;
}

@media screen and (max-width: 1100px) {
  .logo-start, .qr-start {
    display: none;
  }
}

/* */
.c-title {
	padding-top: 15px !important;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background-color: var(--bgBody);
	z-index: 9;
	max-width: 480px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 1rem !important;
	line-height: 1;
}
.c-title a {
	position: absolute;
	left: 20px;
}
form[data-model="user"] {
	padding-top: 49px;
}
textarea[name="description"] {
	display: none;	
}
.hp-social-links .hp-social-links__item.button {
  font-size: 14px !important;
}
.hp-form--narrow .hp-form__button:not(:last-child) {
  font-size: 14px !important;
}


.woocommerce {
    display: block;
}
.c-sidebar h4 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 5px;
}
.c-sidebar ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.c-sidebar ul li {
    margin-bottom: 0;
    border-bottom: 1px solid #dfdfdf;
}
.c-sidebar ul li a {
    display: block;
    padding: 15px 0;
    font-size: 13px;
    font-weight: bold;
    position: relative;
}
.c-sidebar ul li a span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.c-sidebar ul li a:hover path {
    stroke: rgb(251, 92, 103);
}
.c-user {
    display: flex;
    align-items: center;
    margin: 0 -20px;
    margin-top: -20px;
    border-bottom: 1px solid #dfdfdf;
    padding: 15px 20px;
    position: relative;
}
.hp-page__content .c-user {
  margin-top: 0;
}
.c-user-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
.c-user-avatar {
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
	width: 72px;
}
.c-user-avatar img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}
.c-user-content {
    flex: 1 1 auto;
}
.c-user-content p {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: bold;
}
.c-user:hover p {
	color: #000;
}
.c-user-content .c-user-color {
    display: block;
    color: #3d8af7;
}

.report-event {
	margin-bottom: 20px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	position: absolute;
	background: #fff;
	top: 5px;
	right: -5px;
	z-index: 10;
	padding: 10px 0;
	border-radius: 5px;
	display: none;
	width: 130px;
	color: #333;
	font-size: 14px;
}
.report-event a {
	display: block;
	padding: 0 20px;
}
.report-event a:hover {
	color: var(--primaryColor);
}
.report-event i {
    margin-right: .5rem;
    color: rgba(7,36,86,.25);
}

.report-event a:hover i {
    color: rgb(251, 92, 103);
}

.fancybox-overplay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
}
.fancybox-overplay .fancybox-content {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    overflow: inherit;
}

.hp-listing__description {
    word-break: break-all;
}

input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=max], input[type=min], input[type=month], input[type=number], input[type=password], input[type=range], input[type=search], input[type=step], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=value], select, textarea {
	background-color: var(--white);
	border: 1px solid var(--white-350);
	border-radius: 3px;
}
.c-search {
	display: none;
}
.search .c-search {
	padding-top: 49px;
}
.home .c-search, .search .c-search, .page-id-66 .c-search {
	display: block;
}
.hp-template--user-login-page .hp-page__content {
	display: flex;
    flex-direction: column;
    height: calc(100vh - 70px);
}
.hp-template--user-login-page .hp-page__content form {
	margin: auto;
}
.hp-template--user-login-page .hp-page__content .hp-field__label {
	font-size: 13px;
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--white-350) !important;
    height: 37px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 35px !important;
}
.hp-field__label {
	font-size: 13px;
}
.hp-field input[type=checkbox]+span::before {
	border: 1px solid #d0d0d0;
	background-color: #fff;
	border-radius: 3px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 18px !important;
}
.select2-container {
	width: 100% !important;
}

.choose-plan {
	background-color: var(--white);
	border: 1px solid var(--white-350);
	border-radius: 3px;
	color: rgba(15,23,39,.45);
	padding: 0.4375rem 1rem;
	cursor: pointer;
}
.plan-wrap {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 99;
}
.login-logo {
	margin-bottom: 20px;
	text-align: center;
}
.content-area {
	position: relative;
	z-index: 2;
}
.video-content {
	margin: 0 -20px;
	height: calc(100vh - 70px);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 70px;
}
.video-play {
	height: 100%;
	position: relative;
}
.video-play video {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.hp-template--listing-view-page .hp-page__sidebar {
	display: none;
}

.my_video_1-dimensions {
	height: 100% !important;
	width: 100% !important;
}

.vjs-slider {
    -webkit-touch-callout: none;
    background-color: #73859f;
    cursor: pointer;
    padding: 0;
    position: absolute;
    -webkit-user-select: none;
    user-select: none;
	left: 0;
    right: 0;
    bottom: 0;
	height: 3px;
}
.vjs-hidden {
    display: none !important;
}
.vjs-load-progress, .vjs-play-progress {
	display: block;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 0;
}
.vjs-load-progress {
	background: #73859f80;
}
.vjs-play-progress {
	background-color: var(--primaryColor);
	display: flex;
	justify-content: flex-end;
}
.video-play :not(.vjs-visible-text)>.vjs-control-text {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.vjs-play-progress:before {
    content: "";
	background-color: var(--primaryColor);
	width: 9px;
	height: 9px;
	border-radius: 50%;
	position: relative;
	display: block;
	top: -3px;
}
.vjs-time-tooltip,
.vjs-mouse-display, 
.vjs-seek-to-live-control,
.vjs-control-bar .vjs-play-control,
.vjs-control-bar .vjs-volume-panel,
.vjs-control-bar .vjs-remaining-time,
.vjs-control-bar .vjs-custom-control-spacer,
.vjs-control-bar .vjs-fullscreen-control,
.vjs-control-bar .vjs-picture-in-picture-control,
.vjs-big-play-button {
	display: none;
}
.vjs-control-bar {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	color: #fff;
    display: flex;
    font-size: 12px;
    padding: 10px;
}
.vjs-time-divider {
	padding: 0 5px;
	background-color: rgba(0,0,0,0.5);
	padding-top: 1px;
}
.video-button {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	opacity: 0.7;
	display: none;
}
.vjs-paused + .video-button {
	display: block;
}
.vjs-current-time {
	background-color: rgba(0,0,0,0.5);
	padding-left: 7px;
	padding-bottom: 3px;
	border-radius: 5px 0 0 5px;
	padding-top: 1px;
}
.vjs-duration {
	background-color: rgba(0,0,0,0.5);
	padding-right: 7px;
	padding-bottom: 3px;
	border-radius: 0 5px 5px 0;
	padding-top: 1px;
}
.video-info {
	position: absolute;
	z-index: 9;
	bottom: 40px;
	left: 0;
	right: 0;
	padding: 0 10px;
	color: #fff;
	padding-bottom: 10px;
	margin-right: 50px;
	font-size: 14px;
}
.video-info a:hover {
	color: #fff;
}
.video-author {
	display: flex;
	align-items: center;
	font-size: 16px;
}
.video-description {
	padding-top: 10px;
	overflow: hidden;
    text-overflow: ellipsis;
	cursor: pointer;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	padding-right: 10px;
	white-space: pre-line;
}
.video-description h3 {
	font-size: 16px;
	color: #fff;
	margin-bottom: 10px;
}
.video-description.is-full {
	transition-duration: .5s;
	transition-property: max-height;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
	max-height: 13rem;
	overflow: auto;
	overscroll-behavior: none;
	-webkit-line-clamp: unset;
}
.video-img {
	width: 28px;
	height: 28px;
	border: 1px solid #fff;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 10px;
}
.video-img img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.video-tool {
	position: absolute;
    bottom: 20px;
    right: 5px;
    width: 30px;
}
.video-tool svg {
	width: 100%;
	height: 100%;
}
.video-icon {
    color: #fff;
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
    line-height: 1;
	cursor: pointer;
}
.vjs-fullscreen .vjs-control-bar {
	bottom: 10px;
}
.vjs-fullscreen .vjs-fullscreen-control {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 5px;
    border: none;
	background: url("../images/icon-fullscreen.svg") no-repeat left top;
	background-size: 30px;
    bottom: 10px;
}
.video-muted {
	display: none;
}
@media screen and (max-width: 767px){
	.video-content {
		height: calc(100vh - 67px);
	}
}

.video-boxComment {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.5);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
}
.video-boxComment.is-show {
	transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
	opacity: 1;
	visibility: visible;
}
.video-boxComment-wrap {
	background-color: #fff;
	border-radius: 20px 20px 0 0;
	max-width: 480px;
	width: 100%;
	margin: 0 auto;
	transform: translateY(100%);
}
.is-show .video-boxComment-wrap {
	transform: translateY(0);
	transition: transform 0.3s ease-in-out 0s;
}
.video-boxComment-drag {
	position: absolute;
	bottom: 64px;
	left: 0;
	right: 0;
}
.video-boxComment-body .padb {
	display: flex;
	align-items: center;
}

.video-boxComment-header {
	height: 36px;
	cursor: ns-resize;
    padding: 8px;
	position: relative;
}
.video-boxComment-header:before {
	position: absolute;
	content: "";
	display: block;
	height: 4px;
	top: 16px;
	width: 28px;
	background: hsla(0,0%,40%,.2);
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}
.video-boxComment-body {
	color: #FB5C67;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: bold;
	border-bottom: 1px solid rgba(0,0,0,.2);
}
.video-boxComment-body.padb {
	padding-bottom: 2rem;
}
.video-boxComment-input {
	padding: 0.75rem;
	display: flex;
	align-items: center;
	position: relative;
}
.video-boxComment-input.is-loading {
	pointer-events: none;
	opacity: 0.7;
	background-color: rgba(0,0,0,0.1);
}
.video-boxComment-a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 10px;
	flex: 0 0 40px;
}
.video-boxComment-input input[type="text"] {
	padding: 5px 50px 5px 20px;
    min-height: 36px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.87);
    box-sizing: border-box;
    cursor: text;
    width: 100%;
    position: relative;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 20px;
	border: none;
}
.video-boxComment-input button {
	border: none;
	background-color: transparent;
	position: absolute;
	right: 20px;
	top: 17px;
	width: 30px;
	height: 30px;
}
.video-boxComment-login {
	text-align: center;
	color: #FB5C67;
	flex: 1;
	padding: 0.5rem;
	font-size: 12px;
}
.video-boxComment-body ul {
	margin: 0;
	padding: 0 1rem;
	list-style: none;
	width: 100%;
	max-height: 70vh;
	overflow: auto;
}
.video-boxComment-body .list-comment {
	display: flex;
	color: #333;
	font-weight: normal;
	margin-bottom: 1rem;
}
.video-boxComment-body .list-comment .list-comment-avatar {
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 10px;
}
.video-boxComment-body .list-comment .list-comment-meta {
	display: flex;
	align-items: center;
}
.video-boxComment-body .list-comment .list-comment-name {
	font-weight: bold;
	margin-right: 5px;
}
.video-boxComment-body .list-comment .list-comment-name a:hover {
	color: var(--primaryColor);
}
.video-boxComment-body .list-comment .list-comment-date {
	font-size: 11px;
	color: rgba(0,0,0,0.48);
}
.video-boxComment-body .list-comment .list-comment-text {
	font-size: 11px;
}
#errorEmpty {
	display: none;
	padding-bottom: 0.75rem;
	padding-left: 4rem;
	margin-top: -0.5rem;
	font-size: 12px;
	color: #FB5C67;
}
.video-boxComment-body .list-comment-like {
	display: flex;
	align-items: center;
	font-size: 12px;
	cursor: pointer;
}
.video-boxComment-body .list-comment-like svg {
	margin-right: 5px;
}
.video-boxComment-body .list-comment-like.is-liked svg {
	fill: var(--primaryColor);
}
.video-boxComment-body .list-comment-like.is-liked svg path {
	stroke: var(--primaryColor);
}
.video-boxComment-body .list-comment-like.is-loading {
	pointer-events: none;
	opacity: 0.7;
}
.video-heart {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.video-heart i {
	font-size: 26px;
}
[data-state=active] i {
	color: var(--primaryColor);
}

.hp-template--vendor-view-page .c-footer {
	display: none;
}
.hp-template--vendor-view-page.hp-template--follower .c-footer {
	display: block;
}
.hp-template--vendor-view-page .hp-widget {
	padding: 10px;
	position: fixed;
    left: 50%;
    bottom: 0;
    display: flex;
    max-width: 480px;
    width: 100%;
    transform: translateX(-50%);
    flex-direction: row;
    margin-bottom: 0 !important;
	justify-content: space-between;
	background-color: var(--white);
	z-index: 99;
}
.hp-template--vendor-view-page .hp-vendor__actions--primary button.hp-vendor__action {
	margin-bottom: 0 !important;
	width: 49%;
	font-size: 14px;
	padding: 7px;
}
.hp-template--vendor-view-page .hp-widget .hp-vendor__action--follow {
	border: 1px solid var(--primaryColor);
	color: var(--primaryColor);
	width: 49%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 7px;
	border-radius: 3px;
}
.hp-template--vendor-view-page .hp-widget .hp-vendor__action--follow i {
	color: var(--primaryColor);
}
.hp-template--vendor-view-page .hp-widget [data-state=active] {
	background-color: var(--primaryColor);
	color: var(--white);
}
.hp-template--vendor-view-page .hp-widget [data-state=active] i {
	color: var(--white);
}
.hp-template--vendor-view-page .site-container {
	min-height: calc(100vh - 59px);
}
.hp-listing__image img {
	object-fit: cover;
	aspect-ratio: 1;
}
.hp-template--vendor-view-page .c-title {
	display: none;
}
.hp-template--vendor-view-page .hp-vendor--view-follower .c-title {
	display: block;
}
.user-cover {
	margin: 0 -20px;
}
.user-cover img{
	display: block;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}
.user-more {
	position: absolute;
	z-index: 9;
	color: #fff;
	font-size: 18px;
	right: 0;
	cursor: pointer;
	top: 15px;
}
.user-back {
	position: absolute;
	z-index: 9;
	color: #fff;
	font-size: 18px;
	left: 0;
	cursor: pointer;
	top: 15px;
}
.video-lock {
	position: absolute;
	top: 7px;
	left: 7px;
	color: #fff;
	z-index: 9;
}
.video-lock i {
	font-size: 10px;
}
.video-lock .free {
	background-color: var(--primaryColor);
	font-size: 10px;
	padding: 0 5px;
	border-radius: 3px;
	padding-bottom: 2px;
	text-transform: uppercase;
	font-weight: bold;
}
.page-id-66 .c-card {
    gap: 14px;
    padding: 0 14px;
}
.c-edit-link {
	border: 1px solid var(--primaryColor);
    color: var(--primaryColor);
    border-radius: 30px;
    margin: 0 auto;
    display: block;
    width: 170px;
    padding: 7px 15px;
    text-align: center;
}
.c-edit-link:hover {
	background-color: var(--primaryColor);
	color: #fff;
}
.user-edit + .hp-vendor__actions {
	display: none;	
}
.follower-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.follower-list dt a:hover {
	color: var(--primaryColor);
}
.follower-list a {
	margin-top: 0;
	display: flex;
	align-items: center;
}
.follower-list a img {
	margin-right: 10px;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	object-fit: cover;
}
.follower-list a.hp-vendor__action--follow {
	width: 150px;
    justify-content: center;
}
.page-id-566 .c-search {
	display: block;
}

.c-card-box {
	overflow: hidden;
	border-radius: 10px;
	border: 1px solid #d4d4d4;
}
.c-card-cover img {
	aspect-ratio: 16/9;
	object-fit: cover;
	display: block;
}
.c-card-box.swiper-slide .c-card-img {
	
	width: 52px;
	height: 52px;
	padding-bottom: 0;
	margin: auto;
	margin-top: -26px;
}
.c-card-box.swiper-slide .c-card-img img {
	border-radius: 50%;
}

/* 2024-05-10 - phu added */
.hp-template--vendor-view-page .c-card {
  width: calc(100% + 40px);
  margin-left: -20px;
}

/* body.home.blog .site-container,
body.page-favorite .site-container
{
  padding: 0 10px;
} */

body.home.blog .c-card-item.swiper-slide,
body.page-favorite .c-card-item.swiper-slide
{
  margin-right: 5px;
}

body.home.blog .c-box__content.c-box__content-smPadding,
body.page-favorite .c-box__content.c-box__content-smPadding
{
  padding: 10px 10px 20px;
}

body.home.blog .c-box__content.c-box__content-smPadding .c-card:not(:last-child),
body.page-favorite .c-box__content.c-box__content-smPadding .c-card:not(:last-child)
{
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .c-search-form input[type="text"] {
    width: 100%;
  }
}

/* 2024-05-30 */
.video-content .video-back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-content .video-back svg {
  width: 30px;
  height: 30px
}

.video-content .video-back path {
  fill: white;
}

/* 2024-06-28 */
.video-controls {
  position: absolute;
  right: 0;
  z-index: 1;
  top: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-controls .video-controls__list {
  position: absolute;
  top: 13px;
  right: 10px;
  min-width: 146px;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .16);
  opacity: 0;
  transition: opacity 232ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 155ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  transform:scale(.7);
  transform-origin: right top;
  pointer-events: none;
}

.video-controls__list.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.video-controls__item:not(:last-child) {
  margin-bottom: 5px;
}

.video-controls__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 13px;
}

a.video-controls__item:hover {
  color: inherit;
  background: rgba(0, 0, 0, 0.04);
}

.video-controls__item ._text {
  font-size: 14px;
  letter-spacing: .05em;
}

.video-controls__item ._icon {
  display: flex;
  flex-shrink: 0;
}

.video-controls__trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.c-card-item.swiper-slide {
  height: auto;
}

.c-card.swiper-wrapper {
  height: auto;
}

.f-menu .is-active path {
	stroke: var(--primaryColor);
}
.f-menu .is-active-login path {
	fill: var(--primaryColor);
}
.f-menu .is-active .icon--star path,
.f-menu .is-active .icon--mail path {
	stroke: none;
	fill: var(--primaryColor);
}
.f-menu .is-active a .txt, .f-menu .is-active-login a .txt {
	color: var(--primaryColor);
}
.hp-form--listing-submit .hp-form__footer {
	display: block;
}
.is-hidden {
	display: none;
}

.hp-template--messages-thread-page .hp-page__content,
.hp-template--messages-view-page .hp-messages,
.c-search,
.hp-template--follower .content-area,
.hp-template--listings-vendor-page .content-area,
table.hp-blogs,
.hp-template--listing-submit-details-page .hp-form__fields {
	padding-top: 46px;
}
table.hp-blogs {
	display: block;
}
.hp-template--messages-view-page .c-search-form {
	display: none;
}
.modal-fixed {
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
	display: none;
}
.modal-content {
	max-width: 480px;
	margin: 0 auto;
	height: 100%;
}
.modal-content form {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 300px;
}
.modal-content .close {
	width: 20px;
	height: 20px;
	position: absolute;
	right: 0;
	top: -25px;
	cursor: pointer;
}
.modal-content .close svg {
	fill: #fff;
}