@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
html,
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "noto sans tc", "microsoft jhenghei", sans-serif;
}

body {
  background: #ffffff;
  font-size: 16px;
}

h1 {
  text-align: center;
  font-weight: bolder;
  margin-bottom: 30px;
}

i.arrow-left {
  width: 35px;
  height: 35px;
  background: url("../images/arrow-left.png") center center no-repeat;
  background-size: contain;
  display: inline-block;
}

i.arrow-right {
  width: 35px;
  height: 35px;
  background: url("../images/arrow-right.png") center center no-repeat;
  background-size: contain;
  display: inline-block;
}

.logo {
  width: 200px;
  padding: 5px 10px 5px 0;
}
@media (max-width: 767.98px) {
  .logo {
    width: 150px;
    padding: 5px 0;
  }
}
.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.user-link a {
  color: #000000;
}

.badge {
  border-radius: 4px;
}
.badge.badge-label {
  background: #40DAD8;
  color: #000000;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 1.47;
  font-weight: 400;
}

.register,
.profile,
.setting,
.verify {
  padding: 50px 0;
}
@media (max-width: 767.98px) {
  .register,
.profile,
.setting,
.verify {
    padding: 20px 0;
  }
}
.register .form-group,
.profile .form-group,
.setting .form-group,
.verify .form-group {
  margin-bottom: 50px;
}
.register .breadcrumb,
.profile .breadcrumb,
.setting .breadcrumb,
.verify .breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.register .breadcrumb .breadcrumb-item,
.profile .breadcrumb .breadcrumb-item,
.setting .breadcrumb .breadcrumb-item,
.verify .breadcrumb .breadcrumb-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #000000;
  font-size: 24px;
}
.register .breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.profile .breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.setting .breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.verify .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  font-size: 24px;
  color: #000000;
}
.register label.control-label,
.profile label.control-label,
.setting label.control-label,
.verify label.control-label {
  font-weight: bold;
}
.register label.required:after,
.profile label.required:after,
.setting label.required:after,
.verify label.required:after {
  content: "*";
  margin-left: 5px;
}
.register h2,
.profile h2,
.setting h2,
.verify h2 {
  background: #ffd249;
  font-size: 26px;
  padding: 10px 20px;
  margin: 0 -20px 20px;
}
.register .intro,
.profile .intro,
.setting .intro,
.verify .intro {
  margin-bottom: 40px;
}
.register .sub-label,
.profile .sub-label,
.setting .sub-label,
.verify .sub-label {
  font-size: 14px;
  color: #b3b3b3;
  margin-bottom: 10px;
}
.register input[type=text],
.register input[type=email],
.register input[type=password],
.register .select2-container--default .select2-selection,
.profile input[type=text],
.profile input[type=email],
.profile input[type=password],
.profile .select2-container--default .select2-selection,
.setting input[type=text],
.setting input[type=email],
.setting input[type=password],
.setting .select2-container--default .select2-selection,
.verify input[type=text],
.verify input[type=email],
.verify input[type=password],
.verify .select2-container--default .select2-selection {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #b3b3b3;
  background: transparent;
}
.register input[type=text]:focus,
.register input[type=email]:focus,
.register input[type=password]:focus,
.register .select2-container--default .select2-selection:focus,
.profile input[type=text]:focus,
.profile input[type=email]:focus,
.profile input[type=password]:focus,
.profile .select2-container--default .select2-selection:focus,
.setting input[type=text]:focus,
.setting input[type=email]:focus,
.setting input[type=password]:focus,
.setting .select2-container--default .select2-selection:focus,
.verify input[type=text]:focus,
.verify input[type=email]:focus,
.verify input[type=password]:focus,
.verify .select2-container--default .select2-selection:focus {
  border-bottom-color: #ffd249;
}
.register .radio-group input[type=radio],
.register .radio-group input[type=checkbox],
.profile .radio-group input[type=radio],
.profile .radio-group input[type=checkbox],
.setting .radio-group input[type=radio],
.setting .radio-group input[type=checkbox],
.verify .radio-group input[type=radio],
.verify .radio-group input[type=checkbox] {
  opacity: 0;
}
.register .radio-group input[type=radio] + label,
.register .radio-group input[type=checkbox] + label,
.profile .radio-group input[type=radio] + label,
.profile .radio-group input[type=checkbox] + label,
.setting .radio-group input[type=radio] + label,
.setting .radio-group input[type=checkbox] + label,
.verify .radio-group input[type=radio] + label,
.verify .radio-group input[type=checkbox] + label {
  display: block;
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}
.register .radio-group input[type=radio]:checked + label,
.register .radio-group input[type=checkbox]:checked + label,
.profile .radio-group input[type=radio]:checked + label,
.profile .radio-group input[type=checkbox]:checked + label,
.setting .radio-group input[type=radio]:checked + label,
.setting .radio-group input[type=checkbox]:checked + label,
.verify .radio-group input[type=radio]:checked + label,
.verify .radio-group input[type=checkbox]:checked + label {
  background-color: #ffd249;
}
.register .radio-group .custom-border,
.profile .radio-group .custom-border,
.setting .radio-group .custom-border,
.verify .radio-group .custom-border {
  padding: 5px;
  border: 1px solid #ffd249;
  margin-bottom: 5px;
}
.register .radio-group .custom-border .custom-control,
.profile .radio-group .custom-border .custom-control,
.setting .radio-group .custom-border .custom-control,
.verify .radio-group .custom-border .custom-control {
  margin-bottom: 0;
}
.register label:focus-within,
.profile label:focus-within,
.setting label:focus-within,
.verify label:focus-within {
  outline: 1px solid #ffd249;
}
.register .btn-skip,
.profile .btn-skip,
.setting .btn-skip,
.verify .btn-skip {
  color: #b3b3b3;
  background: #f0f0f0;
  width: 200px;
  font-size: 16px;
}

.btn-submit {
  background: #ffd249;
  width: 200px;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}
.btn-submit:hover {
  background: #FFE79C;
}

