@charset "UTF-8";
.box-product-book {
  position: relative;
  background-color: var(--whitecolor);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px;
  gap: 30px;
  text-align: center;
  margin-bottom: 30px;
  z-index: 100;
  height: 535px;
  transition: all 0.3s;
}

.box-product-book .prs-offer {
  background-color: var(--redcolor);
  display: flex;
  width: 50px;
  height: 70px;
  justify-content: center;
  align-items: center;
  border-radius: 0px 0px 20px 20px;
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 100;
  font-size: 20px;
  font-weight: 800;
  color: var(--whitecolor);
}

.box-product-book:hover {
  box-shadow: 0px 4px 100px 0px rgba(69, 71, 75, 0.1);
}

.box-product-book .image {
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
}

.box-product-book .image > img {
  height: 100%;
  transition: all 0.3s;
}

.box-product-book:hover .image > img {
  transform: scale(0.9);
}

.box-product-book .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 70px;
}

.box-product-book .content .title {
  /* display: -webkit-box; */
  width: 100%;
  /* -webkit-box-orient: vertical; */
  /* -webkit-line-clamp: 1; */
  /* overflow: hidden; */
  transition: all 0.3s;
}
.box-product-book .content .title a {
  font-size: 17px;
  font-weight: 700;
  color: var(--blackcolor);
  line-height: 35px;
}

.box-product-book:hover .content .title {
  color: var(--maincolor);
}

.box-product-book .content .details-box {
  position: relative;
  width: 100%;
  height: 55px;
  overflow: hidden;
}

.box-product-book .content .details-box .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  color: var(--textcolor);
  text-align: center;
  margin: 0;
  transition: all 0.6s;
}

.box-product-book:hover .content .details-box .desc {
  opacity: 0;
  visibility: hidden;
}

.box-product-book .content .weather {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

.box-product-book:hover .content .weather {
  opacity: 1;
  visibility: visible;
}

.box-product-book .content .weather .list-status {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.box-product-book .content .weather .list-status > i {
  font-size: 25px;
  color: var(--textcolor);
}

.box-product-book .content .weather .list-status > i.active {
  color: var(--redcolor);
}

.box-product-book .content .weather .status {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: var(--textcolor);
  margin-top: 10px;
}

.box-product-book .features {
  background-color: var(--lightcolor);
  border-radius: 20px;
  padding: 20px;
  height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.box-product-book .features .item-fts {
  position: relative;
  width: 50%;
  text-align: center;
}

.box-product-book .features .item-fts .sub-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--textcolor);
  display: -webkit-box;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.box-product-book .features .item-fts .text {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: var(--blackcolor);
  display: -webkit-box;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.box-product-book .features .item-fts .tooltip-text {
  background-color: var(--whitecolor);
  padding: 10px 15px;
  border-radius: 12px;
  width: auto;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: var(--textcolor);
  box-shadow: 0px 4px 100px 0px rgba(69, 71, 75, 0.5);
  position: absolute;
  bottom: 25px;
  right: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transition: all 0.6s;
}

.box-product-book .features .item-fts .text:hover + .tooltip-text {
  opacity: 1;
  visibility: visible;
}

.box-product-book .options {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
}

.box-product-book .options .price .pr-title {
  display: flex;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  color: var(--textcolor);
}

.box-product-book .options .price .pr-number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 25px;
  font-weight: 700;
  color: var(--blackcolor);
  line-height: 1.2;
  flex-wrap: wrap;
}
.box-product-book .options .price .pr-number del {
  font-size: 16px;
  margin: 6px 0;
  text-decoration: line-through !important;
}

.box-product-book .options .price .pr-number .unit {
  font-size: 16px;
  font-weight: 600;
  color: var(--blackcolor);
  margin-right: 5px;
}

.box-product-book .options .btns-option {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.box-product-book .options .btns-option .btn-prd {
  background-color: rgba(155, 164, 180, 0.5);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  font-size: 22px;
  color: var(--whitecolor);
  transition: all 0.3s;
}

.box-product-book .options .btns-option .btn-cart {
  background-color: var(--maincolor);
  color: var(--whitecolor);
}

.box-product-book .options .btns-option .btn-bookmark:hover {
  background-color: var(--textcolor);
  color: var(--whitecolor);
}

.box-product-book .options .btns-option .btn-cart:hover {
  background-color: var(--pink);
  color: var(--whitecolor);
  box-shadow: 0px 4px 30px 0px rgba(244, 206, 20, 0.4);
}

/*---------------------- Product Page -----------------------*/
.content-pages {
  position: relative;
  padding-top: 150px;
  background: var(--lightcolor);
  padding-bottom: 100px;
}

.sec-breadcrumb {
  margin-bottom: 40px;
}

.outer-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.outer-breadcrumb .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.outer-breadcrumb .breadcrumb .breadcrumb-item,
.outer-breadcrumb .breadcrumb .breadcrumb-item > a {
  font-size: 12px;
  font-weight: 600;
  color: var(--blackcolor);
  transition: all 0.3s;
}

.outer-breadcrumb .breadcrumb .breadcrumb-item > a:hover {
  color: var(--maincolor);
}

.outer-breadcrumb .breadcrumb .breadcrumb-item {
  font-weight: 400;
  color: var(--textcolor);
  padding: 0;
}

.outer-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\e91e";
  font-family: "icomoon";
  font-size: 15px;
  display: inline-block;
  padding: 0 10px;
  color: var(--textcolor);
  opacity: 0.5;
  line-height: 1.1;
  float: none;
  vertical-align: middle;
}

.outer-breadcrumb .btn-share-page {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row-reverse;
  font-size: 12px;
  font-weight: 600;
  color: var(--blackcolor);
  flex-shrink: 0;
  transition: all 0.3s;
}

.outer-breadcrumb .btn-share-page:hover {
  color: var(--maincolor);
}

.outer-breadcrumb .btn-share-page > i {
  font-size: 20px;
  color: var(--textcolor);
  margin-right: 10px;
  transition: all 0.3s;
}

.outer-breadcrumb .btn-share-page:hover > i {
  color: var(--subcolor);
}

.content-pages .sec-header-product .images-product {
  background-color: var(--whitecolor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 540px;
  padding: 15px;
  border-radius: 30px;
}

.content-pages .sec-header-product .images-product .head-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-pages .sec-header-product .images-product .btns-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.content-pages .sec-header-product .images-product .btns-head .btn-item {
  font-size: 20px;
  color: var(--textcolor);
}

.content-pages .sec-header-product .images-product .btns-head .icon-bookmark {
  font-size: 22px;
  transition: all 0.3s;
}

.content-pages .sec-header-product .images-product .btns-head .icon-bookmark-fill {
  color: var(--maincolor);
}

.content-pages .sec-header-product .images-product .arrows {
  /* background-color: var(--textcolor); */
  width: 50px;
  height: 25px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.content-pages .sec-header-product .images-product .arrows .sw-arrow {
  display: flex;
  font-size: 16px;
  color: var(--whitecolor);
  width: 25px;
  background: var(--textcolor);
  height: 25px;
  align-items: center;
  justify-content: center;
}
.content-pages .sec-header-product .images-product .arrows .sw-product-next {
  border-radius: 0 100px 100px 0;
}
.content-pages .sec-header-product .images-product .arrows .sw-product-prev {
  border-radius: 100px 0 0 100px;
}

.content-pages .sec-header-product .images-product .arrows .sw-arrow.swiper-button-disabled {
  opacity: 0.3;
}

.content-pages .sec-header-product .swiper-product-page-images {
  width: 100%;
  flex-shrink: 0;
}

.content-pages .sec-header-product .swiper-product-page-images .swiper-slide {
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
}

.content-pages .sec-header-product .swiper-product-page-images .swiper-slide img {
  width: 350px;
}

.content-pages .sec-header-product .swiper-thumbs-product {
  width: 100%;
  flex-shrink: 0;
}

.content-pages .sec-header-product .swiper-thumbs-product .swiper-slide {
  cursor: pointer;
  background-color: var(--lightcolor);
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all 0.3s;
  overflow: hidden;
}
.content-pages .sec-header-product .swiper-thumbs-product .swiper-slide img {
  width: 100%;
}

.content-pages .sec-header-product .swiper-thumbs-product .swiper-slide-thumb-active {
  background-color: rgba(155, 164, 180, 0.3);
}

.content-pages .sec-header-product .cart-details {
  padding: 0;
}

.content-pages .sec-header-product .cart-details .box-cart {
  background-color: var(--whitecolor);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  /* height: 430px; */
  padding: 30px;
  border-radius: 30px;
  position: sticky;
  top: 0;
}
.content-pages .sec-header-product .cart-details .box-cart .inner {
  width: 100%;
}
.content-pages .sec-header-product .cart-details .box-cart form.product-variations {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.content-pages .sec-header-product .cart-details .box-cart form.product-variations .bottom-cart {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-top: 15px;
}
.content-pages .sec-header-product .cart-details .box-cart form.product-variations .bottom-cart .variations {
  width: 100%;
}
.content-pages .sec-header-product .cart-details .box-cart form.product-variations .bottom-cart .variations label {
  font-size: 12px;
  color: var(--textcolor);
  position: relative;
}
.content-pages .sec-header-product .cart-details .box-cart form.product-variations .bottom-cart .variations label[data-required=True]::after {
  content: "*";
  position: absolute;
  left: -10px;
  color: #ff0000;
}
.content-pages .sec-header-product .cart-details .box-cart form.product-variations .bottom-cart .variations select {
  display: inline-block;
  width: 100%;
  height: 35px;
  padding: 0 10px;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23A8AEB2' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 10px center/8px 10px !important;
  border: 1px solid #c8c8c8;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: left !important;
  background-position-x: 10px !important;
  font-size: 13px;
}
.content-pages .sec-header-product .cart-details .box-cart form.product-variations .bottom-cart .variations select option[disabled] {
  background: #bbbaba;
  color: #000;
}
.content-pages .sec-header-product .cart-details .box-cart form.product-variations .bottom-cart .product-price-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-top: 15px;
}

.content-pages .sec-header-product .cart-details .warning-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.content-pages .sec-header-product .cart-details .warning-info .title-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-pages .sec-header-product .cart-details .warning-info .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0;
}

.content-pages .sec-header-product .cart-details .warning-info .icon-info {
  font-size: 20px;
  color: var(--textcolor);
}

.content-pages .sec-header-product .cart-details .warning-info .desc-info {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  color: var(--textcolor);
}

.content-pages .sec-header-product .cart-details .options {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
  flex-direction: column;
  gap: 15px;
}

.content-pages .sec-header-product .cart-details .options .price {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-pages .sec-header-product .cart-details .options .price .pr-title {
  display: flex;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  color: var(--textcolor);
}
.content-pages .sec-header-product .cart-details .options .price .pr-number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 25px;
  font-weight: 700;
  color: var(--blackcolor);
  line-height: 1.2;
}
.content-pages .sec-header-product .cart-details .options .price .pr-number .unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--blackcolor);
  margin-right: 5px;
}
.content-pages .sec-header-product .cart-details .options .price .pr-number .num {
  margin-left: 4px;
}
.content-pages .sec-header-product .cart-details .options .price .pr-number.cross-price {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--neutral-500);
}
.content-pages .sec-header-product .cart-details .options .price .pr-number.cross-price .num {
  text-decoration: line-through;
}
.content-pages .sec-header-product .cart-details .options .price .cover-outofstock {
  z-index: 2;
  position: relative;
  text-align: center;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.content-pages .sec-header-product .cart-details .options .price .cover-outofstock::before {
  content: "";
  height: 1px;
  width: 100%;
  left: 0;
  top: 50%;
  position: absolute;
  background: #ababab;
  z-index: -1;
}
.content-pages .sec-header-product .cart-details .options .price .cover-outofstock span {
  color: #ababab;
  font-weight: normal;
  background: #fff;
  display: inline-block;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 16px;
}

.content-pages .sec-header-product .cart-details .options .offer {
  background-color: var(--yellowcolor);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 800;
  color: var(--subcolor);
  box-shadow: 0px 4px 30px 0px rgba(244, 206, 20, 0.4);
}

.content-pages .sec-header-product .cart-details .counter {
  background-color: var(--lightcolor);
  border-radius: 20px;
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 80px;
  align-self: stretch;
}

.content-pages .sec-header-product .cart-details .counter .lbl-counter {
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  color: var(--blackcolor);
}

.content-pages .sec-header-product .cart-details .counter .countnumber-book {
  display: flex;
  height: 20px;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}

.content-pages .sec-header-product .cart-details .counter .bsh-count {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  color: var(--textcolor);
  font-size: 20px;
  opacity: 0.5;
  transition: all 0.3s;
}

.content-pages .sec-header-product .cart-details .counter .bsh-count:hover {
  opacity: 1;
}

.content-pages .sec-header-product .cart-details .counter .number {
  font-size: 22px;
  font-weight: 600;
  color: var(--blackcolor);
}

.content-pages .sec-header-product .cart-details .btn-add-cart {
  background-color: var(--maincolor);
  display: flex;
  width: 100%;
  height: 70px;
  padding: 25px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 4px 30px 0px rgba(55, 151, 119, 0.4);
  font-size: 16px;
  font-weight: 700;
  color: var(--whitecolor);
  border: none;
  flex-shrink: 0;
  transition: all 0.3s;
  cursor: pointer;
}
.content-pages .sec-header-product .cart-details .btn-add-cart:disabled {
  background-color: var(--coolgray);
}
.content-pages .sec-header-product .cart-details .btn-add-cart:not(:disabled):hover {
  background-color: var(--maincolor);
  box-shadow: 0px 4px 30px 0px rgba(0, 69, 61, 0.5);
}
.content-pages .sec-header-product .cart-details .btn-add-cart:not(:disabled):hover .icon-plus-small {
  background-color: var(--yellowcolor);
  color: var(--subcolor);
}

.content-pages .sec-header-product .cart-details .btn-add-cart .icon-plus-small {
  background-color: var(--whitecolor);
  width: 35px;
  height: 35px;
  border-radius: 100px;
  font-size: 24px;
  color: var(--maincolor);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.content-pages .sec-header-product .cart-details .btn-download-catalog,
.sec-news-details .cart-details .btn-list-comments {
  background-color: var(--whitecolor);
  height: 90px;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-top: 20px;
  transition: all 0.3s;
}

.content-pages .sec-header-product .cart-details .btn-download-catalog:hover,
.sec-news-details .cart-details .btn-list-comments:hover {
  box-shadow: 0px 4px 100px 0px rgba(69, 71, 75, 0.1);
}

.content-pages .sec-header-product .cart-details .btn-download-catalog .content,
.sec-news-details .cart-details .btn-list-comments .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}

.content-pages .sec-header-product .cart-details .btn-download-catalog .title,
.sec-news-details .cart-details .btn-list-comments .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0;
}

.content-pages .sec-header-product .cart-details .btn-download-catalog .desc,
.sec-news-details .cart-details .btn-list-comments .desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--textcolor);
}

.content-pages .sec-header-product .cart-details .btn-download-catalog > i,
.sec-news-details .cart-details .btn-list-comments > i {
  font-size: 28px;
  color: var(--maincolor);
}

.content-pages .sec-header-product .details-product {
  padding: 20px 30px;
}

.content-pages .sec-header-product .details-product .product-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0;
}

.content-pages .sec-header-product .details-product .weather {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.content-pages .sec-header-product .details-product .list-status {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.content-pages .sec-header-product .details-product .list-status > i {
  font-size: 20px;
  color: var(--textcolor);
}

.content-pages .sec-header-product .details-product .list-status > i.active {
  color: var(--redcolor);
}

.content-pages .sec-header-product .details-product .weather .status {
  display: flex;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--textcolor);
}

.content-pages .sec-header-product .details-product .row-features {
  margin-top: 40px;
}

.content-pages .sec-header-product .details-product .head-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 5px;
  margin-bottom: 15px;
}

.content-pages .sec-header-product .details-product .head-title-row .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0;
}

.content-pages .sec-header-product .details-product .head-title-row .btn-more {
  font-size: 15px;
  font-weight: 700;
  color: var(--maincolor);
  transition: all 0.3s;
}

.content-pages .sec-header-product .details-product .head-title-row .btn-more:hover {
  color: var(--subcolor);
}

.content-pages .sec-header-product .details-product .features {
  background: rgba(155, 164, 180, 0.1);
  border-radius: 25px;
  padding: 20px 30px;
  width: 100%;
  /* display: flex; 
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;*/
  font-size: 14px;
  line-height: 30px;
  overflow-x: auto;
}

.content-pages .sec-header-product .details-product .features .row-fts {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-pages .sec-header-product .details-product .features .item-fts {
  position: relative;
  width: 95px;
  text-align: center;
}

.content-pages .sec-header-product .details-product .features .item-fts .sub-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--textcolor);
  display: -webkit-box;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.content-pages .sec-header-product .details-product .features .item-fts .text {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: var(--blackcolor);
  display: -webkit-box;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.content-pages .sec-header-product .details-product .features .item-fts .tooltip-text {
  background-color: var(--whitecolor);
  padding: 10px 15px;
  border-radius: 12px;
  width: auto;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: var(--textcolor);
  box-shadow: 0px 4px 100px 0px rgba(69, 71, 75, 0.5);
  position: absolute;
  bottom: 25px;
  right: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transition: all 0.6s;
}

.content-pages .sec-header-product .details-product .features .item-fts .text:hover + .tooltip-text {
  opacity: 1;
  visibility: visible;
}

.content-pages .sec-header-product .details-product hr.spacing {
  border-top-color: rgba(155, 164, 180, 0.2);
  width: 99%;
  margin: 40px auto;
}

.content-pages .sec-header-product .details-product .desc-text {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  color: var(--textcolor);
  text-align: justify;
  overflow: hidden;
  margin: 15px 0 0;
}

.content-pages .sec-features-book {
  margin: 40px 0;
}

section.sec-other-contents {
  padding-bottom: 100px;
}

.sec-other-contents .tab-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--whitecolor);
  border-radius: 50px;
  padding-bottom: 15px;
  padding-right: 10px;
  padding-left: 10px;
}

.sec-other-contents .tab-contents .head-sticky {
  position: sticky;
  width: 100%;
  align-self: flex-start;
  top: 94px;
  z-index: 99;
  background-color: var(--lightcolor);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 15px 30px;
  border-radius: 25px;
  margin-bottom: 60px;
  transition: all 0.3s;
}

.sec-other-contents .tab-contents .head-sticky.fixed {
  border-radius: 0 0 25px 25px;
  box-shadow: 0px 4px 100px 0px rgba(69, 71, 75, 0.3);
}

.sec-other-contents .tab-contents .head-normal {
  width: 100%;
  align-self: flex-start;
  background-color: var(--lightcolor);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 15px 30px;
  border-radius: 25px;
  margin-bottom: 60px;
}
.sec-other-contents .tab-contents .head-normal h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}

.sec-other-contents .head-sticky .list-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.sec-other-contents .head-sticky .list-tabs .item-tab {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--blackcolor);
  padding: 15px 0;
  transition: all 0.3s;
}

.sec-other-contents .head-sticky .list-tabs .item-tab.active {
  background-color: var(--whitecolor);
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0px 4px 100px 0px rgba(69, 71, 75, 0.1);
  font-weight: 700;
  color: var(--maincolor);
}

.sec-other-contents .head-sticky .list-tabs .item-tab::after {
  content: "";
  width: 0;
  height: 4px;
  background-color: var(--maincolor);
  border-radius: 100px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s 0.2s;
}

.sec-other-contents .head-sticky .list-tabs .item-tab.active::after {
  width: 60px;
  opacity: 1;
  visibility: visible;
}

.sec-other-contents .tab-contents .row-head-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sec-other-contents .tab-contents .title-head-section {
  background-color: var(--maincolor);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--whitecolor);
  margin: 0 0 40px;
}

.sec-other-contents .tab-contents .row-head-between .title-head-section {
  margin: 0;
}

.sec-other-contents .tab-contents .row-head-between .desc-head-section {
  font-size: 16px;
  font-weight: 700;
  color: var(--textcolor);
}

.sec-other-contents .tab-contents hr.spacing {
  width: 100%;
  height: 1px;
  border: none;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='2' stroke-dasharray='6%2c 10' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  opacity: 0.12;
  margin: 60px 0;
}

.sec-other-contents .tab-contents .section {
  width: 100%;
}

.sec-other-contents .tab-contents .box-desc {
  position: relative;
  height: 950px;
  overflow: hidden;
}

.sec-other-contents .tab-contents .box-desc.show {
  height: auto;
  padding-bottom: 40px;
}

.sec-other-contents .tab-contents .box-desc::after {
  content: "";
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: -webkit-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 230px;
  z-index: 1050;
}

.sec-other-contents .tab-contents .box-desc.show::after {
  display: none;
}

.sec-other-contents .tab-contents .box-desc h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0 0 15px;
}

.sec-other-contents .tab-contents .box-desc p {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  text-align: justify;
  color: var(--blackcolor);
  margin: 0;
}

.sec-other-contents .tab-contents .box-desc p a {
  font-weight: 700;
  color: var(--maincolor);
  text-decoration: underline !important;
}

.sec-other-contents .tab-contents .box-desc .banner-desc {
  position: relative;
  background-color: var(--subcolor);
  height: 200px;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 40px;
  overflow: hidden;
  margin: 40px 0;
}

.sec-other-contents .tab-contents .box-desc .banner-desc::before {
  content: "";
  width: 600px;
  height: 600px;
  position: absolute;
  right: -150px;
  bottom: -400px;
  border-radius: 500px;
  opacity: 0.6;
  background: var(--maincolor);
  filter: blur(1000px);
}

.sec-other-contents .tab-contents .box-desc .banner-desc .details {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sec-other-contents .tab-contents .box-desc .banner-desc .svg-fruit {
  width: 90px;
  height: 90px;
  margin-left: 30px;
  flex-shrink: 0;
}

.sec-other-contents .tab-contents .box-desc .banner-desc .path-color {
  fill: var(--yellowcolor);
  stroke: var(--yellowcolor);
}

.sec-other-contents .tab-contents .box-desc .banner-desc .content .title {
  font-size: 28px;
  font-weight: 200;
  color: var(--whitecolor);
  margin: 0 0 5px;
}

.sec-other-contents .tab-contents .box-desc .banner-desc .content .title > strong {
  font-weight: 800;
}

.sec-other-contents .tab-contents .box-desc .banner-desc .content .desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--whitecolor);
  margin: 0;
  line-height: normal;
}

.sec-other-contents .tab-contents .box-desc .banner-desc .btn-link-banner {
  background-color: var(--yellowcolor);
  display: flex;
  height: 70px;
  padding: 25px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 4px 30px 0px rgba(244, 206, 20, 0.4);
  font-size: 16px;
  font-weight: 700;
  color: var(--subcolor);
  border: none;
  flex-shrink: 0;
  transition: all 0.3s;
}

.sec-other-contents .tab-contents .box-desc .banner-desc .btn-link-banner:hover {
  background-color: var(--whitecolor);
  box-shadow: 0px 4px 30px 0px rgba(255, 255, 255, 0.4);
}

.sec-other-contents .tab-contents .box-desc .banner-desc .btn-link-banner .arrow-left {
  background-color: var(--whitecolor);
  padding: 5px;
  height: 22px;
  border-radius: 100px;
  margin-right: 10px;
  font-size: 24px;
  color: var(--subcolor);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.sec-other-contents .tab-contents .box-desc .banner-desc .btn-link-banner:hover .arrow-left {
  background-color: var(--subcolor);
  color: var(--whitecolor);
}

.sec-other-contents .tab-contents .box-desc .btn-more-description {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 2000;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blackcolor);
  opacity: 0.5;
}

.sec-other-contents .tab-contents .box-desc .btn-more-description::before {
  content: "نمایش بیشتر";
}

.sec-other-contents .tab-contents .box-desc.show .btn-more-description::before {
  content: "نمایش کمتر";
}

.sec-other-contents .tab-contents .box-desc .btn-more-description > i {
  font-size: 18px;
  transition: all 0.3s;
}

.sec-other-contents .tab-contents .box-desc.show .btn-more-description > i {
  transform: rotate(180deg);
}

.sec-other-contents .tab-specification .row-specif {
  margin: 0 -7.5px;
  gap: 15px 0;
}

.sec-other-contents .tab-specification .item-specif {
  padding: 0 7.5px;
}

