.appBottomMenu {
  display: none;
  min-height: 56px;
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #e1e1e1;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: env(safe-area-inset-bottom);
}

.out-of-stock-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  z-index: 10;
}

.product-box {
  position: relative;
}

.appBottomMenu.no-border {
  border: 0 !important;
  box-shadow: 0 !important;
}

.appBottomMenu.rounded {
  border-radius: 24px 24px 0 0 !important;
}

.appBottomMenu.rounded .item:before {
  display: none;
}

.appBottomMenu .item {
  font-size: 9px;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  height: 56px;
  line-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.appBottomMenu .item:before {
  content: "";
  display: block;
  height: 2px;
  border-radius: 0 0 10px 10px;
  background: transparent;
  position: absolute;
  left: 4px;
  right: 4px;
  top: 0;
}

.appBottomMenu .item .col {
  width: 100%;
  padding: 0 4px;
  text-align: center;
}

.appBottomMenu .item svg,
.appBottomMenu .item svg {
  display: inline-flex;
  margin: 1px auto 3px auto;
  font-size: 26px;
  width: 33px;
  height: 33px;
  line-height: 1em;
  color: #777;
  transition: 0.1s all;
  display: block;
  margin-top: 1px;
  margin-bottom: 3px;
}

.appBottomMenu .item .action-button {
  display: inline-flex;
  width: 50px;
  height: 50px;
  margin-left: -5px;
  margin-right: -5px;
  align-items: center;
  justify-content: center;
  border-radius: 200px;
  background: #1e74fd;
}

.appBottomMenu .item .action-button.large {
  width: 60px;
  height: 60px;
  margin-top: -20px;
  margin-left: -10px;
  margin-right: -10px;
}

.appBottomMenu .item .action-button svg,
.appBottomMenu .item .action-button svg {
  color: #fff !important;
  margin: 0 !important;
  line-height: 0 !important;
}

.appBottomMenu .item strong {
  margin-top: 4px;
  display: block;
  color: #141515;
  font-weight: 400;
  transition: 0.1s all;
}

.appBottomMenu .item:active {
  opacity: 0.8;
}

.appBottomMenu .item.active:before {
  background: transparent;
}

.appBottomMenu .item.active svg,
.appBottomMenu .item.active svg,
.appBottomMenu .item.active strong {
  color: #000 !important;
  font-weight: 500;
}

.appBottomMenu .item:hover svg,
.appBottomMenu .item:hover svg,
.appBottomMenu .item:hover strong {
  color: #141515;
}

.appBottomMenu.text-light {
  color: #fff;
}

.appBottomMenu.text-light .item {
  color: #fff;
  opacity: 0.7;
}

.appBottomMenu.text-light .item svg,
.appBottomMenu.text-light .item svg,
.appBottomMenu.text-light .item strong {
  color: #fff;
}

.appBottomMenu.text-light .item.active {
  opacity: 1;
}

.appBottomMenu.text-light .item.active svg,
.appBottomMenu.text-light .item.active svg,
.appBottomMenu.text-light .item.active strong {
  color: #fff !important;
}

.appBottomMenu.bg-primary,
.appBottomMenu.bg-secondary,
.appBottomMenu.bg-success,
.appBottomMenu.bg-warning,
.appBottomMenu.bg-danger,
.appBottomMenu.bg-info,
.appBottomMenu.bg-light,
.appBottomMenu.bg-dark {
  border: 0;
}

.appBottomMenu.bg-primary .item:before,
.appBottomMenu.bg-secondary .item:before,
.appBottomMenu.bg-success .item:before,
.appBottomMenu.bg-warning .item:before,
.appBottomMenu.bg-danger .item:before,
.appBottomMenu.bg-info .item:before,
.appBottomMenu.bg-light .item:before,
.appBottomMenu.bg-dark .item:before {
  display: none;
}

.spinner {
  margin: 20px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #6f2def;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: none;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.header-contact {
  padding: 8px 0 5px 0;
}

.header-dropdown li {
  font-size: 13px;
  padding: 8px 0 11px 20px;
}

.header-dropdown li.mobile-account {
  padding-right: 20px;
}

.onhover-dropdown .onhover-show-div {
  top: 37px;
  background-color: #fafafa;
  border: 1px #f0f0f0 solid;
  border-top: 0;
  min-width: 200px;
}

.header-dropdown li a {
  color: #555;
}

.main-menu .brand-logo {
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-menu .brand-logo img {
  border-radius: 5px;
}

.main-menu .menu-left .navbar {
  padding: 31px 15px 25px 0;
}

header .form_search {
  width: 88%;
  border-radius: 20px;
}

header .form_search input {
  padding-left: 20px;
}

@media (max-width: 1199px) {
  .form_search {
    display: block;
  }
}

@media (max-width: 960px) {
  .form_search {
    display: none;
  }
}

.category-button .btn-outline {
  overflow: hidden;
}

@media (max-width: 480px) {
  .brand-logo img {
    height: 40px;
  }
}

.footer-theme .sub-title li {
  text-transform: none;
}

section.collection-product-wrapper {
  /* padding-top: 10px; */
  padding-bottom: 30px;
}

section.collection-product-wrapper .product-box .product-info {
  padding: 10px 0;
}

section.collection-product-wrapper .product-box .product-info h6 {
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

section.collection-product-wrapper .product-box .product-info h4 {
  font-size: 16px;
}

.collection-product-wrapper .product-wrapper-grid .product-box {
  margin-top: 0;
  margin-bottom: 30px;
}

.breadcrumb-section {
  padding: 15px 0;
}

.breadcrumb-section .page-title h2 {
  font-size: 22px;
}

.category-button .btn-outline.active {
  color: #fff;
  background-color: #ff4c3b;
}

.category-button .btn-outline.active:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: #ff4c3b;
  z-index: -2;
}

.top-header .header-contact ul li a {
  color: #555;
  font-size: 16px;
}

.top-header .mobile-wishlist.phone-number {
  padding-left: 5px;
}

.top-header .mobile-wishlist.phone-number span {
  font-size: 16px;
  display: inline-block;
  position: relative;
  top: -1px;
}

.top-header .mobile-wishlist.phone-number i {
  padding-right: 0;
}

.top-header .mobile-wishlist.phone-number span,
.top-header .mobile-wishlist.phone-number i {
  color: #555;
}

.main-menu .menu-left .navbar a.header-navbar span {
  display: inline-block;
  position: relative;
  top: -5px;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  margin-left: 5px;
  text-transform: uppercase;
}

footer {
  border-top: 1px #f0f0f0 solid;
}

.footer-contant .footer-logo img {
  border-radius: 5px;
}

section.product-detail {
  background-color: #fff;
}

.product-detail .slide-img {
  width: 100%;
}

.main-menu .brand-logo a span {
  display: none;
}

.home-posts .blog-details p {
  /* height: 54px; */
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif !important;
}

.home-posts .global-share-button {
  right: 5px;
  top: -5px;
  bottom: auto;
}

.home-posts .post-button {
  padding-top: 14px;
  padding-left: 28px;
  padding-right: 28px;
  background-color: rgba(0, 0, 0, 1);
  color: white !important;
  text-align: left;
  cursor: pointer;
  width: auto;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  padding-bottom: 14px;
  margin-top: 6% !important;
  margin-right: 9% !important;
  font-weight: 700;
  font-family: "Montserrat", sans-serif !important;
  text-transform: uppercase;
}

.home-posts .classic-effect > div {
  height: 250px;
}

.home-slider .home,
.center-slider .home {
  height: 400px;
}

.home-slider .slider-contain,
.center-slider .slider-contain {
  height: 400px;
}

@media (max-width: 480px) {
  footer p {
    text-align: center;
  }

  .footer-title h4 {
    text-align: center;
  }

  .footer-contant .footer-logo {
    text-align: center;
  }

  .footer-theme .sub-title .contact-list li {
    text-align: center;
  }

  .footer-contant .footer-social ul {
    text-align: center;
    width: 100%;
  }

  .home-page .title4 h2.title-inner4 {
    font-size: 18px;
  }

  .home-slider .slider-contain h1 {
    font-size: 18px;
    text-align: left;
    font-weight: normal;
    text-transform: none;
  }

  .main-menu .brand-logo a span {
    color: #333;
    font-size: 20px;
    margin-left: 10px;
    display: inline-block;
    font-weight: bold;
  }

  .home-products .product-box.product-wrap {
    margin-bottom: 15px;
  }

  .home-products .col-6 {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }

  .home-products .product-box.product-wrap h4 {
    margin-top: 2px;
  }

  .home-posts .blog-details {
    margin-bottom: 20px;
  }

  .home-posts .blog-details p {
    margin-top: 5px;
    /* height: 36px; */
    overflow: hidden;
  }
}

.checkout-page .checkout-form .form-group .field-label {
  margin-bottom: 3px;
  text-transform: none;
}

.breadcrumb-section .breadcrumb {
  justify-content: flex-start;
  padding-left: 0;
}

section.order-success {
  background-color: #fff;
}

.order-success .product-order h3 {
  margin-bottom: 20px;
}

.order-success .final-total {
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 10px;
}

.order-success-sec h4,
.delivery-sec h2,
.delivery-sec h3,
.product-order .product-order-detail .order_detail h4,
.product-order .product-order-detail .order_detail h5 {
  text-transform: none;
}

.main-menu .menu-right .icon-nav .mobile-cart > div img {
  display: block;
}

.tools-grey .product-box .cart-info button {
  background-color: #777;
  color: #fff;
}

.sc-badge {
  font-size: 90%;
  padding: 3px 6px;
  position: relative;
  margin-left: -2px;
  border-radius: 5px !important;
  top: -17px;
}

.all-products-btn {
  display: inline-block;
  width: 20%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

@media (min-width: 578px) {
  body {
    /* margin-top: 84px; */
  }
}

@media (max-width: 577px) {
  .top-header .header-dropdown .mobile-wishlist i:before {
    display: none;
  }

  .brand-logo {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }

  .main-menu .menu-left .navbar {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .main-menu .menu-left .navbar a.header-navbar {
    padding: 3px;
    display: block;
    position: relative;
    left: -3px;
  }

  footer {
    margin-bottom: 50px;
  }

  .home-products .product-detail h6 {
    height: 38px;
    overflow: hidden;
  }

  .home-products .product-m .slick-slide > div {
    margin: 0 5px;
  }

  .product-wrapper-grid .col-grid-box {
    padding-left: 5px;
    padding-right: 5px;
  }

  .collection-product-wrapper .product-wrapper-grid .product-box {
    margin-bottom: 10px;
  }

  .tools-grey .product-box .cart-info button {
    background-color: #777;
    padding: 0 8px;
  }

  .tools-grey .product-box .cart-info button i {
    color: #fff;
  }

  .checkout-btn {
    width: 40%;
  }

  .order-success-products-title {
    display: none;
  }

  .checkout-page .payment-box button {
  }

  .all-products-btn {
    display: block;
    width: 100%;
    margin-top: 15px;
  }

  .collection-product-wrapper .product-wrapper-grid .product-box {
    position: relative;
  }

  .collection-product-wrapper .product-wrapper-grid .product-box .img-wrapper {
    padding-bottom: 0;
  }

  .collection-product-wrapper .product-wrapper-grid .product-box .cart-info {
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
    width: 45px;
    height: 35px;
    margin: 0;
    left: auto;
    z-index: 9;
  }

  .home-posts .classic-effect > div {
    height: 200px;
  }
}

.title4 .line span:after,
.title4 .line span:before,
.title4 .line:after,
.title4 .line:before {
  display: none;
}

.product-detail .product-buttons button {
  width: 48%;
}

.theme-modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}

.checkout-page .shopping-option span {
  font-weight: normal;
}

.order-box .sub-total li .count,
.order-box .qty li span {
  text-align: right;
}

.btn-solid {
  color: #333;
  background-image: none;
  background-color: #fff;
  border-color: #333;
  border-width: 1px;
}

.btn-solid:focus {
  color: #333;
}

button.btn.btn-solid:active,
button.btn.btn-outline:active {
  color: #fff;
  background: #333;
}

@media (max-width: 1199px) {
}

@media (min-width: 1200px) {
  .main-nav-center .sm > li > a {
    padding: 12px 15px 10px;
  }
}

.home-slider .home,
.center-slider .home {
  background-position: center top !important;
  height: auto !important;
}

.breadcrumb-item,
.breadcrumb-item a {
  text-transform: none;
}

@media (max-width: 480px) {
  .breadcrumb-item,
  .breadcrumb-item a {
    font-weight: normal;
  }
}

.product-detail .product-options-values {
  margin-top: 5px;
  margin-bottom: 0;
}

.product-detail .product-options-values a {
  display: inline-block;
  font-size: 14px;
  color: #333;
  padding: 5px 10px;
  border: 1px solid #ced4da;
  margin-right: 10px;
  margin-bottom: 10px;
}

.product-detail .product-options-values a:hover,
.product-detail .product-options-values a.selected {
  border: 1px solid #333;
  background-color: #333;
  color: #fff;
}

.order-box .sub-total .shipping {
  width: 70%;
}

.order-success-header.section-b-space {
  padding-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px #eee solid;
  margin-top: 20px;
  margin-bottom: 30px;
}

.order-success-header .success-text h3 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.order-success-header .success-text h3 i {
  font-size: 30px;
}

.order-success-header .success-text h3 span {
  display: inline-block;
  position: relative;
  top: -4px;
  text-transform: uppercase;
}

.order-success-header .success-text p.success-message {
  margin-top: 10px;
  text-transform: none;
}

.payment-mode .delivery-sec img {
  max-width: 80px;
}

.payment-mode .delivery-sec h4 {
  text-align: left;
  margin-bottom: 10px;
}

.payment-mode .delivery-sec h4:last-child {
  margin-bottom: 0;
}

.payment-mode h3 {
  text-transform: uppercase;
  color: #333;
}

.checkout-page .checkout-form input[type="text"],
.checkout-page .checkout-form input[type="email"],
.checkout-page .checkout-form input[type="password"],
.checkout-page .checkout-form input[type="tel"],
.checkout-page .checkout-form input[type="number"],
.checkout-page .checkout-form input[type="url"] {
  padding: 0 10px;
}

.checkout-page .checkout-form .col-12,
.checkout-page .checkout-form .col-6 {
  padding-left: 8px;
  padding-right: 8px !important;
}

.checkout-page .checkout-title {
  margin-bottom: 25px;
  text-align: center;
}

.order-box .qty li span {
  width: auto;
}

.order-box {
  margin-bottom: 15px;
}

.order-success-page .pm-list {
  text-align: center;
  padding-top: 15px;
  background-color: #f9f9f9;
}

.order-success-page .pm-list li {
  margin-left: 5px;
  margin-right: 5px;
  border-right: 1px solid #ddd;
}

.order-success-page .pm-list li a {
  display: block;
  padding: 10px 8px;
  color: #888;
  font-weight: bold;
}

.order-success-page .pm-list li a:hover,
.order-success-page .pm-list li.active a {
  color: #333;
}

.order-success-page .pm-list li:last-child {
  border-right: 0;
}

.order-success-page .pm-list li a img {
  width: auto;
  height: 30px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.order-success-page .pm-list li a:hover img,
.order-success-page .pm-list li.active a img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.order-success-page .delivery-sec.payment-method {
  margin-top: 0;
  display: none;
}

.order-success-page .delivery-sec.payment-method.active {
  display: block;
}

.product-box .img-wrapper,
.product-wrap .img-wrapper {
  height: 320px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.product-wrap .img-wrapper img.grid-img {
  opacity: 0;
}

.blog-detail-page .global-share-button {
  top: -5px;
}

.fb-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 12px 20px;
  background-color: #4267b2;
  font-size: 16px;
  line-height: 20px;
}

.fb-login-btn i {
  font-size: 22px;
}

.fb-login-btn:hover i,
.fb-login-btn:focus i,
.fb-login-btn:visited i,
.fb-login-btn:active i {
  color: #fff;
}

.fb-login-btn span {
  color: #fff;
  display: inline-block;
  margin-left: 8px;
}

.global-sharer {
  position: relative;
}

.global-share-button {
  bottom: 10px;
  right: 10px;
  display: block;
  position: absolute;
  z-index: 9;
  width: 22px;
  height: 22px;
  background-image: url("/static/images/facebook_1.png");
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: center;
  background-color: #fff;
}

/*
.global-sharer.list .global-share-button {
  display: none;
}

.global-sharer.list:hover .global-share-button {
  display: block;
}*/

.global-share-button i {
  font-size: 22px;
  position: relative;
  top: 2px;
}

.product-right .global-share-button {
  top: 0;
  right: 0;
}

.home-products {
  padding-bottom: 0;
  margin-bottom: 20px;
}

.home-products section.collection-product-wrapper {
  padding-bottom: 0;
}

.home-products section.collection-product-wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.product-slider-thumb {
  margin-bottom: 20px;
}

.product-slider-thumb.active {
  border: 1px solid #dcdcdc;
}

.home-corousel {
  overflow: hidden;
}

.carousel-btn {
  display: none;
  padding: 0;
  border-color: #eee;
  color: #666;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  text-align: center;
  box-shadow: 0 0 8px -1px rgba(0, 0, 0, 0.25);
}

.home-corousel:hover .carousel-btn {
  display: block;
}

.carousel-btn i {
  font-size: 18px;
  position: relative;
  color: #666;
  top: 12px;
}

.carousel-btn i.left {
  left: -2px;
}

.carousel-btn i.right {
  left: 2px;
}

.pixelstrap.sm-vertical > li a {
  font-weight: bold;
}

.sidenav .pixelstrap li.navbar-sub a {
  margin-left: 10px;
  padding-bottom: 10px !important;
  padding-top: 5px !important;
  font-size: 14px;
  font-weight: normal !important;
}

.checkout-details.checkout-login {
  margin-left: 20%;
  margin-right: 20%;
}

@media (min-width: 997px) {
  .product-thumb-list {
    width: 100% !important;
  }
}

@media (max-width: 997px) {
  .product-slick {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -30px;
  }

  .product-thumb-wrapper {
    max-height: 72px !important;
    text-align: center;
    overflow-x: scroll;
    overflow-y: hidden !important;
  }

  .product-thumb-wrapper .product-slider-thumb {
    display: inline-block;
    margin-right: 10px;
    height: 72px;
    margin-bottom: 0;
  }

  .product-thumb-wrapper .product-slider-thumb:last-child {
    margin-right: 0;
  }

  .product-thumb-wrapper .product-slider-thumb img {
    height: 70px;
  }

  .product-thumb-list {
    min-width: 100%;
  }
}

@media (max-width: 577px) {
  .global-sharer.list .global-share-button {
    display: block;
  }

  .global-sharer.list .global-share-button span {
    display: none;
  }

  .payment-mode .delivery-sec img {
    max-width: 100% !important;
  }

  .payment-mode .delivery-sec .col-3,
  .payment-mode .delivery-sec .col-9 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .payment-mode .delivery-sec h4 {
    font-size: 14px;
  }

  .order-box .sub-total .shipping {
    width: 100%;
  }

  .checkout-page .shopping-option {
    padding-left: 0 !important;
    margin-top: 5px;
  }

  .checkout-page .shopping-option label {
    display: block;
    padding-left: 0 !important;
  }

  .checkout-page .shipping {
    margin-top: 5px;
  }

  .checkout-page .shopping-option span {
    display: inline-block;
  }

  .order-success-page .pm-list li a span {
    display: none;
  }

  .footer-social-embedder {
    margin-top: 25px;
  }

  .products-page-wrapper .product-box .global-share-button {
    right: 10px;
    bottom: 10px;
  }

  .product-box .img-wrapper,
  .product-wrap .img-wrapper {
    height: 180px;
  }

  .blog-detail-page .blog-detail h3 {
    margin-bottom: 5px;
  }

  .blog-detail-page .global-share-button {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
  }

  .blog-detail-page .global-sharer {
    margin-bottom: 10px;
  }

  .home-products section.collection-product-wrapper .container {
    padding-left: 5px;
    padding-right: 5px;
  }

  .home-slider .home,
  .center-slider .home {
    height: 200px;
  }

  .home-slider .slider-contain,
  .center-slider .slider-contain {
    height: 160px !important;
  }

  .carousel-btn {
    border-radius: 15px;
    width: 30px;
    height: 30px;
    text-align: center;
  }

  .carousel-btn i {
    font-size: 12px;
    position: relative;
    color: #666;
    top: 5px;
  }

  .carousel-btn i.left {
    left: -1px;
  }

  .carousel-btn i.right {
    left: 1px;
  }

  .checkout-page .checkout-form .checkout-details {
    margin-left: 0;
    margin-right: 0;
  }

  .checkout-details.checkoug-login {
    margin-left: 0;
    margin-right: 0;
  }

  .top-header .header-dropdown li a {
    display: none;
  }

  .product-wrap .product-info h4 {
    text-align: left;
    padding-left: 10px;
  }

  .product-detail-page-wrapper .breadcrumb-section .breadcrumb {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  #fb-root {
    display: none !important;
  }

  .appBottomMenu {
    display: flex;
  }

  .product-right h3.price {
    text-align: left;
  }

  .dashboard-left {
    position: relative;
    height: auto;
    top: 0;
    left: 0;
    margin-bottom: 20px;
    z-index: 1;
  }
}

.shop-info-wrapper {
  border-top: 1px solid #eee;
  display: grid;
  place-items: center;
}

footer .footer-contant p {
  max-height: 96px;
  overflow: hidden;
}

.footer-contact ul li {
  margin: 0 10px;
}

.theme-paggination-block {
  background-color: #fff;
}

.product-pagination .pagination .page-item.active a {
  color: black;
  font-weight: bold;
  border: 1px solid black;
}

@media (min-width: 577px) {
  .product-pagination {
    border: none !important;
  }

  .product-pagination .product-search-count-bottom {
    border-left: none !important;
  }
}

.underline-menu {
  border-bottom: 2px solid #000;
}

.blog-page .blog-media .blog-right {
  justify-content: flex-start;
}

.top-header .header-dropdown .onhover-dropdown .onhover-show-div li {
  padding-bottom: 8px;
}

.dashboard-left .block-content ul li.active a {
  color: #000;
  font-weight: bold;
}

.contact-page .theme-form textarea,
.contact-page .theme-form input {
  font-size: 14px;
  padding: 12px 20px;
}

.contact-page .theme-form select {
  height: 47px !important;
}

.product-thumb-wrapper {
  -ms-overflow-style: none;
  max-height: 540px;
  overflow-y: scroll;
}

.product-thumb-wrapper::-webkit-scrollbar {
  display: none;
}

@media (max-width: 577px) {
  .main-menu {
    z-index: 109;
  }

  .account-orders-wrapper {
    overflow-x: scroll;
  }

  #fb-root {
    display: block;
  }

  .product-pagination {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  section.collection-product-wrapper {
    padding-bottom: 0;
  }

  .main-menu .menu-left .navbar a.header-navbar span {
    top: -3px;
  }
}

@media (min-width: 577px) {
  .about-page p {
    line-height: 1.9em;
  }

  .home-posts-header {
    margin-top: 50px;
  }

  .home-posts-header .line {
    margin-bottom: 30px;
  }

  .home-posts {
    padding-bottom: 50px;
  }

  .home-posts .list {
    margin-bottom: 30px;
  }

  .home-posts .blog-details h4 {
    font-size: 16px;
  }

  .home-posts .blog-details h4 i {
    font-size: 14px;
  }

  .product-pagination {
    margin: 0;
  }
}

.products-page-wrapper .breadcrumb {
  padding-bottom: 0;
}

.sub-categories {
  background-color: #e0e0e0;
}

.sub-categories .sm > li > a {
  color: #515151;
  text-transform: none;
  padding: 9px 20px 7px 20px;
  border-right: 1px solid #f4f4f4;
}

.sub-categories .sm > li:first-child {
  border-left: 1px solid #f4f4f4;
}

.sub-categories .main-nav-center > nav {
  text-align: left;
}

/* .main-nav-center {
  max-width: 800px;
  overflow: scroll;
} */

.main-nav-center .sm > li > a.has-submenu {
  padding-right: 40px;
}

.currentUserAvatar {
  margin: 0px 10px 5px 5px;
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

.topAccountSide {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.delete-btn {
  padding: 4px;
  border: 1px solid red;
  margin-top: 11px !important;
  background: #ff4c3b;
  color: white !important;
  border-radius: 4px;
}

.order-image {
  width: 90px !important;
}

.order-status {
  color: white;
  padding: 2px;
  border-radius: 5px;
  text-align: center;
}

.table-sub-level {
  display: none;
}

.show-order-detail:active .table-sub-level {
  display: block !important;
  background: green;
}

.show-order-detail:hover .table-sub-level {
  display: block !important;
  background: green;
}

.checkout-page .checkout-form .checkout-details {
  padding: 22px 18px;
}

.cart-section .qty-box .input-group {
  align-items: center;
}

.checkout-page .checkout-form select.not-selected {
  color: #878787;
}

.checkout-page-wrapper {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -13px;
}

.checkout-page-order-info {
  margin-top: 20px;
}

.checkout-page .checkout-form .form-group {
  margin-bottom: 15px;
}

.checkout-page select {
  padding-left: 10px !important;
  padding-right: 10px !important;
  color: #757575;
}

.checkout-page select.selected {
  color: #000;
}

.cart-section .order-box .sub-total li {
  margin-bottom: 10px;
}

.auth-wrapper {
  position: relative;
  background-color: #f9f9f9;
  border: 1px solid #dddddd;
  padding: 25px 40px;
  margin-left: 25%;
  margin-right: 25%;
}

.cart-section .auth-wrapper {
  margin-left: 15%;
  margin-right: 15%;
}

.auth-wrapper h2 {
  color: #333;
  font-size: 0.9em;
  line-height: 1.2em;
  margin-bottom: 18px;
}

.auth-wrapper .auth-form .form-group {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.auth-wrapper input.form-control {
  padding: 0.5rem 0.9rem;
}

.auth-wrapper .auth-sep-desc {
  max-width: 320px;
  margin: 25px auto;
  z-index: 0;
  position: relative;
}

.auth-wrapper .auth-sep-desc span {
  display: inline-block;
  padding: 0 0.5em;
  background: #f9f9f9;
  color: #7f7f7f;
  font-size: 16px;
}

.auth-wrapper button,
.auth-wrapper .fb-login-btn {
  width: 100%;
  max-width: 320px;
}

.auth-reset-form {
  margin-top: 3px;
}

.auth-info-desc {
  color: #777;
  text-align: left;
  margin-bottom: 10px;
}

.auth-wrapper .auth-sep-desc:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-bottom: 1px solid #dddd;
  z-index: -1;
}

.auth-wrapper .form-group {
  margin-bottom: 20px;
}

.account-order-list.cart-section tbody tr td {
  color: #333;
  min-width: auto;
  font-size: 16px;
}

.account-order-list.cart-section tbody tr td a {
  color: #333;
  text-transform: none;
}

.account-order-list.cart-section tbody tr td.order-products {
  max-width: 250px;
}

.account-order-list.cart-section tbody tr td.order-products a {
}

.account-order-list.cart-section tbody tr td.order-code {
  width: 150px;
}

.account-order-list.cart-section tbody tr td.order-status span.badge {
  display: inline-block;
  color: #fff;
  padding: 6px;
  width: 120px;
}

.account-order-list.cart-section tbody tr td span.order-price {
  font-weight: bold;
}

.order-deeplinks li {
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
}

.order-deeplinks li a {
  display: block;
  border-radius: 10px;
  border: 1px #eee solid;
  overflow: hidden;
}

.update-profile-page h3.sub-title {
  font-size: 16px;
  color: #777;
  /*text-transform: none;*/
  margin-bottom: 8px;
  margin-top: 5px;
  display: grid;
  place-items: center;
}

.update-profile-page select {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .auth-wrapper {
    padding: 25px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .cart-section tbody tr td:nth-last-child(-n + 4) {
    display: table-cell;
  }

  .cart-section tbody tr td:nth-last-child(-n + 1) {
    display: none;
  }

  .cart-section tbody tr td a.product-name {
    display: none;
  }

  .cart-section tbody tr td .mobile-cart-content .col-xs-3 {
    margin-left: 0;
  }

  .checkout-page-wrapper {
    margin-top: 10px;
  }

  .checkout-page-order-info {
    margin-top: -5px;
  }

  .order-success-header.section-b-space {
    margin-top: 10px;
  }

  .checkout-success-page .sidebar-column {
    display: none;
  }

  .collection-product-wrapper .product-pagination .pagination .page-item a {
    padding: 6px 8px;
  }

  .product-pagination .pagination {
    justify-content: left;
    -webkit-box-pack: left;
  }
}

.sidenav .sidebar-overlay {
  z-index: 106;
}

.sidenav nav {
  z-index: 109;
}

.products-page-wrapper .product-box .img-wrapper .front,
.products-page-wrapper .product-box .img-wrapper .front img {
  opacity: 0;
  transition: none;
  -webkit-transition: none;
}

.products-page-wrapper .product-box .img-wrapper .front a {
  display: inline-block;
  height: 180px;
}

.mobile-header-wrapper {
  display: none;
}

@media (max-width: 991px) {
  .desktop-header-wrapper {
    display: none !important;
  }

  .mobile-header-wrapper {
    display: block;
  }

  .product-right .product-description .qty-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0px !important;
  }

  .qty-box .input-group .form-control {
    text-align: center;
    min-width: 158px !important;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}

#custom-search-input {
  margin: 3px;
  padding: 0;
}

#custom-search-input .search-query {
  padding-right: 3px;
  padding-right: 4px \9;
  padding-left: 10px;
  padding-left: 4px \9;
  /* IE7-8 doesn't have border-radius, so don't indent the padding */

  margin-bottom: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

#custom-search-input button {
  border: 0;
  background: none;
  /** belows styles are working good */
  padding: 2px 5px;
  margin-top: 2px;
  position: relative;
  left: -28px;
  /* IE7-8 doesn't have border-radius, so don't indent the padding */
  margin-bottom: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #d9230f;
}

.search-query:focus + button {
  z-index: 3;
}

.sidenav {
  padding-bottom: 20px;
}

.font-weight-bold {
  font-weight: 700 !important;
}

@media print {
  *,
  ::after,
  ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  img {
    page-break-inside: avoid;
  }
}

.w100 {
  width: 100%;
}

.font13 {
  font-size: 13px;
}

.mt2 {
  margin-top: 2px;
}

a.no-underline {
  text-decoration: none;
}

a.no-underline:hover {
  text-decoration: none;
}

._text-gray {
  color: #616c74;
}

.store-wrap {
  border-top-style: solid;
  border-color: #e8ebed;
  border-width: 2px;
  background-color: #fff;
  padding: 4px;
}

.store-link {
  width: 14.2%;
  height: 120px;
}

.store-item {
  height: 100%;
}

.store-item:hover {
  box-shadow: 0 3px 7px 0 rgba(0, 23, 46, 0.16);
}

.store-img {
  max-width: 102px;
  max-height: 45px;
  min-height: 45px;
}

.store-img img {
  max-width: 102px;
  max-height: 45px;
}

.cashback {
  font-size: 14px;
  color: #db8700;
}

@media (max-width: 1360px) {
  .store-link {
    width: 20%;
  }
}

@media (max-width: 992px) {
  .store-link {
    width: 20%;
    height: 106px;
  }
}

@media (max-width: 768px) {
  .store-link {
    width: 25%;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .store-link {
    width: 50%;
    height: 150px;
    border: solid 1px #f1f3f6;
  }

  .store-wrap {
    border: 0;
    padding: 0;
  }

  .cashback {
    margin-top: 5px;
    font-size: 17px;
  }

  .store-img {
    max-width: 140px;
    min-height: 65px;
  }

  .store-img img {
    max-width: 140px;
    max-height: 65px;
  }
}

.brand-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* .mega-menu-main{
  position: absolute;
  display: flex;
  width: 100%;
  background-color: white;

  border: 1px solid #eee;
  top: 83px;
    left: 0;
    right: 0;
} */
@media only screen and (max-width: 1024px) {
  .trending-title {
    font-size: 18px !important;
    margin: 8px 0 !important;
  }
}

.trending-title {
  font-family: "Montserrat", sans-serif !important;
  margin: 0;
  letter-spacing: 0.125rem;
  font-size: 25px;
  color: #060506;
  /* font-family: futura-pt,Arial,sans-serif; */
  font-weight: 300;
  text-transform: uppercase;
  /* line-height: 2.625rem; */
  /* margin-bottom: 60px; */
  margin: 32px 0;
}

.product-title {
  font-family: "Montserrat", sans-serif !important;
  color: #060506;
  font-weight: 500;
  letter-spacing: 0 !important;
  font-size: clamp(0.8125rem, 0.7273rem + 0.2727vw, 1rem) !important;
  line-height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.post-line-clamp {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

header.new-header .header-nav-dots-icon .header-dots {
  padding: 2.0625rem 0 1.875rem 0.3125rem;
  display: block;
  line-height: 1;
}

.main-post-title p {
  font-size: 24px !important;
  text-align: left !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.slider {
  padding-top: 0px;
}

.product-loan {
  box-sizing: border-box;
  /* Auto layout */

  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  gap: 40px;
  width: 100%;
  height: 106px;

  background: #ffffff;
  border: 1px solid #d8e4ea;
  border-radius: 20px;

  /* Inside auto layout */

  flex: none;
  order: 4;
  flex-grow: 0;
}

.mobile-product-loan {
  box-sizing: border-box;
  /* Auto layout */
  place-items: center;
  display: grid;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 20px;
  width: 100%;
  /* height: 106px; */

  background: #ffffff;
  border: 1px solid #338fbd;
  border-radius: 20px;

  /* Inside auto layout */

  flex: none;
  order: 4;
  flex-grow: 0;
}

.pocket_lendmn_grid {
  display: grid;
  gap: 20px;
}

.pocket_container {
  border: 1px solid rgb(233, 233, 233);
  display: flex;
  place-items: center;
  justify-content: space-around;
  border-radius: 15px;
  background-color: #f3f4f6;
  padding: 10px;
}

.pocket_container :hover {
  cursor: pointer;
}

.pocket_content {
  display: flex;
  gap: 15px;
  place-items: center;
}

.pocket_title {
  font-weight: bold;
  font-size: 18px;
  color: #000;
}

:where(.css-dev-only-do-not-override-ph9edi).ant-tabs .ant-tabs-tab:hover {
  color: transparent !important;
}

.ant-tabs-ink-bar {
  background: transparent !important;
}

.pocket_triangle {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 10px solid #ec3155;
  border-bottom: 5px solid transparent;
  margin-left: 5px;
}

.pocket_triangle_container {
  border: 1px solid #ec3155;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.pocket_triangle_main_container {
  display: flex;
  place-items: center;
  gap: 12px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
  margin-bottom: 0;
  padding-bottom: 0;
}

.ant-radio-group-solid
  :where(
    .css-dev-only-do-not-override-mxhywb
  ).ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  color: #fff;
  background: #ec3155;
  border-color: #ec3155;
}

.ant-radio-group-solid
  :where(
    .css-dev-only-do-not-override-mxhywb
  ).ant-radio-button-wrapper-checked:not(
    .ant-radio-button-wrapper-disabled
  ):hover {
  color: #fff;
  background: #ec3155;
  border-color: #ec3155;
}

:where(.css-dev-only-do-not-override-ph9edi).ant-radio-button-wrapper:hover {
  position: relative;
  /* color: black; */
}

:where(.css-dev-only-do-not-override-mxhywb).ant-radio-button-wrapper {
  position: relative;
  display: inline-block;
  height: 32px;
  margin: 0;
  padding-inline: 15px;
  padding-block: 0;
  color: rgba(0, 0, 0, 0.88);
  font-size: 14px;
  line-height: 30px;
  background: #dadae2;
  border: 1px solid #d9d9d9;
  border-block-start-width: 1.02px;
  border-inline-start-width: 0;
  border-inline-end-width: 1px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  width: auto;
  height: auto;
}

:where(.css-dev-only-do-not-override-mxhywb).ant-radio-button-wrapper:hover {
  position: relative;
  color: #ec3155;
}

.pocket_dashed {
  margin-top: 20px;
  border-top: 1px rgb(173, 173, 173) dashed;
}

.radio__button__container {
  display: grid;
  place-items: center;
  width: 100%;
}

.radio__buttons {
  display: flex;
  flex-wrap: wrap;
}

.radio__click__container {
  display: flex;
  gap: 7px;
  padding: 10px 0;
  place-items: center;
}

.divide__buttons {
  display: flex;
  margin-top: 20px;
  gap: 40px;
  justify-content: start;
  flex-wrap: wrap;
}

.divide__buttons__two {
  display: flex;
  gap: 40px;
  justify-content: start;
  flex-wrap: wrap;
}

.divide__buttons__botton {
  display: flex;
  margin-top: 20px;
  /* gap: 7px; */

  justify-content: space-between;
  flex-wrap: wrap;
}

.divide__desc {
  border: 1px solid gray;
  padding: 10px;
  border-radius: 10px;
}

.divide__button__background {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
  display: flex;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  place-items: center;
}

.divide__button__two {
  display: flex;
  width: 180px;
  justify-content: space-between;
}

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

.divide__button_text {
  font-weight: bold;
  font-size: 15px;
  line-height: 10px;
  margin-top: 8px;
}

.instructions {
  font-size: 19px;
  font-weight: bold;
  margin-left: 20px;
}

.scroll__main__container {
  display: flex;
  gap: 20px;
}

.scroll__container {
  height: auto;
  width: 8px;
  border: 1px solid #767778;
  border-radius: 6px;
  display: grid;
  place-items: center;
}

.scroll__dot {
  background-color: #ec3155;
  border-radius: 50%;
  width: 5px;
  height: 4px;
}

.drawer__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 20px;
  font-family: inherit;
}

.drawer__header__text {
  display: grid;
  place-items: center;
  background-color: #e5e6e7;
  padding: 8px 12px;
  border-radius: 75px;
  color: #424345;
}

.ant-space-item {
  margin: auto;
}

.order-deeplinks li {
  margin-bottom: 20px;
  margin: auto;
}

.ant-drawer-content {
  height: 100%;
  overflow-y: hidden;
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 100rem;
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.conditions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product__quantity {
  height: 40px;
}

.bank__container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.mobile__banner {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .mobile__banner {
    max-width: 100% !important;
    aspect-ratio: 5 / 2;
    object-fit: cover;
  }
}
@media only screen and (max-width: 830px) {
  .platform__one__text {
    display: none !important;
  }
}

.platform__one__text {
  display: block !important;
}
.ticket__grid__container {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
@media only screen and (min-width: 1536px) {
  .ticket__grid__container {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 1280px) and (max-width: 1536px) {
  .ticket__grid__container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 1024px) {
  .ticket__grid__container {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .ticket__grid__container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 531px) {
  .ticket__grid__container {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) and (min-width: 531px) {
  .ticket__grid__container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

.ticket__qr_view__button:hover {
  cursor: pointer;
}
.story__container {
  display: flex !important;
  place-items: center !important;
  width: 100vw !important;
}

.main__story {
  display: grid;
  place-items: center;
  height: 340px;
  position: relative;
  width: 192px;
  border-radius: 16px;
  overflow: hidden;
}

.main__story :hover {
  cursor: pointer;
}

.story__image {
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  max-width: 100%;
  height: 100%;
}

.story__title {
  background-color: #1c1b1f;
  width: 100%;
  color: white;
  position: absolute;
  bottom: 0;
  display: grid;
  place-items: center;
  --tw-bg-opacity: 0.5;
  height: 42px;
  background: rgb(55, 54, 54);
  background: rgba(53, 51, 51, 0.5);
}

.story__detail__main__container {
  width: 100%;
  background-color: #1c1b1f;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
}

section,
.section-t-space {
  padding-top: 0px;
}

.story__detail__container {
  display: flex;
  margin: auto;
  width: 100%;
  height: 100vh;
}

.story__detail__left__content {
  width: 33.333333%;
}

@media (max-width: 1024px) {
  .story__detail__left__content {
    display: none;
  }
}

@media (min-width: 1024px) {
  .story__detail__left__content {
    display: block;
    padding: 28px;
  }
}

.story__detail__title {
  color: white;
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  display: grid;
}

.story__detail__tags__container {
  display: grid;
  place-items: center;
  gap: 16px;
}

.story__detail__tag__container {
  background-color: white;
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  height: 100px;
}
.story__detail__tag__container:hover {
  cursor: pointer;
}

@media (min-width: 1536px) {
}

@media only screen and (min-width: 1280px) and(max-width:1535px) {
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
}

.story__detial__tag__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  height: 100%;
}

.story__detail__tag__name__container {
  display: grid;
  place-items: start;
  padding: 16px;
}

.story__detail__left__name {
  font-weight: 600;
  font-size: 16px;
  color: black;
}

.story__detail__left__price {
  font-weight: 500;
  font-size: 16px;
  color: black;
}

.story__detail__hr {
  width: 2px;
  height: 100%;
  background-color: #49454f;
}

@media only screen and (min-width: 1024px) {
  .story__detail__right__content {
    width: 66.666667% !important;
  }
}
.story__detail__right__content {
  display: flex;
  place-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  margin: 16px 0 16px;
}
/* lg: w-2/3 my-4 w-full flex justify-center items-center relative; */

.story__detail__main__story__container:hover {
  cursor: pointer;
}

.story__detail__close__button__pc {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 10000;
  background: #818182;
  display: grid;
  place-items: end;
  border-radius: 50%;
  top: 20px;
  right: 20px;
  place-items: center;
}
.story__detail__close__button__pc img {
  width: 20px;
  height: 20px;
}

.story__detail__close__button__pc:hover img {
  cursor: pointer;
}
@media only screen and(max-width:1024px) {
  .story__detail__close__button__pc img {
    display: none !important;
  }
}
.story__detail__close__button__mobile img {
  position: absolute;
  width: 30px;
  height: 30px;
  /* background: rgb(184, 179, 179); */
  border-radius: 50%;
  top: 20px;
  right: 20px;
  padding: 8px;
}

.story__detail__main__image {
  aspect-ratio: 16 / 9;
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.story__detail__tag__main__container {
  background-color: white;
  width: 100px;
  display: flex;
  place-items: center;
  gap: 8px;
  border-radius: 8px;
  height: 35px;
  padding: 4px;
}

.story__detail__tag__image {
  border-radius: 6px;
  height: 28px;
  width: 28px;
  aspect-ratio: 2/3;
  overflow: hidden;
}
.story__detail__main__story__container {
  border-radius: 16px;
  overflow: hidden;
  margin: auto;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 2/3;
  margin: auto;
}

.story__detail__left__content__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 32px 0 32px;
}

.story__detail__tag__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 50px;
  font-size: 8px;
  color: black;
}

.story__detail__triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8px 5px 0;
  border-color: transparent white transparent transparent;
}
.story__detail__title__day__container {
  display: flex;
  place-items: center;
  justify-content: space-between;
  width: 100%;
}
.story__detail__title__day__container p {
  color: white;
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
}
.white__image {
  filter: brightness(0) invert(1) !important;
}
.white__image :hover {
  cursor: pointer;
}
.story__detail__left__arrow {
  position: absolute;
  left: 12px;
  opacity: 0.6;
  width: 50px;
  height: 50px;
  display: block;
  z-index: 999;
}
.story__detail__right__arrow {
  position: absolute;
  right: 12px;
  opacity: 0.6;
  width: 50px;
  height: 50px;
  display: block;
}
@media only screen and(max-width:1024px) {
  .story__detail__left__arrow {
    display: hidden !important;
  }
  .story__detail__right__arrow {
    display: hidden !important;
  }
}
.story__detail__share__button {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #818182;
  --tw-bg-opacity: 0.4;
  border-radius: 50%;
  top: 20px;
  right: 70px;
  /* padding: 4px; */
  display: grid;
  place-items: center;
}
.story__detail__go__to__look__button {
  place-items: center;
  color: white;
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #818182;
  --tw-bg-opacity: 0.4;
  border-radius: 50%;
  right: 120px;
  top: 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.story__detail__pause__and__play {
  position: absolute;
  z-index: 9999;
  width: 16px;
  top: 32px;
  right: 32px;
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
.story__detail__pause__and__play :hover {
  cursor: pointer;
}
.story__detail__pc__buttons {
  display: block;
}
@media only screen and (max-width: 1080px) {
  .story__detail__pc__buttons {
    display: none !important;
  }
}
.conditions__container {
  display: grid;
  place-items: center;
  padding: 30px 0 30px 0;
}
.footer__container {
  display: grid;
  place-items: center;
  padding: 60px 0 30px 0;
}
.grid__product__image {
  width: 100% !important;
  aspect-ratio: 1/1 !important;
  object-fit: contain !important;
}
.rules__content__more {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* number of lines to show */
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
.shared__button__style {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.profile__update a,
.orders__list a,
.log__out a,
.e__ticket a {
  color: #000 !important;
  font-weight: 400;
}
.profile__update__active a,
.orders__list__active a,
.e__ticket__active a {
  font-weight: 600;
  color: #000 !important;
}
.ant-pagination-options {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .swiper-slide,
  .swiper-slide-active {
    margin-right: 0px !important;
  }
  .pc__story__section {
    display: none;
  }
  .mobile__story__section {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .swiper-slide,
  .swiper-slide-active {
    margin-right: 20px !important;
  }
  .pc__story__section {
    display: block;
  }
  .mobile__story__section {
    display: none;
  }
}
.faq__question {
  text-wrap: wrap;
}
.main__menu__container {
  display: flex;
  place-items: center;
  gap: 20px;
  color: black !important;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 23px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04375rem;
}

@media only screen and (max-width: 1024px) {
  .product-detail-image {
    margin-top: 32px !important;
  }
}
@media only screen and(min-width: 1024px) {
  .product-detail-image {
    margin-top: 16px !important;
  }
}
.rules__content__see__more {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.rules__content__more {
  overflow: visible;
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-line-clamp: none;
}
.rules__content__more {
  -webkit-line-clamp: unset;
}
.modal-backdrop,
.custom-modal-backdrop {
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ) !important; /* Adjust the opacity here (0.5 is 50%) */
}
.hidden.bs.modal {
  background-color: white;
}
.dark__mode_white_image {
  filter: brightness(0) invert(1);
}

.additional_banner_image_container {
  /* aspect-ratio: ; */
  height: 500px;
  width: 100%;
  position: relative;
}
.additional_banner_image {
  object-fit: cover;
}
.additional_banner_description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;

  position: absolute;
  color: white;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
  padding: 12px 24px;
  font-size: 20px;
  text-align: center;
  width: 80%;
}
.additional_banner_button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  bottom: 50px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.4px);
  -webkit-backdrop-filter: blur(2.4px);
  padding: 5px;
  color: white;
}
.additional_banner_button:hover {
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .additional_banner_image_container {
    /* aspect-ratio: ; */
    height: 350px !important;
    width: 100%;
    position: relative;
  }
  .additional_banner_description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    position: absolute;
    color: white;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
    padding: 12px 24px;
    font-size: 20px;
  }
  .additional_banner_button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    bottom: 50px;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.4px);
    -webkit-backdrop-filter: blur(2.4px);
    padding: 5px;
    color: white;
  }
}

@media only screen and (max-width: 425px) {
  .additional_banner_image_container {
    /* aspect-ratio: ; */
    height: 250px !important;
    width: 100%;
    position: relative;
  }
  .additional_banner_description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    position: absolute;
    color: white;
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
    padding: 12px 24px;
    font-size: 16px;
  }
  .additional_banner_button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.4px);
    -webkit-backdrop-filter: blur(2.4px);
    padding: 5px;
    color: white;
  }
}
.slider-control-centerleft {
  display: none;
}
.slider-control-centerright {
  display: none;
}
.content__banner__video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  height: 80%;
  width: 80%;
  display: grid;
  place-items: center;
}

.mt-8 {
  margin-top: 8rem;
}
/* .slider-control-bottomcenter button {
  background: black !important;
  border-radius: 50%;
}

.slider-control-bottomcenter svg {
  display: none !important;
} */
.slider-control-bottomcenter li {
  margin-right: 10px;
}
