@font-face {
  font-family: 'Droid';
  src: url('../fonts/droid.otf');
}

@font-face {
  font-family: 'LittleBird';
  src: url('../fonts/LittleBird.ttf');
}

@font-face {
  font-family: 'thunderball';
  src: url('../fonts/thunderball.ttf');
}

@font-face {
  font-family: 'Tourmaline-Lines';
  src: url('../fonts/tourmaline/Tourmaline-Lines.ttf');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

a {
  color: #111;
}

a:hover {
  color: #2ecc71;
  text-decoration: none;
  transition: all ease-in-out .3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

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

li {
  text-decoration: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.title-bg {
  font-size: 80px;
  top: 27px;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

.overflow-ellipsis {
  text-overflow: ellipsis;
}

/* Spacing */
.mt-15 {
  margin-top: 15px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

/* buttons */

.buttons .primary-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #222222;
  font-family: "Roboto";
  font-size: 15px;
  color: white;
  text-transform: uppercase;
}

.buttons .primary-btn:hover {
  background-color: orangered;
  color: white;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.primary-btn2 {
  font-size: 14px;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  padding: 13px 30px 12px;
  background: #333;
  border: none;
}

.primary-btn2:hover {
  background: orangered;
  color: #fff;
  cursor: pointer;
  transition: 500ms ease-out .2s;

}

#trans_back.primary-btn2 {
  font-size: 13px;
  color: #333;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
  padding: 13px 30px 12px;
  background: transparent;
  border: none;
  outline: none !important;
}

#trans_back.primary-btn2:hover {
  color: orangered;
  cursor: pointer;
  transition: 500ms ease-out .2s;
}


/*---------------------
  Breadcrumb
-----------------------

.breadcrumb-option {
  background-color: #333;
  padding: 25px 0 25px 0;
}

.breadcrumb__links a {
  font-size: 15px;
  font-weight: 500;
  color: #ffe;
  margin-right: 18px;
  display: inline-block;
  position: relative;
}

.breadcrumb__links a:after {
  position: absolute;
  right: -14px;
  top: 0;
  content: "/";
  font-family: "FontAwesome";
}

.breadcrumb__links a i {
  margin-right: 5px;
}

.breadcrumb__links span {
  font-size: 15px;
  font-weight: 500;
  color: var(--orange);
  display: inline-block;
}*/

/*---------------------
  Breadcrumb Opt 2
-----------------------*/

.breadcrumb-section {
  display: flex;
  align-items: center;
  padding: 45px 0 40px;

}

.breadcrumb__text h2 {
  font-size: 6vw;
  color: orangered;
  font-family: "Tourmaline-Lines", cursive;
  letter-spacing: 3px;
}

@media screen and (max-width: 500px) {
  .breadcrumb__text h2 {
    font-size: 15vw;
    color: #fff;
  }
}

.breadcrumb__option a {
  display: inline-block;
  font-size: 1.2em;
  font-family: "Rubik", sans-serif;
  color: #111;
  background: #fff;
  padding: 0 10px;
  border-radius: .3em;
  font-weight: 400;
  margin-right: 20px;
  position: relative;
  transition: ease-in-out .3s;
}

.breadcrumb__option a:hover {
  color: orangered;
}

.breadcrumb__option a:after {
  position: absolute;
  top: 2px;
  right: -16px;
  content: url(../../assets/ico/dot-arrow.png);
}

.breadcrumb__option span {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #ccc;
  padding: 0 10px;
  border-radius: .3em;
}

/*Breadcrumps Opt 2 End*/

/*login && signup modal*/
.modal .modal-title {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: orangered;
  font-family: "Tourmaline-Lines";
}

.modal .close {
  font-size: 15px;
  position: relative;
  top: 13px;
  right: 10px;
}

.login-page {
  margin: auto;
}

.form {
  z-index: 0;
  margin: 0 auto;
  padding: 45px;
  text-align: center;
  background-image: url(../img/gstorex-bg.png);
  background-position: center center;
  background-size: fill;
  background-repeat: no-repeat;
}

.form input {
  font-family: var(--main-font);
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 12px;
  padding: 18px;
  box-sizing: border-box;
  font-size: 15px;
}

.form button {
  font-family: var(--main-font);
  outline: 0;
  width: 100%;
  font-size: 16px;
  letter-spacing: 2px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  color: #fff;
  background: #111;
  font-weight: 600;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
}

.form button:hover,
.form button:active,
.form button:focus {
  background: orangered;
}

.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 15px;
}

.form .message a {
  color: var(--green);
  text-decoration: none;
}

/*login && signup modal*/


/*CONTACT US*/
/*Contact Info Btn*/

.contact-info-tray {
  position: fixed;
  right: -300px;
  width: 300px;
  height: auto;
  line-height: 46px;
  font-size: 14px;
  background: #fff;
  text-align: left;
  color: #333;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: -4px 0px 5px #00000036;
  color: #fff;
  z-index: 9999;
  padding: 20px 30px 30px 30px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact-info-tray.active {
  right: 0;
}

.contact-info-tray li.title {
  font-weight: 600;
  color: var(--orange);
  font-size: 15px;
}


.contact-info-tray .button {}

.contact-info-tray .button_tray .btn {
  padding: 0px;
  width: 100%;
  text-align: center;
  margin-top: 8px;
  height: 42px;
  line-height: 40px;
  border-radius: 30px;
  background: var(--orange);
  outline: none !important;
  display: inline-block;
  float: left;
  font-size: 13px;
  width: 100%;
  text-transform: uppercase;
}

.contact-info-tray li {
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 32px;
}

.btn-info-tray {
  position: absolute;
  left: -60px;
  width: 60px;
  height: 45px;
  background: none;
  top: 0;
  cursor: pointer
}

.btn-info-tray .btn-img {
  position: relative;
  font-size: 18px;
  top: 8px;
}

.tray_icons .fa-facebook {
  width: 25%;
  color: #3b5998;
  font-size: 20px;
}

.tray_icons .fa-twitter {
  width: 25%;
  color: #1DA1F2;
  font-size: 20px;
}

.tray_icons .fa-instagram {
  width: 25%;
  color: #111111;
  font-size: 20px;
}

/*Contact Info Btn End*/

/*Floating Social Icons
#floating-icons ul {
  list-style: none;
  position: fixed;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  z-index: 999999;
}

#floating-icons ul li a {
  display: block;
  margin-left: -2px;
  height: 60px;
  width: 60px;
  border-radius: 0 25px 25px 0;
  border: 2px solid #000;
  background: #fff;
  margin-bottom: 1em;
  transition: all 0.4s ease;
  color: #2980b9;
  text-decoration: none;
  line-height: 60px;
  position: relative;
}

#floating-icons ul li a:hover {
  cursor: pointer;
  width: 180px;
  color: #fff;
}

#floating-icons ul li a:hover span {
  left: 0;
}

#floating-icons ul li a span {
  padding: 0 30px 0 15px;
  position: absolute;
  left: -120px;
  transition: left 0.4s ease;
}

#floating-icons ul li a i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.5em;
}

#floating-icons ul li .facebook {
  background: rgba(39, 174, 96, .3);
  border-color: #4267B2;
  color: #111111;
}

#floating-icons ul li .facebook:hover {
  background: rgb(66, 103, 178);
}

#floating-icons ul li .instagram {
  background: rgba(230, 126, 34, .1);
  border-color: #e67e22;
  color: #111111;
}

#floating-icons ul li .instagram:hover {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

#floating-icons ul li .twitter {
  background: rgba(34, 167, 240, .1);
  border-color: #1DA1F2;
  color: #111111;
}

#floating-icons ul li .twitter:hover {
  background: rgba(34, 167, 240, 1);
}

#floating-icons ul li .whatsapp {
  background: rgba(210, 82, 127, .1);
  border-color: #25D366;
  color: #111111;
}

#floating-icons ul li .whatsapp:hover {
  background: rgb(37, 211, 102);
}*/

/*Floating Social Icons End*/

/*CONTACT US End*/

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  right: 15px;
  bottom: 15px;
  background: orangered;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  opacity: .86;
  transition: background 0.2s ease-in-out;
}

#main {
  margin-top: 70px;
  z-index: 3;
  position: relative;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header-area {
  position: relative;
  z-index: 200;
}

.top-header-area {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 60px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
}

.top-header-area .contact-info {
  position: relative;
  z-index: 1;
}

.top-header-area .contact-info a {
  display: inline-block;
  height: 40px;
  padding: 0 30px;
  line-height: 40px;
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
  border-right: 1px solid #ebebeb;
}

.top-header-area .contact-info a span {
  text-transform: uppercase;
}

.top-header-area .contact-info a:hover,
.top-header-area .contact-info a:focus {
  color: #1b1b1b;
}

@media only screen and (max-width: 767px) {
  .top-header-area .contact-info a {
    padding: 0 10px;
    font-size: 11px;
  }

  .top-header-area .contact-info a:last-child {
    border-right: none;
  }
}

@media only screen and (max-width: 767px) {
  .top-header-area .contact-info {
    border-bottom: 1px solid #ebebeb;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .top-header-area {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }
}

.wishlist_cart {
  height: 175px;
}

.wishlist {
  margin-right: 50px;
  position: relative;
}

.wishlist_icon img {
  width: 90%;
}

.wishlist_content {
  margin-left: 10px;
}

.wishlist_text a {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.wishlist_text a:hover {
  color: orangered;
}

.wishlist_count {
  margin-top: -2px;
  color: #a3a3a3;
  font-size: 14px;
}

.cart_icon {
  position: relative;
}

.cart_count {
  position: absolute;
  bottom: -1px;
  right: -10px;
  width: 23px;
  height: 23px;
  background: orangered;
  border-radius: 50%;
  text-align: center;
}

.cart_count span {
  display: block;
  line-height: 23px;
  font-size: 12px;
  color: #FFFFFF;
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
}

.cart_icon img {
  width: 90%;
}

.cart_content {
  margin-left: 20px;
  margin-right: 20px;
}

.cart_text a {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.cart_text a:hover {
  color: orangered;
}

.cart_price {
  font-size: 14px;
  color: #a3a3a3;
  margin-top: -2px;
}

/*CURRENCY DROPDOWN*/
.selected-item {
  margin-right: 50px;
  margin-left: 10px;
  position: relative;
  font-weight: 500;
  font-family: "Lora", sans-serif;
}
#cusSelectbox {
  height: 100%;
  width: 100%;
  border: 1px solid transparent;
  background-color: transparent;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
} 
.s-hidden {
  visibility: hidden;
}

@media only screen and (max-width: 573px) {
  .cart_icon img {
    width: 100%;
  }

  .wishlist_icon img {
    width: 100%;
  }

  .cart_count {
    bottom: -4px;
    right: -14px;
    width: 20px;
    height: 20px;
  }

  .cart_count span {
    line-height: 20px;
    font-size: 10px;
  }
}

.gstorex-main-menu {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 80px;
}

.gstorex-main-menu .classy-navbar {
  height: 85px;
}

.gstorex-main-menu .classynav ul li a {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 600;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gstorex-main-menu .classynav ul li a {
    padding: 0 8px;
  }
}

.gstorex-main-menu .classynav ul li a:hover,
.gstorex-main-menu .classynav ul li a:focus {
  color: rgba(0, 0, 0, 0.8);
}


.gstorex-main-menu .search-area {
  position: relative;
  z-index: 1;
}

.gstorex-main-menu .search-area form {
  position: relative;
  z-index: 10;
  width: 230px;
  height: 40px;
  margin: 0 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gstorex-main-menu .search-area form {
    width: 170px;
    margin: 0 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gstorex-main-menu .search-area form {
    margin: 15px auto;
  }
}

@media only screen and (max-width: 767px) {
  .gstorex-main-menu .search-area form {
    margin: 15px auto;
  }
}

.gstorex-main-menu .search-area form input {
  width: 100%;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #111 !important;
  padding: 0 15px 0 50px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 600;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.gstorex-main-menu .search-area form input:focus {
  border: 1px solid rgba(255, 68, 0, 0.7) !important;
  transition: all .3s ease-in-out;
}

.gstorex-main-menu .search-area form button {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: transparent;
  top: 0;
  left: 0;
  z-index: 10;
  border: none;
  text-align: center;
  cursor: pointer;
  outline: none;
}

.is-sticky .gstorex-main-menu {
  z-index: 1500 !important;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.register-login-area {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .register-login-area {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .register-login-area {
    text-align: center;
  }
}

.register-login-area a {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  height: 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #111;
  line-height: 40px;
}

.register-login-area a.active,
.register-login-area a:hover,
.register-login-area a:focus {
  background-color: #111;
  font-weight: 600;
  color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .register-login-area a {
    padding: 0 15px;
  }
}

/*CURRENCY DROPDOWN*/
#currency_opt select {
  max-width: 100px;
  font-size: 16px;
  border: 2px dotted lightgreen;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  padding: 0 10px;
}

/*Mini-Cart*/
/*Mini-Cart End*/


/*Shopping Cart*/
/*[ Cart ]
///////////////////////////////////////////////////////////
*/
/*[ Table ]
-----------------------------------------------------------
*/
/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
  width: 100%;
  min-height: 239px;
  padding-left: 15px;
  padding-right: 15px;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
}

/*[ Input NumProduct ]
///////////////////////////////////////////////////////////
*/
input.num-product {
  -moz-appearance: textfield;
  appearance: none;
  -webkit-appearance: none;
}

input.num-product::-webkit-outer-spin-button,
input.num-product::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wrap-table-shopping-cart {
  overflow: auto;
}

.container-table-cart::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 51px);
  background-color: #e6e6e6;
  top: 51px;
  left: 0;
}

.container-table-cart::after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 51px);
  background-color: #e6e6e6;
  top: 51px;
  right: 0;
}

.table-shopping-cart {
  border-collapse: collapse;
  width: 100%;
  min-width: 992px;
}

.table-shopping-cart .table-row {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.table-shopping-cart .column-1 {
  width: 225px;
  padding-left: 50px;
}

.table-shopping-cart .column-2 {
  width: 330px;
  padding-right: 30px;
}

.table-shopping-cart .column-3 {
  width: 133px;
  padding-right: 30px;
}

.table-shopping-cart .column-4 {
  width: 355px;
  padding-right: 30px;
}

.table-shopping-cart .column-5 {
  padding-right: 30px;
}

.table-shopping-cart .table-head th {
  font-family: "Montserrat";
  font-size: 1.3rem;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.5;
  text-transform: uppercase;
  padding-top: 16px;
  padding-bottom: 16px;
}

.table-shopping-cart td {
  font-family: "Poppins";
  font-size: 1rem;
  color: #555555;
  line-height: 1.5;
  padding-top: 37px;
  padding-bottom: 30px;
}

.table-shopping-cart .table-row .column-2 {
  font-size: 1rem;
}

/* ------------------------------------ */
.cart-img-product {
  width: 90px;
  position: relative;
}

.cart-img-product img {
  width: 100%;
}

.cart-img-product::after {
  content: url(../ico/close.png);
  /*font-family: "IcoFont";*/
  font-size: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  opacity: 0;
}

.cart-img-product:hover:after {
  cursor: pointer;
  opacity: 1;
}

/*Shopping Cart End*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*---------------------
  Categories
-----------------------*/

.categories {
  overflow: hidden;
  margin-top: 15px;
}

.categories .container-fluid {
  padding-right: 5px;
}

.categories__item {
  height: 314px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 30px;
  margin-bottom: 10px;
  margin-right: 10px;
}

@media screen and (min-width:550px)
{
  .categories__item.categories__large__item {
    height: 638px;
    padding-left: 70px;
  }
}

.categories__item.categories__large__item .categories__text {
  max-width: 480px;
}

.categories__item.categories__large__item .categories__text p {
  margin-bottom: 15px;
}

.categories__text h1.retroshadow {
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
  color: transparent;
  -webkit-text-stroke: 1px#0c0c0c;
  background: url(/assets/img/16.jpg);
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: back 40s linear infinite;
  letter-spacing: 0.05em;
}

.categories__text h4.insetshadow {
  font-family: "Poppins", sans-serif;
  font-size: 1.9rem;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px#0c0c0c;
  background: url(/assets/img/16.jpg);
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: back 40s linear infinite;
  letter-spacing: 0.05em;
}

.categories__text p {
  margin-bottom: 10px;
}

.categories__text a {
  font-size: 14px;
  color: #111111;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding: 0 0 3px;
  display: inline-block;
}

.categories__text a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: orangered;
  content: "";
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-bottom: 10px;
  overflow: hidden;
}

.section-bg {
  background-color: #f9fbf4;
}

.section-title {
  text-align: center;

}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #646c55;
}

.section-title #title-link {
  color: #111;
  display: flex;
  margin-right: 2.4rem;
  justify-content: flex-end;
  font-family: "Rubik", sans-serif;
  font-weight: lighter;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .25rem;
}

