@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css");
:root {
  --primary: #e886ff;
  --primary_hover: #dc46ff ;
}

body {
  font-family: "Public Sans", sans-serif;
  font-size: 14px;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  transition: all 0.3s;
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f5f7fc;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
}

.header {
  padding: 15px 30px;
}

.form-control:focus {
  border-color: unset;
  box-shadow: unset;
  border-color: #dbdbdb;
}

.custom-input {
  color: #2a2d34;
  background: #f5f7fc;
  line-height: 24px;
  font-size: 14px;
  height: 44px;
  width: 100%;
  padding: 12px 36px;
  outline: none;
  border: 1px solid transparent;
  border-radius: 4px;
  caret-color: #2dc275;
  box-shadow: none;
}

.form-with-icon {
  position: relative;
}
.form-with-icon .icon {
  position: absolute;
  width: 17px;
  top: 13px;
  left: 10px;
}

.ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn-primary {
  background: var(--primary);
}
.btn-primary:hover {
  background: var(--primary_hover);
}

header {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 80px;
  inset: 0;
  z-index: 99;
  display: flex;
  align-items: center;
}

.sidebar-left {
  width: 270px;
  position: fixed;
  top: 76px;
  height: calc(100vh - 76px);
  overflow: hidden;
}
.sidebar-left .list-category {
  list-style: none;
  padding: 16px 0px;
  margin: 0;
}
.sidebar-left .list-category li {
  width: 100%;
  display: flex;
  padding-left: 16px;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
}
.sidebar-left .list-category li a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 4px 8px;
  color: #2a2d34;
}
.sidebar-left .list-category li a img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  margin-right: 8px;
}
.sidebar-left .list-category li a:hover {
  color: var(--primary);
}
.sidebar-left .list-category li.active {
  font-weight: 600;
  background: white;
}
.sidebar-left .memu-sidebar {
  padding: 0px 32px 16px 0px;
  display: flex;
  flex-direction: column;
}
.sidebar-left .memu-sidebar li {
  width: 100%;
  display: flex;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  margin-left: 16px;
  padding-left: 0px;
  border-bottom: 1px solid #e6ebf5;
  background: transparent;
  font-weight: normal;
}
.sidebar-left .memu-sidebar li a {
  width: 100%;
  height: 100%;
  padding: 6px 8px;
  color: #8f8f8f;
  display: flex;
  align-items: center;
  padding-right: 0px;
  gap: 10px;
  font-weight: 300;
}
.sidebar-left .memu-sidebar li a svg {
  width: 15px;
  color: #898989;
}
.sidebar-left .memu-sidebar li a:hover {
  color: #000;
}
.sidebar-left.sidebar-detail {
  display: none;
}

.main-category {
    margin-top: 90px;
    margin-bottom: 24px;
}

.main-content {
  margin-top: 90px;
  margin-bottom: 24px;
}
.main-content .box-card {
  margin: 0px auto;
  display: flex;
  min-height: 100%;
  padding: 16px;
  flex-direction: column;
  background: white;
  border-radius: 4px;
  min-height: calc(100vh);
}

.heading-section {
  display: block;
  text-align: center;
  padding-top: 50px;
  margin: 24px 0px 35px;
}
.heading-section .line-heading {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
}
.heading-section .line-heading::before, .heading-section .line-heading::after {
  position: absolute;
  height: 2px;
  background: #2a2d34;
  border-radius: 80px;
  bottom: -2px;
  content: "";
  display: block;
  width: 40px;
}
.heading-section .line-heading::before {
  right: -48px;
}
.heading-section .line-heading::after {
  left: -48px;
}
.heading-section .line-heading img {
  align-self: flex-end;
  margin: 0px 8px;
}
.heading-section .fIfwub {
  width: 100%;
  position: absolute;
  height: 2px;
  background: #2a2d34;
  border-radius: 80px;
  bottom: -2px;
}
.heading-section .title {
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 40px;
  color: var(--primary);
  margin-bottom: 8px;
  align-self: flex-end;
  margin-right: -18px;
}

.list-item-product {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.list-item-product.list-fluid .item-product {
  width: calc(100% / 4 - 11.3px);
  max-width: unset !important;
}

.accordion-button::after {
  transform: rotate(-180deg) !important;
}

.accordion-button.collapsed::after {
  transform: rotate(0deg) !important;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
}

.accordion-button::after {
  position: absolute;
  right: 0;
}

.item-product {
  background: #fff;
  max-width: 296px;
  width: 100%;
}
.item-product a {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: start;
  cursor: pointer;
  color: #2a2d34;
  transition: all 0.3s;
}
.item-product .thumbnail {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 8px;
  height: 120px;
}
.item-product .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  align-self: center;
  transition: all 0.5s;
  transform: scale(1);
}
@media (min-width: 1366px) {
  .item-product .thumbnail {
    height: 150px;
  }
}
.item-product .title-product {
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 0px;
}
.item-product .date-product {
  font-size: 14px;
  line-height: 20px;
  margin-top: 4px;
}
.item-product .made-product {
  font-size: 14px;
  line-height: 20px;
  color: #828ba0;
  margin-top: 4px;
}
.item-product:hover .title-product {
  color: var(--primary);
  transition: all 0.3s;
}
.item-product:hover .thumbnail img {
  transform: scale(1.03);
  transition: all 0.5s;
}