header {
  background: #ffd249;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 20;
}
header .logo a {
  font-size: 36px;
  font-weight: bolder;
}
header a {
  color: #000000;
}
header a:hover, header a:focus, header a:active {
  color: #555555;
}
header .btn-login {
  background: transparent;
  color: #585858;
  padding: 1px 5px;
  margin: 0 5px;
}
@media (max-width: 767.98px) {
  header .btn-login {
    padding: 1px;
  }
}
header .btn-login:hover {
  color: #585858;
}
header .btn {
  background-color: #ffd249;
}
header .search {
  position: relative;
}
header .search .search-collapse-wrapper {
  overflow: hidden;
  margin-left: 10px;
}
header .search #search-collapse {
  background: #ffd249;
  position: absolute;
  top: 0;
  left: 100%;
}
header .search .input-group {
  border-bottom: 1px solid #000000;
}
header .search #keyword {
  border: none;
  background: transparent;
  color: #000000;
  font-size: 18px;
}
header .search #keyword::-moz-placeholder {
  color: #000000;
  opacity: 1;
}
header .search #keyword::placeholder {
  color: #000000;
  opacity: 1;
}
header .search i.fa-search {
  font-size: 18px;
  color: #000000;
}
header .navbar {
  padding: 0 150px 0 90px;
}
@media (max-width: 767.98px) {
  header .navbar {
    padding: 0;
  }
}
header .navbar .navbar-toggler {
  border: none;
}
header .navbar .navbar-toggler span {
  color: #000000;
  font-size: 24px;
}
@media (max-width: 767.98px) {
  header .navbar #navbarNav {
    position: absolute;
    left: 0;
    top: 100%;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
    z-index: 2000;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  header .navbar #navbarNav .nav-item {
    border-bottom: 1px solid #000000;
    margin-bottom: 10px;
  }
  header .navbar #navbarNav .nav-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  header .navbar #navbarNav li.nav-item .nav-link {
    padding: 5px 0;
    white-space: nowrap;
    font-size: 20px;
    font-weight: bold;
  }
}
header .navbar #navbarNav .nav-link {
  padding: 2px 5px;
  border-radius: 0;
  margin: 0 10px;
}
@media (max-width: 767.98px) {
  header .navbar #navbarNav .nav-link {
    color: #000000;
    margin: 0;
    padding: 5px 0;
  }
}
header .navbar #navbarNav .nav-link:hover, header .navbar #navbarNav .nav-link.active {
  background: transparent;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 0;
}
header .navbar #navbarNav .nav-link:hover:hover, header .navbar #navbarNav .nav-link.active:hover {
  background: transparent;
}
header .navbar #navbarNav .nav-link.create-event-btn {
  color: #ffffff;
  padding: 20px;
  background-color: #000000;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
}
@media (max-width: 767.98px) {
  header .navbar #navbarNav .nav-link.create-event-btn {
    position: static;
    right: auto;
    top: auto;
    bottom: auto;
    background-color: transparent;
    padding: 0;
    color: #000000;
  }
}
header .navbar #navbarNav .nav-link.create-event-btn:hover {
  background-color: #555555;
  border-bottom: none;
}
@media (max-width: 767.98px) {
  header .navbar #navbarNav .nav-link.create-event-btn:hover {
    background-color: transparent;
  }
}
header .navbar #navbarNav .nav-item.mega {
  position: relative;
}
header .navbar #navbarNav #mega-menu {
  position: absolute;
  right: 0;
  top: 55px;
  background: #ffffff;
  width: 550px;
  max-width: 100vw;
  padding: 25px 40px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
  z-index: 10;
}
@media (max-width: 767.98px) {
  header .navbar #navbarNav #mega-menu {
    border-top: 1px solid #000000;
    position: static;
    right: 0;
    top: 0;
    padding: 0;
    box-shadow: none;
    width: auto;
  }
}
header .navbar #navbarNav .nav-header {
  padding: 10px;
  border-bottom: 1px solid #C2C2C2;
  white-space: nowrap;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #FABC00;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  header .navbar #navbarNav .nav-header {
    padding: 10px 0;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
  }
}
header .navbar #navbarNav .nav-header-link {
  padding: 5px 15px;
  white-space: nowrap;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #000000;
  display: block;
  background: #FFD248;
  border-radius: 8px;
  position: absolute;
  top: 35px;
  right: 45px;
}
header .navbar #navbarNav .nav-header-link:hover {
  background: #FFDD75;
}
@media (max-width: 767.98px) {
  header .navbar #navbarNav .nav-header-link {
    border-bottom: 1px solid #000000;
    padding: 10px 0;
    position: static;
    background: transparent;
    border-radius: 0;
    color: #000000;
    font-weight: bold;
  }
}
header .navbar #navbarNav .nav-sublink {
  display: inline-block;
  padding: 5px 10px;
  white-space: nowrap;
  color: #585858;
  margin-bottom: 5px;
  border-bottom: 4px solid transparent;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  header .navbar #navbarNav .nav-sublink {
    padding: 5px 0;
    margin-bottom: 0;
  }
}
header .navbar #navbarNav .nav-sublink:hover {
  border-bottom: 4px solid #FFD248;
}
header .navbar #navbarNav .nav-sublink.subnav {
  padding-left: 25px;
}
header .navbar #navbarNav .mega-dropdown .dropdown-menu {
  width: 200%;
  max-width: 100vw;
  left: auto !important;
}
header .navbar #navbarNav .industry-item .nav-sublink {
  display: inline-flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  header .navbar #navbarNav .industry-item .nav-sublink {
    display: flex;
  }
}
header .navbar #navbarNav .industry-item .industry-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
  background: center center no-repeat;
  background-size: cover;
}
header .navbar #navbarNav .industry-item .industry-icon.industry-food {
  background-image: url("../images/icons/food.svg");
}
header .navbar #navbarNav .industry-item .industry-icon.industry-make-up {
  background-image: url("../images/icons/make-up.svg");
}
header .navbar #navbarNav .industry-item .industry-icon.industry-life {
  background-image: url("../images/icons/life.svg");
}
header .navbar #navbarNav .industry-item .industry-icon.industry-sport {
  background-image: url("../images/icons/sport.svg");
}
header .navbar #navbarNav .industry-item .industry-icon.industry-discount {
  background-image: url("../images/icons/discount.svg");
}
header .navbar #navbarNav .industry-item .industry-icon.industry-travel {
  background-image: url("../images/icons/travel.svg");
}
header .navbar #navbarNav .industry-item .industry-icon.industry-3C {
  background-image: url("../images/icons/3C.svg");
}
header .navbar #navbarNav .industry-item .industry-icon.industry-health {
  background-image: url("../images/icons/health.svg");
}
header .navbar #navbarNav .industry-item .industry-icon.industry-dress {
  background-image: url("../images/icons/dress.svg");
}
header .navbar #navbarNav .industry-item .industry-icon.industry-toy {
  background-image: url("../images/icons/toy.svg");
}
header .navbar #navbarNav .industry-item .industry-icon.industry-dog {
  background-image: url("../images/icons/dog.svg");
}
header .navbar #navbarNav .industry-item .industry-icon.industry-book {
  background-image: url("../images/icons/book.svg");
}
header .navbar #navbarNav .industry-item:hover .industry-icon.industry-food {
  background-image: url("../images/icons/food-hover.svg");
}
header .navbar #navbarNav .industry-item:hover .industry-icon.industry-make-up {
  background-image: url("../images/icons/make-up-hover.svg");
}
header .navbar #navbarNav .industry-item:hover .industry-icon.industry-life {
  background-image: url("../images/icons/life-hover.svg");
}
header .navbar #navbarNav .industry-item:hover .industry-icon.industry-sport {
  background-image: url("../images/icons/sport-hover.svg");
}
header .navbar #navbarNav .industry-item:hover .industry-icon.industry-discount {
  background-image: url("../images/icons/discount-hover.svg");
}
header .navbar #navbarNav .industry-item:hover .industry-icon.industry-travel {
  background-image: url("../images/icons/travel-hover.svg");
}
header .navbar #navbarNav .industry-item:hover .industry-icon.industry-3C {
  background-image: url("../images/icons/3C-hover.svg");
}
header .navbar #navbarNav .industry-item:hover .industry-icon.industry-health {
  background-image: url("../images/icons/health-hover.svg");
}
header .navbar #navbarNav .industry-item:hover .industry-icon.industry-dress {
  background-image: url("../images/icons/dress-hover.svg");
}
header .navbar #navbarNav .industry-item:hover .industry-icon.industry-toy {
  background-image: url("../images/icons/toy-hover.svg");
}
header .navbar #navbarNav .industry-item:hover .industry-icon.industry-dog {
  background-image: url("../images/icons/dog-hover.svg");
}
header .navbar #navbarNav .industry-item:hover .industry-icon.industry-book {
  background-image: url("../images/icons/book-hover.svg");
}
header .navbar #navbarNav .industry-item a {
  font-size: 16px;
  line-height: 24px;
}