.section-title #title-link:hover {
  color: orangered;
  text-decoration-line: line-through;
  text-decoration-style: solid;
  transition: ease-out .4s;
  transition-delay: .3s;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 0;
}

.breadcrumbs .breadcrumb-hero {
  text-align: center;
  background: #2ecc71;
  padding: 20px 0;
  color: #fff;
}

.breadcrumbs .breadcrumb-hero h2 {
  font-size: 32px;
  font-weight: 500;
}

.breadcrumbs .breadcrumb-hero p {
  font-size: 14px;
  margin-bottom: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #565e49;
  content: "/";
}


/*--------------------------------------------------------------
# Single Product Section
--------------------------------------------------------------*/
.product-details {
  padding-top: 80px;
}

.product__details__pic__item {
  margin-bottom: 20px;
}

.product__details__pic__item img {
  min-width: 100%;
}

.product__details__pic__slider img {
  cursor: pointer;
}

.product__details__pic__slider.owl-carousel .owl-item img {
  width: auto;
}

.product__details__text h3 {
  color: #252525;
  font-weight: 700;
  margin-bottom: 16px;
}

/*Increment-Btn*/
.product__details__text .increment-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 0;
  border-radius: 3px;
  overflow: hidden;
  width: 136px;
  outline: none !important;
}