.view-more {
  width: 100%;
  text-align: center;
  margin: 50px 0px 0px;
  display: inline-flex;
  align-items: center;
  position: relative;
  -webkit-box-pack: center;
}
.view-more::before, .view-more::after {
  content: "";
  display: block;
  background: #e6ebf5;
  height: 2px;
  width: 40%;
}
.view-more::before {
  margin-right: 50px;
}
.view-more::after {
  margin-left: 50px;
}

.btn-main {
  max-width: 178px;
  margin: auto;
  text-transform: capitalize;
  border-radius: 20px;
  height: 40px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  min-width: 88px;
  padding: 0px 15px;
  border: none;
}

.slide-banner-top img {
  width: 100%;
}
.slide-banner-top .carousel-indicators {
  bottom: -50px;
}
.slide-banner-top .carousel-indicators [data-bs-target] {
  background-color: #afafaf;
}
.slide-banner-top .carousel-indicators .active {
  background-color: var(--primary);
}

/*.banner-detail {
  margin-top: 76px;
}*/
.banner-detail img {
  width: 100%;
}

.infomation-event-top {
  background: #fff;
  padding: 40px 0 20px;
}
.infomation-event-top .row {
  align-items: center;
}
.infomation-event-top .calendar-image {
  width: 90px;
  z-index: 7;
  position: relative;
  border-radius: 2px;
  border: 1px solid #ccc;
  border-bottom: 5px solid #ccc;
  text-align: center;
  max-height: 115px;
}
.infomation-event-top .calendar-image .month {
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  font-size: 12px;
  background-color: #eb1212;
  margin: 0;
}
.infomation-event-top .calendar-image .date {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 42px;
  font-weight: 700;
  color: #666;
  margin: 0;
}
.infomation-event-top .calendar-image .day {
  margin: 0;
  color: #666;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

.heading-infomation-detail {
  display: flex;
  gap: 20px;
}
.heading-infomation-detail .title-event {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3em;
  color: #333;
  margin: 0 0 15px;
}
.heading-infomation-detail .title-info {
  width: 88%;
}
.heading-infomation-detail .list-info li {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  font-size: 15px;
}
.heading-infomation-detail .list-info li .icon svg {
  width: 15px;
  color: #939393;
}
.heading-infomation-detail .list-info li p {
  margin: 0;
}
@media (max-width: 768px) {
  .heading-infomation-detail .title-event {
    font-size: 18px;
  }
    .list-ticket-event li .price-ticket {
        text-align: left !important;
        margin-top: 10px;
    }
}

.btn-buynow {
  background-color: #eb1212;
  border: solid 1px #d0021b;
  color: #fff;
  width: 100%;
  border-radius: 0;
  font-weight: 600;
}
.btn-buynow:hover {
  color: #fff;
  background-color: #f14141;
}

.share-infomation {
  margin: 15px 0;
}
.share-infomation a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #333;
  font-weight: 600;
  margin-right: 10px;
}
.share-infomation a svg {
  font-size: 35px;
  color: #3285ff;
}
.share-infomation a.coppy-urlink {
  width: 35px;
  height: 35px;
  background: #ff5722b3;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.share-infomation a.coppy-urlink svg {
  width: 15px;
  color: #fff;
}

.nav-menu-detail {
  background: #fff;
  border-top: 1px solid #e7e7e7;
}
.nav-menu-detail ul {
  display: flex;
  align-items: center;
  gap: 50px;
}
.nav-menu-detail ul li a {
  display: block;
  color: #333;
  border-bottom: 3px solid transparent;
  font-size: 18px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 400;
}

