:root {
  --textColor: #151515;
  --primaryColor: #92c5d9;
  --CategoryBox: #454648;
  --footerMainColor: rgba(255, 255, 255, 0.5);
}

* {
  outline: none;
}

html {
  overflow-x: hidden;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  transition: 0.3s all ease;
}

.preloader * {
  box-sizing: content-box;
}

.preloader-body {
  text-align: center;
}

.cssload-box-loading {
  width: 100px;
  height: 100px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.cssload-box-loading::after {
  content: "";
  width: 100px;
  height: 100px;
  background: #92c5d9;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6px;
  animation: cssload-animate 0.58s linear infinite;
  -o-animation: cssload-animate 0.58s linear infinite;
  -ms-animation: cssload-animate 0.58s linear infinite;
  -webkit-animation: cssload-animate 0.58s linear infinite;
  -moz-animation: cssload-animate 0.58s linear infinite;
}

.cssload-box-loading::before {
  content: "";
  width: 100px;
  height: 10px;
  background: black;
  opacity: 0.1;
  position: absolute;
  top: 118px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.58s linear infinite;
  -o-animation: shadow 0.58s linear infinite;
  -ms-animation: shadow 0.58s linear infinite;
  -webkit-animation: shadow 0.58s linear infinite;
  -moz-animation: shadow 0.58s linear infinite;
}

@keyframes shadow {
  0%,
  100% {
    -webkit-transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1.2, 1);
  }
}

@keyframes cssload-animate {
  17% {
    border-bottom-right-radius: 6px;
  }

  25% {
    -webkit-transform: translateY(18px) rotate(22.5deg);
  }

  50% {
    -webkit-transform: translateY(36px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 80px;
  }

  75% {
    -webkit-transform: translateY(18px) rotate(67.5deg);
  }

  100% {
    -webkit-transform: translateY(0) rotate(90deg);
  }
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.rightSideBox {
  width: 0;
  height: 100vh;
  position: fixed;
  left: 0;
  z-index: 99999;
  overflow-y: scroll;
  background-color: #fff;
  transition: all 0.5s ease;
}

.closeRightSideBox {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
}

.closeRightSideBox i {
  width: 100%;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.5s ease;
  padding: 20px 10px;
}

.closeRightSideBox:hover i {
  color: #f30606;
}

/* Slider */

#slider {
  width: 100%;
  float: right;
  position: relative;
}

#slider .owl-stage-outer {
  width: 100%;
  float: right;
  display: flex;
  overflow: hidden;
}

#slider .owl-stage-outer .owl-stage {
  display: flex;
}
#slider .owl-nav {
  /* width: 95%;
  position: absolute;
  top: 50%;
  right: 2.5%;
  display: flex;
  justify-content: space-between; */
}

#slider .owl-nav .owl-prev,
#slider .owl-nav .owl-next {
  width: 70px;
  /* height: 50px; */
  /* border-radius: 50%; */
  background-color: transparent;
  /* display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none; */
  cursor: pointer;

  visibility: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0.83, 0.8, 0.11, 0.64) 0s;
  transition: all 0.2s cubic-bezier(0.83, 0.8, 0.11, 0.64) 0s;
  opacity: 0;
  position: absolute;
  top: 50%;
}

#slider .owl-nav .owl-prev {
  right: -30px;
}

#slider .owl-nav .owl-next {
  /* position: relative; */
  left: -6%;
}

#slider:hover .owl-nav .owl-prev {
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  right: 15px;
}

#slider:hover .owl-nav .owl-next {
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  left: -3%;
}

.itemSlider {
  /* height: 600px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* .itemSlider::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.74) none repeat scroll 0 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
} */

.itemSlider img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

#slider .carousel-caption div:nth-child(1) {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
#slider .carousel-caption div:nth-child(2) {
  font-size: 16px;
  font-weight: 100;
  margin: 40px 0;
}
/* #slider .carousel-caption div:nth-child(1){} */

