.primary-color {
  color: #004c98;
}

.secondary-color {
  color: #fe8c0e;
}

.white-color {
  color: #fff;
}

.dark-color {
  color: #1a1a1a;
}

.primary-bg {
  background: #004c98;
}

.secondary-bg {
  background: #fe8c0e;
}

.white-bg {
  background: #fff;
}

.dark-bg {
  background: #1a1a1a;
}

.primary-btn {
  background-color: #004c98;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  padding: 8px 10px;
  transition: 0.3s;
  border: 1px solid #004c98;
}
.primary-btn:hover {
  box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, 0.3);
}

.primary-outline-btn {
  border: 1px solid #004c98;
  color: #004c98;
  background: transparent;
  border-radius: 10px;
  font-size: 14px;
  padding: 8px 10px;
  transition: 0.3s;
}
.primary-outline-btn:hover {
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.detail-product {
  margin-top: 50px;
  margin-bottom: 50px;
}
.detail-product .hero {
  margin-bottom: 30px;
}
.detail-product .hero .breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.detail-product .hero .breadcrumb ul li {
  font-size: 14px;
  position: relative;
}
.detail-product .hero .breadcrumb ul li:not(:first-child) {
  padding-right: 12px;
}
.detail-product .hero .breadcrumb ul li:not(:first-child)::before {
  content: "/";
  position: absolute;
  right: 0;
  font-size: 14px;
  color: #999;
}
.detail-product .hero .breadcrumb ul li a {
  color: #999;
  transition: 0.3s;
}
.detail-product .hero .breadcrumb ul li a:hover {
  color: #1a1a1a;
}
.detail-product .hero .breadcrumb ul li.active {
  color: #1a1a1a;
}
.detail-product .hero .en-name {
  color: #999;
  font-size: 14px;
  text-align: left;
}
.detail-product .hero h1 {
  font-family: "Yekan-Bold";
}
.detail-product .detail {
  margin-top: 40px;
}
.detail-product .detail .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.detail-product .detail .images {
  padding: 4px;
  position: relative;
}
.detail-product .detail .images .overlay {
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  width: max-content;
  z-index: 12;
}
.detail-product .detail .images .overlay ul {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: column;
}
.detail-product .detail .images .overlay ul li {
  position: relative;
}
.detail-product .detail .images .overlay ul li .tooltip {
  position: absolute;
  left: 50%;
  border-radius: 0 10px 10px 10px;
  margin: auto;
  width: max-content;
  background: #1a1a1a;
  font-size: 10px;
  color: #fff;
  padding: 4px 6px;
  display: none;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.1);
  z-index: 12;
}
.detail-product .detail .images .overlay ul li:hover .tooltip {
  display: block;
}
.detail-product .detail .images .overlay button {
  width: 40px;
  height: 40px;
  padding: 10px;
  background: transparent;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  background: #fff;
}
.detail-product .detail .images .overlay button img {
  width: 100%;
}
.detail-product .detail .images .selector {
  margin-top: 20px;
}
.detail-product .detail .images .selector .selector-item {
  border-radius: 6px;
  overflow: hidden;
  padding: 4px;
  background: transparent;
  border: 1px solid #ddd;
  cursor: pointer;
}
.detail-product .detail .images .mz-figure a {
  display: none;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.detail-product .detail .property {
  padding: 4px;
}
.detail-product .detail .property h1 {
  font-family: "yekan-Bold";
  font-size: 20px;
}
.detail-product .detail .property .en-name {
  color: #999;
  font-size: 14px;
  margin-top: 4px;
}
.detail-product .detail .property .info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.detail-product .detail .property .info li {
  background: #e8f3ff;
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 12px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 4px;
}
.detail-product .detail .property .info li:first-child {
  background: transparent;
}
.detail-product .detail .property .info li:first-child span {
  font-size: 12px;
  color: #999;
}
.detail-product .detail .property .info li a {
  color: #1a1a1a;
}
.detail-product .detail .property .info li img {
  width: 14px;
}
.detail-product .detail .property hr {
  border-color: #fff;
  opacity: 0.5;
  margin: 10px 0;
}
.detail-product .detail .property .option-group {
  margin-top: 20px;
}
.detail-product .detail .property .option-group .title {
  font-family: "yekan-Bold";
  font-size: 14px;
  color: #1a1a1a;
}
.detail-product .detail .property .option-group ul {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.detail-product .detail .property .option-group ul li {
  list-style: none;
}
.detail-product .detail .property .option-group ul li button {
  background: transparent;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #a3a3a3;
  font-family: "yekan-Re";
  cursor: pointer;
  position: relative;
  font-size: 12px;
}
.detail-product .detail .property .option-group ul li button.active {
  border-color: #fe8c0e;
  font-family: "yekan-Bold";
  color: #fe8c0e;
}
.detail-product .detail .property .properties {
  margin-top: 30px;
}
.detail-product .detail .property .properties .title-properties {
  color: #1a1a1a;
  font-family: "yekan-ExtraBold";
}
.detail-product .detail .property .properties a {
  color: #004c98;
  font-size: 14px;
  padding-left: 6px;
}
.detail-product .detail .property .properties ul {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.detail-product .detail .property .properties ul li {
  padding: 6px;
  display: flex;
}
.detail-product .detail .property .properties ul li .property-card {
  width: 100%;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 6px 8px;
}
.detail-product .detail .property .properties ul li .property-card span {
  font-size: 12px;
  color: #999;
}
.detail-product .detail .property .properties ul li .property-card p {
  font-size: 14px;
  color: #1a1a1a;
}
.detail-product .detail .price-box {
  padding: 4px;
  position: sticky;
  top: 1rem;
}
.detail-product .detail .price-box .price {
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 6px 13px 0 rgba(0, 0, 0, 0.1);
}
.detail-product .detail .price-box .price .slogans li {
  display: flex;
  align-items: center;
  color: #1a1a1a;
  font-size: 12px;
  gap: 8px;
  margin-bottom: 6px;
  background: #e8f3ff;
  padding: 4px 6px;
  border-radius: 8px;
}
.detail-product .detail .price-box .price .slogans li img {
  width: 28px;
}
.detail-product .detail .price-box .price .slogans li span {
  color: #999;
  font-size: 10px;
  display: block;
  margin-top: 2px;
}
.detail-product .detail .price-box .price .price-inner {
  text-align: center;
  margin-top: 30px;
}
.detail-product .detail .price-box .price .price-inner .old-price {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.detail-product .detail .price-box .price .price-inner .old-price .percent {
  background-color: #fe8c0e;
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 6px;
}
.detail-product .detail .price-box .price .price-inner .old-price del {
  color: #999999;
  font-size: 14px;
  font-family: "yekan-Md";
}
.detail-product .detail .price-box .price .price-inner p {
  font-size: 26px;
  font-family: "yekan-Bold";
}
.detail-product .detail .price-box .price .price-inner p span {
  font-size: 12px;
}
.detail-product .detail .price-box .price .add-cart {
  margin-top: 10px;
}
.detail-product .detail .price-box .price .add-cart .add-cart-btn {
  width: 100%;
  font-family: "yekan-md";
  cursor: pointer;
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px;
}
.detail-product .detail .price-box .price .add-cart .add-cart-btn svg {
  fill: #fff;
}
.detail-product .detail .price-box .price .add-cart .quantity-field {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 30px;
  margin: 0 auto;
}
.detail-product .detail .price-box .price .add-cart .quantity-field .value-button {
  border: 1px solid #ffffff;
  margin: 0px;
  width: 30px;
  height: 100%;
  padding: 0;
  background: #ededed;
  outline: none;
  cursor: pointer;
  color: #000;
}
.detail-product .detail .price-box .price .add-cart .quantity-field .value-button img {
  width: 9px;
}
.detail-product .detail .price-box .price .add-cart .quantity-field .decrease-button {
  border-radius: 8px 0 0 8px;
}
.detail-product .detail .price-box .price .add-cart .quantity-field .increase-button {
  border-radius: 0 8px 8px 0;
}
.detail-product .detail .price-box .price .add-cart .quantity-field .number {
  display: inline-block;
  text-align: center;
  border: none;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  margin: 0px;
  width: 30px;
  height: 100%;
  line-height: 40px;
  font-size: 14px;
  box-sizing: border-box;
  background: white;
  font-family: "yekan-Re";
  display: flex;
  justify-content: center;
  align-items: center;
}
.detail-product .detail .price-box .price .add-cart .quantity-field .number::selection {
  background: none;
}
.detail-product .detail .price-box .price .benefit {
  display: flex;
  align-items: center;
  gap: 4px;
  color: green;
  font-size: 14px;
  margin-top: 6px;
}
.detail-product .detail .price-box .price .benefit span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(0, 161, 0);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-content: flex-end;
}

.close {
  cursor: pointer;
}

.modal-content {
  background: #fff;
  position: relative;
  margin: auto;
  padding: 20px;
  bottom: 0;
  width: 450px;
  max-width: 100%;
  height: max-content;
  border-radius: 20px 20px 0 0;
  animation: slideUp 0.4s ease-out forwards;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Yekan-Bold";
  font-size: 16px;
  margin-bottom: 12px;
}
.modal-header img {
  width: 20px;
}

#share .modal-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 12px;
}
#share .modal-content ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #004c98;
  border-radius: 8px;
  padding: 4px;
}
#share .modal-content ul a img {
  width: 75%;
  margin: auto;
}
#share .modal-content button {
  width: 100%;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  border-radius: 8px;
  font-size: 14px;
  padding: 6px 12px;
  background: transparent;
  font-family: "Yekan-Re";
  cursor: pointer;
}

