:root {
  --blue: #0769be;
  --white-blue: #f4fafe;
}

@font-face {
  font-family: fontl;
  src: url(../font/light.woff) format("woff"),
    url(../font/light.woff2) format("woff2");
}

@font-face {
  font-family: fontbold;
  src: url(../font/bold.woff2) format("woff2"),
    url(../font/bold.woff) format("woff");
  font-display: swap;
}

@font-face {
  font-family: fontmedium;
  src: url(../font/regular.woff2) format("woff2"),
    url(../font/regular.woff) format("woff");
  font-display: swap;
}

@keyframes alarm {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

html,
body,
div,
a,
p,
input,
textarea,
select,
label,
li,
ul,
ol,
blockquote,
noscript,
button,
abbr,
article,
aside,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
details,
summary,
dialog,
dt,
dd {
  font: medium fontmedium;
  outline: none !important;
  scroll-behavior: smooth;
}

b,
strong {
  font-family: fontbold;
  font-weight: normal;
}

a {
  color: currentColor;
  transition: 0.2s;
}

a:focus,
a:hover {
  color: currentColor;
  text-decoration: none;
}

section div a p {
  direction: rtl;
  text-align: right;
}

section {
  margin-bottom: 60px;
}

.container {
  max-width: 1214px;
}

#page {
  position: relative;
  padding-top: 2rem;
}

#page:before {
  content: "";
  position: absolute;
  inset: 0;
  bottom: auto;
  width: 100%;
  height: 4rem;
  background: var(--blue);
  z-index: -1;
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media screen and (max-width: 992px) {
  #page {
    padding-top: 0;
  }

  .container {
    max-width: 960px;
  }
  #page:before {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media screen and (max-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/*
    Header
*/

.bannerHeader img{
  border-radius: .5rem;
}

.header_container {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0px 16px 16px rgba(227, 242, 252, 0.32);
  border-radius: 2rem;
  z-index: 3;
  position: relative;
}

.logo_area {
  margin-left: auto;
}

.logo_area img {
  max-width: 50px;
  max-height: 100%;
  object-fit: contain;
}

.search_area {
  width: 40%;
  margin-left: 1rem;
}

.store_modal {
  width: 285px;
  margin-left: 0.5rem;
  position: relative;
}

.store_modal.first_one {
  border: 1px solid transparent;
  animation: firsOneKeyframe 0.3s ease-in-out infinite alternate;
  position: relative;
}

.store_modal.first_one:after {
  content: 'از این قسمت میتوانید شعبه نزدیک به خود را انتخاب کنید';
  position: absolute;
  background: #ef394e;
  color: white;
  padding: 1rem .5rem;
  border-radius: .5rem;
  width: 100%;
  top: 115%;
  right: 0;
}

.store_modal.first_one:before {
  content: '';
  position: absolute;
  top: 103%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ef394e;
  right: 0;
  left: 0;
  margin: 0 auto;
}

@keyframes firsOneKeyframe {
  from {
    border-color: transparent;
  }
  to {
    border-color: #ef394e;
  }

}

.store_modal.selected{
  background: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 !important;
}

.store_modal.selected > img:first-of-type {
  animation: alarm 1s infinite alternate-reverse;
}

#product-q-list {
  padding: 0;
  display: none;
  background: var(--white-blue);
  z-index: 3;
  position: absolute;
  list-style: none;
  width: 100%;
  margin-bottom: 0;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 0 0 16px 16px;
  top: 56px;
}


#q-search,
.store_modal {
  background: var(--white-blue);
  border: none;
  padding: 0 0.5rem;
  min-height: 56px;
  border-radius: 1rem;
  color: var(--blue);
  text-align: right;
}

#q-search::placeholder {
  color: var(--blue);
  opacity: 1;
}

#q-search {
  border-radius: 1rem 0 0 1rem;
  padding: 0 1.5rem;
}

.search_button,
.store_modal .icon {
  position: absolute;
  inset: 0;
  right: auto;
  left: 8px;
  margin: 8px 0;
  padding: 8px 10px;
  background: #ffffff;
  box-shadow: 0px 0px 1rem #e3f2fc;
  border-radius: 1rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.information_store_modal {
  padding: 0;
  border: none;
  background: none;
}

.login_area {
  margin-right: auto;
}

.login_area,
.basket_area .box,
.mobile_menu {
  padding: 0 1rem;
  border-radius: 1rem;
  gap: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-blue);
  margin-left: 0.5rem;
  color: var(--blue);
  position: relative;
}

.basket_area .count_basket {
  border-radius: 7px;
  position: absolute;
  top: -9px;
  right: -4px;
  width: 20px;
  height: 20px;
  color: var(--blue);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: large;
  border: 1px solid var(--blue);
  line-height: 20px;
  cursor: pointer;
}

.modal-open #store_modal.modal {
  overflow:hidden;
}

#store_modal .modal-content {
  border: none;
  border-radius: 1rem;
  overflow: auto;
}

#store_modal .modal-header {
  color: #616161;
  border: none;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

#store_modal .modal-header::after {
  content: '';
  width: 90%;
  height: 1px;
  background: #616161;
  position: absolute;
  inset: 0;
  top: auto;
  margin: auto;
  bottom: 0;
}

#store_modal .modal-body {
  padding: 0;
  max-height: 80vh;
  overflow: auto;
}


.seller_box {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 1rem;
  margin: 0;
}

.seller_item {
  flex: 1 1 calc((100% / 3) - 1rem) ;
  border-radius: 16px;
  background: #E3F2FC;
  color: var(--blue);
  text-align: center;
  padding: 1rem 0;
  cursor: pointer;
  transition: .2s;
}

.seller_item:hover , .seller_item.selected {
  background: var(--blue);
  color: #E3F2FC;
}

.stores_page .seller_item {
  flex: 1 1 calc((100% / 5) - 1rem) ;
}

.auto_item {
  margin-bottom: 5px;
  color: var(--blue);
}

.auto_item .auto_item_link {
  padding: 5px 10px;
  display: flex;
  align-items: center;
}

.auto_img img {
  width: 100%;
  border-radius: 5px;
  object-fit: contain;
  border: 1px solid var(--blue);
}

.auto_title {
  width: calc(100% - 50px);
}

.auto_img {
  width: 40px;
  margin-left: 10px;
}

.add_to_cart_dropdown {
  width: 330px;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  left: 0;
  top: calc(100% - 10px) !important;
  right: unset;
  display: none;
  padding: 0 0 45px;
  line-height: 22px;
  border: 0;
  border-radius: 3px;
  overflow: hidden;
}

.cart_summary_list {
  max-height: 293px;
  overflow: auto;
  padding: 0 15px;
  list-style: none;
}

.mini_cart_footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid #eee;
  position: absolute !important;
  bottom: 0;
  left: 0;
  right: 0;
}

.cart_summary_list_item_content {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 100%;
  color: black;
}

.cart_summary_list_item_img {
  display: inline-flex;
  align-items: center;
  width: 75px;
  height: 75px;
  justify-content: center;
  flex: 0 0 75px;
  max-width: 75px;
  position: relative;
  border-radius: 3px;
}

