.background_color_light {
  background-color: #f2f2f2 !important;
}

.background_color_white {
  background-color: white !important;
  border-radius: 10px !important;
}

.box_shadow_light {
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}

.padding_having_background_color {
  padding: 15px 10px;
}

@media only screen and (max-width: 575px) {
  .padding_having_background_color {
    padding: 5px;
  }
}

.border_radius_10 {
  border-radius: 10px;
  overflow: hidden;
}

/************************Font Sizes************************************/
.smallest-text {
  font-size: 0.7rem !important;
}

.small-text {
  font-size: 0.8rem !important;
}

@media only screen and (max-width: 475px) {
  .small-text {
    font-size: 0.7rem !important;
  }
}

.normal-text {
  font-size: 1rem !important;
}

.medium-text {
  font-size: 1.2rem !important;
}

.big-text {
  font-size: 1.5rem !important;
}

.bigger-text {
  font-size: 2rem !important;
}

.biggest-text {
  font-size: 3rem !important;
}

/************************Font Sizes ends************************************/
/************************Font Weight************************************/
.font_weight_300 {
  font-weight: 300 !important;
}

.font_weight_400, .normal_bold {
  font-weight: 400 !important;
}

.font_weight_500 {
  font-weight: 500 !important;
}

.font_weight_600, .bold_text {
  font-weight: 600 !important;
}

.font_weight_700, .bolder_text {
  font-weight: 700 !important;
}

.font_weight_800 {
  font-weight: 800 !important;
}

.font_weight_900, .boldest_text {
  font-weight: 900 !important;
}

/************************Font Weight ends************************************/
.max1200 {
  max-width: 1600px;
}

@media only screen and (max-width: 1600px) {
  .max1200 {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1400px) {
  .max1200 {
    max-width: 100%;
  }
}

.min1200 {
  min-width: 1600px;
}

@media only screen and (max-width: 1600px) {
  .min1200 {
    min-width: 1400px;
  }
}

@media only screen and (max-width: 1400px) {
  .min1200 {
    min-width: 1200px;
  }
}

@media only screen and (max-width: 1200px) {
  .min1200 {
    min-width: 1000px;
  }
}

@media only screen and (max-width: 1000px) {
  .min1200 {
    min-width: 800px;
  }
}

@media only screen and (max-width: 800px) {
  .min1200 {
    min-width: auto;
  }
}

:root {
  font-size: 16 px;
}

* {
  font-family: 'Roboto', sans-serif;
}

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

body {
  padding-top: 55px;
  overflow-x: hidden;
  background-color: #f2f2f2;
}

.hiddenInitial {
  display: none;
}

header {
  background: white;
  position: fixed;
  top: 0;
  -webkit-transition: top 1s ease-in-out;
  transition: top 1s ease-in-out;
  width: 100%;
  z-index: 9999;
}

.nav-up {
  top: -160px;
}

.tabcontent {
  display: none;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.top-header {
  background-color: #232f3e;
  text-align: center;
  color: white;
  font-size: 0.8rem;
  padding-top: 3px;
  padding-bottom: 3px;
  border-bottom: 1px solid #0FB943;
}

.company-slogan {
  color: #2169b8;
  display: inline-block;
  -webkit-transform: scaleX(0.9);
          transform: scaleX(0.9);
  font-weight: 900;
  margin-left: 25px;
}

.payment_logo {
  max-height: 5vh;
}

.dropdown-menu-right {
  top: 0 !important;
  z-index: 9999 !important;
  font-size: 0.7rem !important;
  text-align: left !important;
}

.top-header span:hover {
  color: #0FB943 !important;
}

.logo {
  height: 60px;
  margin-top: 10px;
  margin-left: 30px;
  margin-right: auto;
}

span.lower {
  -webkit-transform: scaleY(0.84);
          transform: scaleY(0.84);
  font-weight: bolder;
}

span.lower {
  display: inline-block;
}

.items-below-search-bar {
  text-decoration: none;
  list-style: none;
  font-size: 0.8rem;
  color: #9e9f9f;
  padding-left: 20px;
}

.items-below-search-bar li {
  padding-right: 12px;
}

.border-color-icon {
  border-color: #ffcc00 !important;
  background-color: #ffcc00 !important;
  color: white !important;
}

.mt-10 {
  margin-top: 50px;
}

.border-color {
  border: 2px solid #ffcc00;
}

.search-item {
  margin-top: 15px;
  margin-left: -20px;
}

.items-below-search-bar a {
  color: #9e9f9f;
}

.userIcon {
  margin-top: 45px;
}

.cart-margin {
  margin-top: 50px;
}

.fa-1-5x {
  color: #0FB943;
  font-weight: bolder;
}

@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}

@keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}

.bell-background {
  background-color: #1c6d90;
  color: white;
  padding: 4px 6px;
  border-radius: 100%;
}

.bell-background:hover {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.heart_nav {
  font-size: 1.4rem;
  color: #1c6d90;
}

.heart_nav:hover {
  -webkit-transform: rotateY(540deg);
          transform: rotateY(540deg);
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
  transition: transform 1s ease-out, -webkit-transform 1s ease-out;
}

.color-black {
  color: black !important;
}

/* navbar design */
.text-right {
  text-align: right;
}

.color-red {
  color: red;
}

.color-blue {
  color: darkblue;
}

.color-orange {
  color: #0FB943;
}

.color-orangered {
  color: #0b8a32;
}

.color-darkred {
  color: darkred;
}

.color-white {
  color: white;
}

.color-primary-color {
  color: #0FB943;
}

.left-menu-navbar {
  border-right: 1px solid #999999;
  padding-right: 20px;
}

.nav-inside-left {
  background-color: #f1f3f6;
  margin-left: 5px;
  padding: 10px 5px;
}

.each-item-navbar {
  padding: 5px 10px;
}

.each-item-navbar p {
  margin: 0px;
  font-size: 0.8rem;
}

.each-item-navbar i {
  margin: 0;
  padding-top: 3px;
}

.angle_design {
  position: relative;
  padding-right: 25px;
}

.angle_design::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  position: absolute;
  top: calc(50% - 10px);
  right: 15px;
  z-index: 100;
  color: #666;
}

.items_right_design {
  margin-left: 30px;
  line-height: 0.9;
}

.items_right_design a {
  color: #666;
  font-size: 0.8rem;
}

.items_right_design a:hover {
  color: #0FB943;
  text-decoration: underline;
  font-weight: bold;
}

.computer_games-container-navbar, .laptops_and_accessories-container-navbar, .fashion-container-navbar, .mobile_and_accessories-container-navbar {
  display: none;
}

.additionals-container-navbar, .learning_and_development-container-navbar, .accessories-container-navbar, .fashion-container-navbar, .laptops_and_accessories-container-navbar {
  display: none;
}

.login-wishlist-notification-div div {
  float: left;
}

.login-wishlist-notification-div {
  margin-top: 20px;
}

.input-group input:focus {
  outline: none !important;
}

.input-group .form-control {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  min-height: 40px !important;
  padding-left: 30px !important;
}

.input-group .form-control::-webkit-input-placeholder {
  font-size: 0.8rem;
}

.input-group .form-control:-ms-input-placeholder {
  font-size: 0.8rem;
}

.input-group .form-control::-ms-input-placeholder {
  font-size: 0.8rem;
}

.input-group .form-control::placeholder {
  font-size: 0.8rem;
}