.mz-hint {
  font-family: "Yekan-Md" !important;
}
.mz-hint .mz-hint-message {
  background: rgba(0, 0, 0, 0.9);
}

.mz-expand span,
.mz-expand a {
  display: none;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.tab-section {
  margin-top: 50px;
}
.tab-section .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-top: 20px;
  border-bottom: 1px solid #ddd;
  overflow: auto;
}
.tab-section .nav-tabs button {
  white-space: nowrap;
  opacity: 0.5;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  font-size: 16px;
  box-shadow: none;
  font-family: "Yekan-Md";
  background: transparent;
  transition: 0.3s;
  cursor: pointer;
  border: 0;
  border-bottom: 1px solid #ddd;
  height: 36px;
}
.tab-section .nav-tabs button img {
  width: 26px;
}
.tab-section .nav-tabs button.active {
  opacity: 1;
  background: transparent;
  border-bottom: 1px solid #004c98;
}
.tab-section .tab-content {
  min-height: 20rem;
  margin-top: 26px;
}
.tab-section .tab-content .tab-pane {
  display: none;
  opacity: 0;
  transition: 0.5s;
}
.tab-section .tab-content .tab-pane .title {
  color: #004c98;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 16px;
}
.tab-section .tab-content .tab-pane .title span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #004c98;
}
.tab-section .tab-content .tab-pane.show {
  display: block;
  opacity: 1;
  animation: opacity 0.5s linear;
}