.intro-detail {
  margin-top: 20px;
}
.intro-detail .card {
  margin-bottom: 20px;
}
.intro-detail .card .card-title {
  padding: 15px;
  border-bottom: 1px solid #d9d9da;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

p {
  margin-bottom: 10px;
}

.list-ticket-event li:last-child {
  border-bottom: 0;
}
.list-ticket-event li .item-ticket {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dfdfdf;
  padding: 10px 45px 10px 10px;
  cursor: pointer;
}
.list-ticket-event li .card-body-ticket {
  padding: 15px 0;
  border: none;
}
.list-ticket-event li .heading-ticket {
  display: flex;
  gap: 10px;
}
.list-ticket-event li .heading-ticket .icon {
  position: relative;
}
.list-ticket-event li .heading-ticket .icon .label-ticket {
  position: absolute;
  top: -18px;
  font-size: 12px;
  font-weight: 800;
  left: 0;
}
.list-ticket-event li .heading-ticket .icon .label-ticket.vip {
  color: #0a58ca;
}
.list-ticket-event li .heading-ticket .icon .label-ticket.vip.plus {
  color: #d0021b;
}
.list-ticket-event li .heading-ticket .icon svg {
  width: 25px;
  margin-right: 0;
}
.list-ticket-event li .heading-ticket .text {
  max-width: 95%;
  font-size: 16px;
  font-weight: 500;
}
.list-ticket-event li .heading-ticket .ticket-done {
  color: #e3292c;
  border: solid 1px #d0021b;
  font-weight: 700;
  padding: 3px 5px;
  border-radius: 2px;
  font-size: 12px;
}
.list-ticket-event li .price-ticket {
  text-align: right;
}
.list-ticket-event li .price-ticket-sale {
  font-weight: 600;
  color: #000;
  font-size: 16px;
}
.list-ticket-event li .price-ticket-main {
  text-decoration: line-through;
  color: #999;
}
.list-ticket-event li.closed * {
  opacity: 0.6;
}
.list-ticket-event li.closed .item-ticket {
  opacity: 1;
}
.list-ticket-event li.closed .heading-ticket {
  opacity: 1;
}
.list-ticket-event li.closed .heading-ticket .ticket-done {
  opacity: 1;
}

.img-made-create img {
  width: 100%;
}

.body-made-create .title--sub {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 10px;
}

.box-info-fixed {
  max-width: 370px;
}
/*.box-info-fixed.fixed {
  position: fixed;
  top: 90px;
  z-index: 1;
  max-width: 370px;
}*/
.box-info-fixed .card-title {
  line-height: 1.4;
}
.box-info-fixed .list-info li {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  font-size: 15px;
}
.box-info-fixed .list-info li .icon svg {
  width: 15px;
  color: #939393;
}
.box-info-fixed .list-info li p {
  margin: 0;
}
.box-info-fixed .card-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  background: #fff;
}
.box-info-fixed .card-footer svg {
  width: 18px;
}
.box-info-fixed .btn-buynow {
  border: solid 1px #d2d2d2;
}
@media (max-width: 1200px) {
  .box-info-fixed.fixed {
    max-width: 300px;
  }
}

.main-checkout {
  margin-top: 90px;
}

.body-checkout {
  background: #fff;
  width: 100%;
  max-width: 680px;
  margin: auto;
  margin-bottom: 60px;
}
.body-checkout--banner {
  margin-bottom: 20px;
}
.body-checkout--banner img {
  max-width: 100%;
}
.body-checkout--info {
  padding: 20px;
}
.body-checkout--form {
  padding: 20px;
  padding-bottom: 40px;
}
.body-checkout--form .table {
  vertical-align: middle;
}
.body-checkout--form .table .table-active {
  background: #ffffff;
}
.body-checkout--form .table td, .body-checkout--form .table th {
  padding: 15px;
}
.body-checkout--form .total-price {
  font-size: 16px;
  font-weight: 600;
}
.body-checkout--form .form-control {
  font-size: 14px;
  min-height: 50px;
  background: #f3f3f3;
  border-color: transparent;
  padding: 10px 20px;
}

.sbs--border {
  display: flex;
  border: 1px solid #d1d5da;
  border-radius: 0;
  width: 100%;
  max-width: 550px;
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
}

.sbs--border li {
  flex: 1;
}

.sbs--border li:last-of-type .step::before,
.sbs--border li:last-of-type .step::after {
  display: none;
}

.sbs--border li.finished > .step .indicator {
  background-color: #e886ff;
  border-color: #e46fff;
  color: white;
}

.sbs--border li.finished > .step .description {
  color: #df55ff;
  font-weight: 800;
}

.sbs--border li.active > .step .indicator {
  border-color: #e886ff;
  color: #e886ff;
}

.sbs--border li.active > .step .description {
  color: #e886ff;
}

.sbs--border li .step {
  padding: 8px 1rem;
  display: flex;
  align-items: center;
  position: relative;
}

.sbs--border li .step::before, .sbs--border li .step::after {
  content: "";
  height: 30px;
  width: 1px;
  background-color: #d1d5da;
  position: absolute;
  right: 0;
  top: 50%;
}

.sbs--border li .step::before {
  transform-origin: center bottom;
  transform: translateY(-100%) rotate(-25deg);
}

.sbs--border li .step::after {
  transform-origin: center top;
  transform: rotate(25deg);
}

.sbs--border li .step .indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  margin-right: 1rem;
  border: 2px solid #d1d5da;
  color: #8a94a1;
}