.sliderBTN {
  width: 200px;
  background-image: linear-gradient(to left, #fbbd61, #ec7532);
  color: #fff;
  font-size: 17px;
  text-align: center;
  border-radius: 40px;
  transition: all 0.5s ease;
  padding: 11px 22px;
  margin: 20px auto 0;
}

.sliderBTN:hover {
  background-image: linear-gradient(to left, #ec7532, #fbbd61);
}

.sliderMainTitle.animated,
.sliderMainText.animated,
.sliderBTN.animated {
  animation-duration: 2s;
}

/* Slider (END) */

/* header */

#headerMenuSticky {
  width: 100%;
  position: absolute;
  transition: all 0.5s ease;
  margin-bottom: 0;
}

#headerMenuSticky .menu {
  transition: all 0.5s ease-in;
}

.stickyMenu {
  position: fixed !important;
  z-index: 9999;
  top: 0;
  width: 100%;
  box-shadow: 0 0 5px 0 rgba(1, 3, 4, 0.19);
}

div.row.head.xBgColor.nav-menu.stickyMenu > div > div:nth-child(1) > a > img {
  margin: 5px 0;
  height: 70px;
}

.stickyMenu .menu {
  display: table;
  margin: 0;
}

.stickyMenu .search.col-xs-6.col-md-2.col-lg-2 {
  margin-top: 0;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 16px;
  color: #000;
  display: block;
  transition: 0.3s;
}

.sidenav > a {
  margin-bottom: 10px;
}

.sidenav a:hover {
  color: #fff;
  background-color: var(--primaryColor);
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 36px;
  /* margin-left: 50px; */
}

.sidenav .closebtn:hover {
  color: red;
  background-color: #fff;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}

.menuClass a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.headerMainBox .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-top: 110px; */
}

.searchbtnHeader {
  cursor: pointer;
}