.discounted-pro {
  margin-top: 40px;
}
.discounted-pro .title {
  margin-top: 6px;
  display: flex;
  align-items: center;
  max-width: 100%;
  gap: 6px;
  justify-content: center;
}
.discounted-pro .title hr {
  margin: 0;
  opacity: 1;
  background: #1a1a1a;
  width: 35%;
  border-width: 1px;
  border-color: #1a1a1a;
}
.discounted-pro .title span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fe8c0e;
}
.discounted-pro .title p {
  font-family: "Yekan-ExtraBold";
  font-size: 24px;
  padding: 0 8px;
}
.discounted-pro .owl-carousel .owl-prev,
.discounted-pro .owl-carousel .owl-next {
  color: #1a1a1a !important;
  height: max-content;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 40px 0px !important;
  background: #fff !important;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
  display: flex;
}
.discounted-pro .owl-carousel .owl-prev img,
.discounted-pro .owl-carousel .owl-next img {
  width: 20px;
}
.discounted-pro .owl-carousel .owl-nav {
  margin: 0;
}
.discounted-pro .owl-carousel .disabled {
  display: none;
}
.discounted-pro .owl-carousel .owl-next {
  left: 6px;
  border-radius: 0 10px 10px 0;
}
.discounted-pro .owl-carousel .owl-prev {
  right: 6px;
  border-radius: 10px 0 0 10px;
}
.discounted-pro .owl-carousel {
  margin-top: 16px;
}
.discounted-pro .owl-carousel .owl-item {
  padding: 6px;
}