#loginModal .modal-header,
#registerModal .modal-header,
#profileModal .modal-header {
  color: #585858;
  background: #ffd249;
  font-size: 30px;
  justify-content: center;
  border-bottom: none;
}
#loginModal .modal-body,
#registerModal .modal-body,
#profileModal .modal-body {
  padding: 25px 50px 50px;
}
#loginModal .login-nav,
#registerModal .login-nav,
#profileModal .login-nav {
  margin-bottom: 30px;
}
#loginModal .login-nav .nav-tabs,
#registerModal .login-nav .nav-tabs,
#profileModal .login-nav .nav-tabs {
  border-bottom: none;
  justify-content: center;
}
#loginModal .login-nav .nav-tabs .nav-item,
#registerModal .login-nav .nav-tabs .nav-item,
#profileModal .login-nav .nav-tabs .nav-item {
  width: 50%;
}
#loginModal .login-nav .nav-tabs .nav-link,
#registerModal .login-nav .nav-tabs .nav-link,
#profileModal .login-nav .nav-tabs .nav-link {
  color: #333333;
  font-size: 24px;
  border: none;
  border-bottom: 5px solid #f0f0f0;
}
#loginModal .login-nav .nav-tabs .nav-link.active,
#registerModal .login-nav .nav-tabs .nav-link.active,
#profileModal .login-nav .nav-tabs .nav-link.active {
  border-bottom: 5px solid #ffd249;
}
#loginModal input[type=text],
#loginModal input[type=email],
#loginModal input[type=password],
#registerModal input[type=text],
#registerModal input[type=email],
#registerModal input[type=password],
#profileModal input[type=text],
#profileModal input[type=email],
#profileModal input[type=password] {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #b3b3b3;
  background: transparent;
}
#loginModal input[type=text]:focus,
#loginModal input[type=email]:focus,
#loginModal input[type=password]:focus,
#registerModal input[type=text]:focus,
#registerModal input[type=email]:focus,
#registerModal input[type=password]:focus,
#profileModal input[type=text]:focus,
#profileModal input[type=email]:focus,
#profileModal input[type=password]:focus {
  border-bottom-color: #ffd249;
}
#loginModal .btn-login,
#loginModal .btn-register,
#loginModal .btn-profile,
#registerModal .btn-login,
#registerModal .btn-register,
#registerModal .btn-profile,
#profileModal .btn-login,
#profileModal .btn-register,
#profileModal .btn-profile {
  color: #585858;
  background: #ffd249;
}
#loginModal .btn-fb-login,
#registerModal .btn-fb-login,
#profileModal .btn-fb-login {
  color: #ffffff;
  background: #3a5a98;
}
#loginModal .hr,
#registerModal .hr,
#profileModal .hr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #b3b3b3;
  padding: 10px 0;
}
#loginModal .hr:before, #loginModal .hr:after,
#registerModal .hr:before,
#registerModal .hr:after,
#profileModal .hr:before,
#profileModal .hr:after {
  content: "";
  width: 40%;
  border: 1px solid #b3b3b3;
}

.eventmodal .modal-header {
  color: #585858;
  background: #ffd249;
  font-size: 30px;
  justify-content: center;
  border-bottom: none;
}
.eventmodal .modal-body {
  padding: 25px 50px 50px;
}

footer {
  background: #ffd249;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767.98px) {
  footer {
    text-align: center;
  }
}
footer h3 {
  display: inline-block;
  color: #000000;
  padding-bottom: 5px;
  border-bottom: 1px solid #000000;
  font-weight: bold;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.1em;
}
footer .nav-pills .nav-item a.nav-link {
  display: inline-block;
  color: #000000;
  padding: 5px 0;
}
footer .nav-pills .nav-item a.nav-link:hover, footer .nav-pills .nav-item a.nav-link:focus, footer .nav-pills .nav-item a.nav-link:active {
  opacity: 0.5;
}
footer .social-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffd249;
  background: #000000;
  border-radius: 100%;
  font-size: 24px;
  width: 30px;
  height: 30px;
}
footer .social-link a:hover, footer .social-link a:focus, footer .social-link a:active {
  opacity: 0.5;
}

.content-wrapper {
  padding: 0;
}

.banner {
  position: relative;
  overflow: hidden;
}
.banner .banner-slides {
  position: static;
  width: 200%;
  margin: auto -50% 80px;
}
@media (max-width: 767.98px) {
  .banner .banner-slides {
    width: 100%;
    margin: auto auto 80px;
  }
}
.banner .banner-slides .swiper-slide a,
.banner .banner-slides .swiper-slide .banner-url {
  display: block;
}
.banner .banner-slides .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.banner .banner-slides .swiper-slide-next::after,
.banner .banner-slides .swiper-slide-prev::after {
  content: "";
  background: #ffffff;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.banner .banner-slides .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #000000;
  background: transparent !important;
  opacity: 1;
}
.banner .banner-slides .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000000 !important;
}
.banner .banner-slides .swiper-button-next,
.banner .banner-slides .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #FFD249;
  opacity: 1;
  border-radius: 100%;
  font-size: 30px;
  font-weight: bolder;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .banner-slides .swiper-button-next:hover,