.cart_summary_list_item_detail {
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.mini_cart_img {
  max-width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: contain;
}

.cart_summary_list_item_params {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 12px;
}

.cart_summary_list_item_remove {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 50%;
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border: none;
  z-index: 2;
  cursor: pointer;
}

.cart_summary_list_item_remove::before {
  content: "\f1f8";
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  color: var(--blue);
  width: 14px;
  height: 14px;
  background-size: 100%;
  position: absolute;
  top: 0;
  right: 3px;
}

.cart_summary_list_item_submit {
  font-size: small;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: var(--blue);
  text-align: center;
  padding-top: 9px;
  padding-bottom: 10px;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart_summary_list li:first-child {
  display: none;
}

.cart_basket_link {
  background: var(--blue);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  bottom: 0;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  transition: background-color 0.3s ease-in-out;
  align-items: center;
  color: #ffffff !important;
  width: 40%;
}

.cart_summary_list li:not(:last-child) {
  border-bottom: 1px solid #ffb35a;
}

.cart_summary_list_item:first-child {
  border-bottom: 0;
}

.cart_summary_list_item {
  padding: 10px 0 10px 0;
  position: relative;
  min-height: 88px;
  display: block;
  border-bottom: 1px solid #f0f0f0;
}

.cart_summary_header_total {
  font-size: small;
}

.cart_summary_header_total span:first-child {
  color: var(--gray);
  font-size: medium;
  font-family: fontbold;
  margin: 0 4px;
}

.empty_mini_cart {
  width: 190px;
  text-align: center;
  padding: 25px 0;
}

.empty_mini_cart img {
  max-width: 60%;
  object-fit: contain;
}

.empty_mini_cart p {
  margin-bottom: 0px;
  margin-top: .5rem;
  font-family: fontbold;
}

.navigation_container {
  max-width: 980px;
  background: #ebf6fd;
  border-radius: 0 0 1rem 1rem;
  padding: 0;
  margin-bottom: 2rem;
}

.navigation_container ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.navigation_container > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.navigation_container > ul a {
  display: block;
  transition: 0.2s;
}

.navigation_container > ul > li,
.navigation_container > ul > li > ul > li,
.navigation_container > ul > li > ul > li > ul > li {
  padding: 0.5rem 0;
}

.navigation_container > ul > li > a {
  color: #90ccf7;
  font-family: fontbold;
  padding: 0.5rem;
  display: block;
  border-bottom: 2px solid transparent;
}

.navigation_container > ul > li:hover > a {
  color: var(--blue);
  border-color: var(--blue);
}

.navigation_container > ul > li:hover > ul {
  display: flex;
}

.navigation_container > ul > li > ul,
.navigation_container > ul > li > ul > li > ul {
  display: none;
  position: absolute;
  inset: 0;
  top: calc(100% + 1rem);
  bottom: 0;
  width: 100%;
  height: max-content;
  /*background: white;*/
  border-radius: 1rem;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0 100px;
}

.navigation_container > ul > li > ul:before {
  content: "";
  position: absolute;
  top: calc(-100% + 1rem);
  width: 100%;
  background: #ebf6fd;
  height: 200%;
  z-index: -5;
  border-radius: 0 0 1rem 1rem;
}

.navigation_container > ul > li > ul:after {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - 200px);
  height: 100%;
  z-index: -5;
  background: white;
  border-radius: 1rem;
  margin: auto;
}

.navigation_container > ul > li > ul > li > a {
  padding: 0.5rem 0;
  color: var(--blue);
  border-bottom: 1px solid transparent;
  width: max-content;
}

.navigation_container > ul > li > ul > li:hover > a {
  border-color: var(--blue);
}

.navigation_container > ul > li > ul > li:hover > ul {
  display: flex;
}

.navigation_container > ul > li > ul > li > ul > li {
  max-width: calc((100% / 4) - 35px);
  flex: 1 1 calc((100% / 4) - 35px);
}

.navigation_container > ul > li > ul > li > ul {
  align-items: flex-start;
}

.navigation_container > ul > li > ul > li > ul:before {
  content: "";
  position: absolute;
  top: -1rem;
  width: 100%;
  background: #ebf6fd;
  height: calc(100% + 2rem);
  z-index: -5;
  border-radius: 0 0 1rem 1rem;
}

.navigation_container > ul > li > ul > li > ul:after {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(100% - 200px);
  height: 100%;
  z-index: -5;
  background: white;
  border-radius: 1rem;
  margin: auto;
}

.navigation_container > ul > li > ul > li > ul > li > a {
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  position: relative;
  padding: 0.5rem 15px 0.5rem 0;
  min-width: max-content;
  overflow-y: auto;
}

.navigation_container > ul > li > ul > li > ul > li > a:before {
  content: "";
  position: absolute;
  background: #07beb8;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  inset: 0;
  left: auto;
  margin: auto 0;
}

.navigation_container > ul > li > ul > li > ul > li > ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #bbdffa;
  margin-top: 1rem;
}

.navigation_container > ul > li > ul > li > ul > li > ul > li:hover > a {
  color: var(--blue);
}

.navigation_container > ul > li > ul > li > ul > li > ul > li > ul {
  display: none;
}

.mobile_menu {
  display: none;
  margin-left: 0;
  color: white !important;
}

.dSearch {
  background: var(--blue);
  border-radius: 17px;
  margin-left: -15px;
  border: none;
  border-left: 3px solid #FFFFFF;
  padding: 0 1rem;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dSearch::after {
  margin-right: 1rem;
  margin-left: 0px;
}

#header-search {
  display: flex;
  position: relative;
}


.entity_search_header .dropdown-menu input {
  display: none;
}

@media screen and (max-width:992px) {
  
  .modal-open #store_modal.modal {
    width: 100vw;
    height: 85vh;
  }

  #store_modal .modal-dialog {
    margin: 0;
  }

  #store_modal .modal-content {
    height: 100%;
  }

  #store_modal .modal-body {
    max-height: 100%;
  }

  .navigation_container {margin-bottom: 0;}

  .mobile_menu {
    display: flex;
    justify-content: flex-start;
    order: 1;
  }

  .logo_area {
    order: 2;
    flex: 0 0 60%;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo_area img {
    max-height: 50px;
  }

  .search_area {
    order: 5;
    flex: 1 1 100%;
    padding: .5rem 0;
    margin: .5rem 0;
    border-bottom: 1px solid var(--white-blue);
    border-top: 1px solid var(--white-blue);
  }

  .login_area {
    order: 3;
    margin-left: 0;
    margin-right: 0;
  }

  .login_area > span {
    display: none;
  }

  .stores_page .seller_item {
    flex: 1 1 calc((100% / 2) - 1rem) ;
  }

  .login_area, .basket_area .box, .mobile_menu {
    flex: 1 0 10%;
    background: none;
    padding: 0;
  }

  .basket_area {
    order: 4;
  }
  

  .basket_area .box {
    margin-left: 0;
  }

  .store_modal {
    order: 6;
    flex: 1 1 80%;
    margin-left: 0;
    background: none;
    padding-right: 4rem;
  }

  .store_modal .icon {
    left: auto;
    right: 8px;
  }

  .search_button, .store_modal .icon {
    background: var(--white-blue);
    box-shadow: none;
    margin: 0;
  }

  .search_button {
    padding: 0;
    left: 15px;
  }

  .information_store_modal {
    order: 7;
  }

  .header_container {
    flex-wrap: wrap;
    padding: 0.5rem 15px ;
    margin-bottom: 1.5rem;
    align-items: center;
    border-radius: 0;
    border-bottom: 1px solid var(--white-blue);
    box-shadow: none;
  }

  .navigation_container:not(.mm-menu) {
    max-height: 0;
    max-width: 0;
    overflow: hidden;
  }

  #q-search, .store_modal {
    min-height: 45px;
  }
}


.mm-menu.mm-offcanvas {
  width: 285px !important;
  min-width: 285px !important;
  background: #ffffff;
  box-shadow: -2px 0 4px 0 rgba(0, 0, 0, 0.13);
}

.mm-listview > li > a {
  font-size: 14px;
  line-height: 1.571;
  color: #757575;
  padding: 15px 54px 15px 15px !important;
  position: relative;
  display: block;
}

.mm-listview > li:not(.mm-divider)::after {
  content: none;
}

.mm-panels > .mm-panel > .mm-listview {
  margin: 0;
}

.mm-navbars-top {
  border: 0;
  height: 100px;
  border-bottom: 1px solid #e5e5ea;
  background: url("../../../../file/logos/logo.png") no-repeat 50% 30%;
  background-size: auto;
  background-size: auto 43px;
  margin: 0 25px 0 29px;
}

.mm-panels {
  margin-top: 50px;
}

.mm-hasnavbar-top-1 .mm-panels {
  top: 50px;
}

.mm-navbar {
  top: 60px;
}

.mm-listview > li {
  display: flex;
}

.mm-listview .haschild li {
  flex-direction: row-reverse;
}

/*
    sliderWrapper
*/

/*.sliderAndContent {*/
/*    padding-bottom: 30px;*/
/*}*/

.sliderAndContent .sliderWrapper {
  width: 780px;
  height: 100%;
  margin-right: 0;
}

.sliderAndContent .sliderAndContentBox {
  display: flex;
  height: 450px;
}

.sliderAndContent .sliderItem {
  height: 100%;
  display: block;
}

.sliderAndContent .sliderItemImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 17px;
}

.sliderAndContent .contentWrapper {
  width: calc(100% - 812px);
}

.contentWrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.sliderAndContent .linkWrapper {
  display: flex;
  height: calc(50% - 10px);
  width: 100%;
  border-radius: 17px;
}

.sliderAndContent .linkBox {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.sliderAndContent .linkBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 17px;
}

