@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 {
  height: 310px;
  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; */
  margin: 0 0 20px;
  transition: all 0.3s;
}
.box-product-book .content .title a {
  font-size: 20px;
  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: 30px;
  font-weight: 700;
  color: var(--blackcolor);
  line-height: 1.2;
  flex-wrap: wrap;
}
.box-product-book .options .price .pr-number del {
  font-size: 18px;
  margin: 6px 0;
  text-decoration: line-through;
  color: var(--textcolor);
}

.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: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  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(--yellowcolor);
  color: var(--subcolor);
  box-shadow: 0px 4px 30px 0px rgba(244, 206, 20, 0.4);
}

/*---------------------- Product Page -----------------------*/
.content-pages {
  position: relative;
  padding-top: 60px;
}

.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);
}

.content-pages .sec-header-product .images-product .arrows .sw-arrow.swiper-button-disabled {
  opacity: 0.3;
}

.content-pages .sec-header-product .swiper-images-product {
  width: 100%;
  flex-shrink: 0;
}

.content-pages .sec-header-product .swiper-images-product .swiper-slide {
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
}

.content-pages .sec-header-product .swiper-images-product .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 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(--disabledcolor);
}
.content-pages .sec-header-product .cart-details .btn-add-cart:not(:disabled):hover {
  background-color: var(--subcolor);
  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: 25px;
  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: 22px;
  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;
}

.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;
}

.sec-other-contents .tab-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--whitecolor);
  border-radius: 50px;
  /* padding: 30px; */
  margin-bottom: 100px;
}

.sec-other-contents .tab-contents .head-sticky {
  position: sticky;
  width: 100%;
  align-self: flex-start;
  top: 0;
  z-index: 999;
  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 30px;
  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: 16px;
  font-weight: 700;
  color: var(--textcolor);
  text-align: right;
}

.sec-other-contents .tab-specification .box-specif .text {
  font-size: 16px;
  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: 70px;
  padding: 10px 25px;
  text-align: right;
  border-radius: 20px;
  border: 2px solid rgba(155, 164, 180, 0.2);
  background-color: var(--whitecolor);
  font-size: 16px;
  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);
}

.fixed-cart-product .details-option .options .price .pr-number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 700;
  color: var(--blackcolor);
  line-height: 1;
}

.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;
}

.sec-search-products {
  margin-bottom: 30px;
}
.sec-search-products .filters-wrapper {
  position: sticky;
  top: 15px;
}

.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 .row {
  margin: 0 -10px;
}
.sec-search-products .list-products-book .row .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;
}

/*------------------------------ 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;
  }
  .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-size: 20px;
  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;
}

.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);
}

.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 .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: 30px;
  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;
}

.basket__btns > a:hover {
  color: #fff;
}

.btn--green {
  color: #fff;
  background-color: #5ec37d;
}

@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;
  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: 14px;
}

.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;
}

#signs_befroush .modal-body, #create_address .modal-body {
  padding: 20px 20px 10px;
}

#signs_befroush .tab-signs {
  margin-top: 0;
  padding: 0;
}

#signs_befroush .tab-signs .tab-content, #create_address .tab-signs {
  padding: 20px;
}

#signs_befroush .tab-signs .nav-tabs {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

#signs_befroush .tab-signs .nav-tabs .nav-item {
  width: 40%;
  text-align: center;
}

#signs_befroush .tab-signs .nav-tabs .nav-item:last-child > .nav-link {
  border: none !important;
}

#signs_befroush .tab-signs .list-modal-inputs {
  padding: 0;
}

#signs_befroush .tab-signs .list-modal-inputs > .row, #create_address .list-modal-inputs > .row {
  margin: 0 -10px -10px !important;
}

#signs_befroush .tab-signs .list-modal-inputs .input-group, #wishlist_befroush .add-wish .input-group, #create_address .list-modal-inputs .input-group, .confirm-order .offer-code .input-group {
  direction: ltr;
  /* padding: 0 5px; */
  margin-bottom: 15px;
}

#signs_befroush .tab-signs .list-modal-inputs .form-control, #wishlist_befroush .add-wish .input-group .form-control, #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; */
}

#signs_befroush .tab-signs .list-modal-inputs .form-control::placeholder, #wishlist_befroush .add-wish .input-group .form-control::placeholder, #create_address .list-modal-inputs .input-group .form-control::placeholder, .confirm-order .offer-code .input-group .form-control::placeholder {
  text-align: right;
  direction: rtl;
}

#signs_befroush .tab-signs .list-modal-inputs .form-control:focus, #wishlist_befroush .add-wish .input-group .form-control:focus, #create_address .list-modal-inputs .input-group .form-control:focus, .confirm-order .offer-code .input-group .form-control:focus {
  border-color: var(--maincolor);
}

#signs_befroush .tab-signs .list-modal-inputs .form-control::placeholder, #wishlist_befroush .add-wish .input-group .form-control::placeholder, #create_address .list-modal-inputs .input-group .form-control::placeholder, .confirm-order .offer-code .input-group .form-control::placeholder {
  color: #bbb;
}

#signs_befroush .tab-signs .list-modal-inputs .form-control:disabled {
  background-color: transparent;
  opacity: 0.4;
}

#signs_befroush .tab-signs .list-modal-inputs .form-control:disabled + .input-group-prepend .input-group-text {
  opacity: 0.4;
}

#signs_befroush .tab-signs .list-modal-inputs .input-group-text, #wishlist_befroush .add-wish .input-group .input-group-text, #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%;
}

#signs_befroush .tab-signs .list-modal-inputs .form-control:focus + .input-group-prepend .input-group-text, #wishlist_befroush .add-wish .form-control:focus + .input-group-prepend .input-group-text, #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;
}

#signs_befroush .tab-signs .list-modal-inputs .getCaptcha {
  display: flex;
  align-items: center;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  overflow: hidden;
  height: 38px;
  margin-right: 5px;
}

#signs_befroush .tab-signs .list-modal-inputs .getCaptcha .ref-captcha {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f68320;
}

#signs_befroush .tab-signs .list-modal-inputs .remember {
  direction: rtl;
  justify-content: space-between;
}

#signs_befroush .tab-signs .list-modal-inputs .remember .pretty .state label::before, #signs_befroush .tab-signs .list-modal-inputs .remember .pretty .state label::after {
  top: 0;
}

#signs_befroush .tab-signs .list-modal-inputs .remember .forget {
  font-size: 12px;
  font-weight: bold;
  color: var(--maincolor);
}

#signs_befroush .tab-signs .list-modal-inputs .btn-save-tab, #create_address .list-modal-inputs .btn-save-tab {
  text-align: center;
}

#signs_befroush .tab-signs .list-modal-inputs .btn-save-tab > a, #create_address .list-modal-inputs .btn-save-tab > button[type=submit] {
  background-color: #222;
  display: inline-block;
  width: 120px;
  padding: 5px 5px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  transition: all 0.4s;
}

#signs_befroush .tab-signs .list-modal-inputs .btn-save-tab > button[type=submit]:hover, #create_address .list-modal-inputs .btn-save-tab > button[type=submit]:hover {
  background-color: var(--maincolor);
  width: 140px;
}

#signs_befroush .logo-signs, #create_address .logo-signs {
  text-align: center;
  margin-top: 5px;
}

#signs_befroush .logo-signs .lg-sign, #chat_befroush .modal-body .logo-signs .lg-sign, #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 .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 {
  --primary-50: #F9EBED;
  --primary-100: #F8E7E8;
  --primary-200: #F5DDDF;
  --primary-300: #F6D0D3;
  --primary-400: #F4C5CA;
  --primary-500: #F2BBC0;
  --neutral-50: #FAFAFA;
  --neutral-100: #FFFFFF;
  --neutral-200: #E3E3E3;
  --neutral-300: #C6C6C6;
  --neutral-400: #AAAAAA;
  --neutral-500: #8D8D8D;
  --neutral-600: #717171;
  --neutral-700: #545454;
  --neutral-800: #383838;
  --neutral-900: #1B1B1B;
  --minttulip-50: #EEF7F4;
  --minttulip-100: #E5F3EF;
  --minttulip-200: #D4EBE5;
  --minttulip-300: #BFE7DD;
  --minttulip-400: #ADE0D3;
  --minttulip-500: #9BD9C9;
  --disabledcolor: #99b9ae;
  --subcolor: #00453D;
  --yellowcolor: #F4CE14;
  --blackcolor: #45474B;
  --lightcolor: #F5F7F8;
  --whitecolor: #FFFFFF;
  --easeoutcubic: cubic-bezier(.215, .61, .355, 1);
  --maincolor: #0a887a;
  --lightmain: #61b7ad;
  --goldcolor: #D7B56D;
  --redcolor: #E05858;
  --darkcolor: #374550;
  --textcolor: #8A9CA6;
  --darkgrey: #55636F;
  --coolgray: #B3BDC5;
  --lighttext: #D3DEE5;
  --linecolor: #E5EDF2;
  --light: #F2F4F7;
  --white: #FFFFFF;
}