.banner .banner-slides .swiper-button-prev:hover {
  background: #FFE79C;
}
.banner .banner-slides .swiper-button-next {
  right: 8%;
}
.banner .banner-slides .swiper-button-prev {
  left: 8%;
}

.event-item {
  position: relative;
  margin-bottom: 30px;
  padding: 30px 10px 0;
}
.event-item .event-image {
  border-radius: 10px;
  position: relative;
  display: block;
  overflow: hidden;
}
.event-item .event-image:hover::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}
.event-item .event-image .category {
  position: absolute;
  top: 15px;
  left: 0;
  padding: 5px;
  background: #72ACFF;
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.event-item .event-image .vip {
  position: absolute;
  top: 15px;
  right: 0;
  padding: 5px;
  background: #FF4D4D;
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.event-item .tag .badge-label {
  background: #DEDEDE;
}
.event-item .date {
  padding: 10px;
  font-size: 12px;
  color: #b3b3b3;
}
.event-item .title {
  margin: 10px 0 20px;
  height: 65px;
  overflow: hidden;
}
.event-item .title h3 {
  margin-bottom: 0;
}
.event-item .title h3 a {
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.1em;
  color: #000000;
  display: block;
}
.event-item .title h3 a:hover {
  text-decoration: underline;
}
.event-item .registration {
  margin-bottom: 10px;
  color: #C4C4C4;
  font-size: 14px;
  line-height: 25px;
  text-align: justify;
  letter-spacing: 0.1em;
}
.event-item .registration span {
  font-size: 14px;
  font-weight: 900;
  color: #40DAD8;
}
.event-item .deadline {
  color: #C4C4C4;
  font-size: 14px;
  line-height: 25px;
  text-align: justify;
  letter-spacing: 0.1em;
  border-top: 1px solid #000000;
  padding-top: 10px;
}
.event-item .deadline span {
  font-size: 14px;
  font-weight: 900;
  color: #FF4D4D;
}
.event-item.end .event-image:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}

.sharing-item {
  margin-bottom: 20px;
  padding: 0 10px;
}
.sharing-item .instagram-media {
  min-width: auto !important;
}
.sharing-item .more-btn {
  background: #000000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  color: #ffffff;
  padding: 5px 20px;
}
.sharing-item .more-btn:hover {
  background: #9B9B9B;
}

.home h2 {
  margin-bottom: 40px;
  display: inline-flex;
  align-items: baseline;
  position: relative;
  padding-left: 40px;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.1em;
  color: #000000;
}
.home h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 65px;
  background: url("../images/hashtag.png") center bottom no-repeat;
  background-size: contain;
}
.home h2::after {
  content: "";
  border-bottom: 2px solid #000000;
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100vw;
}
.home .btn-more {
  background: #000000;
  color: #ffffff;
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.1em;
}
.home .btn-more:hover {
  color: #585858;
  border: 1px solid #585858;
}
.home .topic {
  background: #f0f0f0;
}
.home .topic .topic-item {
  padding: 30px;
  background: #ffffff;
}
.home .topic .topic-item .title {
  padding: 20px 0;
}
.home .topic,
.home .recommend,
.home .newest {
  padding: 50px 90px;
}
@media (max-width: 767.98px) {
  .home .topic,
.home .recommend,
.home .newest {
    padding: 20px 0;
  }
}
.home .newest .sidebar h4 {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #000000;
}
.home .newest .sidebar label {
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0.1em;
  color: #000000;
  margin-right: 20px;
  margin-bottom: 10px;
}
.home .newest .sidebar .search-form-collapse-btn {
  color: #000000;
}
.home .newest .sidebar .filter-item {
  padding: 5px 10px;
  border-radius: 4px;
  background: #ffd249;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.home .newest .sidebar .custom-control-label:before {
  border-color: #000000;
}
.home .hottest {
  padding: 0 90px 50px;
}
@media (max-width: 767.98px) {
  .home .hottest {
    padding: 20px 0;
  }
}
.home .hottest .hottest-wrapper {
  padding: 0 60px;
}
@media (max-width: 767.98px) {
  .home .hottest .hottest-wrapper {
    padding: 0;
  }
}
.home .hottest .tag .badge-label {
  background: #DEDEDE;
}
.home .sharing {
  padding: 0 90px 50px;
}
@media (max-width: 767.98px) {
  .home .sharing {
    padding: 20px 0;
  }
}
.home .topic h2,
.home .sharing h2 {
  margin-bottom: 40px;
}
.home .hot-event-slides {
  border: 1px solid #000000;
  border-radius: 10px;
  position: static;
}
.home .hot-event-slides .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}
.home .hot-event-slides .info {
  padding: 40px;
}
@media (max-width: 767.98px) {
  .home .hot-event-slides .info {
    padding: 20px;
  }
}
.home .hot-event-slides .info .title {
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .home .hot-event-slides .info .title {
    font-size: 16px;
    line-height: 20px;
    height: auto;
    margin-bottom: 10px;
  }
}
.home .hot-event-slides .info .title a {
  color: #202020;
}
.home .hot-event-slides .info .description {
  margin: 25px 0;
  height: 100px;
  overflow: hidden;
  font-size: 14px;
  line-height: 25px;
  text-align: justify;
}
.home .hot-event-slides .info .deadline {
  margin-bottom: 5px;
  color: #B3B3B3;
  font-size: 12px;
  line-height: 25px;
}
@media (max-width: 767.98px) {
  .home .hot-event-slides .info .deadline {
    margin-bottom: 0;
  }
}
.home .hot-event-slides .info .deadline span {
  color: #FF4D4D;
  font-size: 14px;
  font-weight: 900;
}
.home .hot-event-slides .info .registration {
  margin-bottom: 5px;
  color: #B3B3B3;
  font-size: 12px;
  line-height: 25px;
}
.home .hot-event-slides .info .registration span {
  color: #40DAD8;
  font-size: 14px;
  font-weight: 900;
}
.home .hot-event-slides .info .register-btn {
  margin-top: 40px;
  background: #FFD249;
  font-size: 15px;
  font-weight: bold;
  padding: 5px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .home .hot-event-slides .info .register-btn {
    margin-top: 0;
    padding: 5px;
  }
}
.home .hot-event-slides .info .register-btn:hover {
  opacity: 0.5;
}
.home .hot-event-slides .img {
  width: 100%;
  height: 440px;
}
@media (max-width: 767.98px) {
  .home .hot-event-slides .img {
    height: 200px;
  }
}
.home .hot-event-slides .img img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center right;
     object-position: center right;
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .home .hot-event-slides .img img {
    -o-object-position: top center;
       object-position: top center;
  }
}
.home .hot-event-slides .swiper-button-next,
.home .hot-event-slides .swiper-button-prev {
  font-size: 30px;
  font-weight: bolder;
  color: #000000;
}
.home .hot-event-slides .swiper-button-next.hover,
.home .hot-event-slides .swiper-button-prev.hover {
  opacity: 0.5;
}
.home .hot-event-slides .swiper-button-next {
  right: -50px;
}
.home .hot-event-slides .swiper-button-prev {
  left: -50px;
}
.home .hot-event-slides .swiper-pagination {
  bottom: -30px;
}
.home .hot-event-slides .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #000000;
  background: transparent !important;
  opacity: 1;
}
.home .hot-event-slides .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000000 !important;
}
.home .event-slides-wrapper {
  position: relative;
}
.home .event-slides-wrapper .event-slides {
  position: static;
}
.home .event-slides-wrapper .event-slides .swiper-button-next,
.home .event-slides-wrapper .event-slides .swiper-button-prev {
  font-size: 30px;
  font-weight: bolder;
  color: #000000;
}
.home .event-slides-wrapper .event-slides .swiper-button-next.hover,
.home .event-slides-wrapper .event-slides .swiper-button-prev.hover {
  opacity: 0.5;
}
.home .event-slides-wrapper .event-slides .swiper-button-next {
  right: -50px;
}
.home .event-slides-wrapper .event-slides .swiper-button-prev {
  left: -50px;
}
.home .event-slides-wrapper .event-item {
  margin-bottom: 0;
}
.home .sharing-slides-wrapper {
  position: relative;
}
.home .sharing-slides-wrapper .sharing-slides {
  position: static;
}
.home .sharing-slides-wrapper .sharing-slides .swiper-button-next,
.home .sharing-slides-wrapper .sharing-slides .swiper-button-prev {
  font-size: 30px;
  font-weight: bolder;
  color: #000000;
}
.home .sharing-slides-wrapper .sharing-slides .swiper-button-next {
  right: -50px;
}
.home .sharing-slides-wrapper .sharing-slides .swiper-button-prev {
  left: -50px;
}