/*Increment numberInput Box*/
.product__details__text .increment-btn input.num-product {
  width: 50px;
  outline: none !important;
  height: 41px;
  font-family: "Poppins";
  font-size: 16px;
  color: #111;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.product__details__text .increment-btn .btn-num-product-down,
.product__details__text .increment-btn .btn-num-product-up {
  background-color: #111;
  outline: none !important;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 42px;
  height: 41px;
}

.product__details__text .increment-btn .btn-num-product-down:active,
.product__details__text .increment-btn .btn-num-product-down:hover,
.product__details__text .increment-btn .btn-num-product-up:active,
.product__details__text .increment-btn .btn-num-product-up:hover {
  background-color: orangered;
  color: white;
  transition: all ease-in-out .3s;
}

/*Increment-Btn End*/

.product__details__text .product__details__rating {
  font-size: 14px;
  margin-bottom: 12px;
}

.product__details__text .product__details__rating i {
  margin-right: -2px;
  color: #EDBB0E;
}

.product__details__text .product__details__rating span {
  color: orangered;
  margin-left: 4px;
}

.product__details__text .product__details__price {
  font-size: 30px;
  color: orangered;
  font-weight: 600;
  margin-bottom: 15px;
}

.product__details__text p {
  margin-bottom: 45px;
}

.product__details__text .primary-btn {
  padding: 16px 28px 14px;
  margin-right: 6px;
  margin-bottom: 5px;
}

.product__details__text ul {
  border-top: 1px solid #ebebeb;
  padding-top: 40px;
  margin-top: 50px;
}

.product__details__text ul li {
  font-size: 16px;
  color: #1c1c1c;
  list-style: none;
  line-height: 36px;
}

.product__details__text ul li b {
  font-weight: 700;
  width: 170px;
  display: inline-block;
}

.product__details__text ul li span samp {
  color: orangered;
}

.product__details__text ul li .share {
  display: inline-block;
}

.product__details__text ul li .share a {

  display: inline-block;
  font-size: 18px;
  color: #1c1c1c;
  margin-right: 25px;
}

.product__details__text ul li .share a:focus,
.product__details__text ul li .share a:hover {
  opacity: .89;
  transform: scale(2);
  transition: all ease-out .3s;
}

.product__details__text ul li .share a:last-child {
  margin-right: 0;
}


/*Accordion 2 Tabs*/
#tabs {
  background: rgba(161, 118, 77, 0.219);
}