.sec-other-contents .tab-specification .box-specif {
  background-color: var(--lightcolor);
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec-other-contents .tab-specification .box-specif .label {
  font-size: 14px;
  font-weight: 700;
  color: var(--textcolor);
  text-align: right;
}

.sec-other-contents .tab-specification .box-specif .text {
  font-size: 14px;
  font-weight: 600;
  color: var(--blackcolor);
  text-align: right;
}

.sec-other-contents .tab-faqlist .list-accordian .accordion-item {
  background-color: var(--lightcolor);
  margin-bottom: 20px;
}

.sec-other-contents .tab-faqlist .list-accordian .accordion-item .accordion-header .title {
  font-size: 16px;
}

.sec-other-contents .tab-faqlist .list-accordian .accordion-item .accordion-header .box-icon {
  font-size: 22px;
}

.sec-other-contents .tab-faqlist .list-accordian .accordion-item:last-child {
  margin-bottom: 0;
}

.sec-other-contents .tab-faqlist .list-accordian .accordion-item.active {
  background-color: var(--whitecolor);
}

.sec-other-contents .tab-comments .item-comment,
.sec-news-details .content-news .item-comment,
.sec-profile-page .box-outer-profile .item-comment {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.sec-other-contents .tab-comments .item-comment.answer,
.sec-news-details .content-news .item-comment.answer {
  padding-right: 80px;
}

.sec-other-contents .tab-comments .box-comment,
.sec-news-details .content-news .box-comment,
.sec-profile-page .box-outer-profile .box-comment {
  position: relative;
  background-color: var(--lightcolor);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  padding: 20px;
  gap: 30px;
  border-radius: 30px;
  z-index: 100;
}

.sec-other-contents .tab-comments .item-comment.answer .box-comment,
.sec-news-details .content-news .item-comment.answer .box-comment {
  background-color: var(--whitecolor);
  box-shadow: 0px 4px 100px 0px rgba(69, 71, 75, 0.1);
}

.sec-other-contents .tab-comments .item-comment.answer::before,
.sec-news-details .content-news .item-comment.answer::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 40px;
  width: 1px;
  height: 37px;
  background: rgb(155, 164, 180);
  background: -moz-linear-gradient(0deg, rgba(155, 164, 180, 0.4) 0%, rgba(155, 164, 180, 0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(155, 164, 180, 0.4) 0%, rgba(155, 164, 180, 0) 100%);
  background: linear-gradient(0deg, rgba(155, 164, 180, 0.4) 0%, rgba(155, 164, 180, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9ba4b4", endColorstr="#9ba4b4", GradientType=1);
}

.sec-other-contents .tab-comments .item-comment.answer::after,
.sec-news-details .content-news .item-comment.answer::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 40px;
  width: 90px;
  height: 50px;
  border-bottom-right-radius: 30px;
  border-right: 1px solid var(--textcolor);
  border-bottom: 1px solid var(--textcolor);
  opacity: 0.4;
}

.sec-other-contents .tab-comments .result-ratings,
.sec-news-details .content-news .result-ratings,
.modal-book .modal-form-comment .result-ratings {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  background-color: var(--whitecolor);
  width: 400px;
  padding: 20px;
  border-radius: 20px;
  flex-shrink: 0;
}

.sec-other-contents .tab-comments .result-ratings .item-rate,
.sec-news-details .content-news .result-ratings .item-rate,
.modal-book .modal-form-comment .result-ratings .item-rate {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid rgba(155, 164, 180, 0.2);
}

.sec-other-contents .tab-comments .result-ratings .item-rate:last-child,
.sec-news-details .content-news .result-ratings .item-rate:last-child,
.modal-book .modal-form-comment .result-ratings .item-rate:last-child {
  border-bottom: none;
}

.sec-other-contents .tab-comments .result-ratings .rating-book,
.sec-news-details .content-news .result-ratings .rating-book,
.modal-book .modal-form-comment .result-ratings .rating-book {
  gap: 10px;
}

.sec-other-contents .tab-comments .result-ratings .br-theme-bars-book .br-widget,
.sec-news-details .content-news .result-ratings .br-theme-bars-book .br-widget,
.modal-book .modal-form-comment .result-ratings .br-theme-bars-book .br-widget {
  width: 100px;
}

.sec-other-contents .tab-comments .result-ratings .br-theme-bars-book .br-widget a,
.sec-news-details .content-news .result-ratings .br-theme-bars-book .br-widget a,
.modal-book .modal-form-comment .result-ratings .br-theme-bars-book .br-widget a {
  width: 5px;
  height: 5px;
}

.sec-other-contents .tab-comments .result-ratings .br-theme-bars-book .br-widget .br-current,
.sec-news-details .content-news .result-ratings .br-theme-bars-book .br-widget .br-current,
.modal-book .modal-form-comment .result-ratings .br-theme-bars-book .br-widget .br-current {
  width: 12px;
  height: 12px;
}

.sec-other-contents .tab-comments .result-ratings .rating-book .counts,
.sec-news-details .content-news .result-ratings .counts,
.modal-book .modal-form-comment .result-ratings .counts {
  gap: 3px;
}

.sec-other-contents .tab-comments .result-ratings .rating-book .counts .all,
.sec-other-contents .tab-comments .result-ratings .rating-book .counts .value,
.sec-news-details .content-news .result-ratings .counts .all,
.sec-news-details .content-news .result-ratings .counts .value,
.modal-book .modal-form-comment .result-ratings .counts .all,
.modal-book .modal-form-comment .result-ratings .counts .value {
  font-size: 22px;
}

.sec-other-contents .tab-comments .result-ratings .rating-book .counts .slash,
.sec-news-details .content-news .result-ratings .counts .slash,
.modal-book .modal-form-comment .result-ratings .counts .slash {
  font-size: 18px;
}

.sec-other-contents .tab-comments .result-ratings .rating-book .title-rating,
.sec-news-details .content-news .result-ratings .rating-book .title-rating {
  width: 100%;
  color: var(--blackcolor);
}

.sec-other-contents .tab-comments .details-comment,
.sec-news-details .content-news .details-comment,
.sec-profile-page .box-outer-profile .details-comment {
  padding: 15px 0;
}

.sec-other-contents .tab-comments .item-comment.answer .details-comment,
.sec-news-details .content-news .item-comment.answer .details-comment {
  padding: 0;
}

.sec-other-contents .tab-comments .details-comment .head,
.sec-news-details .content-news .details-comment .head,
.sec-profile-page .box-outer-profile .details-comment .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 15px;
  border-bottom: 1px solid rgba(155, 164, 180, 0.2);
}

.sec-other-contents .tab-comments .item-comment.answer .head,
.sec-news-details .content-news .item-comment.answer .details-comment .head {
  padding: 0 0 15px;
}

.sec-other-contents .tab-comments .details-comment .user-info,
.sec-news-details .content-news .details-comment .user-info,
.sec-profile-page .box-outer-profile .details-comment .user-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sec-other-contents .tab-comments .details-comment .user-info .image,
.sec-news-details .content-news .details-comment .user-info .image,
.sec-profile-page .box-outer-profile .details-comment .user-info .image {
  width: 52px;
  height: 52px;
  border-radius: 500px;
  border: 2px solid rgba(155, 164, 180, 0.2);
  background-clip: padding-box;
  margin-left: 15px;
  overflow: hidden;
}

.sec-other-contents .tab-comments .details-comment .user-info .image > img,
.sec-news-details .content-news .details-comment .user-info .image > img,
.sec-profile-page .box-outer-profile .details-comment .user-info .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-other-contents .tab-comments .details-comment .user-info .info,
.sec-news-details .content-news .details-comment .user-info .info,
.sec-profile-page .box-outer-profile .details-comment .user-info .info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.sec-other-contents .tab-comments .details-comment .user-info .fullname,
.sec-news-details .content-news .details-comment .user-info .fullname,
.sec-profile-page .box-outer-profile .details-comment .user-info .fullname {
  font-size: 16px;
  font-weight: 700;
  color: var(--blackcolor);
}

.sec-other-contents .tab-comments .details-comment .user-info .status,
.sec-news-details .content-news .details-comment .user-info .status,
.sec-profile-page .box-outer-profile .details-comment .user-info .status {
  font-size: 14px;
  font-weight: 600;
  color: var(--textcolor);
}

.sec-other-contents .tab-comments .details-comment .desc,
.sec-news-details .content-news .details-comment .desc,
.sec-profile-page .box-outer-profile .details-comment .desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 30px;
  color: var(--blackcolor);
  text-align: justify;
  margin: 20px 0;
}

.sec-other-contents .tab-comments .item-comment.answer .details-comment .desc,
.sec-news-details .content-news .item-comment.answer .details-comment .desc {
  margin: 20px 0 0;
}

.sec-other-contents .tab-comments .details-comment .options,
.sec-news-details .content-news .details-comment .options,
.sec-profile-page .box-outer-profile .details-comment .options {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec-other-contents .tab-comments .details-comment .btn-answer,
.sec-news-details .content-news .details-comment .btn-answer,
.sec-profile-page .box-outer-profile .details-comment .btn-answer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--textcolor);
}

.sec-other-contents .tab-comments .details-comment .btn-answer > i,
.sec-news-details .content-news .details-comment .btn-answer > i,
.sec-profile-page .box-outer-profile .details-comment .btn-answer > i {
  font-size: 20px;
}

.sec-other-contents .tab-comments .details-comment .viewpoint,
.sec-news-details .content-news .details-comment .viewpoint,
.sec-profile-page .box-outer-profile .details-comment .viewpoint {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.sec-other-contents .tab-comments .details-comment .viewpoint .text,
.sec-news-details .content-news .details-comment .viewpoint .text,
.sec-profile-page .box-outer-profile .details-comment .viewpoint .text {
  font-size: 14px;
  font-weight: 500;
  color: var(--textcolor);
}

.sec-other-contents .tab-comments .details-comment .viewpoint .result,
.sec-news-details .content-news .details-comment .viewpoint .result,
.sec-profile-page .box-outer-profile .details-comment .viewpoint .result {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.sec-other-contents .tab-comments .details-comment .viewpoint .btn-like,
.sec-other-contents .tab-comments .details-comment .viewpoint .btn-dislike,
.sec-news-details .content-news .details-comment .viewpoint .btn-like,
.sec-news-details .content-news .details-comment .viewpoint .btn-dislike,
.sec-profile-page .box-outer-profile .details-comment .viewpoint .btn-like,
.sec-profile-page .box-outer-profile .details-comment .viewpoint .btn-dislike {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--maincolor);
}

.sec-other-contents .tab-comments .details-comment .viewpoint .btn-dislike,
.sec-news-details .content-news .details-comment .viewpoint .btn-dislike,
.sec-profile-page .box-outer-profile .details-comment .viewpoint .btn-dislike {
  color: var(--textcolor);
}

.sec-other-contents .tab-comments .details-comment .viewpoint .btn-like > i,
.sec-other-contents .tab-comments .details-comment .viewpoint .btn-dislike > i,
.sec-news-details .content-news .details-comment .viewpoint .btn-like > i,
.sec-news-details .content-news .details-comment .viewpoint .btn-dislike > i,
.sec-profile-page .box-outer-profile .details-comment .viewpoint .btn-like > i,
.sec-profile-page .box-outer-profile .details-comment .viewpoint .btn-dislike > i {
  font-size: 24px;
}

.sec-other-contents .tab-comments .details-comment .viewpoint .btn-dislike > i,
.sec-news-details .content-news .details-comment .viewpoint .btn-dislike > i,
.sec-profile-page .box-outer-profile .details-comment .viewpoint .btn-dislike > i {
  transform: scaleX(-1);
}

.sec-other-contents .tab-comments .row-add-comment,
.sec-news-details .content-news .row-add-comment {
  margin-top: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.sec-other-contents .tab-comments .form-comment .head-form,
.sec-news-details .content-news .form-comment .head-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sec-other-contents .tab-comments .form-comment .head-form .title,
.sec-news-details .content-news .form-comment .head-form .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0;
}

.sec-other-contents .tab-comments .form-comment .head-form .btn-logout,
.sec-news-details .content-news .form-comment .head-form .btn-logout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--textcolor);
  transition: all 0.3s;
}

.sec-other-contents .tab-comments .form-comment .head-form .btn-logout:hover,
.sec-news-details .content-news .form-comment .head-form .btn-logout:hover {
  color: var(--maincolor);
  gap: 6px;
}

.sec-other-contents .tab-comments .form-comment .head-form .btn-logout > i,
.sec-news-details .content-news .form-comment .head-form .btn-logout > i {
  font-size: 20px;
}

.sec-other-contents .tab-comments .form-comment .row-form-comment,
.sec-news-details .content-news .form-comment .row-form-comment {
  margin: 0 -10px;
}

.sec-other-contents .tab-comments .form-comment .form-group,
.sec-news-details .content-news .form-comment .form-group {
  margin: 0 0 20px;
  padding: 0 10px;
}

.sec-other-contents .tab-comments .form-comment .form-control, .sec-news-details .content-news .form-comment .form-control {
  width: 100%;
  height: 60px;
  padding: 10px 25px;
  text-align: right;
  border-radius: 20px;
  border: 2px solid rgba(155, 164, 180, 0.2);
  background-color: var(--whitecolor);
  font-size: 15px;
  font-weight: 700;
  color: var(--blackcolor);
  box-shadow: none;
  transition: all 0.3s;
}

.sec-other-contents .tab-comments .form-comment .form-control:focus,
.sec-news-details .content-news .form-comment .form-control:focus {
  border-color: var(--maincolor);
}

.sec-other-contents .tab-comments .form-comment .form-control::placeholder,
.sec-news-details .content-news .form-comment .form-control::placeholder {
  font-size: 14px;
  font-weight: 600;
  color: var(--textcolor);
  opacity: 0.5;
}

.sec-other-contents .tab-comments .form-comment textarea.form-control,
.sec-news-details .content-news .form-comment textarea.form-control {
  height: 125px;
  padding: 25px;
}

.sec-other-contents .tab-comments .form-comment .bottom-form,
.sec-news-details .content-news .form-comment .bottom-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.sec-other-contents .tab-comments .form-comment .message-form,
.sec-news-details .content-news .form-comment .message-form {
  font-size: 14px;
  font-weight: 700;
  color: var(--textcolor);
}

.sec-other-contents .tab-comments .form-comment .btn-send-form,
.sec-news-details .content-news .form-comment .btn-send-form {
  background-color: var(--maincolor);
  display: flex;
  height: 70px;
  padding: 25px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 4px 30px 0px rgba(55, 151, 119, 0.4);
  font-size: 16px;
  font-weight: 600;
  color: var(--whitecolor);
  border: none;
  flex-shrink: 0;
  transition: all 0.3s;
}

.sec-other-contents .tab-comments .form-comment .btn-send-form:hover,
.sec-news-details .content-news .form-comment .btn-send-form:hover {
  background-color: var(--subcolor);
  box-shadow: 0px 4px 30px 0px rgba(0, 69, 61, 0.4);
}

.sec-other-contents .tab-comments .form-comment .btn-send-form .arrow-left,
.sec-news-details .content-news .form-comment .btn-send-form .arrow-left {
  background-color: var(--whitecolor);
  padding: 5px;
  height: 22px;
  border-radius: 100px;
  margin-right: 10px;
  font-size: 24px;
  color: var(--maincolor);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.sec-other-contents .tab-comments .form-comment .btn-send-form:hover .arrow-left,
.sec-news-details .content-news .form-comment .btn-send-form:hover .arrow-left {
  background-color: var(--yellowcolor);
  color: var(--subcolor);
}

.sec-other-contents .tab-comments .rating-form .title-head-rating,
.modal-book .modal-form-comment .rating-form .title-head-rating {
  font-size: 16px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0 0 40px;
}

.sec-other-contents .tab-comments .rating-form .result-ratings,
.modal-book .modal-form-comment .rating-form .result-ratings {
  box-shadow: 0px 4px 100px 0px rgba(69, 71, 75, 0.1);
}

.sec-other-contents .tab-similar .box-product-book {
  border: 3px solid var(--lightcolor);
  margin-bottom: 0;
}

.sec-other-contents .tab-similar .row-head-between .arrows {
  background-color: var(--maincolor);
  width: 50px;
  height: 25px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.sec-other-contents .tab-similar .row-head-between .arrows .sw-arrow {
  display: flex;
  font-size: 16px;
  color: var(--whitecolor);
}

.fixed-cart-product {
  background-color: var(--whitecolor);
  position: fixed;
  bottom: -100%;
  right: 0;
  left: 0;
  z-index: 999999;
  box-shadow: 0px -4px 100px 0px rgba(69, 71, 75, 0.1);
  padding: 15px 0;
  transition: all 1s 0.2s;
}

.fixed-cart-product.show {
  bottom: 0;
  transition: all 1s 0.2s;
}

.fixed-cart-product .row {
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.fixed-cart-product .about-product {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.fixed-cart-product .about-product .image > img {
  height: 60px;
}

.fixed-cart-product .about-product .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 15px;
}

.fixed-cart-product .about-product .content .product-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0 0 3px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.fixed-cart-product .about-product .content .weather {
  font-size: 11px;
  font-weight: 400;
  color: var(--textcolor);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.fixed-cart-product .details-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.fixed-cart-product .details-option .options {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.fixed-cart-product .details-option .options .price .pr-title {
  display: flex;
  text-align: right;
  font-size: 11px;
  font-weight: 400;
  color: var(--textcolor);
}

.box-product-book .options .price .pr-number {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 21px;
  font-weight: 700;
  color: var(--blackcolor);
  line-height: 1.2;
  flex-wrap: wrap;
  flex-direction: column;
}

.fixed-cart-product .details-option .options .pr-number .unit {
  font-size: 12px;
  font-weight: 600;
  color: var(--blackcolor);
  margin-right: 5px;
}

.fixed-cart-product .details-option .options .offer {
  background-color: var(--yellowcolor);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 800;
  color: var(--subcolor);
  margin-right: 10px;
}

.fixed-cart-product .details-option .counter {
  background-color: var(--lightcolor);
  border-radius: 15px;
  height: 40px;
  display: flex;
  padding: 0 15px;
  align-items: center;
}

.fixed-cart-product .details-option .counter .countnumber-book {
  display: flex;
  height: 20px;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}

.fixed-cart-product .details-option .counter .bsh-count {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  color: var(--textcolor);
  font-size: 16px;
  opacity: 0.5;
  transition: all 0.3s;
}

.fixed-cart-product .details-option .counter .bsh-count:hover {
  opacity: 1;
}

.fixed-cart-product .details-option .counter .number {
  display: flex;
  justify-content: center;
  width: 30px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blackcolor);
  flex-shrink: 0;
}

.fixed-cart-product .details-option .btn-add-cart {
  background-color: var(--maincolor);
  display: flex;
  width: auto;
  height: 40px;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  color: var(--whitecolor);
  border: none;
  flex-shrink: 0;
  transition: all 0.3s;
}

.fixed-cart-product .details-option .btn-add-cart:hover {
  background-color: var(--subcolor);
}

/*---------------------- /Product Page -----------------------*/
/*---------------------- Section Features book ---------------------*/
.sec-features-book {
  margin-top: 100px;
}

.sec-features-book .row-features {
  gap: 60px;
  margin: 0;
}

.sec-features-book .box-fts {
  background-color: var(--lightcolor);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 20px;
  transition: all 0.3s;
}

.sec-features-book .box-fts:hover, .sec-features-book .box-fts.active {
  background-color: var(--whitecolor);
  box-shadow: 0px 0 15px 0px rgba(69, 71, 75, 0.2) inset;
  padding: 0 25px;
}

.sec-features-book .box-fts .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.sec-features-book .box-fts .content .title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0 0 5px;
  transition: all 0.3s;
}

.sec-features-book .box-fts:hover .content .title {
  color: var(--maincolor);
}

.sec-features-book .box-fts .content .desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--textcolor);
}

.sec-features-book .box-fts .fts-icon {
  font-size: 45px;
  color: var(--maincolor);
  transition: all 0.3s;
}

.sec-features-book .box-fts:hover .fts-icon {
  color: var(--yellowcolor);
}

/*---------------------- /Section Features book ---------------------*/
/*---------------------- /Rating ---------------------*/
.rating-book {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.br-theme-bars-book .br-widget {
  height: 6px;
  width: 110px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
}

.br-theme-bars-book .br-widget a {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  float: left;
  background-color: rgba(155, 164, 180, 0.3);
  margin: 0 3px;
  text-align: center;
  transition: all 0.3s;
}

.br-theme-bars-book .br-widget a:last-child {
  margin-right: 0;
}

.br-theme-bars-book .br-widget a.br-active,
.br-theme-bars-book .br-widget a.br-selected {
  background-color: var(--maincolor);
}

.br-theme-bars-book .br-widget .br-current {
  width: 14px;
  height: 14px;
  margin: 0;
}

.br-theme-bars-book .br-readonly a {
  cursor: default;
}

.rating-book .counts {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 6px;
  line-height: 1;
  padding-top: 2px;
}

.rating-book .counts .all {
  font-size: 25px;
  font-weight: 700;
  color: var(--textcolor);
  opacity: 0.3;
}

.rating-book .counts .slash {
  font-size: 20px;
  font-weight: 700;
  color: var(--textcolor);
  opacity: 0.3;
}

.rating-book .counts .value {
  font-size: 25px;
  font-weight: 700;
  color: var(--maincolor);
}

.rating-book .title-rating {
  font-size: 14px;
  font-weight: 600;
  color: var(--textcolor);
  margin: 0;
}

/*----------------------- Custom Control ----------------------------*/
.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.custom-control-input:disabled ~ .custom-control-label,
.custom-control-input[disabled] ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before,
.custom-control-input[disabled] ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

/*----------------------- /Custom Control ----------------------------*/
.form-group {
  margin-bottom: 1rem;
}

.form-group .custom-checkbox {
  padding: 0;
  text-align: right;
}

.form-group .custom-checkbox .custom-control-label {
  padding-right: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--textcolor);
  cursor: pointer;
}

.form-group .custom-checkbox .custom-control-label::before {
  top: -1px;
  left: auto;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border-color: rgba(155, 164, 180, 0.5);
  box-shadow: none;
  transition: all 0.3s;
}

.form-group .custom-checkbox .custom-control-label::after {
  content: "\e951";
  font-family: "icomoon";
  background-image: none !important;
  font-weight: normal;
  top: -1px;
  left: auto;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--whitecolor);
  opacity: 0;
  transition: all 0.3s;
}

.form-group .custom-checkbox .custom-control-input {
  left: auto;
  right: 0;
  z-index: 1;
  width: 22px;
  height: 22px;
}

.form-group .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--maincolor);
  background-color: var(--maincolor);
}

.form-group .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  opacity: 1;
  font-size: 12px;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: var(--maincolor);
}

/*---------------------- /Rating ---------------------*/
.lg-outer .lg-inner {
  direction: ltr;
}

.add-to-cart-notification {
  visibility: hidden;
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  transition: all 0.35s ease;
  opacity: 0;
}
.add-to-cart-notification.show {
  visibility: visible;
  opacity: 1;
}
.add-to-cart-notification .wrap-box {
  width: 380px;
  left: calc(50% - 190px);
  position: fixed;
  bottom: 15%;
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0px 0px 12px 3px #979797;
}
.add-to-cart-notification .wrap-box .added-notice {
  background: #DFFFEA;
  color: #17C653;
  padding: 4px 10px;
  border-radius: 5px;
}
.add-to-cart-notification .wrap-box .added-notice p {
  margin: 0;
}
.add-to-cart-notification .wrap-box .product-item {
  margin: 7px 0 15px;
}
.add-to-cart-notification .wrap-box .product-item img {
  width: 70px;
  border-radius: 6px;
  border: 1px solid #efefef;
  padding: 4px;
}
.add-to-cart-notification .wrap-box .product-item .product-title {
  margin-right: 5px;
  font-size: 13px;
  font-weight: 600;
}
.add-to-cart-notification .wrap-box .notice-link a.btn-default {
  background: #efefef;
}
.add-to-cart-notification .wrap-box .notice-link a.go-to-cart {
  flex: 1;
  margin-right: 5px;
  background-color: var(--maincolor);
  border-color: var(--maincolor);
}
.add-to-cart-notification .wrap-box .notice-link .btn {
  font-size: 13px;
}

.sec-search-products {
  padding-bottom: 30px;
}
.sec-search-products .filters-wrapper {
  position: sticky;
  top: 115px;
}

.sec-search-products .sidebar-filter .category-box {
  background-color: var(--maincolor);
  border-radius: 25px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sec-search-products .sidebar-filter .category-box .box-icon {
  background-color: var(--yellowcolor);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 100%;
  transition: all 0.3s;
}

.sec-search-products .sidebar-filter .category-box .box-icon .svg-fruit {
  height: 35px;
  transition: all 0.3s;
}

.sec-search-products .sidebar-filter .category-box .box-icon .svg-fruit .path-color {
  fill: var(--subcolor);
  stroke: var(--subcolor);
  transition: all 0.3s;
}

.sec-search-products .sidebar-filter .category-box .content {
  text-align: right;
}

.sec-search-products .sidebar-filter .category-box .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--whitecolor);
  margin: 0 0 0;
  transition: all 0.3s;
}

.sec-search-products .sidebar-filter .category-box .count {
  font-size: 13px;
  font-weight: 500;
  color: var(--whitecolor);
  opacity: 0.6;
}

.sec-search-products .head-filter-resp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  display: none;
}

.sec-search-products .head-filter-resp .title {
  font-size: 18px;
  font-weight: bold;
  color: var(--subcolor);
}

.sec-search-products .head-filter-resp .btn-close-filter {
  margin: 0;
  padding: 0;
  width: 45px;
  height: 45px;
  background-color: var(--whitecolor);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--textcolor);
  opacity: 1;
  text-shadow: none;
  transition: all 0.4s;
}

.sec-search-products .sidebar-filter {
  position: relative;
}

.sec-search-products .sidebar-filter .btn-confirm-filter {
  position: fixed;
  bottom: 20px;
  z-index: 999999;
  right: 0;
  left: 0;
  background-color: var(--subcolor);
  width: 100%;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: var(--whitecolor);
}

.sec-search-products .filter-box {
  background-color: var(--whitecolor);
  border-radius: 25px;
  margin-bottom: 20px;
  box-shadow: 0px 4px 30px 0px rgba(69, 71, 75, 0.05);
}

.sec-search-products .filter-box.hide {
  height: 60px;
  overflow: hidden;
  border-radius: 20px;
}

.sec-search-products .filter-box .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--lightcolor);
}

.sec-search-products .filter-box .head .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--subcolor);
  margin: 0;
}

.sec-search-products .filter-box .head > i {
  font-size: 18px;
  color: var(--textcolor);
  transition: all 0.3s;
}

.sec-search-products .filter-box.hide .head > i {
  transform: rotate(180deg);
}

.sec-search-products .filter-box .body {
  padding: 20px;
}
.sec-search-products .filter-box .body .local-search {
  width: 100%;
  margin-bottom: 15px;
}
.sec-search-products .filter-box .body .local-search input {
  width: 100%;
  border: 2px solid rgba(155, 164, 180, 0.2);
  border-radius: 8px;
  height: 38px;
  font-size: 13px;
  padding: 0 6px;
}
.sec-search-products .filter-box .body .brands-wrapper {
  max-height: 300px;
  overflow-y: auto;
  padding: 5px 0;
}
.sec-search-products .filter-box .body .categories {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 400px;
  overflow-y: auto;
}
.sec-search-products .filter-box .body .categories .cat-item {
  margin-bottom: 5px;
}
.sec-search-products .filter-box .body .categories .cat-item a {
  color: var(--textcolor);
  font-size: 13px;
}
.sec-search-products .filter-box .body .categories .children {
  list-style: none;
  margin: 0;
  padding-left: 0;
  padding-right: 15px;
}

.sec-search-products .list-resault-filter .head-resault {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sec-search-products .head-resault .input-group {
  position: relative;
}

.sec-search-products .head-resault .form-control-search {
  width: 400px;
  height: 70px;
  padding: 10px 20px;
  text-align: right;
  border-radius: 20px !important;
  border: 2px solid rgba(155, 164, 180, 0.2);
  background-color: var(--whitecolor);
  font-size: 14px;
  font-weight: 700;
  color: var(--blackcolor);
  box-shadow: none;
  transition: all 0.3s;
}

.sec-search-products .head-resault .form-control-search:focus {
  border-color: var(--maincolor);
}

.sec-search-products .head-resault .form-control-search::placeholder {
  font-size: 14px;
  font-weight: 600;
  color: var(--textcolor);
  opacity: 0.5;
}

.sec-search-products .head-resault .btn-confirm-search {
  background-color: var(--maincolor);
  position: absolute;
  top: 10px;
  left: 10px;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  border-radius: 12px !important;
  color: var(--whitecolor);
  transition: all 0.3s;
  border: none;
}

.sec-search-products .head-resault .sortby-box {
  position: relative;
  width: 280px;
}

.sec-search-products .head-resault .sortby-box .title {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  right: 20px;
  top: 24px;
  z-index: 100;
  font-size: 14px;
  color: var(--textcolor);
}

.sec-search-products .head-resault .sortby-box .title > i {
  font-size: 16px;
  margin-left: 6px;
  color: var(--graycolor);
}

.sec-search-products .head-resault .sortby-box .select2-selection__rendered {
  padding-right: 115px;
  font-size: 14px;
}

.sec-search-products .list-products-book .products {
  margin: 0 -10px;
}
.sec-search-products .list-products-book .products .no-items i {
  font-size: 16px;
}

.sec-search-products .list-products-book .item-product-book {
  padding: 0 10px;
}

.btn-show-filters {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--yellowcolor);
  border-radius: 16px;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: bold;
  color: var(--subcolor);
  border: 2px solid var(--subcolor);
  box-shadow: 0px -4px 100px 0px rgba(69, 71, 75, 0.3);
  z-index: 1000;
}

.btn-show-filters > i {
  font-size: 16px;
  margin-left: 6px;
}

.image {
  position: relative;
  display: block;
  overflow: hidden;
}

.pimage {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
}

/*.secondary-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 2;
}

.image:hover .secondary-image {
    opacity: 1;
    transform: scale(1.03);
}

    .image:hover .secondary-image ~ .primary-image {
        opacity: 0;
    }*/
.group-description {
  box-shadow: 0px 4px 30px 0px rgba(69, 71, 75, 0.05);
  margin-top: 40px;
  background: #fff;
  border-radius: 25px;
  padding: 10px 15px;
}

/*------------------------------ Pagination -----------------------------*/
.pagination-book {
  width: 100%;
  margin-top: 40px;
}