.event_sharing .sharing-item {
  margin-bottom: 50px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
}
.event_sharing .sharing-item .title {
  padding: 20px;
}
.event_sharing .sharing-item .title h3 {
  margin-bottom: 0;
}
.event_sharing .sharing-item .description {
  padding: 0 20px;
  color: #585858;
}
.event_sharing .sharing-item .user {
  padding: 20px;
}
.event_sharing .sharing-item .avatar {
  width: 50px;
}
.event_sharing .newest {
  margin-top: 50px;
}
.event_sharing .event-slides-wrapper {
  position: relative;
}
.event_sharing .event-slides-wrapper .event-slides {
  position: static;
}
.event_sharing .event-slides-wrapper .event-slides .swiper-button-next,
.event_sharing .event-slides-wrapper .event-slides .swiper-button-prev {
  font-size: 30px;
  font-weight: bolder;
  color: #000000;
}
.event_sharing .event-slides-wrapper .event-slides .swiper-button-next {
  right: -50px;
}
.event_sharing .event-slides-wrapper .event-slides .swiper-button-prev {
  left: -50px;
}

.event_show .event-wishlist button {
  padding: 0;
}
.event_show .company-wishlist {
  display: inline-block;
}
.event_show .company-wishlist button {
  padding: 0;
}
.event_show .reasons {
  position: relative;
  padding: 0 100px;
}
@media (max-width: 767.98px) {
  .event_show .reasons {
    padding: 0 50px;
  }
}
.event_show .reasons .reason-slides {
  padding: 20px 0;
}
.event_show .reasons .reason-slides .swiper-slide {
  overflow: hidden;
  max-height: 120px;
}
@media (max-width: 767.98px) {
  .event_show .reasons .reason-slides {
    padding: 10px 0;
  }
}
.event_show .reasons .swiper-button-next,
.event_show .reasons .swiper-button-prev {
  color: #ffffff;
  width: 50px;
  height: 50px;
  background: #FFD249;
  opacity: 1;
  border-radius: 100%;
  font-size: 30px;
  font-weight: bolder;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .event_show .reasons .swiper-button-next,
.event_show .reasons .swiper-button-prev {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
.event_show .reasons .swiper-button-next:hover,
.event_show .reasons .swiper-button-prev:hover {
  background: #FFE79C;
}
.event_show .product-intro {
  padding: 30px 90px;
  background: #ffffff;
}
@media (max-width: 767.98px) {
  .event_show .product-intro {
    padding: 30px 0;
  }
}
.event_show .product-intro img {
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .event_show .product-intro img {
    margin-bottom: 20px;
  }
}
.event_show .product-info .category {
  background: #72ACFF;
  color: #ffffff;
  margin-right: 10px;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 12px;
}
.event_show .product-info .industry {
  background: #ffd249;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 12px;
}
.event_show .product-info .name {
  margin-bottom: 5px;
}
.event_show .product-info .name h1 {
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 0.1em;
  text-align: left;
  margin: 0;
  color: #000000;
}
.event_show .product-info .company {
  color: #C4C4C4;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
}
.event_show .product-info h4 {
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.1em;
}
.event_show .product-info h4 i {
  font-size: 20px;
}
.event_show .product-info .detail {
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  margin-top: 20px;
}
.event_show .product-info .detail h4 {
  margin-bottom: 0;
}
.event_show .product-info .detail .detail-content {
  margin: 5px 0;
}
.event_show .product-info .detail .detail-content .row {
  border-bottom: 1px solid #000000;
}
.event_show .product-info .detail .detail-content .row:last-child {
  border-bottom: none;
}
.event_show .product-info .detail .detail-content .badge {
  text-align: left;
  white-space: normal;
}
.event_show .product-info .share {
  color: #000000;
  font-weight: bold;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.1em;
}
.event_show .product-info .share i {
  font-size: 20px;
}
.event_show .product-info .share .share-btn {
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  background: #000000;
  border-radius: 100%;
}
.event_show .product-info .share .share-btn i {
  font-size: 20px;
}
.event_show .product-info .tag .badge-label {
  background: #DEDEDE;
}
.event_show .register {
  background: #ffffff;
}
.event_show .btn-submit {
  padding: 5px 10px;
  width: 100%;
  background: #ffd249;
  font-size: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}
.event_show .btn-submit:hover {
  background: #FFE79C;
}
.event_show .product-tabs {
  background: #ffffff;
}
.event_show .product-tabs .sticky-top {
  background: #000000;
  padding: 10px 90px;
  z-index: 1020;
}
@media (max-width: 767.98px) {
  .event_show .product-tabs .sticky-top {
    padding: 0;
  }
  .event_show .product-tabs .sticky-top .btn-submit {
    padding: 20px;
    border-radius: 0;
  }
  .event_show .product-tabs .sticky-top .nav-tabs {
    padding: 10px 20px;
  }
  .event_show .product-tabs .sticky-top .nav-tabs .nav-link {
    margin: 0;
  }
}
.event_show .product-tabs .nav-tabs {
  display: flex;
}
.event_show .product-tabs .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 10px 0;
  font-weight: bold;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.1em;
}
@media (max-width: 767.98px) {
  .event_show .product-tabs .nav-tabs .nav-link {
    padding: 5px 0;
    margin-bottom: 10px;
  }
}
.event_show .product-tabs .nav-tabs .nav-link:hover, .event_show .product-tabs .nav-tabs .nav-link.active {
  background: #000000;
  color: #ffffff;
}
.event_show .product-tabs .intro-item {
  padding: 50px 90px;
}
@media (max-width: 767.98px) {
  .event_show .product-tabs .intro-item {
    padding: 60px 0 20px;
  }
}
.event_show .product-tabs .intro-item > h3 {
  margin-bottom: 40px;
  display: inline-flex;
  align-items: baseline;
  position: relative;
  padding-left: 40px;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.1em;
  color: #000000;
}
.event_show .product-tabs .intro-item > h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 65px;
  background: url("../images/hashtag.png") center bottom no-repeat;
  background-size: contain;
}
.event_show .product-tabs .intro-item > h3::after {
  content: "";
  border-bottom: 2px solid #000000;
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100vw;
}
.event_show .product-tabs .intro-item .content {
  padding: 0 100px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1em;
  color: #000000;
}
.event_show .product-tabs .intro-item .content p {
  font-size: 16px;
}
.event_show .product-tabs .intro-item .content ol, .event_show .product-tabs .intro-item .content ul {
  list-style-position: inside;
}
.event_show .product-tabs .intro-item .content li {
  line-height: 30px;
}
@media (max-width: 767.98px) {
  .event_show .product-tabs .intro-item .content {
    padding: 0;
  }
}
.event_show .product-tabs .intro-item .content img {
  border-radius: 8px;
  height: auto !important;
  max-width: 100% !important;
}
.event_show .product-tabs .intro-item .content iframe {
  max-width: 100% !important;
}
.event_show .product-tabs .intro-item .content > * {
  max-width: 100% !important;
}
.event_show .product-tabs .intro-item th {
  width: 30%;
}
.event_show .product-tabs table th {
  font-weight: 500;
  line-height: 20px;
  color: #72ACFF;
}
.event_show .product-tabs #requirement .badge {
  text-align: left;
  white-space: normal;
}
.event_show .sharing h2 {
  text-align: center;
  margin: 50px 0;
}
.event_show .sharing-slides-wrapper {
  position: relative;
}
.event_show .sharing-slides-wrapper .sharing-slides {
  position: static;
}
.event_show .sharing-slides-wrapper .sharing-slides .sharing-item {
  background: #ffffff;
  margin-bottom: 50px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
}
.event_show .sharing-slides-wrapper .sharing-slides .sharing-item .title,
.event_show .sharing-slides-wrapper .sharing-slides .sharing-item .user {
  padding: 10px;
}
.event_show .sharing-slides-wrapper .sharing-slides .sharing-item .title h3 {
  margin-bottom: 0;
}
.event_show .sharing-slides-wrapper .sharing-slides .sharing-item .avatar {
  width: 50px;
}
.event_show .sharing-slides-wrapper .sharing-slides .sharing-item .info {
  padding: 0;
}
.event_show .sharing-slides-wrapper .sharing-slides .swiper-button-next,
.event_show .sharing-slides-wrapper .sharing-slides .swiper-button-prev {
  font-size: 30px;
  font-weight: bolder;
  color: #000000;
}
.event_show .sharing-slides-wrapper .sharing-slides .swiper-button-next {
  right: -50px;
}
.event_show .sharing-slides-wrapper .sharing-slides .swiper-button-prev {
  left: -50px;
}
.event_show #tk-process {
  padding: 60px 0 20px;
}
.event_show #tk-process h2 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .event_show #tk-process h2 {
    font-size: 22px;
  }
}
.event_show #tk-process .tk-chart {
  padding-top: 17px;
}
.event_show #tk-process .tk-chart .tk-row {
  max-width: 200px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .event_show #tk-process .tk-chart .tk-row {
    max-width: none;
    margin: 0 -15px;
  }
}
@media (max-width: 767.98px) {
  .event_show #tk-process .tk-chart .tk-row {
    max-width: 100%;
  }
}
.event_show #tk-process .tk-chart .tk-row .tk-col {
  padding: 0 15px;
  float: left;
  width: 100%;
}
@media (max-width: 767.98px) {
  .event_show #tk-process .tk-chart .tk-row .tk-col {
    padding: 0;
    width: 16.66%;
  }
}
.event_show #tk-process .tk-chart .tk-row .tk-col:nth-of-type(6) .tk-item {
  margin-bottom: 0;
}
.event_show #tk-process .tk-chart .tk-row .tk-col:nth-of-type(6) .tk-item:after {
  display: none;
}
@media (min-width: 992px) {
  .event_show #tk-process .tk-chart .tk-row .tk-col {
    width: 16.666%;
  }
}
.event_show #tk-process .tk-chart .tk-row .tk-col .tk-item {
  border: 2px solid #FF6B39;
  border-radius: 16px;
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .event_show #tk-process .tk-chart .tk-row .tk-col .tk-item {
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .event_show #tk-process .tk-chart .tk-row .tk-col .tk-item {
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    display: block;
  }
}
.event_show #tk-process .tk-chart .tk-row .tk-col .tk-item:after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url(../images/about/icon/triangle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: calc(50% - 16px);
  bottom: -41px;
}
@media (min-width: 992px) {
  .event_show #tk-process .tk-chart .tk-row .tk-col .tk-item:after {
    right: -34px;
    bottom: 25px;
  }
}
@media (max-width: 767.98px) {
  .event_show #tk-process .tk-chart .tk-row .tk-col .tk-item:after {
    width: 24px;
    height: 24px;
    transform: rotate(0);
    top: 4px;
    right: -12px;
  }
}
.event_show #tk-process .tk-chart img {
  display: block;
  width: 44px;
  margin: -17px auto 8px auto;
}
@media (max-width: 767.98px) {
  .event_show #tk-process .tk-chart img {
    width: 30px;
  }
}
.event_show #tk-process .tk-chart h3 {
  color: #000000;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 767.98px) {
  .event_show #tk-process .tk-chart h3 {
    width: 30px;
    height: auto;
    align-items: self-start;
    margin: 0 auto;
  }
}