.sliderAndContent .linkInfo,
.sliderAndContent .promotionInfo {
  width: calc(100% - 143px);
  /*position: relative;*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sliderAndContent .linkTitle,
.sliderAndContent .promotionTitle {
  font-family: fontbold;
  margin-bottom: 10px;
  font-size: medium;
}

.sliderAndContent .linkBody {
  font-family: fontl;
  margin-bottom: 10px;
  text-align: justify;
  font-size: small;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.paginationComponent {
  position: unset;
  text-align: left;
  width: 100%;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: #cfd1d2;
  margin-right: 5px;
}

.swiper-pagination .swiper-pagination-bullet-active {
  width: 15px;
  height: 5px;
  background: #808285;
  border-radius: 5px;
}

.sliderAndContent .promotionImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 17px;
}

.sliderAndContent .promotionImage {
  width: 133px;
  height: 185px;
}

.sliderAndContent .promotionBody {
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: fontl;
  text-align: justify;
  font-size: small;
}

.sliderAndContent .promotionInfo {
  padding-right: 10px;
}

.sliderAndContent .promotionInfo:after {
  inset: 0;
  right: 158px;
  position: absolute;
  content: "";
  height: 100%;
  border-right: 2px dashed #e5e5e6;
  width: 2px;
}

.sliderAndContent .promotionBox {
  position: relative;
}

.promotionPrice {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: auto;
}

.promotionPriceDetails {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: auto;
}

.promotionDiscount {
  background: #ff4d4d;
  border-radius: 17px;
  padding: 2px 10px;
  color: white;
  font-size: small;
}

.promotionPrice del {
  color: #424750;
  font-family: fontl;
  margin-bottom: 5px;
  font-size: small;
  text-decoration-color: red;
}

.promotionPrice span {
  color: #00b051;
}

.controlSliderAndContent {
  position: absolute;
  left: 15px;
  bottom: 15px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.controlSliderAndContent .swiper-pagination {
  position: unset;
  margin: 0 4px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 8px;
}

.controlSliderAndContent .swiper-pagination-bullet {
  opacity: 1;
  background: white !important;
}

@media screen and (max-width: 992px) {
  .controlSliderAndContent .swiper-pagination {
    margin: 0;
  }

  .controlSliderAndContent .button-prev,
  .controlSliderAndContent .button-next {
    display: none;
  }

  .sliderAndContent .sliderAndContentBox {
    flex-wrap: wrap;
    height: auto;
    gap: 15px;
  }

  .sliderAndContent .sliderWrapper,
  .sliderAndContent .contentWrapper {
    width: 100%;
  }

  .sliderAndContent .contentWrapper {
    flex-direction: row;
  }

  .sliderAndContent .linkWrapper,
  .sliderAndContent .promotionWrapper {
    width: calc(50% - 10px);
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .sliderAndContent .contentWrapper {
    flex-direction: column;
    gap: 15px;
  }

  .sliderAndContent .linkWrapper,
  .sliderAndContent .promotionWrapper {
    width: 100%;
  }
}

/*
   header component
*/

.headerCarousel .headerCarouselBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid #bbdffa;
}

.headerCarousel .titleHeaderCarousel {
  font-size: medium;
  font-family: fontbold;
  color: var(--blue);
  margin-bottom: 0;
  position: relative;
  padding-right: 15px;
}

.headerCarousel .titleHeaderCarousel:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #bbdffa;
  border-radius: 100%;
  top: calc(50% - 6px);
  right: 0;
}

.headerCarousel .buttonHeaderCarousel, .promotionProductCarouselFooter .buttonHeaderCarousel {
  font-size: small;
  background: var(--blue);
  color: white !important;
  border-radius: 1rem;
  padding: .5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: max-content;
  margin-right: auto;
}

/*
    Edit Admin Btn
*/

.editAdminBtn {
  opacity: 0;
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 5px;
  padding: 5px 10px;
  transition: 0.2s;
  z-index: 1;
}

.editAdminBtn a {
  color: white !important;
  font-size: small;
  font-family: fontbold;
}

:is(
    .fiveBannerItem,
    .aboutBrand,
    .menuFooterArea,
    .menuArea,
    .entity_item,
    .BannerItem,
    .swiper-slide
  ):hover
  .editAdminBtn {
  opacity: 1;
}

.editWidget .editAdminBtn {
  opacity: 1;
  position: unset;
  display: inline-block;
}

.editWidget {
  padding-top: 15px;
  margin-bottom: 10px;
}

/* 
    link slider
*/


.linkSliderContainer {
        margin-top: 2rem;
}

.linkSliderItem {
  gap: .5rem;
}