.pagination-book .pagination {
  padding: 0;
  margin: 0;
  gap: 10px;
}

.pagination-book .page-item .page-link {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  background-color: var(--lightcolor);
  color: var(--graycolor);
  border: 1px solid var(--bordercolor);
  box-shadow: none;
  transition: all 0.3s;
}

.sec-search-products .pagination-book .page-item .page-link {
  background-color: var(--whitecolor);
}

.pagination-book .page-item .page-link:hover {
  background-color: var(--maincolor);
  color: var(--whitecolor);
}

.pagination-book .page-item.active .page-link {
  background-color: var(--yellowcolor);
  border-color: var(--yellowcolor);
  color: var(--subcolor);
  font-weight: bold;
}

.pagination-book .page-item.disabled .page-link {
  opacity: 0.4;
}

/*------------------------------ /Pagination -----------------------------*/
/*------------------------------ Select2 ---------------------------------*/
.select2-container {
  width: 100% !important;
}

.select2-container .select2-selection {
  background-color: var(--whitecolor);
  height: 70px;
  border-radius: 20px;
  border: 2px solid rgba(155, 164, 180, 0.2);
  text-align: right;
  transition: all 0.3s;
}

.select2-container .select2-selection:hover {
  border-color: var(--maincolor);
}

.select2-container--default.select2-container--open .select2-selection,
.select2-container--default.select2-container--open .select2-selection {
  border-radius: 20px !important;
  border-color: var(--maincolor);
  box-shadow: 0 0 0 2px rgba(104, 210, 232, 0.2);
}

.select2-container--open .select2-dropdown--above {
  margin-top: -5px;
}

.select2-container--open .select2-dropdown--below {
  margin-top: 5px;
  z-index: 999999;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 65px;
  font-weight: bold;
  font-size: 15px;
  color: var(--blackcolor);
  padding-left: 45px;
  padding-right: 25px;
  direction: rtl;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-size: 14px;
  font-weight: 600;
  color: var(--textcolor);
  opacity: 0.5;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 24px;
  right: auto;
  left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "\e91d";
  font-family: "icomoon";
  font-size: 16px;
  color: var(--textcolor);
}

.select2-container--default .select2-selection--single .select2-selection__arrow > b {
  display: none;
}

.select2-dropdown.dropdown-book {
  background-color: var(--whitecolor);
  border: none;
  box-shadow: 0px 4px 100px 0px rgba(69, 71, 75, 0.1);
  border-radius: 16px;
}

.select2-container--open .select2-dropdown--above,
.select2-container--open .select2-dropdown--below {
  border-radius: 16px;
  overflow: hidden;
}

.select2-dropdown.dropdown-book .select2-search--dropdown {
  padding: 15px 15px;
  border-bottom: 2px dashed var(--bordercolor);
  margin-bottom: 15px;
}

.select2-dropdown.dropdown-book .select2-search--dropdown .select2-search__field {
  height: 40px;
  border-radius: 12px;
  background-color: var(--lightcolor);
  border: none;
  padding: 15px;
  text-align: right;
  color: var(--textcolor);
}

.select2-dropdown.dropdown-book .select2-results__option {
  padding: 10px 15px;
  font-size: 14px;
}

.select2-dropdown.dropdown-book .select2-results__option.select2-results__message {
  text-align: center;
  padding-bottom: 20px;
}

.select2-dropdown.dropdown-book .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--lightcolor);
  color: var(--maincolor);
}

.select2-dropdown.dropdown-book .select2-results__option--selected {
  background-color: var(--maincolor) !important;
  color: var(--whitecolor) !important;
}

.select2-container .select2-selection--multiple {
  min-height: 55px;
  height: auto;
  padding: 15px;
  direction: rtl;
}

.select2-container .select2-selection--multiple.rounded-half {
  border-radius: 20px !important;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  margin-bottom: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin: 2px 1px;
  background-color: var(--lightcolor);
  border-radius: 100px;
  border: none;
  font-size: 13px;
  color: var(--graycolor);
  padding: 2px 2px 2px 20px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  padding: 0 10px 0 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  padding: 0 0 0 8px;
  border: none;
  font-weight: 300;
  color: var(--graycolor);
  font-size: 16px;
  margin-top: -1px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: var(--maincolor);
}

.select2-container .select2-search--inline .select2-search__field {
  margin: 0 5px 0 0;
  height: 28px;
  text-align: right;
  font-size: 16px;
}

.dropdown-book.dropdown-book-multiple .select2-results__option--selected {
  position: relative;
  background-color: var(--lightcolor) !important;
  color: var(--maincolor) !important;
}

.dropdown-book.dropdown-book-multiple .select2-results__option--selected::after {
  content: "\e918";
  font-family: "icomoon";
  position: absolute;
  left: 15px;
  top: 10px;
  font-size: 14px;
  color: var(--maincolor);
}

/*------------------------------ /Select2 ---------------------------------*/
.toggle-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: sans-serif;
  margin-bottom: 15px;
}
.toggle-container .toggle-label {
  font-size: 14px;
  color: #333;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.toggle-switch .slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.toggle-switch input:checked + .slider {
  background-color: #4caf50;
}
.toggle-switch input:checked + .slider::before {
  transform: translateX(24px);
}
.toggle-switch input:disabled + .slider {
  background-color: #e0e0e0;
  cursor: not-allowed;
}
.toggle-switch input:disabled + .slider::before {
  background-color: #bdbdbd;
}

.overlay-book {
  background: rgba(0, 69, 61, 0.4) url("../images/site/bg-noise.png") repeat center center/200px;
  position: fixed;
  inset: 0;
  z-index: 99999;
  backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.overlay-book.show {
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 0px) and (max-width: 640px) {
  .sec-search-products .list-resault-filter .head-resault {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .sec-search-products .head-resault .form-group, .sec-search-products .head-resault .form-control-search, .sec-search-products .head-resault .sortby-box, .sec-other-contents .head-sticky .form-group, .sec-other-contents .head-sticky .form-control-search {
    width: 100%;
  }
  .sec-search-products .head-resault .form-control-search, .sec-other-contents .head-sticky .form-control-search {
    font-size: 12px;
    height: 60px;
    border-radius: 16px;
  }
  .sec-search-products .head-resault .btn-confirm-search, .sec-other-contents .head-sticky .btn-confirm-search {
    height: 41px;
    font-size: 12px;
    border-radius: 10px;
  }
  .sec-search-products .head-resault .sortby-box {
    margin-top: 5px;
  }
  .sec-search-products .head-resault .sortby-box .title {
    top: 26px;
    font-size: 12px;
  }
  .pagination-book {
    margin-top: 20px;
  }
  .pagination-book .pagination {
    gap: 5px;
  }
  .pagination-book .page-item .page-link {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .sec-search-products .sidebar-filter {
    background-color: var(--lightcolor);
    position: fixed;
    bottom: -105%;
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    height: 85vh;
    border-radius: 25px 25px 0 0;
    padding: 15px 20px 80px 20px;
    overflow-y: auto;
    box-shadow: 0px -4px 100px 0px rgba(69, 71, 75, 0.3);
    transition: all 0.3s;
  }
  .sec-search-products .head-filter-resp .btn-close-filter {
    width: 40px;
    height: 40px;
    font-size: 11px;
  }
  .sec-search-products .sidebar-filter.show {
    bottom: 0;
    opacity: 1;
    visibility: visible;
  }
  .sec-search-products .filter-box,
  .sec-search-products .category-box {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 15px;
    border-radius: 20px;
  }
  .btn-show-filters, .sec-search-products .sidebar-filter .btn-confirm-filter, .sec-search-products .head-filter-resp {
    display: flex;
  }
  .btn-show-filters {
    bottom: 80px;
    background: var(--maincolor);
    color: #fff;
  }
  .sec-search-products .sidebar-filter .btn-confirm-filter {
    width: 90%;
    margin: 0 auto;
    right: 0;
    left: 0;
  }
  .select2-results__option--selectable {
    cursor: pointer;
    font-size: 14px;
  }
}
.sec-contact-book .contact-form {
  padding: 20px 15px 20px 40px;
}

.sec-contact-book .contact-details {
  position: relative;
  padding: 20px 40px 20px 15px;
}

.sec-contact-book .contact-details::before {
  content: "";
  width: 1px;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='2' stroke-dasharray='6%2c 10' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  opacity: 0.12;
}

.sec-contact-book .contact-details .head-tell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.sec-contact-book .contact-details .head-tell .title-head {
  font-size: 20px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0;
}

.sec-contact-book .contact-details .row-tel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.sec-contact-book .contact-details .fullname {
  font-size: 14px;
  font-weight: 500;
  color: var(--textcolor);
}

.sec-contact-book .contact-details .tel-number {
  font-size: 18px;
  font-weight: 800;
  color: var(--maincolor);
  direction: ltr;
}

.sec-contact-book .tab-contents hr.spacing {
  background-image: none;
  border-top: 1px solid rgba(155, 164, 180, 0.5);
  opacity: 0.3;
  margin: 20px 0;
}

.sec-contact-book .contact-details .head-address {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.sec-contact-book .contact-details .head-address .title-head {
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0;
}

.sec-contact-book .contact-details .head-address .btn-google-map {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: 700;
  color: var(--blackcolor);
}

.sec-contact-book .contact-details .head-address .btn-google-map > img {
  width: 22px;
  margin-right: 10px;
}

.sec-contact-book .contact-details .head-address .btn-google-map:hover > img {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}
.sec-contact-book .contact-details .list-address .map-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec-contact-book .contact-details .list-address .item-adrs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-shrink: 0;
}

.sec-contact-book .contact-details .list-address .item-adrs:not(:last-child) {
  margin: 0 0 30px;
}

.sec-contact-book .contact-details .list-address .item-adrs .title {
  font-size: 16px;
  font-weight: 800;
  color: var(--blackcolor);
  margin: 0 0 5px;
  transition: all 0.3s;
}

.sec-contact-book .contact-details .list-address .item-adrs:hover .title {
  color: var(--maincolor);
}

.sec-contact-book .contact-details .list-address .item-adrs .text {
  font-size: 14px;
  font-weight: 500;
  color: var(--textcolor);
  margin: 0;
}

.sec-contact-book .box-map {
  background-color: var(--lightcolor);
  width: 100%;
  height: 400px;
  border-radius: 25px;
  overflow: hidden;
  margin-top: 40px;
  position: relative;
  /* display: flex; */
  justify-content: center;
}
.sec-contact-book .box-map a.show-on-map {
  position: absolute;
  bottom: 7px;
  z-index: 9;
  background: var(--maincolor);
  color: var(--whitecolor);
  padding: 8px 17px;
  width: 80%;
  right: 10%;
  border-radius: 11px;
  text-align: center;
}

.sec-contact-book .box-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  filter: grayscale(1);
}

.sec-contact-book .contact-details .socials-website .title-sc {
  font-size: 18px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0 0 20px;
}

.sec-contact-book .contact-details .socials-website .list-sc {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.sec-contact-book .contact-details .socials-website .item-sc {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s;
}

.sec-contact-book .contact-details .socials-website .item-sc.active {
  margin: 0 5px;
}

.sec-contact-book .contact-details .socials-website .item-sc .box-icon {
  background: rgba(155, 164, 180, 0.5);
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-size: 25px;
  color: var(--whitecolor);
  transition: all 0.3s;
}

.sec-contact-book .contact-details .socials-website .item-sc.active .box-icon {
  background-color: var(--maincolor);
}

.sec-contact-book .contact-details .socials-website .item-sc .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: right;
  width: 0;
  height: 50px;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  transition: all 0.3s;
}

.sec-contact-book .contact-details .socials-website .item-sc.active .text {
  width: 220px;
  opacity: 1;
  visibility: visible;
  margin-right: 15px;
  transition-delay: 0.2s;
}

.sec-contact-book .contact-details .socials-website .item-sc .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--maincolor);
  margin: 0;
}

.sec-contact-book .contact-details .socials-website .item-sc .desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--textcolor);
}

.sec-contact-book .contact-details .title-head {
  font-size: 18px;
}

.head-sec-book {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  z-index: 100;
}

.head-sec-book .content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.head-sec-book .content .shape {
  height: 50px;
  margin-left: 20px;
}

.head-sec-book .content .text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.head-sec-book .content .title {
  font-size: 18px;
  font-weight: 800;
  color: var(--blackcolor);
  margin: 0 0 0 15px;
}

.head-sec-book .content .title > strong {
  position: relative;
  font-weight: 800;
  color: var(--maincolor);
}

.head-sec-book .content .title > strong::after {
  content: "";
  background: url("../images/site/underline.svg") no-repeat center center/contain;
  width: 130%;
  height: 10px;
  position: absolute;
  bottom: -10px;
  right: -10%;
}

.head-sec-book .content .desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--textcolor);
}

.sec-news-book .sec-book-news {
  margin-top: 0;
}

.sec-news-book .sec-book-news .item-news {
  margin-bottom: 30px;
}

.sec-book-news {
  position: relative;
  margin-top: 80px;
}

.sec-book-news .item-news {
  transition: all 0.3s;
}

.sec-book-news .row:hover .item-news {
  filter: blur(3px) opacity(0.5);
}

.sec-book-news .row .item-news:hover {
  filter: none;
}

.sec-book-news .item-news .image-news {
  display: flex;
  width: 100%;
  height: 300px;
  border-radius: 25px;
  overflow: hidden;
}

.sec-book-news .item-news .image-news > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.sec-book-news .item-news:hover .image-news > img {
  transform: scale(1.1);
}

.sec-book-news .item-news .title-news {
  display: -webkit-box;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-align: right;
  margin: 20px 0 15px;
}

.sec-book-news .item-news .title-news > a {
  font-size: 20px;
  font-weight: 700;
  color: var(--blackcolor);
  transition: all 0.3s;
}

.sec-book-news .item-news:hover .title-news > a {
  color: var(--maincolor);
}

.sec-book-news .item-news .desc-news {
  display: -webkit-box;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  font-weight: 400;
  color: var(--textcolor);
  text-align: right;
  line-height: 30px;
  margin: 0;
}

.sec-book-news .item-news .options-news {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.sec-book-news .item-news .options-news .item-op {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 12px;
  font-weight: 400;
  color: var(--blackcolor);
}

.sec-book-news .item-news .options-news .item-op > i {
  font-size: 22px;
  color: var(--textcolor);
  margin-left: 8px;
}

.sec-book-news .item-news .options-news .item-op > span {
  display: flex;
  padding-top: 5px;
}

/*---------------------- /Section book News ---------------------*/
.sec-news-details + .sec-book-news {
  margin-bottom: 100px;
}

.sec-news-details .content-news {
  padding-left: 50px;
}
.sec-news-details .content-news .other-desc-news {
  background: #fff;
  padding: 0 15px 15px;
  border-radius: 25px;
}

.sec-news-details .content-news .title-main {
  font-size: 25px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0;
}

.sec-news-details .content-news .image-news {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  margin: 20px 0;
}

.sec-news-details .content-news .image-news > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-news-details .content-news .image-news .btn-like-news {
  background-color: rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-size: 22px;
  color: var(--whitecolor);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
  transition: all 0.3s;
}

.sec-news-details .content-news .image-news .btn-like-news.active {
  background-color: var(--whitecolor);
  color: var(--redcolor);
}

.sec-news-details .content-news .other-desc-news p {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  text-align: justify;
  color: var(--blackcolor);
  margin: 0;
}

.sec-news-details .content-news .other-desc-news p a {
  font-weight: 700;
  color: var(--maincolor);
  text-decoration: underline !important;
}

.sec-news-details .content-news .other-desc-news .short-quote {
  position: relative;
  background-color: var(--whitecolor);
  padding: 20px 20px 20px 100px;
  border-radius: 25px;
  margin: 20px 0 30px;
}

.sec-news-details .content-news .other-desc-news .short-quote::before {
  content: "\e953";
  font-family: "icomoon";
  font-size: 50px;
  color: var(--textcolor);
  position: absolute;
  bottom: 5px;
  left: 25px;
  transform: scale(-1);
  opacity: 0.2;
}

.sec-news-details .content-news .other-desc-news .short-quote p {
  font-size: 14px;
  line-height: 35px;
  color: var(--textcolor);
}

.sec-news-details .content-news .other-desc-news h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0 0 15px;
}

.sec-news-details .content-news .other-desc-news .banner-desc {
  position: relative;
  background-color: var(--subcolor);
  height: 200px;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 40px;
  overflow: hidden;
  margin: 40px 0;
}

.sec-news-details .content-news .other-desc-news .banner-desc::before {
  content: "";
  width: 600px;
  height: 600px;
  position: absolute;
  right: -150px;
  bottom: -400px;
  border-radius: 500px;
  opacity: 0.6;
  background: var(--maincolor);
  filter: blur(1000px);
}

.sec-news-details .content-news .other-desc-news .banner-desc .details {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sec-news-details .content-news .other-desc-news .banner-desc .svg-fruit {
  width: 90px;
  height: 90px;
  margin-left: 30px;
  flex-shrink: 0;
}

.sec-news-details .content-news .other-desc-news .banner-desc .path-color {
  fill: var(--yellowcolor);
  stroke: var(--yellowcolor);
}

.sec-news-details .content-news .other-desc-news .banner-desc .content .title {
  font-size: 25px;
  font-weight: 200;
  color: var(--whitecolor);
  margin: 0 0 5px;
}

.sec-news-details .content-news .other-desc-news .banner-desc .content .title > strong {
  font-weight: 800;
}

.sec-news-details .content-news .other-desc-news .banner-desc .content .desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--whitecolor);
  margin: 0;
  line-height: normal;
}

.sec-news-details .content-news .other-desc-news .banner-desc .btn-link-banner {
  background-color: var(--yellowcolor);
  display: flex;
  height: 70px;
  padding: 25px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 4px 30px 0px rgba(244, 206, 20, 0.4);
  font-size: 16px;
  font-weight: 700;
  color: var(--subcolor);
  border: none;
  flex-shrink: 0;
  transition: all 0.3s;
}

.sec-news-details .content-news .other-desc-news .banner-desc .btn-link-banner:hover {
  background-color: var(--whitecolor);
  box-shadow: 0px 4px 30px 0px rgba(255, 255, 255, 0.4);
}

.sec-news-details .content-news .other-desc-news .banner-desc .btn-link-banner .arrow-left {
  background-color: var(--whitecolor);
  padding: 5px;
  height: 22px;
  border-radius: 100px;
  margin-right: 10px;
  font-size: 24px;
  color: var(--subcolor);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.sec-news-details .content-news .other-desc-news .banner-desc .btn-link-banner:hover .arrow-left {
  background-color: var(--subcolor);
  color: var(--whitecolor);
}

.sec-news-details .content-news hr.spacing {
  width: 100%;
  height: 1px;
  border: none;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='2' stroke-dasharray='6%2c 10' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  opacity: 0.12;
  margin: 60px 0;
}

.sec-news-details .content-news .row-head-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sec-news-details .content-news .title-head-section {
  background-color: var(--maincolor);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0px 5px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  color: var(--whitecolor);
  margin: 0 0 40px;
}

.sec-news-details .content-news .row-head-between .title-head-section {
  margin: 0;
}

.sec-news-details .content-news .row-head-between .desc-head-section {
  font-size: 16px;
  font-weight: 700;
  color: var(--textcolor);
}

.sec-news-details .content-news .box-comment {
  background-color: var(--whitecolor);
}

.sec-news-details .cart-details {
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.sec-news-details .cart-details .accordion-news {
  background-color: var(--whitecolor);
  border-radius: 25px;
  box-shadow: none;
}

.sec-news-details .cart-details .accordion-news .accordion-news-header {
  padding: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec-news-details .cart-details .accordion-news .accordion-news-header .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--textcolor);
  margin: 0;
}

.sec-news-details .cart-details .accordion-news .accordion-news-header .box-icon {
  display: flex;
  font-size: 20px;
  color: var(--textcolor);
  transition: all 0.4s;
}

.sec-news-details .cart-details .box-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: auto;
  padding: 5px 0;
  border-radius: 30px;
  margin-top: -20px;
}

.sec-news-details .cart-details .box-details .item-dts {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
}

.sec-news-details .cart-details .box-details .item-dts:last-child {
  border-bottom: none;
}

.sec-news-details .cart-details .box-details .item-dts .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--blackcolor);
}

.sec-news-details .cart-details .box-details .item-dts .content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--textcolor);
}

.sec-news-details .cart-details .box-details .item-dts .content > i {
  font-size: 20px;
}

.sec-news-details .cart-details .box-details .item-dts .content > span {
  padding-top: 2px;
}

.sec-news-details .cart-details .btn-list-comments {
  border-radius: 25px;
}

.sec-other-contents .head-sticky .form-control-search {
  width: 400px;
  height: 70px;
  padding: 10px 20px;
  text-align: right;
  border-radius: 20px !important;
  border: 2px solid rgba(155, 164, 180, 0.2);
  background-color: var(--whitecolor);
  font-size: 14px;
  font-weight: 700;
  color: var(--blackcolor);
  box-shadow: none;
  transition: all 0.3s;
}

.sec-other-contents .head-sticky .form-control-search:focus {
  border-color: var(--maincolor);
}

.sec-other-contents .head-sticky .form-control-search::placeholder {
  font-size: 14px;
  font-weight: 600;
  color: var(--textcolor);
  opacity: 0.5;
}

.sec-other-contents .head-sticky .btn-confirm-search {
  background-color: var(--maincolor);
  position: absolute;
  top: 10px;
  left: 10px;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  border-radius: 12px !important;
  color: var(--whitecolor);
  transition: all 0.3s;
  border: none;
}