/*---------------------- Public Style ---------------------*/
body {
  background-color: var(--white);
  margin: 0;
  padding: 0;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.overhide {
  overflow: hidden;
}

* {
  font-family: YekanBakh;
  outline: medium none !important;
  text-decoration: none !important;
}

.font-weight-900 {
  font-weight: 900;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-500 {
  font-weight: 500;
}

.container {
  max-width: 100%;
  padding: 0 200px;
}

::selection {
  background-color: var(--maincolor);
  color: var(--white);
}

/*---------------------- Colors ---------------------*/
.text-main {
  color: var(--maincolor);
}

.text-lightmain {
  color: var(--lightmain);
}

.text-gold {
  color: var(--goldcolor);
}

.text-color {
  color: var(--textcolor);
}

.text-red {
  color: var(--redcolor);
}

.text-darkgray {
  color: var(--darkgrey);
}

.text-coolgray {
  color: var(--coolgray);
}

.text-lighttext {
  color: var(--lighttext);
}

.text-linecolor {
  color: var(--linecolor);
}

.text-light {
  color: var(--light);
}

.text-white {
  color: var(--white);
}

/*---------------------- /Colors ---------------------*/
/*---------------------- Backgrounds ---------------------*/
.bg-main {
  background-color: var(--maincolor);
}

.bg-lightmain {
  background-color: var(--lightmain);
}

.bg-gold {
  background-color: var(--goldcolor);
}

.bg-red {
  background-color: var(--redcolor);
}

.bg-textcolor {
  background-color: var(--textcolor);
}

.bg-darkgray {
  background-color: var(--darkgrey);
}

.bg-coolgray {
  background-color: var(--coolgray);
}

.bg-lighttext {
  background-color: var(--lighttext);
}

.bg-linecolor {
  background-color: var(--linecolor);
}

.bg-light {
  background-color: var(--light) !important;
}

.bg-white {
  background-color: var(--white);
}

/*---------------------- /Backgrounds ---------------------*/
/*---------------------- Font Sizes ---------------------*/
.font-size-10 {
  font-size: 10px;
}

.font-size-12 {
  font-size: 12px;
}

.font-size-13 {
  font-size: 13px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-22 {
  font-size: 22px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-26 {
  font-size: 26px;
}

.font-size-28 {
  font-size: 28px;
}

.font-size-30 {
  font-size: 30px;
}

/*---------------------- /Font Sizes ---------------------*/
/*---------------------- Border Radius ---------------------*/
.rounded-2 {
  border-radius: 2px;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-6 {
  border-radius: 6px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-10 {
  border-radius: 10px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-14 {
  border-radius: 14px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-18 {
  border-radius: 18px;
}

.rounded-20 {
  border-radius: 20px;
}

.rounded-22 {
  border-radius: 22px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-26 {
  border-radius: 26px;
}

.rounded-28 {
  border-radius: 28px;
}

.rounded-30 {
  border-radius: 30px;
}

.rounded-lg {
  border-radius: 500px;
}

.rounded-circle {
  border-radius: 100%;
}

/*---------------------- /Border Radius ---------------------*/
/*---------------------- Border Colors ---------------------*/
.border-color-100 {
  border-color: var(--linecolor);
  background-clip: padding-box;
}

.border-style-dashed {
  border-style: dashed;
}

/*---------------------- /Border Colors ---------------------*/
/*---------------------- Box Shadows ---------------------*/
.bsh-main {
  box-shadow: 0 15px 46px -10px rgba(30, 30, 30, 0.1);
}

/*---------------------- /Box Shadows ---------------------*/
/*---------------------- Margins ---------------------*/
.mg-0 {
  margin: 0;
}

.mg-5 {
  margin: 5px;
}

.mg-10 {
  margin: 10px;
}

.mg-15 {
  margin: 15px;
}

.mg-20 {
  margin: 20px;
}

.mg-25 {
  margin: 25px;
}

.mg-30 {
  margin: 30px;
}

.mg-40 {
  margin: 40px;
}

/*---------------------- Margin X ---------------------*/
.mgx-0 {
  margin-right: 0;
  margin-left: 0;
}

.mgx-2 {
  margin-right: 2px;
  margin-left: 2px;
}

.mgx-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mgx-10 {
  margin-right: 10px;
  margin-left: 10px;
}

.mgx-15 {
  margin-right: 15px;
  margin-left: 15px;
}

.mgx-20 {
  margin-right: 20px;
  margin-left: 20px;
}

.mgx-25 {
  margin-right: 25px;
  margin-left: 25px;
}

.mgx-30 {
  margin-right: 30px;
  margin-left: 30px;
}

.mgx-40 {
  margin-right: 40px;
  margin-left: 40px;
}

/*---------------------- /Margin X ---------------------*/
/*---------------------- Margin Y ---------------------*/
.mgy-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mgy-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mgy-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mgy-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.mgy-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mgy-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.mgy-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mgy-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

/*---------------------- /Margin Y ---------------------*/
/*---------------------- Margin Top ---------------------*/
.mgt-0 {
  margin-top: 0;
}

.mgt-5 {
  margin-top: 5px;
}

.mgt-10 {
  margin-top: 10px;
}

.mgt-15 {
  margin-top: 15px;
}

.mgt-20 {
  margin-top: 20px;
}

.mgt-25 {
  margin-top: 25px;
}

.mgt-30 {
  margin-top: 30px;
}

.mgt-40 {
  margin-top: 40px;
}

/*---------------------- /Margin Top ---------------------*/
/*---------------------- Margin Bottom ---------------------*/
.mgb-0 {
  margin-bottom: 0;
}

.mgb-5 {
  margin-bottom: 5px;
}

.mgb-10 {
  margin-bottom: 10px;
}

.mgb-15 {
  margin-bottom: 15px;
}

.mgb-20 {
  margin-bottom: 20px;
}

.mgb-25 {
  margin-bottom: 25px;
}

.mgb-30 {
  margin-bottom: 30px;
}

.mgb-40 {
  margin-bottom: 40px;
}

/*---------------------- /Margin Bottom ---------------------*/
/*---------------------- Margin Right ---------------------*/
.mgr-0 {
  margin-right: 0;
}

.mgr-5 {
  margin-right: 5px;
}

.mgr-10 {
  margin-right: 10px;
}

.mgr-15 {
  margin-right: 15px;
}

.mgr-20 {
  margin-right: 20px;
}

.mgr-25 {
  margin-right: 25px;
}

.mgr-30 {
  margin-right: 30px;
}

.mgr-40 {
  margin-right: 40px;
}

/*---------------------- /Margin Right ---------------------*/
/*---------------------- Margin Left ---------------------*/
.mgl-0 {
  margin-left: 0;
}

.mgl-5 {
  margin-left: 5px;
}

.mgl-10 {
  margin-left: 10px;
}

.mgl-15 {
  margin-left: 15px;
}

.mgl-20 {
  margin-left: 20px;
}

.mgl-25 {
  margin-left: 25px;
}

.mgl-30 {
  margin-left: 30px;
}

.mgl-0 {
  margin-left: 0;
}

.mgl-5 {
  margin-left: 5px;
}

.mgl-10 {
  margin-left: 10px;
}

.mgl-15 {
  margin-left: 15px;
}

.mgl-20 {
  margin-left: 20px;
}

.mgl-25 {
  margin-left: 25px;
}

.mgl-40 {
  margin-left: 40px;
}

/*---------------------- /Margin Left ---------------------*/
/*---------------------- /Margins ---------------------*/
/*---------------------- Paddings ---------------------*/
.pd-0 {
  padding: 0;
}

.pd-5 {
  padding: 5px;
}

.pd-10 {
  padding: 10px;
}

.pd-15 {
  padding: 15px;
}

.pd-20 {
  padding: 20px;
}

.pd-25 {
  padding: 25px;
}

.pd-30 {
  padding: 30px;
}

.pd-30 {
  padding: 30px;
}

/*---------------------- Padding X ---------------------*/
.pdx-0 {
  padding-right: 0;
  padding-left: 0;
}

.pdx-5 {
  padding-right: 5px;
  padding-left: 5px;
}

.pdx-10 {
  padding-right: 10px;
  padding-left: 10px;
}

.pdx-15 {
  padding-right: 15px;
  padding-left: 15px;
}

.pdx-20 {
  padding-right: 20px;
  padding-left: 20px;
}

.pdx-25 {
  padding-right: 25px;
  padding-left: 25px;
}

.pdx-30 {
  padding-right: 30px;
  padding-left: 30px;
}

.pdx-40 {
  padding-right: 40px;
  padding-left: 40px;
}

/*---------------------- /Padding X ---------------------*/
/*---------------------- Padding Y ---------------------*/
.pdy-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pdy-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.pdy-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pdy-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.pdy-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pdy-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.pdy-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pdy-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

/*---------------------- /Padding Y ---------------------*/
/*---------------------- Padding Top ---------------------*/
.pdt-0 {
  padding-top: 0;
}

.pdt-5 {
  padding-top: 5px;
}

.pdt-10 {
  padding-top: 10px;
}

.pdt-15 {
  padding-top: 15px;
}

.pdt-20 {
  padding-top: 20px;
}

.pdt-25 {
  padding-top: 25px;
}

.pdt-30 {
  padding-top: 30px;
}

.pdt-40 {
  padding-top: 40px;
}

/*---------------------- /Padding Top ---------------------*/
/*---------------------- Padding Bottom ---------------------*/
.pdb-0 {
  padding-bottom: 0;
}

.pdb-5 {
  padding-bottom: 5px;
}

.pdb-10 {
  padding-bottom: 10px;
}

.pdb-15 {
  padding-bottom: 15px;
}

.pdb-20 {
  padding-bottom: 20px;
}

.pdb-25 {
  padding-bottom: 25px;
}

.pdb-30 {
  padding-bottom: 30px;
}

.pdb-40 {
  padding-bottom: 40px;
}

/*---------------------- /Padding Bottom ---------------------*/
/*---------------------- Padding Right ---------------------*/
.pdr-0 {
  padding-right: 0;
}

.pdr-5 {
  padding-right: 5px;
}

.pdr-10 {
  padding-right: 10px;
}

.pdr-15 {
  padding-right: 15px;
}

.pdr-20 {
  padding-right: 20px;
}

.pdr-25 {
  padding-right: 25px;
}

.pdr-30 {
  padding-right: 30px;
}

.pdr-40 {
  padding-right: 40px;
}

/*---------------------- /Padding Right ---------------------*/
/*---------------------- Padding Left ---------------------*/
.pdl-0 {
  padding-left: 0;
}

.pdl-5 {
  padding-left: 5px;
}

.pdl-10 {
  padding-left: 10px;
}

.pdl-15 {
  padding-left: 15px;
}

.pdl-20 {
  padding-left: 20px;
}

.pdl-25 {
  padding-left: 25px;
}

.pdl-30 {
  padding-left: 30px;
}

.pdl-40 {
  padding-left: 40px;
}

/*---------------------- /Padding Left ---------------------*/
/*---------------------- /Paddings ---------------------*/
/*---------------------- Tooltip ---------------------*/
.tooltip-inner {
  background-color: var(--darkcolor);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
}

.tooltip .arrow::before {
  border-bottom-color: var(--darkcolor);
  border-top-color: var(--darkcolor);
}

/*---------------------- /Tooltip ---------------------*/
/*---------------------- Popover ---------------------*/
.popover {
  border-radius: 12px;
  font-size: 12px;
  background-color: var(--white);
  border: none;
  box-shadow: 0 0 20px rgba(30, 30, 30, 0.1);
}

.popover-header {
  background-color: var(--maincolor);
  color: var(--white);
  border-radius: 12px 12px 0 0;
  font-size: 14px;
  padding: 10px;
  text-align: center;
}

.popover .arrow::before {
  border-color: rgba(30, 30, 30, 0.03);
}

.popover .popover-body {
  color: var(--white);
}

.popover .subsytem-list {
  margin: 0;
  padding: 5px 15px;
  color: var(--darkcolor);
}

/*---------------------- /Popover ---------------------*/
/*---------------------- Head Section Bookcycle ---------------------*/
.head-sec-bookcycle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.head-sec-bookcycle .details-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.head-sec-bookcycle .details-head .cycle {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: linear-gradient(white, white) padding-box, linear-gradient(0deg, rgba(215, 181, 109, 0.3) 0%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%) border-box;
  border: 10px solid transparent;
  transform: rotate(-65deg);
  flex-shrink: 0;
  margin-left: 10px;
}

.head-sec-bookcycle .details-head .title {
  font-size: 24px;
  font-weight: 900;
  color: var(--maincolor);
  margin: 0 0 4px;
}

.head-sec-bookcycle .details-head .desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--textcolor);
  margin: 0;
}

.head-sec-bookcycle .btn-viewall {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 700;
  color: var(--goldcolor);
  transition: all 0.4s;
}

.head-sec-bookcycle .btn-viewall:hover {
  color: var(--lightmain);
}

.head-sec-bookcycle .btn-viewall > i {
  font-size: 24px;
  margin-right: 10px;
  transition: all 0.4s;
}

.head-sec-bookcycle .btn-viewall:hover > i {
  margin-right: 15px;
  animation: shadowarrowdark 0.4s linear infinite;
}

@keyframes shadowarrowdark {
  from {
    text-shadow: 40px 0 5px rgba(118, 144, 201, 0);
  }
  to {
    text-shadow: 0 0 0 rgba(118, 144, 201, 0.3);
  }
}
/*---------------------- /Head Section Bookcycle ---------------------*/
/*---------------------- Item Product Bookcycle ---------------------*/
.item-prd-bookcycle {
  padding: 0 10px 20px 10px;
}

.item-prd-bookcycle.col-lg-2 {
  max-width: 20%;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}

.item-prd-bookcycle .box-prd {
  background-color: var(--white);
  width: 100%;
  height: 380px;
  border-radius: 20px;
  border: 1px solid var(--linecolor);
  overflow: hidden;
  transition: all 0.4s;
}

.item-prd-bookcycle .box-prd:hover {
  box-shadow: 0px 13px 41px -9px rgba(30, 30, 30, 0.1);
}

.item-prd-bookcycle .box-prd .image-prd {
  position: relative;
  background-color: var(--light);
  width: 100%;
  height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-prd-bookcycle .box-prd .image-prd > img {
  /* height: 170px; */
  transition: all 0.4s;
  width: 100%;
}

.item-prd-bookcycle .box-prd:hover .image-prd > img {
  transform: scale(0.9) rotate(-10deg);
  filter: brightness(110%);
}

.item-prd-bookcycle .box-prd .image-prd .typenew,
.item-prd-bookcycle .box-prd .image-prd .typeused {
  background-color: var(--lightmain);
  width: 30px;
  height: 30px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  z-index: 10;
}

.item-prd-bookcycle .box-prd .image-prd .typeused {
  background-color: var(--goldcolor);
  width: 75px;
  right: auto;
  left: 10px;
  color: var(--white);
}

.item-prd-bookcycle .box-prd .details-prd {
  background-color: var(--white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 145px;
  justify-content: space-between;
}

.item-prd-bookcycle .box-prd .details-prd .fullname {
  margin: 0 0 2px;
}

.item-prd-bookcycle .box-prd .details-prd .fullname > a {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--darkcolor);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s;
}

.item-prd-bookcycle .box-prd:hover .details-prd .fullname > a {
  color: var(--goldcolor);
}

.item-prd-bookcycle .box-prd .details-prd .desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--coolgray);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-prd-bookcycle .box-prd .details-prd .prices-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 15px;
}

.item-prd-bookcycle .box-prd .details-prd .btn-more {
  background-color: var(--white);
  width: 60px;
  height: 35px;
  border-radius: 100px;
  box-shadow: 0px 4px 15px 0px rgba(30, 30, 30, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  font-size: 25px;
  padding-left: 5px;
  color: var(--maincolor);
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.4s;
}

.item-prd-bookcycle .box-prd:hover .details-prd .btn-more {
  background-color: var(--maincolor);
  color: var(--white);
  box-shadow: 0px 5px 25px 0px rgba(118, 144, 201, 0.5);
}

.item-prd-bookcycle .box-prd:hover .details-prd .btn-more > i {
  animation: shadowarrowleft 0.4s linear infinite;
}

@keyframes shadowarrowleft {
  from {
    text-shadow: -60px 0 5px rgba(255, 255, 255, 0);
  }
  to {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0.5);
  }
}
.item-prd-bookcycle .box-prd .details-prd .prices {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.item-prd-bookcycle .box-prd .details-prd .prices .left {
  margin-right: 5px;
  padding-bottom: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item-prd-bookcycle .box-prd .details-prd .prices .off {
  background-color: var(--redcolor);
  width: 30px;
  height: 30px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2px;
}

.item-prd-bookcycle .box-prd .details-prd .prices .unit {
  font-size: 12px;
  font-weight: 700;
  color: var(--lightmain);
}

.item-prd-bookcycle .box-prd .details-prd .prices .right {
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.item-prd-bookcycle .box-prd .details-prd .prices .off-price {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--lighttext);
}

.item-prd-bookcycle .box-prd .details-prd .prices .off-price::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--coolgray);
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
}

.item-prd-bookcycle .box-prd .details-prd .prices .main-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--lightmain);
}

/*---------------------- /Item Product Bookcycle ---------------------*/
/*---------------------- Title Section Special ---------------------*/
.title-sec-special {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 330px;
  padding-left: 30px;
}

.title-sec-special .title {
  position: relative;
  font-size: 40px;
  font-weight: 900;
  line-height: 40px;
  color: var(--white);
  margin: 0;
  z-index: 10;
}

.title-sec-special .title > strong {
  display: block;
  font-size: 35px;
  font-weight: 700;
}

.title-sec-special .desc {
  position: relative;
  font-size: 14px;
  font-weight: 300;
  color: var(--linecolor);
  margin: 15px 0 30px;
  z-index: 10;
}

.title-sec-special .btn-viewall {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.5;
  z-index: 10;
  transition: all 0.4s;
}

.title-sec-special .btn-viewall:hover {
  opacity: 1;
}

.title-sec-special .btn-viewall > i {
  font-size: 24px;
  margin-right: 10px;
  transition: all 0.4s;
}

.title-sec-special .btn-viewall:hover > i {
  margin-right: 15px;
  animation: shadowarrowspecial 0.4s linear infinite;
}

@keyframes shadowarrowspecial {
  from {
    text-shadow: 40px 0 5px rgba(255, 255, 255, 0);
  }
  to {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0.3);
  }
}
.title-sec-special .circular-special {
  position: absolute;
  width: 400px;
  height: 330px;
  right: -140px;
  top: 0;
  overflow: hidden;
}

.title-sec-special .circular-special::before {
  content: "";
  width: 400px;
  height: 400px;
  border-radius: 100%;
  background: linear-gradient(#E05858, #E05858) padding-box, linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(224, 88, 88, 0) 80%, rgba(224, 88, 88, 0) 100%) border-box;
  border: 60px solid transparent;
  transform: rotate(-110deg);
  position: absolute;
  top: -50px;
  right: 0;
  animation: rotationspecial 2s linear infinite;
}

@keyframes rotationspecial {
  from {
    transform: rotate(-110deg);
  }
  to {
    transform: rotate(250deg);
  }
}
/*---------------------- /Title Section Special ---------------------*/
/*---------------------- /Popover ---------------------*/
/*---------------------- /Public Style ---------------------*/
/*---------------------- Header Main ---------------------*/
.header-main {
  position: relative;
  padding: 50px 0;
}

.header-main::before {
  content: "";
  width: 500px;
  height: 500px;
  background-color: var(--lightmain);
  border-radius: 100%;
  position: absolute;
  top: -200px;
  right: -100px;
  z-index: 100;
  filter: blur(100px) opacity(0.3);
}

.header-main .logo-head {
  position: relative;
  z-index: 200;
}

.header-main .logo-head .image-logo {
  margin-bottom: 5px;
}

.header-main .logo-head .image-logo > img {
  width: 190px;
}

.header-main .navbar-bookcycle .list-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding-right: 40px;
  margin: 0;
  z-index: 200;
}

.header-main .navbar-bookcycle .list-menu .item-menu {
  position: relative;
}

.header-main .navbar-bookcycle .list-menu .item-menu.has-children::before {
  content: "\e95b";
  font-family: "icomoon";
  font-size: 12px;
  color: var(--lighttext);
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
  transition: all 0.3s;
}

.header-main .navbar-bookcycle .list-menu .item-menu.has-children:hover::before {
  color: var(--goldcolor);
  opacity: 0;
}

.header-main .navbar-bookcycle .list-menu .link-menu {
  position: relative;
  padding: 15px 20px;
  color: var(--darkgrey);
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  z-index: 5;
  transition: all 0.4s;
}

.header-main .navbar-bookcycle .list-menu .link-menu:hover,
.header-main .navbar-bookcycle .list-menu .item-menu.active .link-menu {
  color: var(--goldcolor);
  font-weight: bold;
}

.header-main .navbar-bookcycle .list-menu .link-menu::before {
  content: "";
  background: url("../images/cycles/cycle-menu.svg") no-repeat center center/40px;
  width: 40px;
  height: 45px;
  position: absolute;
  top: 3px;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: scale(0.5) rotate(180deg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.header-main .navbar-bookcycle .list-menu .link-menu:hover::before,
.header-main .navbar-bookcycle .list-menu .item-menu.active .link-menu::before {
  transform: scale(1) rotate(0);
  opacity: 0.15;
  visibility: visible;
}

.header-main .navbar-bookcycle .list-menu .item-menu .submenu-list {
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  position: absolute;
  background: var(--lightmain);
  padding: 15px 13px;
  border-radius: 15px;
  z-index: 1022;
  top: 20px;
  right: 0;
  left: -148px;
}

.header-main .navbar-bookcycle .list-menu .item-menu.active .submenu-list {
  opacity: 1;
  visibility: visible;
  top: 40px;
}

.header-main .navbar-bookcycle .list-menu .item-menu .submenu-list::before {
  content: "";
  position: absolute;
  background-image: url("../images/before-sub-menu.svg") !important;
  background-position: center center;
  background-repeat: no-repeat;
  width: 26px;
  top: -17px;
  height: 40px;
  right: 41px;
  z-index: 1022;
  box-shadow: none;
}

.header-main .navbar-bookcycle .list-menu .item-menu .submenu-list ul {
  margin: 0;
  padding: 0;
  max-height: 250px;
}

.header-main .navbar-bookcycle .list-menu .item-menu .submenu-list li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  padding-bottom: 0;
  list-style: none;
}

.header-main .navbar-bookcycle .list-menu .item-menu .submenu-list li:last-child {
  border: none;
}

.header-main .navbar-bookcycle .list-menu .item-menu .submenu-list li a {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 0;
  width: 100%;
  display: flex;
  justify-content: right;
  transition: all 0.4s;
}

.header-main .navbar-bookcycle .list-menu .item-menu .submenu-list li a:hover {
  color: var(--goldcolor);
  font-weight: 700;
  padding: 10px 5px 10px 0;
}

.header-main .navbar-bookcycle .list-menu .mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  margin-left: 15px;
}

.header-main .navbar-bookcycle .list-menu .mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
}

.header-main .navbar-bookcycle .list-menu .mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.header-main .navbar-bookcycle .list-menu .mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -6px;
}

.header-main .navbar-bookcycle .list-menu .mCSB_scrollTools .mCSB_draggerRail {
  background-color: rgba(255, 255, 255, 0.15);
}

.header-main .header-options {
  direction: ltr;
  text-align: right;
}
.header-main .header-options ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-main .header-options ul li {
  display: inline-block;
  position: relative;
}
.header-main .header-options .submenu-list {
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  position: absolute;
  background: var(--lightmain);
  padding: 15px 13px;
  border-radius: 15px;
  z-index: 1022;
  top: 20px;
  /* right: 0; */
  left: 0;
  width: 200px;
}
.header-main .header-options .submenu-list.active {
  opacity: 1;
  visibility: visible;
  top: 55px;
}
.header-main .header-options .submenu-list::before {
  content: "";
  position: absolute;
  background-image: url("../images/before-sub-menu.svg") !important;
  background-position: center center;
  background-repeat: no-repeat;
  width: 26px;
  top: -17px;
  height: 40px;
  left: 11px;
  z-index: 1022;
  box-shadow: none;
}
.header-main .header-options .submenu-list ul {
  margin: 0;
  padding: 0;
  max-height: 250px;
}
.header-main .header-options .submenu-list li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  padding-bottom: 0;
  list-style: none;
}
.header-main .header-options .submenu-list li:last-child {
  border: none;
}
.header-main .header-options .submenu-list li a {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 0;
  width: 100%;
  display: flex;
  justify-content: right;
  transition: all 0.4s;
}
.header-main .header-options .submenu-list li a:hover {
  color: var(--goldcolor);
  font-weight: 700;
  padding: 10px 5px 10px 0;
}
.header-main .header-options .mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  margin-left: 15px;
}
.header-main .header-options .mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
}
.header-main .header-options .mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.header-main .header-options .mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -6px;
}
.header-main .header-options .mCSB_scrollTools .mCSB_draggerRail {
  background-color: rgba(255, 255, 255, 0.15);
}
.header-main .header-options .search-wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.header-main .header-options .search-wrapper a.btn-option {
  margin-right: 0;
}
.header-main .header-options .search-wrapper .search-form-wrapper input#search-txt {
  border: none;
  direction: rtl;
  background: #d3dee5;
  padding: 10px;
  height: 45px;
  border-radius: 0 25px 25px 0;
  width: 250px;
}
.header-main .header-options .search-wrapper .search-overlay {
  position: relative;
  left: -20px;
}
.header-main .header-options .search-wrapper .search-overlay i {
  display: none;
}