#tabs .nav-tabs .nav-item .nav-link:hover,
#tabs .nav-tabs .nav-item .nav-link:focus {
  opacity: .9 !important;
}

#tabs li.nav-item {
  font-style: italic;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/*List style Information*/
.tab-pane .card-body .info {
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2%;
}

.tab-pane .card-body .info li {
  background: transparent;
  border: 1px solid #111;
  padding: 0 15px;
  margin: 3px auto;
  font-size: .8rem;
  border-radius: 4rem;
  text-align: center;
  justify-content: center;
}

/*List style Information End*/

/*Accordion 2 Tabs End*/

/*.product__details__quantity {
  display: inline-block;
  margin-right: 6px;
}

.product__details__tab {
  padding-top: 85px;
}

.product__details__tab .nav-tabs {
  border-bottom: none;
  justify-content: center;
  position: relative;
}

.product__details__tab .nav-tabs:before {
  position: absolute;
  left: 0;
  top: 14px;
  height: 1px;
  width: 250px;
  background: #ccc;
  content: "";
}

.product__details__tab .nav-tabs:after {
  position: absolute;
  right: 0;
  top: 14px;
  height: 1px;
  width: 250px;
  background: #ccc;
  content: "";
}

/*MEDIA QUERIES FOR LINE AFTER AND BEFORE TAB TITLES
@media (min-width: 992px) and (max-width: 1199px) {
  .product__details__tab .nav-tabs:after {
    width: 175px;
  }

  .product__details__tab .nav-tabs:before {
    width: 175px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product__details__tab .nav-tabs:after {
    width: 60px;
  }

  .product__details__tab .nav-tabs:before {
    width: 60px;
  }
}

/*END OF MEDIA QUERIES FOR LINE AFTER AND BEFORE TAB TITLES

.product__details__tab .nav-tabs li {
  margin-bottom: 0;
  margin-right: 65px;
}

.product__details__tab .nav-tabs li:last-child {
  margin-right: 0;
}

.product__details__tab .nav-tabs li a {
  font-size: 18px;
  color: #111111;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0;
}

.product__details__tab .product__details__tab__desc {
  padding-top: 44px;
}

.product__details__tab .product__details__tab__desc h6 {
  font-weight: 700;
  color: #333333;
  margin-bottom: 26px;
}

.product__details__tab .product__details__tab__desc p {
  color: #666666;
}*/

/*--------------------------------------------------------------
# Tabs Product Details Section
--------------------------------------------------------------*/


/*Star Rating System*/

.heading {
  font-size: 25px;
  margin-right: 25px;
}

.fa {
  font-size: 25px;
}

.nav-tabs {
  display: none;
}

@media(min-width:768px) {
  .nav-tabs {
    display: flex;
  }

  .card {
    border: none;
  }

  .card .card-header {
    display: none;
  }

  .card .collapse {
    display: block;
  }
}