.linkSliderItem , .linkSliderImgBox {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.linkSliderTitle {
  font-family: fontbold;
  color: var(--blue);
}

/* 
    Entity item
*/

.entity_item {
  padding: 1rem;
  box-shadow: 0px 0px 16px #e3f2fc;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}

.entity_item > a {
  display: flex;
  flex-direction: column;
}

.notProduct .entity_image {
  width: 100%;
  height: 150px;
}

.entity_image_box {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entity_image {
  max-width: 100%;
  width: 180px;
  height: 224px;
  object-fit: contain;
  border-radius: 1rem;
}

.entity_name {
  color: var(--blue);
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: normal;
  font-size: medium;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 50px;
  font-family: fontl;
}

.entity_information {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.entityOriginalPrice {
  padding: 4px 8px;
  background: #F9D2D9;
  border-radius: 16px;
  color: #DF2040;
}

.entityDiscountPercent {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #DF2040;
  color: white;
  border-radius: 8px;
  padding: 0px 5px;
  font-family: fontbold;
}

.entityPrice {
    color: var(--blue);
    font-family: fontbold;
}

.entityPrice small{
    font-family: fontl;
}

@media screen and (max-width:480px) {
  .entityOriginalPrice {
    font-size: x-small;
  }
}

/* 
  banner
*/

.bannerContainer {
  display: flex;
  gap: 2rem;
}

.BannerItem {
  flex: 1 1 auto;
  max-width: 100%;
}

.BannerImg {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width:992px) {
  .bannerContainer {
    flex-wrap: wrap;
  }
}

/* 
  product carusel2
*/

.productsCarousel2 .headerCarousel .headerCarouselBox {
  padding-bottom: 0;
  border-bottom: none;
}

.productsCarousel2 .headerCarousel .titleHeaderCarousel::after {
  content: none;
}

.productsCarousel2 :is(.buttonHeaderCarousel, .titleHeaderCarousel) {
  color: white;
  /* background: var(--backgroundColorWidget); */
  border-radius: 1rem 1rem 0px 0px;
  padding: .5rem 1rem;
  margin-bottom: 0;
  width: max-content;
  font-size: medium;
  font-weight: normal;
  line-height: normal;
}

.productsCarousel2 .titleHeaderCarousel {
  margin-right: 45px;
}

.productsCarousel2 .buttonHeaderCarousel {
  display: none;
  margin-left: 45px;
}


.productsCarousel2 .productsCarouselWrapper {
  /* background: var(--backgroundColorWidget); */
  padding: .5rem;
  border-radius: 2rem;
}

.productsCarousel2 .carouselContainer {
  background: white;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  /* gap: 2rem; */
}

.productsCarousel2 .carouselContainer .banner {
  padding: 14px 14px 14px 0;
}

.productsCarousel2 .carouselContainer .swiper-container {
  flex: 1 1 auto;
  padding: 14px 1rem 14px 0;
  margin: 0 1rem;
  /* width: 100%; */
}

@media screen and (max-width:992px){
  .productsCarousel2 .carouselContainer .banner {
    display: none;
  }

  .productsCarousel2 .carouselContainer {
    overflow: hidden;
  }

  .productsCarousel2 .carouselContainer .swiper-container {
    padding: 0;
    margin: 0 auto;
  }
  .productsCarousel2 .carouselContainer .entity_item {
    box-shadow: none;
  }

  .productsCarousel2 .buttonHeaderCarousel {
    display: block;
  }
}

@media screen and (max-width:576px){

  .productsCarousel2 .titleHeaderCarousel {
    margin-right: 35px;
  }
  
  .productsCarousel2 .buttonHeaderCarousel {
    margin-left: 35px;
  }

  .productsCarousel2 .productsCarouselWrapper {
    border-radius: 0;
    padding: 1rem 15px;
  }
}

@media screen and (max-width:360px){

  .productsCarousel2 .titleHeaderCarousel {
    margin-right: 25px;
  }
  
  .productsCarousel2 .buttonHeaderCarousel {
    margin-left: 25px;
  }
}

/* 
  five banner
*/

.fiveBanner .bannerContainer {
  display: grid;
  grid-template-columns: calc(30% - .75rem) 1rem calc(25% - .75rem) 1rem calc(20% - .75rem) 1rem calc(25% - .75rem);
  grid-template-rows: calc(50% - .5rem) 1rem calc(50% - .5rem);
  gap: unset;
}

.fiveBannerItem:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/4;
}

.fiveBannerItem:nth-child(2) {
  grid-column: 3/6;
  grid-row: 1/2;
}

.fiveBannerItem:nth-child(3) {
  grid-column: 7/8;
  grid-row: 1/2;
}

.fiveBannerItem:nth-child(4) {
  grid-column: 3/4;
  grid-row: 3/4;
}

.fiveBannerItem:nth-child(5) {
  grid-column: 5/8;
grid-row: 3/4;
}


.fiveBannerImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

@media screen and (max-width:768px) {
  .fiveBanner .bannerContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .fiveBanner .fiveBannerItem {
    flex: 1 1 auto;
  }
}

@media screen and (max-width:480px) {
  .fiveBanner .bannerContainer {
    gap: .25rem;
  }
}

/* 
  product carousel promotion
*/

.promotionProductCarouselContainer {
  max-width: max-content;
  min-width: 1148px;
  margin: auto;
  position: relative;
}

.promotionProductCarouselContainer .container {
  border-radius: 2rem;
  border: 10px solid rgba(255, 255, 255, 0.55);
  color: white;
  padding: 23px 2rem;
}

.promotionProductCarouselImg {
  position: absolute;
  right: -6%;
  top: 10%;
  z-index: -1;
}

.promotionProductCarousel .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}


.promotionProductCarousel .header .title {
  color: white;
}

.promotionProductCarousel .header .title::after {
  background: #6FD1CD;
}

.promotionProductCarousel .header .countdown > span {
  font-family: fontl;
}

.promotionProductCarousel .header .time > span:not(.days) {
  min-width: 25px;
  display: inline-block;
}

.promotionProductCarousel .countdown {
  display: flex;
  align-items: center;
}

.promotionProductCarousel .progressbar {
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  border-radius: 10%;
  overflow: hidden;
}

.promotionProductCarousel .progressbar .bar{
  height: 100%;
  background: white;
}

.promotionProductCarousel .entity_item {
  box-shadow: none;
  background: white;
}

.promotionProductCarousel .swiper-wrapper {
  margin-bottom: 2rem;
}

.promotionProductCarouselFooter {
  display: flex;
  align-items: center;
}

.promotionProductCarouselFooter .swiper-button-disabled {
  opacity: .5;
}

@media screen and (max-width:992px){
  .promotionProductCarouselContainer {
    min-width: auto;
    max-width: 100%;
  }

  .promotionProductCarouselImg {
    display: none;
  }
}

@media screen and (max-width:576px){

  .promotionProductCarouselContainer .container {
    padding-right: 15px;
    padding-left: 15px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .promotionProductCarousel .header .countdown > span.ml-4 {
    display: none;
  }
}

/* 
  content box
*/

.contentBoxContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 2rem;
  border-radius: 2rem;
}

.contentBoxContainer .textBox {
  max-height: 480px;
  overflow-y: auto;
  flex: 1 1 100%;
  /* position: relative; */
}

/* .contentBoxContainer .textBox::after {
  content: '';
  position: absolute;
  inset: 0;
  top: auto;
  width: 100%;
  height: 20px;
  background: linear-gradient( 180deg, hsla(0, 0%, 100%, 0), rgba(255, 255, 255, 0.55) 99% );
} */

.contentBoxContainer .textBox h2 {
  font-family: fontbold;
}

.contentBoxContainer .imageBox  {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contentBoxContainer .imageBox img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 992px){
  .contentBoxContainer {
    flex-direction: column;
  }
}

/* 
  blog
*/

.blog .blogContainer {
  display: flex;
  gap: 2rem;
}

.blog .blogItem {
  width: calc((100% / 4) - 24px);
}

.blog .blogImage {
  max-width: 100%;
  height: 130px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.blog .blogHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #65B7F3;
  margin-bottom: .5rem;
}

.blog .blogHeader .time {
  font-family: fontl;
}

.blog .blogItem .title {
  font-family: fontbold;
  color: #0769BE;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width:992px) {
  .blog .blogContainer {
    overflow-y: auto;
  }

  .blog .blogItem {
    width: auto;
    min-width: 275px;
  }
}

/* 
  benefit
*/

.benefitBrand {
  background: #F7FBFE;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.benefitContainer {
  display: flex;
  justify-content: space-between;
}

.bnefitItem {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background: white;
  border-radius: 1rem;
  padding: .5rem 2rem;
  color: var(--blue);
}


@media screen and (max-width:992px) {
  .benefitContainer {
    overflow-y: auto;
    gap: 1.5rem;
  }

  .bnefitItem {
    width: auto;
    min-width: 275px;
  }
}

/* 
  footer
*/

.footerContainer {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: #F9FCFE;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

.footerContainer :is(.rightBox,.leftBox) {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footerContainer .footerMenu > li > ul {
  display: none;
}

.footerContainer .footerMenu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.footerContainer .footerMenu > ul a {
  color: var(--blue);
  font-family: fontbold;
  font-size: small;
  display: inline-block;
}

.footerContainer :is(.socialmediaBox, .telephone) {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  background: #EBF6FD;
  color: var(--blue);
  border-radius: 15px;
}

.footerContainer .socialmedia ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footerContainer .titleBrand {
  margin-bottom: 0;
  font-weight: normal;
  line-height: normal;
  font-size: large;
  color: var(--blue);
  margin-bottom: .5rem;
}

.footerContainer .descriptionBrand {
  font-family: fontl;
  font-size: small;
  color: var(--blue);
  line-height: 2;
}


.footerContainer .telephone a {
  font-family: fontbold;
}

.footerContainer .certficate {
  display: flex;
  gap: 2rem;
  flex: 1 1 auto;
}

.footerContainer .certficate .box {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EBF6FD;
  border-radius: 20px;
}

.footerContainer .certficate .box img{
  width: 94px;
  height: 117px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.copy_right {
  text-align: center;
  font-size: x-small;
  color: var(--blue);
}

.copy_right a {
  font-size: small;
  font-family: fontbold;
  color: var(--blue) !important;
  margin-right: 4px;
}

@media screen and (max-width:992px) {
  .footerContainer {
    flex-direction: column;
    gap: 1rem;
  }

  .footerContainer .footerMenu > ul {
    overflow-y: auto;
  }

  .footerContainer .footerMenu > ul a {
    min-width: 100px;
    display: block;
  }

  .footerContainer .socialmediaBox {
    flex-direction: column;
    gap: 10px;
  }
}

/*
    Products list page
*/

.productsListPage > .contentBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: 0px 0px 16px #E3F2FC;
  border-radius: 2rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.productsListPage > .contentBox .image {
  width: 192px;
  height: 192px;
  /* border: 8px solid #07BEB8; */
  border-radius: 2rem;
  overflow: hidden;
}

.productsListPage > .contentBox .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.productsListPage > .contentBox .text {
  max-width: calc(100% - (192px + 1rem));
}

.productsListPage > .contentBox .text > * {
  color: var(--blue);
}
.productsListPage > .contentBox .text > h1 {
  font-size: large;
  font-family: fontbold;
  margin-bottom: 1rem;
}

.productsListPageContainer {
  display: flex;
  justify-content: space-between;
}

.productsListPageAside {
  width: 270px;
  background: none;
  margin-bottom: 0;
}

.productsListPageContent {
  width: calc(100% - (270px + 2rem));
}

.productsList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.option_list_container {
  display: none;
}

.productsList > .product {
  width: calc(25% - 15px);
}

.productsList .product .entity_item {
  box-shadow: none;
}

.productsListPage .box {
  box-shadow: 0px 0px 16px #E3F2FC;
  border-radius: 1rem;
  padding: 1rem;
}

.productsListPage .box:not(:last-child) {
  margin-bottom: 30px;
}

.productsListPage .header {
  color: var(--blue) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #F4FAFE;
  margin-bottom: 10px;
  font-family: fontbold;
  transition: .2s;
}

.productsListPage .input, .productsListPage .select2-container--default .select2-selection--multiple {
  background: #F4FAFE;
  border-radius: 7px;
  padding: 10px;
  width: 100%;
  border: none;
}

.productsListPage *::placeholder {
  color: #CECECE;
  font-family: fontl;
}

.productsListPage .remove_filter {
  color: var(--danger);
  cursor: pointer;
}

#sidebar-category {
  margin-bottom: 0;
}

#sidebar-category.category a {
  font-size: medium;
  font-family: fontl;
  color: #444444;
  display: inline-block;
}

#sidebar-category.category a:hover {
  color: var(--blue);
}

#sidebar-category.category a.selected, .li_category.has-selected > a {
  text-shadow: none;
  color: var(--blue);
  font-family: fontbold;
}

#sidebar-category .li_category:not(:last-child) {
  margin-bottom: 20px;
}

#sidebar-category > li > ul > li > a {
  font-size: small;
}

#sidebar-category > li ul {
  margin-top: 10px;
}

.searchAsideBox {
  position: relative;
}

.productsListPage .searchBtn {
  background: transparent;
  border: none;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  padding: 0;
}

.productsListPage .select2-container--default .select2-search--inline .select2-search__field {
  margin: 0;
}

/* 
  toggle old
*/