.sbs--border li .step .description {
  font-weight: 600;
  font-size: 0.875rem;
  color: #8a94a1;
}

.sbs--border-alt {
  display: flex;
  border: 1px solid #d1d5da;
  border-radius: 0.5rem;
}

.sbs--border-alt li {
  flex: 1;
}

.sbs--border-alt li:last-of-type .step::before,
.sbs--border-alt li:last-of-type .step::after {
  display: none;
}

.sbs--border-alt li.finished > .step .indicator {
  background-color: #257f3e;
  border-color: #257f3e;
  color: white;
}

.sbs--border-alt li.finished > .step .description {
  color: #2f363d;
}

.sbs--border-alt li.active > .step .indicator {
  border-color: #257f3e;
  color: #257f3e;
}

.sbs--border-alt li.active > .step .description {
  color: #1f6c35;
}

.sbs--border-alt li.active > .step .line {
  background-color: #2b9348;
}

.sbs--border-alt li .step {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
}

.sbs--border-alt li .step::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #d1d5da;
  position: absolute;
  right: 0;
}

.sbs--border-alt li .step::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: white;
  position: absolute;
  right: 0;
  top: 50%;
  border-top: 1px solid #d1d5da;
  border-right: 1px solid #d1d5da;
  transform: translate(50%, -50%) rotate(45deg);
  z-index: 1;
}

.sbs--border-alt li .step .indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 1rem;
  border: 2px solid #d1d5da;
  color: #8a94a1;
}

.sbs--border-alt li .step .description {
  font-weight: bold;
  font-size: 0.875rem;
  color: #8a94a1;
  display: flex;
  flex-direction: column;
}