.event_incompatible h1 {
  color: #ffd249;
}
.event_incompatible .title {
  font-size: 20px;
}
.event_incompatible .more-event {
  margin-top: 50px;
  padding: 50px 0;
  background: #f0f0f0;
}
@media (max-width: 767.98px) {
  .event_incompatible .more-event {
    padding: 20px 0;
  }
}
.event_incompatible .btn-submit {
  padding: 10px;
  width: 200px;
  background: #ffd249;
  border-radius: 0;
  font-size: 24px;
}
.event_incompatible .btn-submit:hover {
  background: #FFE79C;
}
.event_incompatible .detail {
  margin: 0 auto;
}
.event_incompatible .info {
  margin: 100px auto 0;
  font-size: 16px;
}
.event_incompatible .info .title {
  margin-bottom: 20px;
  color: #000000;
}
.event_incompatible .info .content {
  background: #F0F0F0;
  padding: 20px;
  color: #707070;
}
.event_incompatible .info .content .title {
  font-size: 18px;
}
.event_incompatible .info a {
  color: #ffd249;
  text-decoration: underline;
}

.event_register_info .info-title {
  color: #ffd249;
  margin-top: 50px;
}
.event_register_info .info {
  padding: 10px;
  margin-bottom: 50px;
  line-height: 15px;
  border: 2px dashed #ffd249;
}
.event_register_info .info li {
  line-height: 1.2;
  margin-bottom: 5px;
}
.event_register_info .info input[type=checkbox] {
  opacity: 0;
}
.event_register_info .info input[type=checkbox] + label {
  display: inline-block;
  cursor: pointer;
  border-radius: 100%;
  margin: 0;
}
.event_register_info .info input[type=checkbox]:checked + label {
  background-color: #ffd249;
}
.event_register_info .policy {
  margin-top: 30px;
  font-size: 14px;
  line-height: 16px;
}
.event_register_info .policy a {
  color: #FFD249;
}
.event_register_info .policy input[type=checkbox] {
  opacity: 0;
}
.event_register_info .policy input[type=checkbox] + label {
  display: inline-block;
  cursor: pointer;
  border-radius: 100%;
  margin: 0;
}
.event_register_info .policy input[type=checkbox]:checked + label {
  background-color: #ffd249;
}