@media(max-width:767px) {
  .tab-content>.tab-pane {
    display: block !important;
    opacity: 1;
  }
}

.checked {
  color: orange;
}

/* Three column layout */
.side {
  float: left;
  width: 15%;
  margin-top: 10px;
}

.middle {
  float: left;
  width: 70%;
  margin-top: 10px;
}

/* Place text to the right */
.right {
  text-align: right;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The bar container */
.bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: white;
}

/* Individual bars */
.bar-5 {
  height: 18px;
  background-color: #4CAF50;
}

.bar-4 {
  height: 18px;
  background-color: #2196F3;
}

.bar-3 {
  height: 18px;
  background-color: #00bcd4;
}

.bar-2 {
  height: 18px;
  background-color: #ff9800;
}

.bar-1 {
  height: 18px;
  background-color: #f44336;
}

/* Responsive layout - make the columns stack on top of each other instead of next to each other */
@media (max-width: 400px) {

  .side,
  .middle {
    width: 100%;
  }

  /* Hide the right column on small screens */
  .right {
    display: none;
  }
}

/*.stars label {
  float: right;
  font-size: 60px;
  color: lightgrey;
  margin: 0 5px;
  text-shadow: 1px 1px #bbb;
}

.stars label:before {
  content: '★';
}

.stars input:checked~label {
  color: gold;
  text-shadow: 1px 1px #c60;
}

.stars:not(:checked)>label:hover,
.stars:not(:checked)>label:hover~label {
  color: gold;
}

.stars input:checked>label:hover,
.stars input:checked>label:hover~label {
  color: gold;
  text-shadow: 1px 1px goldenrod;
}

.stars .result:before {
  position: absolute;
  content: "";
  width: 100%;
  left: 50%;
  transform: translateX(-47%);
  bottom: -30px;
  font-size: 30px;
  font-weight: 500;
  color: gold;
  font-family: 'Poppins', sans-serif;
  display: none;
}

.stars input:checked~.result:before {
  display: block;
}

.stars #five:checked~.result:before {
  content: "Absolutely Amazing 😍";
}

.stars #four:checked~.result:before {
  content: "Highly Recommended 😎";
}

.stars #three:checked~.result:before {
  content: "Product is Meh. 🙁";
}

.stars #two:checked~.result:before {
  content: "Kinda Trash 😒";
}

.stars #one:checked~.result:before {
  content: " WTF🤬";
}*/

/*Star Rating System End*/


/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/
.section-title {
  text-align: center;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 20px;
  padding-bottom: 20px;
  position: relative;
  color: inherit;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #eb6319;
  bottom: 0;
  left: calc(50% - 20px);
}

.ps__container {
  padding: 10px;
  position: relative;
}

@media (max-width: 1199px) {
  .section__title {
    min-width: 500px;
  }

  .section__title:before {
    font-size: 80px;
  }
}

@media (max-width: 991px) {
  .section__title {
    display: block;
    font-size: 25px;
  }

  .ps-section__title:before {
    font-size: 70px;
  }
}

@media (max-width: 767px) {
  .ps-section__title {
    min-width: 0;
    width: 100%;
    font-size: 20px;
    line-height: 60px;
  }

  .section__title:before {
    font-size: 60px;
  }
}

@media (max-width: 479px) {
  .section__title {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .section__title:before {
    font-size: 40px;
  }
}

/*Cards*/
.card-product {
  border: none !important;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.card-product .img-wrap {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  position: relative;
  height: 220px;
  text-align: center;
  border: none !important;
}

.card-product .img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  top: -50%;
  bottom: -50%;
  margin: auto;
}

.card-product .info-wrap {
  overflow: hidden;
  padding: 15px;
  border-top: 1px solid #eee;
}

.card-product .info-wrap .title {
  font-family: "Rubik", sans-serif;
  font-size: 1.2rem;
}

.card-product .bottom-wrap {
  padding: 15px;
  border-top: 1px solid #eee;
}

.card .info-wrap .title {
  white-space: nowrap;
  overflow: hidden;
}

.card-product .price-wrap {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
}

/*Cards End*/

/*---------------------
  Services
-----------------------*/

.services {
  padding-top: 80px;
  padding-bottom: 50px;
  background: #fff;
}

.services__item {
  padding-left: 65px;
  position: relative;
  margin-bottom: 20px;
}

.services__item h6 {
  color: #111111;
  font-weight: 600;
  margin-bottom: 5px;
}

.services__item p {
  margin-bottom: 0;
}

/*---------------------
  Contact
-----------------------*/

.contact {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact__address {
  margin-bottom: 45px;
}

.contact__address h5 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact__address ul li {
  list-style: none;
  position: relative;
  margin-bottom: 20px;
}

.contact__address ul li:last-child {
  margin-bottom: 0;
}

.contact__address ul li h6 {
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact__address ul li h6 i {
  font-size: 20px;
  color: orangered;
  margin-right: 5px;
}

.contact__address ul li p {
  margin-bottom: 0;
  font-size: 15px;
  color: #444444;
}

.contact__address ul li span {
  font-size: 15px;
  color: #444444;
  display: inline-block;
  margin-right: 25px;
  position: relative;
}

.contact__address ul li span:after {
  position: absolute;
  right: -15px;
  top: 11px;
  content: "|";
  line-height: 0;
}

.contact__address ul li span:last-child {
  margin-right: 0;
}

.contact__address ul li span:last-child:after {
  display: none;
}

.contact__form h5 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.contact__form form input {
  height: 50px;
  width: 100%;
  padding-left: 20px;
  font-size: 14px;
  color: #444444;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact__form form input::-webkit-input-placeholder {
  color: #444444;
}

.contact__form form input::-moz-placeholder {
  color: #444444;
}

.contact__form form input:-ms-input-placeholder {
  color: #444444;
}

.contact__form form input::-ms-input-placeholder {
  color: #444444;
}

.contact__form form input::placeholder {
  color: #444444;
}

.contact__form form textarea {
  height: 130px;
  width: 100%;
  padding-left: 20px;
  padding-top: 12px;
  font-size: 14px;
  color: #444444;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  margin-bottom: 14px;
  resize: none;
}

.contact__form form textarea::-webkit-input-placeholder {
  color: #444444;
}

.contact__form form textarea::-moz-placeholder {
  color: #444444;
}

.contact__form form textarea:-ms-input-placeholder {
  color: #444444;
}

.contact__form form textarea::-ms-input-placeholder {
  color: #444444;
}

.contact__form form textarea::placeholder {
  color: #444444;
}

.contact__map {
  height: 780px;
}

.contact__map iframe {
  width: 100%;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #141611;
  padding: 0 0 15px 0;
  color: #333;
  font-size: 16px;
}

#footer .footer-top {
  background: #eff6fa;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 3px;
  color: #77c977;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #333;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #3c4133;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  opacity: 80%;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #3c4133;
}

#footer .footer-top h4::after {
  background: orangered;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 5px 0 0 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 0 0 15px 0;
}

#footer .footer-top .footer-links ul a {
  color: #333;
  transition: 0.3s;
}