@media only screen and (min-width: 0px) and (max-width: 640px) {
  .sec-news-details .content-news {
    padding-left: 10px;
    padding-right: 10px;
  }
  .sec-news-details .content-news .title-main {
    font-size: 18px;
  }
  .sec-news-details .content-news .other-desc-news .short-quote {
    padding: 20px;
    margin: 20px 0 20px;
  }
  .sec-news-details .cart-details {
    margin-top: 30px;
  }
  .sec-news-details + .sec-book-news {
    margin-bottom: 40px;
    margin-top: 40px;
  }
  .sec-news-details + .sec-book-news .head-sec-book {
    margin-bottom: 20px;
    width: 100%;
  }
  .sec-news-details + .sec-book-news .row {
    width: 100%;
    margin: 0;
  }
  .sec-news-details + .sec-book-news .row .item-news {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
}
/*-------------------Basket -------------------------*/
.basket {
  position: absolute;
  left: 0;
  top: 68px;
  z-index: 104;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  height: calc(100vh - 71px);
  -webkit-transition: opacity 0.3s ease-out, visibility 0s 0.3s, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0s 0.3s, -webkit-transform 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s 0.3s;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s 0.3s;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s 0.3s, -webkit-transform 0.3s ease-out;
}

.basket--show {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

.basket--show, .basket--side {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.basket--side {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: auto !important;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  max-height: none;
  z-index: 9999;
}

.header--hide .basket--side {
  -webkit-transform: translateY(150px);
  -ms-transform: translateY(150px);
  transform: translateY(150px);
}

.is-ie .basket--side {
  top: 0;
}

@media only screen and (max-width: 1400px) {
  .basket {
    left: -20px;
  }
}
@media only screen and (max-width: 540px) {
  .basket {
    left: -20px;
    /* width: calc(100% + 40px); */
  }
}
@media only screen and (max-width: 500px) {
  .basket {
    left: -15px;
    /* width: calc(100% + 30px); */
    width: 100%;
  }
}
.basket:after {
  content: "";
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: -50px;
  left: 33.5%;
  width: 58px;
  height: 50px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
}

.basket--side .basket:after {
  display: none;
}

.basket--login .basket:after {
  left: 20%;
}

@media only screen and (max-width: 1400px) {
  .basket--login .basket:after {
    left: 24%;
  }
}
.basket:before {
  content: "";
  position: absolute;
  top: 0;
  left: 33.8%;
  width: 22px;
  height: 22px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  background-color: #fff;
  z-index: 1;
}

.basket--login .basket:before {
  left: 18.5%;
}

@media only screen and (min-width: 1401px) {
  .basket:before {
    left: 31.5%;
  }
}
@media only screen and (max-width: 540px) {
  .basket:before {
    left: 178px;
  }
}
@media only screen and (max-width: 500px) {
  .basket:before {
    left: 168px;
  }
}
.basket--side:before {
  display: none;
}

.basket__underlay {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(79, 79, 79, 0.6);
  width: 1500rem;
  height: 1500rem;
  pointer-events: none;
}

.basket__wrap {
  position: relative;
  background-color: #fff;
  width: 540px;
  height: 100%;
  z-index: 1;
}

@media only screen and (max-width: 540px) {
  .basket__wrap {
    width: 100%;
  }
}
.basket--side .basket__wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 221;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(540px);
  -ms-transform: translateX(540px);
  transform: translateX(540px);
  max-width: 420px;
}

@media only screen and (max-width: 700px) {
  .basket--side .basket__wrap {
    /* width: 500px; */
    -webkit-transform: translateX(500px);
    -ms-transform: translateX(500px);
    transform: translateX(500px);
  }
}
@media only screen and (max-width: 540px) {
  .basket--side .basket__wrap {
    /* width: 400px; */
    -webkit-transform: translateX(320px);
    -ms-transform: translateX(320px);
    transform: translateX(320px);
  }
}
.basket--side.basket--show .basket__wrap {
  /* -webkit-transform:translateX(0) translateY(0); */
  -ms-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}

.basket__header {
  position: relative;
  padding: 20px 30px;
  border-bottom: 1px solid #e6e6e6;
}

.basket--side .basket__header {
  padding: 30px;
}

@media only screen and (max-width: 500px) {
  .basket--side .basket__header {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 500px) {
  .basket__header {
    padding: 15px 10px;
  }
}
.basket__header-title {
  font-size: 18px;
  font-size: 1.125rem;
  color: #95989a;
  text-align: right;
}

@media only screen and (max-width: 540px) {
  .basket__header-title {
    font-size: 14px;
  }
}
.basket--side .basket__header-title {
  padding-left: 52px;
}

.basket__body {
  height: calc(100% - 70px);
}

@media only screen and (max-width: 540px) {
  .basket__body {
    height: calc(100% - 53px);
  }
}
.basket--side .basket__body {
  height: calc(100% - 94px);
  position: relative;
}

@media only screen and (max-width: 540px) {
  .basket--side .basket__body {
    height: calc(100% - 63px);
    position: relative;
  }
}
.basket__body .loading-circle {
  margin: 100px auto;
  display: block;
  text-align: center;
  width: 50px;
}

.basket__empty {
  font-size: 18px;
  text-align: center;
  padding: 100px 0;
  color: #565656;
}

.basket__scroll {
  overflow-y: auto !important;
  /* height: calc(100vh - 200px); */
  max-height: calc(100vh - 200px);
}

.basket__list {
  padding: 0 0 0 8px;
  overflow: auto;
}

@media only screen and (max-width: 540px) {
  .basket__list {
    padding-left: 10px;
    height: calc(100% - 170px);
  }
}
.basket--side .basket__list {
  height: 100%;
}

@media only screen and (max-width: 540px) {
  .basket--side .basket__list {
    padding-left: 10px;
  }
}
.basket__list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 40px 10px 5px;
  border-bottom: 1px solid #e6e6e6;
}

.price-box {
  flex: 1;
  text-align: right;
  /* align-self: baseline; */
  margin-right: 5px;
  /* width: 100%; */
}

.price-box .off-price {
  font-size: 14px;
  /* line-height: 35px; */
  position: relative;
  top: 10px;
  right: 10px;
}

.is-ios .basket__list-item, .is-mac .basket__list-item {
  padding-left: 18px;
}

.basket__list-item:last-child {
  border-bottom: none;
  align-items: center;
}

@media only screen and (max-width: 540px) {
  .basket__list-item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.basket__list-del {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 30px;
  background-color: #f2f2f2;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  border: none;
}

.basket__list-del:after, .basket__list-del:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 4px;
  background-color: #95989a;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -6px;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

@media only screen and (min-width: 1051px) {
  .basket__list-del:hover:after, .basket__list-del:hover:before {
    background-color: #fff;
  }
}
.basket__list-del:active:after, .basket__list-del:active:before {
  background-color: #fff;
}

.basket__list-del:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.basket__list-del:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media only screen and (min-width: 1051px) {
  .basket__list-del:hover {
    background-color: #ff9797;
  }
}
.basket__list-del:active {
  background-color: #ff9797;
}

.basket__list-thumb {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 8px;
}

.basket__list-title {
  display: block;
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
  font-size: 15px;
  font-size: 0.938rem;
  color: #4d4d4d;
  margin-left: 20px;
  text-indent: 10px;
  text-align: right;
}

@media only screen and (max-width: 540px) {
  .basket__list-title {
    /* margin-top: 15px; */
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%;
    margin-left: 0;
  }
}
.basket__list-title span {
  padding: 2px 6px;
  color: #fff;
  background: #fea000;
  border-radius: 3px;
  margin-left: 4px;
  margin-bottom: 4px;
  display: inline-block;
}

.basket__list-price {
  text-align: center;
  /* display: flex; */
  /* height: 100%; */
}

.basket__list-price > var {
  display: flex;
  font-size: 24px;
  font-size: 18px;
  color: #4d4d4d;
  line-height: 1;
  font-style: normal;
  direction: ltr;
}

@media only screen and (max-width: 540px) {
  .basket__list-price > var {
    font-size: 19px;
  }
}
.basket__list-price > span {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #b3b3b3;
}

@media only screen and (max-width: 540px) {
  .basket__list-price > span {
    font-size: 12px;
    white-space: nowrap;
    margin-right: 5px;
  }
}
.basket__footer {
  padding-top: 15px;
  /* position: absolute; */
  bottom: 30px;
  width: 100%;
}

.basket__cost {
  padding: 0 32px;
  margin-bottom: 6px;
}

@media only screen and (max-width: 540px) {
  .basket__cost {
    padding: 0 10px;
    margin-bottom: 10px;
  }
}
.basket__cost-wrap {
  text-align: center;
  background-color: #e6e6e6;
  border-radius: 3px;
  padding: 9px 0;
}

.basket__cost-wrap > * {
  vertical-align: middle;
}

.basket__cost-wrap > var {
  font-size: 28px;
  font-size: 1.75rem;
  color: #4d4d4d;
  margin-left: 18px;
  font-style: normal;
}

@media only screen and (max-width: 540px) {
  .basket__cost-wrap > var {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.basket__cost-title {
  font-size: 16px;
  font-size: 1rem;
  color: #4d4d4d;
  margin-left: 30px;
}

@media only screen and (max-width: 540px) {
  .basket__cost-title {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.basket__cost-unit {
  font-size: 16px;
  font-size: 1rem;
  color: #4d4d4d;
}

@media only screen and (max-width: 540px) {
  .basket__cost-unit {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.basket__btns {
  padding: 0 32px;
  text-align: center;
}

@media only screen and (max-width: 540px) {
  .basket__btns {
    padding: 0 10px;
  }
}
.basket__btns > a {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding: 15px 0;
  border-radius: 10px;
}

.basket__btns > a:hover {
  color: #fff;
}

.btn--green {
  color: #fff;
  background-color: var(--maincolor);
}

@media only screen and (max-width: 540px) {
  .basket__btns > a {
    font-size: 1rem;
    padding: 13px 0;
  }
}
.basket__close {
  position: absolute;
  color: #b3b3b3;
  width: 52px;
  height: 52px;
  text-align: center;
  top: 50%;
  margin-top: -26px;
  left: 30px;
  background-color: rgba(242, 242, 242, 0.7);
  border-radius: 3px;
  z-index: 5;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none;
  border: none;
}

.basket__close:hover {
  background-color: #f2f2f2;
}

.basket--side .basket__close {
  display: block;
}

@media only screen and (max-width: 540px) {
  .basket__close {
    left: 10px;
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }
}
.basket__close:after, .basket__close:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 4px;
  border-radius: 4px;
  top: 50%;
  left: 50%;
  margin-top: -2px;
  margin-left: -13px;
  background-color: #b3b3b3;
}

@media only screen and (max-width: 540px) {
  .basket__close:after, .basket__close:before {
    width: 20px;
    height: 2px;
    margin-top: -1px;
    margin-left: -10px;
  }
}
.basket__close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.basket__close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media only screen and (max-width: 540px) {
  .basket .ss-content {
    width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .basket .ss-scroll {
    display: none !important;
  }
}
.content-main .order-products {
  padding: 0;
  display: flex;
}

.content-main .order-products .list-orders {
  border-left: 1px solid #f3f3f3;
  overflow: hidden;
}

.content-main .order-products .item-order {
  position: relative;
  background-color: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  transform: translateX(0);
  transition: all 0.3s;
}

.content-main .order-products .item-order::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.5s;
}

.content-main .order-products .item-order:hover::before {
  background-color: var(--maincolor);
}

.content-main .order-products .item-order:last-child {
  border: none;
}

.content-main .order-products .item-order .product-info-order {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 65%;
}

.content-main .order-products .item-order .product-info-order .img-product {
  position: relative;
  width: 90px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: 15px;
}

.content-main .order-products .item-order .product-info-order .img-box {
  display: block;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #eee;
}

.content-main .order-products .item-order .product-info-order .img-box .view-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-main .order-products .item-order .product-info-order .off-product {
  width: 80px;
}

.content-main .order-products .item-order .ul-important, .content-main .order-products .item-order .ul-important > li:last-child {
  margin: 0;
}

.content-main .order-products .item-order .lbl-dotted > i {
  font-size: 22px;
}

.content-main .order-products .item-order .lbl-dotted, .content-main .order-products .item-order .br-dashed {
  font-size: 11px;
}

.content-main .order-products .item-order .product-info-order .title-product {
  margin: 0;
  display: flex;
  align-items: center;
  text-align: right;
  flex-wrap: wrap;
}

.content-main .order-products .item-order .product-info-order .name-product {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 0 12px;
  line-height: 1.5;
}

.content-main .order-products .item-order .product-info-order .name-product > a {
  color: #222;
  transition: all 0.4s;
}

.content-main .order-products .item-order .product-info-order .property-product {
  position: relative;
  font-size: 12px;
  color: #999;
  padding-right: 12px;
}

.content-main .order-products .item-order .product-info-order .property-product::after {
  content: "";
  background-color: #ddd;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  position: absolute;
  right: -2px;
  top: 8px;
}

.content-main .order-products .item-order .product-options-order {
  display: flex;
  justify-content: flex-end;
  width: 35%;
}

.content-main .order-products .item-order .product-options-order .lbl-count {
  width: 100%;
  font-size: 12px;
  margin: 0;
  text-align: center;
}

.content-main .order-products .item-order .product-options-order .count-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.content-main .order-products .item-order .product-options-order .count-options .op-count {
  font-size: 16px;
  width: 30px;
  text-align: center;
}

.content-main .order-products .item-order .product-options-order .count-options > .cn {
  cursor: pointer;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222;
  color: #fff;
  font-size: 20px;
  transition: all 0.4s;
}

.content-main .order-products .item-order .product-options-order .count-options > .cn.disabled {
  background-color: #eee;
  color: #ccc;
  pointer-events: none;
}

.content-main .order-products .item-order .prices {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: 15px;
  width: 66.4%;
}

.content-main .order-products .item-order .prices .title-prices {
  font-size: 12px;
  width: 100%;
  text-align: center;
  margin-bottom: 2px;
}

.content-main .order-products .item-order .prices .badge-percent {
  position: absolute;
  font-size: 12px;
  font-style: normal;
  background-color: #ff4f4f;
  padding: 5px 15px 3px;
  color: #fff;
  margin-bottom: 5px;
  bottom: -25px;
}

.content-main .order-products .item-order .prices .toman {
  font-size: 10px;
  font-style: normal;
  margin-right: 2px;
}

.content-main .order-products .item-order .prices .main-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through !important;
  margin-left: 15px;
}

.content-main .order-products .item-order .prices .off-price {
  font-size: 14px;
  font-weight: bold;
  color: #2cad2e;
}

.content-main .order-products .item-order .features-order {
  width: 100%;
  margin-top: 10px;
  padding-top: 0;
  background-color: #f6f6f6;
  border-radius: 6px;
}

.content-main .order-products .item-order .features-order .item-ft-order {
  display: flex;
  padding: 5px 10px;
  border-bottom: 2px solid #fff;
  align-items: center;
}

.content-main .order-products .item-order .features-order .item-ft-order:last-child {
  border: none;
}

.content-main .order-products .item-order .features-order .name-ft {
  font-size: 10px;
  font-weight: bold;
  margin: 0;
  width: 65%;
  text-align: right;
}

.content-main .order-products .item-order .features-order .name-ft > a {
  color: #999;
  transition: all 0.5s;
}

.content-main .order-products .features-order .prices {
  width: 60%;
  margin-right: 35px;
}

.content-main .order-products .features-order .prices .badge-percent {
  padding: 4px 8px 3px;
  left: -28px;
  bottom: -3px;
  font-size: 10px;
}

.content-main .order-products .features-order .count-options .op-count {
  font-size: 12px !important;
}

.content-main .order-products .product-options-order .options-item {
  position: absolute;
  left: 15px;
  top: 15px;
  display: flex;
  align-items: center;
}

.content-main .order-products .product-options-order .options-item .icon-fill-heart, .content-main .order-products .product-options-order .options-item .icon-fill-heart:hover {
  color: #ff4f4f;
}

.content-main .order-products .product-options-order .options-item .icon-trash {
  color: #ff4f4f;
}

.content-main .order-products .all-prices {
  padding: 15px;
  position: sticky;
  top: 0;
  align-self: flex-start;
}

.content-main .order-products .all-prices .item-alp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  font-size: 14px;
  margin-bottom: 15px;
}

.content-main .order-products .all-prices .item-alp .lbl-alp {
  color: #222;
  margin: 0;
  font-weight: bold;
}

.content-main .order-products .all-prices .item-alp .lbl-alp > .count {
  font-size: 12px;
  color: var(--maincolor);
  padding: 0 1px;
}

.content-main .order-products .all-prices .item-alp .price-alp {
  color: #444;
}

.content-main .order-products .all-prices .item-alp .price-alp > .toman,
.content-main .order-products .all-prices .remain-amount .price-alp > .toman {
  font-size: 10px;
  font-style: normal;
  margin-right: 2px;
}

.content-main .order-products .all-prices .off-alp .lbl-alp, .content-main .order-products .all-prices .off-alp .price-alp {
  color: #ff4f4f;
}

.content-main .order-products .all-prices .send-alp {
  position: relative;
}

.content-main .order-products .all-prices .send-alp .popup-shipping {
  font-size: 12px;
  color: #222;
  font-weight: bold;
}

.content-main .order-products .all-prices .send-alp .popup-shipping div[data-toggle=popover] {
  float: left;
}

.content-main .order-products .all-prices .send-alp .popup-shipping .br-dashed::before {
  background-color: var(--maincolor);
}

.content-main .order-products .all-prices .send-alp .popup-shipping .post-type {
  font-size: 10px;
}

.content-main .order-products .all-prices .box-continue {
  margin-top: 10px;
  border-top: 1px solid #eee;
  transition: all 0.4s;
}

.content-main .order-products .all-prices .all-alp {
  /* padding-top: 10px; */
}

.content-main .order-products .all-prices .all-alp .price-alp {
  color: #222;
}

.content-main .order-products .all-prices .btn-continue,
.callback .highstore .btn-continue {
  background-color: var(--maincolor);
  padding: 10px 15px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--whitecolor);
  transition: all 0.5s;
  width: 100%;
}

.content-main .order-products .all-prices .btn-continue > .icon-send {
  transform: scaleX(-1);
  font-size: 16px;
  margin-right: 20px;
  transition: all 0.5s;
}

.steps-page .product-box {
  background-color: #fff;
  box-shadow: 0 12px 12px 0 hsla(0, 0%, 71%, 0.11);
  border: 1px solid #e4e4e4;
  width: 100%;
  margin-bottom: 15px;
}

.steps-page .order-products .features-order .prices {
  margin-right: 30px;
}

.steps-page .order-products .view-count {
  display: flex;
  align-items: center;
}

.steps-page .order-products .count-options .op-count {
  width: auto !important;
  margin-right: 15px;
  margin-left: 15px;
}

.steps-page .steps-list {
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.steps-page .steps-list .item-step {
  position: relative;
  width: 33.3333333333%;
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  font-weight: bold;
  border-left: 1px solid #f5f5f5;
  color: #bbb;
  background-color: #fff;
  overflow: hidden;
  /* flex: 1; */
}

.steps-page .steps-list .item-step::before {
  counter-increment: count;
  position: absolute;
  top: 0;
  right: -65px;
  font-size: 45px;
  font-weight: bold;
  z-index: 10;
  letter-spacing: -2px;
  opacity: 0.2;
  transition: all 0.4s;
}

.steps-page .steps-list .item-step.active {
  background-color: #f9ebed;
  border-color: rgba(255, 255, 255, 0.3);
  color: #222;
}

.steps-page .steps-list .item-step.current::before {
  right: 15px;
}

.steps-page .steps-list .item-step::after {
  font: 40px "icomoon";
  position: absolute;
  top: 16px;
  right: 6px;
  z-index: 10;
  opacity: 0.2;
  transition: all 0.4s;
}

.steps-page .steps-list .item-step:nth-child(1)::after {
  content: " \e940";
}

.steps-page .steps-list .item-step:nth-child(2)::after {
  content: " \e90c";
}

.steps-page .steps-list .item-step:nth-child(0)::after {
  content: " \e922";
}

.steps-page .steps-list .item-step:nth-child(3)::after {
  content: " \e93b";
}

.steps-page .steps-list .item-step.current::after {
  /* right: -65px; */
}

.content-main .status-cart {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 40px;
}

.content-main .status-cart .box-status {
  width: 80px;
  flex-shrink: 0;
}

.content-main .status-cart .alert-waiting {
  border-bottom: 1px solid #eee;
  padding-bottom: 40px;
}

.content-main .status-cart .alert-waiting .text-alert {
  font-weight: bold;
  color: #2cad2e;
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  border: none;
  line-height: 1.8;
}

.content-main .status-cart .alert-waiting .text-alert > .br-dashed {
  color: #222;
  border-bottom: 1px dashed #222;
  margin: 0 2px;
}

.content-main .status-cart .detail-order {
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.content-main .status-cart .detail-order .links-order {
  flex-direction: row-reverse;
}

.content-main .status-cart .detail-order .links-order .btn-buy {
  margin-right: 0;
  margin-left: 20px;
}

.content-main .status-cart .status-view {
  width: 100%;
}

.content-main .status-cart .detail-order .links-order .btn-details {
  color: #222;
}

.content-main .status-cart .detail-order .links-order .btn-details:hover {
  color: #999;
}

.content-main .status-cart.status-cancel .info-order .tooltip-warning {
  margin-right: 0;
  color: #222;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

.content-main .status-cart.status-cancel .info-order .tooltip-warning > i {
  margin: 0 0 10px;
  font-size: 30px;
}

.content-main .status-cart.status-cancel .alert-waiting .text-alert {
  color: #ff3100;
}

.content-main .status-cart.status-cancel .links-order .btn-buy {
  background-color: #ff4f4f;
}

.content-main .status-cart.status-cancel .links-order .btn-buy:hover {
  background-color: #ff3100;
}

.content-main .details-status {
  padding: 40px;
  text-align: right;
}

.content-main .details-status .tooltip-warning {
  color: #999;
  text-align: right;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}

.content-main .details-status .tooltip-warning > i {
  font-size: 20px;
  margin-left: 10px;
}

.content-main .details-status .title-details {
  font-size: 14px;
  font-weight: bold;
  color: #222;
  margin: 15px 0;
}

.content-main .details-status .table thead tr {
  background-color: #999;
}

.content-main .details-status .table {
  width: 100%;
  margin: 0 auto;
}

.content-main .details-status .table thead tr > th {
  font-size: 12px;
}

/* --------------------------- /Status Page --------------------------- */
.content-main .send-address .title-wrapper {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.content-main .send-address .title-wrapper a.new-address {
  font-size: 13px;
  color: #565656;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.content-main .send-address .title-wrapper h3.title-box {
  flex: 1;
  margin: 0;
  border: 0;
  padding: 0;
}

.content-main .send-address .title-box {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.content-main .send-address .back-step {
  text-align: center;
}

.content-main .send-address .back-step .bks {
  float: right;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #bbb;
  font-weight: normal;
}

.content-main .send-address .back-step .bks > .icon-next {
  margin-left: 5px;
  font-size: 10px;
}

.content-main .send-address .box-select-address {
  padding: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.content-main .send-address .box-select-address .list-address {
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.content-main .send-address .box-select-address .item-ads {
  position: relative;
  width: calc((100% - 45px) / 4);
  border: 1px solid #eee;
  padding: 10px 15px;
  border-radius: 6px;
  text-align: right;
  margin-left: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  height: auto;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 1 0 auto;
}

.content-main .send-address .box-select-address .item-ads:nth-child(4n) {
  margin-left: 0;
}

.content-main .send-address .box-select-address .radio-ads.checked {
  border-color: var(--maincolor);
  box-shadow: 0 0 2px var(--maincolor);
}

.content-main .send-address .box-select-address .radio-ads::before, .content-main .box-select-send .list-sends .radio-snd::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #e5e5e5;
  position: absolute;
  top: 15px;
  right: 15px;
  transition: all 0.4s;
}

.content-main .send-address .box-select-address .radio-ads.checked::before, .content-main .box-select-send .list-sends .radio-snd.checked::before {
  background-color: var(--maincolor);
}

.content-main .send-address .box-select-address .radio-ads::after, .content-main .box-select-send .list-sends .radio-snd::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  top: 16px;
  right: 16px;
  transform: scale(1);
  transition: all 0.4s;
}

.content-main .send-address .box-select-address .radio-ads.checked::after, .content-main .box-select-send .list-sends .radio-snd.checked::after {
  transform: scale(0.55);
}

.content-main .send-address .box-select-address .title-send {
  font-size: 12px;
  padding: 5px 30px 10px 0;
  display: block;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.content-main .send-address .box-select-address .text-ads {
  font-size: 12px;
  line-height: 2;
  font-weight: 500;
}

.content-main .send-address .box-select-address .list-info {
  padding: 0;
  margin-bottom: 30px;
  margin-top: 10px;
}

.content-main .send-address .box-select-address .list-info .item-inf {
  font-size: 12px;
  display: flex;
  margin-bottom: 12px;
  color: #999;
  align-items: center;
}

.content-main .send-address .box-select-address .item-inf > i {
  font-size: 18px;
  margin-left: 5px;
  color: #ccc;
}

.content-main .send-address .box-select-address .options-ads {
  position: absolute;
  left: 15px;
  bottom: 8px;
  font-size: 18px;
}

.content-main .send-address .box-select-address .options-ads > .icon-trash {
  color: #ff4f4f;
}

.content-main .send-address .box-select-address .options-ads > i {
  cursor: pointer;
  transition: all 0.4s;
}

.content-main .send-address .box-select-address .add-address {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-style: dashed;
  border-color: #ccc;
  font-size: 14px;
  font-weight: 300;
  overflow: hidden;
  transition: all 0.4s;
  height: auto;
  margin-left: 0;
}

.content-main .send-address .box-select-address .add-address .icon-plus {
  font-size: 16px;
  margin-bottom: 5px;
}

.content-main .send-address .box-select-address .add-address .icon-send-address {
  font-size: 100px;
  position: absolute;
  left: -5px;
  bottom: -5px;
  opacity: 0.04;
}

.content-main .send-address .box-select-send {
  padding: 0 15px 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.content-main .box-select-send .list-sends {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
}

.content-main .box-select-send .list-sends .radio-snd {
  cursor: pointer;
  width: calc((100% - 30px) / 3);
  position: relative;
  padding: 8px 40px 8px 10px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  align-items: center;
  margin-left: 15px;
  margin-bottom: 10px;
  transition: all 0.4s;
  min-height: 80px;
}

.content-main .box-select-send .list-sends .radio-snd.checked {
  border-color: var(--maincolor);
  box-shadow: 0 0 2px var(--maincolor);
}

.content-main .box-select-send .list-sends .radio-snd:nth-child(3n) {
  margin-left: 0;
}

.content-main .box-select-send .list-sends .radio-snd .shipping-info {
  display: flex;
  align-items: center;
  text-align: right;
  width: 100%;
  justify-content: space-between;
}

.content-main .box-select-send .list-sends .shipping-info .snd-shipping .br-dashed::before {
  top: 40%;
}

.content-main .box-select-send .list-sends .img-send {
  width: 30px;
  margin-left: 10px;
  flex-shrink: 0;
}

.content-main .box-select-send .list-sends .radio-snd::before {
  top: 17px;
  right: 10px;
}

.content-main .box-select-send .list-sends .radio-snd::after {
  top: 18px;
  right: 11px;
}

.content-main .box-select-send .list-sends .shipping-info .price-shipping {
  font-size: 16px;
  /* direction: rtl; */
  display: flex;
  gap: 5px;
  align-items: center;
}

#create_address .tab-signs {
  margin-top: 0;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 12px 12px 0 hsla(0, 0%, 71%, 0.11);
  border: 1px solid #e4e4e4;
  width: 100%;
  margin-bottom: 15px;
}

#create_address .list-modal-inputs {
  padding: 0;
}

#create_address .list-modal-inputs .cities-select .item-cities, #create_address .list-modal-inputs .info-call .input-group {
  /* padding: 0 5px; */
}

#create_address .list-modal-inputs .info-call .input-group .input-group-prepend {
  height: 38px;
}

#create_address .list-modal-inputs .info-call {
  margin-top: 15px;
  /* padding: 0 10px; */
}

#create_address .list-modal-inputs textarea.form-control {
  border-radius: 4px !important;
  min-height: 100px;
  max-height: 150px;
  direction: rtl;
}

#create_address .list-modal-inputs .btn-save-tab > button[type=submit] {
  background-color: var(--maincolor);
  border: none;
}

#create_address .list-modal-inputs .title-cities {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}

#create_address .list-modal-inputs .title-cities::before {
  content: "";
  background-color: #eee;
  width: 95%;
  height: 1px;
  position: absolute;
  top: 13px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

#create_address .list-modal-inputs .title-cities > span {
  position: relative;
  background-color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #bbb;
  z-index: 10;
  padding: 0 6px;
}

#create_address .my-receiver {
  right: 0;
  /* text-align: right; */
  flex: 1;
  display: flex;
  flex-direction: row;
  line-height: 17px;
  direction: rtl;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

#create_address .state.p-warning-o {
  direction: rtl;
  text-align: right;
}

.steps-page .confirm-order .list-info-address {
  margin-top: 15px;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  border-right: 4px solid var(--maincolor);
}

.steps-page .confirm-order .list-info-address .title-box, .steps-page .confirm-order .item-order .title-box {
  width: 100%;
  border: none;
  padding-bottom: 15px;
  color: #f68320;
}

.steps-page .confirm-order .item-order {
  border: 1px solid #eee !important;
  border-radius: 6px;
  border-right: 4px solid var(--maincolor);
  margin-top: 15px;
}

.steps-page .confirm-order .callout-info {
  overflow: hidden;
}

.steps-page .confirm-order .item-order::before {
  display: none;
}

.steps-page .confirm-order .list-info-address .item-inf {
  width: 33.3333333333%;
  text-align: right;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.steps-page .confirm-order .list-info-address .inf-address {
  width: 100%;
  margin-bottom: 0;
}

.steps-page .confirm-order .list-info-address .item-inf > i {
  font-size: 20px;
  margin-left: 10px;
}

.steps-page .confirm-order textarea.form-control {
  margin: 5px 0 0;
  float: right;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  min-height: 80px;
  max-height: 150px;
  border-radius: 2px;
}

.steps-page .confirm-order textarea.form-control:focus + a > .help {
  opacity: 0.2;
}

.steps-page .confirm-order textarea.form-control::placeholder {
  font-size: 12px;
  color: #bbb;
}

.steps-page .confirm-order .back-step {
  padding-top: 0px;
}

.steps-page .confirm-order .confirm-desc {
  position: relative;
}

.steps-page .confirm-order .confirm-desc .help {
  font-size: 10px;
  position: absolute;
  top: 15px;
  left: 10px;
  z-index: 10;
}

.steps-page .confirm-order .all-prices .pretty {
  text-align: right;
  margin: 15px 0;
}

.steps-page .confirm-order .all-prices .pretty a {
  color: #999;
  font-weight: bold;
  transition: all 0.3s;
}

.steps-page .confirm-order .all-prices .pretty input[type=checkbox] {
  width: auto;
  left: auto;
  right: 0;
}

.steps-page .confirm-order .all-prices .pretty input[type=checkbox]:checked + .state a {
  color: var(--maincolor);
}

.steps-page .confirm-order .all-prices .pretty a:hover {
  color: #333 !important;
}

.steps-page .confirm-order .all-prices .bottom-continue .continue-buy {
  opacity: 1;
  pointer-events: unset;
  transition: all 0.4s;
}

.steps-page .confirm-order .all-prices .bottom-continue.disabled .continue-buy {
  opacity: 0.5;
  pointer-events: none;
}

.steps-page .confirm-order .all-prices .all-alp {
  /* border-top: 1px solid #eee; */
}

.steps-page .confirm-order .all-prices .box-continue {
  border: none;
  margin-top: 0;
}

.steps-page .confirm-order .callout-dark {
  border-right-color: #333;
}

.steps-page .confirm-order .callout-success {
  border-right-color: #2cad2e;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.steps-page .confirm-order .callout-success .title-box {
  color: #2cad2e;
}

.steps-page .confirm-order .box-select-send .list-sends {
  margin-top: 0;
  width: 100%;
}

.steps-page .confirm-order .box-select-send .list-sends p {
  font-size: 13px;
}

.steps-page .confirm-order .list-sends .radio-snd::before {
  top: calc(50% - 10px);
}

.steps-page .confirm-order .list-sends .radio-snd::after {
  top: calc(50% - 9px);
}

.steps-page .confirm-order .list-sends .radio-snd.checked {
  border-color: #2cad2e;
  box-shadow: 0 0 2px #2cad2e;
}

.steps-page .confirm-order .list-sends .radio-snd.checked::before {
  background-color: #2cad2e;
}

.steps-page .confirm-order .wallet-off {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: space-between;
}

.steps-page .confirm-order .wallet-off .wallet-payment {
  display: flex;
  align-items: center;
  flex: 1;
}

.steps-page .confirm-order .wallet-off .wallet-payment .lbl-wallet {
  font-size: 14px;
  margin-left: 10px;
}

.steps-page .confirm-order .wallet-payment .toggle-input {
  position: relative;
  height: 25px;
}

.steps-page .confirm-order .wallet-payment .toggle-input .inp-wallet {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  height: 25px;
  left: 0;
}

.steps-page .confirm-order .wallet-payment .toggle-input .lbl-input {
  position: relative;
  width: 65px;
  height: 23px;
  border-radius: 6px;
  background-color: #e5e5e5;
  margin: 0;
  cursor: pointer;
  transition: all 0.4s;
}

.steps-page .confirm-order .wallet-payment .toggle-input .lbl-input::after {
  content: "";
  background-color: #fff;
  width: 26px;
  height: 15px;
  position: absolute;
  top: 4px;
  right: 54%;
  border-radius: 4px;
  transition: all 0.4s;
}

.steps-page .confirm-order .wallet-payment .toggle-input .inp-wallet:checked + .lbl-input {
  background-color: var(--maincolor);
}

.steps-page .confirm-order .wallet-payment .toggle-input .inp-wallet:checked + .lbl-input::after {
  right: 3px;
}

.steps-page .confirm-order .list-orders {
  padding-bottom: 15px !important;
}

.confirm-order .offer-code {
  width: 50%;
  align-items: center;
}

.confirm-order .offer-code .input-code {
  display: flex;
  align-items: center;
  width: 100%;
}
.confirm-order .offer-code .input-code .input-group-prepend {
  display: flex;
}
.confirm-order .offer-code .input-code .input-group-prepend span.input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 20px;
}

.confirm-order .offer-code .input-group .form-control {
  height: 38px;
  border-color: #eee;
  text-align: right;
  box-shadow: 0 0 6px -2px #bbb inset;
  border-radius: 4px 0 0 4px;
  font-size: 12px;
  color: #222;
  transition: all 0.3s;
  /* direction: ltr; */
}

.callout-dark .alert-code {
  border: 1px solid #eee;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin-top: 0;
  opacity: 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all 0.3s;
}

.callout-dark .alert-code .message-alert {
  font-size: 12px;
  text-align: right;
  margin: 0;
}

.callout-dark .alert-code .price-alp {
  font-size: 14px;
  margin-right: 10px;
  font-weight: bold;
  color: var(--maincolor);
}

.callout-dark .alert-code .price-alp > .toman {
  font-style: normal;
  font-size: 10px;
}

.callout-dark .alert-code .icon-close {
  font-size: 10px;
  margin-right: 10px;
  margin-left: 5px;
  opacity: 0.3;
  cursor: pointer;
}

.callout-dark .alert-code.show {
  margin-top: 10px;
  padding: 10px;
  opacity: 1;
  height: auto;
}

.confirm-order .offer-code .input-group {
  margin: 0;
  padding: 0;
  width: 100%;
  direction: ltr;
}

.confirm-order .offer-code .lds-ellipsis {
  top: 2px;
}

.confirm-order .offer-code .save-code {
  background-color: var(--maincolor);
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px 2px;
  font-size: 14px;
  color: var(--whitecolor);
  margin-right: 10px;
  border-radius: 4px;
  transition: all 0.4s;
}

.steps-page .confirm-order .list-sends .radio-snd .shipping-info {
  font-size: 12px;
}

.content-main .order-products .all-prices .wallet-continue, .content-main .order-products .all-prices .wallet-minus {
  border-top: 1px solid #eee;
}

.content-main .order-products .all-prices .wallet-continue .item-alp, .content-main .order-products .all-prices .wallet-minus .item-alp {
  margin-bottom: 0;
}

.content-main .order-products .all-prices .wallet-alp {
  opacity: 1;
  overflow: hidden;
  /* height: 0; */
  margin-bottom: 15px;
  transition: all 0.2s;
}

.content-main .order-products .all-prices .wallet-alp.show {
  opacity: 1;
  overflow: visible;
  /* height: 20px; */
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.content-main .order-products .all-prices .total-alp {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.bf-modal {
  z-index: 999999;
  /* display: flex !important; */
  align-items: center;
  justify-content: center;
  opacity: 0;
  /* visibility: hidden; */
  transition: all 0.2s;
  padding: 15px;
  border-radius: 14px;
}

.bf-modal .modal-dialog {
  /* transform: translate(0) !important; */
  /* transform: scale(0.8) !important; */
}

.bf-modal a.close-modal {
  display: none;
}

.modal-open .bf-modal.show {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s;
}

.modal-open .bf-modal.show .modal-dialog {
  transform: scale(1) !important;
}

.bf-modal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}

.bf-modal .modal-content .modal-body {
  padding: 15px 0;
}

.bf-modal .modal-header {
  justify-content: center;
}

.bf-modal .modal-header .modal-title {
  font-size: 16px;
  font-weight: bold;
}

.bf-modal .close, .product-page .result-search .responsive-filter .icon-close {
  cursor: pointer;
  margin: 0;
  padding: 0;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
}

#create_address .modal-body {
  padding: 20px 20px 10px;
}

#create_address .tab-signs {
  padding: 15px 5px;
}

#create_address .list-modal-inputs > .row {
  margin: 0 -10px -10px !important;
}

.confirm-order .offer-code .input-group {
  direction: ltr;
  /* padding: 0 5px; */
}

#create_address .list-modal-inputs .input-group {
  direction: ltr;
  /* padding: 0 5px; */
  margin-bottom: 10px;
}