.slider-navbar img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  max-height: 30vh;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-carousel-images {
  width: 100%;
  height: 100%;
  min-height: 40vh;
  max-height: 40vh;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.each-item-navbar:hover {
  background-color: #0FB943;
}

.each-item-navbar:hover a {
  color: white;
  text-decoration: none;
}

.each-item-navbar a {
  color: #666;
}

.each-item-navbar:hover .angle_design::after {
  color: white;
}

.nav-item-links {
  color: whitesmoke;
  text-decoration: none;
}

.first_navbar .nav-item-links:hover {
  color: white;
  text-decoration: none;
}

.first_navbar {
  background-color: white !important;
  border-radius: 0px !important;
}

.first_navbar .nav-link {
  color: black !important;
  font-weight: 600;
  font-size: 0.8rem;
}

.second_navbar {
  background-color: #232f3e !important;
}

.second_navbar .nav-link {
  color: white !important;
}

.first_navbar .nav-link:hover, .second_navbar .nav-link:hover {
  color: #0FB943 !important;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.first_navbar .active, .second_navbar .active {
  color: #0FB943 !important;
  background-color: white;
}

.second_navbar .input-group {
  width: 600px;
}

.second_navbar .input-group input {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-left: 50px;
  padding: 5px !important;
  padding-left: 20px !important;
}

.navbar-brand {
  color: black !important;
  font-weight: 900;
}

.width-25 {
  width: 25%;
}

.width-100 {
  width: 100%;
}

.your_profile {
  font-size: 1.0rem;
  color: whitesmoke !important;
}

.your_profile_topbar {
  color: black;
}

.smaller-text {
  font-size: 0.7rem !important;
}

.second_navbar .color-brand {
  color: #0FB943;
}

.line-height-medium {
  line-height: 15px;
}

/* adds some margin below the link sets  */
.first_navbar .navbar .dropdown-menu div[class*="col"] {
  margin-bottom: 0.3rem;
}

.first_navbar .navbar .dropdown-menu {
  border: none !important;
  background-color: transparent !important;
}

.outer-portion-navbar {
  background-color: #fbfdff !important;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  -webkit-box-shadow: 1px 1px 2px 1px silver;
          box-shadow: 1px 1px 2px 1px silver;
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

/* breakpoint and up - mega dropdown styles */
/* remove the padding from the navbar so the dropdown hover state is not broken */
.first_navbar .navbar {
  padding-top: 0px;
  padding-bottom: 0px;
}

/* remove the padding from the nav-item and add some margin to give some breathing room on hovers */
.first_navbar .navbar .nav-item {
  padding: .5rem .5rem;
  margin: 0 .25rem;
}

/* makes the dropdown full width  */
.first_navbar .navbar .dropdown {
  position: static;
}

.first_navbar .navbar .dropdown-menu {
  width: 80%;
  left: 50px;
  right: 0;
  /*  height of nav-item  */
  top: 35px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
}

@media screen and (min-width: 992px) {
  .first_navbar .navbar .dropdown-menu {
    display: block;
  }
  /* shows the dropdown menu on hover */
  .first_navbar .navbar .dropdown:hover .dropdown-menu, .first_navbar .navbar .dropdown .dropdown-menu:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media screen and (max-width: 992px) {
  .first_navbar .navbar .dropdown:hover .dropdown-menu, .first_navbar .navbar .dropdown .dropdown-menu:hover {
    display: block;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.dropdown > .dropdown-toggle:active {
  pointer-events: none;
}

.navbar-nav > li > a {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

.navbar {
  min-height: 22px !important;
}

.second_navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: -1;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  opacity: 1;
  -webkit-transition: 2s;
  transition: 2s;
}

@media only screen and (max-width: 991px) {
  .navbar .dropdown-menu {
    width: 100% !important;
    left: 2px;
  }
}

/* Cart Notification Design */
.lighter-text {
  color: #0FB943;
}

.main-color-text {
  color: #0FB943;
}

.cart {
  background-color: transparent;
  padding: 0px 20px;
  color: white;
  position: relative;
}

@-webkit-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.cart:hover .badge {
  cursor: pointer;
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -moz-animation-name: bounce;
}

.shopping_cart_btn_nav {
  position: relative;
}

.badge {
  background-color: white;
  border-radius: 10px;
  color: red;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 2px 4px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

.shopping-cart {
  margin: 0px 0;
  float: right;
  background: white;
  border: #0FB943;
  -webkit-box-shadow: 1px 1px 12px 1px #808080;
          box-shadow: 1px 1px 12px 1px #808080;
  width: 350px;
  position: absolute;
  display: none;
  border-radius: 3px;
  padding: 10px;
  right: -20px;
  z-index: 9999;
  top: 40px;
}

#my_profile {
  display: none;
  float: right;
  background: white;
  border: #0FB943;
  -webkit-box-shadow: 1px 1px 2px 1px #808080;
          box-shadow: 1px 1px 2px 1px #808080;
  width: 200px;
  position: absolute;
  border-radius: 3px;
  right: 100px;
  z-index: 9999;
  top: 50px;
  padding: 15px;
  font-size: 0.8rem;
}

.userNames {
  position: relative;
}

#my_profile_top {
  display: none;
  text-align: left;
  float: right;
  background: white;
  border: #0FB943;
  -webkit-box-shadow: 1px 1px 2px 1px #808080;
          box-shadow: 1px 1px 2px 1px #808080;
  width: 200px;
  position: absolute;
  border-radius: 3px;
  right: -24px;
  z-index: 9999;
  top: 55px;
  padding: 15px;
  font-size: 0.8rem;
}

.ship_to_images {
  height: 20px;
  float: right;
}

.ship_to, .language_topbar {
  display: none;
  text-align: left;
  background: white;
  -webkit-box-shadow: 1px 1px 2px 1px #808080;
          box-shadow: 1px 1px 2px 1px #808080;
  width: 150px;
  position: absolute;
  border-radius: 3px;
  right: 0px;
  z-index: 9999;
  top: 30px;
  padding: 15px;
  font-size: 0.8rem;
}

.ship-to-btn {
  position: relative;
}

.language-btn {
  position: relative;
}

.language_topbar {
  right: 15px;
}

header {
  z-index: 9999;
}

.my_profile .my_profile-items, .ship_to .ship_to-items, .language_topbar .language_topbar-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.my_profile .my_profile-items li, .ship_to .ship_to-items li, .language_topbar .language_topbar-items li {
  padding: 5px 15px;
}

.my_profile .my_profile-items li a, .ship_to .ship_to-items li a, .language_topbar .language_topbar-items li a {
  color: black;
  font-weight: 500;
}

.my_profile .my_profile-items li:hover a, .ship_to .ship_to-items li:hover a, .language_topbar .language_topbar-items li:hover a {
  color: white;
}

.my_profile .my_profile-items li:hover, .ship_to .ship_to-items li:hover, .language_topbar .language_topbar-items li:hover {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #0FB943;
}

.shopping-cart .shopping-cart-header {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 30px;
}

.shopping-cart .shopping-cart-header .shopping-cart-total {
  padding-bottom: 15px;
  float: right;
  padding-right: 20px;
  font-weight: bolder;
}

.shopping-cart .shopping-cart-items {
  padding-top: 20px;
  max-height: 310px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.shopping-cart .shopping-cart-items::-webkit-scrollbar {
  width: 5px;
}

.shopping-cart .shopping-cart-items::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.shopping-cart .shopping-cart-items::-webkit-scrollbar-thumb {
  background-color: #0FB943;
}

.shopping-cart .shopping-cart-items li {
  margin-bottom: 10px;
  list-style: none;
}

.shopping-cart .shopping-cart-items .item-name {
  display: block;
  padding-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.shopping-cart .shopping-cart-items .item-price {
  color: #0FB943;
  margin-right: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.shopping-cart .shopping-cart-items .item-quantity {
  color: #bab8bf;
  font-size: 0.8rem;
}

.shopping-cart:after, .language_topbar:after {
  bottom: 100%;
  left: 89%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: white;
  border-width: 8px;
  margin-left: -8px;
}

.shopping-cart:after {
  right: 0;
}

#my_profile:after, .ship_to:after {
  bottom: 100%;
  left: 70%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: white;
  border-width: 8px;
  margin-left: -8px;
}

#my_profile_top:after {
  bottom: 100%;
  left: 70%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #0FB943;
  border-width: 8px;
  margin-left: -8px;
}

.cart-icon {
  color: #0FB943;
  font-size: 24px;
  margin-right: 7px;
  float: left;
}

.button {
  background: #0FB943;
  color: white;
  text-align: center;
  padding: 6px 12px;
  text-decoration: none;
  display: block;
  border-radius: 3px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.1s ease;
  transition: background-color 0.1s ease;
}

.button:focus {
  outline: none;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}

.button:hover {
  background-color: #097229 !important;
  color: white !important;
}

.button:hover {
  background: #0FB943;
  color: white;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.shopping-cart-items img {
  max-width: 100%;
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0px auto;
}

/* Cart Notification Design Ends */
/* navbar design ends */
.search_navbar {
  padding-left: 15px !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 40% !important;
}

.toggle_btn_navbar {
  background-color: white;
  border: none;
}

.navbar_search_btn {
  background-color: #333e48;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border: none;
  color: white;
  text-align: center;
  padding: 0px 40px;
}

.nav_background {
  background-color: #0FB943;
}

.icons_nav {
  color: black;
  font-weight: 900;
}

.navbar_below_background {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

#section-testimonial2 .owl-theme .owl-dots .owl-dot.active span,
#section-testimonial2 .owl-theme .owl-dots .owl-dot:hover span {
  background: #0FB943;
}

#section-testimonial2 .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #20232e;
  border-radius: 2px;
}

#section-testimonial2 .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 75px;
  line-height: 0;
}

#section-testimonial2 .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #0FB943;
}

.owl-theme .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 0px;
  width: 100%;
}

@media only screen and (max-width: 575px) {
  .owl-theme .owl-dots {
    bottom: 5px;
  }
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #20232e;
  border-radius: 2px;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0px;
  line-height: 0;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0px;
}

.main_slider_aside {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color: #fdfdfd;
}

.main_slider h2 {
  margin: 0;
  font-size: 1rem;
}

.main_slider h3 {
  font-size: 3rem;
  font-weight: 400;
}

.main_slider h5 {
  font-size: 0.8rem;
}

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

.main_slider .slider_btn_group {
  background-color: #0FB943;
  padding: 10px 25px !important;
  color: black;
  border-radius: 5px;
}

.main_slider_home img {
  min-height: 400px;
  max-height: 400px;
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

@media only screen and (max-width: 991px) {
  .main_slider_home img {
    min-height: 150px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.inner_content_slider {
  margin-left: 80px;
  padding-top: 10px;
}

.text_uppercase {
  text-transform: uppercase;
}

.large_text {
  font-size: 3rem;
  font-weight: 900;
}

.slider_sidebar {
  padding: 20px 0px;
  border: 1px solid white;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.slider_sidebar img {
  max-height: 14vh;
  min-height: 14vh;
}

.slider_sidebar .ads_text {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: 45px;
  /* fallback */
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  height: 45px;
}

@media only screen and (max-width: 575px) {
  .slider_sidebar .ads_text {
    font-size: 0.8rem;
    height: 40px;
    max-height: 40px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: inherit;
}

.color_peepal, .primary-color {
  color: #0FB943;
}

.product_carousel_tab .nav-link {
  margin-right: 20px;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
  cursor: default;
}

@media only screen and (max-width: 380px) {
  .product_carousel_tab .nav-link {
    font-size: 0.8rem !important;
  }
}

.product_carousel_tab .nav-link:before {
  width: 0px;
  height: 2px;
  left: 50%;
  bottom: -1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: " ";
  background-color: #0FB943;
  position: absolute;
  opacity: 0;
  -webkit-transition: width 0.3s ease-in;
  transition: width 0.3s ease-in;
}

.product_carousel_tab .nav-link.active {
  font-weight: 700;
}

.product_carousel_tab .nav-link.active:before {
  width: 100%;
  opacity: 1;
}

.product_carousel_tab .nav-link.active::after {
  content: " ";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #0FB943;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
}

.product_carousel_tab .nav-link:hover:before {
  width: 100%;
  opacity: 1;
}

.product_carousel_tab .nav-link:hover::after {
  content: " ";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #0FB943;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.each_product_carousel {
  border: 1px solid #e6e6e6;
  background-color: white;
  padding: 10px 10px;
  margin: 10px 10px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.each_product_carousel.marginBottom {
  margin-bottom: 50px;
}

.each_product_carousel .shopping_cart {
  background-color: #e6e6e6;
  padding: 10px;
  border-radius: 100%;
  color: white;
}

.each_product_carousel .shopping_cart:hover {
  background-color: #0FB943;
  color: white;
  cursor: pointer;
}

.each_product_carousel .category {
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
}

.each_product_carousel .productName {
  font-size: 0.8rem;
  color: black;
  font-weight: 400;
  overflow: hidden;
  padding-right: 20px;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: 40px;
  /* fallback */
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  height: 40px;
}

@media only screen and (max-width: 475px) {
  .each_product_carousel .productName {
    font-size: 0.8rem;
    height: 40px;
  }
}

.each_product_carousel .product_image_container {
  max-height: 150px;
  min-height: 150px;
  overflow: hidden;
}

.each_product_carousel .product_image_container img {
  max-height: 150px;
  min-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  height: 100%;
  width: 100%;
}

.each_product_carousel .price {
  font-size: 1rem;
  font-weight: 600;
  color: black;
  line-height: 15px;
}

@media only screen and (max-width: 475px) {
  .each_product_carousel .price {
    font-size: 0.8rem;
  }
}

.each_product_carousel .wishList {
  font-size: 1rem;
  color: #666;
}

.each_product_carousel .rating i, .each_product_carousel .rating span {
  color: #0FB943;
  font-size: 0.7rem;
}

.each_product_carousel .border-top-product-carousel {
  border-top: 1px solid #e6e6e6;
}

.each_product_carousel .wishlist_btn {
  margin-top: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 0px;
  display: none;
}

.each_product_carousel .product_wishList_rating {
  position: relative;
  padding-top: 5px;
}

.each_product_carousel .product-footer {
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
  position: relative;
  width: 100%;
  left: 0px;
}

.each_product_carousel:hover {
  -webkit-box-shadow: 0 0.3rem 1.525rem -0.375rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.3rem 1.525rem -0.375rem rgba(0, 0, 0, 0.2);
  z-index: 999;
  overflow: hidden;
}

.each_product_carousel:hover .product_wishList_rating {
  opacity: 1;
}

.wishList_btn {
  cursor: pointer;
}

.wishlist_btn .fa-heart {
  background-color: #eaeaea;
  padding: 10px;
  border-radius: 100%;
}

.wishlist_btn .active {
  color: #0FB943 !important;
}

.section2_index {
  background-color: #f2f2f2;
}

.timer_index {
  color: #333e48;
}

.timer_index p {
  margin: 0;
  font-size: 0.9rem;
}

.timer_index .header_timer {
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 20px;
  position: relative;
}

.timer_index .header_timer::after {
  content: " ";
  border: 1px solid #0FB943;
  width: 50%;
  height: 2px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.timer_index h2 {
  font-size: 7rem;
  font-weight: 600;
}

.timer_index .small-text {
  font-size: 1.2rem;
}

.timer_index .timer_box {
  border: 2px solid #0FB943;
  margin-right: 5px;
  text-align: center;
  border-radius: 10px;
  padding: 5px 10px;
}

.timer_index .timer_box h3 {
  font-size: 1.2rem;
  font-weight: 500;
}

.each_product_carousel_design2 {
  background-color: #f2f2f2;
  margin: 10px;
  position: relative;
  border: 1px solid #f2f2f2;
}

.each_product_carousel_design2 .shopping_cart {
  background-color: #e6e6e6;
  padding: 10px;
  border-radius: 100%;
  color: white;
}

.each_product_carousel_design2 .category {
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
}

.each_product_carousel_design2 .productName {
  font-size: 1rem;
  color: black;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: 45px;
  /* fallback */
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  height: 45px;
}

@media only screen and (max-width: 475px) {
  .each_product_carousel_design2 .productName {
    font-size: 0.8rem;
    height: 40px;
  }
}

.each_product_carousel_design2 .product_image_container {
  max-height: 200px;
  min-height: 200px;
  overflow: hidden;
  background-color: white;
}

.each_product_carousel_design2 .product_image_container img {
  display: block;
  width: 100%;
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.each_product_carousel_design2 .price {
  font-size: 1rem;
  font-weight: 600;
  color: black;
  line-height: 15px;
}

.each_product_carousel_design2 .wishList {
  font-size: 1rem;
  color: #666;
}

.each_product_carousel_design2 .rating i {
  color: #0FB943;
  font-size: 0.8rem;
}

.each_product_carousel_design2 .wishlist_btn {
  border-top: 1px solid #e6e6e6;
  padding-top: 10px;
  margin-bottom: 0px;
}

.each_product_carousel_design2 .border-top-product-carousel {
  border-top: 1px solid white;
}

.each_product_carousel_design2:hover {
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
}

.each_product_carousel_design2:hover .shopping_cart {
  background-color: #0FB943;
  color: white;
}

.each_product_carousel_design2:hover .product_wishList_rating {
  display: block;
  opacity: 1;
}

.section_heading {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333e48;
  line-height: 1;
}

@media only screen and (max-width: 575px) {
  .section_heading {
    font-size: 1rem !important;
  }
}

.line_header {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  position: relative;
}

.line_header::after {
  content: " ";
  border: 1px solid #0FB943;
  width: 10%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.section_3 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section_3 ul li {
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #333e48;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.section_3 ul .active {
  font-weight: bolder;
  color: black;
}

.section_3 ul li:hover {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
  font-weight: bolder;
  color: black;
}

.image_wrapper_index {
  overflow: hidden !important;
}

.image_wrapper_index img {
  width: 100%;
  height: 100%;
  min-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.each_category {
  background-color: white;
  margin: 5px 5px;
  padding: 10px 0px;
}

.each_category .productName {
  font-size: 0.8rem;
  color: #333e48;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: 45px;
  /* fallback */
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  height: 45px;
}

.each_category .image_container {
  max-height: 100px;
  overflow: hidden;
  padding-right: 10px;
}

.each_category .image_container img {
  max-height: 100px;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.each_category:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.featured_product_design {
  border: 1px solid #e6e6e6;
  padding: 10px 20px;
  margin: 8px 8px;
  position: relative;
}

.featured_product_design .shopping_cart {
  background-color: #e6e6e6;
  padding: 10px;
  border-radius: 100%;
  color: white;
}

.featured_product_design .category {
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
}

.featured_product_design .productName {
  font-size: 1rem;
  color: black;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: 45px;
  /* fallback */
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  height: 45px;
}

.featured_product_design .product_image_container {
  max-height: 350px;
  min-height: 350px;
  overflow: hidden;
}

.featured_product_design .product_image_container img {
  max-height: 320px;
  min-height: 320px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  vertical-align: middle;
}

.featured_product_design .thumbnail_image_container {
  max-height: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.featured_product_design .thumbnail_image_container img {
  float: left;
  border: 1px solid #e6e6e6;
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px 5px;
}

.featured_product_design .price {
  font-size: 1rem;
  font-weight: 600;
}

.featured_product_design .product_margin {
  text-decoration: line-through;
  font-size: 0.8rem;
  color: #999999;
}

.featured_product_design .wishList {
  font-size: 1rem;
  color: #666;
}

.featured_product_design .rating i {
  color: #0FB943;
  font-size: 0.8rem;
}

.featured_product_design .wishlist_btn {
  border-top: 1px solid #e6e6e6;
  margin-top: 5px;
  padding-top: 10px;
  margin-bottom: 0px;
}

.featured_product_design:hover {
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
}

.featured_product_design .shopping_cart:hover {
  background-color: #0FB943;
  cursor: pointer;
  color: white;
}

.featured_product_design:hover .product_wishList_rating {
  display: block;
  opacity: 1;
}

.clients_image_wrapper {
  max-height: 7vh;
  overflow: hidden;
}

.clients_image_wrapper img {
  max-height: 7vh;
  opacity: 0.6;
  padding: 0px 20px;
}

.clients_image_wrapper img:hover {
  opacity: 1;
}

#product_carousel_index_design2 {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 0px;
}

.product_list_view {
  padding: 10px 5px;
  margin: 8px 0px;
  position: relative;
  border-radius: 10px;
}

.product_list_view .shopping_cart {
  background-color: #e6e6e6;
  padding: 10px;
  border-radius: 100%;
  color: white;
}

.product_list_view .category {
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
}

.product_list_view .productName {
  font-size: 0.8rem;
  color: black;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: 45px;
  /* fallback */
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.product_list_view img {
  max-height: 100px;
  min-height: 100px;
  height: 100%;
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product_list_view .price {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.product_list_view .product_margin {
  text-decoration: line-through;
  font-size: 0.8rem;
  color: #999999;
  margin: 0;
}

.product_list_view .wishList {
  font-size: 1rem;
  color: #666;
}

.product_list_view .rating i {
  color: #0FB943;
  font-size: 0.8rem;
}

.product_list_view .product_rating {
  margin: 0;
}

.product_list_view:hover {
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
}

.product_list_view:hover .shopping_cart {
  background-color: #0FB943;
  color: white;
}

.product_list_view:hover .product_wishList_rating {
  display: block;
  opacity: 1;
}

.newspaper_footer {
  color: #666;
  background-color: #0FB943;
  padding-top: 15px;
}

.newspaper_footer .big-text {
  font-size: 1.8rem;
  font-weight: 300;
}

.newspaper_footer p {
  font-size: 2rem;
  font-weight: 300;
}

.newspaper_footer .right_text {
  font-weight: bold;
  font-size: 1rem;
  padding-top: 15px;
}

.margin-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #666;
}

.inline-text p {
  display: inline-block;
}

.offer_of_product {
  position: absolute;
  background-color: #0FB943;
  color: white;
  width: 30px;
  height: 35px;
  top: 0;
  right: 0;
  text-align: center;
  padding-top: 5px;
  z-index: 500;
}

.offer_of_product p, .offer_of_product span {
  margin: 0;
  font-size: 0.7rem;
  line-height: 12px;
}

.offer_of_product .smallest_text {
  font-size: 0.7rem;
}

.offer_of_product::after {
  content: " ";
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid #0FB943;
  position: absolute;
  top: 35px;
  right: 0;
}

.address_footer {
  font-size: 0.9rem;
}

.section_footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section_footer ul li {
  width: 100%;
  margin-bottom: 5px;
  font-size: 0.8rem;
  color: #333e48;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.section_footer ul .active {
  font-weight: bolder;
  color: black;
}

.section_footer ul li:hover {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
  font-weight: bolder;
  color: black;
}

.footer_rights_reserved_row {
  background-color: #eaeaea;
  padding: 10px 0px;
}

.footer_rights_reserved_row p {
  margin: 0px;
}

.footer_company_info h2 {
  font-size: 2rem;
  font-weight: bolder;
}

.footer_company_info p {
  margin: 0px;
}

.footer_company_info .small-text {
  font-size: 0.8rem;
}

.footer_company_info .call_icon {
  color: #0FB943;
}

.footer_company_info h4 {
  font-size: 1.5rem;
  font-weight: 400;
}

.footer_company_info .social_media_footer {
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer_company_info .social_media_footer i {
  font-size: 1.5rem;
  opacity: 0.7;
  margin-right: 20px;
}

.footer_company_info .social_media_footer .fa-facebook-square:hover {
  color: #3b5998;
  opacity: 1;
}

.footer_company_info .social_media_footer .fa-whatsapp:hover {
  color: #25D366;
  opacity: 1;
}

.footer_company_info .social_media_footer .fa-linkedin:hover {
  color: #0077B5;
  opacity: 1;
}

.footer_company_info .social_media_footer .fa-twitter-square:hover {
  color: #38A1F3;
  opacity: 1;
}

.footer_company_info .social_media_footer .fa-google-plus-square:hover {
  color: #CC3333;
  opacity: 1;
}

.footer_company_info .social_media_footer .fa-youtube:hover {
  color: #c4302b;
  opacity: 1;
}

/* Category Page Design */
.category_sidebar_section .design1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category_sidebar_section .design1 ul li {
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #333e48;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.category_sidebar_section .design1 ul .active {
  font-weight: bolder;
  color: black;
}

.category_sidebar_section .design1 ul li:hover {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
  font-weight: bolder;
  color: black;
}

.category_sidebar_section .design2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category_sidebar_section .design2 ul li {
  width: 100%;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #333e48;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.category_sidebar_section .design2 ul .active {
  font-weight: bolder;
  color: black;
}

.category_sidebar_section .design2 ul li:hover {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
  font-weight: bolder;
  color: black;
}

.category_sidebar_section .design3 {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.category_sidebar_section .design3 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category_sidebar_section .design3 ul li {
  width: 100%;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #333e48;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.category_sidebar_section .design3 ul .active {
  font-weight: bolder;
  color: black;
}

.category_sidebar_section .design3 ul li:hover {
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
  font-weight: bolder;
  color: black;
}

.category_sidebar_section {
  padding: 10px 20px;
}

.category_sidebar_section h3 {
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
}

.hidden_initial {
  display: none;
}

.dropdown_link_container {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.border-sidebar {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}

.rotate_common {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.level1 {
  padding-left: 10px !important;
}

.level2 {
  padding-left: 30px !important;
}

.category_sort_bar {
  background-color: white;
  padding: 10px 30px;
  border-radius: 5px;
}

.category_sort_bar p {
  margin: 0;
  color: #aaaaaa;
}

.category_sort_bar .active {
  color: black;
}

.category_sort_bar i:hover {
  color: black;
}

.sort_input_btn {
  background-color: white;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 5px 10px;
  outline: none;
  color: #666;
}

.category_header {
  font-size: 1.5rem;
  font-weight: bolder;
}

.category_header .small-text {
  font-size: 0.9rem;
  font-weight: 400;
}

.category_pagination i {
  margin: 0px 2px;
}

.category_pagination span {
  margin: 0px 10px;
}

.category_pagination .active {
  background-color: #0FB943;
  color: black;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: bolder;
}

.category_pagination .show_more_btn_category {
  background-color: #0FB943;
  color: white;
  border-radius: 5px;
  padding: 5px 20px;
  font-weight: bolder;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
  border: 1px solid #0FB943;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#13e854), color-stop(#0fbe45), color-stop(#0FB943), color-stop(#0fbe45), to(#13e854));
  background-image: linear-gradient(#13e854, #0fbe45, #0FB943, #0fbe45, #13e854);
  -webkit-transition: -webkit-box-shadow 0.3s ease-in;
  transition: -webkit-box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
}

.category_pagination .show_more_btn_category:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  border: 1px solid #0FB943;
}

.category_pagination .show_more_btn_category:hover i {
  color: white;
}

.category_pagination i:hover, .category_pagination span:hover {
  color: black;
  font-weight: bolder;
}

.category_common_heading {
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
}

.common_heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #20232e;
  margin: 0;
}

.filter_btn {
  background-color: #0FB943;
  border-radius: 5px !important;
  padding: 5px 10px;
}

.each_product_carousel_list_view {
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 30px;
  margin: 25px 0px;
  position: relative;
}

.each_product_carousel_list_view .shopping_cart {
  background-color: #e6e6e6;
  padding: 10px;
  border-radius: 100%;
  color: white;
}

.each_product_carousel_list_view .category {
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
}

.each_product_carousel_list_view .productName {
  font-size: 1rem;
  color: #0062bd;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: 45px;
  /* fallback */
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  height: 45px;
}

.each_product_carousel_list_view img {
  max-height: 18vh;
}

.each_product_carousel_list_view .price {
  font-size: 1rem;
  font-weight: 600;
}

.each_product_carousel_list_view .wishList {
  font-size: 1rem;
  color: #666;
}

.each_product_carousel_list_view .rating i {
  color: #0FB943;
  font-size: 0.8rem;
}

.each_product_carousel_list_view .wishlist_btn {
  border-top: 1px solid #e6e6e6;
  margin-top: 0px;
  padding-top: 5px;
  margin-bottom: 0px;
}

.each_product_carousel_list_view .product_wishList_rating {
  opacity: 0;
}

.wishlist_btn.active .fa-heart {
  color: #0FB943;
}

.each_product_carousel_list_view:hover {
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
}

.each_product_carousel_list_view:hover .shopping_cart {
  background-color: #0FB943;
  color: white;
}

.each_product_carousel_list_view:hover .product_wishList_rating {
  display: block;
  opacity: 1;
}

.short_para_common {
  font-size: 0.8rem;
  font-weight: 400;
  margin: 0;
  overflow: hidden;
  color: #666666;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: 55px;
  /* fallback */
  -webkit-line-clamp: 3;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  height: 55px;
}

/* Category Design Ends */
.obtained_price {
  margin-top: 10px;
  width: 100%;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  background-color: #0FB943;
  color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-size: 1rem;
}

.obtained_price:hover {
  background-color: #0FB943;
}

/* Product Description Design */
div.show {
  width: 400px;
}

.product_description_image {
  max-height: 380px;
  -o-object-fit: contain;
     object-fit: contain;
}

#show-img {
  max-width: 400px;
  height: 400px;
}

.image_container_product_description {
  max-width: 100%;
  overflow: hidden;
}

.small-img {
  width: 350px;
  height: 70px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  display: block;
  margin: auto;
}

.small-img .icon-left, .small-img .icon-right {
  width: 12px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.small-img .icon-left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 0;
}

.small-img .icon-right {
  right: 0px;
}

.small-img .icon-left:hover, .small-img .icon-right:hover {
  opacity: .5;
}

.small-container {
  width: 310px;
  height: 70px;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.small-container div {
  width: 1000%;
  position: relative;
}

.small-container .show-small-img {
  width: 70px;
  height: 70px;
  margin-right: 6px;
  cursor: pointer;
  float: left;
}

.small-container .show-small-img:last-of-type {
  margin-right: 0;
}

.zoom-image-margin {
  padding-left: 100px;
}

.info-div-product-desc-page, .float_element_container {
  position: relative;
}

.information-container-product-desc-page {
  position: absolute;
  width: 200px;
  height: 160px;
  line-height: 1;
  font-size: 0.7rem;
  right: -35%;
  top: 30px;
  font-weight: bold;
  padding: 10px;
  z-index: 3;
  background-color: white;
  -webkit-box-shadow: 1px 1px 1px 1px #cccccc;
          box-shadow: 1px 1px 1px 1px #cccccc;
}

.information-container-product-desc-page:before {
  top: -10px;
  left: 50%;
  content: " ";
  width: 0;
  position: absolute;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid red;
  margin-left: -10px;
  z-index: 5;
}

.information-container-product-desc-page {
  display: none;
}

.color_choose_images_div div {
  float: left;
}

.active-color {
  border-color: red !important;
  border-width: 2px !important;
}

.color_choose_images {
  position: relative;
}

.choose_size {
  border: 1px solid #666;
  padding: 2px 0px;
  margin-right: 8px;
  cursor: pointer;
  width: 25px;
  text-align: center;
  font-weight: bolder;
  font-size: 0.6rem;
}

.color_box {
  height: 20px;
  width: 20px;
  border: 1px solid white;
  position: absolute;
  bottom: 2px;
  right: 10px;
}

.text-inline p, .text-inline a {
  display: inline-block;
}

.color_choose_images img {
  max-height: 5vh;
  border: 1px solid #666;
  padding: 2px 5px;
  margin-right: 8px;
  cursor: pointer;
}

.size-disabled {
  border-color: #cccccc !important;
  color: #cccccc !important;
  pointer-events: none;
}

.cart-btn {
  margin-left: 0px;
  margin-top: 30px;
  border: 1px solid #0FB943;
  padding-top: 10px;
  text-align: center;
  background-color: #ffeee8;
  color: #0FB943;
  margin-bottom: 30px;
}

.cart-btn:hover {
  background-color: rgba(15, 185, 67, 0.1);
}

.add_to_cart_btn {
  margin-left: 0px;
  border: 1px solid #0FB943;
  padding: 10px 10px;
  text-align: center;
  color: #0FB943;
  font-weight: 600;
  border-radius: 10px;
}

.add_to_cart_btn:hover {
  color: #0FB943;
  font-weight: 600;
  background-color: rgba(15, 185, 67, 0.1);
}

.product_description_background {
  background-color: #f1f3f6;
}

.product_description_background_inner {
  background-color: white;
}

.bg-body {
  background-color: #f1f3f6;
}

.bg-main-div {
  background-color: white;
  padding: 10px 30px;
}

.rating i {
  color: #0FB943;
  font-size: 0.8rem;
}

.rating-number {
  font-weight: bolder;
  color: #666666;
}

.divider {
  color: #666;
  opacity: 0.8;
  padding-right: 10px;
  border-left: 1px solid #666;
  padding-left: 10px;
}

.rating-column {
  margin-left: -50px;
  color: #666;
}

.rating-number2 {
  border-bottom: 1px solid #666;
  color: black;
  margin-right: 5px;
}

.rating-text {
  padding-right: 20px;
  color: #666;
}

.rating-column a {
  text-decoration: none;
  color: #666;
}

.sold-items-in-rating-column {
  color: black;
}

.selling-price-in-product-page {
  font-size: 1.5rem;
  color: #0FB943;
  font-weight: 700;
  padding-left: 10px;
}

.discount-percentage-in-product-page {
  margin-left: 15px;
  padding: 2px;
  border-radius: 5px;
  background-color: #0FB943;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.price-caption {
  color: black;
  font-size: 0.9rem;
}

.price-column-decoration {
  background-color: #f2f2f2;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  width: 100%;
  padding: inherit 20px;
}

.shipping-column {
  margin-top: 20px;
}

.shipping-fee {
  margin-top: -10px;
}

.shipping-column-text {
  color: #666;
  font-size: 0.9rem;
}

.shipping-column-text-1 {
  font-weight: 500;
}

table th {
  text-align: center;
  padding: 3px 15px;
}

.cart-btn {
  margin-left: 0px;
  margin-top: 30px;
  border: 1px solid #0FB943;
  padding-top: 10px;
  text-align: center;
  background-color: #ffeee8;
  color: #0FB943;
  margin-bottom: 30px;
}

.apply-coupen {
  margin-top: 30px;
  padding-top: 5px;
}

.apply-coupen input {
  height: 40px;
  font-size: 0.8rem;
}

.apply-coupen input:focus {
  outline-color: #0FB943;
}

.rating-number {
  font-size: 1.1rem;
  color: #0FB943;
  text-align: center;
  border-bottom: 1px solid #0FB943;
  border-width: 80%;
}

.bg-black {
  background-color: black;
}

.bg-blue {
  background-color: blue;
}

.bg-red {
  background-color: red;
}

.product_description_section1 p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666666;
}

.product_description_section1 .bold-text p {
  font-weight: bold;
  color: #20232e;
}

.product_description_section1 .bold-text {
  font-weight: bold !important;
}

.product-desc {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

.tabcontent_design {
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 40px 30px;
}

.tabcontent_design p {
  margin: 0;
  color: #666666;
  font-size: 0.8rem;
  font-weight: 500;
}

.tabcontent_design h1 {
  color: black;
  font-size: 2.5rem;
  margin-top: 20px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 20px;
  position: relative;
}

.tabcontent_design h2, .tabcontent_design h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #20232e;
  margin: 0;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  position: relative;
}

.tabcontent_design h1::after, .tabcontent_design h2::after, .tabcontent_design h3::after {
  content: " ";
  border: 1px solid #0FB943;
  width: 10%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.tabcontent_design h4, .tabcontent_design h5 {
  margin-top: 20px;
  color: #333e48;
  font-size: 1.2rem;
}

.tabcontent_design h6 {
  color: #333e48;
  font-size: 1rem;
}

.tabcontent_design img {
  max-height: 70vh;
  margin-bottom: 30px;
  margin-top: 30px;
}

.tabcontent_design ul, .tabcontent_design ol {
  list-style: none;
  margin-top: 30px;
  margin-left: 30px;
  padding-left: 1.2em;
  position: relative;
}

.tabcontent_design ul li, .tabcontent_design ol li {
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #333e48;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.tabcontent_design .bold-text {
  font-weight: 600;
}

.tabcontent_design li:hover {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
  font-weight: bolder;
  color: black;
}

.tabcontent_design2 {
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 40px 30px;
  /* For IE10 */
}

.tabcontent_design2 p {
  margin: 0;
  color: #666666;
  font-size: 0.8rem;
  font-weight: 400;
}

.tabcontent_design2 .bold-text {
  font-weight: 600;
}

.tabcontent_design2 h1 {
  color: black;
  font-size: 2.5rem;
  margin-top: 20px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 20px;
  position: relative;
}

.tabcontent_design2 h2, .tabcontent_design2 h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #20232e;
  margin: 0;
}

.tabcontent_design2 .each_comment {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 20px;
  padding-bottom: 40px;
}

.tabcontent_design2 .big-text, .tabcontent_design2 .big-text i {
  font-size: 2rem;
}

.tabcontent_design2 .line_header {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  position: relative;
}

.tabcontent_design2 .line_header::after {
  content: " ";
  border: 1px solid #0FB943;
  width: 10%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.tabcontent_design2 h4, .tabcontent_design2 h5 {
  margin-top: 20px;
  color: #333e48;
  font-size: 1.2rem;
}

.tabcontent_design2 h6 {
  color: #333e48;
  font-size: 1rem;
}

.tabcontent_design2 img {
  max-height: 70vh;
  margin-bottom: 30px;
  margin-top: 30px;
}

.tabcontent_design2 ul, .tabcontent_design2 ol {
  padding: 0px;
  list-style: none;
  position: relative;
}

.tabcontent_design2 ul li, .tabcontent_design2 ol li {
  width: 100%;
  padding-bottom: 10px;
  font-size: 0.9rem;
  color: #333e48;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.tabcontent_design2 .bold-text {
  font-weight: bolder;
}

.tabcontent_design2 .progress-bar {
  background-color: #0FB943;
  height: 10px;
}

.tabcontent_design2 .progress {
  height: 10px;
  border-radius: 0px;
}

.tabcontent_design2 .filter_decoration {
  font-size: 1rem;
  color: #666666;
}

.tabcontent_design2 .filter_decoration select {
  border: none;
  background-color: #eaeaea;
  padding: 10px 10px;
  margin-left: 5px;
}

.tabcontent_design2 select {
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}

.tabcontent_design2 select::-ms-expand {
  display: none;
}

.tabcontent_design2 .color_green {
  color: #127d4a;
}

.quantity_table th {
  background-color: #eaeaea;
  padding: 2px 10px;
  font-weight: 300;
  font-size: 0.8rem;
  color: #666666;
}

.quantity_table th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.quantity_table th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.quantity_table td {
  padding: 0px 0px;
  color: black;
  width: 40px;
  font-weight: bolder;
}

.quantity_productDescription {
  text-align: center;
  width: 80px;
  border: 1px solid #f2f2f2;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

.quantity input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

.shipping-column-btn {
  position: relative;
  cursor: pointer;
}

.address_bar_product_description {
  position: absolute;
  right: 0;
  width: 250px;
  height: 400px;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: white;
  z-index: 999;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.address_bar_product_description .searchbar {
  margin-top: 10px;
  height: 40px;
  background-color: #353b48;
  border-radius: 30px;
  padding: 10px;
}

.address_bar_product_description .search_input {
  color: white;
  border: 0;
  outline: 0;
  background: none;
  width: 150px;
  padding: 0 5px;
  caret-color: white;
  -webkit-transition: width 0.4s linear;
  transition: width 0.4s linear;
}

.address_bar_product_description .search_icon {
  height: 20px;
  width: 20px;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  color: white;
}

.address_list li {
  cursor: pointer;
}

.address_bar_product_description {
  display: none;
}

/* Product Description Design Ends */
@media only screen and (max-width: 1100px) and (min-width: 575px) {
  .small-img {
    width: 95%;
    height: 70px;
    margin-top: 10px;
    position: relative;
  }
  .small-img .icon-left, .small-img .icon-right {
    width: 12px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    margin: auto 0;
  }
  .small-img .icon-left {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    left: 10px;
  }
  .small-img .icon-right {
    right: 10px;
  }
  .small-img .icon-left:hover, .small-img .icon-right:hover {
    opacity: .5;
  }
  .small-container {
    width: 80%;
    height: 70px;
  }
  .small-container .show-small-img {
    width: 70px;
    height: 70px;
    margin-right: 6px;
    cursor: pointer;
    float: left;
  }
  .small-container .show-small-img:last-of-type {
    margin-right: 0;
  }
}

/* added custom css old */
/* Checkout style */
.line-height-small {
  line-height: 10px;
}

.checkoutButton {
  background-color: #0FB943;
  padding: 10px 20px;
  border: none;
  color: white;
  font-size: 1.05rem;
  -webkit-box-shadow: 2px 2px 2px 1px 2px #0FB943;
          box-shadow: 2px 2px 2px 1px 2px #0FB943;
}

.checkoutButton:hover {
  background-color: #0FB943;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.background-color-for-each-div-checkout-right {
  background-color: white;
  margin-left: -15px;
  margin-right: 20px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  display: block;
}

.background-color-for-each-div-checkout {
  background-color: white;
  margin-left: 40px;
  margin-right: 0px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  display: block;
}

.edit-cart-btn {
  border: 2px solid #0FB943;
  padding: 5px 10px;
}

.edit-cart-btn:hover {
  background-color: #0FB943;
  color: white;
  cursor: default;
}

.checkout-image {
  max-height: 10vh;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-title-chechout {
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 16px;
  /* fallback */
  max-height: 35px;
  /* fallback */
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  height: 55px;
  text-align: justify;
}

.checkout-header {
  background-color: #0FB943;
  color: white;
  padding-bottom: 0px;
  height: 45px;
}

/* radio button  */
.container-radio {
  display: block;
  position: relative;
}

.header-content {
  margin-top: 7px;
  font-weight: 600;
}

.container-radio ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.container-radio ul li {
  color: #AAAAAA;
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.container-radio ul li input[type=radio] {
  position: absolute;
  visibility: hidden;
}

.container-radio ul li label {
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 1rem;
  padding: 20px 0px 0px 60px;
  z-index: 9;
  color: black;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}

.container-radio ul li:hover label {
  color: #0FB943;
}

.container-radio ul li .check {
  display: block;
  position: absolute;
  border: 2px solid #AAAAAA;
  border-radius: 100%;
  height: 18px;
  width: 18px;
  top: 25px;
  left: 20px;
  z-index: 5;
  transition: border .25s linear;
  -webkit-transition: border .25s linear;
}

.container-radio ul li:hover .check {
  border: 5px solid #0FB943;
}

.container-radio ul li .check::before {
  display: block;
  position: absolute;
  content: '';
  border-radius: 100%;
  height: 8px;
  width: 8px;
  top: 2px;
  left: 2px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

.container-radio input[type=radio]:checked ~ .check {
  border: 3px solid #0FB943;
}

.container-radio input[type=radio]:checked ~ .check::before {
  background: #0FB943;
}

.container-radio input[type=radio]:checked ~ label {
  color: #0FB943;
}

/*   radio buttons decoration ends*/
.address-button-checkout {
  background-color: transparent;
  color: white;
  margin-top: 2px;
  padding: 2px 10px;
  outline: none;
  border: 5px solid #0FB943;
}

.address-button-checkout:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.atm-card-border {
  padding-top: 30px;
  background-color: #dde6ef;
}

#atm-card-payment {
  display: none;
}

.payment-btn {
  background-color: #0FB943;
  color: white;
}

.payment-btn:hover {
  background-color: #0FB943;
  cursor: pointer;
}

.background-color-in-user-dashboard {
  background-color: #f1f3f6;
  min-height: 490px;
  padding-bottom: 50px;
}

.background-color-for-each-div {
  background-color: white;
  margin-left: 40px;
  margin-right: 80px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  display: block;
}

.background-color-for-each-div-right {
  background-color: white;
  padding-top: 20px;
  padding-left: 50px;
  padding-right: 20px;
  padding-bottom: 20px;
  display: block;
  margin-left: -90px;
  margin-right: 30px;
  min-height: 470px;
}

/* Checkout style ends*/
.profile-picture {
  max-height: 40vh;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}

.choose-profile::-webkit-file-upload-button {
  border: none;
  -webkit-box-shadow: 2px 1px 0px 1px #0FB943;
          box-shadow: 2px 1px 0px 1px #0FB943;
  background-color: lightsalmon;
  padding-right: 10px;
  color: white;
  outline: none;
}

.choose-profile::-webkit-file-upload-button:hover {
  background-color: #0FB943;
}

.heading-text {
  font-size: 1.2rem;
}

.heading-small {
  font-size: 1rem;
}

.small-text {
  font-size: 0.9rem;
}

.color-dim {
  color: #666;
}

.color-peepal {
  color: #0FB943;
}

.color-normal {
  color: black;
}

.smaller-text {
  font-size: 0.7rem;
}

.bold-text {
  font-weight: 600;
}

.thin-text {
  font-weight: 400;
}

.line-height {
  line-height: 5px;
}

.text-right {
  float: right;
}

.text-inline p, .text-inline a {
  display: inline-block;
}

.text-inline li {
  display: inline-block;
  list-style: none;
  padding: 10px;
  -webkit-box-shadow: 0px 1px 1px 0px #0FB943;
          box-shadow: 0px 1px 1px 0px #0FB943;
  /* background-color: $primary-color; */
  margin-right: 5px;
  margin-bottom: 8px;
  color: black;
}

.margin-price {
  text-decoration: line-through;
  color: #999;
  font-weight: normal;
  font-size: 0.8rem;
}

.text-inline li a {
  color: black;
  cursor: default;
}

.text-inline li i {
  cursor: pointer;
}

.text-inline li:hover, .text-inline li:hover a {
  background-color: #ffeee8;
}

.font-thin-bold {
  font-weight: 400;
}

.horizontal-line {
  margin-top: -18px;
}

.order-link-height {
  min-height: 2rem;
}

.canceled_orders {
  color: #0FB943 !important;
  border-bottom: 2px solid #0FB943;
  padding-bottom: 5px;
}

.cancelled-message {
  margin-top: 20px;
  font-size: 0.7rem;
  z-index: 99;
  color: white;
  font-weight: bold;
  vertical-align: middle;
  padding: 5px;
  background-image: url("../assets/mobile_hd/CANCELLED_stamp-1.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
}

.canceled-message-text {
  z-index: 992 !important;
  color: #302a27 !important;
}

.cancelled-message:before {
  position: absolute;
  content: " ";
  top: 20px;
  left: 0;
  width: 100%;
  height: 70%;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
}

#canceled-order {
  display: none;
}

p.avtive {
  border-bottom: 2px solid #0FB943;
  background-color: red;
}

.orders:hover {
  color: #0FB943;
  border-bottom: 2px solid #0FB943;
  padding-bottom: 5px;
}

.select-order-year {
  border-radius: 2px;
  background-color: #0FB943;
  color: white;
}

.select-order-year:focus {
  outline: none;
}

.order-details:hover {
  color: #0FB943;
}

.order-id {
  background-color: #0FB943;
  color: white;
  line-height: 2;
  padding: 5px 20px;
  font-weight: bold;
  margin-left: 10px;
}

.ordered-product {
  border-bottom: 1px solid #cfcaca;
  background-color: #f6f6f6;
  padding: 15px 20px;
  padding-bottom: 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.order-track {
  background-color: #0FB943;
  padding: 10px 20px;
  color: white;
  vertical-align: middle;
  line-height: 2;
  margin-top: 20px !important;
}

.order-track:hover {
  background-color: #0FB943;
}

.rate-and-review {
  text-align: center;
  margin-top: 40px;
}

.cancel-product-btn {
  padding: 10px 5px;
  -webkit-box-shadow: 1px 1px 1px 1px #cccccc;
          box-shadow: 1px 1px 1px 1px #cccccc;
  line-height: 2;
  color: black;
  margin-top: 5px;
  font-size: 0.8rem;
}

.canceled-product-btn {
  background-color: #c9302c;
  padding: 10px;
  font-size: 0.8rem;
  -webkit-box-shadow: 1px 1px 1px 1px  #c9302c;
          box-shadow: 1px 1px 1px 1px  #c9302c;
  line-height: 2;
  color: white;
  margin-top: 5px;
  cursor: not-allowed;
  text-align: center;
  vertical-align: middle;
}

.canceled-product-btn a {
  color: white;
}

.canceled-product-btn:hover {
  background-color: red;
  cursor: not-allowed;
}

.canceled-product-btn:hover a {
  color: white;
  cursor: not-allowed;
}

.cancel-product-btn a {
  color: black;
}

.cancel-product-btn:hover {
  -webkit-box-shadow: 1px 1px 2px 1px #0FB943;
          box-shadow: 1px 1px 2px 1px #0FB943;
  color: black;
}

.cancel-product-btn:hover a {
  color: black;
}

.ordered-product-bottom {
  margin-top: 10px;
  border-top: 1px solid #cfcaca;
  background-color: #f6f6f6;
  padding: 15px 20px;
  padding-bottom: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.outer-border-for-ordered-product {
  -webkit-box-shadow: 1px 1px 1px 1px #dde6ef;
          box-shadow: 1px 1px 1px 1px #dde6ef;
  border-radius: 10px;
  margin-right: 5px;
}

a.color-peepal:hover {
  color: #0FB943;
}

.cursor-pointer {
  cursor: pointer !important;
}

.product-buy {
  background-color: #0FB943;
  color: white;
  border: 1px solid #0FB943;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.product-buy:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.address-border {
  -webkit-box-shadow: 2px 2px 2px 3px #dde6ef;
          box-shadow: 2px 2px 2px 3px #dde6ef;
  border-radius: 10px;
  margin-right: 5px;
  padding: 20px;
}

.address-edit-delete {
  cursor: pointer;
}

.home-text {
  background-color: #0FB943;
  padding: 8px;
  color: white;
  border-radius: 5px;
}

.make_primary_address {
  background-color: green;
  border: none;
  color: white;
  padding: 8px;
  border-radius: 5px;
  font-weight: bold;
}

.make_primary_address:hover {
  background-color: #09a704;
  cursor: pointer;
}

.dropbtn-edit-delete-address {
  background-color: transparent;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown-edit-delete-address {
  position: relative;
  display: inline-block;
}

.dropdown-content-edit-delete-address {
  display: none;
  position: absolute;
  background-color: #f1f3f6;
  min-width: 25px;
  text-align: center;
  z-index: 1;
  top: 15px;
  left: -10px;
  cursor: pointer;
}

.dropdown-content-edit-delete-address a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content-edit-delete-address a:hover {
  background-color: #ddd;
}

.dropdown-edit-delete-address:hover .dropdown-content-edit-delete-address {
  display: block;
}

.wish-list-product-image {
  max-height: 15vh;
  vertical-align: middle;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}

.ordered-product-image {
  margin-top: 5px;
  max-height: 20vh;
  vertical-align: middle;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}

.edit_user_image_pen {
  position: absolute;
  top: 32px;
  right: 17px;
  z-index: 999 !important;
  color: black;
  display: none;
}

.user-image {
  vertical-align: middle;
  max-height: 15vh;
  -ms-flex-line-pack: center;
      align-content: center;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}

.user-image:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  cursor: pointer;
}

.delete-from-wishlist {
  cursor: pointer;
}

.add-to-cart-wishlist {
  background-color: #0FB943;
  color: white;
  border-radius: 4px;
  border: none;
  padding: 3px 15px;
}

.add-to-cart-wishlist:hover {
  background-color: #0FB943;
}

.add-to-cart-wishlist-margin {
  margin-top: -15px;
  padding-bottom: 10px;
}

.wish-list-product-border {
  border-bottom: 1px solid #dde6ef;
  padding: 10px;
}

.container-wishlist {
  width: 300px;
  position: absolute;
  top: 25px;
  right: 0;
  background-color: white;
  -webkit-box-shadow: 2px 2px 2px 2px #f1f3f6;
          box-shadow: 2px 2px 2px 2px #f1f3f6;
  padding: 7px 20px;
  border-radius: 5px;
  border: 1px solid #f1f3f6;
}

.container-delete-address {
  width: 350px;
  position: absolute;
  top: 45px;
  right: 30px;
  line-height: 2;
  -webkit-box-shadow: 2px 2px 2px 2px #f1f3f6;
          box-shadow: 2px 2px 2px 2px #f1f3f6;
  padding: 7px 20px;
  border-radius: 5px;
  border: 1px solid #f1f3f6;
}

.container-wishlist::after {
  bottom: 100%;
  left: 89%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #0FB943;
  border-width: 8px;
  margin-left: -8px;
}

.container-wishlist, .container-delete-address {
  display: none;
}

.pl-3-order {
  padding-left: 10px;
  padding-right: 10px;
}

#wishlist-container, #notification-container, #address-container, #order-container, #peepal-coins-container {
  display: none;
}

.input-field-design {
  border: none;
  -webkit-box-shadow: 0px 2px 2px 0px #0b8a32;
          box-shadow: 0px 2px 2px 0px #0b8a32;
  outline: none;
  width: 50%;
  top: 0;
  padding: 10px 10px;
  margin-top: -15px;
  margin-bottom: 20px;
}

.input-field-design-password {
  border: none;
  -webkit-box-shadow: 0px 2px 2px 0px #0b8a32;
          box-shadow: 0px 2px 2px 0px #0b8a32;
  outline: none;
  width: 90%;
  top: 0;
  padding: 10px 10px;
  margin-top: -15px;
  margin-bottom: 20px;
}

.input-field-design-date {
  border: none;
  -webkit-box-shadow: 0px 2px 2px 0px #0b8a32;
          box-shadow: 0px 2px 2px 0px #0b8a32;
  outline: none;
  width: 50%;
  top: 0;
  padding: 10px 10px;
  margin-top: -15px;
  margin-bottom: 20px;
}

.change-password p {
  font-size: 0.8rem;
}

.password-change-design {
  position: absolute;
  width: 500px;
  height: 600px;
  z-index: 999;
  top: 0;
  background-color: yellow;
}

.input-field-design::-webkit-input-placeholder {
  color: #666;
}

.input-field-design:-ms-input-placeholder {
  color: #666;
}

.input-field-design::-ms-input-placeholder {
  color: #666;
}

.input-field-design::placeholder {
  color: #666;
}

.save-button-user-dashboard, .cancel-button-user-dashboard {
  padding: 5px 30px;
  margin-top: 10px;
  background-color: #0FB943;
  border: none;
  color: white !important;
  font-weight: 500;
  border-radius: 5px;
  outline: none;
}

.edit-user-email, .edit-user-password {
  display: none;
}

.edit-user-interest {
  display: none;
}

.edit-user-password {
  padding: 30px 20px;
  -webkit-box-shadow: 2px 2px 2px 2px #dde6ef;
          box-shadow: 2px 2px 2px 2px #dde6ef;
}

.box-design {
  padding: 30px 30px;
  -webkit-box-shadow: 2px 2px 2px 3px #dde6ef;
          box-shadow: 2px 2px 2px 3px #dde6ef;
  border-radius: 10px;
  background-color: white;
  margin-bottom: 20px;
  margin-left: 5px;
  margin-right: 15px;
}

.save-button-user-dashboard:hover, .cancel-button-user-dashboard:hover {
  background-color: #0FB943;
  color: white !important;
}

div.user-task-selector {
  /* box-shadow: 2px 2px 2px 2px #f1f3f6; */
  position: relative;
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

div.user-task-selector .bold-text {
  border-bottom: 1px solid #0FB943;
  margin-left: 20px;
  padding-right: 20px;
}

p.cursor-pointer:hover {
  color: green;
}

.user-dashboard-row-design {
  background-color: white;
  padding: 10px 20px;
  border-radius: 10px;
}

.save-and-cancel-button {
  margin-bottom: 20px;
}

.input-field-design::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.edit-user-number {
  display: none;
}

.edit-user-name, .select-user-gender {
  display: none;
}

.save-and-cancel-button {
  display: none;
}

.address-input-field-design {
  width: 100%;
  border: none;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  margin: 3px;
  outline: none;
  padding: 10px 15px;
}

.edit-user-address {
  display: none;
}

.address-input-field-design option {
  background-color: #f6f6f6;
  border-radius: 20px;
}

/* Interest List */
.interested-user-category .dropdown:hover > .dropdown-menu {
  display: block;
}

.checkbox-menu li label {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
  margin: 0;
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease;
}

.checkbox-menu {
  width: 100%;
  max-height: 200px;
  overflow: auto;
}

.checkbox-menu li input {
  margin: 0px 5px;
  top: 0px;
  position: relative;
}

.checkbox-menu li.active label {
  background-color: #cbcbff;
  font-weight: bold;
}

.checkbox-menu li label:hover,
.checkbox-menu li label:focus {
  background-color: #f5f5f5;
}

.checkbox-menu li.active label:hover,
.checkbox-menu li.active label:focus {
  background-color: #b8b8ff;
}

.dropdown-interest-category-btn {
  width: 100%;
  list-style: none;
  padding: 10px;
  -webkit-box-shadow: 1px 2px 2px 1px #0FB943;
          box-shadow: 1px 2px 2px 1px #0FB943;
  /* background-color: $primary-color; */
  color: black;
  cursor: default;
}

.interested-user-category .dropdown {
  width: 100%;
}

.payment_logo {
  max-height: 5vh;
}

/* User Dashboard Design */
.verified_email {
  color: green;
  font-weight: bold;
  font-size: 0.8rem;
  padding-left: 10px;
}

.not_verified_email {
  color: #666;
  font-weight: bold;
  font-size: 0.8rem;
  padding-left: 10px;
}

.email_verificarion_container, .number_verificarion_container {
  display: none;
}

.verify-email-btn, .verify_number_btn_outside, .verify_email_btn_outside {
  font-size: 0.8rem;
  margin-left: 15px;
  text-decoration: underline;
  cursor: pointer;
  color: green;
  font-weight: bold;
}

/* interest List Design Ends */
/* Track Order Progress Design */
.progress-tracker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  padding: 0;
  list-style: none;
  z-index: 999;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.progress-marker-track {
  z-index: 99;
  margin-left: -50px;
}

.order-status-text {
  margin-left: -7px;
}

.progress-step {
  display: block;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  margin: 0;
  padding: 0;
  min-width: 28px;
}

.progress-step:last-child {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.progress-step:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -10;
  top: 6px;
  bottom: 12px;
  right: -10px;
  width: 100%;
  height: 3px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.progress-step.is-active .progress-title {
  font-weight: 400;
}

.progress-step > a {
  display: block;
}

.progress-marker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 20;
  width: 15px;
  height: 15px;
  padding-bottom: 2px;
  color: #fff;
  font-weight: 400;
  border: 1px solid transparent;
  border-radius: 50%;
  -webkit-transition: background-color, border-color;
  transition: background-color, border-color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.progress-text {
  display: block;
  padding: 14px 9.3333333333px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress-title {
  margin-top: 0;
}

.progress-step .progress-marker {
  color: #fff;
  background-color: #b6b6b6;
}

.progress-step::after {
  background-color: #b6b6b6;
}

.progress-step .progress-text, .progress-step .progress-step > a .progress-text {
  color: #333333;
}

.progress-step.is-active .progress-marker {
  background-color: skyblue;
}

.progress-step.is-complete .progress-marker {
  background-color: green;
}

.progress-step.is-complete::after {
  background-color: green;
}

.progress-step.is-ordered .progress-marker {
  background-color: darkblue;
}

.progress-step.is-ordered::after {
  background-color: #0b9191;
}

.progress-step.is-shipped .progress-marker {
  background-color: #0FB943;
}

.progress-step.is-shipped::after {
  background-color: #0b9191;
}

.progress-step.is-packed .progress-marker {
  background-color: blue;
}

.progress-step.is-packed::after {
  background-color: #0b9191;
}

.progress-step:hover .progress-marker {
  background-color: skyblue;
}

.progress-tracker--center .progress-step {
  text-align: center;
}

.progress-tracker--center .progress-step:last-child {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.progress-tracker--center .progress-step::after {
  right: -50%;
}

.progress-tracker--center .progress-marker {
  margin-left: auto;
  margin-right: auto;
}

.progress-tracker--right .progress-step {
  text-align: right;
}

.progress-tracker--right .progress-step:last-child {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.progress-tracker--right .progress-step::after {
  right: calc(-100% + 14px);
}

.progress-tracker--right .progress-marker {
  margin-left: auto;
}

.progress-tracker--border {
  padding: 5px;
  border: 2px solid #868686;
  border-radius: 38px;
}

.progress-tracker--spaced .progress-step::after {
  width: calc(100% - 48px);
  margin-right: 24px;
}

.progress-tracker--word {
  padding-right: 38.6666666667px;
  overflow: hidden;
}

.progress-tracker--word .progress-text {
  display: inline-block;
  white-space: nowrap;
}

.progress-tracker--word .progress-title {
  margin: 0;
}

.progress-tracker--word-center {
  padding-right: 38.6666666667px;
  padding-left: 38.6666666667px;
}

.progress-tracker--word-center .progress-text {
  padding-right: 0;
  padding-left: 0;
  -webkit-transform: translateX(calc(-50% + 14px));
  transform: translateX(calc(-50% + 14px));
}

.progress-tracker--word-right {
  padding-right: 0;
  padding-left: 38.6666666667px;
}

.progress-tracker--word-right .progress-text {
  padding-left: 0;
  -webkit-transform: translateX(calc(-100% + 28px));
  transform: translateX(calc(-100% + 28px));
}

.progress-tracker--text .progress-step:last-child {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.progress-tracker--text-top .progress-step::after {
  top: auto;
}

.progress-tracker--text-top .progress-text {
  height: 100%;
}

.progress-tracker--text-top .progress-marker {
  bottom: 28px;
}

.progress-tracker--text-inline .progress-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.progress-tracker--text-inline .progress-text {
  position: relative;
  z-index: 30;
  max-width: 70%;
  white-space: nowrap;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fff;
}

.progress-tracker--text-inline .progress-title {
  margin: 0;
}

.progress-tracker--square .progress-step {
  padding-top: 0;
}

.progress-tracker--square .progress-marker {
  -webkit-transform: scaleX(0.33) translateY(-12px);
  transform: scaleX(0.33) translateY(-12px);
  border-radius: 0;
}

@media (max-width: 399px) {
  .progress-tracker-mobile {
    overflow-x: auto;
  }
  .progress-tracker-mobile .progress-tracker {
    min-width: 200%;
  }
}

.progress-tracker--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.progress-tracker--vertical .progress-step {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.progress-tracker--vertical .progress-step::after {
  right: auto;
  top: 14px;
  left: 12px;
  width: 4px;
  height: 100%;
}

.progress-tracker--vertical .progress-marker {
  position: absolute;
  left: 0;
}

.progress-tracker--vertical .progress-text {
  padding-top: 7px;
  padding-left: 42px;
}

.progress-tracker--vertical .progress-step:not(:last-child) .progress-text {
  padding-bottom: 42px;
}

@-webkit-keyframes scale-up {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes scale-up {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }
}

.anim-ripple .progress-marker::before, .anim-ripple-large .progress-marker::before, .anim-ripple-splash .progress-marker::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 30;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  visibility: hidden;
}

.anim-ripple :not(:active) .progress-marker::before, .anim-ripple-large :not(:active) .progress-marker::before, .anim-ripple-splash :not(:active) .progress-marker::before {
  -webkit-animation: scale-up 0.3s ease-out;
  animation: scale-up 0.3s ease-out;
}

.anim-ripple :focus .progress-marker::before, .anim-ripple-large :focus .progress-marker::before, .anim-ripple-splash :focus .progress-marker::before {
  visibility: visible;
}

.anim-ripple-large .progress-marker::before {
  width: 200%;
  height: 200%;
}

.anim-ripple-splash .progress-marker::before {
  width: 200%;
  height: 200%;
  -webkit-box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.35);
}

.anim-ripple-double .progress-marker::before, .anim-ripple-double .progress-marker::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 30;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  visibility: hidden;
  background: none;
  border: 3px solid rgba(0, 0, 0, 0.3);
}

.anim-ripple-double :not(:active) .progress-marker::before, .anim-ripple-double :not(:active) .progress-marker::after {
  -webkit-animation: scale-up 0.3s ease-out 0s;
  animation: scale-up 0.3s ease-out 0s;
}

.anim-ripple-double :not(:active) .progress-marker::after {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.anim-ripple-double :focus .progress-marker::before, .anim-ripple-double :focus .progress-marker::after {
  visibility: visible;
}

.anim-path .progress-step::after {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, silver), color-stop(50%, #0b8a32));
  background-image: linear-gradient(to right, silver 50%, #0b8a32 50%);
  background-size: 200% 100%;
  background-position: 0% 100%;
  -webkit-transition: background-position 0.3s ease-out;
  transition: background-position 0.3s ease-out;
}

.anim-path .progress-step.is-complete::after {
  background-position: -100% 100%;
}

/* Track Order Progress design ends */
/* Track Prder design */
.address-info-track-order {
  border-right: 1px solid #0FB943;
}

.background-color-for-each-div-track {
  background-color: white;
  margin-left: 40px;
  margin-right: 40px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  display: block;
}

.product-heading {
  margin-left: -30px;
  margin-top: 20px;
}

.product-heading h6 {
  font-size: 1rem;
}

.product-image-tracker {
  max-height: 20vh;
  width: 90%;
  height: 100%;
  vertical-align: middle;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}

.ordered-product-div, .packed-product, .shipped-product, .delivered-product {
  display: none;
  margin-top: -20px;
}

.toal-prize-track {
  -webkit-box-shadow: 1px 1px 1px 1px #0FB943;
          box-shadow: 1px 1px 1px 1px #0FB943;
  padding: 5px 15px;
  cursor: default;
}

.print-invoice, .cancel-order {
  -webkit-box-shadow: 1px 1px 1px 1px #0FB943;
          box-shadow: 1px 1px 1px 1px #0FB943;
  padding: 5px 15px;
  cursor: default;
  margin-top: -10px;
  margin-left: 15px;
  background-color: transparent;
  border: none;
  font-weight: 600;
  outline: none;
}

.cancel-order:hover {
  background-color: red;
  color: white;
}

.print-invoice:hover {
  background-color: #0FB943;
  color: white;
}

.marked-price-text {
  text-decoration: line-through;
}

.information-container {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 200px;
  width: 300xp;
  overflow: scroll;
  background-color: white;
  z-index: 999;
  -webkit-box-shadow: 1px 1px 1px 0px #846d6d;
          box-shadow: 1px 1px 1px 0px #846d6d;
  display: none;
  padding: 20px;
}

.info-circle-content {
  cursor: pointer;
}

.color-sharp {
  color: #0FB943;
}

.quanity-alignment {
  vertical-align: middle;
  margin: auto;
  margin-bottom: 10px;
}

.font-weight-sharp {
  font-weight: 600;
  font-size: 0.8rem;
}

.outerBorder {
  background-color: white;
  padding-left: 20px;
  padding-top: 10px;
  padding-right: 20px;
  border: none;
  -webkit-box-shadow: 1px 1px  2px 1px #dde6ef;
          box-shadow: 1px 1px  2px 1px #dde6ef;
}

.outerBorder img {
  max-height: 15vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.inner-border {
  margin-top: 15px;
  background-color: white;
  padding-left: 10px;
  padding-top: 0px;
  border: none;
  -webkit-box-shadow: 1px 1px  2px 1px #dde6ef;
          box-shadow: 1px 1px  2px 1px #dde6ef;
}

.text-align-end {
  text-align: right;
}

.dotted-hr-tag {
  border-style: dashed;
}

.w-30 {
  width: 100px;
}

.max-selector, .min-selector {
  border-color: #0FB943;
  background-color: #ffeee8;
}

.selector {
  padding-left: 30px;
}

.max-selector {
  float: right;
}

.secure-payment {
  margin-top: 20px;
  padding: 10px;
}

.discount-percentage-in-product-page {
  margin-left: 15px;
  padding: 2px;
  border-radius: 5px;
  background-color: #0FB943;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.info-div-cart-page {
  position: relative;
}

.info_container_wrapper {
  position: relative;
}

.information-container-cart-page {
  position: absolute;
  width: 200px !important;
  height: 160px;
  line-height: 0.8;
  font-size: 0.7rem;
  right: 40%;
  top: 80%;
  font-weight: bold;
  padding: 10px;
  z-index: 3;
  background-color: white;
  -webkit-box-shadow: 1px 1px 1px 1px #cccccc;
          box-shadow: 1px 1px 1px 1px #cccccc;
}

.information-container-cart-page:before {
  top: -10px;
  left: 50%;
  content: " ";
  width: 0;
  position: absolute;
  border-bottom-color: red;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid red;
  border-width: 8px;
  margin-left: -10px;
  z-index: 5;
}

.information-container-cart-page {
  display: none;
}

table th {
  text-align: center;
  padding: 3px 15px;
}

.cart-btn {
  margin-left: 0px;
  margin-top: 30px;
  border: 1px solid #0FB943;
  padding-top: 10px;
  text-align: center;
  background-color: rgba(15, 185, 67, 0);
  color: #0FB943;
  margin-bottom: 30px;
}

.apply-coupen {
  margin-top: 30px;
  padding-top: 5px;
}

.apply-coupen input {
  height: 40px;
  font-size: 0.8rem;
  padding-left: 10px;
}

.apply-coupen input:focus {
  outline-color: #0FB943;
}

.cart-btn:hover {
  background-color: rgba(15, 185, 67, 0.2);
}

.buy-now-in-product-page {
  color: white;
  background-color: #0FB943;
  border: 1px solid #0FB943;
  text-align: center;
  padding: 10px 10px;
  margin-right: 10px;
  color: white;
  font-weight: 600;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in;
  transition: -webkit-box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.buy-now-in-product-page:hover {
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.5);
  color: white;
}

.gurantee-quote {
  color: #666;
  padding-left: 50px;
}

.gurantee-quote-div {
  margin-top: 20px;
}

/* Seller Login design */
.banner {
  background-image: url("../assets/seller/blog-banner.jpg");
  min-height: 480px;
  position: relative;
  overflow: hidden;
  margin-top: 2px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.banner:before {
  content: " ";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  width: 110%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.inner_div_login {
  z-index: 5 !important;
}

.banner .divider_sellerLogin {
  position: absolute;
  bottom: -87px;
  background-color: #f7f7f7;
  height: 194px;
  width: 110%;
  left: 0;
}

.seller_first_section {
  color: white;
}

.seller_first_section {
  color: white;
}

.login-seller-form input {
  margin-top: 30px;
  padding: 5px 10px;
  outline: none;
}

.login-seller-form input::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #666;
}

.login-seller-form input:-ms-input-placeholder {
  font-size: 0.9rem;
  color: #666;
}

.login-seller-form input::-ms-input-placeholder {
  font-size: 0.9rem;
  color: #666;
}

.login-seller-form input::placeholder {
  font-size: 0.9rem;
  color: #666;
}

.signIn_btn_seller {
  background-color: #0FB943;
  border: none;
  color: white;
  font-weight: bolder;
  -webkit-box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.signIn_btn_seller:hover {
  background-color: #0FB943;
}

.seller_first_section h2, .seller_first_section p {
  font-weight: bolder;
}

.seller_first_section {
  margin-top: 100px;
}

.register_seller_now {
  border: none;
  background-color: white;
  color: #0b8a32;
  font-size: 0.9rem;
  border-radius: 2px;
  padding: 10px 20px;
  font-weight: bold;
  -webkit-box-shadow: 1px 1px 1px 1px #0b8a32;
          box-shadow: 1px 1px 1px 1px #0b8a32;
}

.register_seller_now:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  cursor: pointer;
}

.login-seller-form {
  margin-top: 100px;
  padding: 20px;
  background-color: white;
  -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.why_peepal {
  margin-top: 20px;
  padding: 10px 60px;
}

.why_peepal:nth-child(1), .why_peepal:nth-child(2) {
  margin-top: 40px;
}

.why_peepal_container {
  background-color: #f7f7f7;
  padding-bottom: 50px;
}

.selling_steps_container {
  border-top: 1px solid #0FB943;
  background-color: #f5f5f5;
  padding-top: 50px;
  padding-bottom: 50px;
}

.seller-prev-next-icon {
  color: red !important;
}

.selling_steps .carousel-control-prev-icon,
.selling_steps .carousel-control-next-icon {
  height: 100px;
  width: 60px;
  outline: black;
  background-size: 100%, 100%;
  border-radius: 5px;
  border: none;
  -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
  background-image: none;
}

.selling_steps .carousel-control-next-icon:after {
  content: '>';
  font-size: 55px;
  color: #0FB943;
}

.selling_steps .carousel-control-prev-icon:after {
  content: '<';
  font-size: 55px;
  color: #0FB943;
}

.selling_text {
  margin-top: -50px;
  font-size: 1.4rem;
  font-weight: bolder;
}

a:hover {
  text-decoration: none;
}

a {
  text-decoration: none;
}

/* .progress-step:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -10;
  top: 6px;
  bottom: 12px;
  right: -10px;
  width: 100%;
  height: 3px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
} */
.upper_row_seller_registration {
  margin-top: 50px;
  margin-bottom: 10px;
}

.fa-custom {
  font-size: 1.3rem;
}

.user_row::after {
  content: " ";
  display: block;
  position: absolute;
  height: 3px;
  background: silver;
  width: 80%;
  left: 60%;
  top: calc(50% - 30px);
}

.container_background_seller_registration {
  background-color: #f7f7f7;
  padding-bottom: 30px;
}

.bottom_row_seller_registration {
  background-color: white;
  -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
  padding: 20px 40px;
}

.seller_input_design {
  margin-top: 20px;
  padding: 5px 10px;
  outline: none;
}

.seller_input_design::-webkit-input-placeholder {
  font-size: 0.9rem;
  color: #666;
}

.seller_input_design:-ms-input-placeholder {
  font-size: 0.9rem;
  color: #666;
}

.seller_input_design::-ms-input-placeholder {
  font-size: 0.9rem;
  color: #666;
}

.seller_input_design::placeholder {
  font-size: 0.9rem;
  color: #666;
}

.w-48 {
  width: 48%;
  float: left;
}

.seller_input_design::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.right_align_input {
  float: right;
}

.right-image-seller {
  margin-left: 30px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}

.back_btn {
  background-color: silver;
  border: none;
  -webkit-box-shadow: 1px 0px 1px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0px 1px 0px rgba(0, 0, 0, 0.2);
  margin-right: 10px;
  padding: 10px 20px;
  font-weight: bolder;
  color: #a09d9d;
  outline: none;
  pointer-events: none;
}

.back_btn_active {
  background-color: silver;
  border: none;
  -webkit-box-shadow: 1px 0px 1px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0px 1px 0px rgba(0, 0, 0, 0.2);
  margin-right: 10px;
  padding: 10px 20px;
  font-weight: bolder;
  color: black;
  outline: none;
}

.back_btn_active:hover {
  background-color: #a09d9d;
}

.save_and_continue {
  background-color: #0FB943;
  border: none;
  -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
  color: white;
  padding: 10px 20px;
  font-weight: bolder;
  outline: none;
}

.save_and_continue:hover {
  background-color: #0FB943;
}

.store_info {
  display: none;
}

.image_and_text_seller div {
  margin-top: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
}

.seller_images {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 110%;
  border: 1px solid #b5babd;
  padding: 3px;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonals {
  margin-top: 100px;
  background-color: white;
  width: 400px;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  color: #666;
}

.testimonals:before {
  content: " ";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 30px);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid white;
}

.inner-text p:nth-child(1) {
  margin-top: 10px;
}

.testimonals_container {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.testimonals_container div {
  text-align: center;
  display: inline-block;
}

.existing_sellers_slider .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #0FB943;
}

.existing_sellers_slider .carousel-indicators .active {
  background-color: darkred;
}

.existing_sellers_slider .carousel-indicators {
  bottom: -50px;
}

.w-80 {
  width: 80%;
}

/* Seller Login Design Ends */
.margin-in-container {
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.modal {
  width: 100% !important;
  height: 100% !important;
}

.modal-backdrop {
  width: 100% !important;
  height: 100% !important;
}

/* Track Order Design Ends */
/* /added custom css old */
.image_wrapper_productDescription {
  min-height: 60vh;
  max-height: 60vh;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
}

.image_wrapper_productDescription img {
  max-height: 60vh;
  height: auto;
  width: auto;
}

.guranteeImg {
  height: 20px;
  width: 20px;
}

.navbar-nav .navbar_login_signup_design {
  background-color: white;
  padding: 5px 10px !important;
  border-radius: 5px;
  -webkit-transition: all 1s ease-in;
  transition: all 1s ease-in;
  position: relative;
}

.login_signup_container {
  position: absolute;
  top: 50px;
  right: 0;
  background-color: white;
  padding: 20px 30px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  width: 200px;
  display: none;
}

.login_signup_container .logout_btn {
  background-color: #f2f2f2;
  text-align: center;
  padding: 5px 10px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}

.login_signup_container .logout_btn i {
  display: inline-block;
  width: 30px;
  text-align: center;
}

.login_signup_container .logout_btn:hover {
  font-weight: 400;
  color: black;
  background-color: #d9d9d9;
}

.login_signup_container ul li a i {
  display: inline-block;
  width: 30px;
  text-align: center;
}

.login_signup_container ul li a span {
  color: #666;
  font-size: 0.8rem;
}

.login_signup_container::after {
  content: " ";
  position: absolute;
  top: -10px;
  left: calc(50% + 15px);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid red;
}

.login_signup_container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.login_signup_container ul li {
  width: 100%;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #1b1d24;
  font-weight: 500;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.login_signup_container ul .active {
  font-weight: bold;
  color: black;
}

.login_signup_container ul li:hover {
  font-weight: bold;
  color: black;
}

.tablinks_userDashboard {
  -webkit-transition: -webkit-transform 2s ease;
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
  font-weight: 600;
  color: #333e48;
}

.tablinks_userDashboard:hover {
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  font-weight: bolder;
  color: black;
}

.tablinks_userDashboard.active {
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  font-weight: bolder;
  color: black;
}

.bg_seller_tab {
  background-color: #f1f3f6;
}

.section_1_seller {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 10px;
}

.inner_content {
  background-color: white;
  padding: 10px 30px;
  margin-left: 20px;
  margin-top: 40px;
}

.sidebar_category_main_section ul li:nth-child(n+9) {
  display: none;
}

.sidebar_category_main_section .showMore {
  cursor: pointer;
  background-color: #0FB943;
  color: white;
  font-size: 0.8rem;
  border-radius: 5px;
  padding: 5px 10px;
  text-align: center;
  border: none;
  font-weight: bolder;
  margin-top: 10px;
  margin-left: 20px;
}

.sidebar_category_main_section .showMore:hover {
  color: black;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
}

.sidebar_category_main_section ul {
  max-height: 500px;
  overflow-x: hidden;
  overflow-y: auto;
}

.sidebar_category_main_section ul::-webkit-scrollbar {
  width: 5px;
}

.sidebar_category_main_section ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.sidebar_category_main_section ul::-webkit-scrollbar-thumb {
  background-color: #0FB943;
}

@media only screen and (max-width: 1300px) {
  .rating i, .rating span {
    color: #0FB943;
    font-size: 0.7rem !important;
  }
}

@media only screen and (max-width: 768px) {
  .inner_content_slider {
    margin-left: 20px;
  }
  .each_product_carousel {
    padding: 5px 10px;
    margin: 0px 0px;
  }
  .each_product_carousel_design2 {
    padding: 5px 10px;
    margin: 8px 5px;
  }
  .width-25 {
    width: 100%;
  }
  .width-100 {
    width: 100%;
  }
  .toggle_btn_navbar {
    font-size: 0.8rem;
  }
  .nav_background {
    padding: 0 !important;
  }
  .search_navbar {
    padding-left: 4px !important;
    width: 30% !important;
  }
  .hidden_small_screen_tab_description {
    display: none;
  }
  .tabcontent_design {
    border: none;
    padding: 40px 5px;
  }
  .tabcontent_design ul, .tabcontent_design ol {
    margin-top: 30px;
    margin-left: 0px;
  }
  .tabcontent_design2 {
    border: none;
    padding: 40px 5px;
  }
  .tabcontent_design2 h3 {
    font-weight: 400;
  }
  .tabcontent_design2 ul, .tabcontent_design2 ol {
    margin-top: 30px;
    margin-left: 0px;
  }
  .tabcontent_design2 select {
    margin-top: 20px !important;
  }
  .add_to_cart_product_description_small_screen {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: white;
    width: 100%;
    z-index: 999;
    margin: 0px;
    padding: 0px;
  }
}

@media only screen and (max-width: 575px) {
  .main_slider h2 {
    margin: 0;
    font-size: 1rem;
  }
  .main_slider h3 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .product_carousel_tab .nav-link {
    margin-right: 2px;
    padding-right: 0px;
    font-size: 1rem;
  }
  .each_product_carousel_list_view {
    padding: 10px 5px;
  }
  .bg-main-div {
    background-color: white;
    padding: 0px;
  }
  .bg-body {
    background-color: white;
  }
  .print-invoice, .cancel-order {
    width: 100%;
    margin-top: 20px;
    margin-left: 0px;
  }
}

@media only screen and (max-width: 768px) {
  .company-slogan {
    margin-left: 20%;
    font-size: 1.4rem;
  }
  .logo {
    height: 50px;
    margin-top: 4px;
    margin-left: 20%;
    margin-right: auto;
  }
  .search-item {
    margin-top: 5px;
  }
}

.product-template-margin-for-small-screen {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

@media only screen and (max-width: 975px) {
  .background-color-for-each-div-checkout-right {
    margin-right: 2px;
  }
  .background-color-for-each-div-checkout {
    margin-left: 2px;
  }
}

@media only screen and (max-width: 575px) {
  .background-color-for-each-div-checkout-right {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 575px) {
  .login-sidebar {
    display: none !important;
  }
  .sign-up-sidebar {
    display: none !important;
  }
}

@media only screen and (max-width: 900px) {
  .apply-coupen {
    margin-top: 1000px;
  }
  .divider {
    padding-left: 2px;
    padding-right: 2px;
    text-align: center;
  }
  .shipping-fee {
    margin-top: 0px;
  }
  .specification {
    margin-left: 0px;
  }
  .apply-coupen {
    font-size: 0.8rem;
    margin-top: 30px;
    padding-top: 10px;
  }
  .w-30 {
    width: 60%;
  }
}

@media only screen and (max-width: 768px) {
  .pl-10 {
    padding-left: 10px;
  }
  .mySlides-div {
    height: 40vh !important;
  }
  .userComment {
    margin-left: 30px;
  }
  .userImage {
    padding-left: 20px;
  }
  .sort-by-buttons input {
    margin-top: 5px;
  }
  .sort-by-price {
    margin-top: 5px;
    margin-left: 1px;
  }
}

@media only screen and (max-width: 768px) {
  .progress-marker-track {
    margin-left: 10px !important;
  }
  .line-height-for-btns {
    width: 100%;
    line-height: 4;
  }
  .information-container-cart-page {
    right: 20%;
  }
}

@media only screen and (max-width: 1300px) {
  .background-color-for-each-div {
    margin: 0;
  }
  .background-color-for-each-div-right {
    margin: 0;
    margin-left: -20px;
    padding-right: 5px;
    padding-left: 27px;
  }
  .line-height {
    line-height: 1.2;
  }
}

@media only screen and (max-width: 768px) {
  .line-height {
    line-height: 1.2;
  }
  .pl-3-order {
    padding-left: 2px;
    padding-right: 2px;
    line-height: 18px;
  }
  .outer-border-for-ordered-product {
    padding-bottom: 20px;
  }
  .background-color-for-each-div-track {
    margin-left: 0px;
    margin-right: 0px;
  }
  .image_wrapper_index img {
    width: auto;
    min-width: auto;
    min-height: 100%;
  }
}

@media only screen and (max-width: 499px) {
  :root {
    font-size: 16px;
  }
  .add-to-cart-wishlist {
    padding: 2px;
    margin-top: 4px;
  }
  .information-container-cart-page {
    right: 10%;
  }
}

.common_btn {
  background-color: #0FB943;
  color: white;
  padding: 2px 5px;
  font-size: 0.8rem;
  border: none;
  border-radius: 5px;
  line-height: 25px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  transition: background-color 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  transition: background-color 0.3s ease-in, box-shadow 0.3s ease-in;
  transition: background-color 0.3s ease-in, box-shadow 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  display: inline-block;
  height: 30px;
  margin: 0px;
}

@media only screen and (max-width: 575px) {
  .common_btn {
    font-size: 0.7rem !important;
  }
}

.common_btn:hover {
  background-color: #0da13a;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  color: white;
}

#big .imageContainer-Inner {
  height: 400px;
  overflow: hidden;
}

#big .imageContainer-Inner img {
  display: block;
  min-height: 400px;
  max-height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

#thumbs {
  width: 100%;
  display: block;
  margin: 0px auto;
  position: relative;
}

#thumbs .imageWrapperCarouselThumbnails {
  height: 80px;
  border: 1px solid white;
  margin: 0px 8px;
  padding: 2px;
}

#thumbs .imageWrapperCarouselThumbnails img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 76px;
  min-height: 76px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.thumbnail-container-main {
  position: relative;
}

.nav_design {
  position: relative;
}

.nav_design .owl-theme .owl-nav [class*=owl-] {
  margin: 0px;
}

.nav_design .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
}

.nav_design .owl-theme .owl-nav .owl-prev, .nav_design .owl-theme .owl-nav .owl-next {
  position: absolute;
  height: 50px;
  width: 30px;
  color: white;
  border: none;
  border-radius: 0px;
  z-index: 100;
  outline: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: white;
  width: 47px;
  height: 104px;
  background-color: rgba(255, 255, 255, 0.98);
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.11);
  -webkit-transition: opacity .1s ease-in;
  transition: opacity .1s ease-in;
}

.nav_design .owl-theme .owl-nav .owl-prev span, .nav_design .owl-theme .owl-nav .owl-next span {
  color: black;
  font-size: 1.5rem;
}

.nav_design .owl-theme .owl-nav .owl-prev i, .nav_design .owl-theme .owl-nav .owl-next i {
  font-size: 1.5rem;
  color: black;
  text-shadow: 2px 2px 4px black;
}

.nav_design .owl-theme .owl-nav .owl-prev {
  left: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.nav_design .owl-theme .owl-nav .owl-next {
  right: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

@media only screen and (max-width: 575px) {
  .nav_design .owl-theme .owl-nav .owl-prev i {
    font-size: 1rem;
  }
  .nav_design .owl-theme .owl-nav .owl-next i {
    font-size: 1rem;
  }
}

.nav_design.nav_design_end_to_end .owl-theme .owl-nav .owl-prev {
  left: 0px;
}

.nav_design.nav_design_end_to_end .owl-theme .owl-nav .owl-next {
  right: 0px;
}

.nav_design_small {
  position: relative;
}

.nav_design_small .owl-theme .owl-nav [class*=owl-] {
  margin: 0px;
}

.nav_design_small .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
}

.nav_design_small .owl-theme .owl-nav .owl-prev, .nav_design_small .owl-theme .owl-nav .owl-next {
  position: absolute;
  color: white;
  border: none;
  border-radius: 0px;
  z-index: 100;
  outline: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: white;
  width: 27px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.98);
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.11);
  -webkit-transition: opacity .1s ease-in;
  transition: opacity .1s ease-in;
}

.nav_design_small .owl-theme .owl-nav .owl-prev span, .nav_design_small .owl-theme .owl-nav .owl-next span {
  color: black;
  font-size: 1.5rem;
}

.nav_design_small .owl-theme .owl-nav .owl-prev i, .nav_design_small .owl-theme .owl-nav .owl-next i {
  font-size: 1.5rem;
  color: black;
  text-shadow: 2px 2px 4px black;
}

.nav_design_small .owl-theme .owl-nav .owl-prev {
  left: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.nav_design_small .owl-theme .owl-nav .owl-next {
  right: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

@media only screen and (max-width: 575px) {
  .nav_design_small .owl-theme .owl-nav .owl-prev i {
    font-size: 1rem;
  }
  .nav_design_small .owl-theme .owl-nav .owl-next i {
    font-size: 1rem;
  }
}

.nav_design_small.nav_design_end_to_end .owl-theme .owl-nav .owl-prev {
  left: 0px;
}

.nav_design_small.nav_design_end_to_end .owl-theme .owl-nav .owl-next {
  right: 0px;
}

.owl-theme .owl-nav .disabled {
  display: none;
}

.owl-theme:hover .owl-prev, .owl-theme:hover .owl-next {
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}

.owl-theme:hover .owl-prev:hover i, .owl-theme:hover .owl-next:hover i {
  color: #ce1126 !important;
}

.thumbnail-container-main {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 44;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .thumbnail-container-main {
    position: relative;
    bottom: unset;
    margin-top: 10px;
  }
}

/*****************************New Header******************************/
.header-wrapper-outer {
  background-color: #c6ced1;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: block;
  position: relative;
}

.header-wrapper-outer .navbar-wrapper .navbar-nav .nav-item .nav-link {
  font-size: 0.8rem;
  color: black;
  font-weight: 600;
  text-transform: uppercase;
}

.header-wrapper-outer .navbar-wrapper .navbar-nav .nav-item .nav-link.big_text_nav {
  font-size: 1.5rem;
}

.header-wrapper-outer .header-wrapper {
  position: relative;
  z-index: 9998;
}

.navbar-image {
  max-width: 300px;
}

@media only screen and (max-width: 575px) {
  .navbar-image {
    max-width: 250px;
  }
}

@media only screen and (max-width: 400px) {
  .navbar-image {
    max-width: 200px;
  }
}

.ml-custom-navbar {
  margin-left: 10%;
}

.bg-custom {
  background-color: #c6ced1 !important;
  padding-left: 0px !important;
}

.profile-header {
  position: relative;
}

.profile-wrapper {
  position: absolute;
  top: calc(100% + 22px);
  right: 0px;
  background-color: white;
  width: 150px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  z-index: 999999;
}

.profile-wrapper ul li {
  display: inline-block;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(15, 185, 67, 0.6);
  position: relative;
}

.profile-wrapper ul li a {
  display: inline-block;
  width: 100%;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  position: relative;
  z-index: 3;
}

.profile-wrapper ul li::before {
  content: " ";
  position: absolute;
  top: 0px;
  height: 100%;
  left: 0;
  width: 0px;
  opacity: 0;
  -webkit-transition: width 0.3s ease-in, opacity 0.1s ease;
  transition: width 0.3s ease-in, opacity 0.1s ease;
  background-color: #0FB943;
}

.profile-wrapper ul li:hover {
  color: white;
}

.profile-wrapper ul li:hover:before {
  width: 100%;
  opacity: 1;
}

.profile-wrapper ul li:last-child {
  border-bottom: none;
}

.loginBtn {
  cursor: pointer;
}

.loginBtn, .edit-cart-btn11 {
  padding: 5px 10px;
  color: #0FB943;
  -webkit-transition: background-color 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  transition: background-color 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, background-color 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, background-color 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  min-width: 100px;
  font-size: 0.8rem;
  text-align: center;
  border-radius: 5px;
}

.loginBtn i, .edit-cart-btn11 i {
  color: #0FB943;
}

.loginBtn span, .edit-cart-btn11 span {
  color: black;
  font-weight: 600;
}

/*****************************New Header Ends******************************/
/*****************************New Footer******************************/
.offerbg {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}

.ad_design_wrapper {
  background-color: black;
  color: white;
  max-width: 700px;
  margin: 0px auto;
  padding: 10px 10px;
  border-radius: 10px;
  margin-bottom: -25px;
  font-size: 1.2rem;
  position: relative;
  z-index: 99;
}

.ad_design_wrapper .get_a_quote_btn {
  text-decoration: underline;
  font-size: 1.4rem;
  font-weight: 600;
  margin-left: 30px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.ad_design_wrapper .get_a_quote_btn:hover {
  color: #0FB943;
}

@media only screen and (max-width: 575px) {
  .ad_design_wrapper .get_a_quote_btn {
    display: block;
  }
}

@media only screen and (max-width: 575px) {
  .ad_design_wrapper {
    margin-top: 20px;
    margin-bottom: -35px;
  }
}

.links_design {
  font-weight: 600;
}

.links_design:hover {
  color: #ce1126;
}

.links_design i {
  color: #0FB943;
}

.footer-main-wrapper {
  background-color: #0FB943;
  padding: 30px 15px;
}

.footer-main-wrapper .imageWrapper-footer img {
  max-height: 60px;
}

.footer-main-wrapper .payment-images {
  max-height: 30px;
}

.footer-main-wrapper .footer-heading {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.footer-main-wrapper .footer-heading h3 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.footer-main-wrapper .footer-heading:before {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  height: 1px;
}

.footer-main-wrapper .link-white {
  color: white;
}

.footer-main-wrapper .footer-content p {
  color: white;
}

@media only screen and (max-width: 575px) {
  .footer-main-wrapper .footer-content p {
    font-size: 1rem;
  }
}

.footer-main-wrapper .footer-content .footer-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main-wrapper .footer-content .footer-navigation li {
  display: inline-block;
  width: 100%;
  padding: 2px 0px;
  color: white;
  font-size: 0.8rem;
}

.footer-main-wrapper .footer-content .footer-navigation li:hover {
  color: #ce1126;
}

@media only screen and (max-width: 575px) {
  .footer-main-wrapper .footer-content .footer-navigation li {
    font-size: 1rem;
  }
}

.footer-main-wrapper .footer-content .social-media-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main-wrapper .footer-content .social-media-navigation li {
  display: inline-block;
  width: 40px;
  text-align: center;
}

.footer-main-wrapper .footer-content .social-media-navigation li a {
  display: block;
  width: 100%;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 100%;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}

.footer-main-wrapper .footer-content .social-media-navigation li a i {
  line-height: 30px;
  font-size: 1rem;
}

.footer-main-wrapper .footer-content .social-media-navigation li a:hover {
  background-color: #ce1126;
  color: white;
}

.footerLinksWrapper ul {
  list-style: none;
  padding-left: 0px;
}

.footerLinksWrapper ul li {
  font-size: 0.8rem;
  color: white;
}

.footerLinksWrapper ul li:hover {
  color: #ce1126;
}

@media only screen and (max-width: 575px) {
  .footerLinksWrapper ul li {
    font-size: 1rem;
  }
}

.offer_banner_small {
  border-radius: 10px !important;
  height: auto;
  width: 100%;
}

.no_box_shadow {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.each_cart_item {
  border: 1px solid #f2f2f2;
  padding: 10px 15px;
  border-radius: 10px;
}

.each_cart_item .image_block {
  display: block;
  margin: auto 0px;
  text-align: center;
  max-width: 150px;
  padding: 5px 15px;
}

.each_cart_item .image_block img {
  max-height: 60px;
  width: auto;
}

.each_cart_item .product_info_block {
  width: calc(100% - 150px);
}

.max1200_only {
  max-width: 1200px;
}

@media only screen and (max-width: 1300px) {
  .max1200_only {
    max-width: auto;
  }
}

.min1200_only {
  min-width: 1200px;
}

@media only screen and (max-width: 1200px) {
  .min1200_only {
    min-width: auto;
  }
}

.each_item_for_calculation .header {
  width: calc(100% - 120px);
  display: block;
}

.each_item_for_calculation .price_block {
  width: 120px;
  min-width: 100px;
  display: block;
}

.sticky_sidebar {
  position: sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  top: 50px;
  height: 100%;
  width: 100%;
  z-index: 999;
}

@media only screen and (max-width: 991px) {
  .sticky_sidebar {
    position: relative !important;
    top: unset;
  }
}

.sticky_footer {
  position: sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  bottom: 0px;
  width: 100%;
  z-index: 999;
}

.iframe-wrapper {
  background-color: #f2f2f2;
  border-radius: 10px;
  border-left: 5px solid #ce1126;
  padding: 15px 10px;
  padding-bottom: 100px;
}

.form_wrapper_booking .form_field_wrapper {
  display: block;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: white;
  border-radius: 10px;
  position: relative;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  height: 40px;
}

.form_wrapper_booking .form_field_wrapper.focused label {
  display: block;
  top: -5px;
  left: 20px;
  z-index: 99;
  opacity: 1;
}

.form_wrapper_booking .form_field_wrapper.focused .inp_field::-webkit-input-placeholder {
  opacity: 0;
  color: white;
}

.form_wrapper_booking .form_field_wrapper.focused .inp_field:-ms-input-placeholder {
  opacity: 0;
  color: white;
}

.form_wrapper_booking .form_field_wrapper.focused .inp_field::-ms-input-placeholder {
  opacity: 0;
  color: white;
}

.form_wrapper_booking .form_field_wrapper.focused .inp_field::placeholder {
  opacity: 0;
  color: white;
}

.form_wrapper_booking .form_field_wrapper label {
  position: absolute;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  left: 30px;
  top: 15px;
  background-color: white;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0;
  z-index: -1;
  line-height: 10px;
  margin: 0px;
}

.form_wrapper_booking .form_field_wrapper .inp_field {
  display: block;
  width: 100%;
  border: none;
  background-color: white;
  border-radius: 10px;
  height: 100%;
  padding: 0px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  text-shadow: none;
  color: #312f2f;
}

.form_wrapper_booking .form_field_wrapper .inp_field::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  color: #312f2f;
}

.form_wrapper_booking .form_field_wrapper .inp_field:-ms-input-placeholder {
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  color: #312f2f;
}

.form_wrapper_booking .form_field_wrapper .inp_field::-ms-input-placeholder {
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  color: #312f2f;
}

.form_wrapper_booking .form_field_wrapper .inp_field::placeholder {
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  color: #312f2f;
}

.pay_now_btn {
  display: block;
  width: 100%;
  background-color: #ce1126;
  color: white;
  border: none;
  padding: 8px 10px;
  font-size: 1rem;
  font-weight: 500;
  max-width: 300px;
  margin: 0px 0px 0px auto;
  border-radius: 10px;
}

.pay_now_btn:focus {
  outline: none;
}

.flaticon-shopping-bag:before {
  margin-left: 0px;
}

.tab_container_wrapper {
  min-height: 200px;
  padding: 20px 25px 40px 25px;
}

.border_radius_10 {
  border-radius: 10px;
  overflow: hidden;
}

.bg-transparent {
  background-color: transparent !important;
}

.input_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-color: #f2f2f2;
  border-radius: 10px;
  max-width: 100%;
  margin: 0px auto;
  border: 1px solid #b5b5b5;
}

.input_wrapper .icon_wrapper {
  width: 40px;
  min-width: 40px;
  color: #666;
  margin: auto;
  text-align: center;
}

.input_wrapper .input_box {
  width: calc(100% - 40px);
  display: inline-block;
  position: relative;
}

.input_wrapper .input_box input, .input_wrapper .input_box select {
  width: 100%;
  display: inline-block;
  background-color: transparent;
  border: none;
  padding: 10px 10px;
  color: #0FB943;
}

.input_wrapper .input_box input::-webkit-input-placeholder, .input_wrapper .input_box select::-webkit-input-placeholder {
  color: #666;
}

.input_wrapper .input_box input:-ms-input-placeholder, .input_wrapper .input_box select:-ms-input-placeholder {
  color: #666;
}

.input_wrapper .input_box input::-ms-input-placeholder, .input_wrapper .input_box select::-ms-input-placeholder {
  color: #666;
}

.input_wrapper .input_box input::placeholder, .input_wrapper .input_box select::placeholder {
  color: #666;
}

.input_wrapper .input_box input:focus, .input_wrapper .input_box select:focus {
  outline: none;
  border: none;
}

.input_wrapper:focus {
  border: 1px solid black;
}

.login_button {
  background-color: #0FB943;
  cursor: pointer;
  border: none;
  color: white;
  width: 100%;
  display: inline-block;
  padding: 8px 10px;
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.login_button:hover {
  -webkit-box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.6);
          box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.6);
}

.lighten-modal {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.4);
          box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.4);
}

.small-login-box {
  width: 400px;
  max-width: 100%;
  margin: 0px auto;
}

.login-tabs, .hiddenInitial {
  display: none;
}

.login-container .login-btns-group {
  background-color: #f2f2f2;
  color: #0FB943;
  border: none;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 0px;
}

.login-container .login-btns-group:focus {
  border: none;
  outline: none;
}

.login-container .login-btns-group.active {
  background-color: #0FB943;
  color: white;
}

.modal-backdrop {
  width: 100% !important;
  height: 100% !important;
  z-index: 99998;
  background-color: rgba(0, 0, 0, 0.8) !important;
  opacity: 1 !important;
}

.modal {
  width: 100% !important;
  height: 100% !important;
  z-index: 999999;
  position: fixed;
}

.jq-toast-wrap.top-right {
  z-index: 999999 !important;
}

.aside-wrapper-main {
  background-color: white;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 6px;
}

.aside-wrapper-main .main-contents ul {
  padding-left: 0px;
}

.aside-wrapper-main .main-contents ul li {
  display: inline-block;
  width: 100%;
  text-align: left;
  margin-bottom: 4px;
  position: relative;
  background-color: white;
  border: 1px solid #f2f2f2;
  border-radius: 6px;
}

.aside-wrapper-main .main-contents ul li a {
  display: inline-block;
  width: 100%;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 10px;
  position: relative;
  z-index: 3;
  color: #666;
}

.aside-wrapper-main .main-contents ul li a i {
  width: 30px;
  font-size: 1rem;
  text-align: center;
  display: inline-block;
}

.aside-wrapper-main .main-contents ul li::before {
  content: " ";
  position: absolute;
  top: 0px;
  height: 100%;
  left: 0;
  width: 0px;
  opacity: 0;
  -webkit-transition: width 0.3s ease-in, opacity 0.1s ease;
  transition: width 0.3s ease-in, opacity 0.1s ease;
  background-color: #f2f2f2;
}

.aside-wrapper-main .main-contents ul li:hover {
  color: #0FB943;
}

.aside-wrapper-main .main-contents ul li:hover a {
  color: #0FB943;
}

.aside-wrapper-main .main-contents ul li:hover:before {
  width: 100%;
  opacity: 1;
}

.aside-wrapper-main .main-contents ul li:last-child {
  margin-bottom: 0px;
}

.aside-wrapper-main .main-contents ul li.active {
  color: #0FB943;
}

.aside-wrapper-main .main-contents ul li.active a {
  color: #0FB943;
}

.aside-wrapper-main .main-contents ul li.active:before {
  width: 100%;
  opacity: 1;
}

.title-wrapper .image-wrapper .profile-icon {
  width: 80px;
  height: 80px;
}

.info-container-profile {
  background-color: white;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 10px;
  min-height: 60vh;
  border-radius: 6px;
}

.inputWrapper .common-input {
  width: 100%;
  border: 1px solid #E5E5E5;
  color: black;
  font-size: 0.8rem;
  padding: 8px 10px;
  border-radius: 5px;
  font-weight: 500;
}

.inputWrapper .common-input::-webkit-input-placeholder {
  font-size: 0.8rem;
  color: black;
}

.inputWrapper .common-input:-ms-input-placeholder {
  font-size: 0.8rem;
  color: black;
}

.inputWrapper .common-input::-ms-input-placeholder {
  font-size: 0.8rem;
  color: black;
}

.inputWrapper .common-input::placeholder {
  font-size: 0.8rem;
  color: black;
}

.inputWrapper .common-input:focus {
  border-color: #ce1126;
  color: #ce1126;
  outline: none;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(206, 17, 38, 0.2);
          box-shadow: 0px 0px 10px 0px rgba(206, 17, 38, 0.2);
}

.inputWrapper .common-input:focus::-webkit-input-placeholder {
  color: #ce1126;
}

.inputWrapper .common-input:focus:-ms-input-placeholder {
  color: #ce1126;
}

.inputWrapper .common-input:focus::-ms-input-placeholder {
  color: #ce1126;
}

.inputWrapper .common-input:focus::placeholder {
  color: #ce1126;
}

.inputWrapper .common-input:disabled {
  background-color: #eeeeee;
  cursor: not-allowed;
}

.inputWrapper label {
  font-size: 0.8rem;
  font-weight: 600;
}

.addMoreAddress {
  display: inline-block;
  height: 120px;
  width: 90%;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  margin: 10px 10px;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in;
  transition: -webkit-box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(206, 17, 38, 0.3);
          box-shadow: 0px 0px 10px 0px rgba(206, 17, 38, 0.3);
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.addMoreAddress .sbs-cnt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.addMoreAddress:hover {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.addMoreAddress:hover .header-block h3 {
  font-weight: 600;
}

.table_wrapper_orders {
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
}

.table_wrapper_orders table {
  min-width: 500px;
}

.table_wrapper_orders tbody td {
  font-size: 0.8rem;
  font-weight: 500;
}

.table_wrapper_orders tbody td .view_detail_btn {
  border-radius: 5px;
  background-color: #0FB943;
  color: white;
  border: none;
  padding: 2px 10px;
  display: inline-block;
  cursor: pointer;
  font-size: 0.7rem;
  outline-color: #0FB943;
}

.table_wrapper_orders tbody td .active_inactive {
  border-radius: 5px;
  display: inline-block;
  background-color: #666;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.table_wrapper_orders tbody td .active_inactive.active {
  background-color: #009b01;
}

.table_wrapper_orders tbody td .active_inactive.inactive {
  background-color: #0FB943;
}

.table_wrapper_orders tbody td .active_inactive.pending {
  background-color: #f78800;
}

.table_wrapper_orders tbody td .active_inactive.inprogress {
  background-color: #666;
}

.table_wrapper_orders tbody td .active_inactive.completed {
  background-color: #009b01;
}

.table_wrapper_orders tbody td .active_inactive.canceled {
  background-color: #ce1126;
}

@media only screen and (max-width: 575px) {
  .table_wrapper_orders thead th {
    font-size: 0.9rem;
  }
  .table_wrapper_orders tbody td {
    font-size: 0.8rem;
  }
  .table_wrapper_orders tbody td .view_detail_btn {
    font-size: 0.7rem;
  }
  .table_wrapper_orders tbody td .active_inactive {
    font-size: 0.7rem;
  }
}

/*****************************New Footer ******************************/
.each-address-container {
  padding: 10px;
  border-radius: 10px;
  margin: 10px 10px;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in;
  transition: -webkit-box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  background-color: white;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
  min-height: 130px;
}

.each-address-container:hover {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.each-address-container:hover .header-block h3 {
  font-weight: 600;
}

.each-address-container .header-block h3 {
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  font-weight: 600;
  max-height: 73px;
  /* fallback */
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
  text-transform: uppercase;
}

.each-address-container .header-block.one-line-header h3 {
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: 21px;
  /* fallback */
  -webkit-line-clamp: 1;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.each-address-container.active {
  background-color: #0FB943;
}

.each-address-container.active .header-block h3 {
  color: white;
}

.each-address-container.active .address-block span {
  color: white;
}

.each-address-container.active .edit-address, .each-address-container.active .delete-address {
  color: white;
}

.each-address-container:hover {
  cursor: pointer;
  background-color: #0FB943;
}

.each-address-container:hover .header-block h3 {
  color: white;
}

.each-address-container:hover .address-block span {
  color: white;
}

.each-address-container:hover .edit-address, .each-address-container:hover .delete-address {
  color: white;
}

.each-address-container .address-block span {
  font-weight: 400;
  font-size: 0.8rem;
  display: inline-block;
  line-height: 18px;
}

.each-address-container .edit-address, .each-address-container .delete-address {
  position: absolute;
  text-align: center;
  bottom: 0px;
  right: 0px;
  border-radius: 5px;
  height: 30px;
  width: 30px;
  background-color: transparent;
  color: #0FB943;
  font-size: 0.8rem;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.each-address-container .edit-address i, .each-address-container .delete-address i {
  line-height: 30px;
}

.each-address-container .edit-address:hover, .each-address-container .delete-address:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

.each-address-container .delete-address {
  bottom: unset;
  top: 10px;
}

.each-address-container .image-block {
  position: relative;
  min-height: 100px;
  max-height: 100px;
}

.each-address-container .image-block img {
  display: block;
  height: 100%;
  width: 100%;
  min-height: 100px;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.form-container-address .form-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.form-container-address .form-wrapper label {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #0FB943;
  color: white;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  text-align: center;
}

.form-container-address .form-wrapper label i {
  line-height: 40px;
}

.form-container-address .form-wrapper input, .form-container-address .form-wrapper select {
  width: calc(100% - 30px);
  border: 1px solid rgba(239, 239, 239, 0.7);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  height: 40px;
  line-height: 40px;
  color: black;
  outline: none;
  font-size: 0.8rem;
  padding-left: 20px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.form-container-address .form-wrapper input:focus, .form-container-address .form-wrapper select:focus {
  outline: none;
  border: 1px solid #0FB943;
}

.form-container-address .form-wrapper input::-webkit-input-placeholder, .form-container-address .form-wrapper select::-webkit-input-placeholder {
  font-size: 0.7rem;
  line-height: 40px;
}

.form-container-address .form-wrapper input:-ms-input-placeholder, .form-container-address .form-wrapper select:-ms-input-placeholder {
  font-size: 0.7rem;
  line-height: 40px;
}

.form-container-address .form-wrapper input::-ms-input-placeholder, .form-container-address .form-wrapper select::-ms-input-placeholder {
  font-size: 0.7rem;
  line-height: 40px;
}

.form-container-address .form-wrapper input::placeholder, .form-container-address .form-wrapper select::placeholder {
  font-size: 0.7rem;
  line-height: 40px;
}

.paymentOptions {
  list-style: none;
}

.paymentOptions li {
  display: block;
  background-color: #f2f2f2;
  padding: 6px 10px;
  font-weight: 600;
  cursor: pointer;
}

.paymentOptions li:first-child {
  border-top-left-radius: 10px;
}

.paymentOptions li:last-child {
  border-top-right-radius: 10px;
}

.paymentOptions li:hover {
  background-color: #e5e5e5;
  color: black;
}

.paymentOptions li.active {
  border: 1px solid #f2f2f2;
  border-bottom: 5px solid #0FB943;
  background-color: white;
  color: #0FB943;
}

.payTabs {
  display: none;
}

.checkoutForm_iframe {
  display: block;
  height: 100%;
  width: 100%;
  min-height: 400px;
  overflow: auto;
}

.checkoutForm_iframe iframe {
  height: 100%;
  min-height: 400px;
  width: 100%;
  display: block;
  min-height: 300px;
  border: none;
  outline: none;
}

#cardPayment {
  position: relative;
}

#cardPayment.disablePaymentCards::before {
  display: block;
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.1);
}

/****************************** parsely error design ends   *************************************/
.parsley-errors-list.filled {
  position: relative;
  background-color: none;
  font-size: 0.7rem;
  color: red !important;
  list-style: none;
  display: block;
  left: 20px;
  border: none !important;
  padding-left: 0px;
}

.parsley-errors-list.filled li {
  color: red;
  font-size: 0.7rem;
  border: none !important;
}

/****************************** parsely error design ends   *************************************/
.disabledCartButton {
  pointer-events: none;
}

.call_now_btn_custom {
  display: inline-block;
  height: 40px;
  width: 160px;
  text-align: center;
  line-height: 40px;
  background-color: #ce1126;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 5px;
  position: relative;
}

.call_now_btn_custom .abs-call {
  position: absolute;
  top: -20px;
  left: 10px;
  background-color: white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 20px;
  font-size: 0.8rem;
  display: inline-block;
  line-height: 20px;
  color: black;
  width: 60px;
}

.rounded-10 {
  border-radius: 15px !important;
}

.custom_select_bar {
  border: none;
  border-bottom: 1px solid #0fb94d;
  background-color: transparent;
  display: block;
  width: 100%;
  padding: 5px 10px;
  font-size: 0.8rem;
}

.custom_select_bar:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.category-wrapper {
  border: 1px solid #dddddd;
  background-color: white;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.category-wrapper .header {
  background-color: #f2f2f2;
  color: black;
  padding: 5px 5px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  padding: 3px 10px;
}

.category-wrapper .contents {
  padding: 10px 15px;
}

.category-wrapper .contents ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.category-wrapper .contents ul li {
  border-bottom: 1px solid #dddddd;
}

.category-wrapper .contents ul li a {
  display: block;
  padding: 5px 10px;
  font-size: 0.8rem;
}

.category-wrapper .contents ul li a:hover {
  color: #0FB943;
}

.category-wrapper .contents ul li:last-child {
  border-bottom: none;
}

.main_slider_home {
  position: relative;
}

.search_container {
  max-width: 300px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15px;
  z-index: 99;
  background-color: white;
}

@media only screen and (max-width: 991px) {
  .search_container {
    position: relative;
    left: unset;
    top: unset;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    -webkit-transform: none;
            transform: none;
  }
}

.search_container .car-parts-form h2 {
  color: #c6ced1 !important;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
}

.search_container .car-parts-form h2 span {
  color: #445054 !important;
}

.search_container .car-parts-form .select-vehicle {
  padding: 10px 15px;
}

.search_container .car-parts-form .select-vehicle .heading {
  font-size: 14px;
  color: #445054 !important;
  text-transform: uppercase;
  line-height: 12px;
  margin: 0 0 15px;
}

.search_container .car-parts-form .select-vehicle select {
  width: 100%;
  color: #727575;
  font-size: 13px;
  background-color: #fff;
  line-height: 14px;
  display: inline-block;
  border: 1px solid #dae0e1;
  border-radius: 5px;
  padding: 10px 10px;
}

.search_container .car-parts-form .select-vehicle .field {
  display: block;
}

.search_container .car-parts-form .info-group {
  padding: 10px 15px;
  background-color: #f2f2f2;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.search_container .car-parts-form .info-group ul li {
  display: block;
  position: relative;
  padding-left: 25px;
  font-size: 0.8rem;
}

.search_container .car-parts-form .info-group ul li::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  position: absolute;
  top: 2px;
  left: 0px;
  color: #0FB943;
}

.search_container .form-wrapper {
  position: relative;
  padding: 10px 0px;
}

.search_container .form-wrapper .abs_content_form {
  position: absolute;
  left: calc(100% + 20px);
  background-color: white;
  top: 0px;
  width: 600px;
  -webkit-box-shadow: 5px 0 20px rgba(43, 43, 43, 0.75);
          box-shadow: 5px 0 20px rgba(43, 43, 43, 0.75);
  padding: 14px 15px 12px;
  border-radius: 10px;
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .search_container .form-wrapper .abs_content_form {
    position: fixed;
    left: 0px;
    right: 0px;
    height: 100vh;
    width: 100vw;
    z-index: 99999;
    padding-top: 100px;
  }
}

.search_container .form-wrapper .abs_content_form.model_ctn {
  top: 0px;
  height: 100%;
}

.search_container .form-wrapper .abs_content_form:before {
  content: " ";
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid white;
  left: -10px;
  bottom: 120px;
}

.search_container .form-wrapper .abs_content_form.model66:before {
  bottom: 70px;
}

.search_container .form-wrapper .abs_content_form .list_design {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.search_container .form-wrapper .abs_content_form .list_design li {
  width: 14%;
  border-radius: 10px;
  font-size: 0.8rem;
  text-align: center;
  min-height: 40px;
  padding: 5px 5px;
  display: inline-block;
}

.search_container .form-wrapper .abs_content_form .list_design li .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 65px;
  line-height: 60px;
  border: 1px solid #d6dddf;
  border-radius: 10px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  margin: auto;
}

.search_container .form-wrapper .abs_content_form .list_design li .items:hover {
  border-color: #0FB943;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.3);
}

.search_container .form-wrapper .abs_content_form .list_design li .items img {
  padding: 5px;
  max-height: 58px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}

.search_container .form-wrapper .abs_content_form .list_design li .model-title span {
  font-size: 0.7rem;
}

.scroll_design::-webkit-scrollbar {
  width: 5px;
}

.scroll_design::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.scroll_design::-webkit-scrollbar-thumb {
  background-color: #0FB943;
}

.vehicle-form {
  margin: 0px;
}

.image_wrapper_banner {
  background-color: #c6ced1;
  min-height: 100px;
  border-radius: 10px;
}

.image_wrapper_banner img {
  max-height: 200px;
}

.image_wrapper_banner.mg_custom {
  margin: 10px 10px;
}

.image_wrapper_banner.big img {
  max-height: 100%;
}

.image_wrapper_banner2 {
  background-color: white;
  min-height: 100px;
  border-radius: 10px;
  padding: 15px 10px 10px;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in;
  transition: -webkit-box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
}

.image_wrapper_banner2 .iconWrapper {
  min-height: 80px;
}

.image_wrapper_banner2 .title {
  margin-top: 10px;
}

.image_wrapper_banner2 .iconWrapperInner {
  background-color: white;
  height: 80px;
  width: 80px;
  border-radius: 100%;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}

.image_wrapper_banner2 img {
  max-height: 45px;
  vertical-align: middle;
  margin: auto;
}

.image_wrapper_banner2 h3 {
  min-height: 30px;
}

.image_wrapper_banner2.mg_custom {
  margin: 10px 10px;
}

.image_wrapper_banner2:hover {
  -webkit-box-shadow: 0px 10px 30px 0px #c6ced1;
          box-shadow: 0px 10px 30px 0px #c6ced1;
  background-color: #0FB943;
}

.image_wrapper_banner2:hover .iconWrapperInner {
  -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.3);
}

.image_wrapper_banner2:hover h3 {
  color: white;
}

.page_breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.page_breadcrumb ul li {
  display: block;
  padding: 2px 10px;
  padding-left: 20px;
  position: relative;
  color: #0FB943;
}

.page_breadcrumb ul li.active {
  color: #555;
}

.page_breadcrumb ul li:before {
  content: "\f101";
  font-weight: 900;
  position: absolute;
  left: 0px;
  top: 0px;
  font-family: 'Font Awesome 5 Free';
  color: #ddd;
}

.page_breadcrumb ul li:first-child {
  padding-left: 0px;
}

.page_breadcrumb ul li:first-child::before {
  display: none;
}

.page_breadcrumb ul li a {
  display: block;
  font-size: 0.8rem;
}

.image_wrapper_banner img {
  max-height: 200px;
  border-radius: 10px;
}

.desc_dsg {
  background-color: white;
  border: 1px solid #c6ced1;
  padding: 10px;
  border-radius: 10px;
  cursor: default;
  min-height: 60px;
}

.desc_dsg.warning {
  background-color: #ffe3c2 !important;
  border-color: #ffe3c2;
}

.desc_dsg .icon_wrapper {
  margin: auto 0px;
  width: 55px;
  min-width: 30px;
  text-align: center;
}

.desc_dsg .icon_wrapper i {
  color: #0FB943;
}

.desc_dsg .content_wrapper p {
  font-size: 0.8rem;
}

.desc_dsg .navigation {
  margin: auto 0px;
}

.desc_dsg .navigation i {
  color: #0FB943;
}

.desc_dsg:hover {
  background-color: #c6ced1;
}

.desc_dsg.faded {
  background-color: #f2f2f2;
  border: none;
}

.min_width_60 {
  min-width: 100px;
}

@media only screen and (max-width: 575px) {
  .min_width_60 {
    min-width: 60px;
    font-size: 0.6rem !important;
    padding: 5px 10px !important;
    margin: 2px !important;
  }
}

.form-section-menu-bar {
  width: 100%;
  color: #727575;
  font-size: 13px;
  background-color: #fff;
  line-height: 14px;
  display: inline-block;
  border: 1px solid #dae0e1;
  border-radius: 5px;
  padding: 10px 10px;
}

.arrowWrapper i {
  font-size: 1rem;
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}

.arrowWrapper.rotated i {
  color: #0FB943;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.closeBtn {
  position: absolute;
  top: 5px;
  right: 10px;
  color: gray;
  cursor: pointer;
}

.closeBtn:hover {
  color: black;
}

.designed_image img {
  border-radius: 10px;
}

.image_wrapper_banner_long {
  background-color: transparent;
  min-height: 100px;
  border-radius: 10px;
  min-height: 150px;
  opacity: 0;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  background-color: rgba(242, 242, 242, 0.6);
}

.image_wrapper_banner_long img {
  max-height: 150px;
  border-radius: 10px;
  display: none !important;
}

.image_wrapper_banner_long:hover {
  opacity: 1;
}

.text-transform-none {
  text-transform: none !important;
}

.tab_design_desc ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  border-bottom: none;
}

.tab_design_desc ul li {
  width: 50%;
  background-color: #f2f2f2;
  padding: 10px 10px;
  border: 1px solid #d9d9d9;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.tab_design_desc ul li:first-child {
  border-top-right-radius: 0px;
}

.tab_design_desc ul li:last-child {
  border-top-left-radius: 0px;
}

.tab_design_desc ul li.active {
  background-color: white;
  border-bottom: none;
}

.tab-content-container {
  border: 1px solid #d9d9d9;
  border-top: none;
  border-radius: 10px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  padding: 20px;
}

.sticky_sidebar {
  position: sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 999;
}

#big.owl-theme .owl-nav, .owlNavDsg.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  margin: 0px;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#big.owl-theme .owl-nav .owl-prev, #big.owl-theme .owl-nav .owl-next, .owlNavDsg.owl-theme .owl-nav .owl-prev, .owlNavDsg.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 5px 10px !important;
}

#big.owl-theme .owl-nav .owl-prev i, #big.owl-theme .owl-nav .owl-next i, .owlNavDsg.owl-theme .owl-nav .owl-prev i, .owlNavDsg.owl-theme .owl-nav .owl-next i {
  font-size: 2rem;
  opacity: 0.2;
}

#big.owl-theme .owl-nav .owl-prev:hover, #big.owl-theme .owl-nav .owl-next:hover, .owlNavDsg.owl-theme .owl-nav .owl-prev:hover, .owlNavDsg.owl-theme .owl-nav .owl-next:hover {
  color: #0FB943;
  background-color: none !important;
}

#big.owl-theme .owl-nav .owl-prev:hover i, #big.owl-theme .owl-nav .owl-next:hover i, .owlNavDsg.owl-theme .owl-nav .owl-prev:hover i, .owlNavDsg.owl-theme .owl-nav .owl-next:hover i {
  opacity: 1;
}

#big.owl-theme .owl-nav .owl-prev, .owlNavDsg.owl-theme .owl-nav .owl-prev {
  left: 10px;
}

#big.owl-theme .owl-nav .owl-next, .owlNavDsg.owl-theme .owl-nav .owl-next {
  right: 10px;
}

.sideModal {
  /*Right*/
}

.sideModal#productDescModal {
  height: auto !important;
  width: auto !important;
  bottom: unset !important;
  left: unset !important;
}

.sideModal.modal.left .modal-dialog, .sideModal.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 700px;
  max-width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.sideModal.modal.left .modal-dialog.largeModal, .sideModal.modal.right .modal-dialog.largeModal {
  width: 900px;
  max-width: 100%;
}

.sideModal.modal.left .modal-dialog.smallModal, .sideModal.modal.right .modal-dialog.smallModal {
  width: 400px;
  max-width: 100%;
}

.sideModal.modal.left .modal-content,
.sideModal.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.sideModal.modal.left .modal-body,
.sideModal.modal.right .modal-body {
  padding: 15px 15px 15px;
}

.sideModal.modal.right.fade .modal-dialog {
  right: -920px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.sideModal.modal.right.fade.show .modal-dialog {
  right: 0 !important;
}

.descModalOpened .sideModal.commonModalBox.right.fade.show .modal-dialog {
  right: 400px !important;
}

.modal-content-design h3 {
  font-size: 1.2rem;
  color: black;
}

.modal-content-design p {
  font-size: 0.9rem;
  color: #666666;
}

.modal-content-design ul li {
  display: block;
  position: relative;
  padding-left: 25px;
  font-size: 0.9rem;
  color: #666666;
}

.modal-content-design ul li::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f192";
  position: absolute;
  top: 2px;
  left: 0px;
  color: #0FB943;
}

.normal-table tr td {
  font-size: 0.9rem;
}

.radio_buttons_wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.radio_buttons_wrapper ul li {
  position: relative;
  border: 1px solid #d9d9d9;
  min-width: 80px;
  border-radius: 10px;
  margin: 4px;
  padding: 0px;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  color: black;
  width: 120px;
  cursor: pointer;
}

.radio_buttons_wrapper ul li span, .radio_buttons_wrapper ul li label {
  padding: 5px;
  font-size: 0.8rem;
  margin: 0px;
  display: block;
  height: 100%;
  text-align: center;
  line-height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.radio_buttons_wrapper ul li::after {
  display: none;
}

.radio_buttons_wrapper ul li:hover {
  background-color: #0FB943;
  color: white;
}

.radio_buttons_wrapper ul li.active {
  background-color: #0FB943;
  color: white;
}

.border-radius-0 {
  border-radius: 0px !important;
}

.info_box {
  background-color: #fff4e6;
  padding: 10px 10px;
  text-align: center;
  border: 1px solid #f7b217;
  border-radius: 10px;
  font-size: 1rem;
}

.each_cart_items_d2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-top: 1px solid #d2d8d8;
  padding: 10px 10px;
}

.each_cart_items_d2 .desc_ctn {
  width: 400px;
  min-width: 300px;
}

.each_cart_items_d2 .option_ctn_main, .each_cart_items_d2 .option_ctn {
  width: calc(100% - 600px);
  padding: 0px 15px;
}

.each_cart_items_d2 .option_ctn_main .opt, .each_cart_items_d2 .option_ctn .opt {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 15px 10px;
  font-size: 0.8rem;
}

.each_cart_items_d2 .price_ctn {
  width: 200px;
  min-width: 200px;
}

@media only screen and (max-width: 991px) {
  .each_cart_items_d2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .each_cart_items_d2 .desc_ctn {
    width: 100%;
  }
  .each_cart_items_d2 .option_ctn_main, .each_cart_items_d2 .option_ctn {
    width: 100%;
  }
  .each_cart_items_d2 .price_ctn {
    width: 100%;
    text-align: right;
  }
  .each_cart_items_d2 .hideInSmallScreen {
    display: none !important;
  }
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox] {
  padding: 0 !important;
  width: 16px;
  height: 16px;
  border: 1px solid #abb1b4;
  border-radius: 2px;
  position: relative;
}

input[type=checkbox]:hover:after {
  color: #0fb94d;
}

input[type=checkbox]:hover:checked:after {
  color: white;
}

input[type=checkbox]:after {
  content: "\f00c";
  font-size: 0.6rem;
  line-height: 1;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 2;
  left: 2;
}

.option_ctn input[type=checkbox] {
  border: 1px solid #abb1b4;
  width: 24px;
  height: 24px;
}

.option_ctn input[type=checkbox]:after {
  top: 4px;
  left: 4px;
  font-size: 1rem;
}

input[type=checkbox]:checked {
  color: #fff;
  background-color: #00893e !important;
  border-width: 0;
}

input[type=checkbox]:checked:after {
  top: 3px;
  left: 3px;
}

.option_ctn input[type=checkbox]:checked:after {
  top: 4px;
  left: 4px;
}

.box-shadow-top {
  -webkit-box-shadow: 0px -6px 10px 0px rgba(198, 206, 209, 0.6);
          box-shadow: 0px -6px 10px 0px rgba(198, 206, 209, 0.6);
}

.max-height-200 {
  max-height: 100px;
}

.typeChooser {
  position: relative;
}

.typeChooser .parsley-errors-list.filled {
  position: absolute;
  top: 100%;
  left: 0px;
}

.ui-widget-header {
  color: white !important;
  background-color: #0FB943 !important;
  background-image: none !important;
}

.ui-widget-header .ui-icon {
  color: white !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  border: none !important;
  color: black !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  background-color: #f2f2f2 !important;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  background-color: #0FB943 !important;
  color: white !important;
  border-radius: 10% !important;
}

@media only screen and (max-width: 575px) {
  .small-text-small-screen li a {
    font-size: 0.7rem !important;
    padding-left: 0px !important;
    padding-right: 10px !important;
  }
}

.no_rotate.rotate_common {
  -webkit-transform: rotate(0deg) !important;
          transform: rotate(0deg) !important;
}
/*# sourceMappingURL=style.css.map */