.header-main .header-options .btn-option {
  position: relative;
  background-color: var(--lighttext);
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  margin-right: 10px;
  z-index: 200;
  border: none;
  transition: all 0.4s;
}

.header-main .header-options .btn-option.btn-cart {
  background-color: var(--lightmain);
  font-size: 22px;
}

.header-main .header-options .btn-option.btn-cart .count {
  background-color: var(--goldcolor);
  width: 18px;
  height: 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: var(--maincolor);
  position: absolute;
  top: -3px;
  right: 3px;
  transition: all 0.4s;
}

.header-main .header-options .btn-option:hover,
.header-main .header-options .btn-option.btn-cart.active {
  background-color: var(--goldcolor);
  color: var(--white);
}

.header-main .header-options .btn-option.btn-cart:hover .count,
.header-main .header-options .btn-option.btn-cart.active .count {
  background-color: var(--maincolor);
  color: var(--white);
}

.header-main .header-options .btn-option.btn-menucycle {
  display: none;
  background-color: var(--goldcolor);
}

.header-main .header-options .btn-option .hamburger {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.header-main .header-options .btn-option .hamburger:hover {
  opacity: 1;
}

.header-main .header-options .btn-option .hamburger .hamburger-box {
  width: 22px;
  height: 16px;
}

.header-main .header-options .btn-option .hamburger--slider .hamburger-inner {
  top: 1px;
}

.header-main .header-options .btn-option .hamburger .hamburger-inner,
.header-main .header-options .btn-option .hamburger .hamburger-inner::before,
.header-main .header-options .btn-option .hamburger .hamburger-inner::after {
  width: 22px;
  height: 3px;
  background-color: var(--white);
  border-radius: 100px;
}

.header-main .header-options .btn-option .hamburger--slider .hamburger-inner::before {
  top: 7px;
}

.header-main .header-options .btn-option .hamburger--slider .hamburger-inner::after {
  top: 14px;
}

.header-main .header-options .btn-option .hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.header-main .header-options .btn-option .hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 0) rotate(-90deg);
}

.header-main .header-options .shopcart-dropdown {
  position: absolute;
  top: 20px;
  left: -15px;
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid var(--linecolor);
  box-shadow: 0px 15px 46px -10px rgba(30, 30, 30, 0.1);
  width: 350px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: all 0.4s;
}

.header-main .header-options .btn-cart.active .shopcart-dropdown {
  top: 50px;
  opacity: 1;
  visibility: visible;
}

.header-main .header-options .shopcart-dropdown .list-cart {
  padding: 20px 20px 0 0;
  height: 320px;
}

.header-main .header-options .shopcart-dropdown .list-cart .empty-cart {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  font-size: 12px;
  font-weight: normal;
  color: var(--coolgray);
  direction: rtl;
}

.header-main .header-options .shopcart-dropdown .list-cart .empty-cart > i {
  color: var(--lighttext);
  font-size: 30px;
  margin-bottom: 10px;
}

.header-main .header-options .shopcart-dropdown .list-cart .mCSB_inside > .mCSB_container {
  margin-right: 0;
  padding-left: 20px;
}

.header-main .header-options .shopcart-dropdown .list-cart .mCSB_scrollTools {
  left: 0;
  right: auto;
}

.header-main .header-options .shopcart-dropdown .list-cart .mCSB_scrollTools .mCSB_draggerRail {
  background-color: rgba(0, 0, 0, 0.1);
}

.header-main .header-options .shopcart-dropdown .list-cart .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: var(--coolgray);
}

.header-main .header-options .shopcart-dropdown .item-prd-bookcycle {
  padding: 0;
  margin-bottom: 20px;
}

.header-main .header-options .shopcart-dropdown .item-prd-bookcycle:last-child {
  margin-bottom: 0;
}

.header-main .header-options .shopcart-dropdown .box-prd {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid var(--linecolor);
  direction: rtl;
  text-align: right;
  height: auto;
  padding-bottom: 15px;
}

.header-main .header-options .shopcart-dropdown .item-prd-bookcycle:last-child .box-prd {
  border-bottom: none;
}

.header-main .header-options .shopcart-dropdown .box-prd .image-prd {
  width: auto;
  height: auto;
  background-color: transparent;
  margin-left: 15px;
}

.header-main .header-options .shopcart-dropdown .box-prd .details-prd {
  width: 74%;
  height: auto;
  padding: 0;
}

.header-main .header-options .shopcart-dropdown .box-prd .image-prd > img {
  height: 100px;
}

.header-main .header-options .shopcart-dropdown .box-prd:hover .image-prd > img {
  transform: none;
}

.header-main .header-options .shopcart-dropdown .box-prd .details-prd .fullname > a {
  font-size: 14px;
}

.header-main .header-options .shopcart-dropdown .box-prd .details-prd .desc {
  font-size: 12px;
}

.header-main .header-options .shopcart-dropdown .box-prd .details-prd .prices-row {
  margin-top: 10px;
  padding-left: 5px;
  align-items: flex-end;
}

.header-main .header-options .shopcart-dropdown .box-prd .details-prd .prices-row .btn-del-cart {
  font-size: 20px;
  height: 25px;
  color: var(--coolgray);
  transition: all 0.4s;
}

.header-main .header-options .shopcart-dropdown .box-prd .details-prd .prices-row .btn-del-cart:hover {
  color: var(--redcolor);
}

.header-main .header-options .shopcart-dropdown .box-prd .details-prd .prices .main-price {
  font-size: 18px;
}

.header-main .header-options .shopcart-dropdown .box-prd .details-prd .prices .unit {
  font-size: 10px;
}

.header-main .header-options .shopcart-dropdown .box-prd .details-prd .prices .off {
  width: 25px;
  height: 25px;
  font-size: 10px;
}

.header-main .header-options .shopcart-dropdown .box-prd .details-prd .prices .off-price {
  font-size: 14px;
}

.header-main .header-options .shopcart-dropdown .box-prd .details-prd .prices .off-price::after {
  top: 6px;
}

.header-main .header-options .shopcart-dropdown .bottom-cart {
  background-color: var(--lightmain);
  padding: 15px 20px;
}

.header-main .header-options .shopcart-dropdown .total-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
}

.header-main .header-options .shopcart-dropdown .total-price .title {
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  margin: 0;
}

.header-main .header-options .shopcart-dropdown .total-price .prices {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.header-main .header-options .shopcart-dropdown .total-price .prices .unit {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  padding-bottom: 5px;
  margin-right: 3px;
}

.header-main .header-options .shopcart-dropdown .total-price .prices .main-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.header-main .header-options .shopcart-dropdown .btn-view-cart {
  background-color: var(--goldcolor);
  width: 100%;
  height: 45px;
  border-radius: 200px;
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0px 5px 25px 0px rgba(215, 181, 109, 0.5);
  margin-top: 10px;
  transition: all 0.4s;
}

.header-main .header-options .shopcart-dropdown .btn-view-cart:hover {
  background-color: var(--white);
  box-shadow: 0px 5px 25px 0px rgba(255, 255, 255, 0.5);
  color: var(--maincolor);
}

.header-main .header-options .shopcart-dropdown .btn-view-cart > i {
  font-size: 22px;
  margin-left: -5px;
}

.header-main .header-options .shopcart-dropdown .btn-view-cart:hover > i {
  animation: shadowarrowdark 0.4s linear infinite;
}

/*---------------------- /Header Main ---------------------*/
/*---------------------- Content Main ---------------------*/
/*---------------------- Slider Products ---------------------*/
.content-main .slider-products {
  position: relative;
  z-index: 10;
}

.content-main .slider-products .swiper-slideshow .swiper-slide {
  background-color: var(--white);
  padding-bottom: 30px;
}

.content-main .slider-products .swiper-slideshow .options-swiper {
  position: absolute;
  left: 10px;
  top: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
}

.content-main .slider-products .swiper-slideshow .options-swiper > div {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}

.content-main .slider-products .swiper-slideshow .options-swiper .swiper-button-next,
.content-main .slider-products .swiper-slideshow .options-swiper .swiper-button-prev {
  width: auto;
  height: auto;
  margin: 0;
}

.content-main .slider-products .swiper-slideshow .options-swiper .swiper-button-next::after,
.content-main .slider-products .swiper-slideshow .options-swiper .swiper-button-prev::after {
  font-family: "icomoon";
  font-size: 25px;
  color: var(--linecolor);
  transition: all 0.4s;
}

.content-main .slider-products .swiper-slideshow .options-swiper .swiper-button-next::after {
  content: "\e91b";
}

.content-main .slider-products .swiper-slideshow .options-swiper .swiper-button-prev::after {
  content: "\e914";
}

.content-main .slider-products .swiper-slideshow .options-swiper .swiper-button-next:hover::after,
.content-main .slider-products .swiper-slideshow .options-swiper .swiper-button-prev:hover::after {
  color: var(--goldcolor);
}

.content-main .slider-products .swiper-slideshow .options-swiper .swiper-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4px 0;
}

.content-main .slider-products .swiper-slideshow .options-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  margin: 3px 0;
  background-color: var(--lighttext);
  opacity: 1;
  transition: all 0.4s;
}

.content-main .slider-products .swiper-slideshow .options-swiper .swiper-pagination-bullet-active {
  height: 30px;
  background-color: var(--lightmain);
}

.content-main .slider-products .slider-details {
  padding-left: 100px;
}

.content-main .slider-products .slider-details .publisher .text {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  text-align: right;
  color: var(--textcolor);
  margin-bottom: 10px;
}

.content-main .slider-products .slider-details .publisher .text:not(:last-child)::after {
  content: "";
  background-color: var(--lighttext);
  width: 6px;
  height: 6px;
  border-radius: 100%;
  display: inline-block;
  margin: 0 10px;
}

.content-main .slider-products .slider-details .title-main {
  font-size: 80px;
  font-weight: 800;
  color: var(--darkcolor);
  margin: 0;
}

.content-main .slider-products .slider-details .title-main .name {
  color: var(--maincolor);
}

.content-main .slider-products .slider-details .sub-title {
  font-size: 23px;
  font-weight: 700;
  color: var(--darkgrey);
}

.content-main .slider-products .slider-details .introduction {
  font-size: 18px;
  font-weight: bold;
  color: var(--coolgray);
  padding-bottom: 10px;
}

.content-main .slider-products .slider-details .prices .left {
  margin-right: 5px;
  padding-bottom: 6px;
}

.content-main .slider-products .slider-details .prices .off {
  background-color: var(--redcolor);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2px;
}

.content-main .slider-products .slider-details .prices .unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--lightmain);
}

.content-main .slider-products .slider-details .prices .right {
  line-height: 1.1;
}

.content-main .slider-products .slider-details .prices .off-price {
  position: relative;
  font-size: 25px;
  font-weight: 700;
  color: var(--lighttext);
}

.content-main .slider-products .slider-details .prices .off-price::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--coolgray);
  position: absolute;
  top: 11px;
  right: 0;
  left: 0;
}

.content-main .slider-products .slider-details .prices .main-price {
  font-size: 40px;
  font-weight: 700;
  color: var(--lightmain);
}

.content-main .slider-products .slider-details .desc-product {
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  margin-top: 5px;
  line-height: 30px;
  color: var(--textcolor);
  margin-bottom: 30px;
  height: 90px;
  overflow: hidden;
}

.content-main .slider-products .slider-details .op-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 50px;
}

.content-main .slider-products .slider-details .op-item > i {
  font-size: 30px;
  margin-left: 15px;
  color: var(--goldcolor);
}

.content-main .slider-products .slider-details .op-item .title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--maincolor);
}

.content-main .slider-products .slider-details .op-item .desc {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--coolgray);
}

.content-main .slider-products .slider-details .btn-more {
  background-color: var(--goldcolor);
  width: 180px;
  height: 50px;
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0px 5px 25px 0px rgba(215, 181, 109, 0.5);
  transition: all 0.4s;
}

.content-main .slider-products .slider-details .btn-more:hover {
  width: 190px;
  background-color: var(--lightmain);
  box-shadow: 0px 5px 25px 0px rgba(118, 144, 201, 0.5);
}