.event_register_success h1 {
  color: #ffd249;
}
.event_register_success .detail i {
  color: #ffd249;
}
.event_register_success .page_url {
  margin-top: 40px;
}
.event_register_success .page_url i {
  background: #000000;
  font-size: 30px;
  color: #ffffff;
  border-radius: 100%;
  margin: 0 10px;
  padding: 10px;
  width: 50px;
  height: 50px;
}
.event_register_success .more-event {
  margin-top: 50px;
  padding: 50px 0;
  background: #f0f0f0;
}
@media (max-width: 767.98px) {
  .event_register_success .more-event {
    padding: 20px 0;
  }
}

.policy-nav,
.user-nav {
  margin-bottom: 20px;
}
.policy-nav .nav-link,
.user-nav .nav-link {
  margin-bottom: 5px;
  border-radius: 0;
}
@media (max-width: 767.98px) {
  .policy-nav .nav-link,
.user-nav .nav-link {
    padding: 10px;
  }
}
.policy-nav .nav-link:hover, .policy-nav .nav-link.active,
.user-nav .nav-link:hover,
.user-nav .nav-link.active {
  background: transparent;
  color: #585858;
  border-bottom: 5px solid #ffd249;
  margin-bottom: 0;
}
.policy-nav .nav-link:hover:hover, .policy-nav .nav-link.active:hover,
.user-nav .nav-link:hover:hover,
.user-nav .nav-link.active:hover {
  background: transparent;
  color: #585858;
}

.profile-nav .nav-pills .nav-link,
.wishlist-nav .nav-pills .nav-link {
  border-radius: 0;
  background: #f0f0f0;
  color: #585858;
  padding: 5px 20px;
}
.profile-nav .nav-pills .nav-link:not(.nav-fill):not(.nav-justified),
.wishlist-nav .nav-pills .nav-link:not(.nav-fill):not(.nav-justified) {
  margin: 0;
}
.profile-nav .nav-pills .nav-link:hover,
.wishlist-nav .nav-pills .nav-link:hover {
  color: #585858;
}
.profile-nav .nav-pills .nav-link.active,
.wishlist-nav .nav-pills .nav-link.active {
  background: #ffd249;
  color: #585858;
}
.profile-nav .nav-pills .nav-link.active:hover,
.wishlist-nav .nav-pills .nav-link.active:hover {
  background: #ffd249;
  color: #585858;
}