.comments {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.comments .form {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 10px;
  position: sticky;
  top: 1rem;
}
.comments .form .rating {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}
.comments .form .rating .star-text {
  margin-right: 6px;
}
.comments .form .rating .star-text span:first-child {
  font-size: 30px;
  font-family: "yekan-ExtraBold";
}
.comments .form .rating .star-text span:last-child {
  font-size: 14px;
}
.comments .form .rating .star {
  background: url("../images/star-golden.png") repeat-x;
  margin-bottom: 5px;
  font-size: 0;
  height: 21px;
  line-height: 0;
  overflow: hidden;
  text-indent: -999em;
  width: 110px;
  margin: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -999em;
}
.comments .form .rating .star .rate {
  background: url("../images/star-golden.png") repeat-x;
  background-position: 0 100%;
  float: left;
  height: 21px;
  display: block;
}
.comments .form .title-form {
  display: flex;
  align-items: center;
  color: #1a1a1a;
  font-size: 14px;
  margin-bottom: 8px;
  justify-content: center;
  gap: 6px;
  font-family: "yekan-Md";
}
.comments .form .title-form svg {
  fill: #1a1a1a;
}
.comments .form button {
  width: 100%;
  font-family: "yekan-Md";
  cursor: pointer;
}
.comments .cm-displays {
  padding: 8px;
}
.comments .cm-displays .item {
  border-bottom: 1px solid #ddd;
  padding: 12px;
}
.comments .cm-displays .item .header .name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  font-family: "yekan-Bold";
}
.comments .cm-displays .item .header .name svg {
  fill: #004c98;
}
.comments .cm-displays .item .body {
  margin-top: 10px;
}
.comments .cm-displays .item .body .star-user {
  margin-top: 8px;
}
.comments .cm-displays .item .body .star-user .star {
  background: url("../images/star-golden.png") repeat-x;
  margin-bottom: 5px;
  font-size: 0;
  height: 21px;
  line-height: 0;
  overflow: hidden;
  text-indent: -999em;
  width: 110px;
  margin: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -999em;
}
.comments .cm-displays .item .body .star-user .star .rate {
  background: url("../images/star-golden.png") repeat-x;
  background-position: 0 100%;
  float: left;
  height: 21px;
  display: block;
}

.video {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.video .item-video {
  padding: 8px;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive table {
  caption-side: top;
  border-collapse: collapse;
}
.table-responsive caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: right;
}
.table-responsive th {
  text-align: inherit;
  text-align: -webkit-match-parent;
  width: 200px;
  color: #000;
}
.table-responsive thead,
.table-responsive tbody,
.table-responsive tfoot,
.table-responsive tr,
.table-responsive td,
.table-responsive th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
.table-responsive .table {
  background: transparent;
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #d1d1d1;
  font-size: 14px;
}
.table-responsive .table > :not(caption) > * > * {
  padding: 1rem 1rem;
  border-bottom-width: 1px;
}
.table-responsive .table > tbody {
  vertical-align: inherit;
}
.table-responsive .table > thead {
  vertical-align: bottom;
}
.table-responsive .table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}

#commentForm {
  align-content: center;
}
#commentForm .modal-content {
  height: max-content !important;
  width: 450px;
  max-width: 100%;
  animation: modal 0.4s forwards ease-in-out;
  bottom: unset;
  border-radius: 16px;
  padding: 10px 16px;
}
#commentForm .modal-content form {
  margin: 16px 0;
  border-radius: 10px;
}
#commentForm .modal-content form .input-section {
  width: 100%;
  margin-bottom: 12px;
}
#commentForm .modal-content form .input-section label {
  display: block;
  font-size: 14px;
  color: #555555;
  font-family: "yekan-Bold";
  margin-bottom: 4px;
}
#commentForm .modal-content form .input-section input,
#commentForm .modal-content form .input-section textarea {
  display: block;
  width: 100%;
  border: 0;
  background: #f1f1f1;
  border-radius: 8px;
  font-family: "yekan-Re";
  outline: none;
  box-shadow: none;
  padding: 8px 10px;
}
#commentForm .modal-content form button {
  width: 100%;
  font-family: "yekan-Md";
  margin-top: 8px;
  cursor: pointer;
}
#commentForm .modal-content .header {
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
}
#commentForm .modal-content .filter-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Yekan-Bold";
  font-size: 16px;
}
#commentForm .modal-content .filter-title img {
  width: 24px;
}

.close {
  cursor: pointer;
  display: flex;
}