#footer .footer-top .footer-links ul a:hover {
  color: #2ecc71;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  background-color: #ccc;
  width: 65%;
  border-radius: 4px 0 0 4px;
  outline: none !important;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #111;
  border: 0;
  border-radius: 0 4px 4px 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #2ecc71;
}

#footer.copyright {
  text-align: center;
  padding-top: 30px;
}

.copyright .text-center {
  padding-top: 40px;
  color: #fff;
}


/*Add ons*/
/*---------------------
  Banner
-----------------------*/
.banner {
  max-height: 450px;
}

.banner__text {
  padding: 30px;
}

.banner__text span {
  font-size: 18px;
  padding-bottom: 10px;
  color: transparent;
  -webkit-text-stroke: 1px#0c0c0c;
  background: url(/assets/img/16.jpg);
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: back 40s linear infinite;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.banner__text h1 {
  font-size: 6vw;
  color: #111111;
  letter-spacing: .3rem;
  font-family: "Tourmaline-Lines";
  word-break: keep-all;
}

.banner__text a {
  font-size: 14px;
  color: #111111;
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
  padding: 0 0 3px;
  display: inline-block;
}

.banner__text a:hover {
  transform: scale(1.1);
}

.banner__text a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: orangered;
  content: "";
}

.banner__slider {
  text-align: center;
  /*padding: 30px 0 30px 0;*/
}

.banner__slider.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  top: 430px;
  width: 100%;
  text-align: center;
}

.banner__slider.owl-carousel .owl-dots button {
  height: 12px;
  width: 12px;
  background: #a1a1a1;
  border-radius: 50%;
  margin-right: 10px;
}

.banner__slider.owl-carousel .owl-dots button.active {
  background: var(--orange);
}

.banner__slider.owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
  margin-bottom: 45px;
}

.section-title h4 {
  color: #111111;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.section-title h4:after {
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 70px;
  background: var(--orange);
  content: "";
}

.title-bg {
  font-size: 80px;
  top: 27px;
}

/* Brands Section
--------------------------------*/
#brands {
  padding: 60px 0;
}

#brands img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#brands img:hover {
  opacity: 1;
  transform: scale(1.1);
}

#brands .owl-nav,
#brands .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#brands .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#brands .owl-dot.active {
  background-color: #18d26e;
}

/*----------------------------------
7. Recently Viewed
------------------------------------*/

.viewed {
  padding-top: 51px;
  padding-bottom: 60px;
  background: #eff6fa;
}

.viewed_title_container {
  border-bottom: solid 1px #dadada;
}

.viewed_title {
  margin-bottom: 14px;
}

.viewed_title_container h3 {
  font-size: 24px;
  font-weight: bold;
  font-family: "Poppins";
  text-transform: uppercase;
  color: inherit;
}

.viewed_nav_container {
  position: absolute;
  right: 15px;
  top: 10px;
}

.viewed_nav {
  display: inline-block;
  cursor: pointer;
}