.toggel-aside-filter div:last-child {
  margin-bottom: 0px;
}

.toggel-aside-filter div {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
}

.toggel-aside-filter label {
  margin: 0;
}

.slider-existing {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E2E2E2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 7px;

}

.slider-existing:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 5px;
}

input:checked + .slider-existing {
  background-color: var(--blue);
}

input:focus + .slider-existing {
  box-shadow: 0 0 1px var(--blue);
}

input:checked + .slider-existing:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}

.switch-existing {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 20px;
}

.switch-existing input {
  opacity: 0;
  width: 0;
  height: 0;
}

.input_switcher {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  margin-left: 5px;
}

.input_switcher:hover {
  border-color: var(--blue);
}

.c_switch {
  margin-bottom: 0;
  font-size: medium;
  color: #444444;
  display: flex;
  align-items: center;
}

/* 
  toggle new
*/

.toggle_component {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle_component label {
  margin-bottom: 0;
}

.toggle_component input {
  display: none;
}

.toggle_component_controller {
  display: flex;
  gap: 1rem;
}

/* 
  not checked
*/

.toggle_component input:not(:checked) + .toggle_component_controller .false .background {
  fill: var(--blue);
}

.toggle_component input:not(:checked) + .toggle_component_controller .false .shape {
  fill: var(--white-blue);
}

.toggle_component input:not(:checked) + .toggle_component_controller .true .background {
  fill: var(--white-blue);
}

.toggle_component input:not(:checked) + .toggle_component_controller .true .shape {
  fill: var(--blue);
}

/* 
  checked
*/

.toggle_component input:checked + .toggle_component_controller .true .background {
  fill: var(--blue);
}

.toggle_component input:checked + .toggle_component_controller .true .shape {
  fill: var(--white-blue);
}

.toggle_component input:checked + .toggle_component_controller .false .background {
  fill: var(--white-blue);
}

.toggle_component input:checked + .toggle_component_controller .false .shape {
  fill: var(--blue);
}

.item_collapse_aside:not(:last-child) {
  margin-bottom: 10px;
}

.filter_content ul li {
  max-width: 100%;
  margin-left: 10px;
  margin-top: 5px;
}

.filter_content ul {
  padding: 0;
  margin: 8px 2px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.filter_content ul li div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  background: var(--white-blue);
  border: 1px solid var(--blue);
  border-radius: 5px;
  color: var(--blue);
  letter-spacing: 0.3px;
  font-size: small;
  font-family: fontbold;
  line-height: 30px;
  padding: 0 10px 0 31px;
  position: relative;
}

.cancel_option::after {
  content: "\f00d";
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  left: 11px;
  top: 0;
  position: absolute;
  font-size: 10px;
  cursor: pointer;
}

.nothing_found {
  text-align: center;
  width: 100%;
  font-family: fontbold;
  letter-spacing: 0.7px;
  font-size: large;
}

.header[aria-expanded="true"] {
  transition: .2s;
}

.header[aria-expanded="false"] {
  border-color: transparent;
  margin-bottom: 0;
  padding-bottom: 0;
}

.header[aria-expanded="true"] img {
  transform: rotate(180deg);
}

.productsPageContentHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F4FAFE;
  box-shadow: none !important;
  font-family: fontbold;
}

.productsSort {
  display: flex;
  align-items: center;
  font-family: fontbold;
  color: var(--blue);
  font-size: small;
}

.products_count{
  font-family: fontbold;
  color: var(--blue);
  font-size: small;
}

.products_count strong{
  font-size: medium;
}

.productsSort span {
  margin-right: 1rem;
  cursor: pointer;
  background: #E9F5FD;
  color: var(--blue);
  border-radius: 1rem;
  padding: .5rem 1rem;
  display: inline-block;
  font-size: small;
}

.productsSort span.selected {
  font-family: fontbold;
  background: var(--blue);
  color: #E9F5FD;
}

.sort_q {
  display: none;
  gap: 1rem;
}

.c_pagination {
  margin: 50px 0 30px 0;
}

.c_pagination .pagination {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.c_pagination .pagination .l {
  background: var(--white-blue);
  border-radius: 17px;
}

.c_pagination .pagination a {
  border: none;
  background: transparent;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  margin: 0 3px;
  font-size: small;
}

.c_pagination .all_count {
  display: none;
}

.c_pagination .pagination .double_angle a {
  padding-right: 5px;
  padding-left: 5px;
  border-radius: 17px;
  background: var(--blue);
  color: var(--white-blue);
  font-family: fontbold;
}

.c_pagination .page-item {
  max-height: 45px;
}

.c_pagination .page-item.active .page-link {
  background-color: var(--blue);
  color: var(--white-blue);
  border: none;
  border-radius: 17px;
  padding-bottom: 12px;
}

.btn-modal-filter {
  width: 100%;
  background: var(--white-blue);
  border: none;
  border-radius: 1rem;
  padding: 10px 0;
  color: var(--blue);
  /* font-family: fontbold; */
  display: none;
}

.text_category_q, .list_tag {
  margin: 20px 0;
  font-family: fontbold;
  font-size: medium;
  line-height: 2;
}

._prf {
  margin-left: 10px;
  display: none;
}

._prf img {
  border-radius: 100%;
  object-fit: contain;
}

._brandImag img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 10px;
}

._brandImag {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: fontbold;
  color: #444444;
  font-size: medium;
}

@media screen and (max-width: 992px) {
  .productsPageContentHeader {
      display: none;
  }

  .sort_q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
  }

  .sort_q > * {
      flex: 1 1 100%;
  }

  .btn-modal-filter {
      display: block;
  }

  .productsListPage .box {
      box-shadow: none;
      padding: 20px 0;
  }

  .productsListPageContent {
      width: 100%;
  }

  .productsListPageAside {
      display: none;
  }

  ._prf {
      display: block;
  }

  ._brandImag {
      display: none;
  }

}

@media screen and (max-width: 768px) {
  .productsList {
    gap: 1px;
    background: var(--white-blue);
    justify-content: space-between;
  }

  .productsList > .product {
    width: calc(33.3% - 0.5px);
    background: white;
  }
}

@media screen and (max-width: 576px) {
  .productsList > .product {
      width: calc(50% - 0.5px);
  }

  .header {
      font-size: medium;
  }
}

@media screen and (max-width: 320px) {
  .productsList > .product {
      width: 100%;
  }
}



/*
    id
*/

.productDetailPageContainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.productDetailPageRightBox {
  width: 350px;
}

.productDetailPageLeftBox {
  width: calc(100% - 390px);
  display: flex;
  flex-direction: column;
}

.productDetailPageLeftBoxRow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #EBF6FD;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.main_image {
  height: 319px;
  width: 228px;
  border-radius: 15px;
  margin-right: 20px;
  z-index: 0;
}

.productImages .thumbs {
  height: 319px;
}

.main_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.productImages {
  display: flex;
  box-shadow: 0px 0px 16px #E3F2FC;
  border-radius: 17px;
  padding: 20px;
  margin-bottom: 30px;
  position: relative;
}

.thumbs img {
  height: 63px;
  width: 63px;
  border-radius: 17px;
  object-fit: cover;
  border: 6px solid #E3F2FC;
}

.arrowNext:after ,.arrowPrev:after{
  font-size: x-large;
  color: var(--blue);
  display: none;
}

.productImages .thumbs .swiper-slide:nth-child(4):after {
  content: '';
  position: absolute;
  width: 63px;
  height: 63px;
  border-radius: 17px;
  filter: blur(10px);
  inset: 0;
  bottom: auto;
  z-index: 10;
}

.availabilityProduct {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: white;
  box-shadow: 0px 0px 16px #E3F2FC;
  border-radius: 17px;
  margin-bottom: 30px;
}

.remainCount {
  box-shadow: 0px 0px 16px #E3F2FC;
  border-radius: 17px;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  color: var(--danger);
  font-size: medium;
}

.availabilityProduct > * {
  font-family: fontl;
  color: #C4C4C4;
  font-size: small;
}

.availabilityProduct strong {
  font-weight: normal;
  color: var(--blue);
}

.availabilityProduct img {
  margin-left: 10px;
}