.sbs--border-alt li .step .description span:first-of-type {
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.sbs--border-alt li .step .description span:last-of-type {
  color: #b5bbc3;
}

.sbs--border-alt li .step .line {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: transparent;
  bottom: 0;
  left: 0;
}

.btn-ckeckout {
  width: 100%;
  max-width: 300px;
  text-align: center;
  background: var(--primary);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  margin: auto;
  border-bottom: 4px solid #df57ff;
  font-size: 18px;
}
.btn-ckeckout:hover {
  background: var(--primary_hover);
  color: #fff;
}

.custom-input-number .center {
  width: 150px;
  margin: 40px auto;
}
.custom-input-number .mayus {
  width: 500px;
  display: block;
  margin: 0 auto;
}
.custom-input-number .mayus p {
  font-size: 12px;
}
.custom-input-number article p::first-letter {
  float: left;
  font-size: 300%;
  margin: 0 10px 10px 0;
}
.custom-input-number .form-control {
  min-height: unset;
  padding: 5px 10px;
  text-align: center;
  border-color: #e5e5e5;
}
.custom-input-number .btn {
  border-color: #e5e5e5;
  border-radius: 0;
  font-size: 13px;
}
.custom-input-number .btn:focus {
  border-color: #e5e5e5;
}
.custom-input-number .btn.disabled, .custom-input-number .btn:disabled, .custom-input-number fieldset:disabled .btn {
  background: #e5e5e5;
}

.ticket-done {
  color: #e3292c;
  border: solid 1px #d0021b;
  font-weight: 700;
  padding: 3px 5px;
  border-radius: 2px;
  font-size: 12px;
}

.text-right {
  text-align: right !important;
}

.payment-methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-methods:after {
  content: "";
  clear: both;
}

.payment-method {
  box-sizing: border-box;
  height: 70px;
  position: relative;
  width: 70px;
  display: inline-block;
  align-items: center;
  justify-content: center;
}

.payment-method label {
  cursor: pointer;
  display: inline-flex;
  width: 100%;
  height: 100%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #ccc;
}
.payment-method label img {
  width: 100%;
  height: 100%;
}

.payment-methods input:focus + label {
  border: 2px solid #e886ff;
}

.payment-methods input:checked + label {
  border: 2px solid #e886ff;
}

.payment-methods input {
  position: absolute;
  opacity: 0;
}

.payment-methods input:checked + label:after {
  content: url('data:image/svg+xml; utf8, <svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>');
  top: -5px;
  display: inline-block;
  height: 20px;
  position: absolute;
  right: -10px;
  width: 20px;
  color: #e886ff;
}

@-moz-document url-prefix() {
  .payment-methods input:checked + label:after {
    bottom: 0;
    right: 0;
    background-color: #21b4d0;
  }
}
.payment-content {
  margin: 20px 0;
}

.list-vnpay {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.list-vnpay li {
  flex: 0 0 16.6%;
  padding: 5px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
}
.list-vnpay li label {
  color: #434a54;
  font-weight: 500;
  padding: 5px;
  height: 3.5em;
  border: 1px solid #dcdcdf;
  border-radius: 5px;
  line-height: 3.5em;
  display: block;
  position: relative;
  margin-bottom: 0;
  transition: all 0.15s ease;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.list-vnpay li label input {
  border: none;
  background: transparent;
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  font-size: 0;
  z-index: 2;
  left: 0;
  outline: 0 !important;
}
.list-vnpay li label.active {
  border-color: #2188c9;
}
.list-vnpay li img {
  text-align: center;
  aspect-ratio: 16/9;
  object-fit: contain;
}

.listBankATM {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.listBankATM li {
  margin-bottom: 30px;
  font-size: 14px;
}
.listBankATM li .img-bank {
  max-width: 100px;
  margin-bottom: 15px;
}
.listBankATM li p {
  font-size: 14px;
  margin-bottom: 10px;
}

.receive-tickets .input__field {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}
.receive-tickets .input__content:after, .receive-tickets .input__content:before {
  content: "";
  position: absolute;
  display: inline-flex;
  margin: auto;
  left: 0.74em;
  top: 0;
  bottom: 0;
  width: 1.313em;
  height: 1.313em;
  transition-property: transform, background, border;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
}
.receive-tickets .input {
  display: flex;
  margin: 0 0 0.8rem;
  min-height: 1.313em;
  cursor: pointer;
}
.receive-tickets .input__field:focus + .input__content:before {
  border-color: var(--primary);
}
.receive-tickets .input__field[disabled] + .input__content {
  opacity: 0.5;
  background: #f9fafb;
  cursor: default;
}
.receive-tickets .input__field:hover + .input__content:before {
  border-color: var(--primary);
}
.receive-tickets .input__field:active + .input__content:before {
  border-color: var(--primary);
}
.receive-tickets .input__field:active + .input__content:after {
  transform: scale(0.75);
}
.receive-tickets .input__field:checked:active + .input__content:before {
  background-color: var(--primary);
}
.receive-tickets .input__field:checked + .input__content {
  color: #000;
  border-color: var(--primary);
}
.receive-tickets .input__field:checked + .input__content .input__price {
  color: var(--primary);
}
.receive-tickets .input__field:checked + .input__content:before {
  background-color: var(--primary);
  border-color: transparent;
}
.receive-tickets .input__field:checked + .input__content:after {
  transform: scale(0.4);
}
.receive-tickets .input:hover .input__content, .receive-tickets .input:focus .input__content {
  background: #f9fafb;
}
.receive-tickets .input__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-grow: 1;
  padding-left: 2em;
  line-height: 1;
  padding: 0.74em 1.4em 0.74em 3em;
  background: #fff;
  border: 1px solid #c1c7cd;
  border-radius: 8px;
}
.receive-tickets .input__content:before {
  background-color: #b8cad3;
  border: 2px solid #b8cad3;
}
.receive-tickets .input__content:after {
  background-color: #fff;
  transform: scale(0.85);
}
.receive-tickets .input__text {
  margin-right: 1.4em;
}
.receive-tickets .input__title {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.receive-tickets .input__price {
  color: #40484f;
  margin-left: auto;
}
.receive-tickets .input__desc {
  display: block;
  margin-top: 0.36em;
  font-size: 14px;
}

.info-order {
  background: whitesmoke;
  padding: 10px 15px;
}

.success-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 30px 30px 30px;
  text-align: center;
}
.success-payment a {
  color: var(--primary);
}
.success-payment .title {
  text-align: center;
  color: #7ac142;
  font-size: 20px;
  font-weight: 800;
}
.success-payment .checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.success-payment .checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 8% auto 40px;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.success-payment .checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 150px #7ac142;
  }
}

.header-category {
  height: 250px;
  background-image: url("../images/banner-category.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.header-category::after {
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  z-index: 1;
  background: #0000009e;
}
.header-category--content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 30px;
  position: relative;
  z-index: 2;
  flex-direction: column;
}
.header-category--content .heading {
  color: #fff;
  font-weight: 800;
  margin-bottom: 30px;
}
.header-category--content .box-search-category {
  width: 100%;
  max-width: 600px;
}
.header-category--content .box-search-category .custom-input {
  height: 60px;
  padding: 12px 50px;
  background: #fff;
}
.header-category--content .box-search-category .form-with-icon .icon {
  position: absolute;
  width: 20px;
  top: 20px;
  left: 20px;
}

.nav-filter {
  background: #fff;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.nav-filter .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered {
  flex-wrap: nowrap;
}
.nav-filter .select2-container {
  overflow: hidden;
}

.custome-select .select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  height: 40px;
  border: none;
  background-color: transparent;
  width: 100%;
  padding-left: 34px;
}
.custome-select .select:focus-visible {
  outline: unset;
}

.filter-selector {
  border-bottom: 0;
  border-left: 1px solid #eee;
  position: relative;
  padding: 0;
}

