@charset "UTF-8";
@font-face {
  font-family: "light";
  src: url(../Fonts/tajawal/Tajawal-Light.ttf);
}

@font-face {
  font-family: "medium";
  src: url(../Fonts/tajawal/Tajawal-Medium.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../Fonts/tajawal/Tajawal-Regular.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../Fonts/tajawal/Tajawal-Bold.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  direction: rtl;
  text-decoration: none;
  font-family: 'light';
}

/***************************** Global Style *****************************/
h1, h2, h3 {
  font-family: "bold";
}

h4, h5, h6 {
  font-family: "medium";
}

p {
  font-size: 12px;
  font-family: 'regular';
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  text-decoration: none;
  color: #000;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.scroll-top-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(-135deg, #8f9196, #0073b6);
  color: #000;
  text-align: center;
  line-height: 50px;
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  background-color: #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  color: #fff;
}

.scroll-top-btn:hover i {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.scroll-top-btn i {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

/***************************** Animations *****************************/
@-webkit-keyframes growing {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes growing {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    margin-top: 200px;
  }
  100% {
    opacity: 1;
    margin-top: 0px;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    margin-top: 200px;
  }
  100% {
    opacity: 1;
    margin-top: 0px;
  }
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

/***************************** Navbar & Footer *****************************/
.navbar {
  padding: 1.5rem 1rem;
}

.navbar.bg-light {
  background-color: #F5F5F5 !important;
}

.navbar .search-btn {
  position: relative;
  right: 50px;
}

.navbar .nav-item {
  margin: 0px 10px;
}

.navbar .nav-item .nav-link {
  color: #000;
}

.navbar .nav-item .nav-link.active {
  font-weight: bold;
}

.navbar .nav-item .dropdown-menu {
  background-color: #202020;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
  color: #fff;
}

.navbar .nav-item .dropdown-menu .dropdown-item:hover {
  color: #202020;
}

.navbar .icons {
  position: relative;
  left: 0;
}

.navbar .icons .cart-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.navbar .icons .cart-btn .cart-icon {
  position: relative;
}

.navbar .icons .cart-btn .cart-icon .number {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  line-height: 17px;
  display: block;
  text-align: center;
  position: absolute;
  top: -5px;
  font-size: 10px;
  left: 10px;
}

.navbar .icons .cart-btn .total {
  margin-left: 15px;
  line-height: 25px;
  font-size: 14px;
}

.navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.navbar .search-container .search-wrap {
  position: absolute;
  height: 100%;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #eee;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

.navbar .search-container .search-wrap .container {
  position: relative;
  height: 100%;
}

.navbar .search-container .search-wrap.active {
  opacity: 1;
  visibility: visible;
}

.navbar .search-container .search-wrap .form-control {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  font-size: 15px;
  border: 1px solid transparent;
  padding: .475rem .75rem .375rem .75rem;
  background: #eee;
}

.navbar .search-container .search-wrap .form-control:focus {
  border: 1px solid #ccc;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar .search-container .search-wrap .search-close {
  z-index: 4;
  position: absolute;
  left: 20px;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.navbar .search-container .search-wrap .search-close span {
  font-size: 30px;
}

.navbar .dropdown-cart {
  width: 300px;
  position: absolute;
  top: 57px;
  left: 0px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 2px #cccccc;
          box-shadow: 0px 0px 10px 2px #cccccc;
  z-index: 99999;
  padding: 10px;
  border-top: 4px solid #202020;
  display: none;
}

.navbar .dropdown-cart::after {
  content: "";
  position: absolute;
  top: -29px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid transparent;
  border-bottom: 14px solid #000;
}

.navbar .dropdown-cart .header-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #dddddd;
}

.navbar .dropdown-cart .header-cart i {
  font-size: 18px;
}

.navbar .dropdown-cart .header-cart .total-price {
  font-family: 'medium';
  margin-bottom: 0;
}

.navbar .dropdown-cart .body-cart {
  padding: 10px 0px;
}

.navbar .dropdown-cart .body-cart .single-product {
  margin: 10px 0px;
}

.navbar .dropdown-cart .body-cart .single-product .image-content {
  width: 100%;
  height: 100px;
}

.navbar .dropdown-cart .body-cart .single-product .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .dropdown-cart .body-cart .single-product .text-content {
  text-align: right;
  line-height: 30px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.navbar .dropdown-cart .body-cart .single-product .text-content h5 {
  font-size: 15px;
}

.navbar .dropdown-cart .body-cart .single-product .text-content .details {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar .dropdown-cart .body-cart .single-product .text-content .details .price {
  color: #202020;
  margin-left: 5px;
}

.navbar .dropdown-cart .body-cart .single-product .text-content .details .quantity {
  color: #777;
  margin-right: 5px;
}

.navbar .dropdown-cart .footer-cart {
  border-top: 1px solid #dddddd;
  padding: 15px 0px;
  width: 100%;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar .dropdown-cart .footer-cart a {
  background-color: transparent;
  color: #202020;
  border-radius: 5px;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 8px 30px;
  margin: 0px 2px;
}

.navbar .dropdown-cart .footer-cart a i {
  margin-left: 4px;
}

.navbar .dropdown-cart .footer-cart a:hover, .navbar .dropdown-cart .footer-cart a.active {
  background-color: #202020;
  color: #fff;
}

footer {
  background-color: #202020;
  padding: 50px 0px 0px 0px;
}

footer .content {
  padding-bottom: 30px;
}

footer .content.social-content {
  direction: ltr;
  text-align: left;
}

footer .content.social-content a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 8px;
  font-size: 25px;
  color: #8E8E8E;
}

footer .content.social-content a:hover {
  color: #fff;
}

footer .content h6 {
  color: #fff;
  border-bottom: 1px solid #494646;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

footer .content p {
  color: #8E8E8E;
  font-family: 'light';
}

footer .content .links a {
  color: #8E8E8E;
  margin: 10px 0px;
  display: block;
  font-size: 15px;
}

footer .content .links a i {
  margin-left: 10px;
}

footer .content .links a:hover {
  color: #fff;
}

footer .content .links-footer a {
  font-size: 13px;
  margin: 15px 0px;
}

footer .copywrite {
  background-color: #2D2D2D;
  padding: 15px;
}

footer .copywrite p {
  color: #ccc;
  margin-bottom: 0;
}

/***************************** Start Edit Home Page *****************************/
header {
  background-color: #F5F5F5;
}

header .header-carousel {
  padding: 150px 0px;
}

header .header-carousel.owl-theme {
  position: relative;
}

header .header-carousel.owl-theme .owl-dots {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 50px;
}

header .header-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #202020;
}

header .header-carousel .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

header .header-carousel .header-text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

header .header-carousel .header-text h1 {
  font-family: 'medium';
}

header .header-carousel .header-text p {
  font-size: 18px;
  font-family: 'light';
  margin: 1.2rem 0rem;
}

header .header-carousel .header-text .buttons .link-btn {
  width: 150px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border: 1px solid transparent;
  background-color: transparent;
  font-family: 'medium';
  margin-top: 15px;
}

header .header-carousel .header-text .buttons .link-btn.active {
  border: 1px solid #202020;
  background-color: #202020;
  color: #fff;
}

header .header-carousel .owl-item.active .header-text {
  -webkit-animation: fadeInUp 2.5s forwards;
          animation: fadeInUp 2.5s forwards;
}

header .header-carousel .owl-item.active .image-content {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.features {
  padding: 50px 0px;
}

.features .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.features .item img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  top: 7px;
}

.features .item .text {
  padding: .375rem 1rem;
}

.sections {
  padding: 50px 0px;
}

.sections .text h4 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
}

.sections .text h4::after {
  content: '';
  width: 30px;
  height: 1px;
  display: block;
  background-color: #202020;
  position: absolute;
  right: -50px;
  top: 15px;
}

.sections .text h4::before {
  content: '';
  width: 30px;
  height: 1px;
  display: block;
  background-color: #202020;
  position: absolute;
  left: -50px;
  top: 15px;
}

.sections .sections-carousel {
  margin-top: 50px;
}

.sections .sections-carousel.owl-theme {
  position: relative;
}

.sections .sections-carousel.owl-theme .owl-dots {
  display: none;
}

.sections .sections-carousel.owl-theme .owl-nav {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 70%;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}

.sections .sections-carousel.owl-theme .owl-nav button {
  background-color: transparent;
  font-size: 50px;
  color: #CDCDCD;
  position: absolute;
}

.sections .sections-carousel.owl-theme .owl-nav button span {
  font-family: monospace;
}

.sections .sections-carousel.owl-theme .owl-nav button:hover {
  color: #202020;
}

.sections .sections-carousel.owl-theme .owl-nav .owl-prev {
  right: -50px;
}

.sections .sections-carousel.owl-theme .owl-nav .owl-next {
  left: -50px;
}

.sections .sections-carousel .card {
  border: none;
  background-color: #F2F2F2;
  height: 175px;
  padding: .75rem;
  -webkit-transition: .5s;
  transition: .5s;
  margin: 5px;
}

.sections .sections-carousel .card:hover {
  -webkit-box-shadow: 0px 0px 10px 0px #999;
          box-shadow: 0px 0px 10px 0px #999;
}

.sections .sections-carousel .card img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px auto 15px;
}

.products {
  padding: 50px 0px;
}

.products .text h4 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
}

.products .text h4::after {
  content: '';
  width: 30px;
  height: 1px;
  display: block;
  background-color: #202020;
  position: absolute;
  right: -50px;
  top: 15px;
}

.products .text h4::before {
  content: '';
  width: 30px;
  height: 1px;
  display: block;
  background-color: #202020;
  position: absolute;
  left: -50px;
  top: 15px;
}

.products .nav .nav-link {
  color: #202020;
  background-color: transparent;
  border-radius: 0px;
  margin: 1rem;
  padding: .375rem 0rem;
}

.products .nav .nav-link.active {
  font-family: bold;
  border-bottom: 1px solid #202020;
}

.products .products-carousel {
  position: relative;
}

.products .products-carousel.owl-theme .owl-dots {
  display: none;
}

.products .products-carousel.owl-theme .owl-nav {
  display: block;
  position: absolute;
  left: 0;
  top: -100px;
}

.products .products-carousel.owl-theme .owl-nav button {
  background-color: transparent;
  font-size: 40px;
  color: #CDCDCD;
  position: relative;
}

.products .products-carousel.owl-theme .owl-nav button span {
  font-family: monospace;
}

.products .products-carousel.owl-theme .owl-nav button:hover {
  color: #202020;
}

.products .products-carousel .card {
  border: none;
  margin: 5px 5px 20px 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.products .products-carousel .card .image-content {
  width: 100%;
  height: 350px;
  text-align: center;
  background-color: #F5F5F5;
  position: relative;
  overflow: hidden;
}

.products .products-carousel .card .image-content img {
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.products .products-carousel .card .image-content .discount-badge {
  background-color: #202020;
  color: #fff;
  text-align: center;
  width: 70px;
  height: 25px;
  position: absolute;
  top: 10px;
  right: 10px;
  line-height: 25px;
}

.products .products-carousel .card .image-content .discount-badge p {
  margin-bottom: 0rem;
}

.products .products-carousel .card .image-content .hover-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-transform: translateY(400px);
          transform: translateY(400px);
  -webkit-transition: .8s;
  transition: .8s;
}

.products .products-carousel .card .image-content .hover-img .overlay {
  width: inherit;
  height: inherit;
  background-color: #F9F9F9;
  opacity: .9;
  position: relative;
  z-index: 2;
}

.products .products-carousel .card .image-content .hover-img .content {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  text-align: center;
  z-index: 9;
}

.products .products-carousel .card .image-content .hover-img .content .icons a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0px 10px;
}

.products .products-carousel .card .image-content .hover-img .content .icons a img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.products .products-carousel .card .image-content .hover-img .content .icons a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.products .products-carousel .card .image-content .hover-img .content .link-btn {
  width: 180px;
  height: 35px;
  background-color: #202020;
  color: #fff;
  line-height: 35px;
  text-align: center;
  display: block;
  font-size: 13px;
}

.products .products-carousel .card .image-content .hover-img .content .link-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.products .products-carousel .card .card-body .text {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.products .products-carousel .card .card-body .text .rate {
  direction: ltr;
}

.products .products-carousel .card .card-body .text .rate i {
  font-size: 10px;
  margin-right: 1px;
  color: #BCBCBC;
}

.products .products-carousel .card .card-body .text .rate i.active {
  color: #202020;
}

.products .products-carousel .card .card-body .last-price {
  font-size: 17px;
  margin: .7rem 0rem 1rem .5rem;
}

.products .products-carousel .card .card-body .last-price span {
  font-family: 'bold';
}

.products .products-carousel .card .card-body .prev-price {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
  font-weight: bold;
}

.products .products-carousel .card:hover {
  -webkit-box-shadow: 0px 0px 10px 0px #ccc;
          box-shadow: 0px 0px 10px 0px #ccc;
}

.products .products-carousel .card:hover .hover-img {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.offers {
  padding: 50px 0px;
  position: relative;
  overflow: hidden;
}

.offers .offers-inner {
  background-color: #202020;
  padding-bottom: 150px;
}

.offers .offers-inner .image-container .phone-img {
  margin: auto;
  width: 200px;
  height: 230px;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: -50px;
  right: 185px;
}

.offers .offers-inner .image-container .circles-bg {
  position: absolute;
  top: -100px;
  left: 100px;
  -webkit-animation: growing 1.5s alternate infinite ease-in;
          animation: growing 1.5s alternate infinite ease-in;
}

.offers .offers-inner .image-container .offers-bagde {
  background-color: #f3f3f3;
  color: #333;
  text-align: center;
  width: 100px;
  height: 30px;
  display: block;
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 20px;
  line-height: 30px;
  direction: ltr;
  font-weight: bold;
}

.offers .offers-inner .image-container .offers-bagde p {
  margin-bottom: 0rem;
}

.offers .offers-inner .text {
  color: #fff;
  padding-top: 50px;
}

.offers .offers-inner .text h1 {
  font-family: 'medium';
}

.offers .offers-inner .text .link-btn {
  color: #fff;
  width: 130px;
  height: 40px;
  line-height: 40px;
  margin-top: 10px;
  background-color: transparent;
  display: block;
  text-align: center;
  font-family: 'medium';
}

.offers .offers-inner .text .link-btn i {
  color: #eee;
  position: relative;
  top: 2px;
  margin-left: 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.offers .offers-inner .text .link-btn:hover {
  background-color: #fff;
  color: #333;
}

.offers .offers-inner .text .link-btn:hover i {
  color: #444;
}

.offers .offers-inner .partners {
  position: absolute;
  bottom: 10px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 65%;
  margin: auto;
  background-color: #F5F5F5;
  padding: 30px 20px;
}

.offers .offers-inner .partners .item img {
  width: 100%;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: .5s;
  transition: .5s;
}

.subscribe {
  padding: 70px 0px 50px 0px;
}

.subscribe .text .form-group {
  position: relative;
}

.subscribe .text .form-group .form-control {
  width: 100%;
  background-color: #F5F5F5;
  border: 1px solid transparent;
  font-size: 15px;
  padding-right: 80px;
  height: calc(1.5em + 2rem + 2px);
  margin-top: 20px;
}

.subscribe .text .form-group .form-control::-webkit-input-placeholder {
  color: #8E8E8E;
}

.subscribe .text .form-group .form-control:-ms-input-placeholder {
  color: #8E8E8E;
}

.subscribe .text .form-group .form-control::-ms-input-placeholder {
  color: #8E8E8E;
}

.subscribe .text .form-group .form-control::placeholder {
  color: #8E8E8E;
}

.subscribe .text .form-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid transparent;
}

.subscribe .text .form-group .submit-btn {
  width: 65px;
  height: 55px;
  font-size: 25px;
  line-height: 55px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #202020;
  color: #fff;
  border: 1px solid #202020;
}

/***************************** Start Edit products Page *****************************/
.breadcrumb {
  background-color: #f5f5f5;
  margin: 15px 0px;
  padding: 20px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  -webkit-box-shadow: 5px 5px 8px #f1f1f1;
          box-shadow: 5px 5px 8px #f1f1f1;
}

.breadcrumb .breadcrumb-item {
  position: relative;
  padding: 0rem 1.375rem;
  font-size: 14px;
}

.breadcrumb .breadcrumb-item a {
  color: #999;
}

.breadcrumb .breadcrumb-item::before {
  display: none;
}

.breadcrumb .breadcrumb-item::after {
  content: '';
  display: block;
  position: absolute;
  top: -3px;
  left: -5px;
  width: 26px;
  height: 26px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.breadcrumb .breadcrumb-item.active {
  color: #000;
  font-weight: bold;
}

.products-wrapper {
  padding: 20px 0px 50px;
}

.products-wrapper .nav-pills .nav-link {
  border: 1px solid #eee;
  border-bottom: none;
  font-size: 14px;
  padding: .9rem 0.75rem;
}

.products-wrapper .nav-pills .nav-link.active {
  background-color: #f5f5f5;
  color: #000;
  font-weight: bold;
}

.products-wrapper .nav-pills .nav-link:last-child {
  border-bottom: 1px solid #eee;
}

.products-wrapper .product-type-header {
  margin: 10px;
}

.products-wrapper .product-type-header .content {
  margin: 20px 0px;
}

.products-wrapper .product-type-header .content img {
  width: 110px;
  height: 110px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #ccc;
  padding: 5px;
  margin-bottom: 10px;
}

.products-wrapper .product-type-header .content .text p {
  line-height: 1.4rem;
}

.products-wrapper .product-type-header .filtering h6 {
  margin-bottom: 1.4rem;
  color: #666;
}

.products-wrapper .product-type-header .filtering .checkbox-filtering .custom-control {
  margin-bottom: 10px;
}

.products-wrapper .product-type-header .filtering .checkbox-filtering .custom-control-label {
  font-size: 15px;
  color: #666;
  cursor: pointer;
  border: 1px solid #ccc;
  width: 100px;
  text-align: center;
  height: 30px;
  line-height: 30px;
}

.products-wrapper .product-type-header .filtering .checkbox-filtering .custom-checkbox .custom-control-label::before {
  opacity: 0;
  display: none;
}

.products-wrapper .product-type-header .filtering .checkbox-filtering .custom-control-input:checked ~ .custom-control-label {
  color: #202020;
  font-weight: bold;
  border: 1px solid #202020;
}

.products-wrapper .product-type-header .heading {
  width: 100%;
  padding: .75rem 1.375rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #f5f5f5;
  margin: 20px 0px;
  position: relative;
}

.products-wrapper .product-type-header .heading .btn-view {
  border: 1px solid transparent;
  color: #999;
  background-color: transparent;
  margin-left: 5px;
  line-height: 15px;
}

.products-wrapper .product-type-header .heading .btn-view.active {
  color: #202020;
}

.products-wrapper .product-type-header .heading .compare {
  color: #999;
  margin-right: 20px;
  font-weight: bold;
  font-size: 15px;
}

.products-wrapper .product-type-header .heading .compare:hover {
  color: #202020;
}

.products-wrapper .product-type-header .heading .sorting {
  float: left;
  position: absolute;
  left: 1.375rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.products-wrapper .product-type-header .heading .sorting .form-control {
  padding: 0rem .75rem;
  width: 150px;
  height: 25px;
  font-size: 12px;
}

.products-wrapper .product-type-header .products-inner .card {
  border: none;
  margin: 5px 5px 20px 5px;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 10px;
  border: 1px solid #ddd;
  position: relative;
}

.products-wrapper .product-type-header .products-inner .card::before {
  position: absolute;
  content: "";
  z-index: -1;
  bottom: 5px;
  left: 30px;
  right: 30px;
  top: 80%;
  background: #eee;
  -webkit-box-shadow: 0 0 30px 17px #999;
          box-shadow: 0 0 30px 17px #999;
  border-radius: 100px/10px;
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 0;
}

.products-wrapper .product-type-header .products-inner .card .image-content {
  width: 100%;
  height: 280px;
  text-align: center;
  background-color: #F5F5F5;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}

.products-wrapper .product-type-header .products-inner .card .image-content img {
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.products-wrapper .product-type-header .products-inner .card .image-content .discount-badge {
  background-color: #20913e;
  color: #fff;
  text-align: center;
  width: 70px;
  height: 25px;
  position: absolute;
  top: 10px;
  right: 10px;
  line-height: 25px;
}

.products-wrapper .product-type-header .products-inner .card .image-content .discount-badge p {
  margin-bottom: 0rem;
}

.products-wrapper .product-type-header .products-inner .card .card-body {
  position: relative;
}

.products-wrapper .product-type-header .products-inner .card .card-body .rate {
  direction: ltr;
  margin-bottom: 10px;
}

.products-wrapper .product-type-header .products-inner .card .card-body .rate i {
  font-size: 10px;
  margin-right: 1px;
  color: #BCBCBC;
}

.products-wrapper .product-type-header .products-inner .card .card-body .rate i.active {
  color: #202020;
}

.products-wrapper .product-type-header .products-inner .card .card-body .last-price {
  font-size: 17px;
  margin: .7rem 0rem 1rem .5rem;
}

.products-wrapper .product-type-header .products-inner .card .card-body .last-price span {
  font-family: 'bold';
}

.products-wrapper .product-type-header .products-inner .card .card-body .prev-price {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
  font-weight: bold;
}

.products-wrapper .product-type-header .products-inner .card .card-body .hover-img {
  width: 100%;
  height: 50px;
  -webkit-transition: .8s;
  transition: .8s;
  position: relative;
}

.products-wrapper .product-type-header .products-inner .card .card-body .hover-img .content {
  text-align: center;
  z-index: 9;
}

.products-wrapper .product-type-header .products-inner .card .card-body .hover-img .content .icons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.products-wrapper .product-type-header .products-inner .card .card-body .hover-img .content .icons a {
  margin: 0px 10px;
}

.products-wrapper .product-type-header .products-inner .card .card-body .hover-img .content .icons a img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.products-wrapper .product-type-header .products-inner .card .card-body .hover-img .content .icons a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.products-wrapper .product-type-header .products-inner .card .card-body .hover-img .content .link-btn {
  width: 180px;
  height: 35px;
  background-color: #202020;
  color: #fff;
  line-height: 35px;
  text-align: center;
  display: block;
  font-size: 13px;
}

.products-wrapper .product-type-header .products-inner .card .card-body .hover-img .content .link-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.products-wrapper .product-type-header .products-inner .card:hover::before {
  opacity: 1;
}

.products-wrapper .product-type-header .list-view .row > [class*='col-'] {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.products-wrapper .product-type-header .list-view .card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.products-wrapper .product-type-header .list-view .card .image-content {
  width: 30%;
  height: 200px;
}

.products-wrapper .product-type-header .list-view .card .image-content img {
  width: 150px;
  height: 150px;
}

@media (max-width: 575.98px) {
  .products-wrapper .product-type-header .list-view .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .products-wrapper .product-type-header .list-view .card .image-content {
    width: 100%;
  }
}

.products-wrapper .product-type-header .list-view .card .card-body {
  display: inline-block;
  text-align: right !important;
}

.products-wrapper .product-type-header .list-view .card .card-body .hover-img .content {
  text-align: right !important;
}

/***************************** Start Edit single product Page *****************************/
.single-product-wrapper {
  padding: 20px 0px 50px 0px;
}

.single-product-wrapper .swiper .swiper-container {
  width: 100%;
  height: 310px;
  margin-left: auto;
  margin-right: auto;
}

.single-product-wrapper .swiper .gallery-top {
  width: 100%;
}

.single-product-wrapper .swiper .gallery-top img {
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #ccc;
  background-color: #fff;
}

.single-product-wrapper .swiper .gallery-thumbs {
  height: 20%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  margin-bottom: 20px;
}

.single-product-wrapper .swiper .gallery-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.single-product-wrapper .swiper .gallery-thumbs img {
  width: 90px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  position: relative;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  padding: 5px;
}

.single-product-wrapper .swiper .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #202020;
}

.single-product-wrapper .swiper .swiper-button-prev.swiper-button-white,
.single-product-wrapper .swiper .swiper-container-rtl .swiper-button-next.swiper-button-white {
  width: 40px;
  height: 40px;
  background-color: #202020;
  border-radius: 50%;
  background-size: 20px 20px;
  background-position: center;
  opacity: .5;
}

.single-product-wrapper .swiper .swiper-button-prev.swiper-button-white:hover,
.single-product-wrapper .swiper .swiper-container-rtl .swiper-button-next.swiper-button-white:hover {
  opacity: 1;
}

.single-product-wrapper .product-img .small-images {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 10px 0px;
}

.single-product-wrapper .product-img .small-images img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5px;
  border: 1px solid #ccc;
  margin-left: 10px;
  background-color: #fff;
}

.single-product-wrapper .product-description {
  padding-top: 30px;
}

.single-product-wrapper .product-description .nav-tabs .nav-link {
  color: #555;
  border: none;
}

.single-product-wrapper .product-description .nav-tabs .nav-link.active {
  color: #202020;
  background-color: transparent;
  border-bottom: 1px solid #202020;
  font-weight: 600;
}

.single-product-wrapper .product-description .description {
  padding: 20px;
  font-size: 13px;
  color: #666;
  line-height: 1.6rem;
}

.single-product-wrapper .product-description .table {
  font-size: 13px;
  padding: 20px;
  margin-top: 20px;
}

.single-product-wrapper .product-description .reviews-container {
  padding: 20px;
  background-color: #f9f9f9;
  margin: 20px 0px;
  border-radius: 25px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #9993;
}

.single-product-wrapper .product-description .reviews-container .product-rate span {
  color: #cac4c4;
  font-size: 12px;
}

.single-product-wrapper .product-description .reviews-container .product-rate span.active {
  color: #fee700;
}

.single-product-wrapper .product-description .reviews-container .heading {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0px;
  border-bottom: 1px solid #ccc;
}

.single-product-wrapper .product-description .reviews-container .reviews-body p {
  font-size: 13px;
  padding: 10px 20px;
  color: #666;
  line-height: 1.6rem;
}

.single-product-wrapper .product-description .add-review-btn {
  margin: 10px auto;
  padding: .375rem 2.75rem;
  background-color: #202020;
  color: #fff;
  -webkit-transition: .5s;
  transition: .5s;
  border: 1px solid #202020;
}

.single-product-wrapper .product-description .add-review-btn:hover {
  background-color: #333;
  color: #eee;
}

.single-product-wrapper .product-description .review-label {
  color: #555;
  text-align: center;
  margin-bottom: 1.2rem;
}

.single-product-wrapper .product-description .form-review-container {
  padding: 20px;
  display: none;
  border-radius: 25px;
  background-color: #f9f9f9;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #9993;
  margin-top: 20px;
}

.single-product-wrapper .product-description .form-review-container .form-control {
  margin: 5px 0px;
  font-size: 12px;
  height: calc(1.5em + 1.75rem + 2px);
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #ccc;
  padding: .75rem 1.75rem;
}

.single-product-wrapper .product-description .form-review-container .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #202020;
}

.single-product-wrapper .product-description .form-review-container textarea {
  height: 200px !important;
}

.single-product-wrapper .product-description .form-review-container .rate-restuarant {
  padding: 10px 15px 25px 0px;
  margin: 5px 0px;
  border: 1px solid transparent;
  border-radius: 20px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.single-product-wrapper .product-description .form-review-container .rate-restuarant label {
  font-size: 12px;
  margin-bottom: 0;
}

.single-product-wrapper .product-description .form-review-container .rate-restuarant .rate {
  direction: rtl;
  text-align: right;
  display: block;
}

.single-product-wrapper .product-description .form-review-container .rate-restuarant .rate:not(:checked) > input {
  opacity: 0;
}

.single-product-wrapper .product-description .form-review-container .rate-restuarant .rate:not(:checked) > label {
  float: right;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 27px;
  color: #ccc;
}

.single-product-wrapper .product-description .form-review-container .rate-restuarant .rate:not(:checked) > label:before {
  content: '★ ';
}

.single-product-wrapper .product-description .form-review-container .rate-restuarant .rate > input:checked ~ label {
  color: #ffc700;
}

.single-product-wrapper .product-description .form-review-container .rate-restuarant .rate:not(:checked) > label:hover,
.single-product-wrapper .product-description .form-review-container .rate-restuarant .rate:not(:checked) > label:hover ~ label {
  color: #deb217;
}

.single-product-wrapper .product-description .form-review-container .rate-restuarant .rate > input:checked + label:hover,
.single-product-wrapper .product-description .form-review-container .rate-restuarant .rate > input:checked + label:hover ~ label,
.single-product-wrapper .product-description .form-review-container .rate-restuarant .rate > input:checked ~ label:hover,
.single-product-wrapper .product-description .form-review-container .rate-restuarant .rate > input:checked ~ label:hover ~ label,
.single-product-wrapper .product-description .form-review-container .rate-restuarant .rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
}

.single-product-wrapper .product-description .form-review-container .add-review {
  margin: 10px auto;
  padding: .375rem 2.75rem;
  background-color: #202020;
  color: #fff;
  -webkit-transition: .5s;
  transition: .5s;
  border: 1px solid #202020;
}

.single-product-wrapper .product-description .form-review-container .add-review:hover {
  background-color: #333;
  color: #eee;
}

.single-product-wrapper .product-details {
  margin: 10px;
  width: 100%;
}

.single-product-wrapper .product-details .reviews {
  display: inline-block;
  font-size: 12px;
  width: 100%;
  padding-bottom: 10px;
}

.single-product-wrapper .product-details .reviews .product-rate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.single-product-wrapper .product-details .reviews .product-rate span {
  color: #cac4c4;
  margin-left: 2px;
}

.single-product-wrapper .product-details .reviews .product-rate span.active {
  color: #fee700;
}

.single-product-wrapper .product-details .reviews a {
  color: #555;
  margin-right: 5px;
}

.single-product-wrapper .product-details .reviews a:hover {
  color: #F7C80D;
}

.single-product-wrapper .product-details .details {
  width: 100%;
}

.single-product-wrapper .product-details .details p {
  font-size: 12px;
  margin: .5rem 0rem;
}

.single-product-wrapper .product-details .details p b {
  margin-left: 5px;
}

.single-product-wrapper .product-details .details .custom {
  color: #20913e;
}

.single-product-wrapper .product-details .details .price {
  direction: ltr;
  font-weight: lighter;
  color: #555;
  margin: 1rem  0rem 0rem 0rem;
}

.single-product-wrapper .product-details .details .price span {
  font-weight: bold;
  font-size: 40px;
  color: #555;
}

.single-product-wrapper .product-details .details .tax {
  margin: 0;
}

.single-product-wrapper .product-details .quantity {
  margin: 25px 0px;
}

.single-product-wrapper .product-details .quantity .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #202020;
}

.single-product-wrapper .product-details .cart-btn {
  background-color: #202020;
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  text-align: center;
  color: #fff;
  border: 1px solid #202020;
  display: block;
  border-radius: 5px;
}

.single-product-wrapper .product-details .cart-btn i {
  margin-left: 5px;
}

.single-product-wrapper .product-details .buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px auto;
  text-align: center;
}

.single-product-wrapper .product-details .buttons .butn {
  width: 105px;
  background-color: #777;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  text-align: center;
  color: #fff;
  border: 1px solid #777;
  display: block;
  border-radius: 5px;
  margin: 0px 5px;
}

.single-product-wrapper .product-details .buttons .dropdown .dropdown-menu {
  min-width: auto;
  background-color: #777;
  padding: 0rem 1rem;
  border-radius: 0px;
  width: 104px;
  margin-right: 10px;
}

.single-product-wrapper .product-details .buttons .dropdown .dropdown-menu .dropdown-item {
  text-align: center;
  background-color: #777;
  color: #fff;
  border-bottom: 1px solid #ccc;
  padding: .75rem 0rem;
}

.single-product-wrapper .product-details .buttons .dropdown .dropdown-menu .dropdown-item:nth-child(1) {
  -webkit-animation: flipInX 1s both;
          animation: flipInX 1s both;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.single-product-wrapper .product-details .buttons .dropdown .dropdown-menu .dropdown-item:nth-child(2) {
  -webkit-animation: flipInX 1s both;
          animation: flipInX 1s both;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.single-product-wrapper .product-details .buttons .dropdown .dropdown-menu .dropdown-item:nth-child(3) {
  -webkit-animation: flipInX 1s both;
          animation: flipInX 1s both;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.single-product-wrapper .product-details .buttons .dropdown .dropdown-menu .dropdown-item:nth-child(4) {
  -webkit-animation: flipInX 1s both;
          animation: flipInX 1s both;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}

.single-product-wrapper .product-details .buttons .dropdown .dropdown-menu .dropdown-item:nth-child(5) {
  -webkit-animation: flipInX 1s both;
          animation: flipInX 1s both;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  border-bottom: none;
}

.single-product-wrapper .product-details .buttons .dropdown .dropdown-menu .dropdown-item:hover:nth-child(1) {
  color: #00E676;
}

.single-product-wrapper .product-details .buttons .dropdown .dropdown-menu .dropdown-item:hover:nth-child(2) {
  color: #0F92F3;
}

.single-product-wrapper .product-details .buttons .dropdown .dropdown-menu .dropdown-item:hover:nth-child(3) {
  color: #DD4F42;
}

.single-product-wrapper .product-details .buttons .dropdown .dropdown-menu .dropdown-item:hover:nth-child(4) {
  color: #1DA1F2;
}

.single-product-wrapper .product-details .buttons .dropdown .dropdown-menu .dropdown-item:hover:nth-child(5) {
  color: #0073B1;
}

/***************************** Start Edit register Page *****************************/
.register {
  padding: 50px 0px;
}

.register .register-inner {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
}

.register .register-inner .text p {
  margin: 1rem 0rem 0rem 0rem;
  color: #777;
}

.register .register-inner .text p a {
  color: #202020;
  font-weight: bold;
}

.register .register-inner form .form-group {
  position: relative;
  margin: 5px 5px 27px 5px;
}

.register .register-inner form .form-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #202020;
}

.register .register-inner form .form-group .floating-label {
  font-size: 13px;
  color: #999;
  position: absolute;
  pointer-events: none;
  top: 9px;
  right: 12px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.register .register-inner form .form-group input:focus ~ .floating-label,
.register .register-inner form .form-group input:not(:focus):valid ~ .floating-label {
  top: -25px;
  bottom: 0px;
  right: 5px;
  font-size: 14px;
  opacity: 1;
  color: #555;
  font-weight: bold;
}

.register .register-inner form .form-group .forget-pass {
  color: #777;
  font-size: 10px;
  float: left;
  margin: 10px 0px;
}

.register .register-inner form .custom-control label {
  font-size: 15px;
}

.register .register-inner form .custom-control .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #202020;
  background-color: #202020;
}

.register .register-inner form .submit-btn {
  background-color: #202020;
  color: #fff;
  width: 130px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  border: 1px solid #202020;
  margin: auto;
  font-size: 15px;
  position: relative;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

/***************************** Start Edit cart Page *****************************/
.cart-wrapper {
  padding: 20px 0px 50px 0px;
}

.cart-wrapper .table-responsive {
  padding-top: 30px;
  overflow-y: hidden;
}

.cart-wrapper .table-responsive img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.cart-wrapper .table-responsive form .input-group {
  width: 300px;
  margin: auto;
}

.cart-wrapper .table-responsive form .input-group .form-control:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
  border: 1px solid #202020;
}

.cart-wrapper .table-responsive form .input-group .butn {
  height: 38px;
  line-height: 35px;
  width: 40px;
  background-color: #202020;
  border: 1px solid #202020;
  color: #fff;
}

.cart-wrapper .accordion-wrapper .card .card-header {
  padding: .375rem;
  background-color: #f9f9f9;
}

.cart-wrapper .accordion-wrapper .card .card-header i {
  margin-left: 4px;
  color: #555;
}

.cart-wrapper .accordion-wrapper .card .card-header i.active {
  color: #20913e;
}

.cart-wrapper .accordion-wrapper .card .card-header .btn-link {
  width: 100%;
  text-align: right;
  color: #202020;
  text-decoration: none;
  font-size: 15px;
}

.cart-wrapper .accordion-wrapper .card .card-body form label {
  font-size: 14px;
  font-weight: bold;
  color: #555;
}

.cart-wrapper .accordion-wrapper .card .card-body form .form-group {
  position: relative;
}

.cart-wrapper .accordion-wrapper .card .card-body form .form-group .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #202020;
}

.cart-wrapper .accordion-wrapper .card .card-body form .submit-btn {
  width: 130px;
  height: 37px;
  border: 1px solid #202020;
  background: #202020;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.cart-wrapper .accordion-wrapper .card .card-body form .submit-btn.code-btn {
  position: absolute;
  left: 0;
  top: 0;
}

.cart-wrapper .accordion-wrapper .card .card-body form .submit-btn.centering {
  position: relative;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  margin: 10px 0px;
}

.cart-wrapper .checkout .checkout-summary {
  padding: 15px;
  margin: 15px 0px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.cart-wrapper .checkout .checkout-summary .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: .375rem;
}

.cart-wrapper .checkout .checkout-summary .item .price {
  font-weight: bold;
  font-size: 15px;
  direction: ltr;
}

.cart-wrapper .checkout .checkout-summary .item .price.active {
  font-size: 20px;
}

.cart-wrapper .checkout .checkout-summary .item:nth-child(4) {
  border-top: 1px solid #ccc;
  padding: .75rem .375rem;
}

.cart-wrapper .checkout .checkout-summary .item .buy-btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: #202020;
  border: 1px solid #202020;
  font-size: 15px;
  font-weight: bold;
  border-radius: 5px;
}

.cart-wrapper .modal .pay {
  margin: 15px;
}

.cart-wrapper .modal .pay .form-group {
  position: relative;
  margin-bottom: 30px;
  margin: auto;
  color: #888;
}

.cart-wrapper .modal .pay .form-group .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #2D2D2D;
  background-color: #2D2D2D;
  outline: none;
}

.cart-wrapper .modal .pay .form-group .custom-control-input:checked ~ .custom-control-label p {
  color: #2D2D2D;
}

.cart-wrapper .modal .pay .form-group .custom-control-label::after, .cart-wrapper .modal .pay .form-group .custom-control-label::before {
  right: -.5rem;
}

.cart-wrapper .modal .pay .form-group img {
  width: 40px !important;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  top: -10px;
}

.cart-wrapper .modal .pay .form-group img span {
  font-size: 17px;
}

.cart-wrapper .modal .pay .form-group img, .cart-wrapper .modal .pay .form-group input {
  display: inline-block;
  width: auto;
  margin-left: 10px;
}

.cart-wrapper .modal .pay .form-group label {
  display: contents;
}

.cart-wrapper .modal .pay .form-group label p {
  font-weight: bold;
}

.cart-wrapper .modal .card-details {
  display: none;
}

.cart-wrapper .modal .card-details .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #2D2D2D;
}

.cart-wrapper .modal .card-details label {
  font-size: 15px;
  font-weight: bold;
  color: #555;
}

.cart-wrapper .modal .card-details .selection {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.cart-wrapper .modal .card-details .selection .form-control {
  width: 100px;
}

.cart-wrapper .modal .card-details .ccv {
  float: left;
  display: -ms-grid;
  display: grid;
  text-align: left;
}

.cart-wrapper .modal .card-details .ccv .form-control {
  width: 150px;
  float: left;
  text-align: left;
}

.cart-wrapper .modal .btn-primary {
  background-color: #202020;
  border: 1px solid #202020;
  font-size: 13px;
  font-weight: bold;
  height: 40px;
  width: 140px;
  margin: auto;
}

/***************************** Start Edit Page Profile *****************************/
.profile {
  padding: 20px 0px 50px 0px;
}

.profile .profile-menu .image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #333;
  margin: auto;
  position: relative;
}

.profile .profile-menu .image-container img {
  width: inherit;
  height: inherit;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 7px solid #2D2D2D;
}

.profile .profile-menu .image-container input {
  position: absolute;
  bottom: 0;
  left: 64%;
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
  color: #222;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  border: none;
  opacity: 0;
}

.profile .profile-menu .image-container button {
  width: 35px;
  height: 35px;
  -webkit-box-shadow: 0px 0px 10px #555;
          box-shadow: 0px 0px 10px #555;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #000;
  position: absolute;
  right: 10px;
  bottom: 0px;
}

.profile .profile-menu .image-container button i {
  position: relative;
  top: 1px;
  cursor: pointer !important;
}

.profile .profile-menu .text {
  padding: 15px 0px;
}

.profile .profile-menu .text h5 {
  color: #707070;
}

.profile .profile-menu .text p {
  color: #A7A7A7;
  font-style: italic;
}

.profile .profile-menu .text .btn-dark {
  width: 100%;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0.575rem 0.75rem 0.375rem;
  color: #fff;
}

.profile .profile-menu .text .btn-dark i {
  margin-right: 3px;
}

.profile .profile-menu .text .btn-dark:hover {
  color: #fff;
}

.profile .profile-inner {
  padding: 10px 30px;
}

.profile .profile-inner .nav-tabs {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.profile .profile-inner .nav-tabs .nav-link {
  background-color: transparent;
  border-color: transparent;
  color: #D4D9DC;
  padding: 8px 70px;
}

.profile .profile-inner .nav-tabs .nav-link.active {
  color: #333;
  border-bottom: 1px solid #333;
}

.profile .profile-inner .info-container {
  margin-top: 20px;
  padding: 30px;
  border: 1px solid #ccc;
  margin-top: 30px;
  border-radius: 5px;
}

.profile .profile-inner .info-container .text {
  margin-bottom: 10px;
}

.profile .profile-inner .info-container .text .content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.profile .profile-inner .info-container .text .content span {
  text-transform: uppercase;
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 600;
}

.profile .profile-inner .info-container .text .content .edit-btn {
  cursor: pointer;
  color: #202020;
  font-size: 13px;
}

.profile .profile-inner .info-container .text .form-control {
  background-color: #f5f5f5;
  border: 1px solid transparent;
  height: 45px;
  line-height: 45px;
  border-radius: 20px;
  padding: .375rem 1.2rem;
}

.profile .profile-inner .info-container .text .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #555;
}

.profile .profile-inner .info-container .save-btn {
  width: 130px;
  height: 40px;
  line-height: 40px;
  background-color: #202020;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  border: 1px solid #202020;
  margin: 10px auto;
}

.profile .profile-inner .info-container .save-btn:hover {
  background-color: #fff;
  color: #202020;
}

.profile .profile-inner .favourites-container {
  padding: 40px 20px;
  border: 1px solid #ccc;
  margin-top: 30px;
  border-radius: 5px;
}

.profile .profile-inner .favourites-container .item {
  padding: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #9995;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  border-radius: 5px;
}

.profile .profile-inner .favourites-container .item .image-content {
  width: 100px;
  height: 100px;
}

.profile .profile-inner .favourites-container .item .image-content img {
  width: inherit;
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

.profile .profile-inner .favourites-container .item .item-details {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.profile .profile-inner .favourites-container .item .delete-item {
  position: relative;
  float: left;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 45px;
  opacity: 1;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  color: #202020;
  font-size: 14px;
}

.profile .profile-inner .favourites-container .item .delete-item:hover {
  background-color: #202020;
  color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.profile .profile-inner .orders-container.responsive-table {
  overflow-y: hidden;
}

.profile .profile-inner .orders-container .table {
  margin-top: 30px;
}

.profile .profile-inner .orders-container .table img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
/*# sourceMappingURL=style.css.map */