:root {
  --primary-color: #0a1735;
  --secondary-color: #0065ff;
  --light-blue:#00cbff;
  --orange-color:#f6673b;
  --light-color: #f6f5f8;
  --white-color:#ffffff;
  --gray-color: #cdcbcb;
  --red-color: #ff0000;
  --pink-color: #E50047;
  --font-family: "Open Sans", sans-serif;
  --font-size-base: 16px;
  --top-4: 4px;
  --top-10: 10px;
  --right-10: 10px;
  --width-30: 30px;
  --height-30: 30px;
  --rounded-radius:100%;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fw-semi: 500;
  --fw-medium: 600;
  --text-color: #505050;
  --warning-color:#ffb524;
  --blue-color: #01458e
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--light-color);
  color: var(--primary-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
p{
  color: var(--text-color);
}

ul, ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a, .btn, button, p {
  transition: all 0.4s ease;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.bg-dark {
  background-color: var(--primary-color) !important;
}
.bg-lightblue{
  background-color: var(--light-blue);
}
.bg-orange{
  background-color: var(--orange-color);
}
.bg-light-green {
  background-color: #c4fff6;
}

.top-4 {
  top: var(--top-4);
}

.width-30 {
  width: var(--width-30);
}

.height-30 {
  height: var(--height-30);
}

.bg-success, .btn-success {
  background-color: var(--secondary-color) !important;
}

.rounded-100 {
  border-radius: var(--rounded-radius);
}

.right-10 {
  right: var(--right-10);
}

.fs-12 {
  font-size: var(--fs-12);
}

.fs-13 {
  font-size: var(--fs-13);
}

.fs-14 {
  font-size: var(--fs-14);
}
.fs-15 {
  font-size: var(--fs-15);
}

.text-gray {
  color: var(--gray-color);
}
.text-primary{color:var(--primary-color)!important;}

.text-blue{
  color: var(--blue-color)!important;
}
.text-danger{
  color: var(--red-color)!important;
}
.text-secondary{
  color: var(--secondary-color)!important;
}
.text-pink{
  color: var(--pink-color);
}
.fw-semi {
  font-weight: var(--fw-semi)!important;
}

.fw-medium {
  font-weight: var(--fw-medium)!important;
}
@media screen and (min-width:1366px){
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1300px;
  }
}
@media screen and (min-width:1700px){
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1640px;
  }
}