.cs1-inp-group {
  border: 3px solid #eee;
  border-radius: 3px;
}

.custome-select {
  position: relative;
  height: 100%;
}
.custome-select .icon {
  color: #ccc;
  position: absolute;
  top: 14px;
  left: 10px;
  z-index: 2;
  font-size: 16px;
}
.custome-select .fa-caret-down {
  color: #ccc;
  position: absolute;
  top: 14px;
  right: 10px;
  z-index: 2;
  font-size: 16px;
}

.select2-container--bootstrap-5 .select2-selection {
  border: none;
  font-size: 15px;
  height: 100%;
  padding: 0.5rem 2.3rem;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  position: absolute;
  top: 11px;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection, .select2-container--bootstrap-5.select2-container--open .select2-selection,
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
  box-shadow: unset;
}

.select2-container--bootstrap-5 .select2-dropdown,
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field {
  border-color: #dddddd !important;
}

.select2-container--bootstrap-5 .select2-selection--single {
  background-image: unset;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  font-size: 13px;
  margin-bottom: 0;
  padding: 2px;
  min-width: 95px;
  text-wrap: nowrap;
  overflow: hidden;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
  width: 0.55rem;
  height: 0.55rem;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-search {
  position: absolute !important;
  top: 10px;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  font-size: 14px;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
  color: #fff;
  background-color: #e886ff;
}

.select2-container .select2-selection--single {
  height: 43px !important;
}

.select2-container {
  height: 100%;
}
.select2-container .selection {
  height: 100%;
  display: block;
}

.list-item-event {
  padding: 2rem 0;
}
.list-item-event .list-item-product.list-fluid .item-product {
  padding: 15px;
  border-radius: 10px;
}

.list-search-data {
  position: relative;
  width: 100%;
  bottom: 3px;
  background: #ffffff;
  z-index: 10;
  min-height: 200px;
  max-height: 400px;
  overflow: hidden;
  overflow-y: auto;
  box-shadow: 0px 0px 15px -5px #b1b1b1;
  border: 1px solid #dedede;
  border-top: 0;
}
.list-search-data li {
  border-bottom: 1px dashed #dedede;
}
.list-search-data li a {
  color: #000;
  display: block;
  padding: 20px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}
.list-search-data li a:hover {
  background: #efefef;
}

footer ul {
  margin: 0px;
  padding: 0px;
}
footer .footer-section {
    background: #6e0071;
    position: relative;
    position: relative;
    z-index: 1;
}
footer .footer-cta {
  border-bottom: 1px solid #e886ff1f;
}
footer .single-cta i {
  color: #e886ff;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
footer .cta-text {
  padding-left: 15px;
  display: inline-block;
}
footer .cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
footer .cta-text span {
    color: #f3c1ff;
    font-size: 15px;
}
#footer a{
    color: #fff
}
footer .footer-content {
    position: relative;
    z-index: 2;
}
footer .footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
footer .footer-logo img {
  max-width: 150px;
  /*filter: brightness(0) invert(1);*/
}
footer .footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #fff;
  line-height: 28px;
}
footer .footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
footer .footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
footer .facebook-bg {
  background: #3B5998;
}
footer .twitter-bg {
  background: #55ACEE;
}
footer .google-bg {
  background: #eb1212;
}
footer .footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
footer .footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #e886ff;
}
footer .footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
footer .footer-widget ul li a:hover {
  color: #e886ff;
}
footer .footer-widget ul li a {
  color: #f3c1ff;
  text-transform: capitalize;
}
footer .subscribe-form {
  position: relative;
  overflow: hidden;
}
footer .subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #e886ff3d;
  border: 1px solid #e886ff;
  color: #fff;
}
footer .subscribe-form button {
  position: absolute;
  right: 0;
  background: #e886ff;
  padding: 13px 20px;
  border: 1px solid #e886ff;
  top: 0;
}
footer .subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
footer .copyright-area {
  background: #3c073d;
  padding: 25px 0;
}
footer .copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}
footer .copyright-text p a {
  color: #e886ff;
}
footer .footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
footer .footer-menu li:hover a {
  color: #e886ff;
}
footer .footer-menu li a {
  font-size: 14px;
  color: #878787;
}
footer input:focus-visible {
  outline: unset !important;
}

.btn-menu-mobile {
  display: none;
}
.btn-menu-mobile svg {
  width: 25px;
}
.btn-menu-mobile:focus {
  border: none;
}

.box-banner-card {
  padding: 15px;
  background: #fff;
  margin-top: 20px;
}