#create_address .list-modal-inputs .input-group .form-control, .confirm-order .offer-code .input-group .form-control {
  height: 38px;
  border-color: #eee;
  text-align: right;
  box-shadow: 0 0 6px -2px #bbb inset;
  border-radius: 4px 0 0 4px;
  font-size: 12px;
  color: #222;
  transition: all 0.3s;
  /* direction: ltr; */
}

#create_address .list-modal-inputs .input-group .form-control::placeholder, .confirm-order .offer-code .input-group .form-control::placeholder {
  text-align: right;
  direction: rtl;
}

#create_address .list-modal-inputs .input-group .form-control:focus, .confirm-order .offer-code .input-group .form-control:focus {
  border-color: var(--maincolor);
}

#create_address .list-modal-inputs .input-group .form-control::placeholder, .confirm-order .offer-code .input-group .form-control::placeholder {
  color: #bbb;
}

#create_address .list-modal-inputs .input-group-text, .confirm-order .offer-code .input-group .input-group-text {
  background-color: #f9f9f9;
  border-color: #e4e4e4;
  color: #aaa;
  font-size: 16px;
  transition: all 0.3s;
  border-radius: 0px 5px 5px 0px;
  height: 100%;
}

#create_address .list-modal-inputs .input-group .form-control:focus + .input-group-prepend .input-group-text, .confirm-order .offer-code .input-group .form-control:focus + .input-group-prepend .input-group-text {
  background-color: var(--maincolor);
  border-color: var(--maincolor);
  color: #fff;
}

#create_address .list-modal-inputs .btn-save-tab {
  text-align: center;
  margin-top: 7px;
}

#create_address .list-modal-inputs .btn-save-tab > button[type=submit] {
  background-color: #222;
  display: inline-block;
  width: 100%;
  padding: 12px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  transition: all 0.4s;
}

#create_address .list-modal-inputs .btn-save-tab > button[type=submit]:hover {
  background-color: var(--maincolor);
  width: 140px;
}

#create_address .logo-signs {
  text-align: center;
  margin-top: 5px;
}

#create_address .logo-signs .lg-sign {
  width: 70px;
  filter: brightness(0);
  opacity: 0.2;
}

select {
  display: inline-block;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23A8AEB2' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 10px center/8px 10px !important;
  border: 1px solid #c8c8c8;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 13px;
  background-position: left !important;
  background-position-x: 10px !important;
}

select:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.pretty {
  margin: 0;
  display: block;
}

.pretty .state label {
  font-size: 12px;
  text-indent: 1.8em;
  min-width: calc(1em + 2px);
}

.pretty .state label::before, .pretty .state label::after {
  width: calc(1em + 4px);
  height: calc(1em + 4px);
  top: calc(0% - (100% - 1.4em));
  left: auto;
  right: 0;
}

.pretty .state label::before, .pretty .state label::before {
  border-width: 1px;
  border-color: #ddd;
}

span.help-block {
  font-size: 11px;
  direction: rtl;
  text-align: right;
  flex: 0 0 100%;
  display: flex;
  margin-top: 4px;
  flex-wrap: wrap;
}

span.help-block.field-validation-error {
  color: #ff0000;
}

.highstore {
  /* max-width: 800px; */
  margin: 40px auto;
  padding: 0 20px;
  direction: rtl;
  font-family: "IRANSans", sans-serif;
}

.highstore-notices-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.highstore-info,
.highstore-error {
  padding: 30px;
  border-right: 6px solid;
  border-radius: 16px;
  font-size: 15px;
  line-height: 2;
  background-color: #fefefe;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.highstore-info {
  background-color: #eaf3ff;
  border-color: #7cb9f5;
  color: #003b73;
}

.highstore-error {
  background-color: #fff0f3;
  border-color: #ff8fa3;
  color: #a40030;
}

.highstore p {
  margin-bottom: 12px;
}

.highstore .label {
  display: inline-block;
  padding: 4px 12px;
  font-size: 13px;
  border-radius: 8px;
  background-color: #dcdcdc;
  color: #333;
  font-family: monospace;
}

.label-info {
  background-color: #b0cfff;
  color: #002c5f;
}

@media (max-width: 576px) {
  .highstore-info, .highstore-error {
    padding: 20px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 640px) {
  /* --------------------------- Cart Page --------------------------- */
  .product-page .order-waiting {
    margin-top: 20px !important;
  }
  .content-main .send-address .box-select-address .item-ads,
  .content-main .box-select-send .list-sends .radio-snd {
    width: 100%;
  }
  .steps-page .confirm-order .wallet-off {
    flex-wrap: wrap;
  }
  .steps-page .confirm-order .wallet-off .wallet-payment {
    flex: 1 0 auto;
    width: 100%;
  }
  .steps-page .confirm-order .wallet-off .wallet-payment .lbl-wallet {
    text-align: right;
    font-size: 13px;
  }
  .steps-page .confirm-order .wallet-off .offer-code {
    width: 100%;
    margin-top: 20px;
  }
  .content-main .send-address .box-select-address .item-ads,
  .steps-page .confirm-order .list-sends .radio-snd {
    margin-left: 0;
  }
  .content-main .send-address .back-step {
    text-align: right;
  }
  .content-main .order-waiting .alert-waiting .text-alert {
    text-align: center;
  }
  .content-main .order-waiting .detail-order {
    flex-direction: column;
  }
  .content-main .order-waiting .detail-order .info-order {
    flex-wrap: wrap;
  }
  .content-main .order-waiting .detail-order .info-order .tooltip-warning {
    text-align: right;
    margin: 15px 0;
  }
  .content-main .order-waiting .detail-order .links-order {
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }
  .content-main .order-seller .profile-seller {
    width: 100%;
  }
  .content-main .order-seller .profile-seller .profile-image {
    margin-right: 0;
  }
  .content-main .order-seller .list-satisfaction,
  .content-main .order-products .item-order .ul-important {
    display: none;
  }
  .content-main .order-products,
  .content-main .order-products .item-order .features-order .item-ft-order {
    flex-direction: column;
  }
  .content-main .order-products .item-order .product-info-order,
  .content-main .order-products .item-order .product-options-order,
  .content-main .order-products .item-order .features-order .name-ft {
    width: 100%;
  }
  .content-main .order-products .item-order .product-info-order {
    margin-top: 15px;
    align-items: flex-start;
  }
  .content-main .order-products .item-order .product-options-order {
    justify-content: space-between;
    margin: 10px 0 0;
  }
  .content-main .order-products .item-order.item-special .product-options-order {
    margin-bottom: 20px;
  }
  .content-main .order-products .features-order .product-options-order {
    margin-bottom: 0 !important;
  }
  .content-main .order-products .item-order .features-order .name-ft {
    text-align: center;
  }
  .content-main .order-products .item-order .features-order .item-ft-order {
    padding: 10px;
  }
  .content-main .order-products .item-order .product-options-order .product-count {
    width: 27%;
    margin-right: 4px;
  }
  .content-main .order-products .item-order .prices {
    width: auto;
    margin: 0;
    justify-content: flex-end;
  }
  .content-main .order-products .item-order .prices .title-prices {
    text-align: left;
  }
  .content-main .order-products .features-order .prices {
    padding-left: 15px;
  }
  .content-main .order-products .features-order .prices .badge-percent {
    right: auto;
    left: -28px;
    padding: 5px 8px 3px;
    bottom: -2px;
  }
  .content-main .order-products .list-orders {
    border-left: none;
    border-bottom: 1px solid #eee;
  }
  .content-main .order-products .features-order .product-count {
    width: 24% !important;
    margin-right: 2px !important;
  }
  .content-main .order-products .all-prices {
    width: 100%;
  }
  .content-main .order-products .item-order .prices .badge-percent {
    position: inherit;
  }
  /* --------------------------- /Cart Page --------------------------- */
}
:root {
  --maincolor: #5A45AD;
  --coolgray: #7665bd;
  --pinkcolor: #EA0087;
  --greencolor: #A4C627;
  --orangecolor: #FF7500;
  --blackcolor: #17153B;
  --bordercolor: #e5e5e5;
  --lightcolor: #F6F5F5;
  --whitecolor: #FFFFFF;
  --easeoutcubic: cubic-bezier(.215, .61, .355, 1);
}

/*---------------------- Public Style ---------------------*/
body {
  background: var(--whitecolor);
  margin: 0;
  padding: 0;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.overhide {
  overflow: hidden !important;
}

* {
  font-family: YekanBakh;
  outline: medium none !important;
  text-decoration: none !important;
}

.no-swiper {
  height: 100%;
}

.container {
  max-width: 1520px;
  padding: 0;
}

.overlay-menu,
.overlay-resp {
  background-color: var(--blackcolor);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.overlay-menu.show {
  opacity: 0.6;
  visibility: visible;
}

.overlay-resp.show {
  opacity: 0.8;
  visibility: visible;
}

::selection {
  background-color: var(--blackcolor);
  color: var(--whitecolor);
}

/* 20px */
.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* 40px */
.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* 60px */
.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.my-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

/* 80px */
.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

/* 100px */
.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

/* 120px */
.mt-120 {
  margin-top: 120px;
}

.mb-120 {
  margin-bottom: 120px;
}

.my-120 {
  margin-top: 120px;
  margin-bottom: 120px;
}

/* 150px */
.mt-150 {
  margin-top: 150px;
}

.mb-150 {
  margin-bottom: 150px;
}

.my-150 {
  margin-top: 150px;
  margin-bottom: 150px;
}

@media (max-width: 767px) {
  .mt-80,
  .mt-100,
  .mt-120,
  .mt-150 {
    margin-top: 60px;
  }
  .mb-80,
  .mb-100,
  .mb-120,
  .mb-150 {
    margin-bottom: 60px;
  }
  .my-80,
  .my-100,
  .my-120,
  .my-150 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
/*---------------------- Head Title Section ---------------------*/
.head-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.head-section .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.head-section .content .title {
  font-size: 36px;
  font-weight: 900;
  color: var(--blackcolor);
  margin: 0;
}

.head-section .content .desc {
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: var(--blackcolor);
  margin: 5px 0 0;
  opacity: 0.6;
}

.head-section .details {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 30px;
}

.head-section .details .title-main {
  font-size: 20px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0;
}

.head-section .details .desc-more {
  font-size: 16px;
  font-weight: 400;
  color: var(--blackcolor);
  opacity: 0.6;
}

.head-section .details::before {
  content: "";
  background-color: var(--orangecolor);
  width: 14px;
  height: 14px;
  border-radius: 100%;
  position: absolute;
  top: 20px;
  right: 0;
  transition: all 0.3s;
}

.head-section .details:hover::before {
  background-color: var(--greencolor);
}

.head-section .btn-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--blackcolor);
  opacity: 0.6;
  transition: all 0.3s;
}

.head-section .btn-more:hover {
  color: var(--maincolor);
  opacity: 1;
  gap: 12px;
}

.head-section .btn-more > i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 26px;
  border: 2px solid rgba(23, 21, 59, 0.1);
  color: rgba(23, 21, 59, 0.4);
  transition: all 0.3s;
}

.head-section .btn-more:hover > i {
  border-color: var(--greencolor);
  color: var(--greencolor);
}

/*---------------------- /Head Title Section ---------------------*/
/*---------------------- Swiper ---------------------*/
.swiper {
  position: relative;
}

.swiper .arrows-swiper .swiper-button {
  background-color: var(--whitecolor);
  display: flex;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  position: absolute;
  top: 45%;
  z-index: 100;
  font-size: 24px;
  color: var(--blackcolor);
  opacity: 0.4;
  transition: all 0.3s;
}

.swiper .arrows-swiper .swiper-button:hover {
  opacity: 1;
}

.swiper .arrows-swiper .swiper-button:first-child {
  right: 20px;
}

.swiper .arrows-swiper .swiper-button:last-child {
  left: 20px;
}

/*---------------------- /Swiper ---------------------*/
/*---------------------- Section Slideshow ---------------------*/
.sec-slideshow {
  margin-top: 30px;
}

.sec-slideshow .row {
  justify-content: flex-end;
}

.sec-slideshow .swiper-slideshow {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
}

.sec-slideshow .swiper-wrapper,
.sec-slideshow .swiper-slide,
.sec-slideshow .swiper-slide .img-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-slideshow .swiper-slideshow .swiper-slider-next {
  right: -100px;
}

.sec-slideshow .swiper-slideshow .swiper-slider-prev {
  left: -100px;
}

.sec-slideshow .swiper-slideshow:hover .swiper-slider-next {
  right: 30px;
  opacity: 0.2;
  visibility: visible;
}

.sec-slideshow .swiper-slideshow:hover .swiper-slider-prev {
  left: 30px;
  opacity: 0.2;
  visibility: visible;
}

.sec-slideshow .swiper-slideshow .swiper-button:hover {
  opacity: 1;
}

/*---------------------- /Section Slideshow ---------------------*/
/*---------------------- Product Item ---------------------*/
.row-gap-products {
  gap: 60px 0;
}

.item-product-karen .box-images {
  background-color: var(--lightcolor);
  position: relative;
  /* height: 480px; */
  overflow: hidden;
  border-radius: 50px;
  transition: all 0.3s;
}
.item-product-karen .box-images .product-item-image {
  height: 100%;
}

.item-product-karen .box-images:hover {
  background-color: var(--bordercolor);
}

.item-product-karen .box-images .status {
  display: flex;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 100;
  font-size: 20px;
  font-weight: 900;
  color: var(--whitecolor);
}

.item-product-karen .box-images .status.off {
  background-color: var(--pinkcolor);
}

.item-product-karen .box-images .status.new {
  background-color: var(--greencolor);
  font-size: 18px;
  font-weight: 800;
}

.item-product-karen .box-images .sizing {
  display: flex;
  width: 85%;
  height: 50px;
  padding: 10px 24px;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -60px;
  border-radius: 500px;
  background: var(--whitecolor);
  box-shadow: 0px 6px 30px 0px rgba(23, 21, 59, 0.04);
  z-index: 100;
  transform: scale(0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

.item-product-karen .box-images:hover .sizing {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.item-product-karen .box-images .sizing .label {
  font-size: 16px;
  font-weight: 600;
  color: var(--blackcolor);
  opacity: 0.6;
}

.item-product-karen .box-images .sizing .list {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 0px 8px;
}

.item-product-karen .box-images .sizing .list > span {
  display: inline-flex;
  width: 28px;
  height: 26px;
  font-size: 18px;
  font-weight: 600;
  color: var(--blackcolor);
}

.item-product-karen .box-images .swiper-images-product {
  width: 100%;
  height: 100%;
}

.item-product-karen .box-images .item-image,
.item-product-karen .box-images .item-image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-product-karen .box-images.has-secondary-image .item-image:first-child {
  opacity: 1;
  visibility: visible;
  transition: all 0.6s;
}

.item-product-karen .box-images .swiper-slide-active .item-image {
  opacity: 1;
  visibility: visible;
}

.item-product-karen .box-images .arrows-swiper .swiper-button {
  width: 40px;
  height: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

.item-product-karen .box-images:hover .arrows-swiper .swiper-button {
  opacity: 1;
  visibility: visible;
}

.item-product-karen .box-images .arrows-swiper .swiper-button:first-child {
  right: 16px;
}

.item-product-karen .box-images .arrows-swiper .swiper-button:last-child {
  left: 16px;
}

.item-product-karen .content-prd {
  margin-top: 20px;
  display: flex;
  height: 88px;
  padding: 0px 8px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.item-product-karen .content-prd .title {
  width: 100%;
}

.item-product-karen .content-prd .title > a {
  display: -webkit-box;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: var(--blackcolor);
  text-align: right;
  text-overflow: ellipsis;
  font-size: 17px;
  font-weight: 700;
}

.item-product-karen .content-prd .options {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
}

.item-product-karen .content-prd .prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.item-product-karen .content-prd .prices .off {
  color: var(--blackcolor);
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  text-decoration-line: line-through !important;
  opacity: 0.3;
}

.item-product-karen .content-prd .prices .main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-size: 24px;
  font-weight: 800;
  color: var(--maincolor);
}

.item-product-karen .content-prd .prices .main > i {
  font-size: 24px;
}

.item-product-karen .content-prd .rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.item-product-karen .content-prd .rating .number {
  color: var(--blackcolor);
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.3;
  display: none;
}

.item-product-karen .content-prd .rating .stars {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  gap: 4px;
}

.item-product-karen .content-prd .rating .stars > i {
  color: var(--orangecolor);
}

.item-product-karen .content-prd .rating .stars > i.empty {
  color: var(--blackcolor);
  opacity: 0.2;
}

.item-product-karen.small-product {
  background-color: var(--whitecolor);
  padding: 12px 12px 22px 12px;
  border-radius: 40px;
  overflow: hidden;
}

.item-product-karen.small-product .box-images {
  border-radius: 30px;
  /* height: 380px; */
}
.item-product-karen.small-product .box-images .no-swiper {
  height: 100%;
}

.item-product-karen.small-product .box-images .status {
  width: 48px;
  height: 48px;
  left: 14px;
  top: 14px;
  font-size: 18px;
}

.item-product-karen.small-product .content-prd .title > a {
  font-size: 18px;
}

.item-product-karen.small-product .content-prd {
  height: 80px;
}

.item-product-karen .content-prd .prices .off {
  font-size: 16px;
}

.item-product-karen .content-prd .prices .main {
  gap: 4px;
  font-size: 22px;
}

.item-product-karen .content-prd .prices .main > i {
  font-size: 22px;
}

.item-product-karen .content-prd .rating .number {
  font-size: 14px;
}

.item-product-karen .box-images .countdown {
  background: var(--whitecolor);
  display: inline-flex;
  width: 85%;
  height: 50px;
  padding: 10px 24px;
  border-radius: 500px;
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 100;
  box-shadow: 0px 6px 30px 0px rgba(23, 21, 59, 0.04);
}

.item-product-karen .box-images .countdown .countdown_exciting {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.item-product-karen .box-images .countdown .number {
  position: relative;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.item-product-karen .box-images .countdown .number:not(:last-child)::after {
  content: ":";
  text-align: center;
  position: absolute;
  top: -2px;
  right: -20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--blackcolor);
  opacity: 0.3;
}

.item-product-karen .box-images .countdown .txt {
  font-size: 18px;
  font-weight: 700;
  color: var(--blackcolor);
}

.item-product-karen .box-images .countdown .title {
  display: none;
}

/*---------------------- /Product Item ---------------------*/
/*---------------------- /Public Style ---------------------*/
/*---------------------- Tooltip ---------------------*/
.tooltip {
  z-index: 99999;
}

.tooltip-inner {
  background-color: var(--blackcolor);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
}

.tooltip .arrow::before {
  border-bottom-color: var(--blackcolor);
  border-top-color: var(--blackcolor);
}

/*---------------------- /Tooltip ---------------------*/
/*---------------------- Header Main ---------------------*/
.header-main {
  position: relative;
  background-color: var(--lightcolor);
  height: 100vh;
  overflow: hidden;
}
.header-main.inner-page {
  height: 190px;
  overflow: unset;
}
.header-main.full-slider {
  height: auto;
  padding-bottom: 40px;
}

.header-main::before {
  content: "";
  background: url("../images/site/noise.png") repeat center/1500px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0.1;
}

.header-main .header-top {
  position: absolute;
  top: 42px;
  right: 0;
  left: 0;
}

.header-main .header-top .container {
  position: relative;
}

.header-main .header-top .head-fixed {
  background-color: var(--maincolor);
  display: flex;
  width: 100%;
  padding: 0 32px;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border-radius: 40px;
  box-shadow: 0px 10px 50px 0px rgba(90, 69, 173, 0.4);
  transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 999;
}

.header-main .header-top .head-fixed.affix {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  border-radius: 0;
}

.header-main .header-top .head-fixed::before {
  content: "";
  background: url("../images/site/noise.png") repeat center/1500px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 40px;
  opacity: 0.3;
}

.header-main .head-fixed .navbar-customize {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  z-index: 100;
  gap: 18px;
  width: 45%;
}

.header-main .head-fixed .navbar-customize .nav-item .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 17px;
  font-weight: 500;
  color: var(--whitecolor);
  padding: 44px 0;
  transition: all 0.3s;
}

.header-main .head-fixed.affix .navbar-customize .nav-item .nav-link {
  font-size: 18px;
  padding: 34px 0;
}

.header-main .head-fixed .navbar-customize .nav-item .nav-link::before {
  content: "";
  background-color: var(--greencolor);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 0;
  height: 5px;
  border-radius: 0 0 100px 100px;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.4s;
}

.header-main .head-fixed .navbar-customize .nav-item .nav-link:hover::before,
.header-main .head-fixed .navbar-customize .show .nav-link::before {
  width: 50%;
  opacity: 1;
}

.header-main .head-fixed .navbar-customize .nav-item .nav-link:hover,
.header-main .head-fixed .navbar-customize .show .nav-link {
  color: var(--greencolor);
  filter: drop-shadow(0px 0 12px var(--greencolor));
}

.header-main .head-fixed .navbar-customize .nav-item .dropdown-toggle::after {
  content: "\e900";
  font-family: "icomoon";
  font-size: 20px;
  opacity: 0.4;
  margin: 0 6px 0 0;
  border: none;
  transition: all 0.3s;
}

.header-main .head-fixed .navbar-customize .nav-item:hover .dropdown-toggle::after {
  transform: rotate(180deg);
  opacity: 1;
}

.header-main .head-fixed.affix .navbar-customize .nav-item .dropdown-toggle::after {
  font-size: 18px;
}

.header-main .head-fixed .logo-karen {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  z-index: 100;
  transition: all 0.3s;
}

.header-main .head-fixed.affix .logo-karen {
  padding-top: 25px;
}

.header-main .head-fixed .logo-karen .logo {
  height: 80px;
  transition: all 0.3s;
}

.header-main .head-fixed.affix .logo-karen .logo {
  height: 50px;
}

.header-main .head-fixed .logo-karen .crown {
  height: 50px;
  position: absolute;
  top: -50px;
  transition: all 0.3s;
}

.header-main .head-fixed.affix .logo-karen .crown {
  height: 30px;
  top: -5px;
}

.header-main .head-fixed .options-site {
  position: relative;
  width: 45%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  z-index: 100;
}

.header-main .head-fixed .options-site .opt-item {
  position: relative;
  width: 56px;
  height: 56px;
  background-color: var(--whitecolor);
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--maincolor);
  transition: all 0.3s;
}

.header-main .head-fixed.affix .options-site .opt-item {
  width: 50px;
  height: 50px;
  font-size: 22px;
}

.header-main .head-fixed .options-site .opt-item:hover {
  background-color: var(--greencolor);
  color: var(--whitecolor);
}

.header-main .head-fixed .options-site .opt-item .count {
  background-color: var(--orangecolor);
  display: flex;
  width: 26px;
  height: 26px;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 100px;
  right: -6px;
  top: -4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--whitecolor);
  transition: all 0.3s;
}

.header-main .head-fixed.affix .options-site .opt-item .count {
  width: 20px;
  height: 20px;
  font-size: 12px;
  right: -2px;
  top: -2px;
}

.header-main .head-fixed .options-site .opt-search,
.header-main .head-fixed.affix .options-site .opt-search {
  width: 280px;
  overflow: hidden;
  transition: all 0.3s;
}

.header-main .head-fixed .options-site .opt-item.opt-search:hover {
  background-color: var(--whitecolor);
  color: var(--maincolor);
}

.header-main .head-fixed .options-site .opt-search input {
  width: 100%;
  height: 56px;
  border: none;
  box-shadow: none;
  font-size: 16px;
  color: var(--blackcolor);
  padding: 0 20px 0 0;
  transition: all 0.3s;
}

.header-main .head-fixed.affix .options-site .opt-search input {
  /* width: 180px; */
  height: 50px;
}

.header-main .head-fixed .options-site .opt-search input:focus {
  width: 280px;
}

.header-main .head-fixed .options-site .opt-search > button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  color: var(--maincolor);
  background: transparent;
  border: 0;
  padding: 0;
  position: absolute;
  left: 0;
}

.header-main .head-fixed .options-site .opt-menubar {
  display: none;
}

.header-main .head-fixed .options-site .opt-menubar .lines {
  background-color: var(--maincolor);
  width: 16px;
  height: 2px;
  border-radius: 100px;
  box-shadow: 0 -5px 0 0 var(--maincolor), 0 5px 0 0 var(--maincolor);
}

.header-main .navbar-customize .megacustom-menu .menubox {
  background-color: var(--whitecolor);
  position: absolute;
  top: 100%;
  right: -30px;
  width: 1520px;
  max-height: 500px;
  z-index: 9999;
  border-radius: 50px;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: all 0.3s;
}

.header-main .affix .navbar-customize .megacustom-menu .menubox {
  position: fixed;
  top: 95px;
  right: 0;
  width: 100%;
  border-radius: 0 0 30px 30px;
}

.header-main .navbar-customize .megacustom-menu.show .menubox {
  opacity: 1;
  visibility: visible;
}

.header-main .navbar-customize .megacustom-menu .head-item {
  display: inline-flex;
  background-color: var(--pinkcolor);
  padding: 2px 10px 1px;
  border-radius: 500px;
  font-size: 12px;
  font-weight: 700;
  color: var(--whitecolor);
  margin: 0 0 30px;
}

.header-main .navbar-customize .megacustom-menu .list-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.header-main .navbar-customize .megacustom-menu .list-menu.nested-list-menu {
  padding: 10px 15px 0 0;
  gap: 10px;
}

.header-main .navbar-customize .megacustom-menu .list-menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 12px;
  font-weight: 500;
  color: var(--blackcolor);
  text-transform: uppercase;
  transition: all 0.3s;
}

.header-main .navbar-customize .megacustom-menu .list-menu a:hover {
  color: var(--orangecolor);
}

.header-main .navbar-customize .megacustom-menu .list-menu a::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--bordercolor);
  border-radius: 100px;
  margin-left: 10px;
  transition: all 0.3s;
}