.site-info{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.site-info .acc-nav{
  margin-left: .5rem;
  border-left: solid 1px var(--light-color);
}
.site-info .acc-nav a{
  padding: 0.275rem .5rem;
}
.site-info .nav li{
  padding: 0.275rem .5rem;
  font-size: var(--fs-14);
  color: var(--white-color);
  line-height: normal;
}
.site-info .nav a{
  font-size: var(--fs-14);
  color: var(--primary-color);
  line-height: normal;
}
.middle-header .hrd{
  width: calc(100% - 130px);
  padding-left: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
}
.middle-header .hrd .main-nav{
  width: calc(100% - 130px);
  padding-right: 1rem;
}
.logo{
  width: 130px;
}
.white-logo img{
  filter: brightness(0) invert(1);
}
.middle-header .logo a{
  display: block;
}
.middle-header .search{
  width: calc(100% - 600px);
}
.middle-header .search .form-control{
  border-radius: 3px;
  padding: 0 70px 0 1rem;
  line-height: 30px;
  font-size: 13px;
}
.middle-header .search .btn-search{
  border: none;
  width: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  color: var(--white-color);
}
.middle-header .cart{
  width: 130px;
  position: relative;
}
.total-cart-items{width: 23px; height: 23px; background-color: var(--secondary-color); display: flex; align-items: center; justify-content: center; border-radius: 100%; font-weight: 600; font-size: 12px;}
.cart-bx{
  width: calc(100% - 40px);
  padding-right: 10px;
  text-align: right;
}
.cart-bx .cart-value{
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}
.menu-header .cat-menu{display: flex; width: 100%; flex-wrap: wrap; justify-content: end;}
.menu-header .cat-menu li{width:auto; padding: 0 0.5rem; text-align: center;}
.menu-header .cat-menu li a{display: block; color: var(--primary-color);}
.menu-header .cat-menu li a figure {
  height: 30px;
  width: 30px;
  margin: 0 auto 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.menu-header .cat-menu li a figure img{max-height: 30px; width: auto;}
.menu-header .cat-menu li a .cat-name{display: block; font-size: var(--fs-15); font-weight: 500;}
.mobile-nav-toggle {
  position: fixed;
  right: 8px;
  top: 3px;
  width: 35px;
  height: 27px;
  background:none;
  color: #fff;
  z-index: 9999999;
  border: none;
  font-size: 38px;
  border: none;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
body.mobile-nav-active .mobile-nav-toggle{
  left: auto;
  right: 15px;
  top: 20px;
  color: #0a1735;
}
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 999999;
  overflow-y: auto;
  left: -150px;
  width: 150px;
  background: #fff;
  transition: 0.4s;
  padding-top: 1rem;
}
body.mobile-nav-active .mobile-nav {
  width: 100%;
  left: 0;
}
.mobile-nav .logo{
  text-align: center;
  width: 100px;
  margin: 0 auto;
}
.mobile-nav .logo a{
  display: block;
}
.mobile-nav .cat-menu{
  margin-top: 1rem;
}
.mobile-nav .cat-menu li{
  border-bottom: solid 1px #f8f9f0;
}
.mobile-nav .cat-menu li a{
  display: flex;
  width: 100%;
  align-items: center;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  padding: 1rem;
}
.mobile-nav .cat-menu li a figure{
  width: 40px;
  margin: 0;
}
.mobile-nav .cat-menu li a figure img{
  max-width: 30px;
  max-height: 30px;
}
.mobile-nav .cat-menu li a .cat-name{
  width: calc(100% - 40px);
  padding-left: 8px;
}
#site-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, .5);
  z-index: 999999999;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.error {
  font-size: 12px;
  color: #ff0000;
  display: block;
  width: 100%;
}
.cat_g_list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.cat_g_list li {
  padding: 0 0.375rem;
  text-align: center;
}
.cat_g_list li a {
  display: block;
  color: var(--primary-color);
  font-weight: var(--fw-medium);
  font-size: var(--fs-14);
}
.cat_g_list li .icon {
  width: 80px;
  height: 80px;
  border-radius: var(--rounded-radius);
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.cat_g_list li .icon img {
  max-width: 60px;
  max-height: 60px;
}
.cat_g_list li:last-child {
  padding-right: 0;
}
.prd-bx{
  border: solid 1px #eee;
  background-color: #fff;
  border-radius: 6px;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease,
  box-shadow 0.4s ease;
}
.prd-bx .product-img{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
}
.prd-bx .product-img img{
  max-height: 150px;
  width: auto;
  display: inline;
  transition:.3s all ease;-webkit-transition:.3s all ease;-moz-transition:.3s all ease;-o-transition:.3s all ease;-ms-transition:.3s all ease;
}
.prd-bx:hover:hover .product-img img{
  transform:scale(1.1);-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-o-transform:scale(1.1);-ms-transform:scale(1.1)
}

.prd-bx .product_content .title a {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
   max-height: 90px;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   color: var(--primary-color);
   font-size: 15px;
   line-height: 1.5;
   font-weight: 400;
}
.prd-bx .product_content .title a:hover{
  text-decoration: underline;
}
.prd-bx .btnBlock {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  width: 90%;
  margin:  0 auto;
  transform: translateY(-100%);
  transition: transform .3s ease, opacity .3s ease;
  z-index: 2;
}

.prd-bx:hover .btnBlock {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.prd-bx:hover{
  box-shadow:0px 4px 4px rgba(0,0,0,0.15);
}
.product_content .price .discount_price{
  font-size: 18px;
  font-weight: 600;
}
.product_content .price{
  margin:0.5rem 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product_content .price .origional_price{
  font-size: 13px;
  padding-left:8px;
  padding-top: 3px;
}
.product_content .price .origional_price i{
  font-size: 9px;
  vertical-align: middle;
}
.product-row .gridrow{
  display: flex;
  width: 100%;
  flex-wrap:wrap;
}
.gridrow .col-grid{
  width: 20%;
  padding: 0 0.5rem;
  margin-bottom: 20px;
}
.stock-status{
  position: relative;
  padding-left: 11px;
}
.stock-status:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 6px;
}
.stock-status.outstock:before{
  background-color: var(--red-color);
}
.stock-status.instock:before{
  background-color: #2c7e3f;
}
.product-info {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.product-info li {
  width: 100%;
  display: flex;
  font-size: 14px;
}
.product-info li .heading {
  padding-right: 5px;
  font-weight: 600;
}
.product-info li .value {
  padding-left: 5px;
}

.btn-success:hover {
  background-color: var(--primary-color) !important;
}

.btn-dark {
  background-color: var(--primary-color) !important;
  border: solid 1px var(--primary-color) !important;
}
.btn-dark:hover {
  background-color: var(--secondary-color) !important;
  border: solid 1px var(--secondary-color) !important;
}

footer.bg-white{
  border-top: solid 1px #f4f5f9;
}
.footer-address{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-address .icon{
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ddd;
  border-radius: 3px;
  color: #ababab;
}
.footer-address .coloum{
  width: calc(100% - 35px);
  padding-left: 1rem;
  font-size: 13px;
  color: #d8d8d8;
}
.footer-address .coloum p, .copyright{
  color: #d8d8d8;
}
footer li a {
  color: #d8d8d8;
  font-size: var(--fs-13);
  padding: 4px 0;
  display: inline-block;
}
footer li a:hover {
  font-weight: 600;
}
.page-header {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/cart-page-header-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.computer-categorie .computer-name{
  line-height: 40px;
}
.computer-categorie .computer-name a{
  color:var(--primary-color);
}
.computer-categorie .computer-name a:hover{
  color:var(--secondary-color);
}

.pagination {
  display: flex;
}

.pagination a {
  color: var(--bs-dark);
  text-decoration: none;
  transition: 0.5s;
  border: 1px solid var(--bs-secondary);
}

.pagination a.active {
  background-color: var(--bs-primary);
  color: var(--bs-light);
  border: 1px solid var(--bs-secondary);
}

.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

.nav.nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--bs-secondary) !important;
}
.nav .list-item{
  position:relative;
}
.nav li.drop-down .sub-menu {
  position: absolute;
  list-style: none;
  top: 100%;
  min-width: 200px;
  box-shadow: 0 2px 8px rgb(0,0,0,0.16);
  border: solid 1px #eee;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  background-color: #fff;
  z-index: 99;
  transition: all 0.4s ease;
  overflow: hidden;
}
.nav li.drop-down:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.nav li.drop-down .sub-menu li a {
  padding: 5px 10px;
  font-size: 14px;
  color: var(--primary-color);
  display: block;
}
.nav li.drop-down .sub-menu li a:hover{
  color: var(--white-color);
}
.table.table-middle tr td, .table.table-middle tr th{
  vertical-align: middle;
}
.form-group{
  position: relative;
}
.apply-coupon .form-control{
  font-size: 14px;
  padding: .375rem 7.6rem .375rem .375rem;
}
.apply-coupon .btn{position: absolute; top: 0; right: 0; height: 100%; border-radius: 0px 6px 6px 0px; font-size: 14px;}
.myshopbag.addrstep {
  display: flex;
  justify-content: space-between;
}
.add_new_address p a {
  color: var(--blue-color);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 3px 5px;
  border: solid 2px var(--blue-color);
  border-radius: 3px;
  text-transform: capitalize;
  font-weight: var(--fw-medium);
}
.product_list_cart.fill_address_cart_views {
  border: none;
  padding: 0;
  margin-top: 15px;
}
.out_box_address {
  width: 100%;
  margin: 0px;
  padding: 0px;
  height: 100%;
}
.address .address_type {
  text-transform: uppercase;
  font-size: 11px;
  color: #878787;
  vertical-align: middle;
  padding: 4px 7px;
  border-radius: 2px;
  background-color: #f0f0f0;
  font-weight: 500;
}
.form-check-selected .form-check{
  padding-left: 2.3rem;
}
.form-check-selected .form-check .form-check-input{
  margin-left: -2.3rem;
}
.form-check .form-check-label{cursor: pointer;}
.form-check-selected label{
  border: solid 1px transparent;
  padding: 0.5rem;
}
.form-check-selected input[type="radio"]{
  margin-top: 13px;
}
.form-check-selected input[type="radio"]:checked + label{ background-color: #fcf5ee; border: solid 1px #fbd8b4;}
.form-check-selected .form-check-input:checked{
  background-color: #ffc107;
  border: solid 1px #ffc107;
}
.form-check-input:focus{
  box-shadow: none;
}
.no_border .table.table-bordered{border:none;}
.no_border .table.table-bordered tr{border:none;}
.no_border .table.table-bordered tr td{border:none;}
.product-table .table tr td{
  padding: 3px 1px;
  font-size: 14px;
}
.product-table .table tr td:first-child{
  font-weight: 500;
}
.product-table .table {margin-bottom: 0;}
.owl-carousel .owl-nav button{
  position: absolute;
  top: 50%;
  width: 41px;
  height: 40px;
  margin-top: -20px!important;
  display: flex!important;
  align-items: center;
  justify-content: center;
  background: #fff!important;
  border-radius: 50%!important;
  border: solid 1px var(--gray-color)!important;
  color: var(--secondary-color)!important;
  font-size: 20px!important;
  box-shadow:0px 4px 4px rgba(0,0,0,0.15);
}
.owl-carousel .owl-nav button.owl-prev{
  left: -20px;
}
.owl-carousel .owl-nav button.owl-next{
  right: -20px;
}
.category-nav{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.category-nav > li{
  width: 100%;
  background-color: #f7f7f7;
  border-radius: 4px;
  margin-top: 0.5em;
}
.category-nav li:first-child{
  margin-top: 0;
}
.category-nav li .cat-nav a{
  display: block;
  padding:0.9em;
  font-size: var(--fs-14);
  color: var(--primary-color);
  font-weight: 600;
}
.category-nav li:hover {
  background-color: #edd8d0;
}
.category-nav li.active{
  background-color: #edd8d0;
}
.category-nav li .cat-nav .toogle-button{
  width: 30px;
  padding: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.category-nav li .cat-nav .toogle-button .bx-chevron-up{
  display: none;
}
.category-nav li.active .cat-nav .toogle-button .bx-chevron-up{
  display: block;
}
.category-nav li.active .cat-nav .toogle-button .bx-chevron-down{
  display: none;
}
.category-nav li .sub-nav{
  display: none;
}
.category-nav li .sub-nav li{
  margin-top: 0;
  border-bottom: solid 1px #e5c9bf;
  border-radius: 0;
}
.category-nav li .sub-nav li a{
  padding:8px 15px;
  width: 100%;
  font-weight: 500;
  display: block;
  font-size: var(--fs-14);
  color: #4f4f4f;
}
.category-nav li .sub-nav li a:hover{
  color: var(--primary-color);
  font-weight: 600;
}
.product-sub-heading-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.product-sub-heading-box>a {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  text-decoration-line: underline;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-sub-heading-box>a svg {
  fill: var(--blue-color);
}

.review{
  font-size: 13px;
  display: none;
  align-items: center;
  font-weight: 500;
}
.review .star-value{
  padding-right:2px;
}
.review .star{
  font-size: 10px;
}
.review .star .lni-star-filled{
  color: #e5822e;
}
/* zoom css start */
.zoom-container{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.zoom-thumbs{
  width: 60px;
  height: 380px;
  overflow-y: auto;
  overflow-x: hidden;
}
.zoom-thumbs a{
  display: flex;
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
  border: solid 1px #ddd;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
}
.zoom-thumbs a img{
  max-width: 40px;
  max-height: 40px;
}
.zoom-thumbs a.active{
  border: solid 1px #01a54f;
}
.zoomBlock{
  width: calc(100% - 80px);
  margin-left: 10px;
}
.zoom-area{
  width: 100%;
  padding: 0;
  border: solid 1px #ddd;
  display: flex;
  justify-content: center;
}
.zoomWrapper{
  position: relative;
}
.zoomWrapper img{
  max-height: 100%;
  object-fit: cover;
}
/* zoom css end */
.product-cat a{
  text-decoration: underline;
}
.product-cat a:hover{
  text-decoration: none;
}
.add-cart-row .quantity{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.quantity .input-group{
  width:120px;
  margin-left: 10px;
  border: solid 2px #0a1735;
  border-radius: 30px;
  height: 30px;
  align-items: center;
}
.quantity .numeric-input, .quantity .cartvalue{
  border:none;
  width: 50px;
  text-align: center;
  border-radius: 0px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  padding: 0;
}
.quantity .numeric-input:focus, .quantity .numeric-input:focus-visible{
  border: none;
  outline: none;
}
.quantity .input-group .btn{
  height:100%;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  border:none;
  font-weight: 600;
  font-size: 20px;
  background:none;
}

.add-cart-row{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
}
.add-cart-row .add-to-cart{
  width: 150px;
  margin-left: 1rem;
}
.add-cart-row .add-to-cart .btn{
  width: 100%;
  height: 100%;
}
.single-desp{
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 27px;
}
.custom-alert-box{
  position: absolute;
  top:30px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.cartAlert {
  position: fixed;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 550px;
  padding: .75rem 1.3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 30px;
  z-index: 99;
}
.middle-header .cart:hover .shopping-item {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.middle-header .cart .shopping-item {
  position: absolute;
  top: 50px;
  right: 0;
  width: 300px;
  background: #fff;
  padding: 15px 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.middle-header .cart .shopping-item .dropdown-cart-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #c8c8c8;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.middle-header .cart .shopping-item .dropdown-cart-header span {
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
}
.middle-header .cart .shopping-item .dropdown-cart-header a {
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
}
.middle-header .cart .shopping-list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.middle-header .cart .shopping-list li {
  width: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.middle-header .cart .shopping-list li a{
  display: block;
  padding: 10px 0;
}
.middle-header .cart .shopping-list li .cartBx{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cartBx .icon{
  width: 35px;
  height: 35px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #c8c8c8;
}
.cartBx .icon img{
  max-width: 28px;
  max-height: 28px;
}
.cartBx .pinfo{
  width: 140px;
  padding-left: 8px;
}
.cartBx .pinfo .title{
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--primary-color);
  font-weight: 600;
}
.cartBx .pinfo .quantity{
  color: var(--primary-color);
  font-weight: 600;
}
.cartBx .tvalue {
  width: calc(100% - 175px);
  font-size: 13px;
  text-align: right;
  color: var(--primary-color);
}
.middle-header .cart .shopping-item .bottom{
  margin-top: 5px;
  border-top: dotted 2px #989898;
  padding: 15px 0 0;
}
.middle-header .cart .shopping-item .bottom .total{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
}
.cart_item_list{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cart_item_list li{
  width: 100%;
  border-bottom: solid 1px #d8d8d8;
  padding: 1.75rem 0 1rem;
}
.cart_item_list li .cartgrid{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
.cart_item_list li .cartgrid .icon{
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 3px;
  border: solid 1px #f2f3f5;
}
.cart_item_list li .cartgrid .icon img{
  max-width: 120px;
  max-height: 120px;
}
.cart_item_list li .cartgrid .cartgrid_info{
  width: calc(100% - 280px);
  padding: 0 1rem;
}
.cart_item_list li .cartgrid .cartPrice{
  width: 150px;
  text-align: right;
}
.cartgrid_info .title a{
  color: var(--primary-color);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
   max-height: 80px;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
}
.cartgrid_info .product-table .table tr td{
  font-size: 13px;
}
.cartgrid_info .add-cart-row .quantity .btn-update{
  border: none;
  background: none;
  text-transform: uppercase;
}
.product-cart .proceed-to-buy{
  position: sticky;
  top: 30px;
}
.form-control {
  border-radius: 3px;
  border: 1px solid var(--gray-color);
  color: var(--primary-color);
  width: 100%;
  box-shadow: none;
  font-size: 14px;
}

.form-control:focus, .form-select:focus {
  border: 1px solid #01a54f;
  outline: 0;
  box-shadow: none;
}
.form-select{
  cursor: pointer;
}
.introduction .content h2{
  font-size: 33px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.introduction .content p{
  font-size: 18px;
  padding: 0 8%;
  color: var(--primary-color);
}
.introduction .content p b{
  font-style: italic;
  font-weight: 900;
}
.introduction .content p span {
  font-size: 15px;
  font-style: italic;
  letter-spacing: 1.5px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  margin: 60px 0 0;
  display: block;
}
.faqs p{
  margin-bottom: 6px;
  font-size: var(--fs-14);
}
.videosec {
  position: relative;
  background-color: black;
  height: 80vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}
.videosec video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.cart-order-list{
  display: flex;
  flex-wrap:wrap;
  width: 100%;
}
.cart-order-list li{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  font-size: 15px;
  justify-content: space-between;
  font-weight: 500;
}
.cart-order-list li .value{
  width:120px;
  text-align: right;
}
.cart-order-list li .head{
  width: calc(100% - 120px);
  padding-right: 10px;
}
.cart-order-list li:last-child{
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: dashed 1px #d8d8d8;
}
.delivered-address{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.delivered-address .address{
  width: calc(100% - 200px)
}
.address .footer-address .coloum {
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  color: #0a1735;
}
.address .footer-address .coloum p {
  color: #0a1735;
  margin-bottom: 10px;
  line-height: 1.5;
}
.address .footer-address .icon {
  border: 2px solid #656565;
  border-radius: 3px;
  color: #0a1735;
}
.circle {
  position: relative;
  padding: 6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 0 1px 1px #e8565663;
}
.btn-live{
  background: none;
  border: none;
  padding: 0;
}
.btn-live .circle{
  animation:pulse-animation-vc 3s infinite
}
.btn-live.btn-demo {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 10;
  background: var(--pink-color);
  padding: 5px 10px;
  border-radius: 10px;
  border: solid 1px #ddd;
}
.btn-live.btn-demo img{
  filter: brightness(0) invert(1);
}
@keyframes pulse-animation-vc{0%{box-shadow:0 0 #e8565663}to{box-shadow:0 0 0 30px #0000}}
.livedemopopup{
  width: 0;
  position: fixed;
  height: 100%;
  top: 0;
  bottom: 0;
  right: -340px;
  background: #fff;
  transition: all 0.4s ease;
  z-index: 99999;
}
.livedemopopup.show{
  width: 340px;
  right: 0;
}
.livecontent{
  padding: 10px 23px;
}
.btnClose{
  color: #01458e;
  padding: 0;
  background: none;
  border: none;
  font-size: 30px;
}
.privacy-policy p{
  color: var(--primary-color);
}
.sec-bx{
  display: flex;
  width: 100%;
  flex-wrap:wrap;
  align-items: start;
}
.sec-bx .icon{
  width: 40px;
}
.sec-bx .ssl{
  width: calc(100% - 40px);
  padding-left: 0.5rem;
}
.tpblog .icon{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tpblog .icon img{
  max-height: 50px;
  width: auto;
}
.tpblog .text{
  width: calc(100% - 60px);
  padding-left: 1rem;
}
.tagging_tags li a {
  background-color: #fff;
  border-radius: 2px;
  color: #26292c;
  padding: 3px 6px;
  position: relative;
  margin: 3px;
  font-size: 12px;
  border: 1px solid #ccc;
  display: inline-block;
}

.sec-blog .card-text {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
   max-height: 90px;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   line-height: 1.8;
}
.ps-sticky{
  position: sticky;
  top: 30px;
}
.article-content h2, .article-content h6{
  margin: 1rem 0;
}
.shopby{
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.shopby li{
  padding: 0 0.5rem;
  width: 33.33%;
}
.shopby li .brand-logo img{
  width: auto;
  max-height: 30px;
}
.shopby li .cat-img img{
  width: auto;
  max-height: 160px;
}
.secbg {
  border-radius: 10px;
  background-image: url(../images/lp-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}
/*# sourceMappingURL=style.css.map */