.purchaseInformation {
  padding: 20px;
  background: white;
  box-shadow: 0px 0px 16px #E3F2FC;
  border-radius: 17px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.priceBoxProduct {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.discountProduct .discount {
  padding: 0px 7px;
  background: #FF4B4B;
  border-radius: 17px;
  color: white;
  font-family: fontbold;
  font-size: small;
}

.discountProduct .originalPrice {
  color: #C4C4C4;
  margin-left: 5px;
}

.priceProduct {
  font-family: fontbold;
  font-size: medium;
}

.priceProduct small {
  font-family: fontl;
  color: #C4C4C4;

}

.addToBasket {
  background: var(--blue);
  font-family: fontbold;
  color: white;
  padding: 8px 5px;
  width: calc(100% - 120px);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: medium;
  transition: .2s;
  margin-right: auto;
}

.addToBasket:hover img{
  margin-left: -20px;
  z-index: -1;
  position: relative;
}

.addToBasket img {
  margin-left: 10px;
  transition: .2s;
}

.addToBasket * {
  font-size: medium;
}

.addToBasket .mobile {
  display: none;
}

.multi_price_title{
  flex: 1 1 100%;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  gap: .5rem;
  color: var(--gray);
  margin-left: auto;
  margin-top: .5rem;
}

.multi_price_title > * {
  font-size: small;

}


.vendros_box {
  border: 1px solid var(--blue);
  border-radius: .5rem;
  overflow: hidden;
}

.vendor_header {
  background: var(--white-blue);
  color: var(--blue) !important;
  width: 100%;
  border-radius: .5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 1rem;
  font-family: fontbold;
}

.vendros_box .vendor_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem;
  padding-top: 0;
  margin-top: 1rem;
}

.vendros_box .vendor_item:not(:last-child){
  border-bottom: 1px solid var(--blue);
}

.vendros_box .vendor_item .vendor_info  > span{
  color: var(--blue);
}

.vendor_item .addToBasket {
  border: none;
  border-radius: .5rem;
}

#changeVendor .submit {
  background: var(--blue);
  color: var(--white-blue) !important;
}
#changeVendor .unsubmit {
  background: var(--white-blue);
  color: var(--blue) !important;
  border-color: var(--blue) !important;
}

.multi_price_btn_group {
  width: calc(100% - 120px);
  background: var(--white-blue);
  color: var(--blue);
  border-radius: 15px;
  position: relative;
  margin-right: auto;
}

.multi_price_box {
  background: transparent;
  color: var(--blue);
  border: none;
  padding: 8px;
  text-align: center;
  line-height: normal;
  font-weight: normal;
  font-size: medium;
  font-family: fontbold;
  width: calc(100% - 35px);
}

.multi_price_btn_group .dropdown-toggle-split {
  width: 30px;
  border: none;
  background: var(--blue);
  color: var(--white-blue);
  border-bottom-right-radius: 17px;
  border-top-right-radius: 17px;
}

.multi_price_label {
  width: 100px;
  overflow: hidden;
  color: var(--blue);
  font-size: medium;
}

.multi_price_box:after {
  margin-right: 10px;
}

.multi_price_names {
  border: none;
  border-radius: 5px;
  background: #F5F5F5;
  color: #B9B9B9;
  width: 100%;
}

.multi_price_names .dropdown-item {
  padding: 5px 10px;
  min-width: 38px;
  font-size: medium;
  text-align: center;
}

.multi_price_names .dropdown-item.active, .multi_price_names .dropdown-item:active {
  background: var(--blue);
}

.productDetailPageInfo {
  width: calc(100% - 267px);
  position: relative;
}

.productDetailPageInfo.dontHaveSuggestion {
  width: 100%;
}

.productDetailPageInfoHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.productDetailPageInfoHeader .productTitle {
  font-size: 20px;
  font-family: fontbold;
  padding-right: 15px;
  position: relative;
  margin-bottom: 0;
  color: #07BEB8;
  width: calc(100% - 172px);
}

.productDetailPageInfoHeader .productTitle:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 100%;
  background: #07BEB8;
  border-radius: 17px;
  right: 0;
  top: 0;
}

.productScore .star_vote {
  width: 20px;
  height: 25px;
  overflow: hidden;
  transition: .2s;
  margin-right: 10px;
}

.productScore:hover .star_vote {
  width: 115px;
}

.productScore {
  display: flex;
  align-items: center;
  color: var(--blue);
  font-family: fontl;
  font-size: small;
}

.productScore > span {
  font-family: fontbold;
  font-size: medium;
  margin-left: 1px;
}

.productDetailPageInfoProperty {
  height: 160px;
  margin-bottom: 30px;
}

.productDetailPageInfoProperty ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  height: 100%;
  overflow-x: auto;
}

.productDetailPageInfoProperty ul li {
  max-width: 210px;
}

.productDetailPageInfoProperty .relatedImg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  background: white;
  border-radius: 100%;
}

.productDetailPageInfoProperty .key {
  font-family: fontl;
  color: var(--blue);
  margin-left: 10px;
  font-size: medium;
}

.productDetailPageInfoProperty .value {
  font-family: fontbold;
  color: var(--blue);
}

.productDetailPageInfoProperty .value a, .productDetailPageInfoProperty .category a {
  color: var(--blue);
  font-family: fontbold;
  font-size: inherit;
  text-decoration: underline 1px dashed var(--blue);
  cursor: pointer;
}

.productDetailPageInfoProperty .value:not(:last-child) {
  margin-left: 10px;
  margin-bottom: 10px;
}

.productDetailPageInfoProperty :is(.brand, .author) .value{
  background: var(--white-blue);
  border-radius: .5rem;
  padding: 2px 6px;
  display: inline-block;
  transition: .2s;
}

.productDetailPageInfoProperty :is(.brand, .author) .value:hover {
  background: var(--blue);
}

.productDetailPageInfoProperty :is(.brand, .author) .value:hover a {
  color: var(--white-blue);
}

.productDetailPageInfoProperty :is(.brand, .author) .value a {
  text-decoration: none;  
}

.productDetailPageAction {
  display: flex;
  gap: 10px;
}

.productDetailPageAction img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.add-like[status="1"] ._liked {
  display: block !important;
}

.add-like[status="1"] ._like {
  display: none !important;
}

.add-like[status="0"] ._liked {
  display: none;
}

.add-bookmark[status="1"] ._liked {
  display: block !important;
}

.add-bookmark[status="1"] ._like {
  display: none !important;
}

.add-bookmark[status="0"] ._liked {
  display: none;
}

.productDetailPageInfoRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.downloadPdf {
  background: var(--white-blue);
  padding: 10px;
  border-radius: 17px;
  color: var(--blue);
  font-size: medium;
  font-family: fontbold;
}

.downloadPdf img {
  margin-left: 7px;
}

.downloadPdf:hover img {
  position: absolute;
  opacity: 0;
}

.downloadPdf:hover {
  background: var(--blue);
  color: var(--white-blue);
}

.productDetailPageTag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}

.productDetailPageTag > span {
  font-family: fontl;
}

.productDetailPageTag .swiper-slide {
  width: max-content;
}

.tagProductContainer{
  flex: 1;
}

.productDetailPageTag a {
  border-radius: 1rem;
  border: 1.5px solid #E1E2E4;
  padding: .25rem 1rem;
  color: var(--primary);
  font-family: fontl;
  display: block;
}

.productDetailPageTag a:hover {
  background: var(--tertiary);
  /*font-family: fontbold;*/
}

.categoryProductContainer {
  width: calc(100% - 90px);
  margin-left: 0;
}

.related_content_box {
  display: flex;
}

/*.categoryProductContainer .swiper-button-next, .categoryProductContainer .swiper-button-prev {*/
/*    background: white;*/
/*}*/

/*.categoryProductContainer .swiper-button-next:after, .categoryProductContainer .swiper-button-prev:after {*/
/*    content: none;*/
/*}*/

.tagArrowNext {
  left: 0 !important;
}

.tagArrowPrev {
  right: 0 !important;
}

.categoryProductContainer .swiper-button-disabled {
  opacity: 0;
}
.productDetailPageSuggestion {
  width: 227px;
  margin-left: 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 10px;
}

.suggestionHeader {
  font-family: fontbold;
  font-size: 15px;
  color: var(--blue);
  border-bottom: 1px solid var(--gray);
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

.suggestionHeader:after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 60%;
  height: 1px;
  background: var(--blue);
}