.user-order {
  background: #ffffff;
  padding: 50px 0;
}
@media (max-width: 767.98px) {
  .user-order {
    padding: 20px 0;
  }
}
.user-order .block {
  font-size: 24px;
}
.user-order .block span {
  font-size: 32px;
  font-weight: bold;
  color: red;
}
.user-order .order-header {
  padding: 10px 0;
  border-bottom: 2px solid #b3b3b3;
}
.user-order .order-item {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.user-order .order-item:last-child {
  border-bottom: none;
}
.user-order .order-item .order-state {
  margin-top: 10px;
  padding: 5px 20px;
  text-align: center;
  background: #f0f0f0;
  color: #b3b3b3;
}
.user-order .order-item .order-state.non-selected {
  background: #b3b3b3;
  color: #ffffff;
}
.user-order .order-item .order-state.selected {
  background: #ffd249;
  color: #000000;
  cursor: pointer;
}

.user-user_point_log {
  background: #ffffff;
  padding: 50px 0;
}
@media (max-width: 767.98px) {
  .user-user_point_log {
    padding: 20px 0;
  }
}
.user-user_point_log .user_point_log-total {
  font-size: 16px;
  line-height: 19px;
  border-bottom: 1px solid #CDCDCD;
  margin: 50px 0;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media (max-width: 767.98px) {
  .user-user_point_log .user_point_log-total {
    padding: 20px 0;
  }
}
.user-user_point_log .user_point_log-total span {
  font-size: 48px;
  line-height: 56px;
  color: #000000;
}
.user-user_point_log .user_point_log-header {
  padding: 10px 0;
  border-bottom: 2px solid #b3b3b3;
}
.user-user_point_log .user_point_log-item {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.user-user_point_log .user_point_log-item:last-child {
  border-bottom: none;
}

.user-profile,
.user-setting {
  background: #ffffff;
  padding: 50px 0;
}
@media (max-width: 767.98px) {
  .user-profile,
.user-setting {
    padding: 20px 0;
  }
}
.user-profile label.control-label,
.user-setting label.control-label {
  font-weight: bold;
}
.user-profile label.required:after,
.user-setting label.required:after {
  content: "*";
  margin-left: 5px;
}
.user-profile .intro,
.user-setting .intro {
  margin-bottom: 40px;
}
.user-profile .sub-label,
.user-setting .sub-label {
  font-size: 14px;
  color: #b3b3b3;
  margin-bottom: 10px;
}
.user-profile input[type=text],
.user-profile input[type=email],
.user-profile input[type=password],
.user-profile .select2-container--default .select2-selection,
.user-setting input[type=text],
.user-setting input[type=email],
.user-setting input[type=password],
.user-setting .select2-container--default .select2-selection {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #b3b3b3;
  background: transparent;
}
.user-profile input[type=text]:focus,
.user-profile input[type=email]:focus,
.user-profile input[type=password]:focus,
.user-profile .select2-container--default .select2-selection:focus,
.user-setting input[type=text]:focus,
.user-setting input[type=email]:focus,
.user-setting input[type=password]:focus,
.user-setting .select2-container--default .select2-selection:focus {
  border-bottom-color: #ffd249;
}
.user-profile .radio-group input[type=radio],
.user-profile .radio-group input[type=checkbox],
.user-setting .radio-group input[type=radio],
.user-setting .radio-group input[type=checkbox] {
  opacity: 0;
}
.user-profile .radio-group input[type=radio] + label,
.user-profile .radio-group input[type=checkbox] + label,
.user-setting .radio-group input[type=radio] + label,
.user-setting .radio-group input[type=checkbox] + label {
  display: block;
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}
.user-profile .radio-group input[type=radio]:checked + label,
.user-profile .radio-group input[type=checkbox]:checked + label,
.user-setting .radio-group input[type=radio]:checked + label,
.user-setting .radio-group input[type=checkbox]:checked + label {
  background-color: #ffd249;
}
.user-profile .radio-group .custom-border,
.user-setting .radio-group .custom-border {
  padding: 5px;
  border: 1px solid #ffd249;
  margin-bottom: 5px;
}
.user-profile .radio-group .custom-border .custom-control,
.user-setting .radio-group .custom-border .custom-control {
  margin-bottom: 0;
}
.user-profile label:focus-within,
.user-setting label:focus-within {
  outline: 1px solid orange;
}
.user-profile .btn-skip,
.user-setting .btn-skip {
  color: #b3b3b3;
  background: #f0f0f0;
  width: 200px;
  font-size: 16px;
}

.policy-show {
  padding: 50px 90px;
}

.event_search {
  padding: 50px 90px;
}
@media (max-width: 767.98px) {
  .event_search {
    padding: 20px 0;
  }
}
.event_search .sidebar h4 {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #000000;
}
.event_search .sidebar label {
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0.1em;
  color: #000000;
  margin-right: 20px;
  margin-bottom: 10px;
}
.event_search .sidebar .search-form-collapse-btn {
  color: #000000;
}
.event_search .sidebar .filter-item {
  padding: 5px 10px;
  border-radius: 4px;
  background: #ffd249;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.event_search .sidebar .custom-control-label:before {
  border-color: #000000;
}
.event_search h1 {
  margin-bottom: 40px;
  display: inline-flex;
  align-items: baseline;
  position: relative;
  padding-left: 40px;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.1em;
  color: #000000;
}
.event_search h1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 65px;
  background: url("../images/hashtag.png") center bottom no-repeat;
  background-size: contain;
}
.event_search h1::after {
  content: "";
  border-bottom: 2px solid #000000;
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100vw;
}
.event_search .btn-more {
  background: #000000;
  color: #ffffff;
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.1em;
}
.event_search .btn-more:hover {
  color: #585858;
  border: 1px solid #585858;
}

.tag_show,
.company_event {
  padding: 50px 90px;
}
@media (max-width: 767.98px) {
  .tag_show,
.company_event {
    padding: 20px 0;
  }
}
.tag_show h1,
.company_event h1 {
  margin-bottom: 40px;
  display: inline-flex;
  align-items: baseline;
  position: relative;
  padding-left: 40px;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.1em;
  color: #000000;
}
.tag_show h1::before,
.company_event h1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 65px;
  background: url("../images/hashtag.png") center bottom no-repeat;
  background-size: contain;
}
.tag_show h1::after,
.company_event h1::after {
  content: "";
  border-bottom: 2px solid #000000;
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100vw;
}

.wishlist {
  padding: 50px 90px;
}
@media (max-width: 767.98px) {
  .wishlist {
    padding: 20px 0;
  }
}
.wishlist .wishlist-header {
  padding: 10px 0;
  border-bottom: 2px solid #b3b3b3;
}
.wishlist .wishlist-item {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.wishlist .wishlist-item:last-child {
  border-bottom: none;
}
.wishlist .wishlist-item .destroy {
  position: absolute;
  right: 10px;
  top: 50px;
}

.quiz-btn {
  cursor: pointer;
}
.quiz-btn i {
  color: #707070;
  border-radius: 100%;
}
.quiz-btn.done i {
  background: #ffd249;
}

.industry-modal .modal-header {
  background-color: #ffd249;
}
.industry-modal .modal-header h5 {
  color: #000000;
  font-weight: bolder;
}

.password-reset {
  padding: 50px 0;
}

.faq-index {
  padding: 50px 90px;
}
.faq-index .faq-nav > ul {
  margin-bottom: 30px;
}
.faq-index .faq-nav .faq-category {
  border-bottom: 2px solid #707070;
  padding: 10px 0;
}
.faq-index .faq-nav .faq {
  border-bottom: 1px solid #707070;
}
.faq-index .faq-nav .nav-link {
  padding: 10px 0;
}
.faq-index .faq-content {
  margin-bottom: 50px;
}

#star-control > .fa-star {
  cursor: pointer;
}

.select2-container .select2-selection--single {
  height: calc(1.54em + 0.876rem);
}