@media (max-width: 1500px) {
  .view-more::before, .view-more::after {
    width: 35%;
  }
}
@media (max-width: 1100px) {
  .list-item-product.list-fluid .item-product {
    width: calc(33.33% - 11.3px);
  }

  .sbs--border {
    position: unset;
    margin-bottom: 30px;
  }
}
@media (max-width: 998px) {
  .item-product .title-product {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 890px) {
  .list-item-product.list-fluid .item-product {
    width: calc(50% - 11.3px);
  }

  .btn-main {
    font-size: 14px;
  }

  .view-more::before, .view-more::after {
    width: 15%;
  }

  .heading-section .title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
    .box-category-mobile {
        margin: 0;
    }
    .box-category-mobile li:nth-child(2n){
        display: inline-flex;
        margin-left: auto;
    }
    .heading-section {
        margin: 10px 0px 35px;
    }
    .nav-menu-detail ul li {
        width: calc(100% / 3)
    }
    .content-post iframe {
        width: 100% !important;
        height: auto !important;
    }
	.content-post img {
        width: 100% !important;
        height: auto !important;
    }
	.content-post img[width="16"] {
        width: auto !important;
        height: auto !important;
    }

    .search-header {
        display: none;
    }

  .header {
    padding: 15px 0px;
  }

  nav.sidebar-left {
    position: fixed;
    background: #fff;
    width: 0px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: width 0.2s !important;
  }
  nav.sidebar-left.open {
    opacity: 1;
    visibility: visible;
    width: 100%;
    transition: width 0.2s !important;
  }
  nav.sidebar-left .list-category {
    max-height: 60vh;
    overflow: hidden;
    overflow-y: auto;
    padding-bottom: 30px;
  }
  nav.sidebar-left.sidebar-detail {
    display: block;
  }

  .main-content {
    margin-left: 0;
  }

  .item-product .thumbnail {
    height: 90px;
  }

  .btn-menu-mobile {
    display: block;
    padding: 0;
    padding: 10px;
  }
  .btn-menu-mobile #nav-icon2 {
    width: 28px;
    height: 28px;
    position: relative;
    margin: 0;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
  }
  .btn-menu-mobile #nav-icon2 span {
    display: block;
    position: absolute;
    height: 9px;
    width: 100%;
    background: #838383;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  .btn-menu-mobile #nav-icon2 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 50%;
    background: #838383;
    opacity: 1;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  .btn-menu-mobile #nav-icon2 span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
  }
  .btn-menu-mobile #nav-icon2 span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px;
  }
  .btn-menu-mobile #nav-icon2 span:nth-child(1), .btn-menu-mobile #nav-icon2 span:nth-child(2) {
    top: 0px;
  }
  .btn-menu-mobile #nav-icon2 span:nth-child(3), .btn-menu-mobile #nav-icon2 span:nth-child(4) {
    top: 9px;
  }
  .btn-menu-mobile #nav-icon2 span:nth-child(5), .btn-menu-mobile #nav-icon2 span:nth-child(6) {
    top: 18px;
  }
  .btn-menu-mobile #nav-icon2.open span:nth-child(1), .btn-menu-mobile #nav-icon2.open span:nth-child(6) {
    transform: rotate(45deg);
  }
  .btn-menu-mobile #nav-icon2.open span:nth-child(2), .btn-menu-mobile #nav-icon2.open span:nth-child(5) {
    transform: rotate(-45deg);
  }
  .btn-menu-mobile #nav-icon2.open span:nth-child(1) {
    left: 5px;
    top: 7px;
  }
  .btn-menu-mobile #nav-icon2.open span:nth-child(2) {
    left: calc(50% - 5px);
    top: 7px;
  }
  .btn-menu-mobile #nav-icon2.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
  }
  .btn-menu-mobile #nav-icon2.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
  }
  .btn-menu-mobile #nav-icon2.open span:nth-child(5) {
    left: 5px;
    top: 11px;
  }
  .btn-menu-mobile #nav-icon2.open span:nth-child(6) {
    left: calc(50% - 5px);
    top: 11px;
  }
  .btn-menu-mobile svg {
    color: dimgrey;
  }

  .heading-section {
    padding-top: 0;
  }

  .box-banner-card {
    padding: 0;
    background: #fff;
    margin-bottom: 60px;
  }

  .sbs--border li .step .indicator {
    width: 37px;
    height: 30px;
    margin-right: 5px;
    border: 1px solid #d1d5da;
  }

  .sbs--border li .step .description {
    font-size: 12px;
  }

  .sbs--border li .step {
    padding: 5px 8px;
    width: 90%;
  }

  .sbs--border li .step .description {
    font-size: 12px;
    display: inline-block;
    width: 65%;
    line-height: 1.1;
  }

  .sbs--border li .step::before, .sbs--border li .step::after {
    height: 22px;
  }

  .body-checkout--form {
    padding: 15px;
  }

  .sbs--border li.finished > .step .indicator {
    width: 30px;
    height: 28px;
  }

  .body-checkout--form .table td, .body-checkout--form .table th {
    padding: 8px;
  }

  .body-checkout--form .table {
    font-size: 13px;
  }

  .main-checkout {
    margin-top: 80px;
  }

  .list-vnpay li {
    flex: 0 0 25%;
  }

  .payment-method {
    height: 55px;
    width: 55px;
  }

  .success-payment {
    padding: 0 20px 30px 20px;
  }

  .footer-cta {
    padding: 40px 0 20px !important;
  }
  .footer-cta .col-mb {
    margin-bottom: 20px;
  }
  .footer-cta .col-mb h4 {
    font-size: 16px;
  }

  .footer-content {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .footer-widget {
    margin-bottom: 20px;
  }

  .order-mb-1 {
    order: 1;
  }
}
.content-post {
  /*max-height: 350px;*/
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}
/*.content-post::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  z-index: 1;
  width: 100%;
  background: white;
  box-shadow: 0px 0px 100px 130px #ffff;
}*/
.content-post .btn-view-more {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2;
  width: 145px;
  border: none;
  margin: auto;
  background: transparent;
  font-size: 15px;
  color: #818181;
}
.content-post .btn-view-more:hover {
  color: #000;
}
.content-post.show {
  max-height: unset;
}
.content-post.show::after {
  box-shadow: unset;
}
.content-post.show .btn-view-more {
  bottom: 0;
}

