.category-item, .home-populars-item, .creator-card-thumb, .work-item-thumb, .image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.category-item:before, .home-populars-item:before, .creator-card-thumb:before, .work-item-thumb:before, .image:before {
  content: "";
  display: block;
  width: 100%;
}

.ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
 * Basic styles for links
 */
a {
  color: #101010;
  display: inline-block;
  text-decoration: none;
  transition: 250ms linear all;
}
a:hover, a:active, a:focus {
  color: #C91F1D;
  outline: none;
}

body {
  margin: 0;
  background-color: #F6F6F6;
}

main {
  overflow: hidden;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

img, iframe {
  max-width: 100%;
}

button {
  cursor: pointer;
}

hr {
  border-color: #DEDADA;
  border-top: 0;
  margin: 0;
}

/**
 * Basic typography style for copy text
 */
body, input, button, select, textarea {
  color: #101010;
  font: normal 16px/1.4 "Noto Sans", "Noto Sans TC", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin: 0;
}

.h-section {
  font-size: 30px;
}
@media all and (min-width: 1200px) {
  .h-section {
    font-size: 40px;
  }
}

.h-section-sub {
  font-size: 28px;
}
@media all and (min-width: 1200px) {
  .h-section-sub {
    font-size: 36px;
  }
}

.h-section-sm {
  font-weight: 500;
  font-size: 20px;
}
@media all and (min-width: 1200px) {
  .h-section-sm {
    font-size: 24px;
  }
}

.h-item {
  font-weight: 400;
  font-size: 16px;
}
@media all and (min-width: 1200px) {
  .h-item {
    font-size: 18px;
  }
}

.second-text {
  font-size: 14px;
  color: #9F9F9F;
}

.bg-outline-brand {
  background-image: url(../img/page/brand-outline-bg.svg);
  background-position: center bottom 5px;
  background-size: 90%;
  background-repeat: no-repeat;
}
@media all and (min-width: 768px) {
  .bg-outline-brand {
    background-position: right 36px bottom 16px;
    background-size: 40%;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
@media all and (min-width: 768px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media all and (min-width: 1200px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 1140px;
  }
}
@media all and (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }
}
@media all and (min-width: 1024px) {
  .container.small {
    max-width: 900px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
}
@media all and (min-width: 768px) {
  .row {
    margin-left: -7px;
    margin-right: -7px;
  }
}
@media all and (min-width: 1200px) {
  .row {
    margin-left: -8px;
    margin-right: -8px;
  }
}
.row > [class^=cpr-] {
  padding-bottom: 12px;
  padding-left: 6px;
  padding-right: 6px;
}
@media all and (min-width: 768px) {
  .row > [class^=cpr-] {
    padding-bottom: 14px;
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media all and (min-width: 1200px) {
  .row > [class^=cpr-] {
    padding-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

.cpr-1 {
  max-width: 100%;
  flex: 0 0 100%;
}

.cpr-2 {
  max-width: 50%;
  flex: 0 0 50%;
}
@media all and (min-width: 768px) {
  .cpr-2-sm {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
@media all and (min-width: 1024px) {
  .cpr-2-md {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
@media all and (min-width: 1200px) {
  .cpr-2-lg {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
@media all and (min-width: 1440px) {
  .cpr-2-xl {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

.cpr-3 {
  max-width: 33.3333333333%;
  flex: 0 0 33.3333333333%;
}
@media all and (min-width: 768px) {
  .cpr-3-sm {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
}
@media all and (min-width: 1024px) {
  .cpr-3-md {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
}
@media all and (min-width: 1200px) {
  .cpr-3-lg {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
}
@media all and (min-width: 1440px) {
  .cpr-3-xl {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
}

.cpr-4 {
  max-width: 25%;
  flex: 0 0 25%;
}
@media all and (min-width: 768px) {
  .cpr-4-sm {
    max-width: 25%;
    flex: 0 0 25%;
  }
}
@media all and (min-width: 1024px) {
  .cpr-4-md {
    max-width: 25%;
    flex: 0 0 25%;
  }
}
@media all and (min-width: 1200px) {
  .cpr-4-lg {
    max-width: 25%;
    flex: 0 0 25%;
  }
}
@media all and (min-width: 1440px) {
  .cpr-4-xl {
    max-width: 25%;
    flex: 0 0 25%;
  }
}

.cpr-5 {
  max-width: 20%;
  flex: 0 0 20%;
}
@media all and (min-width: 768px) {
  .cpr-5-sm {
    max-width: 20%;
    flex: 0 0 20%;
  }
}
@media all and (min-width: 1024px) {
  .cpr-5-md {
    max-width: 20%;
    flex: 0 0 20%;
  }
}
@media all and (min-width: 1200px) {
  .cpr-5-lg {
    max-width: 20%;
    flex: 0 0 20%;
  }
}
@media all and (min-width: 1440px) {
  .cpr-5-xl {
    max-width: 20%;
    flex: 0 0 20%;
  }
}

.cpr-6 {
  max-width: 16.6666666667%;
  flex: 0 0 16.6666666667%;
}
@media all and (min-width: 768px) {
  .cpr-6-sm {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
}
@media all and (min-width: 1024px) {
  .cpr-6-md {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
}
@media all and (min-width: 1200px) {
  .cpr-6-lg {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
}
@media all and (min-width: 1440px) {
  .cpr-6-xl {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
}

.f-center, .category-item-overlay, .upload-form-video, .header-btn-collapse {
  display: flex;
  align-items: center;
  justify-content: center;
}
.f-between, .faq-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.f-x-center {
  display: flex;
  justify-content: center;
}
.f-y-center, .field-inline {
  display: flex;
  align-items: center;
}
.f-baseline {
  display: flex;
  align-items: baseline;
}

.pos-relative {
  position: relative;
}
.pos-sticky {
  position: sticky;
}
.pos-static {
  position: static;
}
.pos-absolute {
  position: absolute;
}

.align-r {
  text-align: right;
}
.align-l {
  text-align: left;
}
.align-c {
  text-align: center;
}

.flip {
  transform: rotate(180deg);
}

.section {
  padding: 40px 0;
}
@media all and (min-width: 1200px) {
  .section {
    padding: 60px 0;
  }
}

.m-0 {
  margin: 0em;
}
.m-1 {
  margin: 0.5em;
}
.m-2 {
  margin: 1em;
}
.m-3 {
  margin: 1.5em;
}
.m-4 {
  margin: 2em;
}
.m-5 {
  margin: 2.5em;
}
.m-top-0 {
  margin-top: 0em;
}
.m-top-1 {
  margin-top: 0.5em;
}
.m-top-2 {
  margin-top: 1em;
}
.m-top-3 {
  margin-top: 1.5em;
}
.m-top-4 {
  margin-top: 2em;
}
.m-top-5 {
  margin-top: 2.5em;
}
.m-bottom-0 {
  margin-bottom: 0em;
}
.m-bottom-1 {
  margin-bottom: 0.5em;
}
.m-bottom-2 {
  margin-bottom: 1em;
}
.m-bottom-3 {
  margin-bottom: 1.5em;
}
.m-bottom-4 {
  margin-bottom: 2em;
}
.m-bottom-5 {
  margin-bottom: 2.5em;
}
.m-left-0 {
  margin-left: 0em;
}
.m-left-1 {
  margin-left: 0.5em;
}
.m-left-2 {
  margin-left: 1em;
}
.m-left-3 {
  margin-left: 1.5em;
}
.m-left-4 {
  margin-left: 2em;
}
.m-left-5 {
  margin-left: 2.5em;
}
.m-right-0 {
  margin-right: 0em;
}
.m-right-1 {
  margin-right: 0.5em;
}
.m-right-2 {
  margin-right: 1em;
}
.m-right-3 {
  margin-right: 1.5em;
}
.m-right-4 {
  margin-right: 2em;
}
.m-right-5 {
  margin-right: 2.5em;
}

.p-0 {
  padding: 0em;
}
.p-1 {
  padding: 0.5em;
}
.p-2 {
  padding: 1em;
}
.p-3 {
  padding: 1.5em;
}
.p-4 {
  padding: 2em;
}
.p-5 {
  padding: 2.5em;
}
.p-top-0 {
  padding-top: 0em;
}
.p-top-1 {
  padding-top: 0.5em;
}
.p-top-2 {
  padding-top: 1em;
}
.p-top-3 {
  padding-top: 1.5em;
}
.p-top-4 {
  padding-top: 2em;
}
.p-top-5 {
  padding-top: 2.5em;
}
.p-bottom-0 {
  padding-bottom: 0em;
}
.p-bottom-1 {
  padding-bottom: 0.5em;
}
.p-bottom-2 {
  padding-bottom: 1em;
}
.p-bottom-3 {
  padding-bottom: 1.5em;
}
.p-bottom-4 {
  padding-bottom: 2em;
}
.p-bottom-5 {
  padding-bottom: 2.5em;
}
.p-left-0 {
  padding-left: 0em;
}
.p-left-1 {
  padding-left: 0.5em;
}
.p-left-2 {
  padding-left: 1em;
}
.p-left-3 {
  padding-left: 1.5em;
}
.p-left-4 {
  padding-left: 2em;
}
.p-left-5 {
  padding-left: 2.5em;
}
.p-right-0 {
  padding-right: 0em;
}
.p-right-1 {
  padding-right: 0.5em;
}
.p-right-2 {
  padding-right: 1em;
}
.p-right-3 {
  padding-right: 1.5em;
}
.p-right-4 {
  padding-right: 2em;
}
.p-right-5 {
  padding-right: 2.5em;
}

.hide-all {
  display: none;
}
@media all and (min-width: 768px) {
  .hide-sm-up {
    display: none;
  }
}
@media all and (max-width: 767px) {
  .hide-sm-down {
    display: none;
  }
}
@media all and (min-width: 1024px) {
  .hide-md-up {
    display: none;
  }
}
@media all and (max-width: 1023px) {
  .hide-md-down {
    display: none;
  }
}
@media all and (min-width: 1200px) {
  .hide-lg-up {
    display: none;
  }
}
@media all and (max-width: 1199px) {
  .hide-lg-down {
    display: none;
  }
}
@media all and (min-width: 1440px) {
  .hide-xl-up {
    display: none;
  }
}
@media all and (max-width: 1439px) {
  .hide-xl-down {
    display: none;
  }
}

.w-100 {
  width: 100%;
}

.frame {
  background-color: #fff;
  border-radius: 8px;
}

.page-top {
  padding-top: 70px;
}
@media all and (min-width: 768px) {
  .page-top {
    padding-top: 77px;
  }
}

.full-bg {
  background: url(../img/page/full-bg.png) center/cover no-repeat;
}
@media all and (min-width: 768px) {
  .full-bg {
    min-height: calc(100vh - 77px);
  }
}

.bg-main {
  background-color: #C91F1D;
}
.bg-secondary {
  background-color: #201E1C;
}
.bg-silver {
  background-color: #F6F6F6;
}
.bg-light {
  background-color: #E5E5E5;
}
.bg-grey {
  background-color: #878787;
}
.bg-dark {
  background-color: #6A6A6A;
}
.bg-white {
  background-color: #ffffff;
}

.t-default {
  color: #101010;
}
.t-main {
  color: #C91F1D;
}
.t-secondary {
  color: #201E1C;
}
.t-light {
  color: #E5E5E5;
}
.t-grey {
  color: #878787;
}
.t-dark {
  color: #6A6A6A;
}
.t-white {
  color: #ffffff;
}
.t-black {
  color: #000;
}

.ic-angle {
  display: inline-block;
}
.ic-angle:before {
  content: "";
  display: block;
  transform: rotate(45deg);
  margin-top: -50%;
  border-bottom: 2px solid #101010;
  border-right: 2px solid #101010;
  width: 9px;
  height: 9px;
}
.ic-angle.right {
  transform: rotate(-90deg);
}
.ic-angle.left {
  transform: rotate(90deg);
}
.ic-angle-main {
  display: inline-block;
}
.ic-angle-main:before {
  content: "";
  display: block;
  transform: rotate(45deg);
  margin-top: -50%;
  border-bottom: 2px solid #C91F1D;
  border-right: 2px solid #C91F1D;
  width: 9px;
  height: 9px;
}
.ic-angle-main.right {
  transform: rotate(-90deg);
}
.ic-angle-main.left {
  transform: rotate(90deg);
}
.ic-angle-sm {
  display: inline-block;
}
.ic-angle-sm:before {
  content: "";
  display: block;
  transform: rotate(45deg);
  margin-top: -50%;
  border-bottom: 1px solid #6A6A6A;
  border-right: 1px solid #6A6A6A;
  width: 6px;
  height: 6px;
}
.ic-angle-sm.right {
  transform: rotate(-90deg);
}
.ic-angle-sm.left {
  transform: rotate(90deg);
}
.ic-bar-menu {
  font-size: 32px;
  width: 32px;
  height: 20px;
  display: block;
  position: relative;
}
.ic-bar-menu:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-top: 2px solid #C91F1D;
  border-bottom: 2px solid #C91F1D;
}
.ic-bar-menu:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 2px;
  background-color: #C91F1D;
  position: absolute;
  top: 50%;
  margin-top: -1px;
}
.ic-svg {
  width: 15px;
  fill: #101010;
  transition: 250ms linear all;
}
.ic-stroke {
  width: 15px;
  fill: none;
  stroke: #101010;
  transition: 250ms linear all;
}

button.btn-active > svg.ic-svg,
a.btn-active > svg.ic-svg,
button:hover > svg.ic-svg,
a:hover > svg.ic-svg {
  fill: #C91F1D;
}

button.btn-active > svg.ic-stroke,
a.btn-active > svg.ic-stroke,
button:hover > svg.ic-stroke,
a:hover > svg.ic-stroke {
  stroke: #C91F1D;
}

.btn-basic {
  padding: 0.5em 1.5em;
  font-size: 14px;
  text-align: center;
  min-width: 90px;
  border-radius: 4px;
}
@media all and (min-width: 768px) {
  .btn-basic {
    min-width: 130px;
    font-size: 16px;
  }
}
.btn-basic.btn-sm {
  padding: 0.3em 0.8em;
  font-size: 13px;
}
@media all and (min-width: 768px) {
  .btn-basic.btn-sm {
    min-width: auto;
    font-size: 15px;
  }
}
.btn-block {
  display: block;
}
.btn-active {
  color: #C91F1D;
}
.btn-reset, .btn-like {
  background-color: transparent;
  border: 0;
  padding: 0;
}
.btn-fill {
  border: 1px solid #C91F1D;
  background-color: #C91F1D;
  color: #fff;
}
.btn-fill:hover, .btn-fill:active, .btn-fill:focus {
  background-color: #fff;
  border-color: #C91F1D;
  color: #C91F1D;
}
.btn-fill-grey {
  border: 1px solid #CCCCCC;
  background-color: #CCCCCC;
  color: #fff;
}
.btn-fill-grey:hover, .btn-fill-grey:active, .btn-fill-grey:focus {
  background-color: #878787;
  border-color: #878787;
}
.btn-outline {
  border: 1px solid #C91F1D;
  background-color: #fff;
  color: #C91F1D;
}
.btn-outline:hover, .btn-outline:active, .btn-outline:focus {
  background-color: #C91F1D;
  color: #fff;
}
.btn-outline-grey {
  border: 1px solid #DEDADA;
  background-color: #fff;
  color: #101010;
}
.btn-outline-grey:hover, .btn-outline-grey:active, .btn-outline-grey:focus {
  background-color: #C91F1D;
  border-color: #C91F1D;
  color: #fff;
}
.btn-tag {
  border: 1px solid #DEDADA;
  background-color: #fff;
  color: #101010;
  border-radius: 20px;
  font-size: 13px;
  padding: 0.25em 0.75em;
}
.btn-tag:hover, .btn-tag:active, .btn-tag:focus {
  border-color: #C91F1D;
  color: #C91F1D;
}
.btn-rounded {
  border-radius: 50px;
}
.btn-more {
  padding-right: 24px;
  background: url(../img/icon/ic-arrow-dark.png) right center/18px no-repeat;
}
.btn-more:hover, .btn-more:active, .btn-more:focus {
  background-image: url(../img/icon/ic-arrow-main.png);
}
.btn-like {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: url(../img/icon/ic-heart-outline.png) center/24px no-repeat, rgba(0, 0, 0, 0.6);
}
@media all and (min-width: 768px) {
  .btn-like {
    width: 28px;
    height: 28px;
    background-size: 18px;
  }
}
.btn-like:hover {
  background-image: url(../img/icon/ic-heart-outline-main.svg);
  background-color: rgba(255, 255, 255, 0.6);
}
.btn-like.active {
  background-image: url(../img/icon/ic-heart-fill.png);
}
.btn-follow {
  border-radius: 2em;
  padding: 0.16em 1.6em 0.16em 0.64em;
  position: relative;
}
.btn-follow:hover:before, .btn-follow:hover:after, .btn-follow:active:before, .btn-follow:active:after, .btn-follow:focus:before, .btn-follow:focus:after {
  background-color: #C91F1D;
}
.btn-follow:before {
  content: "";
  width: 0.75em;
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: 0.5em;
  top: calc(50% - 1px);
}
.btn-follow:after {
  content: "";
  height: 0.75em;
  width: 1px;
  background-color: #fff;
  position: absolute;
  right: 0.83em;
  top: calc(50% - 0.375em);
}
.btn-arrow-next, .btn-arrow-prev {
  width: 40px;
  height: 40px;
  background: url(../img/icon/btn-slide.png) center/100% no-repeat;
  right: 0;
  left: auto;
  border-radius: 50%;
}
.btn-arrow-next:after, .btn-arrow-prev:after {
  display: none;
}
.btn-arrow-next:hover, .btn-arrow-prev:hover {
  background-image: url(../img/icon/btn-slide-hover.png);
  box-shadow: 0px 4px 6px rgba(170, 8, 6, 0.2);
}
.btn-arrow-prev {
  transform: scaleX(-1);
  left: 0px;
}
.btn-login {
  border: 1px solid #E4E4E4;
  background-color: #F6F6F6;
  width: 100%;
  padding: 0.5em 1em;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-login:hover, .btn-login:active, .btn-login:focus {
  border-color: #C91F1D;
}
.btn-login > span {
  text-align: left;
  width: 150px;
  margin-left: 0.75em;
}

.list-bordered-item:not(:last-child) {
  border-bottom: 1px solid #E5E5E5;
}
.list-pagination {
  display: inline-flex;
  align-items: center;
}
@media all and (min-width: 768px) {
  .list-pagination > li:not(:last-child) {
    margin-right: 0.5em;
  }
}
.list-pagination > li.active > a {
  background-color: #C91F1D;
  color: #fff;
  font-weight: 500;
}
.list-pagination > li > a {
  font-size: 17px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-pagination > li > a:hover, .list-pagination > li > a:active, .list-pagination > li > a:focus {
  background-color: #C91F1D;
  color: #fff;
}
.list-pagination > li > a:hover .ic-stroke, .list-pagination > li > a:active .ic-stroke, .list-pagination > li > a:focus .ic-stroke {
  stroke: #fff;
}
@media all and (max-width: 767px) {
  .list-pagination > li > a {
    font-size: 14px;
    width: 32px;
    height: 32px;
  }
}
.list-tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list-tag > li {
  margin-right: 8px;
  margin-bottom: 6px;
}
.list-sidebar {
  border-radius: 8px;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  .list-sidebar {
    display: flex;
    justify-content: space-around;
  }
}
.list-sidebar-item {
  font-weight: 500;
  font-size: 14px;
}
@media all and (min-width: 768px) {
  .list-sidebar-item {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) {
  .list-sidebar-item:not(:last-child) {
    border-bottom: 1px solid #e9e9e9;
  }
}
.list-sidebar-item > a {
  padding: 1em 0.75em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 5px solid transparent;
}
@media all and (min-width: 768px) {
  .list-sidebar-item > a {
    padding: 1em;
    border-left: 5px solid transparent;
    border-bottom: 0;
  }
}
.list-sidebar-item > a .ic-angle-main {
  opacity: 0;
}
.list-sidebar-item.active > a {
  color: #C91F1D;
  font-weight: bold;
  border-color: #C91F1D;
}
@media all and (min-width: 768px) {
  .list-sidebar-item.active > a .ic-angle-main {
    opacity: 1;
  }
}

.field-reset {
  border: 0;
  outline: 0;
  background-color: transparent;
}
.field-inline-field {
  flex: 1 0 auto;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.field-inline-btn {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.field-common {
  border: 1px solid #DEDADA;
  background-color: #fff;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 15px;
}
.field-common:focus {
  border-color: #C91F1D;
  outline: none;
}

.filters-dropdown {
  border: 1px solid #DEDADA;
  border-radius: 15px;
  background-color: #fff;
  padding: 3px 10px;
  display: flex;
  position: relative;
}
.filters-dropdown:hover {
  border-color: #C91F1D;
}
.filters-dropdown:hover .filters-dropdown-wrap {
  transform: scaleY(1);
}
.filters-dropdown > a {
  font-size: 13px;
}
.filters-dropdown > a .ic-angle {
  opacity: 0.6;
  transform: scale(0.8);
  margin-bottom: 3px;
  margin-left: 4px;
}
.filters-dropdown-wrap {
  position: absolute;
  top: 100%;
  transition: 0.25s ease all;
  transform-origin: top;
  transform: scaleY(0);
  left: auto;
  right: 0;
  background-color: transparent;
  padding-top: 1px;
  width: 160px;
  z-index: 3;
}
.filters-dropdown-wrap.two-cols {
  width: 250px;
}
.filters-dropdown-wrap.two-cols .filters-dropdown-list {
  display: flex;
  flex-wrap: wrap;
}
.filters-dropdown-wrap.two-cols .filters-dropdown-list > li {
  flex-basis: 50%;
  max-width: 50%;
}
.filters-dropdown-list {
  padding: 12px;
  border: 1px solid #C8C8C8;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 4px 6px rgba(91, 39, 39, 0.1);
}
.filters-dropdown-list > li > a {
  font-size: 14px;
  line-height: 18px;
  padding: 4px 10px;
  border-radius: 5px;
  color: #6A6A6A;
  letter-spacing: 1px;
  width: 100%;
}
.filters-dropdown-list > li > a:hover {
  background-color: #C91F1D;
  color: #fff;
}

.payment-item {
  display: block;
  cursor: pointer;
}
@media all and (min-width: 768px) {
  .payment-item {
    margin-right: 6px;
  }
}
.payment-item > input[type=radio] {
  position: absolute;
  visibility: hidden;
  width: 0;
}
.payment-item > input[type=radio]:checked + span:before {
  border: 2px solid #C91F1D;
}
.payment-item > input[type=radio]:checked + span:after {
  content: "";
  background: url(../img/icon/ic-radio-check.svg) center/100% no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: -8px;
  top: -3px;
  z-index: 2;
}
@media all and (min-width: 768px) {
  .payment-item > input[type=radio]:checked + span:after {
    width: 32px;
    height: 32px;
    right: -12px;
    top: -8px;
  }
}
.payment-item > span {
  position: relative;
  display: block;
  font-size: 0;
}
.payment-item > span:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #e4e4e4;
  border-radius: 7px;
}
.payment-item > span > img {
  width: 65px;
}
@media all and (min-width: 768px) {
  .payment-item > span > img {
    width: 120px;
  }
}

.image:before {
  padding-bottom: 100%;
}
.image-4-3:before {
  padding-bottom: 75%;
}
.image-16-9:before {
  padding-bottom: 56.25%;
}

.box-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.work-listitem {
  display: flex;
  align-items: center;
}
.work-listitem:not(:last-child) {
  margin-bottom: 1em;
}
.work-listitem .work-item-thumb {
  flex-basis: 50%;
  max-width: 50%;
}
.work-listitem .work-item-caption {
  padding: 0 10px;
  flex-basis: 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
}
.work-listitem .work-item-caption .work-item-categories {
  padding: 0;
}
.work-listitem .work-item-title {
  font-size: 17px;
  padding: 0 4px;
}
.work-item-thumb {
  border-radius: 8px;
  overflow: hidden;
}
.work-item-thumb:before {
  padding-bottom: 57.32%;
}
.work-item-thumb .btn-like {
  position: absolute;
  right: 12px;
  top: 10px;
  z-index: 1;
}
.work-item-overlay {
  padding: 12px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.work-item-categories {
  display: inline-flex;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.57);
  color: #fff;
  padding: 6px;
  border-radius: 10px;
}
.work-item-categories > li {
  padding: 0 6px;
  line-height: 1;
}
.work-item-categories > li:not(:last-child) {
  border-right: 1px solid #fff;
}
.work-item-caption {
  padding: 14px;
}
@media all and (min-width: 768px) {
  .work-item-caption {
    padding: 10px 6px;
  }
}
.work-item-caption .f-between, .work-item-caption .faq-item-title {
  flex-wrap: wrap;
}
.work-item-caption .work-item-categories {
  color: #6A6A6A;
  background-color: transparent;
  padding: 6px 0;
}
.work-item-caption .work-item-categories > li {
  padding: 0 4px;
}
.work-item-caption .work-item-categories > li:not(:last-child) {
  border-color: #6A6A6A;
}
.work-item-owner {
  font-size: 15px;
  color: #101010;
}
@media all and (min-width: 768px) {
  .work-item-owner {
    font-size: 14px;
  }
}
.work-item-title {
  font-size: 22px;
  margin-top: 6px;
}
.work-item-title > a {
  color: #000;
}
.work-item-views {
  color: #6A6A6A;
  font-size: 14px;
}
@media all and (min-width: 768px) {
  .work-item-views {
    font-size: 13px;
  }
}

.creator-avator {
  background-color: #C91F1D;
  border-radius: 50%;
}
.creator-type {
  color: #878787;
  font-size: 14px;
}
.creator-views {
  color: #9D9A9A;
  font-size: 13px;
}
.creator-item {
  width: 115px;
  text-align: center;
}
@media all and (min-width: 768px) {
  .creator-item {
    width: 147px;
  }
}
.creator-item:hover .creator-item-thumb {
  border-color: #fff;
  box-shadow: 0px 4px 8px rgba(170, 8, 6, 0.13);
}
.creator-item-thumb {
  border: 4px solid transparent;
  border-radius: 50%;
  margin: 0 auto;
  width: 110px;
}
@media all and (min-width: 768px) {
  .creator-item-thumb {
    width: 135px;
  }
}
.creator-item-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media all and (min-width: 768px) {
  .creator-item-title {
    font-size: 21px;
  }
}
.creator-item-title > a {
  color: #101010;
}
.creator-item-stats {
  font-size: 13px;
  color: #878787;
}
@media all and (min-width: 768px) {
  .creator-item-stats {
    font-size: 14px;
  }
}
.creator-item-stats .ic-svg,
.creator-item-stats .ic-stroke {
  vertical-align: -2px;
}
.creator-item-stats .ic-svg {
  fill: #878787;
}
.creator-item-stats .ic-stroke {
  stroke: #878787;
}
.creator-item .btn-follow {
  border: 1px solid #DEDADA;
  color: #6A6A6A;
  background-color: transparent;
  font-size: 13px;
  padding: 0.5em 2.5em 0.5em 1.5em;
}
.creator-item .btn-follow:before, .creator-item .btn-follow:after {
  background-color: #6A6A6A;
}
.creator-item .btn-follow:before {
  right: 1.5em;
}
.creator-item .btn-follow:after {
  right: 1.83em;
}
.creator-item .btn-follow:hover, .creator-item .btn-follow:active, .creator-item .btn-follow:focus {
  background-color: #C91F1D;
  color: #fff;
  box-shadow: 0px 4px 6px rgba(170, 8, 6, 0.2);
}
.creator-item .btn-follow:hover:before, .creator-item .btn-follow:hover:after, .creator-item .btn-follow:active:before, .creator-item .btn-follow:active:after, .creator-item .btn-follow:focus:before, .creator-item .btn-follow:focus:after {
  background-color: #fff;
}
@media all and (min-width: 768px) {
  .creator-item .btn-follow {
    font-size: 16px;
  }
}

.creator-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.creator-card:hover {
  box-shadow: 0px 4px 10px rgba(134, 21, 20, 0.12);
}
.creator-card-thumb:before {
  padding-bottom: 47.6%;
}
.creator-card-avator {
  position: relative;
  z-index: 1;
  width: 145px;
  margin-top: -30%;
  margin-bottom: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px #EDE9E9;
}
.creator-card-info {
  padding: 0.5em;
  text-align: center;
}
.creator-card-info-title {
  font-size: 18px;
  color: #101010;
  font-weight: 500;
}
@media all and (min-width: 768px) {
  .creator-card-info-title {
    font-size: 23px;
  }
}
.creator-card-btns {
  padding: 12px 16px;
  border-top: 1px solid #DEDADA;
}
@media all and (min-width: 768px) {
  .creator-card-btns {
    padding: 16px 20px;
  }
}
.creator-card-btns .btn-follow {
  width: 100%;
  border: 1px solid #C91F1D;
  font-size: 15px;
  color: #C91F1D;
  background-color: #fff;
  padding: 0.5em 1.5em 0.5em 1em;
}
.creator-card-btns .btn-follow:before, .creator-card-btns .btn-follow:after {
  background-color: #C91F1D;
}
.creator-card-btns .btn-follow:before {
  right: 1.2em;
}
.creator-card-btns .btn-follow:after {
  right: 1.53em;
}
.creator-card-btns .btn-follow:hover {
  color: #fff;
  background-color: #C91F1D;
}
.creator-card-btns .btn-follow:hover:before, .creator-card-btns .btn-follow:hover:after {
  background-color: #fff;
}
.creator-card-btns .btn-outline-grey {
  font-size: 15px;
}
.creator-card .cpr-2 {
  padding-bottom: 0;
}

.comment-item {
  padding-left: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 15px;
}
@media all and (min-width: 768px) {
  .comment-item {
    padding-left: 60px;
  }
}
.comment-item:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 10px;
}
@media all and (min-width: 768px) {
  .comment-item:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 18px;
  }
}
.comment-item .field-common {
  border-radius: 8px;
  padding: 12px 16px;
}
.comment-item .creator-avator {
  position: absolute;
  left: 0;
  top: 0;
}
.comment-item-author {
  font-size: 14px;
}
.comment-item-content {
  position: relative;
  padding-top: 4px;
}
@media all and (min-width: 768px) {
  .comment-item-content {
    padding-right: 80px;
  }
}
.comment-item-btns {
  position: absolute;
  top: -18px;
}
@media all and (min-width: 768px) {
  .comment-item-btns {
    bottom: 0;
    top: auto;
    right: 0;
  }
}
.comment-item-btns .btn-reset, .comment-item-btns .btn-like {
  font-size: 14px;
}
.comment-item-btns .btn-reset:not(.btn-active), .comment-item-btns .btn-like:not(.btn-active) {
  color: #878787;
}
.comment-item-btns .btn-reset:not(.btn-active) .ic-svg, .comment-item-btns .btn-like:not(.btn-active) .ic-svg {
  fill: #878787;
}
.comment-item-btns .btn-reset .ic-svg, .comment-item-btns .btn-like .ic-svg {
  width: 14px;
}

.card-case {
  min-width: 300px;
  background: url(../img/page/brand-light-bg.svg) right 10px bottom 10px/40% no-repeat, #fff;
}
.card-case-title {
  font-family: Arial, "Noto Sans TC", sans-serif;
  font-weight: bold;
  font-size: 26px;
  line-height: 1em;
}
.card-case-title small {
  font-size: 19px;
}
.card-case-price {
  font-size: 17px;
  color: #6A6A6A;
  letter-spacing: 0.01em;
}
.card-case-price .t-main {
  font-weight: 500;
}
.card-case-price .t-main > b {
  font-size: 40px;
}

.hover-creator-box {
  width: 270px;
}
.hover-creator-box.multiple-creator {
  width: 230px;
}
.hover-creator-box .btn-follow {
  font-size: 12px;
}

@media all and (max-width: 767px) {
  .header-menu, .header-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  }
}

.header {
  background-color: rgba(255, 255, 255, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 16px 0;
}
@media all and (min-width: 768px) {
  .header {
    padding: 11px 0;
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo-img {
  height: 30px;
  margin-bottom: -6px;
}
@media all and (min-width: 768px) {
  .header-logo-img {
    height: 36px;
    margin-bottom: -9px;
  }
}
@media all and (min-width: 1024px) {
  .header-logo-img {
    height: 45px;
    margin-bottom: -14px;
  }
}
.header-mobile {
  display: flex;
  align-items: center;
}
@media all and (min-width: 768px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile .header-btn-member {
  padding-right: 22px;
  margin-right: 12px;
}
.header-mobile-menu {
  display: none;
}
.header-mobile-menu .list-bordered-item:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 12px;
}
.header-mobile-menu .list-bordered-item > li > a {
  padding: 8px 12px;
}
.header-btn-member {
  color: #101010;
  font-size: 15px;
  border-radius: 20px;
  padding: 8px 30px 8px 42px;
  height: 37px;
  background: url(../img/icon/ic-member.svg) 5px 5px/27px no-repeat, #ffffff;
  position: relative;
}
.header-btn-member .ic-angle {
  position: absolute;
  right: 11px;
  top: 15px;
}
.header-btn-upload {
  font-size: 15px;
  padding: 7px 14px;
  border-radius: 20px;
}
@media all and (min-width: 1024px) {
  .header-btn-upload {
    padding: 7px 34px;
  }
}
.header-btn-search {
  width: 61px;
  height: 36px;
  border-radius: 20px;
  line-height: 0;
  background-color: #fff;
  color: #C91F1D;
  border: 1px solid #C91F1D;
  position: relative;
  font-size: 0;
  line-height: 0;
}
.header-btn-search:hover, .header-btn-search:active, .header-btn-search:focus {
  background-color: #C91F1D;
  color: #fff;
}
.header-btn-search:hover:before, .header-btn-search:active:before, .header-btn-search:focus:before {
  background-image: url(../img/icon/ic-search-white.png);
}
.header-btn-search:hover .ic-angle-main:before, .header-btn-search:active .ic-angle-main:before, .header-btn-search:focus .ic-angle-main:before {
  border-bottom-color: #fff;
  border-right-color: #fff;
}
.header-btn-search:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/icon/ic-search-main.png) center/18px;
  position: absolute;
  left: 10px;
  top: 7px;
}
.header-btn-search .ic-angle-main {
  position: absolute;
  right: 11px;
  top: 14px;
}
.header-btn-collapse {
  width: 32px;
  height: 32px;
}
.header-btn-collapse .ic-bar-menu {
  transition: 0.25s ease all;
}
.header-btn-collapse.opened .ic-bar-menu {
  height: 2px;
  transform: rotate(45deg);
}
.header-btn-collapse.opened .ic-bar-menu:before {
  border-top: 0;
}
.header-btn-collapse.opened .ic-bar-menu:after {
  transform: rotate(90deg);
}

@media all and (min-width: 768px) {
  .nav-list {
    display: flex;
    align-items: center;
  }
}
@media all and (min-width: 768px) {
  .nav-list-item:not(:last-child) {
    margin-right: 6px;
  }
}
@media all and (min-width: 1024px) {
  .nav-list-item:not(:last-child) {
    margin-right: 12px;
  }
}
.nav-list-item > a:not([class^=header-btn]) {
  letter-spacing: 0.01em;
  color: #101010;
  position: relative;
  padding: 16px 10px;
}
@media all and (max-width: 767px) {
  .nav-list-item > a:not([class^=header-btn]) {
    width: 100%;
    border-top: 1px solid #DEDADA;
    border-bottom: 1px solid #DEDADA;
  }
}
.nav-list-item > a:not([class^=header-btn]):after {
  display: block;
  width: 0;
  height: 1px;
  margin: 4px auto -4px;
  background: #C91F1D;
  transition: 0.2s linear width;
}
@media all and (min-width: 768px) {
  .nav-list-item > a:not([class^=header-btn]):after {
    content: "";
  }
}
.nav-list-item > a:not([class^=header-btn]):hover:after, .nav-list-item > a:not([class^=header-btn]):active:after, .nav-list-item > a:not([class^=header-btn]):focus:after {
  width: 28px;
}

@media all and (min-width: 768px) {
  .dropdown-search-wrap, .dropdown-member-wrap, .dropdown-explore-wrap {
    transition: 0.25s ease all;
    transform-origin: top;
    transform: scaleY(0);
    box-shadow: 0px 4px 6px rgba(91, 39, 39, 0.1);
  }
}

.dropdown-explore {
  position: relative;
}
@media all and (min-width: 768px) {
  .dropdown-explore:hover .dropdown-explore-wrap {
    transform: scaleY(1);
  }
}
.dropdown-explore > a {
  width: 100%;
}
.dropdown-explore > a .ic-angle {
  margin-bottom: 4px;
  margin-left: 6px;
}
@media all and (max-width: 767px) {
  .dropdown-explore > a .ic-angle {
    display: none;
  }
}
.dropdown-explore-wrap {
  padding: 16px;
}
@media all and (min-width: 768px) {
  .dropdown-explore-wrap {
    padding: 0;
    background: #fff;
    position: absolute;
    top: 100%;
    left: calc(50% - 123px);
    width: 246px;
    border-radius: 8px;
    z-index: 5;
  }
}
@media all and (min-width: 768px) {
  .dropdown-explore-wrap .list-bordered-item {
    padding: 15px 18px;
  }
}
@media all and (max-width: 767px) {
  .dropdown-explore-wrap .list-bordered-item:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
}
.dropdown-explore-title {
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 6px;
}
@media all and (min-width: 768px) {
  .dropdown-explore-title {
    font-weight: 500;
  }
}
.dropdown-explore-list {
  display: flex;
  flex-wrap: wrap;
}
.dropdown-explore-list > li {
  flex: 1 0 50%;
  max-width: 50%;
  padding-right: 0.5em;
}
.dropdown-explore-list > li > a {
  padding: 8px 12px;
  border-radius: 5px;
  color: #6A6A6A;
  letter-spacing: 1px;
  width: 100%;
}
@media all and (min-width: 768px) {
  .dropdown-explore-list > li > a {
    font-size: 14px;
    line-height: 18px;
    padding: 4px 10px;
  }
}
.dropdown-explore-list > li > a:hover {
  background-color: #C91F1D;
  color: #fff;
}
.dropdown-explore-list > li > a:hover .ic-angle-sm:before {
  border-color: #fff;
}
.dropdown-member {
  position: relative;
  padding: 9px 0;
}
@media all and (min-width: 768px) {
  .dropdown-member:hover .dropdown-member-wrap {
    transform: scaleY(1);
  }
}
@media all and (min-width: 768px) {
  .dropdown-member-wrap {
    padding: 0;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 8px;
  }
}
@media all and (min-width: 768px) {
  .dropdown-member-wrap .list-bordered-item {
    padding: 12px 20px;
  }
}
.dropdown-member-list > li > a {
  width: 100%;
  white-space: nowrap;
  font-size: 14px;
  line-height: 18px;
  padding: 8px 12px;
  border-radius: 5px;
  color: #000;
  padding: 4px 10px;
}
.dropdown-member-list > li > a:hover {
  background-color: #C91F1D;
  color: #fff;
}
.dropdown-search {
  line-height: 0;
}
.dropdown-search.active .ic-angle-main {
  transform: rotate(180deg);
}
@media all and (min-width: 768px) {
  .dropdown-search.active .dropdown-search-wrap {
    transform: scaleY(1);
  }
}
.dropdown-search-wrap {
  background-color: rgba(2, 2, 2, 0.72);
  position: fixed;
  top: 77px;
  left: 0;
  width: 100%;
  z-index: 2;
}
.dropdown-search-form {
  padding: 34px 0;
  width: 100%;
}
.dropdown-search-form-field {
  position: relative;
  border: 1px solid #C91F1D;
  padding: 0 12px 0 48px;
  background-color: #fff;
}
.dropdown-search-form-field:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/icon/ic-search-main.png) center/18px;
  position: absolute;
  left: 20px;
  top: 14px;
}
.dropdown-search-form-field > input {
  font-size: 16px;
  padding: 11px 0;
  width: 100%;
}
.dropdown-search-form-btn {
  font-size: 16px;
  line-height: 22px;
  padding: 12px 34px;
  width: 160px;
  margin-left: -1px;
  text-align: center;
  background-color: #C91F1D;
  color: #fff;
  border: 0;
}

.page-bn {
  height: 182px;
  background-size: cover;
  background-position: center;
  background-image: url("../img/page/banner-m.png");
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 767px) {
  .page-bn {
    margin-top: 70px;
  }
}
@media all and (min-width: 768px) {
  .page-bn {
    padding-top: 60px;
  }
}
@media all and (min-width: 1024px) {
  .page-bn {
    height: 390px;
    background-image: url("../img/page/banner.png");
  }
}
.page-bn .container {
  color: #fff;
}
@media all and (min-width: 1024px) {
  .page-bn .container {
    display: flex;
    flex-direction: column;
  }
}
.page-bn-title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media all and (min-width: 1024px) {
  .page-bn-title {
    font-size: 40px;
  }
}
.page-bn-subtitle {
  font-size: 15px;
  font-weight: 500;
  font-family: "Oswald", serif;
  text-transform: uppercase;
}
@media all and (min-width: 1024px) {
  .page-bn-subtitle {
    font-size: 18px;
  }
}
@media all and (min-width: 768px) {
  .page-withSidebar-main {
    flex-basis: 60%;
    max-width: 60%;
  }
}
@media all and (min-width: 1024px) {
  .page-withSidebar-main {
    flex-basis: 70%;
    max-width: 70%;
  }
}
@media all and (min-width: 768px) {
  .page-withSidebar-sidebar {
    flex-basis: 40%;
    max-width: 40%;
  }
  .page-withSidebar-sidebar.left {
    padding-right: 30px;
  }
}
@media all and (min-width: 1024px) {
  .page-withSidebar-sidebar {
    flex-basis: 30%;
    max-width: 30%;
  }
  .page-withSidebar-sidebar.left {
    padding-right: 36px;
  }
}

.footer {
  padding-top: 46px;
  background-color: #FDFBFB;
}
@media all and (min-width: 1024px) {
  .footer {
    padding-top: 70px;
  }
}
@media all and (min-width: 768px) {
  .footer-wrap {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
@media all and (min-width: 1024px) {
  .footer-wrap {
    justify-content: space-between;
  }
}
.footer-col {
  margin-bottom: 28px;
}
@media all and (min-width: 768px) {
  .footer-col:last-child {
    order: -1;
    width: 40%;
  }
}
@media all and (min-width: 1024px) {
  .footer-col:last-child {
    order: unset;
    width: auto;
  }
}
.footer-col:not(.footer-logo):not(:last-child) {
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 12px;
}
@media all and (min-width: 768px) {
  .footer-col:not(.footer-logo):not(:last-child) {
    border: 0;
  }
}
@media all and (min-width: 768px) {
  .footer-col:not(:last-child) {
    margin-right: 40px;
  }
}
@media all and (min-width: 1024px) {
  .footer-col:not(:last-child) {
    margin-right: 15px;
  }
}
@media all and (min-width: 1440px) {
  .footer-col:not(:last-child) {
    margin-right: 33px;
  }
}
.footer-logo {
  width: 100%;
  padding-right: 40px;
  align-self: center;
}
@media all and (min-width: 768px) {
  .footer-logo {
    width: 300px;
    order: -2;
    padding-right: 30px;
  }
}
.footer-logo img {
  max-width: 300px;
  width: 100%;
}
.footer-title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 1em;
}
@media all and (min-width: 1024px) {
  .footer-title {
    font-size: 16px;
  }
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media all and (min-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer-links > li {
  width: 100px;
  margin-bottom: 10px;
}
.footer-links > li > a {
  font-size: 15px;
  color: #878787;
  position: relative;
}
@media all and (min-width: 1024px) {
  .footer-links > li > a {
    font-size: 14px;
  }
}
.footer-links > li > a:before {
  content: "";
  width: 0;
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  background-color: #C91F1D;
  transition: 0.25s ease width;
}
.footer-links > li > a:hover, .footer-links > li > a:active, .footer-links > li > a:focus {
  color: #C91F1D;
}
.footer-links > li > a:hover:before, .footer-links > li > a:active:before, .footer-links > li > a:focus:before {
  width: 100%;
}
.footer-medias {
  display: flex;
}
.footer-medias > li {
  margin-right: 50px;
  width: 42px;
}
@media all and (min-width: 768px) {
  .footer-medias > li {
    width: 30px;
    margin-right: 26px;
  }
}
.footer-medias > li > a:hover, .footer-medias > li > a:active, .footer-medias > li > a:focus {
  opacity: 0.6;
}
.footer-copyright {
  padding: 8px 16px;
  font-size: 12px;
  color: #a3a3a3;
  text-align: center;
  border-top: 1px solid #E5E5E5;
}

.popover {
  display: inline-block;
  position: relative;
  z-index: 1000;
}
.popover .popover-container {
  display: inline-block;
  position: relative;
  padding: 8px;
}
.popover .popover-container .popover-inner {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 6px 0 rgba(91, 39, 39, 0.1);
  -moz-box-shadow: 0px 4px 6px 0 rgba(91, 39, 39, 0.1);
  box-shadow: 0px 4px 6px 0 rgba(91, 39, 39, 0.1);
}
.popover .popover-container .popover-inner .popover-content {
  padding: 0;
}
.popover .popover-container .popover-arrow {
  display: block;
  position: absolute;
  transform: rotate(45deg);
}
.popover.popover-top .popover-container .popover-arrow {
  top: auto;
  right: auto;
  bottom: 4px;
  left: 50%;
  margin: 0 0 0 -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 4px;
  border-right-color: #fff;
  border-bottom-color: #fff;
  -webkit-box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.07);
}
.popover.popover-topLeft .popover-container .popover-arrow {
  top: auto;
  right: auto;
  bottom: 4px;
  left: 20px;
  margin: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 4px;
  border-right-color: #fff;
  border-bottom-color: #fff;
  -webkit-box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.07);
}
.popover.popover-topRight .popover-container .popover-arrow {
  top: auto;
  right: 24px;
  bottom: 4px;
  left: auto;
  margin: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 4px;
  border-right-color: #fff;
  border-bottom-color: #fff;
  -webkit-box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.07);
}
.popover.popover-rightTop .popover-container .popover-arrow {
  top: 20px;
  right: auto;
  bottom: auto;
  left: 4px;
  margin: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 4px;
  border-left-color: #fff;
  border-bottom-color: #fff;
  -webkit-box-shadow: -3px 3px 7px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: -3px 3px 7px 0 rgba(0, 0, 0, 0.07);
  box-shadow: -3px 3px 7px 0 rgba(0, 0, 0, 0.07);
}
.popover.popover-right .popover-container .popover-arrow {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 4px;
  margin: -4px 0 0 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 4px;
  border-left-color: #fff;
  border-bottom-color: #fff;
  -webkit-box-shadow: -3px 3px 7px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: -3px 3px 7px 0 rgba(0, 0, 0, 0.07);
  box-shadow: -3px 3px 7px 0 rgba(0, 0, 0, 0.07);
}
.popover.popover-rightBottom .popover-container .popover-arrow {
  top: auto;
  right: auto;
  bottom: 20px;
  left: 4px;
  margin: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 4px;
  border-left-color: #fff;
  border-bottom-color: #fff;
  -webkit-box-shadow: -3px 3px 7px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: -3px 3px 7px 0 rgba(0, 0, 0, 0.07);
  box-shadow: -3px 3px 7px 0 rgba(0, 0, 0, 0.07);
}
.popover.popover-bottomLeft .popover-container .popover-arrow {
  top: 4px;
  right: auto;
  bottom: auto;
  left: 24px;
  margin: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 4px;
  border-left-color: #fff;
  border-top-color: #fff;
  -webkit-box-shadow: -3px -3px 7px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: -3px -3px 7px 0 rgba(0, 0, 0, 0.07);
  box-shadow: -3px -3px 7px 0 rgba(0, 0, 0, 0.07);
}
.popover.popover-bottom .popover-container .popover-arrow {
  top: 4px;
  right: auto;
  bottom: auto;
  left: 50%;
  margin: 0 0 0 -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 4px;
  border-left-color: #fff;
  border-top-color: #fff;
  -webkit-box-shadow: -3px -3px 7px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: -3px -3px 7px 0 rgba(0, 0, 0, 0.07);
  box-shadow: -3px -3px 7px 0 rgba(0, 0, 0, 0.07);
}
.popover.popover-bottomRight .popover-container .popover-arrow {
  top: 4px;
  right: 24px;
  bottom: auto;
  left: auto;
  margin: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 4px;
  border-left-color: #fff;
  border-top-color: #fff;
  -webkit-box-shadow: -3px -3px 7px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: -3px -3px 7px 0 rgba(0, 0, 0, 0.07);
  box-shadow: -3px -3px 7px 0 rgba(0, 0, 0, 0.07);
}
.popover.popover-leftTop .popover-container .popover-arrow {
  top: 20px;
  right: 4px;
  bottom: auto;
  left: auto;
  margin: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 4px;
  border-right-color: #fff;
  border-top-color: #fff;
  -webkit-box-shadow: 3px -3px 7px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 3px -3px 7px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 3px -3px 7px 0 rgba(0, 0, 0, 0.07);
}
.popover.popover-left .popover-container .popover-arrow {
  top: 50%;
  right: 4px;
  bottom: auto;
  left: auto;
  margin: -4px 0 0 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 4px;
  border-right-color: #fff;
  border-top-color: #fff;
  -webkit-box-shadow: 3px -3px 7px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 3px -3px 7px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 3px -3px 7px 0 rgba(0, 0, 0, 0.07);
}
.popover.popover-leftBottom .popover-container .popover-arrow {
  top: auto;
  right: 4px;
  bottom: 20px;
  left: auto;
  margin: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 4px;
  border-right-color: #fff;
  border-top-color: #fff;
  -webkit-box-shadow: 3px -3px 7px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 3px -3px 7px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 3px -3px 7px 0 rgba(0, 0, 0, 0.07);
}

@media all and (min-width: 768px) {
  .account-page .page-withSidebar-sidebar {
    flex-basis: 30%;
    max-width: 30%;
  }
}
@media all and (min-width: 1200px) {
  .account-page .page-withSidebar-sidebar {
    flex-basis: 24%;
    max-width: 24%;
  }
}
@media all and (min-width: 1024px) {
  .account-page .page-withSidebar-sidebar.left {
    padding-right: 24px;
  }
}
@media all and (min-width: 768px) {
  .account-page .page-withSidebar-main {
    flex-basis: 70%;
    max-width: 70%;
  }
}
@media all and (min-width: 1200px) {
  .account-page .page-withSidebar-main {
    flex-basis: 76%;
    max-width: 76%;
  }
}
.account-form {
  padding: 1em;
}
@media all and (min-width: 768px) {
  .account-form {
    display: flex;
    padding-left: 0;
    padding-right: 0;
  }
}
.account-form-image {
  border-bottom: 1px solid #e9e9e9;
  padding: 20px;
}
@media all and (min-width: 768px) {
  .account-form-image {
    border-right: 1px solid #e9e9e9;
    border-bottom: 0;
    flex-basis: 240px;
    max-width: 240px;
    padding: 30px;
  }
}
.account-form-image input[type=file] {
  visibility: hidden;
  position: absolute;
  width: 1px;
}
.account-form-image-label {
  cursor: pointer;
}
.account-form-fields {
  flex: 1;
  padding-top: 15px;
}
@media all and (min-width: 768px) {
  .account-form-fields {
    padding: 20px 30px;
  }
}
@media all and (min-width: 1200px) {
  .account-form-fields {
    padding: 20px 45px;
  }
}
.account-form-fields .field-common {
  width: 100%;
}
.account-form-fields .field-common:not(:last-child) {
  margin-bottom: 1em;
}

.order-table {
  padding: 18px 24px;
}
@media all and (min-width: 768px) {
  .order-table {
    padding: 36px 48px;
  }
}
.order-table table {
  table-layout: auto;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-bottom: 1px solid #e9e9e9;
}
.order-table table th, .order-table table td {
  padding: 0.75em 1em;
}
@media all and (max-width: 767px) {
  .order-table table th.td-desktop, .order-table table td.td-desktop {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .order-table table th.td-mobile, .order-table table td.td-mobile {
    display: none;
  }
}
.order-table table th {
  font-weight: 400;
  background: #F6F6F6;
  font-size: 15px;
}
.order-table table th:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.order-table table th:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.order-table table tbody > tr:not(:last-child) > td {
  border-bottom: 1px solid #e9e9e9;
}
.home-bn {
  height: 360px;
  background-size: cover;
  background-position: center;
  background-image: url("../img/home/banner-m.png");
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 767px) {
  .home-bn {
    margin-top: 70px;
  }
}
@media all and (min-width: 768px) {
  .home-bn {
    padding-top: 60px;
  }
}
@media all and (min-width: 1024px) {
  .home-bn {
    height: 520px;
    background-image: url("../img/home/banner.png");
  }
}
.home-bn-caption {
  padding: 0 14px;
  width: 100%;
}
@media all and (min-width: 1024px) {
  .home-bn-caption {
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.56) 42.18%, rgba(255, 255, 255, 0) 100%);
    width: 650px;
    height: 325px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.home-bn-caption-main {
  color: #000;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media all and (min-width: 1024px) {
  .home-bn-caption-main {
    font-size: 42px;
  }
}
.home-bn-caption-sub {
  color: #C91F1D;
  font-size: 18px;
  font-weight: 500;
  font-family: "Oswald", serif;
  text-transform: uppercase;
}
@media all and (min-width: 1024px) {
  .home-bn-caption-sub {
    font-size: 20px;
  }
}
.home-populars {
  position: relative;
}
.home-populars:before, .home-populars:after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  top: 0;
  height: 100%;
  z-index: 2;
}
@media all and (min-width: 1024px) {
  .home-populars:before, .home-populars:after {
    width: 14px;
  }
}
@media all and (min-width: 1200px) {
  .home-populars:before, .home-populars:after {
    width: calc(50vw - (1108px/2));
  }
}
@media all and (min-width: 1440px) {
  .home-populars:before, .home-populars:after {
    width: calc(50vw - (1248px/2));
  }
}
.home-populars:before {
  right: 100%;
  background-color: #fff;
}
.home-populars:after {
  left: 100%;
}
@media all and (min-width: 1200px) {
  .home-populars:after {
    background: linear-gradient(to right, transparent, #ffffff);
  }
}
.home-populars-item {
  width: 150px;
  border-radius: 12px;
  overflow: hidden;
}
.home-populars-item:before {
  padding-bottom: 75%;
}
@media all and (min-width: 768px) {
  .home-populars-item {
    width: 240px;
  }
  .home-populars-item:before {
    padding-bottom: 50%;
  }
}
@media all and (min-width: 1200px) {
  .home-populars-item {
    width: 370px;
  }
}
.home-populars-item-overlay {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  justify-content: center;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media all and (min-width: 768px) {
  .home-populars-item-overlay {
    padding: 24px;
    justify-content: space-between;
  }
}
.home-populars-item-overlay:hover {
  color: #fff;
}
.home-populars-item-overlay:hover:before {
  right: 0;
}
.home-populars-item-overlay:hover .home-populars-item-btn {
  background: #C91F1D;
  color: #fff;
}
.home-populars-item-overlay:before {
  content: "";
  z-index: -1;
  position: absolute;
  transition: 0.25s ease all;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
  right: 33%;
}
.home-populars-item-title {
  font-size: 26px;
}
@media all and (min-width: 768px) {
  .home-populars-item-title {
    font-size: 30px;
  }
}
.home-populars-item-title > span {
  font-size: 13px;
  color: #E5E5E5;
  font-weight: 300;
  display: block;
}
@media all and (min-width: 768px) {
  .home-populars-item-title > span {
    font-size: 14px;
  }
}
.home-populars-item-btn {
  display: none;
  padding: 7px 21px;
  border-radius: 6px;
  color: #6A6A6A;
  font-size: 13px;
  background-color: #ffffff;
}
@media all and (min-width: 1200px) {
  .home-populars-item-btn {
    display: block;
  }
}
.home-populars-arrows {
  min-width: 112px;
}
.home-populars-arrows .btn-arrow-prev, .home-populars-arrows .btn-arrow-next {
  width: 46px;
  height: 46px;
  margin: 0;
  position: static;
}
@media all and (min-width: 1200px) {
  .home-grids, .home-creators {
    margin-left: -60px;
    margin-right: -60px;
    padding: 0 60px;
  }
}
.home-grids:before, .home-grids:after, .home-creators:before, .home-creators:after {
  position: absolute;
  display: block;
  width: 60px;
  top: 0;
  height: 100%;
  z-index: 2;
  left: 0;
  background-color: #F6F6F6;
}
@media all and (min-width: 1200px) {
  .home-grids:before, .home-grids:after, .home-creators:before, .home-creators:after {
    content: "";
  }
}
.home-grids:after, .home-creators:after {
  right: 0;
  left: auto;
}
@media all and (max-width: 1199px) {
  .home-grids .btn-arrow-next, .home-grids .btn-arrow-prev, .home-creators .btn-arrow-next, .home-creators .btn-arrow-prev {
    display: none;
  }
}

.bg-white .home-grids:before, .bg-white .home-grids:after, .bg-white .home-creators:before, .bg-white .home-creators:after {
  background-color: #fff;
}

.page-top .home-populars:before {
  right: 100%;
  background-color: #F6F6F6;
}
.page-top .home-populars:after {
  left: 100%;
}
@media all and (min-width: 1200px) {
  .page-top .home-populars:after {
    background: linear-gradient(to right, transparent, #F6F6F6);
  }
}

.creator-category-item {
  width: 130px;
}

@media all and (max-width: 767px) {
  .creator-page .page-withSidebar-main > .f-between > .f-y-center, .creator-page .page-withSidebar-main > .faq-item-title > .f-y-center, .creator-page .page-withSidebar-main > .f-between > .field-inline, .creator-page .page-withSidebar-main > .faq-item-title > .field-inline {
    width: 100%;
    margin-right: 0;
  }
  .creator-page .page-withSidebar-main > .f-between > .f-y-center .btn-basic, .creator-page .page-withSidebar-main > .faq-item-title > .f-y-center .btn-basic, .creator-page .page-withSidebar-main > .f-between > .field-inline .btn-basic, .creator-page .page-withSidebar-main > .faq-item-title > .field-inline .btn-basic, .creator-page .page-withSidebar-main > .f-between > .f-y-center .filters-dropdown, .creator-page .page-withSidebar-main > .faq-item-title > .f-y-center .filters-dropdown, .creator-page .page-withSidebar-main > .f-between > .field-inline .filters-dropdown, .creator-page .page-withSidebar-main > .faq-item-title > .field-inline .filters-dropdown {
    width: 100%;
  }
  .creator-page .page-withSidebar-main > .f-between > .f-y-center .filters-dropdown, .creator-page .page-withSidebar-main > .faq-item-title > .f-y-center .filters-dropdown, .creator-page .page-withSidebar-main > .f-between > .field-inline .filters-dropdown, .creator-page .page-withSidebar-main > .faq-item-title > .field-inline .filters-dropdown {
    padding: 7px 12px;
  }
  .creator-page .page-withSidebar-main > .f-between > .f-y-center .filters-dropdown > a, .creator-page .page-withSidebar-main > .faq-item-title > .f-y-center .filters-dropdown > a, .creator-page .page-withSidebar-main > .f-between > .field-inline .filters-dropdown > a, .creator-page .page-withSidebar-main > .faq-item-title > .field-inline .filters-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .creator-page .page-withSidebar-main > .f-between > .f-y-center .filters-dropdown > a .ic-angle, .creator-page .page-withSidebar-main > .faq-item-title > .f-y-center .filters-dropdown > a .ic-angle, .creator-page .page-withSidebar-main > .f-between > .field-inline .filters-dropdown > a .ic-angle, .creator-page .page-withSidebar-main > .faq-item-title > .field-inline .filters-dropdown > a .ic-angle {
    margin-bottom: 0;
  }
}
.creator-profile {
  border: 1px solid #EAEAEA;
  background-color: #fff;
  border-radius: 8px;
}
@media all and (max-width: 767px) {
  .creator-profile {
    border-radius: 0;
    border: 0;
    margin-top: -40px;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 16px;
  }
}
.creator-profile-top {
  border-bottom: 1px solid #DEDADA;
  text-align: center;
  padding: 20px 16px;
}
@media all and (min-width: 768px) {
  .creator-profile-top {
    padding: 26px;
  }
}
.creator-profile-bottom {
  padding: 20px 16px 12px;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768px) {
  .creator-profile-bottom {
    padding: 24px 20px 16px;
  }
}
.creator-profile-bottom-btns {
  margin-bottom: 0.5em;
}
@media all and (min-width: 768px) {
  .creator-profile-bottom-btns {
    order: 2;
    margin-top: 1.5em;
    margin-bottom: 0;
  }
}
.creator-profile-bottom-btns .btn-follow {
  width: 100%;
  padding: 0.5em 1.5em 0.5em 1em;
  border: 1px solid #C91F1D;
  background-color: #C91F1D;
  color: #fff;
}
.creator-profile-bottom-btns .btn-follow:before {
  right: 1.2em;
}
.creator-profile-bottom-btns .btn-follow:after {
  right: 1.53em;
}
.creator-profile-bottom-btns .btn-follow:hover {
  background-color: #fff;
  color: #C91F1D;
}
.creator-profile-bottom-btns .btn-block {
  font-size: 15px;
}
.creator-profile-bottom-content {
  color: #878787;
  font-size: 14px;
  line-height: 1.6;
}
.creator-profile-bottom-title {
  color: #000;
  font-size: 16px;
  letter-spacing: 0.01em;
  font-weight: 500;
  margin-bottom: 1em;
}
.creator-profile-avator {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px #EDE9E9;
}
.creator-profile-title {
  font-size: 18px;
  color: #101010;
  font-weight: 500;
}
@media all and (min-width: 768px) {
  .creator-profile-title {
    font-size: 23px;
  }
}
.creator-profile-subtitle {
  font-size: 13px;
  color: #878787;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .creator-profile-subtitle {
    font-size: 14px;
  }
}
.creator-stats {
  border: 1px solid #EAEAEA;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px 25px;
}
@media all and (min-width: 768px) {
  .creator-stats {
    padding: 28px 35px;
  }
}
.creator-stats li:not(:last-child) {
  margin-bottom: 0.5em;
}

.faq-item {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  background-color: #fff;
  letter-spacing: 0.01em;
}
.faq-item:not(:last-child) {
  margin-bottom: 0.75em;
}
.faq-item.active .faq-item-title {
  color: #C91F1D;
}
.faq-item.active .faq-item-title .ic-angle:before {
  border-color: #C91F1D;
}
.faq-item-title {
  padding: 0.5em 1em;
  cursor: pointer;
  font-size: 17px;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .faq-item-title {
    font-size: 19px;
  }
}
.faq-item-content {
  display: none;
  border-top: 1px solid #e3e3e3;
  color: #6A6A6A;
  font-size: 12px;
  line-height: 2em;
  padding: 1em 2em;
}
@media all and (min-width: 768px) {
  .faq-item-content {
    font-size: 14px;
  }
}

@media all and (min-width: 768px) {
  .login-page.register .frame {
    width: 560px;
  }
}
.login-page.register .frame .field-common {
  width: 100%;
}
@media all and (min-width: 1200px) {
  .login-page .h-section {
    font-size: 36px;
  }
}
@media all and (min-width: 768px) {
  .login-page .full-bg {
    justify-content: flex-end;
    padding-right: 15%;
  }
}
@media all and (min-width: 768px) {
  .login-page .frame {
    width: 380px;
  }
}

.upload-form-video {
  flex-direction: column;
}
@media all and (min-width: 1024px) {
  .upload-form-video {
    height: 360px;
  }
}
.upload-form-video .btn-basic {
  cursor: pointer;
}
@media all and (min-width: 768px) {
  .upload-form-cover {
    border-right: 1px solid #e4e4e4;
    padding: 20px 40px;
    flex-basis: 40%;
    max-width: 40%;
  }
}
.upload-form-cover .f-center, .upload-form-cover .category-item-overlay, .upload-form-cover .header-btn-collapse, .upload-form-cover .upload-form-video {
  flex-direction: column;
  border: 1px solid #DEDADA;
  border-radius: 8px;
  min-height: 200px;
}
.upload-form-cover .f-center .btn-basic, .upload-form-cover .category-item-overlay .btn-basic, .upload-form-cover .header-btn-collapse .btn-basic, .upload-form-cover .upload-form-video .btn-basic {
  cursor: pointer;
}

.category-item {
  width: 120px;
  border-radius: 12px;
  overflow: hidden;
}
.category-item:before {
  padding-bottom: 60%;
}
@media all and (min-width: 768px) {
  .category-item {
    width: 180px;
  }
  .category-item:before {
    padding-bottom: 50%;
  }
}
@media all and (min-width: 1200px) {
  .category-item {
    width: 260px;
  }
}
.category-item:hover {
  box-shadow: 0px 4px 8px rgba(170, 8, 6, 0.13);
}
.category-item-overlay {
  color: #fff;
  padding: 12px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media all and (min-width: 768px) {
  .category-item-overlay {
    padding: 18px;
  }
}
.category-item-overlay:hover {
  color: #fff;
}
.category-item-overlay:before {
  content: "";
  z-index: -1;
  position: absolute;
  transition: 0.25s ease all;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.category-item-title {
  font-size: 20px;
}
@media all and (min-width: 768px) {
  .category-item-title {
    font-size: 30px;
  }
}

@media all and (max-width: 767px) {
  .video-page .section {
    padding: 0;
  }
}
@media all and (max-width: 767px) {
  .video-page .frame {
    border-radius: 0;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -12px;
    border-top: 1px solid #DEDADA;
  }
}
.video-page-top {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 60%, white 100%);
  padding: 0;
}
@media all and (min-width: 768px) {
  .video-page-top {
    padding: 40px 11% 50px;
  }
}
.video-info.frame {
  border-top: 0;
}
.video-info-content {
  padding: 12px 15px;
  font-size: 15px;
  color: #878787;
  line-height: 1.67;
  text-align: justify;
  font-weight: 300;
}
@media all and (min-width: 768px) {
  .video-info-content {
    padding: 18px 24px;
  }
}
.video-info-bottom {
  padding: 12px 15px 30px;
  text-align: center;
}
@media all and (min-width: 768px) {
  .video-info-bottom {
    padding: 18px 24px;
    border-top: 1px solid #DEDADA;
  }
}
.video-info-bottom .btn-basic {
  display: inline-flex;
  align-items: center;
}
.video-info-bottom .btn-basic .ic-angle:before {
  border-color: #6A6A6A;
}
.video-info-bottom .btn-basic:hover:hover .ic-angle:before, .video-info-bottom .btn-basic:active:hover .ic-angle:before, .video-info-bottom .btn-basic:focus:hover .ic-angle:before {
  border-color: #fff;
}
.video-meta {
  border-bottom: 1px solid #DEDADA;
  padding: 18px 15px 0;
}
@media all and (min-width: 768px) {
  .video-meta {
    padding: 34px 24px 0;
  }
}
.video-meta-info {
  color: #878787;
  font-size: 13px;
}
@media all and (min-width: 768px) {
  .video-meta-info {
    font-size: 15px;
  }
}
.video-meta-btns {
  margin-bottom: -1px;
}
.video-meta-btns .btn-reset, .video-meta-btns .btn-like {
  padding: 0.25em 0.5em;
  font-size: sans-serif;
  color: #878787;
}
.video-meta-btns .btn-reset > .ic-svg, .video-meta-btns .btn-like > .ic-svg {
  fill: #878787;
}
.video-meta-btns .btn-reset > .ic-stroke, .video-meta-btns .btn-like > .ic-stroke {
  stroke: #878787;
}
.video-meta-btns .btn-reset.btn-active, .video-meta-btns .btn-active.btn-like {
  border-bottom: 2px solid #C91F1D;
}
.video-meta-btns .btn-reset:hover, .video-meta-btns .btn-like:hover, .video-meta-btns .btn-reset.btn-active, .video-meta-btns .btn-active.btn-like {
  color: #C91F1D;
}
.video-meta-btns .btn-reset:hover > .ic-svg, .video-meta-btns .btn-like:hover > .ic-svg, .video-meta-btns .btn-reset.btn-active > .ic-svg, .video-meta-btns .btn-active.btn-like > .ic-svg {
  fill: #C91F1D;
}
.video-meta-btns .btn-reset:hover > .ic-stroke, .video-meta-btns .btn-like:hover > .ic-stroke, .video-meta-btns .btn-reset.btn-active > .ic-stroke, .video-meta-btns .btn-active.btn-like > .ic-stroke {
  stroke: #C91F1D;
}
.video-creator .btn-more {
  font-size: 14px;
  background-size: 14px;
  padding-right: 18px;
  color: #6A6A6A;
}
.video-creator .btn-more:hover, .video-creator .btn-more:active, .video-creator .btn-more:focus {
  color: #C91F1D;
}
.video-creator .btn-follow {
  font-size: 12px;
}
.video-creator .btn-follow:before, .video-creator .btn-follow:after {
  background-color: #6A6A6A;
}
.video-creator .btn-follow:hover:before, .video-creator .btn-follow:hover:after, .video-creator .btn-follow:active:before, .video-creator .btn-follow:active:after, .video-creator .btn-follow:focus:before, .video-creator .btn-follow:focus:after {
  background-color: #fff;
}
@media all and (max-width: 767px) {
  .video-creator hr {
    opacity: 0.5;
  }
}
.video-creator-title {
  font-size: 28px;
}

@media all and (max-width: 767px) {
  .comment hr {
    margin-left: 1em;
    margin-right: 1em;
  }
}
.comment-top {
  font-size: 15px;
  color: #878787;
}
.comment-top a {
  font-size: 17px;
}
@media all and (min-width: 768px) {
  .comment-main {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media all and (min-width: 768px) {
  .comment-main .comment-item .creator-avator {
    left: 8px;
  }
}

.replies {
  background-color: #F6F6F6;
  border-radius: 8px;
}
@media all and (max-width: 767px) {
  .replies {
    margin-left: -48px;
  }
}

/*# sourceMappingURL=styles.css.map */