.suggestionItem {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.suggestionImg {
  height: 290px;
  width: 187px;
  object-fit: cover;
  border-radius: 15px;
}

.suggestionPagination {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.suggestionPagination .swiper-pagination-bullet {
  background: #CFD1D2;
}

.suggestionPagination .swiper-pagination-bullet-active {
  background: var(--blue);
}

.interactionUser ul {
  padding: 1rem;
  margin-bottom: 20px;
  list-style: none;
  display: flex;
  box-shadow: 0px 0px 16px #E3F2FC;
  border-radius: 1rem;
}

.interactionUser > ul a {
  color: var(--blue);
  background: var(--white-blue);
  padding: .5rem 1rem;
  transition: .2s;
  font-family: fontbold;
  border-radius: 1rem;
  display: inline-block;
}

.interactionUser > ul a:is(:hover,:focus) {
  background: var(--blue);
  color: var(--white-blue) !important;
}

.interactionUser > ul > li {
  margin-left: 1rem;
  padding-left: 1rem;
  position: relative;
}

.interactionUser > ul > li:not(:last-child)::after {
  content: '';
  position: absolute;
  inset: 0;
  right: auto;
  margin: auto;
  margin-left: 0;
  width: 1px;
  height: 16px;
  background: var(--blue);
}

.interactionUser > ul a:focus, .interactionUser > ul a:hover, .interactionUser ul > li:first-child a {
  color: var(--blue);
}

.descriptionProduct {
  margin-bottom: 30px;
}

.descriptionProduct .dynamic-height-wrap *:is(h1,h2,h3,h4,h5) {
  font-size: x-large;
  color: #444444;
  font-family: fontbold;
  margin-bottom: 15px;
}

.descriptionProduct .dynamic-height-wrap *:not(h1,h2,h3,h4,h5,strong,b) {
  color: #444444;
  font-family: fontl;
  line-height: 30px;
  text-align: justify;
}

.dynamic-height-wrap {
  width: 100%;
  transition: 0.25s ease-in-out;
  overflow: hidden;
}

.js-dynamic-show-hide {
  display: block;
  position: relative;
  margin-left: auto;
  padding: 10px;
  background: var(--white-blue);
  color: var(--blue);
  border: 0;
  z-index: 2;
  font-family: fontbold;
  border-radius: 17px;
}

.js-dynamic-show-hide > img {
  margin-right: 10px;
}

.btn_more_summary {
  text-align: left;
  background: #ffffff;
  padding: 10px 0;
  display: flex;
  justify-content: flex-end;
  transition: 0.4s;
  position: relative;
}

.dynamic-height-active .btn_more_summary::after {
  background: linear-gradient(
          180deg,
          hsla(0, 0%, 100%, 0),
          hsla(0, 0%, 98.8%, 0.99) 99%,
          #fcfcfc
  );
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  opacity: 1;
  bottom: 0;
  height: 120px;
  z-index: 1;
  transition: 0.4s;
}

#submit-comment {
  padding-top: 25px;
}

.inputsReview {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.vInput {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  font-family: fontl;
  color: var(--blue);
  max-width: calc(50% - 10px);
}

.textareaReview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.textareaReview > label {
  margin-bottom: 0;
  font-family: fontl;
  color: var(--blue);
}

.vInput > input, .textareaReview textarea {
  background: #F4FAFE;
  color: var(--blue);
  border-radius: 17px;
  border: none;
  padding: 17px 20px;
}

.register_captcha .vInput {
  max-width: 370px;
}

.register_captcha .captcha_reload {
  margin-left: auto;
  margin-right: 20px;
}

.submitBtn {
  padding: 16px 0px;
  color: white;
  background: var(--blue);
  border-radius: 17px;
  border: none;
  width: 200px;
}

.bodyReview {
  margin-top: 2rem;
  max-height: 400px;
  overflow-y: auto;
}

.userBox {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.userBox:not(:last-child) {
  margin-bottom: 25px;

}

.userCommentBox {
  padding: 1rem;
  border-radius: 1rem;
  background: #F4FAFE;
  color: var(--blue);
}

.userCommentInfo {
  display: flex;
  margin-bottom: .5rem;
}

.usernameComment {
  color: #65B7F3;
  margin-left: 1rem;
}

.dateComment {
  font-family: fontl;
  color: #65B7F3;
}

.userComment {
  font-family: fontl;
  text-align: justify;
  line-height: 24px;
}

.adminComment {
  margin-right: 2rem;
  padding: 1rem;
  background: #F2FBFA;
  color: #07BEB8;
  border-radius: 1rem;
  font-family: fontl;
}

.adminComment .title {
  margin-bottom: .5rem;
  color: #ABE3E1;
}


@media screen and (max-width: 992px) {
  .productDetailPageContainer, .productDetailPageLeftBoxRow, .hasSameProducts .productDetailPageInfoRow {
      flex-direction: column;
  }

  .productDetailPageRightBox {
      width: 100%;
  }

  .productImages {
      max-width: 320px;
      margin-right: auto;
      margin-left: auto;
  }

  .productImages .thumbs {
      display: none;
  }

  .main_image {
      width: 100%;
      height: auto;
      margin: 0;
  }

  .productDetailPageLeftBox, .productDetailPageInfo {
      width: 100%;
  }

  .productDetailPageInfo::after, .productDetailPageInfo::before {
      content: none;
  }

  .productDetailPageInfo {
      border: none;
      padding: 0;
      margin: 30px 0;
  }

  .productDetailPageSuggestion {
      margin: auto;
  }

  .productDetailPageInfoProperty {
      height: auto;
  }

  .hasSameProducts .productDetailPageAction {
      max-width: unset;
  }

  .hasSameProducts .productDetailPageInfoRow {
      gap: 10px;
  }

  .arrowNext:after ,.arrowPrev:after{
      display: block;
  }

}

@media screen and (max-width: 480px) {

  .adminComment {
    margin-right: 0;
  }

  .productDetailPageInfoProperty ul {
      display: block;
      column-count: 2;
  }

  .productDetailPageInfoProperty > ul > li:not(:last-child) {
      margin-bottom: 10px;
  }

  .productDetailPageInfoProperty .brand .value, .productDetailPageInfoProperty .author .value {
      margin-bottom: 10px;
  }

  .productDetailPageInfoHeader .productTitle {
      font-size: medium;
      width: 100%;
      margin-bottom: 10px;
  }

  .productDetailPageInfoProperty .value, .productDetailPageInfoProperty .value a, .productDetailPageInfoProperty .category a {
      font-size: small;
  }

  .productDetailPageInfoProperty .key {
      font-size: small;
  }

  .productDetailPageInfoHeader {
      flex-direction: column;
  }

  .productScore .star_vote {
      width: max-content;
      height: auto;
  }

  .productScore:hover .star_vote {
      width: max-content;
  }

  .productDetailPageTag a {
      font-size: small;
  }

  .productDetailPageContainer:not(.hasSameProducts) .purchaseInformation:not(.other_product) {
      position: fixed;
      z-index: 100;
      right: 0;
      left: 0;
      margin: auto;
      bottom: 0;
      width: 100%;
      box-shadow: rgba(0, 0, 0, 0.2) 0 25px 20px 20px;
      border-radius: 0;
  }
  
  .addToBasket.unavailable.haveOtherVendor {
    background: none;
    padding: 0;
  }
  .addToBasket.unavailable.haveOtherVendor .desktop {display: none;}
  
  .addToBasket.unavailable.haveOtherVendor .mobile {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    gap: .5rem;
  }

  .addToBasket.unavailable.haveOtherVendor .mobile > div {
    font-size: small;
  }

  .addToBasket.unavailable.haveOtherVendor .mobile b {
    color: var(--danger);
  }

  .addToBasket.unavailable.haveOtherVendor .openModal {
    border: none;
    background: var(--blue) !important;
    color: var(--white-blue) !important;
    font-family: fontbold;
    border-radius: .5rem;
    padding: .5rem;
  }


  .hasSameProducts .productDetailPageInfoRow {
      flex-direction: column
  }

  .hasSameProducts .productDetailPageAction {
      margin-bottom: 15px;
      margin-left: auto;
  }

  .hasSameProducts .downloadPdf {
      width: 100%;
      margin-bottom: 10px;
      text-align: center;
  }

  .hasSameProducts .purchaseInformation {
      width: 100%;
  }

  .interactionUser > ul > li > a {
      display: block;
      width: max-content;
  }

  .interactionUser ul {
      overflow-x: auto;
  }

  .hasSameProducts .addToBasket {
      padding: 10px 25px;
      height: auto;
  }

  .register_captcha label > div {
      width: 100%;
      margin: 15px 0;
  }

}


.blogBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
}

.imageBlogBoxItem img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.blogBoxItem {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s
}

.blogBoxItem:hover {
  box-shadow: 0 50px 55px 0 rgba(0, 0, 0, 0.05),
  0 -10px 55px 0 rgba(0, 0, 0, 0.05);
}

.contentBlogBoxItem {
  margin-top: -10px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 15px 20px;
  z-index: 2;
  position: relative;
  background: #F3F3F3;
}

.titleBlogBoxItem {
  font-family: fontbold;
  font-size: medium;
  text-align: right;
  color: var(--blue);
  margin-bottom: 15px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.bodyBlogBoxItem {
  text-align: justify;
  font-size: small;
  font-family: fontl;
  color: var(--gray);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/*
    blog id
*/

.blog_id .blog_container {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  border-radius: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* .blog_image:not(.podcast) {
  width: 100%;
  height: 400px;
  object-fit: cover;
} */

.blog_media {
  width: 100% !important;
  height: auto !important;
  margin-bottom: 2rem !important;
}

.blog_header {
  position: relative;
  margin-bottom: 109px;
}

.blog_header .blog_title_box {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.blog_title {
  color: var(--blue);
  font-family: fontbold;
  margin-bottom: 0;
}

.blog_description {
  border-radius: 10px;
  background: #f5f5f5;
  padding: 10px;
  margin-bottom: 20px;
  line-height: 2 !important;
}

.blog_header figure {
  margin-bottom: 0;
}

.tags_blog .tag_blog {
  color: #CF8288;
  font-family: fontbold;
  margin-bottom: 15px;
  margin-left: 10px;
  display: inline-flex;
}

.blog_main {
  margin-bottom: 1rem;
}

.blog_main .blog_body *:not(h1,h2,h3,h4,h5,b,stong) {
  line-height: 27px;
  text-align: justify;
}

.blog_main img {
  max-width: 100%;
  height: auto;
  margin: auto;
  display: block;
}

.blog_main a {
  color: var(--blue);
}

.blog_aside  .productsCarousel {
  margin-bottom: 0;
}

.blog_aside > h4 {
  color: var(--gray);
  margin-bottom: 30px;
}

.blog_aside .blog_with_tag {
  width: 100%;
}

.blog_related {
  position: relative;
  display: flex;
}

.blog_aside > .blog_related {
  margin-bottom: 45px;
}

.blog_related_img {
  width: 100%;
}

.blog_related_img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 25px;
}

.blog_related_info {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
}

.blog_related_info h5 {
  color: var(--blue);
  margin-bottom: 8px;
  font-family: fontbold;
}

.blog_related_info p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--gray);
  font-family: fontlight;
  font-size: small;
  max-width: 195px;
}

@media screen and (max-width: 992px) {
  .blog_id .blog_container {
      flex-direction: column;
  }

  .blog_main {
      width: 100%;
      margin-bottom: 15px;
  }

  .blog_aside {
      width: 100%;
  }

  .blog_related_img img {
      height: 300px;
  }

}

@media screen and (max-width: 768px) {
  .blog_title_box {
      right: 15px;
  }

}


.use_ck img, .use_ck svg, .use_ck video {
  max-width: 100%;
  height: auto;
}


.use_ck img {
  border-radius: 8px;
}

/*
     Sceleton
*/
@keyframes skeleton-loading {
  0% {
      background-color: hsl(200, 20%, 80%);
  }
  100% {
      background-color: hsl(200, 20%, 95%);
  }
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
  position: relative;
  display: block;
  border-radius: 17px;
  max-width: 100%;
  min-height: 250px;
}

.skeleton::after {
  visibility: hidden;
}

.skeleton::before {
  position: absolute;
  inset: 0;
  width: 60px;
  height: 50px;
  margin: auto;
  color: transparent;
  text-align: center;
  content: attr(alt);
  background: transparent url("../../../../file/logos/logo.png") no-repeat 50%;
  background-size: contain;
}

.threeBannerImg.skeleton {
  height: 197px;
}

.fiveBannerImg.skeleton {
  width: 100%;
}


.entity_image.skeleton {
  max-height: 224px;
}

.notProduct .entity_image.skeleton {
  min-height: 150px;
  max-height: 150px;
}

/*
 contact  
*/
.contactContainer{padding: 30px 50px;background-color: rgba(232,232,232,.5);margin-bottom: 2rem;}
.contact_title{font-size: 20px;color: var(--blue);text-align: right;display: inline-block;border-bottom: 2px solid;padding-bottom: 10px;}
.contact_desc p{margin: 10px auto;line-height: 2.5;font-size: 15px;color: #666666}
.social_div {display: flex;width: 100%;justify-content: space-around}
.contactUs {margin: 60px auto 30px;border-top: 1px solid #fff;border-bottom: 1px solid #fff;}
.contact_info{width: 100%;padding: 35px 25px;display: flex;}
.social_div > div {display: flex;flex-direction: column;align-items: flex-start}
.icon_social{width: 30px;height: 30px;background: var(--white-blue);border-radius: 10px;display: flex;align-items: center;justify-content: center;margin-left: 10px;}
.icon_social i{color: var(--blue);font-size: 16px}
.social_div > div > div {display: flex;align-items: center;justify-content: flex-start;margin-bottom: 25px}
.icon_social img{width: 17px;height: 17px}
.form_contact {width: 100%}
.form_contact p {text-align: center;color: var(--blue);font-size: 20px;margin-bottom: 40px}
.memberDetail {display: flex;justify-content: space-between;}
.halfCol{width: 49%}
.social_div > div > div a{display: flex;align-items: center;justify-content: flex-start;color: #212529}
.social_div > div > div a:hover{color: #777777}
.c_input{display: block;box-sizing: border-box;width: 100%;height: 59px;padding: 0.5rem;border-radius: 15px;background-color: #ffffff;color: #000;transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;border: 0}
.c_area{height: 200px;border-radius: 15px;background: #fff;border: 0;padding: 11px 12px;width: 100%;}
#map_div{width: 49%;height: 750px !important;border-radius: 15px;z-index: 1;border: 1px solid #d3d1d1}
.contactUs #form-contact .form-group {margin-bottom: 0}
.contactUs #form-contact label span{display: block;padding: 5px 0}
.contactUs #form-contact .register_captcha{display: flex;justify-content: space-between}
.contactUs #form-contact .register_captcha .captcha_reload{margin-right: 10px}
.address_ {display: flex;}
.social_text {width: calc(100% - 30px);}
.contact_desc a{font-size: 14px;}
.contact_btn button {background: var(--blue);border-radius: 6px;color: #fff;width: 170px;height: 46px;border: 0;font-size: 18px;}
.form_contact .refresh{width: 30px;object-fit: contain}
.team_container{display: flex;flex-wrap: wrap;margin-top: 40px}
.team_wrapper {max-width: 1100px;margin: 30px auto;border-top: 1px solid #e7e7e7;padding-top: 30px;}
.team_wrapper h3 {text-align: center;}
.member_box img{width: 100%;height: 180px;object-fit: cover}
.member_box {transition: .2s;border: 1px solid #e7e7e7;margin-bottom: 20px;box-shadow: 0 5px 8px 0 rgba(2, 2, 2, 0.12);border-radius: 15px;overflow: hidden;background: #fff;}
.member_box:hover {transform: translateY(-5px)}
.member_info {padding: 10px;display: flex;flex-direction: column;align-items: center;justify-content: center;}
.member_info p{margin-bottom: 5px;text-align: center}
.member_name {font-weight: 700;color: #333;font-size: 15px;}
.c_form .c_input {display: block;box-sizing: border-box;width: 100%;height: 45px;padding: 0.5rem;;border: 1px solid #c6c6c6;border-radius: 6px;background-color: #fefefe;font-family: inherit;font-size: 14px;font-weight: normal;line-height: 1.5;color: #000;transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;}
.c_form .c_input:focus{border: 1px solid #006766}
.c_form .c_input{padding-right: 35px;}
.c_form .c_input::placeholder{text-align: right !important;color: #aaaaaa}
#form-contact .captcha_img {height: auto;}
.contactTitle{border-bottom: 1px solid #383838;display: inline-block;padding: 5px 0 5px 10px;font-weight: bold;}

@media screen and (max-width: 992px) {
    .contactUs #form-contact .register_captcha {flex-wrap: wrap}
}
@media screen and (max-width: 768px){
    .social_div,.form_contact{width: 100%}
    .contactUs #form-contact .register_captcha label{width: 100%}
    .register_captcha label > div{width: 45%}
}
@media screen and (max-width: 576px){
    #map_div{width: 100%;margin-bottom: 20px;height: 270px !important;}
    .contact_info{height: auto;width: 100%}
    .contactUs{flex-wrap: wrap}
}

.free_delivery {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
}


._breadcrumb ol {
  padding: 0 0 11px 0;
  border-bottom: 1px solid #DFDFDF;
  margin-bottom: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  overflow-x: auto;
}

._breadcrumb ol li:not(:last-child) {
  margin-left: .5rem;
  color: #8B8B8B;
}

._breadcrumb ol li:not(:last-child):after {
  content: "/";
  margin-right: .5rem;
}

._breadcrumb ol li:last-child {
  color: var(--gray-dark);
}

/*
    read more widget
*/

.read_more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  position: relative;
}

.read_more-button:not(.disable_style) {
  display: inline-block;
  margin-top: 10px;
  padding: 0;
  background-color: unset;
  color: #19bfd3;
  border: none;
  cursor: pointer;
}

.read_more-content:not(.disable_gradient):after {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 98.8%, 0.99) 99%, #fff);
  pointer-events: none;
}

.read_more-box:not(.expanded) .read_more-content:not(.disable_gradient):after {
  display: block;
  content: '';
}