@media (max-width: 767px) {
  .block-buynow {
    margin-top: 20px;
  }

  .share-infomation {
    text-align: right;
  }

  .box-info-fixed {
    display: none;
  }

  .box-info-fixed.fixed {
    display: none;
    max-width: 100%;
    width: 100%;
    left: 0;
    bottom: -22px;
    top: unset;
  }
  .box-info-fixed.fixed .card-body {
    padding-top: 8px;
    padding-bottom: 0;
  }

  .intro-detail .card .card-title {
    font-size: 14px;
    margin-bottom: 0;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  .width-table-custom {
    width: 120px !important;
  }

  .sbs--border {
    margin: 50px 0;
  }

  .body-checkout--info {
    padding: 15px;
  }
}
@media (max-width: 500px) {
  .list-item-product.list-fluid .item-product {
    width: calc(50% - 7.5px);
  }

  .list-item-product {
    gap: 5px;
  }

  .heading-infomation-detail .title-info {
    width: 100%;
  }

  .infomation-event-top .calendar-image {
    display: none;
  }

  .heading-infomation-detail .title-event {
    font-size: 16px;
  }

  .list-info li {
    font-size: 14px;
  }

  .nav-menu-detail ul li a {
    font-size: 14px;
    font-weight: 700;
  }

  .nav-menu-detail ul {
    gap: 15px;
  }

  .img-made-create {
    margin-bottom: 15px;
  }

  .list-ticket-event li .item-ticket {
    flex-direction: column;
    justify-content: flex-start;
    align-items: baseline;
    padding: 20px 0;
  }

  .list-ticket-event li .price-ticket-sale {
    font-size: 14px;
  }

  .list-ticket-event li .heading-ticket .icon svg {
    width: 20px;
  }

  .list-item-event .list-item-product.list-fluid .item-product {
    padding: 10px;
  }

  .list-search-data li a {
    color: #000;
    display: block;
    padding: 10px 15px;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
  }
}
.btn-check:focus + .btn, .btn:focus {
  box-shadow: unset;
}

/*new*/
footer .single-cta {
    display: flex;
}
footer .single-cta i {
    float: none;
    display: inline-flex;
    margin: 0;
    align-items: center;
}
.copy-status {
    color: #f14141;
    font-style: italic;
    font-size: 12px;
}

.logo-img {
    max-width: 95px;
    margin-bottom: 0;
    padding: 5px 0;
}
#footer .memu-sidebar li a svg {
    width: 15px;
    color: #fff;
}
.footer-logo{
    margin-bottom: 25px;
}

.checkbox-terms-of-use {
    border-color: #df57ff;
}
.checkbox-terms-of-use:checked {
    background-color: #df57ff;
    border-color: #df57ff;
}

.form-check-label {
    user-select: none;
}

.form-check-input:focus {
    outline: unset;
    box-shadow: unset;
}
.box_content_modal {
    white-space: pre-line;
    max-height: 80vh;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 15px;
}

    .box_content_modal::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        border-radius: 10px;
        background-color: #F5F5F5;
    }

    .box_content_modal::-webkit-scrollbar {
        width: 8px;
        background-color: #F5F5F5;
    }

    .box_content_modal::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        background-color: #dedede;
    }
.btn-disable {
    width: 100%;
    max-width: 300px;
    text-align: center;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    margin: auto;
    font-size: 18px;
    border-bottom: 4px solid #df57ff;
}