.header-main .navbar-customize .megacustom-menu .list-menu a:hover::before {
  background-color: var(--greencolor);
  filter: drop-shadow(0px 0 6px var(--greencolor));
  margin-left: 13px;
}

.header-main .navbar-customize .normalcustom-menu {
  position: relative;
}

.header-main .navbar-customize .normalcustom-menu > .normal-submenu {
  position: absolute;
  top: calc(100% - 12px);
  right: -20px;
}

.header-main .navbar-customize .normal-submenu {
  background-color: var(--whitecolor);
  width: 250px;
  list-style: none;
  padding: 12px;
  margin: 0;
  border-radius: 20px;
  box-shadow: 0 16px 45px rgba(33, 24, 70, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 9999;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.header-main .navbar-customize .normalcustom-menu.show > .normal-submenu,
.header-main .navbar-customize .normal-submenu li:hover > .normal-submenu-child,
.header-main .navbar-customize .normal-submenu li:focus-within > .normal-submenu-child {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-main .navbar-customize .normal-submenu li {
  position: relative;
}

.header-main .navbar-customize .normal-submenu li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 44px;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blackcolor);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header-main .navbar-customize .normal-submenu li > a:hover,
.header-main .navbar-customize .normal-submenu li > a:focus {
  background-color: var(--lightcolor);
  color: var(--maincolor);
}

.header-main .navbar-customize .normal-submenu li > a > i {
  flex-shrink: 0;
  font-size: 14px;
  opacity: 0.5;
}

.header-main .navbar-customize .normal-submenu .normal-submenu-child {
  position: absolute;
  top: -12px;
  right: calc(100% + 8px);
  transform: translateX(10px);
}

.header-main .navbar-customize .normal-submenu li:hover > .normal-submenu-child,
.header-main .navbar-customize .normal-submenu li:focus-within > .normal-submenu-child {
  transform: translateX(0);
}

/*---------------------- /Header Main ---------------------*/
/*---------------------- Header Content ---------------------*/
.karen-content,
.karen-content .container,
.karen-content .row {
  height: 100%;
}

.karen-content .row {
  align-items: center;
}

.karen-content .content-box {
  padding-top: 180px;
}

.karen-content .content-box .sub-title {
  display: block;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--blackcolor);
}

.karen-content .content-box .title-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.karen-content .content-box .title-main > strong {
  font-family: Kamand;
  font-size: 70px;
  font-weight: 800;
  color: var(--blackcolor);
}

.karen-content .content-box .title-main .karen {
  position: relative;
  line-height: 100px;
  color: var(--maincolor);
}

.karen-content .content-box .title-main .karen::after {
  content: "";
  background: url("../images/site/crown.svg") no-repeat center center/42px;
  width: 42px;
  height: 42px;
  transform: rotate(8deg);
  position: absolute;
  top: -8px;
  left: 24px;
}

.karen-content .content-box .title-main .text {
  line-height: 80px;
}

.karen-content .content-box .desc-content {
  color: var(--blackcolor);
  text-align: justify;
  font-size: 18px;
  font-weight: 400;
  line-height: 40px;
  opacity: 0.6;
  margin: 38px 0;
}

.karen-content .content-box .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.karen-content .content-box .features {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.karen-content .content-box .features .item-fts {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 30px;
}

.karen-content .content-box .features .item-fts .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blackcolor);
  margin: 0 0 5px;
}

.karen-content .content-box .features .item-fts .desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--blackcolor);
  opacity: 0.6;
}

.karen-content .content-box .features .item-fts::before {
  content: "";
  background-color: var(--orangecolor);
  width: 14px;
  height: 14px;
  border-radius: 100%;
  position: absolute;
  top: 20px;
  right: 0;
}

.karen-content .content-box .bottom .btn-more {
  background-color: var(--pinkcolor);
  display: inline-flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  font-size: 20px;
  font-weight: 700;
  color: var(--whitecolor);
  transition: all 0.3s;
}

.karen-content .content-box .bottom .btn-more:hover {
  background-color: var(--greencolor);
  padding: 16px 40px;
}

.karen-content .slider-karen {
  height: 100%;
  text-align: left;
}

.karen-content .slider-karen .boxes-slider {
  position: relative;
  width: 77%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin-right: auto;
}

.karen-content .slider-karen .boxes-slider::before,
.karen-content .slider-karen .boxes-slider::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: #F6F5F5;
  background: -webkit-linear-gradient(180deg, rgb(246, 245, 245) 0%, rgba(246, 245, 245, 0) 100%);
  background: -moz-linear-gradient(180deg, rgb(246, 245, 245) 0%, rgba(246, 245, 245, 0) 100%);
  background: linear-gradient(180deg, rgb(246, 245, 245) 0%, rgba(246, 245, 245, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F6F5F5", endColorstr="#F6F5F5", GradientType=0);
  z-index: 50;
}

.karen-content .slider-karen .boxes-slider::before {
  top: 0;
}

.karen-content .slider-karen .boxes-slider::after {
  bottom: 0;
  transform: scaleY(-1);
}

.karen-content .slider-karen .hrz-item {
  position: relative;
  width: 50%;
}

.karen-content .slider-karen .hrz-item .col-list {
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.karen-content .slider-karen .hrz-item.right .col-list {
  top: -500px;
  -webkit-animation: hrzmarquee 120s linear infinite;
  animation: hrzmarquee 120s linear infinite;
}

.karen-content .slider-karen .hrz-item.left .col-list {
  top: 1000px;
  -webkit-animation: hrzmarquee 120s linear infinite reverse;
  animation: hrzmarquee 120s linear infinite reverse;
}

.karen-content .slider-karen .hrz-item .col-list:hover {
  animation-play-state: paused;
}

.karen-content .slider-karen .hrz-item .item-slider {
  position: relative;
  width: 100%;
  height: 400px;
  padding: 30px 60px;
  display: flex;
  align-items: flex-end;
  border-radius: 50px;
  overflow: hidden;
}

.karen-content .slider-karen .hrz-item .item-slider > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: cover;
}

.karen-content .slider-karen .hrz-item .item-slider .title {
  position: relative;
  background-color: var(--whitecolor);
  display: flex;
  width: 100%;
  height: 50px;
  padding: 10px;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--blackcolor);
  margin: 0;
  z-index: 100;
  transition: all 0.3s;
}

.karen-content .slider-karen .hrz-item .item-slider:hover .title {
  background-color: var(--maincolor);
  color: var(--whitecolor);
  font-weight: 800;
}

@-webkit-keyframes hrzmarquee {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes hrzmarquee {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.header-main.full-slider .karen-content .content-box {
  padding-top: 160px;
}

/*---------------------- /Header Content ---------------------*/
/*---------------------- Content Main ---------------------*/
/*---------------------- Section Categories ---------------------*/
.sec-categories .swiper-categories .item-ctg {
  position: relative;
  background-color: var(--lightcolor);
  border-radius: 50px;
  display: flex;
  width: 100%;
  height: 280px;
  padding: 30px 60px;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  transition: all 0.3s;
}

.sec-categories .swiper-categories .item-ctg:hover {
  background-color: var(--bordercolor);
}

.sec-categories .swiper-categories .item-ctg > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.6s;
}

.sec-categories .swiper-categories .item-ctg:hover > img {
  height: 90%;
}

.sec-categories .swiper-categories .item-ctg .title {
  position: relative;
  background-color: var(--whitecolor);
  display: flex;
  width: 100%;
  height: 50px;
  padding: 10px;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--blackcolor);
  margin: 0;
  z-index: 100;
  transition: all 0.3s;
}

.sec-categories .swiper-categories .item-ctg:hover .title {
  background-color: var(--maincolor);
  color: var(--whitecolor);
  font-weight: 800;
}

/*---------------------- /Section Categories ---------------------*/
/*---------------------- Section Background Products ---------------------*/
.sec-bg-products .box-outer-section {
  position: relative;
  width: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 50px;
}

.sec-bg-products .box-outer-section::before {
  content: "";
  background: url("../images/site/noise.png") repeat center/1500px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 40px;
  opacity: 0.3;
}

.sec-bg-products .box-outer-section.pink {
  background-color: var(--pinkcolor);
}

.sec-bg-products .box-outer-section.orange {
  background-color: var(--orangecolor);
}

.sec-bg-products .box-outer-section.purple {
  background-color: var(--maincolor);
}

.sec-bg-products .box-outer-section .content-side {
  position: relative;
  display: flex;
  width: 230px;
  padding-top: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  z-index: 50;
  flex-shrink: 0;
}

.sec-bg-products .box-outer-section .content-side .head-top {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.sec-bg-products .box-outer-section .content-side .title {
  color: var(--whitecolor);
  text-align: right;
  font-family: Kamand;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  margin: 0;
}

.sec-bg-products .box-outer-section .content-side .desc {
  color: var(--whitecolor);
  text-align: right;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  margin: 0;
}

.sec-bg-products .box-outer-section .content-side .btn-more {
  display: flex;
  width: 100%;
  padding: 14px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: rgba(23, 21, 59, 0.16);
  color: var(--whitecolor);
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s;
}

.sec-bg-products .box-outer-section .content-side .btn-more:hover {
  background-color: var(--whitecolor);
  color: var(--blackcolor);
}

.sec-bg-products .box-outer-section .content-side .box-icon {
  height: 150px;
  margin: 20px 0;
  mix-blend-mode: multiply;
}

.sec-bg-products .swiper .arrows-swiper.custom .swiper-button {
  top: 35%;
}

.sec-bg-products .swiper .arrows-swiper.custom .swiper-button:first-child {
  right: 30px;
}

.sec-bg-products .swiper .arrows-swiper.custom .swiper-button:last-child {
  left: 30px;
}

/*---------------------- /Section Background Products ---------------------*/
/*---------------------- Section ADS Banners ---------------------*/
.sec-ads-banners .item-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border-radius: 50px;
  overflow: hidden;
}

.sec-ads-banners .item-banner::before {
  content: "";
  background: url("../images/site/noise.png") repeat center/1500px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
  opacity: 0.2;
}

.sec-ads-banners .item-banner::after {
  content: "";
  background: #17153B;
  background: -webkit-linear-gradient(90deg, rgba(23, 21, 59, 0) 0%, rgb(23, 21, 59) 50%, rgba(23, 21, 59, 0) 100%);
  background: -moz-linear-gradient(90deg, rgba(23, 21, 59, 0) 0%, rgb(23, 21, 59) 50%, rgba(23, 21, 59, 0) 100%);
  background: linear-gradient(90deg, rgba(23, 21, 59, 0) 0%, rgb(23, 21, 59) 50%, rgba(23, 21, 59, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#17153B", endColorstr="#17153B", GradientType=1);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0.2;
  z-index: 10;
  transition: all 0.3s;
}

.sec-ads-banners .item-banner:hover::after {
  opacity: 0.4;
}

.sec-ads-banners .item-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1.2s;
}

.sec-ads-banners .item-banner:hover > img {
  transform: scale(1.2);
}

.sec-ads-banners .item-banner .title {
  position: absolute;
  color: var(--whitecolor);
  text-align: center;
  font-family: Kamand;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  margin: 0;
  z-index: 100;
}

.sec-ads-banners .select-size .box-outer-light {
  position: relative;
  margin: 30px 0;
  background-color: var(--lightcolor);
  border-radius: 50px;
  height: 200px;
  padding: 32px;
  overflow: hidden;
}

.sec-ads-banners .select-size .box-outer-light .row {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec-ads-banners .select-size .box-outer-light .list-column {
  display: flex;
  justify-content: flex-end;
}

.sec-ads-banners .select-size .box-outer-light::before {
  content: "";
  background: url("../images/site/noise.png") repeat center/1500px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
  opacity: 0.08;
}

.sec-ads-banners .select-size .head-section {
  position: relative;
  margin: 0;
  z-index: 50;
}

.sec-ads-banners .select-size .list-sizing {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  z-index: 50;
}

.sec-ads-banners .select-size .list-sizing .item-size {
  background-color: var(--whitecolor);
  display: flex;
  width: 100px;
  height: 100px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  transition: all 0.3s;
}

.sec-ads-banners .select-size .list-sizing .item-size:hover {
  background-color: var(--maincolor);
}

.sec-ads-banners .select-size .list-sizing .item-size .title {
  color: var(--blackcolor);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  transition: all 0.3s;
}

.sec-ads-banners .select-size .list-sizing .item-size:hover .title {
  color: var(--whitecolor);
}

.sec-ads-banners .select-size .list-sizing .item-size .desc {
  color: var(--blackcolor);
  font-size: 16px;
  font-weight: 600;
  opacity: 0.3;
  transition: all 0.3s;
}

.sec-ads-banners .select-size .list-sizing .item-size:hover .desc {
  color: var(--whitecolor);
  opacity: 0.6;
}

/*---------------------- /Section ADS Banners ---------------------*/
/*---------------------- Section Set Products ---------------------*/
.sec-product-set .box-outer-set {
  background-color: var(--lightcolor);
  border-radius: 50px;
  overflow: hidden;
  height: 700px;
}

.sec-product-set .box-outer-set .set-image > img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.sec-product-set .box-outer-set .set-slides {
  position: relative;
  padding: 60px 85px 115px 115px;
}

.sec-product-set .set-slides .item-product-karen {
  height: 100%;
}

.sec-product-set .set-slides .item-product-karen .box-images {
  height: 400px;
}

.sec-product-set .set-slides .item-product-karen .content-prd {
  height: 70px;
}

.sec-product-set .set-slides .item-product-karen .content-prd .title > a {
  font-size: 20px;
  text-align: center;
}

.sec-product-set .set-slides .item-product-karen .content-prd .prices {
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sec-product-set .set-slides .item-product-karen .content-prd .prices .off {
  font-size: 18px;
}

.sec-product-set .set-slides .item-product-karen .content-prd .prices .main {
  gap: 6px;
  font-size: 26px;
}

.sec-product-set .set-slides .item-product-karen .content-prd .prices .main > i {
  font-size: 25px;
}

.sec-product-set .set-slides .item-product-karen .box-images .item-image {
  opacity: 1;
  visibility: visible;
}

.sec-product-set .set-slides .arrows-swiper .swiper-button {
  background-color: var(--whitecolor);
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  position: absolute;
  top: 42%;
  z-index: 100;
  font-size: 28px;
  color: var(--blackcolor);
  transition: all 0.3s;
}

.sec-product-set .set-slides .arrows-swiper .swiper-button > i {
  opacity: 0.3;
  transition: all 0.3s;
}

.sec-product-set .set-slides .arrows-swiper .swiper-button:hover > i {
  opacity: 1;
}

.sec-product-set .set-slides .arrows-swiper .swiper-button:first-child {
  right: 15px;
}

.sec-product-set .set-slides .arrows-swiper .swiper-button:last-child {
  left: 45px;
}

.sec-product-set .set-slides .pagination-set {
  bottom: 60px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sec-product-set .set-slides .pagination-set .swiper-pagination-bullet {
  background-color: var(--blackcolor);
  margin: 0;
  width: 14px;
  height: 14px;
  border-radius: 100px;
  opacity: 0.12;
  transition: all 0.3s;
}

.sec-product-set .set-slides .pagination-set .swiper-pagination-bullet-active {
  width: 44px;
  background-color: var(--greencolor);
  opacity: 1;
}

/*---------------------- /Section Set Products ---------------------*/
/*---------------------- Section Select Colors ---------------------*/
.sec-ads-banners .list-colors {
  position: relative;
  padding-right: 45px;
}

.sec-ads-banners .swiper-colors {
  position: relative;
  z-index: 100;
  width: 100%;
}

.sec-ads-banners .swiper-colors::before {
  content: "";
  background: #F6F5F5;
  background: -webkit-linear-gradient(90deg, rgba(246, 245, 245, 0) 0%, rgb(246, 245, 245) 100%);
  background: -moz-linear-gradient(90deg, rgba(246, 245, 245, 0) 0%, rgb(246, 245, 245) 100%);
  background: linear-gradient(90deg, rgba(246, 245, 245, 0) 0%, rgb(246, 245, 245) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F6F5F5", endColorstr="#F6F5F5", GradientType=1);
  position: absolute;
  top: -50px;
  right: 0;
  width: 200px;
  height: 200px;
  z-index: 100;
}

.sec-ads-banners .swiper-colors .item-color {
  position: relative;
  display: flex;
  width: 100%;
  height: 100px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  border: 6px solid var(--whitecolor);
}

.sec-ads-banners .swiper-colors .item-color::before {
  content: "";
  background-color: var(--whitecolor);
  width: 32px;
  height: 32px;
  border-radius: 100%;
  position: absolute;
  z-index: 10;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.4s;
}

.sec-ads-banners .swiper-colors .item-color:hover::before {
  transform: scale(1);
  opacity: 1;
}

.sec-ads-banners .swiper-colors .arrows-swiper .swiper-button {
  top: 30%;
  width: 40px;
  height: 40px;
  font-size: 28px;
  opacity: 1;
}

.sec-ads-banners .swiper-colors .arrows-swiper .swiper-button > i {
  opacity: 0.3;
  transition: all 0.3s;
}

.sec-ads-banners .swiper-colors .arrows-swiper .swiper-button:hover > i {
  opacity: 1;
}

.sec-ads-banners .swiper-colors .arrows-swiper .swiper-button:last-child {
  left: auto;
}

.sec-ads-banners .swiper-colors .arrows-swiper .swiper-button:first-child {
  right: 30px;
}

/*---------------------- /Section Select Colors ---------------------*/
/*---------------------- Section News ---------------------*/
.sec-news-articles .item-news {
  position: relative;
  width: 100%;
  height: 490px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  border-radius: 50px;
  border: 2px solid var(--lightcolor);
  overflow: hidden;
}

.sec-news-articles .item-news .date {
  border-radius: 500px;
  background: rgba(23, 21, 59, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 100;
  color: var(--whitecolor);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.sec-news-articles .item-news:hover .date {
  background-color: var(--orangecolor);
}

.sec-news-articles .item-news .box-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.8s;
}

.sec-news-articles .item-news:hover .box-image > img {
  transform: scale(1.2);
}

.sec-news-articles .item-news .content-news {
  position: relative;
  background-color: var(--whitecolor);
  display: flex;
  width: 100%;
  height: 105px;
  overflow: hidden;
  padding: 20px 20px 10px;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  border-radius: 34px;
  z-index: 100;
  transition: all 0.4s;
}

.sec-news-articles .item-news:hover .content-news {
  height: 170px;
}

.sec-news-articles .item-news .content-news .title {
  margin: 0;
}

.sec-news-articles .item-news .content-news .title > a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--blackcolor);
  text-align: right;
  text-overflow: ellipsis;
  font-size: 22px;
  font-weight: 800;
  line-height: 32px;
}

.sec-news-articles .item-news:hover .content-news .title > a {
  color: var(--maincolor);
}

.sec-news-articles .item-news .content-news .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--blackcolor);
  text-align: right;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  opacity: 0.6;
  margin: 0;
}

.sec-news-articles .arrows-swiper .swiper-button:first-child {
  right: 30px;
}

.sec-news-articles .arrows-swiper .swiper-button:last-child {
  left: 30px;
}

/*---------------------- /Section News ---------------------*/
/*---------------------- /Content Main ---------------------*/
/*---------------------- Footer Main ---------------------*/
.footer-main {
  position: relative;
  background-color: var(--lightcolor);
  padding: 60px 0;
  margin-top: 120px;
  overflow: hidden;
}

.footer-main::before {
  content: "";
  background: url("../images/site/noise.png") repeat center/1500px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0.1;
}

.footer-main::after {
  content: "";
  background: url("../images/site/karen.png") no-repeat center center/770px;
  width: 770px;
  height: 270px;
  position: absolute;
  bottom: -30px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 10;
  opacity: 0.04;
}

.footer-main .about-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  z-index: 100;
}

.footer-main .about-footer .logo-footer {
  flex-shrink: 0;
}

.footer-main .about-footer .logo-footer > img {
  height: 160px;
}

.footer-main .about-footer .content {
  width: 100%;
}

.footer-main .about-footer .content .head .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-main .about-footer .content .title > strong {
  color: var(--blackcolor);
  text-align: right;
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 10px;
}

.footer-main .about-footer .content .title > span {
  color: var(--blackcolor);
  text-align: right;
  font-size: 20px;
  font-weight: 400;
  opacity: 0.6;
}

.footer-main .about-footer .content .desc {
  position: relative;
  color: rgba(23, 21, 59, 0.6);
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  height: 145px;
  overflow: hidden;
  margin-top: 20px;
}
.footer-main .about-footer .content .desc a {
  color: var(--maincolor);
}

.footer-main .about-footer .content .desc.show {
  height: auto;
}

.footer-main .about-footer .content .desc .show-more {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--maincolor);
  z-index: 10;
  transition: all 0.3s;
}

.footer-main .about-footer .content .desc.show .show-more {
  color: var(--blackcolor);
  opacity: 0.3;
}

.footer-main .about-footer .content .desc .show-more::before {
  content: "مشاهده بیشتر ...";
  display: inline-flex;
}

.footer-main .about-footer .content .desc.show .show-more::before {
  content: "مشاهده کمتر ...";
}