.accordion-item {
  border-bottom: 1px solid #d7d7d7;
}
.accordion-item .cat {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  color: #737373;
}
.accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}
.accordion-item.active .inner .accordion-header::after {
  transform: none;
}
.accordion-item .accordion-header {
  padding: 10px 10px 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 14px;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.accordion-item .accordion-header::after {
  content: "";
  position: absolute;
  transition: 0.3s;
  left: 0;
  top: 0;
  bottom: 0;
  align-content: center;
  background-image: url("../images/chevron-down-menu.svg");
  background-size: 100% 100%;
  width: 18px;
  height: 100%;
}
.accordion-item .accordion-content {
  display: none;
  padding: 8px;
  background: #f2f8ff;
  border-radius: 14px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.75;
  width: 100%;
}

@keyframes modal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 1600px) {
  .detail .images {
    width: 30%;
  }
  .detail .property {
    width: 50%;
  }
  .detail .price-box {
    width: 20%;
  }
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .detail .images {
    width: 30%;
  }
  .detail .property {
    width: 48%;
  }
  .detail .price-box {
    width: 22%;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .detail .images {
    width: 30%;
  }
  .detail .property {
    width: 48%;
  }
  .detail .price-box {
    width: 22%;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .detail .images {
    order: 0;
    width: 50%;
  }
  .detail .property {
    order: 3;
    width: 100%;
    margin-top: 50px;
  }
  .detail .price-box {
    order: 2;
    width: 40%;
    margin-right: auto;
    position: unset !important;
  }
}
.properties li {
  width: 33.33%;
}

@media (min-width: 768px) and (max-width: 992px) {
  .discounted-pro .title hr {
    width: 30%;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .discounted-pro .title hr {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .comments .form {
    width: 25%;
  }
  .comments .cm-displays {
    width: 75%;
  }
  .video .item-video {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .comments .form {
    width: 100%;
    position: unset;
  }
  .comments .cm-displays {
    width: 100%;
    margin-top: 30px;
  }
  footer {
    padding-bottom: 10rem;
  }
  .video .item-video {
    width: 100%;
  }
  .detail-product {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .title.property {
    width: 100%;
  }
  .images {
    width: 100%;
    margin-top: 20px;
  }
  .images .app-figure {
    width: 100%;
    text-align: center;
  }
  .detail-product .detail .images .overlay ul li .tooltip {
    left: unset;
    right: 50%;
    border-radius: 10px 0 10px 10px;
  }
  .detail-product .detail .property .option-group .title {
    font-size: 16px !important;
  }
  .hero .breadcrumb ul {
    flex-wrap: nowrap;
    overflow: auto;
  }
  .hero .breadcrumb ul li {
    white-space: nowrap;
  }
  .hero .breadcrumb ul li a {
    white-space: nowrap;
  }
  .detail {
    margin-top: 0 !important;
  }
  .hero {
    margin-bottom: 8px !important;
  }
  .property {
    width: 100%;
  }
  .price-box {
    width: 100%;
    margin-top: 10px;
  }
  .modal-content {
    width: 100%;
  }
  .mobile-cart {
    position: fixed;
    bottom: 52px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -8px 13px 0 rgba(0, 0, 0, 0.1);
    padding: 8px 8px;
    z-index: 1;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
  }
  .mobile-cart .price-inner {
    text-align: center;
  }
  .mobile-cart .price-inner .old-price {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
  }
  .mobile-cart .price-inner .old-price .percent {
    background-color: #fe8c0e;
    color: #fff;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 6px;
  }
  .mobile-cart .price-inner .old-price del {
    color: #999999;
    font-size: 12px;
    font-family: "yekan-Md";
  }
  .mobile-cart .price-inner p {
    font-size: 18px;
    font-family: "yekan-Bold";
  }
  .mobile-cart .price-inner p span {
    font-size: 12px;
  }
  .mobile-cart .quantity-field {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 30px;
    margin: 0;
    margin-right: 0;
  }
  .mobile-cart .quantity-field .value-button {
    border: 1px solid #ffffff;
    margin: 0px;
    width: 40px;
    height: 100%;
    padding: 0;
    background: #ededed;
    outline: none;
    cursor: pointer;
    color: #000;
  }
  .mobile-cart .quantity-field .value-button img {
    width: 9px;
  }
  .mobile-cart .quantity-field .decrease-button {
    border-radius: 8px 0 0 8px;
  }
  .mobile-cart .quantity-field .increase-button {
    border-radius: 0 8px 8px 0;
  }
  .mobile-cart .quantity-field .number {
    display: inline-block;
    text-align: center;
    border: none;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    margin: 0px;
    width: 40px;
    height: 100%;
    line-height: 40px;
    font-size: 14px;
    box-sizing: border-box;
    background: white;
    font-family: "yekan-Re";
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mobile-cart .quantity-field .number::selection {
    background: none;
  }
  .mobile-cart .add-cart {
    margin-top: 4px;
  }
  .mobile-cart .add-cart .add-cart-btn {
    width: 100%;
    font-family: "yekan-md";
    cursor: pointer;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    font-size: 16px;
  }
  .mobile-cart .add-cart .add-cart-btn svg {
    fill: #fff;
  }
}
@media (max-width: 576px) {
  .discounted-pro .title p {
    font-size: 20px !important;
  }
  .discounted-pro .title hr {
    width: 19%;
  }
  .discounted-pro .owl-stage {
    display: flex;
  }
  .discounted-pro .owl-item .item {
    width: 14rem;
  }
  .detail-product .detail .property .option-group ul li button {
    padding: 8px 12px !important;
    font-size: 14px;
  }
  .properties li {
    padding: 4px !important;
    width: 50%;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(1000px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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