.viewed_nav i {
  color: #dadada;
  font-size: 18px;
  padding: 5px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.viewed_nav:hover i {
  color: #606264;
}

.viewed_prev {
  margin-right: 15px;
}

.viewed_slider_container {
  padding-top: 50px;
}

.viewed_item {
  width: 100%;
  background: #FFFFFF;
  border-radius: 8px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 15px;
  padding-right: 15px;
}

.viewed_image {
  width: 100%;
  height: 115px;
}

.viewed_image img {
  display: block;
  max-height:115px;
  max-width: 100%;
}

.viewed_content {
  width: 100%;
  margin-top: 25px;
}

.viewed_price {
  font-size: 19px;
  color: #111;
  font-weight: 600;
}

.viewed_item.discount .viewed_price {
  color: #df3b3b;
}

.viewed_price span {
  position: relative;
  font-size: 17px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin-left: 8px;
}

.viewed_price span::after {
  display: block;
  position: absolute;
  top: 10px;
  left: -2px;
  width: calc(100% + 4px);
  height: 1px;
  background: #999999;
  content: '';
}

.viewed_name {
  margin-top: 3px;
  overflow: hidden;
}

.viewed_name a {
  font-size: 14px;
  color: #111;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

.viewed_name a:hover {
  color: orangered;
}

.item_marks {
  position: absolute;
  top: 18px;
  left: 18px;
}

.item_mark {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
}

.item_discount {
  background: #e74c3c;
  margin-right: 5px;
}

.item_new {
  background: #2ecc71;
}

.viewed_item.discount .item_discount {
  display: inline-block;
}

.viewed_item.is_new .item_new {
  display: inline-block;
}

/*---------------------
  Shop
-----------------------*/

/*General*/
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*General*/

.super_container {
  width: 100%;
  overflow: hidden;
  font-family: "Roboto", serif;
}

.shop {
  background: #FFFFFF;
  padding-top: 80px;
  padding-bottom: 100px;
}

.shop_content {
  width: 100%;
}

.shop_bar {
  border-bottom: dotted 1px #cccccc;
  padding-bottom: 14px;
  z-index: 1;
}

.shop_product_count {
  font-size: 1.1rem;
  font-weight: 500;
  float: left;
}

.shop_product_count span {
  color: orangered;
  font-style: italic;
}

/*********************************
5.1 Shop Products
*********************************/

.product_grid {
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -o-transform: translateX(-20px);
  transform: translateX(-20px);
  width: calc(100% + 40px);
}

.product_grid_border {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 3px;
  height: 100%;
  background: #FFFFFF;
  z-index: 1;
}

.product_item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 20%;
  background: #FFFFFF;
  cursor: pointer;
  padding-top: 40px;
  padding-bottom: 24px;
  text-align: center;
}

.product_border {
  display: block;
  position: absolute;
  top: 52px;
  right: 1px;
  width: 1px;
  height: calc(100% - 71px);
  background: #e5e5e5;
}

.product_image {
  width: 9rem;
  height: 8rem;
}

.product_image img {
  /*display: block;*/
  /*position: relative;
  /*max-width: 90%;*/
  object-fit: contain;
  max-height: 8rem;
}

.product_content {
  width: 100%;
}

.product_price {
  font-size: 17px;
  font-weight: 600;
  margin-top: 25px;
}

.product_item.discount {
  color: #df3b3b;
}

.product_price span {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin-left: 10px;
}

.product_price span::after {
  display: block;
  position: absolute;
  top: 6px;
  left: -2px;
  width: calc(100% + 4px);
  height: 1px;
  background: #8d8d8d;
  content: '';
}

.product_name {
  margin-top: 4px;
  overflow: hidden;
}

.product_name div {
  width: 100%;
}

.product_name div a {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  border: 0;
  outline: none !important;
  width: 95%;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 1.8rem 0 1.8rem;
}

.product_name div a:hover {
  color: orangered;
}

/*Add to Cart Btn*/
.product_item .add-to-cart img {
  display: flex;
  position: absolute;
  right: 13%;
  top: 60%;
}

.product_item .add-to-cart img:hover {
  transform: scale(1.15);
  transition: all ease .2s;
}

/*Add To Cart Tooltip*/
.tooltip-inner {
  background-color: orangered !important;
  color: #fff;
  text-transform: uppercase;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  border-left-color: orangered !important;
}

/*Add to Cart Btn*/

/*.product_fav {
  position: absolute;
  top: 33px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #fff;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.product_fav:hover {
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}

.product_fav .fa-heart {
  display: block;
  position: relative;
  right: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #c7d411;
  line-height: 36px;
  pointer-events: none;
  z-index: 0;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.product_fav.active i {
  color: red;
}

.product_item:hover .product_fav {
  visibility: visible;
  opacity: 1;
}*/

.product_marks {
  display: block;
  position: absolute;
  top: 33px;
  left: 24px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.product_mark {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #FFFFFF;
  text-align: center;
  line-height: 36px;
  font-size: 12px;
}

.product_new {
  /*display: none;*/
  background: orangered;
  visibility: visible;
  opacity: 1;
}

.product_discount {
  /*display: none;*/
  background: #2ecc71;
  visibility: visible;
  opacity: 1;
}

.product_item.is_new .product_new,
.product_item.discount .product_discount {
  display: inline-block;
  visibility: visible;
  opacity: 1;
}

/*********************************
5.2 Shop Page Navigation
*********************************/

.shop_page_nav {
  width: 100%;
  height: 50px;
  margin-top: 80px;
}

.page_prev,
.page_next {
  width: 50px;
  height: 100%;
  border: solid 1px #e5e5e5;
  border-radius: 5px;
  cursor: pointer;
}

.page_prev i,
.page_next i {
  font-size: 12px;
  color: #e5e5e5;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.page_prev:hover i,
.page_next:hover i {
  color: #636363;
}

.page_nav {
  border: solid 1px #e5e5e5;
  border-radius: 5px;
  margin-left: 15px;
  margin-right: 15px;
}

.page_nav li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-right: solid 1px #e5e5e5;
  cursor: pointer;
}

.page_nav li a {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.page_nav li:hover a {
  color: #0e8ce4;
}

.page_nav li:last-child {
  border-right: none;
}

/*********************************
6. Shop Sidebar
*********************************/

.shop_sidebar {
  width: 100%;
  -webkit-transform: translateX(-37px);
  -moz-transform: translateX(-37px);
  -ms-transform: translateX(-37px);
  -o-transform: translateX(-37px);
  transform: translateX(-37px);
}

.sidebar_title {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.sidebar_title::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: 0;
}

.sidebar_title::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #eb6319;
  bottom: 0;
  left: 0;
}

.sidebar_categories {
  margin-top: 37px;
}

.sidebar_categories li {
  margin-bottom: 7px;
}

.sidebar_categories li a {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.sidebar_categories li a:hover {
  opacity: .9;
  transition: all ease-in-out .3s;
}

.sidebar_subtitle {
  font-size: 17px;
  font-weight: 500;
  margin-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.sidebar_subtitle::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: 0;
}

.sidebar_subtitle::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #eb6319;
  bottom: 0;
  left: 0;
}


.brands_subtitle {
  margin-top: 27px;
}

.brands_list {
  margin-top: 37px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2%;
}

.brands_list li {
  background: orangered;
  padding: 5px 20px;
  border-radius: 4rem;
  text-align: center;
  justify-content: center;
}

.brand {
  margin-bottom: 7px;
}

.brand a {
  color: #fff;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.brand a:hover {
  color: #111;
}


/*---------------------
  Checkout
-----------------------*/

.checkout {
  padding-top: 80px;
  padding-bottom: 60px;
}

.checkout h6 {
  color: #999999;
  text-align: center;
  background: #f5f5f5;
  border-top: 2px dotted orangered;
  padding: 12px 0 12px;
  margin-bottom: 75px;
}

.checkout h6 span {
  font-size: 16px;
  color: orangered;
  margin-right: 5px;
}

.checkout h6 a {
  text-decoration: underline;
  color: #999999;
}

.checkout h6 a:hover {
  color: orangered;
}

.checkout__form h4 {
  color: #1c1c1c;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.checkout__form p {
  column-rule: #b2b2b2;
}

.checkout__input {
  margin-bottom: 24px;
}

.checkout__input p {
  color: #1c1c1c;
  margin-bottom: 20px;
}

.checkout__input p span {
  color: orangered;
}

.checkout__input input {
  width: 100%;
  height: 46px;
  border: 1px solid #ebebeb;
  padding-left: 20px;
  font-size: 16px;
  color: #b2b2b2;
  border-radius: 4px;
}

.checkout__input input.checkout__input__add {
  margin-bottom: 20px;
}

.checkout__input input::placeholder {
  color: #b2b2b2;
}

.checkout__input__checkbox {
  margin-bottom: 10px;
}

.checkout__input__checkbox label {
  position: relative;
  font-size: 16px;
  color: #1c1c1c;
  padding-left: 40px;
  cursor: pointer;
}

.checkout__input__checkbox label input {
  position: absolute;
  visibility: hidden;
}

.checkout__input__checkbox label input:checked~.checkmark {
  background: orangered;
  border-color: #ffe;
}

.checkout__input__checkbox label input:checked~.checkmark:after {
  opacity: 1;
}

.checkout__input__checkbox label .checkmark {
  position: absolute;
  left: 0;
  top: 4px;
  height: 16px;
  width: 14px;
  border: 1px solid #a6a6a6;
  content: "";
  border-radius: 4px;
}

.checkout__input__checkbox label .checkmark:after {
  position: absolute;
  left: 1px;
  top: 1px;
  width: 10px;
  height: 8px;
  border: solid white;
  border-width: 3px 3px 0px 0px;
  -webkit-transform: rotate(127deg);
  -ms-transform: rotate(127deg);
  transform: rotate(127deg);
  content: "";
  opacity: 0;
}

.checkout__order {
  background: #ffe;
  padding: 40px;
  padding-top: 30px;
}

.checkout__order h4 {
  color: #1c1c1c;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.checkout__order .checkout__order__products {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 10px;
}

.checkout__order .checkout__order__products span {
  float: right;
}

.checkout__order ul {
  margin-bottom: 12px;
}

.checkout__order ul li {
  font-size: 16px;
  color: #6f6f6f;
  line-height: 40px;
  list-style: none;
}

.checkout__order ul li span {
  font-weight: 700;
  float: right;
}

.checkout__order .checkout__order__subtotal {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  border-top: 1px solid #e1e1e1;
  padding-bottom: 15px;
  margin-bottom: 15px;
  padding-top: 15px;
}

.checkout__order .checkout__order__subtotal span {
  float: right;
}

.checkout__order .checkout__input__checkbox label {
  padding-left: 20px;
}

.checkout__order .checkout__order__total {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.checkout__order .checkout__order__total span {
  float: right;
  color: orangered;
}

.checkout__order button,
.checkout__order a {
  font-size: 18px;
  letter-spacing: 3px;
  width: 100%;
  margin-top: 10px;
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
  .checkout__order {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Tabs Product Details Section
--------------------------------------------------------------
.product__details__tab {
  margin: 50px;
}

@media (min-width: 768px) {
  .panel-heading {
    display: none;
  }

  .panel {
    border: none;
    box-shadow: none;
  }

  .panel-collapse {
    height: auto;
  }

  .panel-collapse.collapse {
    display: block;
  }
}

@media (max-width: 767px) {
  .tab-content .tab-pane {
    display: block;
  }

  .nav-tabs {
    display: none;
  }

  .panel-title a {
    display: block;
    border: 1px dotted orangered !important;
    font-size: .8em;
    padding: 1em;
    color: #111111;
  }

  .panel {
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    margin-top: -2px;
  }

  .tab-pane:first-child .panel {
    border-radius: 5px 5px 0 0;
  }

  .tab-pane:last-child .panel {
    border-radius: 0 0 5px 5px;
  }
}

.tab-content .panel-body .icofont-ul,
.tab-pane .panel-body .icofont-ul li {
  display: flex;
  padding: 0;
  margin: 0;
}

.tab-content .panel-body .icofont-ul span {
  color: orangered;
}

.tab-content ul span {
  color: orangered;
}

.tab-pane .panel-body .icofont-ul li {
  display: inline-block;
}

.tab-content .panel-body .icofont-ul {

  width: 100%;
  list-style: none;
  flex-wrap: wrap;
}

.tab-content .panel-body .icofont-ul li {
  flex-basis: 25%;
  flex-shrink: 0;
  flex-grow: 1;
}*/


/*
<div class="row">
  <div class="col-lg-8 col-md-8 col-sm-12 col-12 ">
    <h3 class="ps-section__title" data-mask="BEST SALE">- Top Selling</h3>
  </div>
  <div class="col-lg-4 col-md-4 col-sm-12 col-12 ">
    <a class="ps-section__title" href="#" target="_blank" rel="noopener noreferrer">View More..</a>
  </div>
</div>
DATA-MASK/ BACKGROUND TEXT
.ps-section__title {
  position: relative;
  z-index: 10;
  min-width: 50%;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #1d1d1d;
  line-height: 100px;
  text-transform: uppercase;
  min-width: 1000px;
}

.ps-section__title:before {
  content: attr(data-mask);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -4px;
  z-index: -1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1em;
  color: #e5f8d5;
  letter-spacing: .08em;
}

*/

@keyframes back {
  100% {
    background-position: 900px 0;
  }
}