.footer-main .about-footer .images-cert {
  background-color: var(--whitecolor);
  width: 228px;
  height: 280px;
  padding: 30px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-main .about-footer .images-cert .swiper-slide {
  text-align: center;
}

.footer-main .about-footer .images-cert .item-cert > img {
  height: 160px;
}

.footer-main hr.spacing {
  border-color: var(--blackcolor);
  opacity: 0.1;
  margin: 60px 0;
}

.footer-main .quick-access .title-row {
  color: var(--blackcolor);
  text-align: right;
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 15px;
}

.footer-main .quick-access .swiper-links::before {
  content: "";
  background: #F6F5F5;
  background: -webkit-linear-gradient(270deg, rgba(246, 245, 245, 0) 0%, rgb(246, 245, 245) 100%);
  background: -moz-linear-gradient(270deg, rgba(246, 245, 245, 0) 0%, rgb(246, 245, 245) 100%);
  background: linear-gradient(270deg, rgba(246, 245, 245, 0) 0%, rgb(246, 245, 245) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F6F5F5", endColorstr="#F6F5F5", GradientType=0);
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 50px;
  z-index: 100;
}

.footer-main .quick-access .swiper-slide {
  background-color: var(--whitecolor);
  display: inline-flex;
  width: auto;
  height: 50px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  color: var(--blackcolor);
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s;
}

.footer-main .quick-access .swiper-slide:hover {
  background-color: var(--maincolor);
  font-weight: 700;
  color: var(--whitecolor);
}

.footer-main .quick-access .arrows-swiper .swiper-button {
  width: 40px;
  height: 40px;
  font-size: 28px;
  background: rgba(23, 21, 59, 0.2);
  color: var(--whitecolor);
  opacity: 1;
  top: 5px;
  left: 0;
  right: auto;
  transition: all 0.3s;
}

.footer-main .quick-access .arrows-swiper .swiper-button:hover {
  background-color: var(--greencolor);
  color: var(--whitecolor);
}

.footer-main .support-box {
  position: relative;
  background-color: var(--pinkcolor);
  height: 150px;
  padding: 32px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0px -10px 50px 0px rgba(234, 0, 135, 0.3);
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-main .support-box::before {
  content: "";
  background: url("../images/site/noise.png") repeat center/1500px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0.3;
}

.footer-main .support-box .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 50;
}

.footer-main .support-box .content .title {
  color: var(--whitecolor);
  text-align: right;
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 5px;
}

.footer-main .support-box .content .desc {
  color: var(--whitecolor);
  text-align: right;
  font-size: 20px;
  font-weight: 400;
  opacity: 0.8;
}

.footer-main .support-box .list-call {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  z-index: 50;
}

.footer-main .support-box .list-call .item-call {
  background-color: var(--whitecolor);
  display: flex;
  padding: 6px 22px 6px 6px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 500px;
  color: var(--blackcolor);
  font-size: 22px;
  font-weight: 700;
  direction: ltr;
  transition: all 0.3s;
}

.footer-main .support-box .list-call .item-call:hover {
  background-color: var(--blackcolor);
  color: var(--whitecolor);
  padding: 6px 28px 6px 6px;
}

.footer-main .support-box .list-call .item-call > i {
  display: flex;
  width: 52px;
  height: 52px;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  background: var(--pinkcolor);
  font-size: 24px;
  color: var(--whitecolor);
  transition: all 0.3s;
}

.footer-main .support-box .list-call .item-call:hover > i {
  background-color: var(--greencolor);
}

.footer-main .footer-copyright {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.footer-main .footer-copyright > span {
  width: 40%;
}

.footer-main .footer-copyright .copyright {
  color: var(--blackcolor);
  font-size: 18px;
  font-weight: 600;
  text-align: right;
}

.footer-main .footer-copyright .designer {
  color: var(--blackcolor);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
}
.footer-main .footer-copyright .designer a {
  color: var(--blackcolor);
  position: relative;
  transition: all 0.3s ease;
}
.footer-main .footer-copyright .designer a:hover {
  color: var(--pinkcolor);
  font-weight: 600;
}
.footer-main .footer-copyright .designer a::after {
  content: "";
  width: 0;
  position: absolute;
  height: 2px;
  background: var(--pinkcolor);
  right: 50%;
  left: 50%;
  bottom: -3px;
  transition: all 0.3s ease;
}
.footer-main .footer-copyright .designer a:hover:after {
  width: 100%;
  left: 0;
  right: 0;
}

.footer-main .footer-copyright .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-main .footer-copyright .socials .item-sc {
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
  background: var(--maincolor);
  font-size: 28px;
  color: var(--whitecolor);
  transition: all 0.3s;
}

.footer-main .footer-copyright .socials .item-sc:hover {
  background-color: var(--orangecolor);
  font-size: 30px;
}

.content-pages + .footer-main, .not-home .footer-main {
  margin-top: 0;
}

/*---------------------- /Footer Main ---------------------*/
/*---------------------- Navbar Bottom ---------------------*/
.tabs-footer {
  position: fixed;
  background-color: var(--whitecolor);
  box-shadow: 0px -6px 15px 0px rgba(44, 62, 80, 0.2);
  border-radius: 20px 20px 0 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 999;
}

.tabs-footer .item-tabft {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
}

.tabs-footer .item-tabft.side-link {
  width: 40%;
  font-size: 12px;
  font-weight: 600;
  color: var(--blackcolor);
}

.tabs-footer .item-tabft.cart-link {
  /* width: 20%; */
  font-size: 11px;
  font-weight: 600;
  color: var(--blackcolor);
}

.tabs-footer .item-tabft.cart-link .box-icon {
  position: relative;
  background-color: var(--maincolor);
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  margin-top: -25px;
  margin-bottom: 5px;
}

.tabs-footer .item-tabft.cart-link .box-icon .count {
  background-color: var(--orangecolor);
  width: 16px;
  height: 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  position: absolute;
  top: -3px;
  right: 1px;
  z-index: 10;
}

/*---------------------- /Navbar Bottom ---------------------*/
/*---------------------- Menu Mobile ---------------------*/
.resp-megamenu {
  background-color: var(--lightcolor);
  position: fixed;
  top: 0;
  width: 300px;
  height: 100vh;
  right: 0;
  z-index: 999999;
  border-radius: 0;
  padding: 0;
  border: none;
  overflow-y: auto;
  transform: translateX(300px);
  transition: all 0.3s;
}

.resp-megamenu::before {
  content: "";
  background: url("../images/site/noise.png") repeat center/1500px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0.1;
}

.resp-megamenu.show {
  transform: translateX(0);
}

.resp-megamenu .btn-close-megamenu {
  font-size: 18px;
  color: var(--blackcolor);
  background-color: transparent;
  border: none;
  margin: 15px 15px 5px;
  display: block;
  opacity: 0.3;
}

.resp-megamenu .list-megamenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.resp-megamenu .list-megamenu > li {
  width: 100%;
}

.resp-megamenu .list-megamenu .item-mgmenu {
  position: relative;
  background-color: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px 15px 30px;
  border: none;
  border-bottom: 1px solid var(--lightcolor);
}

.resp-megamenu .list-megamenu > li:last-child .item-mgmenu {
  border-bottom: none !important;
}

.resp-megamenu .list-megamenu .item-mgmenu .content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.resp-megamenu .list-megamenu .item-mgmenu .content > i {
  font-size: 25px;
  width: 25px;
  text-align: center;
  color: var(--textcolor);
  transition: all 0.3s;
}

.resp-megamenu .list-megamenu .item-mgmenu:hover .content > i {
  color: var(--maincolor);
}

.resp-megamenu .list-megamenu .item-mgmenu .content .title {
  font-size: 13px;
  font-weight: 400;
  color: var(--blackcolor);
  transition: all 0.3s;
}

.resp-megamenu .list-megamenu .item-mgmenu:hover .content .title {
  color: var(--maincolor);
}

.resp-megamenu .list-megamenu .item-mgmenu .count {
  font-size: 18px;
  font-weight: 400;
  color: var(--blackcolor);
  transition: all 0.3s;
}

.resp-megamenu .list-megamenu .item-mgmenu:hover .count {
  opacity: 0;
  visibility: hidden;
}

.resp-megamenu .sub-megamenu {
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  height: 92%;
  background-color: var(--lightcolor);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: all 0.2s;
}

.resp-megamenu .sub-megamenu.show {
  transform: translateX(0);
  visibility: visible;
}

.resp-megamenu .sub-megamenu .head-list {
  position: sticky;
  align-self: flex-start;
  top: 0;
  background-color: var(--maincolor);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  z-index: 100;
}

.resp-megamenu .sub-megamenu .head-list .btn-back-main {
  background-color: transparent;
  border: none;
  font-size: 18px;
  color: var(--whitecolor);
  padding: 0;
  margin: 0;
  height: auto;
  display: flex;
}

.resp-megamenu .sub-megamenu .head-list .title-sub-menu {
  font-size: 12px;
  font-weight: 400;
  color: var(--whitecolor);
  opacity: 0.5;
}

.resp-megamenu .sub-megamenu .list-submenu {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.resp-megamenu .sub-megamenu .list-submenu.nested-list-submenu {
  padding: 0 15px 0 0;
}

.resp-megamenu .sub-megamenu .list-submenu > li {
  width: 100%;
}

.resp-megamenu .sub-megamenu .list-submenu > li > a {
  position: relative;
  background-color: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid var(--lightcolor);
  font-size: 12px;
  font-weight: 400;
  color: var(--blackcolor);
  transition: all 0.3s;
}

.resp-megamenu .sub-megamenu .list-submenu > li > a:hover {
  color: var(--maincolor);
}

.resp-megamenu .sub-megamenu .list-submenu > li:last-child > a {
  border-bottom: none;
}

.resp-megamenu .sub-megamenu .list-submenu > li > a::after {
  content: "\e901";
  font-family: "icomoon";
  position: absolute;
  top: 10px;
  left: 30px;
  z-index: 10;
  font-size: 14px;
  color: var(--maincolor);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.resp-megamenu .sub-megamenu .list-submenu > li > a:hover::after {
  opacity: 1;
  visibility: visible;
  left: 0;
}

.resp-megamenu .other-megamenu .title-other {
  background-color: var(--maincolor);
  padding: 15px;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  color: var(--whitecolor);
  margin: 10px 0;
}

.resp-megamenu .other-megamenu .other-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.resp-megamenu .other-megamenu .other-list > li {
  width: 100%;
}

.resp-megamenu .other-megamenu .other-list > li > a {
  position: relative;
  background-color: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  font-size: 12px;
  font-weight: 400;
  color: var(--blackcolor);
  opacity: 0.6;
  transition: all 0.3s;
}

.resp-megamenu .logo-karen {
  position: absolute;
  bottom: 6%;
  right: 0;
  left: 0;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
}

.resp-megamenu .logo-karen .logo {
  width: 100px;
}

/*---------------------- /Menu Mobile ---------------------*/
/*---------------------- Responsives ---------------------*/
@media only screen and (min-width: 1700px) and (max-width: 1800px) {
  .container {
    padding: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .container {
    padding: 0 30px;
  }
  .header-main .header-top .head-fixed {
    border-radius: 30px;
  }
  .header-main .head-fixed .logo-karen .logo {
    height: 70px;
  }
  .header-main .head-fixed .logo-karen .crown {
    height: 45px;
    top: -45px;
  }
  .header-main .head-fixed .navbar-customize .nav-item .nav-link {
    font-size: 18px;
    padding: 36px 0;
  }
  .header-main .head-fixed .navbar-customize .nav-item .dropdown-toggle::after {
    font-size: 18px;
  }
  .header-main .head-fixed.affix .navbar-customize .nav-item .nav-link {
    font-size: 18px;
    padding: 34px 0;
  }
  .header-main .head-fixed.affix .navbar-customize .nav-item .dropdown-toggle::after {
    font-size: 18px;
  }
  .header-main .head-fixed.affix .logo-karen {
    padding-top: 25px;
  }
  .header-main .head-fixed .options-site {
    gap: 10px;
  }
  .header-main .head-fixed .options-site .opt-item {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .header-main .head-fixed .options-site .opt-item .count {
    width: 20px;
    height: 20px;
    font-size: 12px;
    right: -2px;
    top: -2px;
  }
  .header-main .head-fixed .options-site .opt-search {
    width: auto;
    overflow: hidden;
    transition: all 0.3s;
  }
  .header-main .head-fixed .options-site .opt-search input {
    width: 180px;
    height: 50px;
    font-size: 14px;
  }
  .header-main .navbar-customize .megacustom-menu .menubox {
    position: fixed;
    right: 0;
    top: 142px;
    width: 100%;
  }
  .karen-content .content-box .sub-title {
    font-size: 24px;
  }
  .karen-content .content-box .title-main > strong {
    font-size: 60px;
  }
  .karen-content .content-box .title-main .karen {
    line-height: 80px;
  }
  .karen-content .content-box .title-main .text {
    line-height: 60px;
  }
  .karen-content .content-box .title-main .karen::after {
    background-size: 38px;
    width: 38px;
    height: 38px;
    top: -10px;
    left: 21px;
  }
  .karen-content .content-box {
    padding-top: 121px;
  }
  .karen-content .content-box .desc-content {
    font-size: 16px;
    line-height: 34px;
    margin: 30px 0;
  }
  .karen-content .content-box .features {
    gap: 30px;
  }
  .karen-content .content-box .features .item-fts .title {
    font-size: 18px;
  }
  .karen-content .content-box .features .item-fts .desc {
    font-size: 14px;
  }
  .karen-content .content-box .features .item-fts::before {
    width: 12px;
    height: 12px;
    top: 18px;
  }
  .karen-content .content-box .features .item-fts {
    padding-right: 24px;
  }
  .karen-content .content-box .bottom .btn-more {
    padding: 12px 26px;
    font-size: 18px;
  }
  .karen-content .content-box .bottom .btn-more:hover {
    padding: 12px 32px;
  }
  .karen-content .slider-karen .boxes-slider {
    width: 90%;
  }
  .head-section .content .title {
    font-size: 32px;
  }
  .head-section .details .title-main {
    font-size: 18px;
  }
  .head-section .details .desc-more {
    font-size: 14px;
  }
  .head-section .details {
    padding-right: 26px;
  }
  .head-section .details::before {
    width: 12px;
    height: 12px;
    top: 18px;
  }
  .sec-categories .swiper-categories .item-ctg {
    height: 350px;
    padding: 30px 40px;
  }
  .sec-categories .swiper-categories .item-ctg .title {
    height: 45px;
    padding: 10px;
    font-size: 16px;
  }
  .swiper .arrows-swiper .swiper-button {
    width: 50px;
    height: 50px;
  }
  .item-product-karen .box-images {
    height: 420px;
  }
  .item-product-karen .box-images .sizing .label {
    font-size: 14px;
  }
  .item-product-karen .box-images .sizing .list > span {
    width: 22px;
    height: 22px;
    font-size: 16px;
  }
  .item-product-karen .box-images .status {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  .item-product-karen .content-prd {
    height: 80px;
  }
  .item-product-karen .content-prd .title > a {
    font-size: 20px;
  }
  .item-product-karen .box-images .status.new {
    font-size: 16px;
  }
  .sec-bg-products .box-outer-section {
    padding: 20px;
  }
  .sec-bg-products .box-outer-section .content-side {
    width: 200px;
  }
  .sec-bg-products .box-outer-section .content-side .title {
    font-size: 32px;
    line-height: 34px;
  }
  .sec-bg-products .box-outer-section .content-side .desc {
    font-size: 14px;
    line-height: 24px;
  }
  .sec-bg-products .box-outer-section .content-side .box-icon {
    height: 130px;
  }
  .sec-bg-products .box-outer-section .content-side .btn-more {
    padding: 14px;
    font-size: 16px;
  }
  .item-product-karen.small-product .box-images .status {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .item-product-karen.small-product .box-images {
    height: 320px;
  }
  .item-product-karen .box-images .countdown {
    height: 40px;
    padding: 10px 20px;
  }
  .item-product-karen .box-images .countdown .txt {
    font-size: 16px;
  }
  .item-product-karen .box-images .countdown .number:not(:last-child)::after {
    right: -16px;
    top: -4px;
  }
  .item-product-karen.small-product .content-prd .title > a {
    font-size: 16px;
  }
  .item-product-karen.small-product .content-prd .prices .off {
    font-size: 14px;
  }
  .item-product-karen.small-product .content-prd .prices .main,
  .item-product-karen.small-product .content-prd .prices .main > i {
    font-size: 20px;
  }
  .item-product-karen.small-product .content-prd .rating .number {
    font-size: 12px;
  }
  .item-product-karen.small-product .content-prd .rating .stars {
    font-size: 13px;
    gap: 3px;
  }
  .item-product-karen.small-product .content-prd {
    height: 70px;
  }
  .item-product-karen.small-product .box-images .arrows-swiper .swiper-button {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
  .sec-ads-banners .item-banner {
    height: 160px;
    border-radius: 40px;
  }
  .sec-ads-banners .item-banner .title {
    font-size: 32px;
    line-height: 36px;
  }
  .sec-ads-banners .select-size .box-outer-light {
    height: 160px;
    border-radius: 40px;
  }
  .head-section .content .desc {
    font-size: 18px;
  }
  .sec-product-set .box-outer-set {
    height: 600px;
  }
  .sec-product-set .box-outer-set .set-image > img {
    height: 600px;
  }
  .sec-product-set .box-outer-set .set-slides {
    padding: 40px 60px 85px 90px;
  }
  .sec-product-set .set-slides .arrows-swiper .swiper-button:last-child {
    left: 32px;
  }
  .sec-product-set .set-slides .arrows-swiper .swiper-button:first-child {
    right: 4px;
  }
  .sec-product-set .set-slides .item-product-karen .box-images {
    height: 340px;
  }
  .sec-product-set .set-slides .pagination-set {
    bottom: 40px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd .title > a {
    font-size: 18px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd .prices .off {
    font-size: 16px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd .prices .main {
    font-size: 24px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd .prices .main > i {
    font-size: 24px;
  }
  .sec-ads-banners .swiper-colors .item-color {
    height: 86px;
    border: 5px solid var(--whitecolor);
  }
  .sec-ads-banners .swiper-colors .arrows-swiper .swiper-button {
    top: 25%;
    font-size: 26px;
  }
  .sec-ads-banners .swiper-colors .arrows-swiper .swiper-button:first-child {
    right: 22px;
  }
  .sec-news-articles .item-news {
    height: 560px;
  }
  .sec-news-articles .item-news .content-news {
    height: 100px;
    border-radius: 30px;
  }
  .sec-news-articles .item-news .content-news .title > a {
    font-size: 20px;
    line-height: 28px;
  }
  .sec-news-articles .item-news .content-news .desc {
    font-size: 14px;
    line-height: 22px;
  }
  .sec-news-articles .item-news:hover .content-news {
    height: 155px;
  }
  .footer-main .about-footer .logo-footer > img {
    height: 140px;
  }
  .footer-main .about-footer .content .title > strong {
    font-size: 32px;
  }
  .footer-main .about-footer .content .title > span {
    font-size: 18px;
  }
  .footer-main .about-footer .content .desc {
    font-size: 14px;
    line-height: 32px;
    height: 132px;
  }
  .footer-main .about-footer .content .desc a {
    color: var(--maincolor);
  }
  .footer-main .about-footer .content .desc .show-more {
    font-size: 14px;
  }
  .footer-main .about-footer .images-cert {
    width: 210px;
    height: 260px;
  }
  .footer-main .about-footer .images-cert .item-cert > img {
    height: 140px;
  }
  .footer-main .quick-access .title-row {
    font-size: 26px;
  }
  .footer-main .quick-access .swiper-slide {
    height: 45px;
    padding: 10px 24px;
    font-size: 16px;
  }
  .footer-main .quick-access .arrows-swiper .swiper-button {
    top: 2px;
  }
  .footer-main hr.spacing {
    margin: 40px 0;
  }
  .footer-main .support-box {
    height: 130px;
  }
  .footer-main .support-box .content .title {
    font-size: 30px;
  }
  .footer-main .support-box .content .desc {
    font-size: 18px;
  }
  .footer-main .support-box .list-call .item-call {
    font-size: 20px;
  }
  .footer-main .support-box .list-call .item-call > i {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
  .footer-main .footer-copyright .copyright,
  .footer-main .footer-copyright .designer {
    font-size: 16px;
  }
  .footer-main .footer-copyright .socials .item-sc {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    font-size: 26px;
  }
  .footer-main::after {
    background-size: 650px;
    width: 650px;
    height: 200px;
  }
}
/*---------------------- /Responsives ---------------------*/
/*---------------------- Responsives ---------------------*/
@media only screen and (min-width: 1700px) and (max-width: 1800px) {
  .container {
    padding: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1700px) {
  .container {
    padding: 0 30px;
  }
}
/*---------------------- /Responsives ---------------------*/
.whatsapp-button {
  position: fixed;
  bottom: var(--whb-top, 20px);
  z-index: 99;
}
.whatsapp-button.right {
  right: 20px;
}
.whatsapp-button.right span {
  right: 55px;
}
.whatsapp-button.left {
  left: 20px;
}
.whatsapp-button.left span {
  left: 55px;
}
.whatsapp-button a {
  display: block;
  flex-shrink: 0;
  opacity: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  order: 2;
  padding: 5px;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  box-shadow: rgba(136, 136, 136, 0.4) 0px 1px 7px;
  transition: 0.5s;
  position: relative;
  z-index: 200;
  text-decoration: none !important;
  background-color: rgb(77, 194, 71) !important;
}
.whatsapp-button a:hover {
  transform: scale(1.2);
}
.whatsapp-button span {
  position: absolute;
  top: -20px;
  background: #ffffff;
  font-size: 11px;
  width: 100px;
  padding: 5px 8px;
  border-radius: 6px;
}

/*-----------------------------------------------------------*/
.user-menu-wrapper {
  position: relative;
  z-index: 101;
}
.user-menu-wrapper > a .subtext {
  font-size: 11px;
}

.user-dropdown-menu {
  position: absolute;
  top: 100px;
  opacity: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  /* padding: 10px 0; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 200px;
  transition: all 0.35s ease;
  visibility: hidden;
  overflow: hidden;
}
.user-dropdown-menu.show {
  visibility: visible;
  top: 70px;
  opacity: 1;
}

.user-dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.user-dropdown-menu ul li a {
  display: block;
  padding: 10px 10px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
  font-size: 14px;
}
.user-dropdown-menu ul li a:hover {
  background: #f2f2f2;
}
.user-dropdown-menu ul li a i {
  position: relative;
  top: 3px;
  right: -3px;
}

/*------------------popup --------------------------*/
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  position: relative;
  width: 90%;
  max-width: 700px;
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.popup-box img {
  max-width: 100%;
  height: auto;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

@media only screen and (min-width: 0px) and (max-width: 640px) {
  .popup-box {
    max-width: 95%;
    padding: 15px 10px;
  }
}
/*---------------------- Modal ---------------------*/
.modal-backdrop {
  background: rgba(0, 69, 61, 0.4) url("../images/site/bg-noise.png") repeat center center/200px;
  backdrop-filter: blur(15px);
  z-index: 99999;
}

.modal-backdrop.show {
  opacity: 1;
}

.modal-goharnahal {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  z-index: 999999;
  transition: all 0.5s;
}

.modal-goharnahal.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.modal-goharnahal .modal-content {
  border-radius: 30px;
  background-clip: padding-box;
  box-shadow: 0px 4px 100px 0px rgba(0, 69, 61, 0.4);
}

.modal-goharnahal .modal-header {
  position: relative;
  padding: 25px 30px;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}

.modal-goharnahal .modal-header .modal-title {
  font-weight: bold;
  color: var(--maincolor);
  font-size: 18px;
  display: flex;
  align-items: center;
}

.modal-goharnahal .modal-header .modal-title > .icon-long-arrow {
  transform: scaleX(-1);
  margin-left: 10px;
}

.modal-goharnahal .modal-header .close {
  margin: 0;
  padding: 0;
  width: 45px;
  height: 45px;
  background-color: var(--lightcolor);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--textcolor);
  opacity: 1;
  text-shadow: none;
  transition: all 0.4s;
}

.modal-goharnahal .modal-header .close:hover {
  background-color: var(--subcolor);
  color: var(--whitecolor);
  opacity: 1;
}

.modal-goharnahal .modal-header .logo-modal {
  background: url("../images/site/vector-footer-after.svg") no-repeat center center/250px;
  width: 250px;
  height: 80px;
  position: absolute;
  top: -5px;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-goharnahal .modal-header .logo-modal img {
  width: 40px;
  filter: brightness(0) invert(1);
}

.modal-goharnahal .modal-body {
  padding: 0 30px 25px;
}

.modal-goharnahal .video-gohar {
  background-color: var(--blackcolor);
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid var(--lightcolor);
}

.modal-goharnahal .modal-body .desc-modal {
  font-size: 14px;
  font-weight: normal;
  color: var(--textcolor);
  width: 100%;
  margin: 0 0 20px;
  text-align: center;
}

.modal-goharnahal .form-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-goharnahal .form-copy .btn-copy-clipboard {
  background-color: var(--whitecolor);
  width: 180px;
  height: 60px;
  border: 2px solid var(--lightcolor);
  border-radius: 15px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-goharnahal.modal-factor .form-copy .btn-copy-clipboard {
  background-color: var(--maincolor);
  border-color: var(--maincolor);
  margin-left: 0;
  margin-right: 10px;
  font-size: 16px;
  font-weight: bold;
  color: var(--whitecolor);
  width: 200px;
}

.modal-goharnahal .form-copy .btn-copy-clipboard.copied {
  background-color: var(--maincolor);
}

.modal-goharnahal .form-copy .btn-copy-clipboard::after {
  content: "کپی کنید";
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blackcolor);
  transition: all 0.3s;
}

.modal-goharnahal.modal-factor .form-copy .btn-copy-clipboard::after {
  display: none;
}

.modal-goharnahal .form-copy .btn-copy-clipboard.copied::after {
  content: "کپی شد!";
  color: var(--whitecolor);
}

.modal-goharnahal .form-copy .btn-copy-clipboard > i {
  font-size: 20px;
  color: var(--textcolor);
  transition: all 0.3s;
}

.modal-goharnahal .form-copy .btn-copy-clipboard.copied > i {
  color: var(--white);
}

.modal-goharnahal .form-link {
  background-color: var(--lightcolor);
  border-radius: 15px;
  width: 100%;
  height: 60px;
  padding: 15px;
  font-size: 16px;
  font-weight: normal;
  color: var(--blackcolor);
  box-shadow: none;
  border: 2px solid var(--lightcolor);
  text-align: left;
  direction: ltr;
  transition: all 0.3s;
}

.modal-goharnahal.modal-factor .form-link {
  font-size: 14px;
  text-align: right;
  color: var(--textcolor);
}

.modal-goharnahal.modal-factor .form-link::placeholder {
  opacity: 0.5;
}

.modal-goharnahal textarea.form-control-gohar {
  min-height: 125px;
  padding: 25px;
}

.modal-goharnahal .btn-confirm-modal {
  background-color: var(--maincolor);
  width: auto;
  display: inline-flex;
  height: 70px;
  padding: 25px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0px 4px 30px 0px rgba(55, 151, 119, 0.4);
  font-size: 16px;
  font-weight: 600;
  color: var(--whitecolor);
  border: none;
  flex-shrink: 0;
  margin-top: 30px;
  transition: all 0.3s;
}

.modal-goharnahal .btn-confirm-modal:hover {
  background-color: var(--subcolor);
  box-shadow: 0px 4px 30px 0px rgba(0, 69, 61, 0.4);
}

.modal-goharnahal.modal-sm-del .modal-body {
  padding: 20px;
}

.modal-sm-del .modal-body .content-delete {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.modal-sm-del .modal-body .content-delete > i {
  font-size: 40px;
  color: var(--redcolor);
  margin-bottom: 15px;
}

.modal-sm-del .modal-body .content-delete > i.logout {
  transform: scaleX(-1);
}

.modal-sm-del .modal-body .content-delete .desc-modal {
  font-size: 14px;
  font-weight: 600;
  color: var(--textcolor);
  text-align: center;
}

.modal-sm-del .modal-body .btns-footer-modal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.modal-sm-del .modal-body .btns-footer-modal .btn-item-footer {
  background-color: var(--lightcolor);
  width: 50%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  color: var(--textcolor);
  transition: all 0.3s;
}

.modal-sm-del .modal-body .btns-footer-modal .btn-confirm {
  background-color: var(--redcolor);
  color: var(--whitecolor);
}

/*---------------------- /Modal ---------------------*/
@media only screen and (min-width: 650px) and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  .mt-120 {
    margin-top: 60px;
  }
  .header-main .head-fixed .navbar-customize,
  .karen-content .slider-karen .boxes-slider,
  .karen-content .content-box .features {
    display: none;
  }
  .header-main {
    height: auto;
    padding-bottom: 30px;
  }
  .header-main .header-top {
    top: 22px;
  }
  .header-main .header-top .head-fixed {
    width: 95%;
    margin: 0 auto;
    padding: 16px 22px;
    border-radius: 30px;
  }
  .header-main .header-top .head-fixed.affix {
    width: 100%;
    padding: 10px 22px;
  }
  .header-main .head-fixed .logo-karen .logo {
    height: 50px;
  }
  .header-main .head-fixed.affix .logo-karen .logo {
    height: 40px;
  }
  .header-main .head-fixed.affix .logo-karen {
    padding-top: 20px;
  }
  .header-main .head-fixed .logo-karen .crown {
    height: 30px;
    top: -30px;
  }
  .header-main .head-fixed.affix .logo-karen .crown {
    height: 25px;
    top: -5px;
  }
  .header-main .head-fixed .options-site {
    width: auto;
    gap: 6px;
  }
  .header-main .head-fixed .options-site .opt-item,
  .header-main .head-fixed.affix .options-site .opt-item {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  .header-main .head-fixed .options-site .opt-search,
  .header-main .head-fixed.affix .options-site .opt-search {
    width: auto;
  }
  .header-main .head-fixed .options-site .opt-search > button {
    width: 45px;
    height: 45px;
  }
  .header-main .head-fixed .options-site .opt-search input {
    height: 45px;
    font-size: 14px;
    padding-right: 15px;
  }
  .header-main .head-fixed .options-site .opt-item .count {
    width: 20px;
    height: 20px;
    right: -3px;
    top: -3px;
    font-size: 12px;
  }
  .header-main .head-fixed .options-site .opt-menubar,
  .header-main .head-fixed.affix .options-site .opt-menubar {
    display: flex;
    width: 45px;
    height: 45px;
  }
  .header-main .head-fixed .options-site .opt-menubar .lines {
    width: 18px;
    box-shadow: 0 -6px 0 0 var(--maincolor), 0 6px 0 0 var(--maincolor);
  }
  .karen-content .content-box {
    padding-top: 140px;
    text-align: center;
  }
  .karen-content .content-box .sub-title {
    font-size: 20px;
  }
  .karen-content .content-box .title-main {
    align-items: center;
  }
  .karen-content .content-box .title-main > strong {
    font-size: 50px;
  }
  .karen-content .content-box .title-main .karen {
    line-height: 60px;
  }
  .karen-content .content-box .title-main .text {
    line-height: 50px;
  }
  .karen-content .content-box .title-main .karen::after {
    background-size: 28px;
    width: 28px;
    height: 28px;
    left: 18px;
  }
  .karen-content .content-box .desc-content {
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    margin: 20px 0;
  }
  .karen-content .content-box .bottom {
    justify-content: center;
  }
  .karen-content .content-box .bottom .btn-more {
    padding: 12px 24px;
    font-size: 16px;
  }
  .head-section {
    margin-bottom: 30px;
  }
  .head-section .content .title {
    font-size: 28px;
  }
  .head-section .content .desc {
    font-size: 16px;
  }
  .head-section .details {
    padding-right: 24px;
  }
  .head-section .details .title-main {
    font-size: 16px;
  }
  .head-section .details .desc-more {
    font-size: 14px;
  }
  .head-section .details::before {
    width: 10px;
    height: 10px;
    top: 18px;
  }
  .head-section .btn-more {
    gap: 10px;
    font-size: 16px;
  }
  .head-section .btn-more > i {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
  .sec-categories .swiper-categories .item-ctg {
    border-radius: 40px;
    height: 250px;
    padding: 20px;
  }
  .sec-categories .swiper-categories .item-ctg .title {
    height: 40px;
    font-size: 14px;
  }
  .swiper .arrows-swiper .swiper-button {
    width: 40px;
    height: 40px;
    top: 40%;
    font-size: 18px;
    opacity: 1;
  }
  .row-gap-products {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 -6px;
  }
  .row-gap-products .item-product-karen {
    padding: 0 6px;
  }
  .item-product-karen .box-images {
    height: 320px;
    border-radius: 40px;
  }
  .item-product-karen .box-images .status {
    width: 45px;
    height: 45px;
    left: 14px;
    top: 14px;
    font-size: 16px;
  }
  .item-product-karen .content-prd {
    height: 70px;
  }
  .item-product-karen .content-prd .title > a {
    font-size: 18px;
  }
  .item-product-karen .content-prd .prices .off {
    font-size: 14px;
  }
  .item-product-karen .content-prd .prices .main,
  .item-product-karen .content-prd .prices .main > i {
    font-size: 20px;
  }
  .item-product-karen .content-prd .rating .number {
    font-size: 12px;
  }
  .item-product-karen .content-prd .rating .stars {
    font-size: 12px;
    gap: 3px;
  }
  .sec-bg-products .box-outer-section {
    padding: 20px;
    border-radius: 40px;
  }
  .item-product-karen.small-product {
    border-radius: 30px;
  }
  .sec-bg-products .box-outer-section .content-side {
    width: 200px;
  }
  .sec-bg-products .box-outer-section .content-side .title {
    font-size: 28px;
    line-height: 34px;
  }
  .sec-bg-products .box-outer-section .content-side .desc {
    font-size: 14px;
    line-height: 24px;
  }
  .sec-bg-products .box-outer-section .content-side .box-icon {
    height: 120px;
  }
  .sec-bg-products .box-outer-section .content-side .btn-more {
    padding: 12px 20px;
    font-size: 16px;
  }
  .item-product-karen.small-product .box-images {
    border-radius: 24px;
    height: 300px;
  }
  .item-product-karen.small-product .box-images .status {
    width: 40px;
    height: 40px;
    left: 12px;
    top: 12px;
    font-size: 14px;
  }
  .item-product-karen.small-product .content-prd .title > a {
    font-size: 16px;
  }
  .item-product-karen.small-product .content-prd .prices .main,
  .item-product-karen.small-product .content-prd .prices .main > i {
    font-size: 18px;
  }
  .item-product-karen.small-product .content-prd {
    height: 65px;
  }
  .item-product-karen .box-images .countdown {
    width: 90%;
    height: 40px;
    padding: 10px 20px;
    bottom: 15px;
  }
  .item-product-karen .box-images .countdown .number:not(:last-child)::after {
    font-size: 18px;
    right: -18px;
  }
  .item-product-karen .box-images .countdown .txt {
    font-size: 16px;
  }
  .sec-ads-banners .item-banner {
    height: 120px;
    border-radius: 40px;
  }
  .sec-ads-banners .item-banner .title {
    font-size: 28px;
    line-height: 32px;
  }
  .sec-ads-banners .container > .row {
    margin: 0 -10px;
  }
  .sec-ads-banners .row .col-md-6 {
    padding: 0 10px;
  }
  .sec-ads-banners .select-size .box-outer-light {
    margin: 20px 0;
    border-radius: 40px;
    padding: 22px;
    height: auto;
  }
  .sec-ads-banners .head-section .content {
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
  }
  .sec-ads-banners .select-size .box-outer-light .list-column {
    justify-content: center;
  }
  .sec-ads-banners .select-size .list-sizing .item-size {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }
  .sec-ads-banners .select-size .list-sizing .item-size .title {
    font-size: 18px;
  }
  .sec-ads-banners .select-size .list-sizing .item-size .desc {
    font-size: 12px;
  }
  .sec-product-set .box-outer-set {
    height: 500px;
    border-radius: 40px;
  }
  .sec-product-set .box-outer-set .set-image > img {
    height: 500px;
  }
  .sec-product-set .box-outer-set .set-slides {
    padding: 30px 45px 60px 75px;
  }
  .sec-product-set .set-slides .item-product-karen .box-images {
    height: 300px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd .title > a {
    font-size: 16px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd .prices .off {
    font-size: 16px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd .prices .main,
  .sec-product-set .set-slides .item-product-karen .content-prd .prices .main > i {
    font-size: 22px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd {
    height: 60px;
  }
  .sec-product-set .set-slides .pagination-set {
    bottom: 28px;
    gap: 6px;
  }
  .sec-product-set .set-slides .pagination-set .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  .sec-product-set .set-slides .pagination-set .swiper-pagination-bullet-active {
    width: 36px;
  }
  .sec-product-set .set-slides .arrows-swiper .swiper-button {
    width: 35px;
    height: 35px;
    font-size: 25px;
    top: 40%;
  }
  .sec-product-set .set-slides .arrows-swiper .swiper-button:first-child {
    right: -2px;
  }
  .sec-product-set .set-slides .arrows-swiper .swiper-button:last-child {
    left: 28px;
  }
  .sec-ads-banners .list-colors {
    position: relative;
    padding-right: 0;
  }
  .sec-ads-banners .swiper-colors .item-color {
    height: 80px;
    border-radius: 20px;
    border-width: 4px;
  }
  .sec-ads-banners .swiper-colors .arrows-swiper .swiper-button {
    top: 28%;
    width: 35px;
    height: 35px;
    font-size: 24px;
  }
  .sec-ads-banners .swiper-colors .arrows-swiper .swiper-button:first-child {
    right: 22px;
  }
  .sec-news-articles .item-news {
    height: 500px;
    padding: 20px;
    border-radius: 40px;
  }
  .sec-news-articles .item-news .date {
    left: 20px;
    top: 20px;
    font-size: 14px;
  }
  .sec-news-articles .item-news .content-news {
    height: auto;
    padding: 15px;
    border-radius: 28px;
  }
  .sec-news-articles .item-news .content-news .title > a {
    font-size: 18px;
    line-height: 26px;
  }
  .sec-news-articles .item-news .content-news .desc {
    font-size: 12px;
    line-height: 22px;
  }
  .footer-main .about-footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .footer-main .about-footer .content {
    order: 1;
  }
  .footer-main .about-footer .logo-footer > img {
    height: 100px;
  }
  .footer-main .about-footer .images-cert {
    background-color: transparent;
    width: 100px;
    height: auto;
    padding: 0;
  }
  .footer-main .about-footer .images-cert .item-cert > img {
    height: 100px;
  }
  .footer-main .about-footer .content .head .title {
    align-items: center;
  }
  .footer-main .about-footer .content .title > strong {
    font-size: 28px;
  }
  .footer-main .about-footer .content .title > span {
    font-size: 16px;
  }
  .footer-main .about-footer .content .desc {
    font-size: 13px;
    line-height: 30px;
    height: 120px;
  }
  .footer-main .about-footer .content .desc .show-more {
    font-size: 13px;
  }
  .footer-main hr.spacing {
    margin: 20px 0;
  }
  .footer-main {
    margin-top: 60px;
    padding: 30px 0;
  }
  .footer-main .quick-access .title-row {
    font-size: 24px;
  }
  .footer-main .quick-access .swiper-slide {
    height: 40px;
    padding: 10px 18px;
    font-size: 14px;
  }
  .footer-main .quick-access .arrows-swiper .swiper-button {
    width: 35px;
    height: 35px;
    font-size: 22px;
    top: 2px;
  }
  .footer-main .support-box {
    height: auto;
    padding: 22px;
    border-radius: 30px;
    margin-top: 30px;
    flex-direction: column;
  }
  .footer-main .support-box .content {
    align-items: center;
  }
  .footer-main .support-box .content .title {
    text-align: center;
    font-size: 24px;
  }
  .footer-main .support-box .content .desc {
    text-align: center;
    font-size: 16px;
  }
  .footer-main .support-box .list-call {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }
  .footer-main .support-box .list-call .item-call {
    font-size: 18px;
    padding-right: 18px;
  }
  .footer-main .support-box .list-call .item-call > i {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .footer-main .footer-copyright .copyright,
  .footer-main .footer-copyright .designer {
    font-size: 14px;
    line-height: 1.4;
    width: 30%;
  }
  .footer-main .footer-copyright .socials {
    gap: 8px;
  }
  .footer-main .footer-copyright .socials .item-sc {
    width: 45px;
    height: 45px;
    border-radius: 16px;
    font-size: 20px;
  }
  .footer-main::after {
    background-size: 550px;
    width: 550px;
    height: 180px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 640px) {
  .container {
    padding: 0 15px;
  }
  .mt-120 {
    margin-top: 40px;
  }
  .overlay-resp {
    z-index: 99999;
  }
  .header-main .head-fixed .navbar-customize,
  .karen-content .slider-karen .boxes-slider,
  .karen-content .content-box .features,
  .header-main .head-fixed .options-site .opt-item {
    display: none;
  }
  .header-main {
    height: auto !important;
    padding-bottom: 30px;
  }
  .header-main .header-top {
    top: 15px;
  }
  .header-main .header-top .head-fixed {
    width: 95%;
    margin: 0 auto;
    padding: 16px;
    border-radius: 24px;
  }
  .header-main .header-top .head-fixed.affix {
    width: 100%;
    padding: 10px 14px;
  }
  .header-main .head-fixed .logo-karen .logo {
    height: 40px;
  }
  .header-main .head-fixed.affix .logo-karen .logo {
    height: 35px;
  }
  .header-main .head-fixed.affix .logo-karen {
    padding-top: 15px;
  }
  .header-main .head-fixed .logo-karen .crown {
    height: 25px;
    top: -25px;
  }
  .header-main .head-fixed.affix .logo-karen .crown {
    height: 25px;
    top: -5px;
  }
  .header-main .head-fixed .options-site {
    width: auto;
    gap: 6px;
  }
  .header-main .head-fixed .options-site .opt-search,
  .header-main .head-fixed.affix .options-site .opt-search {
    display: flex;
    width: auto;
    height: 35px;
  }
  .header-main .head-fixed .options-site .opt-search input,
  .header-main .head-fixed .options-site .opt-search input:focus {
    width: 160px;
  }
  .header-main .head-fixed.affix .options-site .opt-search input {
    width: 235px;
  }
  .header-main .head-fixed .options-site .opt-search > button {
    width: 35px;
    height: 35px;
    font-size: 17px;
  }
  .header-main .head-fixed .options-site .opt-search input {
    height: 35px;
    font-size: 11px;
    padding-right: 12px;
  }
  .header-main .head-fixed .options-site .opt-item .count {
    width: 20px;
    height: 20px;
    right: -3px;
    top: -3px;
    font-size: 12px;
  }
  .header-main .head-fixed .options-site .opt-menubar,
  .header-main .head-fixed.affix .options-site .opt-menubar {
    display: flex;
    width: 35px;
    height: 35px;
  }
  .sec-slideshow {
    margin-top: 0px;
  }
  .sec-slideshow .swiper-slideshow {
    border-radius: 8px;
    max-height: 300px;
  }
  .sec-slideshow .container {
    padding: 0;
  }
  .sec-slideshow .swiper-button {
    display: none;
  }
  .content-pages {
    padding-top: 80px;
    padding-bottom: 0px;
  }
  .karen-content .content-box {
    padding-top: 120px !important;
    text-align: center;
  }
  .karen-content .content-box .sub-title {
    font-size: 16px;
  }
  .karen-content .content-box .title-main {
    align-items: center;
  }
  .karen-content .content-box .title-main > strong {
    font-size: 36px;
  }
  .karen-content .content-box .title-main .karen {
    line-height: 50px;
  }
  .karen-content .content-box .title-main .text {
    line-height: 40px;
  }
  .karen-content .content-box .title-main .karen::after {
    background-size: 22px;
    width: 22px;
    height: 22px;
    top: -6px;
    left: 14px;
  }
  .karen-content .content-box .desc-content {
    text-align: center;
    font-size: 12px;
    line-height: 25px;
    margin: 15px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .karen-content .content-box .bottom {
    justify-content: center;
  }
  .karen-content .content-box .bottom .btn-more {
    padding: 12px 24px;
    font-size: 14px;
  }
  .head-section {
    margin-bottom: 30px;
    flex-direction: column;
  }
  .head-section .content {
    align-items: center;
  }
  .head-section .content .title {
    font-size: 24px;
    text-align: center;
  }
  .head-section .content .desc {
    font-size: 13px;
    text-align: center;
  }
  .head-section .details {
    padding-right: 20px;
    margin-top: 20px;
  }
  .head-section .details .title-main {
    font-size: 14px;
  }
  .head-section .details .desc-more {
    font-size: 12px;
  }
  .head-section .details::before {
    width: 8px;
    height: 8px;
    top: 14px;
  }
  .head-section .btn-more {
    gap: 8px;
    font-size: 14px;
    margin-top: 10px;
  }
  .head-section .btn-more > i {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .sec-categories .swiper-categories .item-ctg {
    border-radius: 30px;
    height: 250px;
    padding: 20px;
  }
  .sec-categories .swiper-categories .item-ctg .title {
    height: 35px;
    font-size: 13px;
  }
  .swiper .arrows-swiper .swiper-button {
    width: 35px;
    height: 35px;
    top: 40%;
    font-size: 16px;
    opacity: 1;
  }
  .swiper .arrows-swiper .swiper-button:first-child {
    right: 15px;
  }
  .swiper .arrows-swiper .swiper-button:last-child {
    left: 15px;
  }
  .row-gap-products {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 -6px;
    padding-bottom: 20px;
  }
  .row-gap-products .item-product-karen {
    padding: 0 6px;
  }
  .item-product-karen .box-images {
    height: 320px;
    border-radius: 40px;
  }
  .item-product-karen .box-images .status {
    width: 45px;
    height: 45px;
    left: 14px;
    top: 14px;
    font-size: 16px;
  }
  .item-product-karen .content-prd {
    height: 70px;
  }
  .item-product-karen .content-prd .options {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .item-product-karen .content-prd .title > a {
    font-size: 18px;
  }
  .item-product-karen .content-prd .prices .off {
    font-size: 12px;
  }
  .item-product-karen .content-prd .prices .main,
  .item-product-karen .content-prd .prices .main > i {
    font-size: 20px;
  }
  .item-product-karen.small-product .content-prd .rating .number {
    font-size: 10px;
  }
  .item-product-karen .content-prd .rating .number {
    font-size: 13px;
  }
  .item-product-karen .content-prd .rating .stars {
    font-size: 13px;
    gap: 4px;
  }
  .item-product-karen.small-product .content-prd .rating .stars {
    font-size: 13px;
    gap: 3px;
  }
  .single-product .item-product-karen .content-prd .options {
    flex-direction: column-reverse;
  }
  .sec-bg-products .box-outer-section {
    padding: 15px;
    border-radius: 30px;
    flex-direction: column;
  }
  .item-product-karen.small-product {
    border-radius: 24px;
    padding: 0;
  }
  .sec-bg-products .box-outer-section .content-side {
    width: 100%;
    padding: 0;
  }
  .sec-bg-products .box-outer-section .content-side .title {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
  }
  .sec-bg-products .box-outer-section .content-side .desc {
    display: none;
  }
  .sec-bg-products .box-outer-section .content-side .box-icon {
    height: 70px;
    margin: 0 0 5px;
    order: -1;
  }
  .sec-bg-products .box-outer-section .content-side .btn-more {
    padding: 12px 20px;
    font-size: 14px;
    margin-top: 10px;
  }
  .sec-bg-products .box-outer-section .swiper {
    width: 100%;
  }
  .item-product-karen.small-product .box-images {
    border-radius: 20px;
    height: 200px;
  }
  .item-product-karen.small-product .box-images .product-item-image {
    height: 100%;
  }
  .item-product-karen.small-product .box-images .status {
    width: 35px;
    height: 35px;
    left: 8px;
    top: 8px;
    font-size: 12px;
  }
  .item-product-karen.small-product .content-prd .title > a {
    font-size: 14px;
    line-height: 22px;
    /* overflow: auto; */
    display: inline-block;
  }
  .item-product-karen.small-product .content-prd .prices .main,
  .item-product-karen.small-product .content-prd .prices .main > i {
    font-size: 16px;
  }
  .item-product-karen.small-product .content-prd {
    height: auto;
    /* margin-top: 15px; */
  }
  .item-product-karen .box-images .countdown {
    width: 90%;
    height: 30px;
    padding: 10px;
    bottom: 10px;
  }
  .item-product-karen .box-images .countdown .number:not(:last-child)::after {
    font-size: 14px;
    right: -10px;
  }
  .item-product-karen .box-images .countdown .txt {
    font-size: 12px;
  }
  .sec-bg-products .swiper .arrows-swiper.custom .swiper-button:first-child {
    right: 12px;
  }
  .sec-bg-products .swiper .arrows-swiper.custom .swiper-button:last-child {
    left: 12px;
  }
  .sec-ads-banners .item-banner {
    height: 80px;
    border-radius: 24px;
  }
  .sec-ads-banners .item-banner .title {
    font-size: 20px;
    line-height: 24px;
  }
  .sec-ads-banners .container > .row {
    margin: 0 -6px;
  }
  .sec-ads-banners .row .col-md-6 {
    padding: 6px;
  }
  .sec-ads-banners .select-size .box-outer-light {
    margin: 12px 0;
    border-radius: 30px;
    padding: 22px;
    height: auto;
  }
  .sec-ads-banners .head-section .content {
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
  }
  .sec-ads-banners .select-size .box-outer-light .list-column {
    justify-content: center;
  }
  .sec-ads-banners .select-size .list-sizing {
    width: 100%;
    overflow-x: auto;
    gap: 8px;
  }
  .sec-ads-banners .select-size .list-sizing .item-size {
    width: 60px;
    height: 80px;
    border-radius: 15px;
    align-items: center;
    text-align: center;
  }
  .sec-ads-banners .select-size .list-sizing .item-size .title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .sec-ads-banners .select-size .list-sizing .item-size .desc {
    font-size: 11px;
    line-height: 1.1;
  }
  .sec-product-set .box-outer-set {
    height: auto;
    border-radius: 30px;
    padding-bottom: 20px;
  }
  .sec-product-set .box-outer-set .set-image {
    display: none;
  }
  .sec-product-set .box-outer-set .set-slides {
    padding: 20px 35px 40px 35px;
  }
  .sec-product-set .set-slides .item-product-karen .box-images {
    height: 300px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd .options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 12px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd .title > a {
    font-size: 16px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd .prices .off {
    font-size: 16px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd .prices .main,
  .sec-product-set .set-slides .item-product-karen .content-prd .prices .main > i {
    font-size: 22px;
  }
  .sec-product-set .set-slides .item-product-karen .content-prd {
    height: 60px;
  }
  .sec-product-set .set-slides .pagination-set {
    bottom: 5px;
    left: 0;
    gap: 6px;
  }
  .sec-product-set .set-slides .pagination-set .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  .sec-product-set .set-slides .pagination-set .swiper-pagination-bullet-active {
    width: 36px;
  }
  .sec-product-set .set-slides .arrows-swiper .swiper-button {
    width: 35px;
    height: 35px;
    font-size: 25px;
    top: 40%;
  }
  .sec-product-set .set-slides .arrows-swiper .swiper-button:first-child {
    right: 52px;
  }
  .sec-product-set .set-slides .arrows-swiper .swiper-button:last-child {
    left: 52px;
  }
  .sec-ads-banners .list-colors {
    position: relative;
    padding-right: 0;
  }
  .sec-ads-banners .swiper-colors .item-color {
    height: 65px;
    border-radius: 18px;
    border-width: 4px;
  }
  .sec-ads-banners .swiper-colors .arrows-swiper .swiper-button {
    top: 26%;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
  .sec-ads-banners .swiper-colors .arrows-swiper .swiper-button:first-child {
    right: 16px;
  }
  .sec-news-articles .item-news {
    height: 400px;
    padding: 15px;
    border-radius: 30px;
  }
  .sec-news-articles .item-news .date {
    left: 15px;
    top: 15px;
    font-size: 12px;
  }
  .sec-news-articles .item-news .content-news {
    height: auto;
    padding: 15px;
    border-radius: 24px;
  }
  .sec-news-articles .item-news .content-news .title > a {
    font-size: 16px;
    line-height: 22px;
  }
  .sec-news-articles .item-news .content-news .desc {
    font-size: 11px;
    line-height: 20px;
  }
  .footer-main .about-footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .footer-main .about-footer .content {
    order: 1;
  }
  .footer-main .about-footer .logo-footer > img {
    height: 80px;
  }
  .footer-main .about-footer .images-cert {
    background-color: transparent;
    width: 90px;
    height: auto;
    padding: 0;
  }
  .footer-main .about-footer .images-cert .item-cert > img {
    height: 90px;
  }
  .footer-main .about-footer .images-cert .swiper-slide .item-cert img {
    width: 100%;
  }
  .footer-main .about-footer .content .head .title {
    align-items: center;
  }
  .footer-main .about-footer .content .title > strong {
    font-size: 24px;
  }
  .footer-main .about-footer .content .title > span {
    font-size: 14px;
  }
  .footer-main .about-footer .content .desc {
    font-size: 11px;
    line-height: 24px;
    height: 115px;
  }
  .footer-main .about-footer .content .desc.show {
    padding-bottom: 20px;
  }
  .footer-main .about-footer .content .desc::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #F6F5F5;
    background: -webkit-linear-gradient(180deg, rgb(246, 245, 245) 0%, rgba(246, 245, 245, 0) 100%);
    background: -moz-linear-gradient(180deg, rgb(246, 245, 245) 0%, rgba(246, 245, 245, 0) 100%);
    background: linear-gradient(180deg, rgb(246, 245, 245) 0%, rgba(246, 245, 245, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F6F5F5", endColorstr="#F6F5F5", GradientType=0);
    z-index: 50;
    bottom: -10px;
    transform: scaleY(-1);
  }
  .footer-main .about-footer .content .desc.show::before {
    display: none;
  }
  .footer-main .about-footer .content .desc .show-more {
    font-size: 12px;
    z-index: 100;
    bottom: -5px;
  }
  .footer-main hr.spacing {
    margin: 20px 0;
  }
  .footer-main {
    margin-top: 60px;
    padding: 30px 0 80px;
  }
  .footer-main .quick-access .title-row {
    font-size: 20px;
  }
  .footer-main .quick-access .swiper-slide {
    height: 35px;
    padding: 8px 14px;
    font-size: 12px;
  }
  .footer-main .quick-access .swiper-links::before,
  .footer-main .quick-access .arrows-swiper {
    display: none;
  }
  .footer-main .quick-access .arrows-swiper .swiper-button {
    width: 35px;
    height: 35px;
    font-size: 22px;
    top: 2px;
  }
  .footer-main .support-box {
    height: auto;
    padding: 20px;
    border-radius: 30px;
    margin-top: 30px;
    flex-direction: column;
  }
  .footer-main .support-box .content {
    align-items: center;
  }
  .footer-main .support-box .content .title {
    text-align: center;
    font-size: 20px;
  }
  .footer-main .support-box .content .desc {
    text-align: center;
    font-size: 14px;
  }
  .footer-main .support-box .list-call {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .footer-main .support-box .list-call .item-call {
    font-size: 14px;
    padding-right: 14px;
    flex-shrink: 0;
  }
  .footer-main .support-box .list-call .item-call > i {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .footer-main .footer-copyright {
    flex-direction: column;
  }
  .footer-main .footer-copyright .copyright,
  .footer-main .footer-copyright .designer {
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    width: 100%;
  }
  .footer-main .footer-copyright .designer {
    margin-top: 10px;
  }
  .footer-main .footer-copyright .socials {
    gap: 8px;
    order: -1;
    margin-bottom: 15px;
  }
  .footer-main .footer-copyright .socials .item-sc {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 18px;
  }
  .footer-main::after {
    background-size: 350px;
    width: 350px;
    height: 120px;
    bottom: 30px;
  }
  .tabs-footer {
    display: flex;
    justify-content: space-around;
  }
  .sec-breadcrumb {
    margin-bottom: 20px;
  }
  .sec-breadcrumb .outer-breadcrumb {
    flex-direction: column;
  }
  .sec-other-contents .tab-comments .form-comment .btn-send-form, .sec-news-details .content-news .form-comment .btn-send-form {
    width: 100%;
  }
  .sec-contact-book .contact-form {
    padding: 20px 30px 20px 40px;
  }
  .sec-contact-book .contact-details {
    padding: 20px 40px 20px 40px;
  }
  /*---------------- Product Page -------------------------*/
  .content-pages .sec-header-product .details-product {
    padding: 20px 10px;
    overflow: hidden;
  }
  .content-pages .sec-header-product .details-product .features {
    background: rgba(155, 164, 180, 0.1);
    border-radius: 25px;
    padding: 10px 10px;
    width: 100%;
    font-size: 14px;
    line-height: 30px;
  }
  .sec-breadcrumb {
    margin-bottom: 20px;
  }
  .outer-breadcrumb {
    flex-direction: column;
  }
  .outer-breadcrumb .breadcrumb {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }
  .outer-breadcrumb .breadcrumb .breadcrumb-item, .outer-breadcrumb .breadcrumb .breadcrumb-item > a {
    font-size: 11px;
  }
  .outer-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    font-size: 13px;
    padding: 0 6px;
  }
  .outer-breadcrumb .breadcrumb .breadcrumb-item {
    flex-shrink: 0;
  }
  .outer-breadcrumb .btn-share-page {
    margin-top: 15px;
    font-size: 11px;
  }
  .outer-breadcrumb .btn-share-page > i {
    font-size: 16px;
    margin-right: 5px;
  }
}