.searchModalMain {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.searchModalMain.activeSearch {
  opacity: 1;
  visibility: visible;
}

.closeBTNsearchModal {
  position: absolute;
  top: 10%;
  right: 10%;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s ease;
}

.closeBTNsearchModal:hover {
  color: red;
}

.searchModal {
  width: 50%;
}

.searchForm {
  width: 0%;
  transition: all 0.5s ease;
  margin: auto;
}

.searchModalMain.activeSearch .searchForm {
  width: 100%;
}

.searchModal fieldset {
  border-bottom: 1px solid #fff;
  padding-bottom: 6px;
}

.searchModal fieldset .inpSearch {
  width: calc(100% - 30px);
  background: transparent;
  color: #fff;
  border: 1px solid transparent;
}

.searchModal fieldset .inpSearch:focus,
.searchModal fieldset .inpSearch:focus-visible {
  border: 1px solid transparent;
}

.searchModal fieldset input[type="submit"] {
  width: 19px;
  background-color: transparent;
  background-image: url(../../upload/search.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: invert(100%) sepia(100%) saturate(80%) hue-rotate(233deg)
    brightness(104%) contrast(103%);
  border: none;
}

.cartMainBoxHeader {
  position: relative;
}

.cartIcon {
  cursor: pointer;
}

.cartShowBox {
  width: 320px;
  height: 90vh;
  overflow: scroll;
  background: #fff;
  position: absolute;
  left: -100%;
  top: 120%;
  z-index: 9999999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  padding: 5px 20px;
}

.cartMainBoxHeader.activeCart .cartShowBox {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.cart_header {
  border-bottom: 1px solid #000;
  padding: 15px 0;
  margin-bottom: 15px;
}

.cart-product {
  display: flex;
  margin-bottom: 10px;
}

.cart-productBox {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.cart-productImage {
  width: 50%;
  margin-left: 5%;
}

.cart-productBoxBody {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-remove img {
  width: 20px;
}

.checkoutCartHeader {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.rightSideNavHeader {
  position: absolute;
  left: -3%;
  cursor: pointer;
}

.rightSideNavHeader i {
  color: #000;
  font-weight: 100;
  font-size: 40px;
  transition: all 0.5s ease;
}

.rightSideNavHeader:hover i {
  color: var(--primaryColor);
}

.rightSideNavHeader i:nth-child(2) {
  display: none;
}

.header-slider {
  margin-top: 110px;
}

/* header (END) */

/* category */

.categoryMainBox {
  background-color: var(--CategoryBox);
  padding-top: 30px;
  padding-bottom: 30px;
}

.CB-header {
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin: 20px 0;
}

.CB-body {
  width: 100%;
  float: right;
}

.CB-bodyCard {
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  padding: 40px;
  margin-bottom: 20px;
}

.CB-bodyCardImage {
  width: 50px;
  margin-left: 7%;
}

.CB-bodyCardImage img {
  width: 100%;
}

.CB-bodyCardText a {
  color: #fff;
}

/* category(END) */

/* Home Box */

.homeBox {
  background-image: linear-gradient(
    to right,
    #eceeef,
    #eef0f0,
    #f0f2f2,
    #f2f3f3,
    #f4f5f5
  );
  padding-top: 70px;
  padding-bottom: 70px;
}

.homeBox .container {
  display: flex;
  align-items: center;
}

.HB-left {
  line-height: 1.5;
  margin-right: 5%;
}

.HB-leftTitle {
  font-weight: bold;
  font-size: 30px;
}

.HB-leftText {
  color: #777;
  font-size: 17px;
  margin: 15px 0;
}

.HB-leftFooter {
  margin-top: 20px;
}

.HB-leftFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.HB-leftFooterNameBox div:nth-child(1) {
  font-weight: bold;
  font-size: 22px;
  color: #000;
}

.HB-leftFooterNameBox div:nth-child(2) {
  font-size: 17px;
  color: #777;
}

/* Home Box (END) */

/* product tabs in home */


.productGroupTabs .owl-stage-outer {
  width: 100%;
  float: right;
  display: flex;
  overflow: hidden;
}

.productGroupTabs .owl-stage-outer .owl-stage {
  display: flex;
}

.productGroupTabs .owl-prev , 
.productGroupTabs .owl-next{
  position: absolute;
  top: 3%;
}  

.productGroupTabs .owl-prev {
  right: -15px;
}  
.productGroupTabs .owl-next{
  left: -15px;
}  


.product-section {
  margin: 50px 0;
}

.productGroupTabsTitle {
  font-size: 22px;
  margin: 20px 0;
}

.productGroupTabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.productGroupTabs li {
  flex: 20%;
  border-left: 1px dashed #ccc;
  margin-bottom: 10px;
}

.productGroupTabs a {
  color: #000;
  transition: all 0.5s ease;
}

.productGroupTabs a:hover {
  color: var(--primaryColor);
}

.productGroupTabs li.active a {
  color: var(--primaryColor);
}

.nav > li > a:focus,
.nav > li > a:hover {
  background-color: transparent;
}

.PCB-card {
  background-color: #f5f5f5;
  border-radius: 7px;
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
  position: relative;
  top: 0;
  overflow: hidden;
  box-shadow: none;
  padding: 20px 0;
  margin: 20px 0;
}

.PCB-cardName {
  color: #000;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
  margin: 10px auto;
}

.PCB-cardPrice {
  /* color: var(--primaryColor); */
  color: #f54949;
  font-size: 18px;
}

.PCB-cardFooter {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  margin: 15px 0;
}

.PCB-cardFooterGoDetail,
.PCB-cardFooterBuyBTN {
  width: 60px;
  height: 60px;
  background-color: #e9da5d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 10px;
}

.PCB-cardFooterBuyBTN {
  background-color: var(--primaryColor);
}

.PCB-card:hover {
  background-color: #fff;
  box-shadow: 0 1px 18px 0 rgba(0, 0, 0, 0.09);
  top: -10px;
}

.PCB-card:hover .PCB-cardFooter {
  display: flex;
}

/* product tabs in home (END) */

/* latest Product */

.LP-card {
  margin-bottom: 15px;
}

/* latest Product(END) */

/* Most Saller Product */

.mostSellesPro {
  margin-top: 40px;
}

/* Most Saller Product (END) */

/* Last Article */

.lastArticle {
  background-color: #f4f3f3;
  padding-top: 100px;
  padding-bottom: 100px;
}

.LA-header {
  width: 100%;
  float: right;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

.LA-body .owl-stage-outer {
  width: 100%;
  float: right;
  display: flex;
  overflow: hidden;
}

.LA-body .owl-stage-outer .owl-stage {
  display: flex;
}

.LA-bodyCard .leftBoxLatest {
  width: 100%;
  text-align: center;
}

.LA-bodyCard p.abstract {
  padding-right: 0;
}

.p.date {
  text-align: center;
}

.LA-body .owl-nav {
  width: 95%;
  position: absolute;
  top: 50%;
  right: 2.5%;
  display: flex;
  justify-content: space-between;
}

.LA-body .owl-nav .owl-prev {
  position: relative;
  right: 0;
}

.LA-body .owl-nav .owl-next {
  position: relative;
  left: 0;
}

.LA-body .owl-dots {
  width: 100%;
  float: right;
  display: none;
  justify-content: center;
  margin-top: 15px;
}

.LA-body .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.5s ease;
  margin-left: 15px;
}

.LA-body .owl-dots .owl-dot.active {
  background-color: var(--primaryColor);
}

.prevNavdiv,
.nextNavdiv {
  color: #a3a3a3;
  cursor: pointer;
  border-bottom: 2px solid #a3a3aa;
  transition: all 0.3s ease;
  padding: 0 5px 8px 5px;
}

.prevNavdiv:hover,
.nextNavdiv:hover {
  color: #000;
}

/* Last Article (END) */

/* Call Us Button */

.callUsBtn{
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99999999;
  text-align: center;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.callUsBtn img{
  width: 45px;
}

/* Call Us Button (END) */

/* Footer */

.footerBoxHeaderImage {
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footerBoxHeaderImage span:nth-child(1) {
  width: 45%;
}

.footerBoxOpenTime {
  color: var(--footerMainColor);
  line-height: 1.5;
}

.footerBoxSocialMedia {
  width: 100%;
  float: right;
  display: flex;
  color: #fff;
  border-top: 1px solid #fff;
  padding-top: 24px;
  margin-top: 24px;
}

.footerBoxSocialMedia div:nth-child(1) {
  margin-left: 10%;
}

.footerBoxSocialMedia a {
  color: #fff;
  transition: all 0.5s ease;
}

.footerBoxSocialMedia a:hover {
  color: var(--primaryColor);
}

.footerBoxHeader {
  color: #fff;
  margin-bottom: 25px;
}

.footerBoxAddress,
.footerBoxTell,
.footerBoxAddress {
  color: var(--footerMainColor);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footerBoxAddress span:nth-child(1),
.footerBoxTell span:nth-child(1),
.footerBoxAddress span:nth-child(1) {
  color: var(--primaryColor);
  margin-left: 10px;
}

.footerBoxAddress span:nth-child(2),
.footerBoxTell span:nth-child(2),
.footerBoxAddress span:nth-child(2) {
  line-height: 1.5;
}

.footerBoxTell a,
.footerBoxAddress a {
  color: var(--footerMainColor);
}

.copyRightMainBox .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
}

.copyRightMainBox .container::before,
.copyRightMainBox .container::after {
  content: none;
}

/* Footer(END) */

/* responsive */

@media screen and (max-width: 999px) {
  .itemSlider img {
    height: auto;
  }
  .CB-bodyCard {
    margin-bottom: 30px;
  }

  .productGroupTabs {
    position: relative;
    width: 90%;
    margin: auto;
  }

  .resHelpDivToControl {
    width: 100%;
    float: right;
    background: #313030;
    height: 80px;
    position: relative;
  }

  .cartShowBox {
    left: -13%;
  }

  .HB-leftFooter {
    flex-direction: column;
  }

  .HB-leftFooterNameBox {
    margin-bottom: 20px;
  }

  .homeBox .container {
    flex-direction: column;
  }

  .bgFoot .container div {
    margin-bottom: 15px;
  }

  .rightSideNavHeader {
    left: 2%;
  }

  .rightSideNavHeader i:nth-child(1) {
    display: none;
  }

  .rightSideNavHeader i:nth-child(2) {
    display: block;
    font-size: 29px;
  }

  .LA-body .owl-nav {
    display: none;
  }

  .LA-body .owl-dots {
    display: flex;
  }

  .productGroupTabs li {
    flex: 50%;
  }
}

/* responsive (END) */