.content-main .slider-products .slider-details .btn-more > i {
  font-size: 24px;
  margin-left: -5px;
}

.content-main .slider-products .slider-details .btn-more:hover > i {
  animation: shadowarrow 0.4s linear infinite;
}

@keyframes shadowarrow {
  from {
    text-shadow: 60px 0 5px rgba(255, 255, 255, 0);
  }
  to {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0.5);
  }
}
.content-main .slider-products .slider-image .image-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-main .slider-products .slider-image .image-box::before {
  content: "";
  width: 600px;
  height: 600px;
  border-radius: 100%;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(118, 144, 201, 0.1254901961), rgba(255, 255, 255, 0)) border-box;
  border: 60px solid transparent;
  position: absolute;
  z-index: 0;
  transform: rotate(250deg);
}

.content-main .slider-products .slider-image .image-box .img-product {
  position: relative;
  width: 400px;
  transform: scale(0.2) rotate(0) translateX(-200px);
  z-index: 10;
  margin-top: 25px;
  opacity: 0;
  transition: all 0.8s;
}

.content-main .slider-products .swiper-slide-active .slider-image .image-box .img-product {
  transform: scale(1) rotate(-10deg) translateX(0);
  opacity: 1;
}

.content-main .slider-products .slider-image .image-box .circular-read {
  position: absolute;
  top: 50px;
  right: 100px;
  z-index: 99;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lightmain);
}

.content-main .slider-products .slider-image .image-box .circular-read .text {
  width: 120px;
  flex-shrink: 0;
}

.content-main .slider-products .slider-image .image-box .circular-read .logo {
  position: absolute;
  width: 32px;
  height: 32px;
  animation: rotationcontrary 5s linear infinite;
}

.content-main .slider-products .slider-image .image-box .circular-read text {
  fill: var(--white);
  font-size: 35px;
  text-transform: uppercase;
  font-variant-ligatures: none;
  letter-spacing: 6px;
  transform-origin: 250px 250px;
  animation: rotation 10s linear infinite;
}

.content-main .slider-products .slider-image .image-box .circular-read .textcircle {
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  transform-origin: 250px 250px;
}

.content-main .slider-products .slider-image .image-box .circular-read:hover .textcircle {
  transform: scale(0.9) rotate(90deg);
}

@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotationcontrary {
  to {
    transform: rotate(-360deg);
  }
}
/*---------------------- /Slider Products ---------------------*/
/*---------------------- Section Catagories ---------------------*/
.content-main .sec-catagories {
  margin: 100px 0;
}

.content-main .sec-catagories .box-ctg {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 130px;
  border-radius: 20px;
  background: linear-gradient(270deg, #F2F4F7 0%, rgba(242, 244, 247, 0) 100%);
  padding: 25px;
  transition: all 0.4s;
}

.content-main .sec-catagories .box-ctg:hover {
  box-shadow: 0px 15px 46px -10px rgba(30, 30, 30, 0.1);
}

.content-main .sec-catagories .box-ctg .text-ctg {
  padding-left: 150px;
}

.content-main .sec-catagories .box-ctg .title {
  font-size: 20px;
  font-weight: 900;
  color: var(--maincolor);
  margin: 0 0 10px;
  transition: all 0.4s;
}

.content-main .sec-catagories .box-ctg:hover .title {
  color: var(--goldcolor);
}

.content-main .sec-catagories .box-ctg .desc {
  font-size: 14px;
  font-weight: normal;
  color: var(--textcolor);
  margin: 0;
}

.content-main .sec-catagories .box-ctg .image-ctg {
  position: absolute;
  left: 15px;
  bottom: 10px;
  height: 160px;
  z-index: 10;
  transition: all 0.4s;
}

.content-main .sec-catagories .box-ctg:hover .image-ctg {
  bottom: 15px;
}

.content-main .sec-catagories .box-ctg .btn-more {
  background-color: var(--white);
  width: 60px;
  height: 35px;
  border-radius: 100px;
  box-shadow: 0px 5px 25px 0px rgba(30, 30, 30, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 20;
  font-size: 25px;
  padding-right: 5px;
  color: var(--maincolor);
  overflow: hidden;
  transition: all 0.4s;
}

.content-main .sec-catagories .box-ctg:hover .btn-more {
  background-color: var(--maincolor);
  color: var(--white);
  box-shadow: 0px 5px 25px 0px rgba(118, 144, 201, 0.5);
}

.content-main .sec-catagories .box-ctg:hover .btn-more > i {
  animation: shadowarrow 0.4s linear infinite;
}

/*---------------------- /Section Catagories ---------------------*/
/*---------------------- Section Products ---------------------*/
.content-main .sec-products {
  position: relative;
}

.content-main .sec-products::before {
  content: "";
  width: 300px;
  height: 300px;
  background-color: var(--goldcolor);
  border-radius: 100%;
  position: absolute;
  top: -200px;
  left: -150px;
  z-index: 100;
  filter: blur(100px) opacity(0.4);
}

.content-main .sec-products .prd-catagory {
  padding-right: 0;
  padding-left: 15px;
}

.content-main .sec-products .prd-catagory .swiper-catagory {
  height: 780px;
  padding: 50px 15px;
}

.content-main .sec-products .prd-catagory .item-ctgprd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  width: 100%;
  height: 120px;
  border-radius: 15px;
  box-shadow: 0px 4px 30px -8px rgba(30, 30, 30, 0.1);
  border: 1px solid var(--white);
  transition: all 0.4s;
}

.content-main .sec-products .prd-catagory .item-ctgprd:hover {
  box-shadow: 0px 15px 46px -10px rgba(30, 30, 30, 0.1);
  border-color: var(--linecolor);
}

.content-main .sec-products .prd-catagory .item-ctgprd > i {
  font-size: 30px;
  color: var(--lighttext);
  transition: all 0.4s;
}

.content-main .sec-products .prd-catagory .item-ctgprd:hover > i {
  color: var(--coolgray);
}

.content-main .sec-products .prd-catagory .item-ctgprd.active > i {
  color: var(--goldcolor);
}

.content-main .sec-products .prd-catagory .item-ctgprd .title {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--darkcolor);
  margin-top: 15px;
}

.content-main .sec-products .prd-catagory .item-ctgprd.active .title {
  color: var(--goldcolor);
  font-weight: bold;
}

.content-main .sec-products .swiper-catagory .swiper-button-next,
.content-main .sec-products .swiper-catagory .swiper-button-prev {
  right: 0;
  left: 0;
  margin: 0 auto;
}

.content-main .sec-products .swiper-catagory .swiper-button-next {
  top: -8px;
}

.content-main .sec-products .swiper-catagory .swiper-button-prev {
  top: auto;
  bottom: -8px;
}

.content-main .sec-products .swiper-catagory .swiper-button-next::after,
.content-main .sec-products .swiper-catagory .swiper-button-prev::after {
  font-family: "icomoon";
  font-size: 25px;
  color: var(--linecolor);
  transition: all 0.4s;
}

.content-main .sec-products .swiper-catagory .swiper-button-next::after {
  content: "\e91b";
}

.content-main .sec-products .swiper-catagory .swiper-button-prev::after {
  content: "\e914";
}

.content-main .sec-products .swiper-catagory .swiper-button-next:hover::after,
.content-main .sec-products .swiper-catagory .swiper-button-prev:hover::after {
  color: var(--goldcolor);
}

.content-main .sec-products .list-products {
  position: relative;
}

.content-main .sec-products .list-products .row {
  margin: 0 -10px;
  transition: all 0.4s;
}

.content-main .sec-products .list-products .circular-read {
  position: absolute;
  top: 45%;
  z-index: 99;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--goldcolor);
  right: 0;
  left: 0;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: all 0.6s;
}

.content-main .sec-products .list-products .circular-read.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.content-main .sec-products .list-products .circular-read .text {
  width: 90px;
  flex-shrink: 0;
}

.content-main .sec-products .list-products .circular-read .logo {
  position: absolute;
  width: 32px;
  height: 32px;
  animation: rotationcontrary 2s linear infinite;
}

.content-main .sec-products .list-products .circular-read text {
  fill: var(--white);
  font-size: 45px;
  text-transform: uppercase;
  font-variant-ligatures: none;
  letter-spacing: 6px;
  transform-origin: 250px 250px;
  animation: rotation 5s linear infinite;
}

.content-main .sec-products .list-products .circular-read .textcircle {
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  transform-origin: 250px 250px;
}

.content-main .sec-products .list-products .circular-read:hover .textcircle {
  transform: scale(0.8) rotate(90deg);
}

@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotationcontrary {
  to {
    transform: rotate(-360deg);
  }
}
/*---------------------- /Section Products ---------------------*/
/*---------------------- Section Special Offer ---------------------*/
.content-main .sec-special-offer {
  position: relative;
  background-color: var(--redcolor);
  height: 330px;
  margin: 100px 0;
}

.content-main .sec-special-offer .head-special {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  direction: ltr;
  margin: 30px 0;
}

.content-main .sec-special-offer .head-special .arrows-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.content-main .sec-special-offer .head-special .swiper-button-next,
.content-main .sec-special-offer .head-special .swiper-button-prev {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 60px;
  height: 35px;
  border-radius: 100px;
  background: rgba(30, 30, 30, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  margin-right: 6px;
  transition: all 0.4s;
}

.content-main .sec-special-offer .head-special .swiper-button-next:hover,
.content-main .sec-special-offer .head-special .swiper-button-prev:hover {
  background-color: var(--white);
}

.content-main .sec-special-offer .head-special .swiper-button-next::after,
.content-main .sec-special-offer .head-special .swiper-button-prev::after {
  font-family: "icomoon";
  font-size: 24px;
  color: var(--white);
  transition: all 0.4s;
}

.content-main .sec-special-offer .head-special .swiper-button-next:hover::after,
.content-main .sec-special-offer .head-special .swiper-button-prev:hover::after {
  color: var(--redcolor);
}

.content-main .sec-special-offer .head-special .swiper-button-next::after {
  content: "\e91d";
}

.content-main .sec-special-offer .head-special .swiper-button-prev::after {
  content: "\e915";
}

.content-main .sec-special-offer .head-special .countdown {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  direction: ltr;
  height: 35px;
  margin-left: 25px;
}

.content-main .sec-special-offer .head-special .countdown > i {
  font-size: 25px;
  margin-right: 10px;
  color: var(--white);
}

.content-main .sec-special-offer .head-special .countdown_exciting {
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.content-main .sec-special-offer .head-special .countdown_exciting .number:first-child {
  display: none;
}

.content-main .sec-special-offer .head-special .countdown_exciting .title {
  display: none;
}

.content-main .sec-special-offer .head-special .countdown_exciting .txt {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.content-main .sec-special-offer .head-special .countdown_exciting .number:not(:last-child) .txt::after {
  content: ":";
  margin: 0 6px;
}

.content-main .sec-special-offer .head-special .countdown .title {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-left: 15px;
}

.content-main .sec-special-offer .swiper-special-offer {
  width: 100%;
  padding: 0 0 30px;
}

.content-main .sec-special-offer .item-prd-bookcycle {
  padding: 0;
}

.content-main .sec-special-offer .item-prd-bookcycle .box-prd {
  border: none;
  box-shadow: 0px 13px 41px -9px rgba(30, 30, 30, 0.1);
}

/*---------------------- /Section Special Offer ---------------------*/
/*---------------------- Section Used Books ---------------------*/
.content-main .sec-used-books {
  position: relative;
  padding-top: 300px !important;
}

.content-main .sec-used-books::before {
  content: "";
  width: 300px;
  height: 300px;
  background-color: var(--lightmain);
  border-radius: 100%;
  position: absolute;
  top: 50px;
  left: -150px;
  z-index: 100;
  filter: blur(100px) opacity(0.3);
}

.content-main .sec-used-books .used-details {
  padding-right: 0;
}

.content-main .sec-used-books .used-details .publisher .text {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  text-align: right;
  color: var(--textcolor);
  margin-bottom: 10px;
}

.content-main .sec-used-books .used-details .publisher .text:not(:last-child)::after {
  content: "";
  background-color: var(--lighttext);
  width: 6px;
  height: 6px;
  border-radius: 100%;
  display: inline-block;
  margin: 0 10px;
}

.content-main .sec-used-books .used-details .title-main {
  font-size: 80px;
  font-weight: 800;
  color: var(--darkcolor);
  margin: 0;
}

.content-main .sec-used-books .used-details .title-main .name {
  color: var(--goldcolor);
}

.content-main .sec-used-books .used-details .sub-title {
  font-size: 23px;
  font-weight: 700;
  color: var(--darkgrey);
}

.content-main .sec-used-books .used-details .desc-product {
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  margin-top: 5px;
  line-height: 30px;
  color: var(--textcolor);
  margin: 30px 0;
}

.content-main .sec-used-books .used-details .btn-more {
  background-color: var(--lightmain);
  width: 180px;
  height: 50px;
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0px 5px 25px 0px rgba(118, 144, 201, 0.5);
  transition: all 0.4s;
}

.content-main .sec-used-books .used-details .btn-more:hover {
  width: 190px;
  background-color: var(--goldcolor);
  box-shadow: 0px 5px 25px 0px rgba(215, 181, 109, 0.5);
}

.content-main .sec-used-books .used-details .btn-more > i {
  font-size: 24px;
  margin-left: -5px;
}

.content-main .sec-used-books .used-details .btn-more:hover > i {
  animation: shadowarrow 0.4s linear infinite;
}

.content-main .sec-used-books .used-image .image-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.content-main .sec-used-books .used-image .image-box::before {
  content: "";
  width: 600px;
  height: 600px;
  border-radius: 100%;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, rgba(215, 181, 109, 0.1254901961), rgba(255, 255, 255, 0)) border-box;
  border: 60px solid transparent;
  position: absolute;
  z-index: 0;
  transform: rotate(250deg);
}

.content-main .sec-used-books .used-image .image-box .img-product {
  position: relative;
  width: 400px;
  transform: scale(0.2) rotate(0) translateX(-200px);
  z-index: 10;
  margin-top: 25px;
  opacity: 0;
  transition: all 0.8s;
}

.content-main .slider-products .swiper-slide-active .slider-image .image-box .img-product {
  transform: scale(1) rotate(-10deg) translateX(0);
  opacity: 1;
}

.content-main .sec-used-books .used-image .image-box .circular-used {
  position: absolute;
  top: -150px;
  right: 50%;
  z-index: 99;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--goldcolor);
}

.content-main .sec-used-books .used-image .image-box .circular-used .text {
  width: 120px;
  flex-shrink: 0;
}

.content-main .sec-used-books .used-image .image-box .circular-used .logo {
  position: absolute;
  width: 32px;
  height: 32px;
  animation: rotationcontrary 5s linear infinite;
}

.content-main .sec-used-books .used-image .image-box .circular-used text {
  fill: var(--white);
  font-size: 35px;
  text-transform: uppercase;
  font-variant-ligatures: none;
  letter-spacing: 6px;
  transform-origin: 250px 250px;
  animation: rotation 10s linear infinite;
}

.content-main .sec-used-books .used-image .image-box .circular-used .textcircle {
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  transform-origin: 250px 250px;
}

.content-main .sec-used-books .used-image .image-box .circular-used:hover .textcircle {
  transform: scale(0.9) rotate(90deg);
}

@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotationcontrary {
  to {
    transform: rotate(-360deg);
  }
}
.content-main .sec-used-books .used-image .item-prd-bookcycle {
  position: absolute;
  padding: 0;
  z-index: 10;
  width: 235px;
  right: 25%;
  top: -100px;
  transform-origin: 100% 0;
  transition: all 0.8s;
}

.content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(2) {
  right: 61%;
  top: -320px;
  transform: scale(0.9);
}

.content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(3) {
  right: 61%;
  top: 70px;
  transform: scale(0.6);
}

.content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(4) {
  right: 25%;
  top: -510px;
  transform: scale(0.6);
  transform-origin: 50% 100%;
}

.content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(5) {
  right: -80px;
  top: -250px;
  transform: scale(0.75);
  transform-origin: 0;
}

.content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(6) {
  right: -80px;
  top: 80px;
  transform: scale(0.5);
  transform-origin: 0;
}

.content-main .sec-used-books .used-image .item-prd-bookcycle.prd-old {
  opacity: 0.4;
}

.content-main .sec-used-books .used-image .item-prd-bookcycle.prd-active {
  opacity: 0.3;
}

.content-main .sec-used-books .used-image .item-prd-bookcycle:hover {
  opacity: 1;
}

.content-main .sec-used-books .used-image .box-prd {
  box-shadow: 0px 13px 41px -9px rgba(30, 30, 30, 0.1);
}

/*---------------------- /Section Used Books ---------------------*/
/*---------------------- Section Banners ---------------------*/
.content-main .sec-banners {
  margin: 200px 0 50px;
}

.content-main .sec-banners .box-ctg .title.text-historical {
  color: var(--goldcolor);
}

.content-main .sec-banners .box-ctg .title.text-scientific {
  color: var(--lightmain);
}

.content-main .sec-banners .box-ctg .title.text-romance {
  color: var(--redcolor);
}

.content-main .sec-banners .swiper-banners {
  padding: 50px 0;
}

.content-main .sec-banners .arrows-banners .swiper-button-prev {
  left: 150px;
}

.content-main .sec-banners .arrows-banners .swiper-button-next {
  right: 150px;
}

.content-main .sec-banners .arrows-banners .swiper-button-prev::after,
.content-main .sec-banners .arrows-banners .swiper-button-next::after {
  font-family: "icomoon";
  font-size: 25px;
  color: var(--linecolor);
  transition: all 0.4s;
}

.content-main .sec-banners .arrows-banners .swiper-button-prev:hover::after,
.content-main .sec-banners .arrows-banners .swiper-button-next:hover::after {
  color: var(--goldcolor);
}

.content-main .sec-banners .arrows-banners .swiper-button-prev::after {
  content: "\e919";
}

.content-main .sec-banners .arrows-banners .swiper-button-next::after {
  content: "\e91a";
}

/*---------------------- /Section Banners ---------------------*/
/*---------------------- Section Cultural Products ---------------------*/
.content-main .sec-cultural-products {
  background-color: var(--maincolor);
  margin: 0;
}

.content-main .sec-cultural-products .title-sec-special .circular-special::before {
  background: linear-gradient(#4A68B0, #4A68B0) padding-box, linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(74, 104, 176, 0) 80%, rgba(74, 104, 176, 0) 100%) border-box;
}

.content-main .sec-cultural-products .item-prd-bookcycle .box-prd .image-prd > img {
  /* height: 140px; */
}

.content-main .sec-cultural-products .head-special .swiper-button-next:hover::after,
.content-main .sec-cultural-products .head-special .swiper-button-prev:hover::after {
  color: var(--maincolor);
}

.content-main .sec-special-offer .swiper-cultural-products {
  width: 100%;
  padding: 0 0 30px;
}

/*---------------------- /Section Cultural Products ---------------------*/
/*---------------------- Section Articles ---------------------*/
.content-main .sec-articles {
  position: relative;
  margin: 250px 0 100px;
}

.content-main .sec-articles::before {
  content: "";
  width: 300px;
  height: 300px;
  background-color: var(--goldcolor);
  border-radius: 100%;
  position: absolute;
  top: -200px;
  right: -150px;
  z-index: 100;
  filter: blur(100px) opacity(0.4);
}

.content-main .sec-articles .box-news {
  background-color: var(--white);
  width: 100%;
  height: 500px;
  border-radius: 20px;
  border: 1px solid var(--linecolor);
  overflow: hidden;
  transition: all 0.4s;
}

.content-main .sec-articles .box-news:hover {
  box-shadow: 0px 15px 46px -10px rgba(30, 30, 30, 0.1);
}

.content-main .sec-articles .box-news .image-news {
  display: block;
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.content-main .sec-articles .box-news .image-news::after {
  content: "";
  background-color: var(--maincolor);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.content-main .sec-articles .box-news:hover .image-news::after {
  opacity: 0.5;
  visibility: visible;
}

.content-main .sec-articles .box-news .image-news > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.content-main .sec-articles .box-news:hover .image-news > img {
  filter: grayscale(1);
  transform: scale(1.2);
}

.content-main .sec-articles .box-news .image-news .date {
  background-color: var(--lightmain);
  width: auto;
  height: 30px;
  border-radius: 100px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  z-index: 50;
  transition: all 0.4s;
}

.content-main .sec-articles .box-news:hover .image-news .date {
  background-color: var(--goldcolor);
}

.content-main .sec-articles .box-news .details-news {
  padding: 25px;
}

.content-main .sec-articles .box-news .details-news .sub-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--darkgrey);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.content-main .sec-articles .box-news .details-news .title {
  margin: 5px 0 0;
}

.content-main .sec-articles .box-news .details-news .title > a {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--darkcolor);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s;
}

.content-main .sec-articles .box-news:hover .details-news .title > a {
  color: var(--goldcolor);
}

.content-main .sec-articles .box-news .details-news > .desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--textcolor);
  line-height: 24px;
  width: 100%;
  height: 75px;
  overflow: hidden;
  margin: 10px 0 0;
}

.content-main .sec-articles .box-news .options-news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.content-main .sec-articles .box-news .options-news .op-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 50px;
}

.content-main .sec-articles .box-news .options-news .op-item > i {
  font-size: 25px;
  margin-left: 10px;
  color: var(--goldcolor);
}

.content-main .sec-articles .box-news .options-news .op-item .title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--maincolor);
}

.content-main .sec-articles .box-news .options-news .op-item .desc {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--coolgray);
}

.content-main .sec-articles .box-news .options-news .btn-more {
  background-color: var(--white);
  width: 60px;
  height: 35px;
  border-radius: 100px;
  box-shadow: 0px 4px 15px 0px rgba(30, 30, 30, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  font-size: 25px;
  padding-right: 5px;
  color: var(--maincolor);
  overflow: hidden;
  transition: all 0.4s;
}

.content-main .sec-articles .box-news:hover .options-news .btn-more {
  background-color: var(--maincolor);
  color: var(--white);
  box-shadow: 0px 5px 25px 0px rgba(118, 144, 201, 0.5);
}

.content-main .sec-articles .box-news:hover .options-news .btn-more > i {
  animation: shadowarrow 0.4s linear infinite;
}

/*---------------------- /Section Articles ---------------------*/
/*---------------------- Section Services ---------------------*/
.content-main .sec-services {
  margin: 100px 0;
}

.content-main .sec-services .box-service {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 110px;
  border-radius: 20px;
  background: linear-gradient(270deg, #F2F4F7 0%, rgba(242, 244, 247, 0) 100%);
  padding: 25px;
  display: flex;
  align-items: center;
  transition: all 0.4s;
}

.content-main .sec-services .box-service:hover {
  box-shadow: 0px 15px 46px -10px rgba(30, 30, 30, 0.1);
}

.content-main .sec-services .box-service .info-srv {
  padding-left: 60px;
}

.content-main .sec-services .box-service .title {
  font-size: 20px;
  font-weight: 900;
  color: var(--maincolor);
  margin: 0 0 4px;
  transition: all 0.4s;
}

.content-main .sec-services .box-service:hover .title {
  color: var(--goldcolor);
}

.content-main .sec-services .box-service .desc {
  font-size: 14px;
  font-weight: normal;
  color: var(--textcolor);
  margin: 0;
}

.content-main .sec-services .box-service .circular-srv {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 99;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--goldcolor);
  transition: all 0.4s;
}

.content-main .sec-services .box-service .circular-srv.circular-blue {
  background-color: var(--lightmain);
}

.content-main .sec-services .box-service:hover .circular-srv {
  background-color: var(--darkgrey);
}

.content-main .sec-services .box-service .circular-srv .text {
  width: 78px;
  flex-shrink: 0;
}

.content-main .sec-services .box-service .circular-srv .ic-circular {
  position: absolute;
  font-size: 25px;
  color: var(--white);
  transition: all 0.4s;
}

.content-main .sec-services .box-service:hover .circular-srv .ic-circular {
  transform: scale(0.8);
  opacity: 0.3;
}

.content-main .sec-services .box-service .circular-srv text {
  fill: var(--white);
  font-size: 50px;
  text-transform: uppercase;
  font-variant-ligatures: none;
  letter-spacing: 6px;
  transform-origin: 250px 250px;
}

.content-main .sec-services .box-service .circular-srv .textcircle {
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  transform-origin: 250px 250px;
}

.content-main .sec-services .box-service:hover .circular-srv .textcircle {
  transform: scale(0.95) rotate(90deg);
}

/*---------------------- /Section Services ---------------------*/
/*---------------------- Section Publishers ---------------------*/
.content-main .sec-publishers {
  position: relative;
  padding-bottom: 100px !important;
  overflow: hidden;
}

.content-main .sec-publishers::before,
.content-main .sec-publishers::after {
  content: "";
  width: 500px;
  height: 100px;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 0;
  z-index: 50;
}

.content-main .sec-publishers::before {
  left: 0;
}

.content-main .sec-publishers::after {
  right: 0;
  transform: scaleX(-1);
}

.content-main .sec-publishers .head-sec-bookcycle .details-head {
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.content-main .sec-publishers .head-sec-bookcycle .details-head .cycle {
  background: linear-gradient(white, white) padding-box, linear-gradient(0deg, rgba(118, 144, 201, 0.3) 0%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%) border-box;
  margin: 0 0 10px;
  transform: rotate(150deg);
}

.content-main .sec-publishers .head-sec-bookcycle .details-head .title {
  color: var(--goldcolor);
}

.content-main .sec-publishers .list-publishers {
  position: absolute;
  width: auto;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-animation: marqueeright 15s linear infinite;
  animation: marqueeright 15s linear infinite;
}

.content-main .sec-publishers .list-publishers:hover {
  animation-play-state: paused;
}

.content-main .sec-publishers .list-publishers .item-pbl {
  display: block;
  margin: 0 60px;
}

.content-main .sec-publishers .list-publishers .item-pbl > img {
  height: 100px;
  opacity: 0.2;
  mix-blend-mode: luminosity;
  transition: all 0.4s;
}

.content-main .sec-publishers .list-publishers .item-pbl:hover > img {
  opacity: 1;
  mix-blend-mode: normal;
}

@-webkit-keyframes marqueeright {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
@keyframes marqueeright {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
/*---------------------- /Section Publishers ---------------------*/
/*---------------------- /Content Main ---------------------*/
/*---------------------- Footer Main ---------------------*/
.footer-main .footer-info {
  position: relative;
  background-color: var(--maincolor);
  padding: 0 0 80px;
  margin-top: 200px;
}

.footer-main .footer-info::before {
  content: "";
  width: 102%;
  height: 280px;
  border-radius: 100px;
  background-color: var(--maincolor);
  transform: rotate(-1.5deg);
  position: absolute;
  top: -80px;
  right: -10px;
  left: 0;
  z-index: 0;
}

.footer-main .footer-info::after {
  content: "";
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background: linear-gradient(#087b6e, #087b6e) padding-box, linear-gradient(0deg, rgba(215, 181, 109, 0.2) 0%, rgba(74, 104, 176, 0) 70%, rgba(74, 104, 176, 0) 100%) border-box;
  border: 35px solid transparent;
  transform: rotate(65deg);
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 95px;
  z-index: 5;
}

.footer-main .footer-info .circular-goto {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 99;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--goldcolor);
  box-shadow: 0px -4px 15px 0px rgba(215, 181, 109, 0.5);
  transition: all 0.4s;
}

.footer-main .footer-info .circular-goto .text {
  width: 90px;
  flex-shrink: 0;
}

.footer-main .footer-info .circular-goto .icon-arrow-small-up {
  position: absolute;
  font-size: 30px;
  color: var(--white);
}

.footer-main .footer-info .circular-goto:hover .icon-arrow-small-up {
  animation: shadowarroup 0.4s linear infinite;
}

@keyframes shadowarroup {
  from {
    text-shadow: 0 40px 5px rgba(255, 255, 255, 0);
  }
  to {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0.3);
  }
}
.footer-main .footer-info .circular-goto text {
  fill: var(--white);
  font-size: 45px;
  text-transform: uppercase;
  font-variant-ligatures: none;
  letter-spacing: 6px;
  transform-origin: 250px 250px;
  animation: rotation 10s linear infinite;
}

.footer-main .footer-info .circular-goto .textcircle {
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  transform-origin: 250px 250px;
}

.footer-main .footer-info .circular-goto:hover .textcircle {
  transform: scale(0.95) rotate(90deg);
}

.footer-main .footer-info .head-info {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 10;
}

.footer-main .footer-info .head-info .image-logo > img {
  width: 260px;
}

.footer-main .footer-info .head-info .title-site {
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  margin: 5px 0 0;
  opacity: 0.5;
}

.footer-main .footer-info .contact-info {
  margin-right: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;
}

.footer-main .footer-info .contact-info .support {
  font-size: 20px;
  font-weight: 700;
  color: var(--goldcolor);
  margin: 0 0 5px;
}

.footer-main .footer-info .contact-info .support > span {
  margin: 0 10px;
}

.footer-main .footer-info .contact-info .address {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin: 0;
}

.footer-main .footer-info .about-site {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  text-align: justify;
  line-height: 40px;
  color: var(--white);
  opacity: 0.7;
  z-index: 10;
  margin: 40px 0 60px;
}
.footer-main .footer-info .about-site a {
  color: var(--white);
  font-weight: 600;
}

.footer-main .footer-info .row {
  position: relative;
  z-index: 10;
}

.footer-main .footer-info > .container::after {
  content: "";
  width: 400px;
  height: 400px;
  border-radius: 100%;
  background: linear-gradient(#087b6e, #087b6e) padding-box, linear-gradient(0deg, rgba(118, 144, 201, 0.2) 0%, rgba(74, 104, 176, 0) 70%, rgba(74, 104, 176, 0) 100%) border-box;
  border: 60px solid transparent;
  transform: rotate(-120deg);
  flex-shrink: 0;
  position: absolute;
  right: 0;
  bottom: -40px;
  z-index: 5;
}

.footer-main .footer-info .important-links {
  position: relative;
  z-index: 10;
}

.footer-main .footer-info .important-links .title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 30px;
}

.footer-main .footer-info .important-links .list-imp {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-main .footer-info .important-links .list-imp .link-imp {
  position: relative;
  font-size: 18px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.footer-main .footer-info .important-links .list-imp .link-imp:hover {
  color: var(--white);
  font-weight: 700;
}

.footer-main .footer-info .important-links .list-imp .link-imp::before {
  content: "";
  background-color: var(--white);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  flex-shrink: 0;
  margin-left: 10px;
  opacity: 0.1;
  transition: all 0.4s;
}

.footer-main .footer-info .important-links .list-imp .link-imp:hover::before {
  background-color: var(--goldcolor);
  margin-left: 15px;
  opacity: 1;
}

.footer-main .footer-info .certificates {
  padding-right: 115px;
}

.footer-main .footer-info .certificates .list-cert {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  direction: ltr;
}

.footer-main .footer-info .certificates .list-cert .item-cert {
  background-color: var(--white);
  width: 120px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.4s;
}

.footer-main .footer-info .certificates .list-cert .item-cert:last-child {
  margin-right: 0;
}

.footer-main .footer-info .certificates .list-cert .item-cert:hover {
  box-shadow: 0px 15px 46px -10px rgba(30, 30, 30, 0.3);
}

.footer-main .footer-info .certificates .list-cert .item-cert > img {
  height: 100px;
  transition: all 0.4s;
}

.footer-main .footer-info .certificates .list-cert .item-cert:hover > img {
  transform: scale(0.9);
}

.footer-main .footer-info .socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.footer-main .footer-info .socials .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.footer-main .footer-info .socials .list-sc {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  direction: ltr;
}

.footer-main .footer-info .socials .list-sc .item-sc {
  background-color: rgba(255, 255, 255, 0.1);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  margin-right: 15px;
  transition: all 0.4s;
}

.footer-main .footer-info .socials .list-sc .item-sc:hover {
  background-color: var(--goldcolor);
  box-shadow: 0px 4px 15px 0px rgba(215, 181, 109, 0.3);
}

.footer-main .footer-copyright {
  position: relative;
  background-color: var(--maincolor);
  height: 150px;
  overflow: hidden;
  margin-top: -20px;
}

.footer-main .footer-copyright .cpt-designer::before {
  content: "";
  width: 102%;
  height: 280px;
  border-radius: 100px;
  /* background-color: var(--lightmain); */
  transform: rotate(-178deg);
  position: absolute;
  top: 40px;
  left: -20px;
  z-index: 10;
}

.footer-main .footer-copyright .cpt-designer .text-cpt {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  direction: ltr;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
}

.footer-main .footer-copyright .cpt-designer .text-cpt > i {
  font-size: 25px;
  color: var(--white);
  margin-right: 10px;
}

.footer-main .footer-copyright .cpt-designer .text-cpt > a {
  font-weight: 900;
  color: var(--white);
  margin-left: 5px;
}

.footer-main .footer-copyright .cpt-website::before {
  content: "";
  width: 102%;
  height: 280px;
  border-radius: 100px;
  background-color: var(--goldcolor);
  transform: rotate(178deg);
  position: absolute;
  top: 65px;
  right: -10px;
  z-index: 20;
}

.footer-main .footer-copyright .cpt-website .text-cpt {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  direction: rtl;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
}

.footer-main .footer-copyright .cpt-website .text-cpt > strong {
  font-weight: 900;
  margin: 0 5px;
}

/*---------------------- /Footer Main ---------------------*/
/*---------------------- Responsives ---------------------*/
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .container {
    padding: 0 100px;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1500px) {
  .container {
    padding: 0 30px;
  }
  .header-main {
    padding: 30px 0;
  }
  .header-main .navbar-bookcycle .list-menu .link-menu {
    padding: 15px;
    font-size: 15px;
  }
  .content-main .slider-products .slider-details {
    padding-left: 15px;
  }
  .content-main .slider-products .slider-image .image-box::before {
    width: 500px;
    height: 500px;
  }
  .content-main .slider-products .slider-image .image-box .img-product {
    width: 350px;
  }
  .content-main .slider-products .slider-image .image-box .circular-read {
    right: 60px;
  }
  .content-main .sec-catagories .box-ctg .image-ctg {
    height: 130px;
  }
  .content-main .sec-catagories .box-ctg .text-ctg {
    padding-left: 130px;
  }
  .content-main .sec-catagories .box-ctg .title {
    font-size: 18px;
  }
  .content-main .sec-catagories .box-ctg .desc {
    font-size: 12px;
  }
  .content-main .sec-products .list-products .item-prd-bookcycle.col-lg-2 {
    max-width: 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }
  .content-main .sec-products .list-products .item-prd-bookcycle:nth-child(9),
  .content-main .sec-products .list-products .item-prd-bookcycle:nth-child(10) {
    display: none;
  }
  .content-main .sec-used-books {
    padding-top: 200px !important;
  }
  .content-main .sec-used-books .used-image .image-box::before {
    width: 500px;
    height: 500px;
  }
  .content-main .sec-used-books .used-details .title-main {
    font-size: 65px;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle {
    transform: scale(0.8);
    right: 28%;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(2) {
    transform: scale(0.8);
    right: 63%;
    top: -250px;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(3) {
    right: 63%;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(4) {
    top: -500px;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(5) {
    transform: scale(0.7);
    right: -90px;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(6) {
    right: -90px;
    top: 0;
  }
  .content-main .sec-banners .arrows-banners .swiper-button-prev {
    left: 15px;
  }
  .content-main .sec-banners .arrows-banners .swiper-button-next {
    right: 15px;
  }
  .content-main .sec-banners .swiper-banners {
    padding: 50px 30px;
  }
  .title-sec-special .title {
    font-size: 35px;
  }
  .title-sec-special .title > strong {
    font-size: 30px;
  }
  .content-main .sec-services .box-service .title {
    font-size: 18px;
  }
  .content-main .sec-services .box-service .desc {
    font-size: 12px;
  }
  .content-main .sec-publishers::before, .content-main .sec-publishers::after {
    width: 250px;
  }
  .footer-main .footer-info .head-info .image-logo > img {
    width: 220px;
  }
  .footer-main .footer-info .head-info .title-site {
    font-size: 16px;
  }
  .footer-main .footer-info .important-links .title {
    font-size: 20px;
  }
  .footer-main .footer-info .important-links .list-imp .link-imp {
    font-size: 16px;
  }
  .footer-main .footer-info .certificates {
    padding-right: 15px;
  }
  .footer-main .footer-info .socials .list-sc .item-sc {
    margin-right: 10px;
  }
  .footer-main .footer-copyright .cpt-designer .text-cpt {
    margin-top: 45px;
  }
}
/*---------------------- /Responsives ---------------------*/
/*---------------------- /Responsives ---------------------*/
.tabs-footer {
  position: fixed;
  background-color: var(--whitecolor);
  box-shadow: 0px -4px 30px 0px rgba(0, 69, 61, 0.4);
  border-radius: 20px 20px 0 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}

.bottom-sheet-btn {
  background-color: #f6831f;
  height: 36px;
  align-items: center;
  padding: 0 25px 2px;
  font-size: 14px;
  color: #fff;
  margin: 5px 5px;
  border-radius: 4px;
  border: none;
  transition: all 0.4s;
  cursor: pointer;
}

.bottom-sheet-btn:hover {
  background-color: #333;
}

/*-------------------- Auto complete -----------------------*/
.autocomplete-suggestions {
  background-color: #fff;
  border: 1px solid #efefef;
  overflow: auto;
  width: 270px !important;
  border-radius: 25px;
  left: 320px !important;
}

.autocomplete-suggestions .disable-background {
  width: 100%;
  height: 100%;
  background-color: rgba(200, 200, 200, 0.2);
  z-index: 999991;
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s all ease-in-out;
}

.autocomplete-suggestions .disable-background:hover {
  cursor: progress;
}

.autocomplete-suggestions .fa-spin {
  position: absolute;
  top: 49%;
  left: 49%;
  font-size: 18px;
  z-index: 999992;
}

.autocomplete-suggestions::-webkit-scrollbar {
  width: 10px;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
  border: 3px solid transparent;
}

.autocomplete-suggestion {
  padding: 10px 15px 10px 10px;
  font-size: 12px;
  transition: 0.2s all ease-in-out;
}

.autocomplete-suggestion:hover {
  background-color: rgba(100, 100, 100, 0.1);
  cursor: pointer;
}

.autocomplete-group {
  padding: 10px;
  font-size: 12px;
  font-weight: bold;
  background-color: #efefef;
}

/*------------------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: 650px) and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  .header-main {
    padding: 20px 0;
  }
  .header-main .navbar-bookcycle {
    position: fixed;
    background: var(--maincolor);
    right: -100%;
    top: 110px;
    z-index: 9999;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    left: 0;
    width: 100%;
    margin: 0;
    transition: all 0.4s;
  }
  .header-main .navbar-bookcycle::after {
    content: "";
    width: 400px;
    height: 400px;
    border-radius: 100%;
    background: linear-gradient(#4A68B0, #4A68B0) padding-box, linear-gradient(0deg, rgba(118, 144, 201, 0.2) 0%, rgba(74, 104, 176, 0) 70%, rgba(74, 104, 176, 0) 100%) border-box;
    border: 60px solid transparent;
    transform: rotate(120deg);
    flex-shrink: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
  }
  .header-main .navbar-bookcycle.show {
    right: 0;
  }
  .header-main .navbar-bookcycle .left-top {
    display: flex !important;
    width: 100%;
    justify-content: center !important;
    padding: 20px;
    border-bottom: 1px solid var(--linecolor);
  }
  .header-main .navbar-bookcycle .list-menu {
    flex-direction: column;
    padding: 30px 0;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu {
    padding: 0 !important;
    width: 100%;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu .link-menu {
    display: block;
    padding: 15px 20px !important;
    color: var(--white);
  }
  .header-main .navbar-bookcycle .list-menu .item-menu .link-menu > i {
    margin: 0 0 0 15px;
  }
  .header-main .navbar-bookcycle .list-menu .link-menu::before {
    top: 0px;
    right: 18px;
    left: auto;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu.has-children::before {
    top: 12px;
    left: 20px;
    right: auto;
    bottom: auto;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu::after {
    width: 100%;
    height: 1px;
    top: 100%;
    right: 0;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu .submenu-list {
    position: relative;
    border-radius: 0;
    top: 0 !important;
    padding: 0;
    left: 0;
    height: 0;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu.active .submenu-list {
    height: 100%;
    padding: 10px 20px;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu .submenu-list li a {
    font-size: 13px;
  }
  .header-main .header-options .btn-option.btn-menucycle {
    display: block;
  }
  .content-main .slider-products .slider-image .image-box::before {
    width: 500px;
    height: 500px;
  }
  .content-main .slider-products .slider-image .image-box .img-product {
    width: 300px;
  }
  .content-main .slider-products .slider-image .image-box .circular-read {
    width: 80px;
    height: 80px;
    right: 200px;
  }
  .content-main .slider-products .slider-image .image-box .circular-read .text {
    width: 100px;
  }
  .content-main .slider-products .swiper-slideshow .options-swiper {
    left: 20%;
    top: 20%;
  }
  .content-main .slider-products .swiper-slideshow .options-swiper .swiper-button-next::after,
  .content-main .slider-products .swiper-slideshow .options-swiper .swiper-button-prev::after {
    color: var(--goldcolor);
  }
  .content-main .slider-products .slider-details {
    padding-left: 15px;
    order: 1;
    margin-top: 50px;
  }
  .content-main .slider-products .slider-details .publisher .text {
    font-size: 18px;
  }
  .content-main .slider-products .slider-details .title-main {
    font-size: 60px;
  }
  .content-main .slider-products .slider-details .sub-title {
    font-size: 20px;
  }
  .content-main .slider-products .slider-details .introduction {
    font-size: 16px;
  }
  .content-main .slider-products .slider-details .desc-product {
    font-size: 12px;
    line-height: 25px;
  }
  .content-main .slider-products .slider-details .desc-product {
    height: 100px;
    overflow: hidden;
  }
  .content-main .sec-catagories .box-ctg {
    margin-top: 60px;
  }
  .content-main .sec-catagories {
    margin: 20px 0 100px;
  }
  .content-main .sec-products .prd-catagory .swiper-catagory {
    height: auto;
    padding: 15px 50px;
  }
  .content-main .sec-products .swiper-catagory .swiper-button-next,
  .content-main .sec-products .swiper-catagory .swiper-button-prev {
    top: 35%;
  }
  .content-main .sec-products .swiper-catagory .swiper-button-next {
    left: auto;
    right: 10px;
    transform: rotate(90deg);
  }
  .content-main .sec-products .swiper-catagory .swiper-button-prev {
    right: auto;
    left: 10px;
    transform: rotate(90deg);
  }
  .head-sec-bookcycle {
    margin-bottom: 20px;
  }
  .content-main .sec-products .prd-catagory .item-ctgprd {
    height: 100px;
  }
  .content-main .sec-products .prd-catagory .item-ctgprd > i {
    font-size: 25px;
  }
  .content-main .sec-products .prd-catagory .item-ctgprd .title {
    font-size: 14px;
    margin-top: 10px;
  }
  .content-main .sec-products .list-products .row {
    margin-top: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .content-main .sec-products .list-products .item-prd-bookcycle.col-lg-2 {
    max-width: 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
  }
  .content-main .sec-special-offer {
    margin: 50px 0;
  }
  .title-sec-special .title {
    font-size: 35px;
  }
  .title-sec-special .title > strong {
    font-size: 30px;
  }
  .content-main .sec-used-books {
    padding-top: 500px !important;
  }
  .content-main .sec-used-books .used-image .image-box {
    justify-content: center;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle {
    right: 33%;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(2) {
    right: 67%;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(4) {
    right: 33%;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(5) {
    right: -10px;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(3),
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(6) {
    display: none;
  }
  .content-main .sec-used-books .used-details {
    padding-top: 350px;
    padding-right: 15px;
  }
  .content-main .sec-used-books .used-details .publisher .text {
    font-size: 18px;
  }
  .content-main .sec-used-books .used-details .title-main {
    font-size: 60px;
  }
  .content-main .sec-used-books .used-details .sub-title {
    font-size: 20px;
  }
  .content-main .slider-products .slider-details .introduction {
    font-size: 16px;
  }
  .content-main .sec-used-books .used-details .desc-product {
    font-size: 12px;
    line-height: 25px;
  }
  .content-main .sec-banners {
    margin: 0;
  }
  .content-main .sec-banners .swiper-banners {
    padding: 50px;
  }
  .content-main .sec-banners .arrows-banners .swiper-button-prev,
  .content-main .sec-banners .arrows-banners .swiper-button-next {
    top: 60%;
  }
  .content-main .sec-banners .arrows-banners .swiper-button-prev {
    left: 20px;
  }
  .content-main .sec-banners .arrows-banners .swiper-button-next {
    right: 20px;
  }
  .content-main .sec-articles {
    margin: 200px 0 50px;
  }
  .content-main .sec-articles .head-sec-bookcycle {
    margin-bottom: 30px;
  }
  .content-main .sec-articles .row {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .content-main .sec-articles .item-news {
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
  }
  .content-main .sec-services {
    margin: 50px 0;
  }
  .content-main .sec-services .box-service {
    margin-bottom: 20px;
  }
  .content-main .sec-services .box-service .title {
    font-size: 18px;
  }
  .content-main .sec-services .box-service .desc {
    font-size: 13px;
  }
  .content-main .sec-publishers::before,
  .content-main .sec-publishers::after {
    width: 100px;
  }
  .content-main .sec-publishers .list-publishers .item-pbl {
    margin: 0 30px;
  }
  .content-main .sec-publishers .list-publishers .item-pbl > img {
    height: 80px;
  }
  .footer-main .footer-info {
    margin-top: 150px;
  }
  .footer-main .footer-info::before {
    width: 105%;
  }
  .footer-main .footer-info .circular-goto {
    top: -120px;
    left: 44%;
  }
  .footer-main .footer-info .head-info {
    flex-direction: column;
  }
  .footer-main .footer-info .contact-info {
    margin: 20px 0 0;
    align-items: center;
    text-align: center;
  }
  .footer-main .footer-info .contact-info .support {
    font-size: 18px;
  }
  .footer-main .footer-info .contact-info .address {
    font-size: 16px;
  }
  .footer-main .footer-info .about-site {
    margin: 30px 0;
    font-size: 14px;
    line-height: 35px;
  }
  .footer-main .footer-info .important-links .title {
    font-size: 18px;
  }
  .footer-main .footer-info .important-links .list-imp .link-imp {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .footer-main .footer-info .certificates {
    padding: 0 200px;
    margin-top: 30px;
  }
  .footer-main .footer-info .certificates .list-cert {
    justify-content: center;
  }
  .footer-main .footer-copyright .cpt-designer::before {
    width: 110%;
    top: 30px;
    left: -50px;
  }
  .footer-main .footer-copyright .cpt-website::before {
    width: 110%;
    top: 70px;
    right: -70px;
  }
  .footer-main .footer-copyright .cpt-website .text-cpt {
    margin-top: 35px;
  }
  .content-main .sec-products::before,
  .content-main .sec-used-books::before,
  .content-main .sec-articles::before {
    width: 250px;
    height: 250px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 640px) {
  .container {
    padding: 0 15px;
  }
  .header-main {
    padding: 20px 0;
  }
  .header-main::before {
    top: -250px;
    right: -250px;
  }
  .header-main .logo-head .image-logo > img {
    width: 140px;
  }
  .header-main .logo-head .title-site {
    font-size: 10px !important;
    font-weight: 700 !important;
  }
  .header-main .header-options .btn-option {
    width: 35px;
    height: 35px;
    margin-right: 5px;
    font-size: 14px;
  }
  .header-main .header-options .btn-option.btn-cart {
    font-size: 18px;
  }
  .header-main .header-options .shopcart-dropdown {
    left: 0;
    width: 300px;
  }
  .header-main .header-options .shopcart-dropdown .box-prd .details-prd {
    width: 70%;
  }
  .header-main .header-options .shopcart-dropdown .box-prd .image-prd > img {
    height: 90px;
  }
  .header-main .header-options .btn-option .hamburger .hamburger-box {
    width: 19px;
    height: 13px;
  }
  .header-main .header-options .btn-option .hamburger .hamburger-inner,
  .header-main .header-options .btn-option .hamburger .hamburger-inner::before,
  .header-main .header-options .btn-option .hamburger .hamburger-inner::after {
    width: 18px;
    height: 2px;
  }
  .header-main .header-options .btn-option .hamburger--slider .hamburger-inner::before {
    top: 6px;
  }
  .header-main .header-options .btn-option .hamburger--slider .hamburger-inner::after {
    top: 12px;
  }
  .header-main .header-options .btn-option .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -12px, 0) rotate(-90deg);
  }
  .header-main .header-options {
    direction: ltr;
    text-align: right;
  }
  .header-main .header-options ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .header-main .header-options ul li {
    display: inline-block;
    position: relative;
  }
  .header-main .header-options .submenu-list {
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    position: absolute;
    background: var(--lightmain);
    padding: 15px 13px;
    border-radius: 15px;
    z-index: 1022;
    top: 20px;
    /* right: 0; */
    left: 0;
    width: 200px;
  }
  .header-main .header-options .submenu-list.active {
    opacity: 1;
    visibility: visible;
    top: 55px;
  }
  .header-main .header-options .submenu-list::before {
    content: "";
    position: absolute;
    background-image: url("../images/before-sub-menu.svg") !important;
    background-position: center center;
    background-repeat: no-repeat;
    width: 26px;
    top: -17px;
    height: 40px;
    left: 11px;
    z-index: 1022;
    box-shadow: none;
  }
  .header-main .header-options .submenu-list ul {
    margin: 0;
    padding: 0;
    max-height: 250px;
  }
  .header-main .header-options .submenu-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    padding-bottom: 0;
    list-style: none;
  }
  .header-main .header-options .submenu-list li:last-child {
    border: none;
  }
  .header-main .header-options .submenu-list li a {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 10px 0;
    width: 100%;
    display: flex;
    justify-content: right;
    transition: all 0.4s;
  }
  .header-main .header-options .submenu-list li a:hover {
    color: var(--goldcolor);
    font-weight: 700;
    padding: 10px 5px 10px 0;
  }
  .header-main .header-options .mCS-dir-rtl > .mCSB_inside > .mCSB_container {
    margin-left: 15px;
  }
  .header-main .header-options .mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-left: 0;
  }
  .header-main .header-options .mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
  .header-main .header-options .mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
    left: -6px;
  }
  .header-main .header-options .mCSB_scrollTools .mCSB_draggerRail {
    background-color: rgba(255, 255, 255, 0.15);
  }
  .header-main .header-options .search-wrapper {
    display: inline-flex;
    align-items: center;
    position: relative;
  }
  .header-main .header-options .search-wrapper a.btn-option {
    margin-right: 0;
  }
  .header-main .header-options .search-wrapper .search-overlay {
    display: none;
    position: fixed;
    background: var(--maincolor);
    width: 100%;
    height: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    opacity: 0.7;
  }
  .header-main .header-options .search-wrapper .search-overlay.show {
    display: block;
  }
  .header-main .header-options .search-wrapper .search-overlay i.fa {
    position: absolute;
    font-size: 24px;
    right: 25px;
    top: 25%;
    color: #fff;
  }
  .header-main .header-options .search-wrapper .search-form-wrapper {
    display: none;
    top: 30%;
    left: 0;
    position: fixed;
    right: 0;
    padding: 10px;
    z-index: 999;
  }
  .header-main .header-options .search-wrapper .search-form-wrapper input#search-txt {
    border-radius: 25px;
    width: 100%;
  }
  .header-main .header-options .search-wrapper .search-form-wrapper.show {
    display: block;
  }
  .header-main .navbar-bookcycle {
    position: fixed;
    background: var(--maincolor);
    right: -100%;
    top: 85px;
    z-index: 9999;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    left: 0;
    width: 100%;
    margin: 0;
    transition: all 0.4s;
  }
  .header-main .navbar-bookcycle::after {
    content: "";
    width: 400px;
    height: 400px;
    border-radius: 100%;
    background: linear-gradient(#4A68B0, #4A68B0) padding-box, linear-gradient(0deg, rgba(118, 144, 201, 0.2) 0%, rgba(74, 104, 176, 0) 70%, rgba(74, 104, 176, 0) 100%) border-box;
    border: 60px solid transparent;
    transform: rotate(120deg);
    flex-shrink: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
  }
  .header-main .navbar-bookcycle.show {
    right: 0;
  }
  .header-main .navbar-bookcycle .left-top {
    display: flex !important;
    width: 100%;
    justify-content: center !important;
    padding: 20px;
    border-bottom: 1px solid var(--linecolor);
  }
  .header-main .navbar-bookcycle .list-menu {
    flex-direction: column;
    padding: 30px 0;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu {
    padding: 0 !important;
    width: 100%;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu .link-menu {
    display: block;
    padding: 15px 20px !important;
    font-size: 14px;
    color: var(--white);
  }
  .header-main .navbar-bookcycle .list-menu .item-menu .link-menu > i {
    margin: 0 0 0 15px;
  }
  .header-main .navbar-bookcycle .list-menu .link-menu::before {
    top: 0px;
    right: 18px;
    left: auto;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu.has-children::before {
    font-size: 10px;
    top: 19px;
    left: 20px;
    right: auto;
    bottom: auto;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu::after {
    width: 100%;
    height: 1px;
    top: 100%;
    right: 0;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu .submenu-list {
    position: relative;
    border-radius: 0;
    top: 0 !important;
    padding: 0;
    left: 0;
    height: 0;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu.active .submenu-list {
    height: 100%;
    padding: 10px 20px;
  }
  .header-main .navbar-bookcycle .list-menu .item-menu .submenu-list li a {
    font-size: 13px;
  }
  .header-main .header-options .btn-option.btn-menucycle {
    display: block;
    margin: 0;
  }
  .content-main .slider-products .slider-image .image-box::before {
    width: 350px;
    height: 350px;
    border-width: 40px;
  }
  .content-main .slider-products .slider-image .image-box .img-product {
    width: 250px;
  }
  .content-main .slider-products .slider-image .image-box .circular-read {
    width: 70px;
    height: 70px;
    right: 30px;
  }
  .content-main .slider-products .slider-image .image-box .circular-read .text {
    width: 85px;
  }
  .content-main .slider-products .slider-image .image-box .circular-read .logo {
    width: 25px;
    height: 25px;
  }
  .content-main .slider-products .swiper-slideshow .options-swiper {
    left: 10px;
    top: 15%;
  }
  .content-main .slider-products .swiper-slideshow .options-swiper .swiper-button-next::after,
  .content-main .slider-products .swiper-slideshow .options-swiper .swiper-button-prev::after {
    font-size: 20px;
    color: var(--goldcolor);
  }
  .content-main .slider-products .slider-details {
    padding-left: 15px;
    order: 1;
    margin-top: 50px;
  }
  .content-main .slider-products .slider-details .publisher .text {
    font-size: 16px;
  }
  .content-main .slider-products .slider-details .title-main {
    font-size: 45px;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .content-main .slider-products .slider-details .sub-title {
    font-size: 16px;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .content-main .slider-products .slider-details .prices-row {
    flex-direction: column-reverse;
    margin-top: 15px;
  }
  .content-main .slider-products .slider-details .prices .unit {
    font-size: 14px;
  }
  .content-main .slider-products .slider-details .prices .off {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .content-main .slider-products .slider-details .prices .off-price {
    font-size: 18px;
  }
  .content-main .slider-products .slider-details .prices .main-price {
    font-size: 30px;
  }
  .content-main .slider-products .slider-details .prices .off-price::after {
    top: 8px;
  }
  .content-main .slider-products .slider-details .introduction {
    font-size: 14px;
    width: 100%;
    margin-top: 15px;
  }
  .content-main .slider-products .slider-details .desc-product {
    font-size: 11px;
    line-height: 25px;
  }
  .content-main .slider-products .slider-details .desc-product {
    height: 100px;
    overflow: hidden;
  }
  .content-main .slider-products .slider-details .options-detail {
    flex-direction: column;
  }
  .content-main .slider-products .slider-details .op-list {
    justify-content: space-between !important;
    width: 100%;
  }
  .content-main .slider-products .slider-details .op-item {
    width: 33.33%;
    margin: 0;
    flex-direction: column;
    text-align: center;
  }
  .content-main .slider-products .slider-details .op-item > i {
    font-size: 25px;
    margin: 0 0 10px;
  }
  .content-main .slider-products .slider-details .op-item .desc {
    width: 100%;
    text-align: center;
  }
  .content-main .slider-products .slider-details .btn-more {
    width: 100%;
    height: 45px;
    margin-top: 20px;
  }
  .content-main .sec-catagories .box-ctg {
    margin-top: 25px;
    height: 100px;
    padding: 20px;
  }
  .content-main .sec-catagories .box-ctg .text-ctg {
    padding-left: 100px;
  }
  .content-main .sec-catagories .box-ctg .title {
    font-size: 16px;
  }
  .content-main .sec-catagories .box-ctg .desc {
    font-size: 11px;
  }
  .content-main .sec-catagories .box-ctg .image-ctg {
    height: 100px;
  }
  .content-main .sec-catagories .box-ctg .btn-more {
    width: 50px;
    height: 30px;
    font-size: 20px;
    bottom: 10px;
    left: 10px;
  }
  .content-main .sec-catagories {
    margin: 0 0 50px;
  }
  .head-sec-bookcycle {
    flex-direction: column;
  }
  .head-sec-bookcycle .details-head {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .head-sec-bookcycle .details-head .cycle {
    margin-bottom: 15px;
    transform: rotate(-150deg);
  }
  .head-sec-bookcycle .details-head .title {
    font-size: 20px;
  }
  .head-sec-bookcycle .details-head .desc {
    font-size: 12px;
  }
  .head-sec-bookcycle .btn-viewall {
    margin-top: 20px;
    font-size: 12px;
    margin-left: -5px;
  }
  .head-sec-bookcycle .btn-viewall > i {
    font-size: 20px;
    margin-right: 5px;
  }
  .content-main .sec-products .swiper-catagory .swiper-button-next::after,
  .content-main .sec-products .swiper-catagory .swiper-button-prev::after {
    color: var(--lightmain);
    font-size: 20px;
  }
  .content-main .sec-products .prd-catagory .swiper-catagory {
    height: auto;
    padding: 15px 50px;
  }
  .content-main .sec-products .swiper-catagory .swiper-button-next,
  .content-main .sec-products .swiper-catagory .swiper-button-prev {
    top: 30%;
  }
  .content-main .sec-products .swiper-catagory .swiper-button-next {
    left: auto;
    right: 10px;
    transform: rotate(90deg);
  }
  .content-main .sec-products .swiper-catagory .swiper-button-prev {
    right: auto;
    left: 10px;
    transform: rotate(90deg);
  }
  .head-sec-bookcycle {
    margin-bottom: 20px;
  }
  .content-main .sec-products .prd-catagory .item-ctgprd {
    height: 80px;
  }
  .content-main .sec-products .prd-catagory .item-ctgprd > i {
    font-size: 22px;
  }
  .content-main .sec-products .prd-catagory .item-ctgprd .title {
    font-size: 12px;
    margin-top: 10px;
  }
  .content-main .sec-products .list-products .row {
    margin-top: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .content-main .sec-products .list-products .item-prd-bookcycle.col-lg-2 {
    max-width: 70%;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
  }
  .content-main .sec-special-offer {
    margin: 50px 0;
    height: auto;
  }
  .title-sec-special {
    height: auto;
    padding: 30px 15px 0;
    text-align: center;
  }
  .title-sec-special .title {
    font-size: 30px;
  }
  .title-sec-special .title > strong {
    font-size: 25px;
    display: inline-block;
  }
  .title-sec-special .desc {
    margin: 15px 0;
  }
  .title-sec-special .btn-viewall {
    justify-content: center;
  }
  .content-main .sec-special-offer .head-special .countdown .title {
    display: none;
  }
  .content-main .sec-special-offer .head-special {
    justify-content: space-between;
  }
  .content-main .sec-used-books {
    padding-top: 320px !important;
  }
  .content-main .sec-used-books .used-image .image-box {
    justify-content: center;
  }
  .content-main .sec-used-books .used-image .image-box::before {
    width: 350px;
    height: 350px;
    border-width: 40px;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle {
    right: 25%;
    transform: scale(0.8);
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(2) {
    top: -200px;
    right: 85%;
    transform: scale(0.7);
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(4) {
    right: 18%;
    transform: scale(0.5);
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(5) {
    right: -170px;
    transform: scale(0.6);
  }
  .content-main .sec-used-books .used-image .image-box .circular-used {
    width: 70px;
    height: 70px;
  }
  .content-main .sec-used-books .used-image .image-box .circular-used .text {
    width: 85px;
  }
  .content-main .sec-used-books .used-image .image-box .circular-used .logo {
    width: 25px;
    height: 25px;
  }
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(3),
  .content-main .sec-used-books .used-image .item-prd-bookcycle:nth-child(6) {
    display: none;
  }
  .content-main .sec-used-books .used-details {
    padding-top: 250px;
    padding-right: 15px;
  }
  .content-main .sec-used-books .used-details .publisher .text {
    font-size: 16px;
  }
  .content-main .sec-used-books .used-details .title-main {
    font-size: 40px;
  }
  .content-main .sec-used-books .used-details .sub-title {
    font-size: 16px;
  }
  .content-main .sec-used-books .used-details .desc-product {
    font-size: 11px;
    line-height: 25px;
  }
  .content-main .sec-used-books .used-details .btn-more {
    width: 100%;
    height: 45px;
  }
  .content-main .sec-banners {
    margin: 0;
  }
  .content-main .sec-banners .swiper-banners {
    padding: 50px 20px;
  }
  .content-main .sec-banners .arrows-banners .swiper-button-prev,
  .content-main .sec-banners .arrows-banners .swiper-button-next {
    top: 57%;
  }
  .content-main .sec-banners .arrows-banners .swiper-button-prev {
    left: 5px;
  }
  .content-main .sec-banners .arrows-banners .swiper-button-next {
    right: 5px;
  }
  .content-main .sec-banners .arrows-banners .swiper-button-prev::after,
  .content-main .sec-banners .arrows-banners .swiper-button-next::after {
    font-size: 20px;
    color: var(--goldcolor);
  }
  .content-main .sec-articles {
    margin: 50px 0;
  }
  .content-main .sec-articles .head-sec-bookcycle {
    margin-bottom: 30px;
  }
  .content-main .sec-articles .row {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .content-main .sec-articles .item-news {
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%;
  }
  .content-main .sec-services {
    margin: 50px 0;
  }
  .content-main .sec-services .box-service {
    margin-bottom: 15px;
  }
  .content-main .sec-services .box-service .title {
    font-size: 18px;
  }
  .content-main .sec-services .box-service .desc {
    font-size: 13px;
  }
  .content-main .sec-publishers::before,
  .content-main .sec-publishers::after {
    display: none;
  }
  .content-main .sec-publishers .list-publishers .item-pbl {
    margin: 0 15px;
  }
  .content-main .sec-publishers .list-publishers .item-pbl > img {
    height: 60px;
  }
  .footer-main .footer-info {
    margin-top: 150px;
    padding: 0 0 30px;
  }
  .footer-main .footer-info::before {
    width: 100%;
    right: 0;
    transform: rotate(0);
  }
  .footer-main .footer-info::after {
    content: "";
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background: linear-gradient(#4A68B0, #4A68B0) padding-box, linear-gradient(0deg, rgba(215, 181, 109, 0.2) 0%, rgba(74, 104, 176, 0) 70%, rgba(74, 104, 176, 0) 100%) border-box;
    border: 35px solid transparent;
    transform: rotate(65deg);
    flex-shrink: 0;
    position: absolute;
    left: 0;
    top: 95px;
    z-index: 5;
    display: none;
  }
  .footer-main .footer-info > .container::after {
    width: 300px;
    height: 300px;
  }
  .footer-main .footer-info .head-info .image-logo > img {
    width: 200px;
  }
  .footer-main .footer-info .head-info .title-site {
    font-size: 15px;
  }
  .footer-main .footer-info .circular-goto {
    top: -120px;
    left: 40%;
  }
  .footer-main .footer-info .head-info {
    flex-direction: column;
  }
  .footer-main .footer-info .contact-info {
    margin: 20px 0 0;
    align-items: center;
    text-align: center;
  }
  .footer-main .footer-info .contact-info .support {
    font-size: 16px;
  }
  .footer-main .footer-info .contact-info .address {
    font-size: 14px;
    margin-top: 5px;
  }
  .footer-main .footer-info .about-site {
    margin: 30px 0;
    font-size: 14px;
    line-height: 30px;
  }
  .footer-main .footer-info .important-links .item-imp {
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
  }
  .footer-main .footer-info .important-links .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .footer-main .footer-info .important-links .list-imp .link-imp {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .footer-main .footer-info .certificates {
    padding: 0 15px;
    margin-top: 30px;
  }
  .footer-main .footer-info .important-links .row {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .footer-main .footer-info .certificates .list-cert {
    justify-content: center;
  }
  .footer-main .footer-info .certificates .list-cert .item-cert {
    width: 30%;
    height: 120px;
  }
  .footer-main .footer-info .certificates .list-cert .item-cert > img {
    height: 80px;
  }
  .footer-main .footer-info .socials .title {
    font-size: 14px;
  }
  .footer-main .footer-info .socials .list-sc .item-sc {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    font-size: 18px;
  }
  .footer-main .footer-copyright {
    margin-bottom: 60px;
  }
  .footer-main .footer-copyright .cpt-designer::before {
    width: 130%;
    top: 40px;
    left: -70px;
  }
  .footer-main .footer-copyright .cpt-designer .text-cpt {
    font-size: 12px;
    margin-top: 52px;
  }
  .footer-main .footer-copyright .cpt-designer .text-cpt > i {
    font-size: 18px;
  }
  .footer-main .footer-copyright .cpt-website::before {
    width: 130%;
    top: 80px;
    right: -70px;
  }
  .footer-main .footer-copyright .cpt-website .text-cpt {
    font-size: 12px;
    display: block;
  }
  .footer-main .footer-copyright .cpt-website .text-cpt {
    margin-top: 30px;
  }
  .content-main .sec-products::before,
  .content-main .sec-used-books::before,
  .content-main .sec-articles::before {
    display: none;
  }
  /*--------------------------- Product Page ----------------------------*/
  .content-pages {
    position: relative;
    padding-top: 30px;
  }
  .sec-breadcrumb {
    margin-bottom: 20px;
  }
  .outer-breadcrumb {
    flex-direction: column;
  }
  .outer-breadcrumb .breadcrumb {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-top: 6px;
    padding-bottom: 10px;
  }
  .outer-breadcrumb .breadcrumb .breadcrumb-item {
    flex-shrink: 0;
  }
  .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 .btn-share-page {
    margin-top: 15px;
    font-size: 11px;
  }
  .sec-features-book .row-features {
    margin: 0;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: scroll;
    /* display: inline-block; */
    width: 100%;
  }
  .sec-other-contents .tab-contents {
    padding: 20px;
    border-radius: 30px;
    /*margin-top: 40px;*/
    margin-bottom: 50px;
  }
  .sec-other-contents .tab-contents .head-sticky {
    flex-direction: column;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    padding: 15px;
  }
  .sec-other-contents .head-sticky .list-tabs {
    margin-bottom: 15px;
    gap: 25px;
    overflow-x: auto;
    width: 100%;
  }
  .sec-other-contents .head-sticky .list-tabs .item-tab {
    font-size: 11px;
    padding: 10px 0;
    flex-shrink: 0;
  }
  .sec-other-contents .head-sticky .list-tabs .item-tab.active {
    padding: 10px 15px;
    border-radius: 12px;
  }
  .rating-book {
    gap: 10px;
  }
  .sec-other-contents .tab-contents .row-head-between {
    margin-bottom: 30px;
  }
  .sec-other-contents .tab-contents .title-head-section {
    font-size: 12px;
    margin: 0 0 30px;
  }
  .sec-other-contents .tab-contents .box-desc .btn-more-description, .sec-other-contents .tab-contents .row-head-between .desc-head-section {
    font-size: 11px;
  }
  .sec-other-contents .tab-comments .box-comment, .sec-news-details .content-news .box-comment, .sec-profile-page .box-outer-profile .box-comment {
    flex-direction: column;
    padding: 15px;
    border-radius: 16px;
    gap: 20px;
  }
  .sec-other-contents .tab-comments .details-comment, .sec-news-details .content-news .details-comment, .sec-profile-page .box-outer-profile .details-comment {
    padding: 0;
    width: 100%;
  }
  .sec-other-contents .tab-comments .details-comment .head, .sec-news-details .content-news .details-comment .head, .sec-profile-page .box-outer-profile .head {
    padding: 0 0 10px;
    flex-direction: column;
  }
  .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 {
    margin-bottom: 5px;
  }
  .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: 40px;
    height: 40px;
  }
  .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: 12px;
  }
  .sec-other-contents .tab-comments .details-comment .user-info .status, .sec-news-details .content-news .details-comment .user-info .status {
    font-size: 11px;
  }
  .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: 10px;
    line-height: 20px;
    margin: 10px 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 {
    flex-direction: column;
    align-items: flex-start;
  }
  .sec-other-contents .tab-comments .details-comment .btn-answer, .sec-other-contents .tab-comments .details-comment .viewpoint .text, .sec-news-details .content-news .details-comment .btn-answer, .sec-news-details .content-news .details-comment .viewpoint .text, .sec-profile-page .box-outer-profile .details-comment .btn-answer, .sec-profile-page .box-outer-profile .details-comment .viewpoint .text {
    font-size: 11px;
  }
  .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: 14px;
  }
  .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 {
    gap: 30px;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }
  .sec-other-contents .tab-comments .details-comment .btn-answer, .sec-other-contents .tab-comments .details-comment .viewpoint .text, .sec-news-details .content-news .details-comment .btn-answer, .sec-news-details .content-news .details-comment .viewpoint .text, .sec-profile-page .box-outer-profile .details-comment .btn-answer, .sec-profile-page .box-outer-profile .details-comment .viewpoint .text {
    font-size: 11px;
  }
  .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 {
    gap: 20px;
  }
  .sec-other-contents .tab-comments .result-ratings {
    width: 100%;
    gap: 0;
    padding: 0;
  }
  .sec-other-contents .tab-comments .result-ratings .item-rate {
    width: 100%;
    padding: 15px;
  }
  .sec-other-contents .tab-comments .result-ratings .rating-book {
    gap: 5px;
  }
  .sec-other-contents .tab-comments .result-ratings .br-theme-bars-book .br-widget {
    width: 70px;
  }
  .sec-other-contents .tab-comments .result-ratings .br-theme-bars-book .br-widget a {
    width: 3.5px;
    height: 3.5px;
    margin: 0 2px;
  }
  .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 {
    font-size: 16px;
  }
  .sec-other-contents .tab-comments .result-ratings .rating-book .counts .slash {
    font-size: 12px;
  }
  .sec-other-contents .tab-comments .row-add-comment, .sec-news-details .content-news .row-add-comment {
    flex-direction: column-reverse;
  }
  .sec-other-contents .tab-comments .row-add-comment .rating-form, .sec-news-details .content-news .row-add-comment .rating-form {
    width: 100%;
  }
  .sec-other-contents .tab-comments .row-add-comment .bottom-form, .sec-news-details .content-news .row-add-comment .bottom-form {
    flex-direction: column;
    gap: 20px;
  }
  .rating-book .title-rating {
    font-size: 10px;
  }
  .sec-other-contents .tab-contents hr.spacing {
    margin: 30px 0;
  }
  .sec-other-contents .tab-specification .row-specif {
    gap: 10px 0;
  }
  .sec-other-contents .tab-specification .box-specif {
    padding: 15px;
    border-radius: 16px;
  }
  .sec-other-contents .tab-specification .box-specif .label, .sec-other-contents .tab-specification .box-specif .text {
    font-size: 12px;
  }
  .sec-other-contents .tab-faqlist .list-accordian .accordion-item {
    margin-bottom: 10px;
  }
  .accordion-item .accordion-header {
    padding: 15px;
  }
  .accordion-item .accordion-header .title {
    font-size: 12px !important;
    line-height: 1.5;
  }
  .accordion-item .accordion-header .box-icon {
    font-size: 16px !important;
  }
  .sec-other-contents .tab-comments .item-comment, .sec-news-details .content-news .item-comment {
    margin-bottom: 15px;
  }
  .rating-book .counts .all, .rating-book .counts .value {
    font-size: 20px;
  }
  .rating-book .counts .slash {
    font-size: 16px;
  }
  .rating-book .counts .all, .rating-book .counts .value {
    font-size: 20px;
  }
  /*---------------------------- Box Product --------------------------*/
  .box-product-book {
    height: 460px;
    gap: 20px;
  }
  .box-product-book .image {
    height: 350px;
  }
  .box-product-book .content .title a {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .box-product-book .content .details-box {
    height: auto;
  }
  .box-product-book .content .details-box .desc {
    font-size: 12px;
    line-height: 22px;
  }
  .box-product-book .features {
    padding: 15px;
    height: 130px;
  }
  .box-product-book .features .item-fts .sub-title, .box-product-book .options .price .pr-title {
    font-size: 12px;
  }
  .box-product-book .options .price .pr-number {
    font-size: 25px;
  }
  .box-product-book .content .weather .status, .box-product-book .options .price .pr-number .unit, .box-product-book .features .item-fts .text, .sec-free-support .box-banner-book .form .btn-send-book {
    font-size: 14px;
  }
  .box-product-book .options .btns-option .btn-prd {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    font-size: 20px;
  }
  /*-------------------------- Fixed cart product --------------------------*/
  .fixed-cart-product {
    padding: 20px 15px;
  }
  .fixed-cart-product .row {
    flex-direction: column;
    align-items: center;
  }
  .fixed-cart-product .about-product .image,
  .fixed-cart-product .about-product .content {
    display: none;
  }
  .fixed-cart-product .details-option {
    width: 100%;
    justify-content: space-between;
  }
  .fixed-cart-product .details-option .options .offer {
    display: none;
  }
  .fixed-cart-product .details-option .counter {
    padding: 0 10px;
  }
  .fixed-cart-product .details-option .counter .bsh-count {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
  .fixed-cart-product .details-option .counter .number {
    width: 25px;
    font-size: 14px;
  }
  .fixed-cart-product .details-option .btn-add-cart {
    padding: 0 15px;
  }
  .tabs-footer {
    display: flex;
  }
  .tabs-footer .item-tabft {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
  }
  .tabs-footer .item-tabft.side-link {
    width: 40%;
    font-size: 13px;
    font-weight: 600;
    color: var(--darkcolor);
  }
  .tabs-footer .item-tabft.cart-link {
    width: 20%;
    font-size: 11px;
    font-weight: 600;
    color: var(--darkcolor);
  }
  .tabs-footer .item-tabft.cart-link .box-icon {
    position: relative;
    background-color: var(--maincolor);
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--whitecolor);
    margin-top: -25px;
    margin-bottom: 5px;
  }
  .tabs-footer .item-tabft.cart-link .box-icon .count {
    background-color: var(--yellowcolor);
    width: 20px;
    height: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    position: absolute;
    top: -3px;
    right: 1px;
    z-index: 10;
    color: var(--subcolor);
  }
  .product-detail-wrapper {
    padding: 0 10px;
  }
  .content-pages .sec-header-product .details-product {
    padding: 20px 0;
  }
  .content-pages .sec-header-product .details-product .head-title-row .title {
    font-size: 14px;
  }
  .content-pages .sec-header-product .details-product .head-title-row .btn-more {
    font-size: 13px;
  }
  .content-pages .sec-header-product .details-product .product-name {
    font-size: 18px;
    line-height: 35px;
  }
  .sec-features-book .box-fts {
    width: 85%;
    flex-grow: 1;
    flex-basis: auto;
    flex-shrink: 0;
    margin-left: 10px;
  }
  .sec-contact-book .contact-form {
    padding: 20px 15px 20px 15px;
  }
  .sec-other-contents .tab-comments .form-comment .btn-send-form, .sec-news-details .content-news .form-comment .btn-send-form {
    width: 100%;
  }
  .sec-other-contents .tab-contents .head-normal {
    margin-bottom: 30px;
  }
  .content-main .send-address .box-select-address .item-ads, .content-main .box-select-send .list-sends .radio-snd {
    width: 100%;
    margin-left: 0;
  }
  .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;
  }
  .confirm-order .offer-code .input-group {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .mobile-user-menu-wrapper {
    position: relative;
  }
  .mobile-user-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 200px;
  }
  .mobile-user-dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-user-dropdown-menu ul li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
  }
  .mobile-user-dropdown-menu ul li a:hover {
    background: #f2f2f2;
  }
  .autocomplete-suggestions {
    left: 0 !important;
    display: block;
    width: calc(100% - 20px) !important;
    margin: 3px 10px;
  }
  .popup-box {
    max-width: 95%;
    padding: 15px 10px;
  }
}