@import url("fonts/stylesheet.css");
@import url("fonts/comicneue/stylesheet.css");



html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Comic Neue';
  color: #000;
  font-size: 1.3rem;
  position: relative;
  font-weight: 700;
}

/* body.search-active,
body.login-active {
  max-height: 100vh;
  overflow: hidden;
} */

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

a:hover,
a:visited,
a:active,
a:focus {
  color: #444;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}

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




/* Search Spesific CSS Start */

.search-overlay {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 50%);
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

.search-overlay.active {
  visibility: visible;
  opacity: 1;
  transition: all 0.25s ease-in-out;
}

.search-overlay .search-card {
  position: absolute;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
  width: 40%;
  height: auto;
  background-color: #fff;
  border-radius: 2rem;
  padding: 2rem 4.5rem;
  transition: 0.25s all ease-in-out;
}

.search-overlay .search-card .search-card__input-group {
  border-bottom: 3px solid #ccc;
  padding: 1rem;
  transition: 0.25s all ease-in-out;
  margin: 0 !important;
}

.search-overlay .search-card .search-card__input-group.active {
  border-color: #000;
  background-color: transparent;
  border-radius: 0;
  transition: 0.25s all ease-in-out;
}

.search-overlay .search-card .search-card__input-group>form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.search-overlay .search-card .search-card__input {
  border: none;
  background-color: transparent;
  outline: 0;
  width: 100%;
}

.search-overlay .search-card .search-card__button {
  outline: 0;
  background-color: transparent;
  border: none;
}

.search-overlay .search-card .search-result-container {
  transition: 0.25s all ease-in-out;
}

.search-overlay .search-card .search-result-container.has-result {
  margin-top: 1.5rem;
}

.search-overlay .search-card .search-result-container .result-not-found {
  margin-top: 1.5rem;
}

.search-overlay .search-card .search-result-container .result-not-found p {
  text-align: center;
  padding: 1.5rem 0;
}

.search-overlay .search-card .search-results>li {
  transition: 0.25s all ease-in-out;
}

.search-overlay .search-card .search-results>li:hover {
  background-color: rgba(169, 204, 102, 40%);
  transition: 0.25s all ease-in-out;
}

.search-overlay .search-card .search-results>li .result {
  display: flex;
  align-items: center;
}

.search-overlay .search-card .search-results>li .result .result-image {
  width: 80px;
  height: 80px;
  margin: 0.5rem 2rem;
}

.search-overlay .search-card .search-results>li .result .result-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.search-overlay .search-card .search-results>li .result .result-desc {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.search-overlay .search-card .search-results>li .result .result-desc .prod-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.search-overlay .search-card .search-results>li .result .result-desc .prod-price {
  font-size: 1.4rem;
  font-weight: 600;
}

.search-overlay .search-card .search-result-container .result-view-more {
  font-size: 1.5rem;
  padding: 2.5rem 0 0.5rem;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  text-align: center;
  display: block;
  color: #000;
  transition: 0.25s all ease-in-out;
}

.search-overlay .search-card .search-result-container .result-view-more:hover {
  color: #e5058c;
  transition: 0.25s all ease-in-out;
}

/* Search Spesific CSS End */

/* Login Spesific CSS */

.login-overlay {
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 15%);
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

.login-overlay.active {
  visibility: visible;
  opacity: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: all 0.25s ease-in-out;
}

.login-overlay .login-card {
  position: absolute;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
  width: 475px;
  height: auto;
  background-color: #fff;
  border-radius: 2rem;
  padding: 4rem 4rem;
  transition: 0.25s all ease-in-out;
}

.login-overlay .login-card .login-card__logo {
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

.login-overlay .login-card .login-card__logo img {
  width: 250px;
}

.login-overlay .login-card .login-card___form .nav-tabs {
  margin: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-overlay .login-card .login-card___form .nav-tabs>li {
  float: none;
  margin: 0 2rem;
  position: relative;
}

.login-overlay .login-card .login-card___form .nav-tabs>li:hover>a {
  color: #e5058c;
}

.login-overlay .login-card .login-card___form .nav-tabs>li.active>a,
.login-overlay .login-card .login-card___form .nav-tabs>li.active>a:focus,
.login-overlay .login-card .login-card___form .nav-tabs>li.active>a:hover {
  color: #000;
  background-color: transparent;
  border: none;
}

.login-overlay .login-card .login-card___form .nav>li>a {
  padding: 0;
}

.login-overlay .login-card .login-card___form .nav>li:nth-child(2)::before {
  position: absolute;
  content: "";
  top: 0;
  height: 35px;
  width: 2px;
  background-color: #000;
  transform: translate(-50%, -50%);
}

.login-overlay .login-card .login-card___form .nav-tabs>li>a {
  color: #888;
  margin: 0;
  border-radius: 0;
  border: none;
  font-size: 2rem;
  font-weight: 700;
}

.login-overlay .login-card .login-card___form .nav>li>a:focus,
.login-overlay .login-card .login-card___form .nav>li>a:hover {
  background-color: transparent;
}

.login-overlay .login-card .login-card___form .tab-content {
  margin: 2rem 0 0;
}

.login-overlay .login-card .login-card___form .user-input-group {
  position: relative;
}

.login-overlay .login-card .login-card___form .user-input-group>input {
  border: none;
  background-color: transparent;
  height: 35px;
  margin: 0.5rem 0;
  border-bottom: 1px solid #888;
  width: 100%;
  font-size: 1.2rem;
}

.login-overlay .login-card .login-card___form .user-input-group>input:focus {
  outline: 0;
  border-color: #000;
}

.login-overlay .login-card .login-card___form .remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.3rem 0;
}

.login-overlay .login-card .login-card___form .remember>a {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
}

.login-overlay .login-card .login-card___form .login-submit,
.login-overlay .login-card .login-card___form .signup-submit {
  background-color: #000;
  color: #fff;
  border: none;
  outline: none;
  background-image: none;
  padding: 2rem 0;
  width: 100%;
  margin: 2rem 0 0;
  font-size: 2rem;
  font-weight: 600;
  transition: 0.1s all ease-in-out;
}

.login-overlay .login-card .login-card___form .login-submit:hover,
.login-overlay .login-card .login-card___form .signup-submit:hover {
  background-color: #e5058c;
  color: #fff;
  transition: 0.1s all ease-in-out;
}

/* .login-overlay .login-card .login-card___form .user-input-group > span {
  position: absolute;
  top: 2rem;
  left: 0.1rem;
  transition: 0.25s all ease-in-out;
}

.login-overlay
  .login-card
  .login-card___form
  .user-input-group
  > input:focus
  + span {
  top: 0;
  font-size: 1rem;
  transition: 0.25s all ease-in-out;
} */

.login-overlay .login-card .round {
  display: block;
  position: relative;
  padding-left: 2rem;
  margin: 1.5rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.login-overlay .login-card .round input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.login-overlay .login-card .round .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background-color: #eee;
  border: 1px solid #e5058c;
  border-radius: 15px;
}

.login-overlay .login-card .round input:hover~.checkmark {
  background-color: #dedede;
}

.login-overlay .login-card .round input:checked~.checkmark {
  background-color: #eee;
}

.login-overlay .login-card .round input:checked:hover~.checkmark {
  background-color: #dedede;
}

.login-overlay .login-card .round:hover input {
  background-color: #dedede;
}

.login-overlay .login-card .round .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.login-overlay .login-card .round input:checked~.checkmark:after {
  display: block;
}

.login-overlay .login-card .round .checkmark:after {
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #e5058c;
  transform: translate(-56%, -56%);
  border-radius: 50%;
  margin: 0;
  padding: 0;
}

.container {
  padding: 0;
}

.row {
  margin: 0;
}

.header-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* position: absolute;
  top: 0; */
  z-index: 2;
}

.header-top .top-bar {
  background-color: rgba(255, 255, 255, 25%);
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s all ease-in-out;
}

.header-top .top-bar .bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 2rem;
}

.header-top .top-bar .bar-wrapper>div:nth-child(1) {
  flex-basis: 65%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top .top-bar .bar-wrapper>div:nth-child(2) {
  flex-basis: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-top .top-bar .bar-wrapper .social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.header-top .top-bar .bar-wrapper .social-links>li:not(:last-child) {
  margin-right: 1.5rem;
}

.header-top .top-bar .bar-wrapper .social-links>li:first-child {
  margin-right: 2rem;
}

.header-top .top-bar .bar-wrapper .social-links img {
  transition: 0.25s all ease-in-out;
}

.header-top .top-bar .bar-wrapper .social-links a:hover img {
  transform: rotate(-30deg) scale(1.2);
  transition: 0.25s all ease-in-out;
}

.header-top .top-bar .bar-wrapper .header-caption p {
  margin: 0;
}

.header-top .language-div .lang-btn,
.header-top .currency-div .currency-btn {
  border: none;
  background-color: transparent;
}

.header-top .language-div .lang-btn,
.header-top .currency-div>.currency-btn {
  font-weight: 500;
  border: 1px solid transparent;
}

.header-top .language-div:hover .lang-btn,
.header-top .currency-div:hover>.currency-btn {
  border-bottom: 1px solid #000;
}

.header-top .language-div .dropdown-menu,
.header-top .currency-div .dropdown-menu {
  top: 35px;
  left: 0;
  padding: 2rem;
  margin: 0;
  background-color: #eee;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header-top .language-div.btn-group.open .dropdown-toggle,
.header-top .currency-div.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  background-color: #e5058c;
}

.header-top .language-div .dropdown-menu>li>a,
.header-top .currency-div .dropdown-menu>li>button {
  width: 100%;
  color: #000;
  margin: 0;
  padding: 1rem;
  text-align: left;
  font-size: 1.4rem;
}

.header-top .language-div .dropdown-menu li>a:hover,
.header-top .currency-div .dropdown-menu>li>button:hover {
  text-decoration: none;
  color: #fff;
  background-color: #e5058c;
  background-image: none;
}

.header-top .navigation {
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  transition: 0.25s all ease-in-out;
}

.header-top .navigation .nav-wrapper {
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding: 2rem;
}

.nav-wrapper>div:nth-child(1),
.nav-wrapper>div:nth-child(3) {
  /* flex-basis: 20%; */
  height: 70px;
  /* width: 10%; */
}

.nav-wrapper>div:nth-child(2) {
  /* flex-basis: 60%; */
  height: 70px;
  width: 80%;
}

.nav-wrapper .site-logo img {
  width: 260px;
  height: 60px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.nav-wrapper .quick-access .access-links {
  height: 70px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-wrapper .quick-access .access-links .btn-search img,
.nav-wrapper .quick-access .access-links .login-btn img,
.nav-wrapper .quick-access .access-links .user-btn img,
.nav-wrapper .quick-access .access-links .cart-div img {
  transition: 0.25s all ease-in-out;
}

.nav-wrapper .quick-access .access-links .user-btn {
  padding: 0.5rem;
}

.nav-wrapper .quick-access .access-links .user-div .dropdown-menu {
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  margin: 0;
  font-size: 1.3rem;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.nav-wrapper .quick-access .access-links .user-div .dropdown-menu::before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f0d8";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
}

.nav-wrapper .quick-access .access-links .btn-search:hover img,
.nav-wrapper .quick-access .access-links .login-btn:hover img,
.nav-wrapper .quick-access .access-links .user-btn:hover img,
.nav-wrapper .quick-access .access-links .cart-div:hover img {
  transform: scale(1.5);
  transition: 0.25s all ease-in-out;
}

.nav-wrapper .quick-access .access-links .cart-div {
  position: relative;
}

.nav-wrapper .quick-access .access-links .cart-div .cart-count {
  background: #e5058c;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -1.6rem;
  top: -0.8rem;
}

.nav-wrapper .quick-access .access-links>li:not(:last-child) {
  margin-right: 2.5rem;
}

.nav-wrapper .quick-access .access-links>li i {
  font-size: 2.2rem;
}

#cart {
  margin-bottom: 0;
}

/* Slider Spesific CSS Start */

.slider {
  width: 100%;
  background-color: #e0e0e0;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider-bottom {
  width: 100%;
  height: 50px;
  background-color: #e5058c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-bottom>div {
  display: flex;
  align-items: center;
  margin: 0 5.5rem;
}

.slider-bottom>div img {
  margin-right: 1rem;
}

.slider-bottom>div span {
  color: #fff;
}

.home-hero-slider {
  margin: 0;
  position: relative;
  z-index: 1;
}

.home-hero-slider .owl-wrapper-outer {
  padding: 0;
  margin: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
}

.home-hero-slider .owl-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.home-hero-slider .owl-dots {
  top: initial;
}

.home-hero-slider .owl-dots .owl-dot {
  margin: 0 0.2rem;
}

.home-hero-slider .owl-dots .owl-dot:focus {
  outline: 0;
}

.home-hero-slider .owl-dot.active span {
  background: rgba(0, 0, 0, 0.9);
}

.home-hero-slider .owl-dot span {
  display: block;
  width: 11px;
  height: 11px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  box-shadow: inset 0 0 3px rgb(0 0 0 / 30%);
}

.home-hero-slider .owl-dots .owl-dot span {
  width: 30px;
  height: 12px;
  transition: 0.25s all ease-in-out;
}

.home-hero-slider .owl-dots .owl-dot.active span {
  transition: 0.25s all ease-in-out;
  width: 50px;
}

/* Slider Spesific CSS End */

.tile-banners {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}

.tile-banners img {
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}

.tile-banners .left-banner {
  flex-basis: 40%;
  height: 500px;
}

.tile-banners .right-banner-wrapper {
  flex-basis: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.tile-banners .right-banner-wrapper .right-banner-1 {
  flex-basis: 45%;
  height: 300px;
}

.tile-banners .right-banner-wrapper .right-banner-2 {
  flex-basis: 55%;
  height: 300px;
}

.tile-banners .right-banner-wrapper .right-banner-3 {
  flex-basis: 55%;
  height: 200px;
}

.tile-banners .right-banner-wrapper .right-banner-4 {
  flex-basis: 45%;
  height: 200px;
}

.banner-box {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}

.banner-box .banner-box-frame {
  position: absolute;
  border: 1px solid #fff;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-box:hover {
  transition: all 0.3s ease-in-out;
}

.banner-box:hover:before {
  transition: all 0.3s ease-in-out;
}

.banner-box img {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.banner-box img:hover {
  transition: all 0.3s ease-in-out;
}

.banner-box img:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}

.banner-box img:hover {
  transition: all 0.3s ease-in-out;
}

.w-content .banner-box-frame {
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: transparent;
}

.w-content:hover {
  opacity: 0.8;
}

.w-content:hover .banner-box-frame {
  border-color: #fff;
  transition: color 0.3s ease-in-out, all 0.3s ease-in-out;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
}

.tab-urun-div .nav-tabs {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5rem 0;
}

.tab-urun-div .nav-tabs>li {
  float: none;
  margin: 0 5rem;
}

.tab-urun-div .nav-tabs>li>a {
  border: none;
  color: #ccc;
  font-size: 2.5rem;
  position: relative;
  transition: 0.25s all ease-in-out;

}

.tab-urun-div .nav-tabs>li>a::before {
  content: "";
  width: 50px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ccc;
  transition: 0.25s all ease-in-out;
}

.tab-urun-div .nav-tabs>li:hover>a {
  color: #000;
  transition: 0.25s all ease-in-out;
}

.tab-urun-div .nav-tabs>li:hover>a::before {
  background-color: #e5058c;
  width: 75px;
  transition: 0.25s all ease-in-out;
}

.tab-urun-div .nav-tabs>li.active>a,
.tab-urun-div .nav-tabs>li.active>a:focus,
.tab-urun-div .nav-tabs>li.active>a:hover {
  color: #000;
  border: none;
}

.tab-urun-div .nav-tabs>li.active>a::before,
.tab-urun-div .nav-tabs>li.active>a:focus::before,
.tab-urun-div .nav-tabs>li.active>a:hover::before {
  background-color: #e5058c;
}

.tab-urun-div .nav>li>a:focus,
.tab-urun-div .nav>li>a:hover {
  text-decoration: none;
  background-color: initial;
}

.product-layout {
  margin: 5px;
  overflow: hidden;
}

.product-layout:hover {
  -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
}

.product-layout .product-image {
  position: relative;
}

.product-layout .product-image img {
  width: 100%;
  height: auto;
}

.product-layout .product-image .fav-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0.7rem;
  margin: 0;
  background-color: transparent;
  outline: 0;
  border: none;
  width: 35px;
  height: 35px;
  visibility: hidden;
  transition: 0.25s all ease-in-out;
  transform: translateY(-100%);
}

.product-layout .product-image .fav-btn img {
  transition: transform 0.25s ease-in-out;
}

.product-layout .product-image .fav-btn:hover img {
  transform: scale(1.4);
}

.product-layout .product-caption>a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.3rem;
  height: 120px;
  text-align: center;
}

.product-layout .product-caption>a .price {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 1rem 0;
}

.product-layout .sepet-container {
  visibility: hidden;
  transform: translateX(-100%);
  transition: 0.5s all ease-in-out;
}

.product-layout .sepet-container {
  visibility: visible;
  transform: translateX(0);
  transition: 0.5s all ease-in-out;
}

.product-layout:hover .fav-btn {
  transform: translateY(0);
  visibility: visible;
  transition: 0.25s all ease-in-out;
}

.product-layout .sepet-container .sepet-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #e5058c;
  width: 100%;
  text-transform: capitalize;
  padding: 0.8rem 0;
  font-weight: 600;
  font-size: 1.5rem;
  border: none;
  outline: none;
}

.product-layout .sepet-container .sepet-btn i {
  font-size: 1.8rem;
  margin-right: 0.8rem;
}

.double-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 6rem 0;
}

.double-banner .banner-left {
  margin-right: 2rem;
}

.double-banner>div {
  flex-basis: calc(50% - 1rem);
}

.double-banner img {
  width: 100%;
}

.solo-banner img {
  width: 100%;
}

.box-container .box-title {
  margin: 6rem 0 3rem 0;
}

.box-container .box-title h2 {
  position: relative;
  margin: 0;
  padding: 1rem;
}

.box-container .box-title h2::before {
  content: "";
  width: 50px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #e5058c;
  margin-top: 0.5rem;
  transition: all 0.25s ease-in-out;
}

.box-container:hover .box-title h2::before {
  width: 75px;
  transition: all 0.25s ease-in-out;
}

.box-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.box-wrapper>div {
  flex-basis: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-wrapper figure {
  overflow: hidden;
  margin: 0.5rem;
}

.box-wrapper img {
  width: 180px;
  height: 180px;
  transition: 0.25s all ease-in-out;
}

.box-wrapper figure:hover img {
  transform: scale(1.2);
  transition: 0.25s all ease-in-out;
}

.pricediv h2 {
  font-weight: 900;
  font-size: 40px;
}

.page-nav>h1 {
  margin: 0 0 1.5rem 0;
  margin-top: 2rem;
}

.page-nav>h1>span {
  position: relative;
  font-weight: 900;
  font-size: 40px;
  /* margin-top: 1rem; */
}

.page-nav>h1>span::before {
  content: "";
  width: 50%;
  height: 0.5rem;
  position: absolute;
  bottom: -0.7rem;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #e5058c;
  margin-top: 0.5rem;
  transition: all 0.25s ease-in-out;
}

.page-nav>.breadcrumb {
  margin: 0;
  padding: 0;
  border: none;
  background-color: initial;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-nav>.breadcrumb>li {
  display: initial;
  text-shadow: none;
  padding: 0 1rem 0 0.5rem;
  position: initial;
  white-space: nowrap;
  position: relative;
}

.page-nav>.breadcrumb>li a {
  font-size: 1rem;
}

.page-nav>.breadcrumb>li+li:before {
  padding: 0;
  color: initial;
  content: "";
}

.page-nav>.breadcrumb>li::after {
  content: "/";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: initial;
  height: initial;
  border: none;
  -webkit-transform: initial;
  -moz-transform: initial;
  -o-transform: initial;
  transform: initial;
}

.page-nav>.breadcrumb>li:last-child::after {
  display: none;
}

.product-wrapper {
  display: flex;
  justify-content: center;
}

.product-wrapper .product-thumb-wrapper {
  flex-basis: 50%;
}

.product-wrapper .product-thumb-wrapper .xzoom-container {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  margin: auto;
}

.product-wrapper .product-thumb-wrapper .xzoom-container .xzoom5 {
  width: calc(100% - 1rem) !important;
  /* height: calc(100vh - 245px); */
}

.product-wrapper .product-thumb-wrapper .xzoom-container .xzoom-thumbs {
  /* margin-right: 1.5rem; */
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.product-wrapper .product-thumb-wrapper .xzoom-container .xzoom-thumbs>div {
  margin: 0.5rem;
  width: calc(33.333% - 1rem);
}

.product-wrapper .product-thumb-wrapper .xzoom-container .xzoom-thumbs>div .xactive {
  -webkit-box-shadow: 0px 0px 3px 0px rgb(169, 204, 102);
  -moz-box-shadow: 0px 0px 3px 0px rgba(169, 204, 102, 1);
  box-shadow: 0px 0px 3px 0px rgb(169, 204, 102);
  border: 1px solid #e5058c;
  width: 100%;
}

.product-wrapper .product-desc {
  flex-basis: 40%;
  background-color: #f6f6f6;
  height: auto;
}

.product-wrapper .product-desc .desc-container {
  width: 100%;
  padding: 3rem 0 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-wrapper .product-desc .prod-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-wrapper .product-desc .prod-details .desc-item {
  flex-basis: 33%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.2rem;
}

.product-wrapper .product-desc .prod-details .desc-item .desc-img {
  padding: 0 1.5rem 0 0;
}

.product-wrapper .product-desc .prod-details .desc-item .desc-img>img {
  width: 45px;
  height: 45px;
}

.product-wrapper .product-desc .prod-details .desc-item .desc-caption {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.product-wrapper .product-desc .prod-details .desc-item .desc-caption .title,
.product-wrapper .product-desc .prod-details .desc-item .desc-caption .info {
  font-size: 1.2rem;
  line-height: 1.5rem;
}

.product-wrapper .product-desc .prod-details+.list-unstyled {
  padding: 0rem 0 0 0;
}

.product-wrapper .product-desc .list-unstyled>li {
  padding-top: 1rem;
  /* padding-bottom: 1rem; */
}

.product-wrapper .product-desc #power-price h2 {
  font-weight: 600;
  font-size: 3.5rem;
}

.product-wrapper .product-thumb-wrapper .xzoom-container .xzoom-thumbs>div>a>img {
  width: 100%;
}

.product-wrapper .product-desc .cart-add-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
}

.product-wrapper .product-desc .cart-add-container .qty-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5058c;
  height: 35px;
  width: 25%;
}

.product-wrapper .product-desc .cart-add-container .qty-wrapper .qty-minus,
.product-wrapper .product-desc .cart-add-container .qty-wrapper .qty-plus {
  border: none;
  background-color: transparent;
  outline: 0;
  padding: 0;
  text-align: center;
  width: 25px;
  font-size: 2rem;
  transition: all 0.075s ease-in-out;
  color: #e5058c;
}

.product-wrapper .product-desc .cart-add-container .qty-wrapper .qty-minus:active,
.product-wrapper .product-desc .cart-add-container .qty-wrapper .qty-plus:active {
  transition: all 0.075s ease-in-out;
  transform: scale(2);
}

.product-wrapper .product-desc .cart-add-container .qty-wrapper .qty-input {
  border: none;
  background-color: transparent;
  outline: 0;
  text-align: center;
  width: 35px;
}

.product-wrapper .product-desc .cart-add-container .btn-add {
  height: 35px;
  border: none;
  background-color: #e5058c;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.2rem;
  margin-left: 1.5rem;
  padding: 0 2rem;
  width: 25%;
}

/* .product-wrapper
  .product-desc
  .cart-add-container
  .btn-add.power-inactive::after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f05e";
} */

.product-wrapper .product-desc .cart-add-container .btn-add:focus,
.product-wrapper .product-desc .cart-add-container .btn-add:active {
  outline: 0;
}

.product-wrapper .product-desc .cart-add-container .btn-add>img {
  filter: invert(100%);
  margin-right: 0.5rem;
}

.product-wrapper .product-desc .cart-add-container+.list-unstyled>li {
  font-size: 1.2rem;
}

.product-wrapper .product-desc .product-box-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4rem 0 2rem;
}

.product-wrapper .product-desc .product-box-wrapper .info-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.product-wrapper .product-desc .product-box-wrapper .info-box>img {
  width: 30px;
  height: 30px;
  margin-bottom: 0.5rem;
}

.product-wrapper .product-desc .product-box-wrapper .info-box>span {
  font-size: 1.2rem;
}

.product-content {
  padding: 0 5rem;
}

.product-content .tab-div .nav-tabs {
  margin: 4rem 0 2rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-content .tab-div .nav-tabs>li {
  float: none;
  margin: 0;
}

.product-content .tab-div .nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
  color: #000;
  cursor: default;
  background-color: transparent;
  border: none;
}

.product-content .tab-div .nav-tabs>li>a::before {
  content: "";
  width: 0%;
  height: 3px;
  background-color: #000;
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.product-content .tab-div .nav-tabs>li.active>a::before {
  width: 100%;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.product-content .tab-div .nav-tabs>li>a {
  color: #aaa;
  margin: 0;
  line-height: initial;
  border: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 0;
  margin-right: 5rem;
  position: relative;
}

.product-content .tab-div #tab-return ul,
.product-content .tab-div #tab-return ol {
  margin: 0;
  padding: 0;
  list-style: disc;
}

.product-content .tab-div .nav>li>a:focus,
.nav>li>a:hover {
  background-color: transparent;
}

.product-content #form-review .form-control {
  display: block;
  width: 100%;
  height: 35px;
  padding: 1rem 2rem;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.product-content #form-review #button-review {
  color: #ffffff;
  text-shadow: none;
  background-color: #e5058c;
  background-image: none;
  background-repeat: unset;
  border-color: #e5058c;
  border-radius: 0;
  box-shadow: none;
}

.category-content {
  padding-top: 2.5rem;
}

.category-filter {
  background-color: #f8f8f8;
  width: 20%;
}

.category-filter .filter-div {
  width: 80%;
  margin: auto;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  min-height: 220px;
  flex-direction: column;
}

.category-filter .filter-div .filter-left {
  flex-basis: 10%;
}

.category-filter .filter-div .filter-left span {
  font-weight: 700;
  font-size: 1.5rem;
  position: relative;
}

.category-filter .filter-div .filter-left span::after {
  content: "";
  width: 5rem;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 96%;
  transform: translateY(-50%);
}



.category-desc {
  width: 75%;
  margin: auto;
}

.category-desc .desc-content span {
  font-size: 1.2rem !important;
  font-family: "Poppins" !important;
}

.category-desc .read-more {
  text-align: center;
}

.category-desc .read-more .show-more {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 1rem 0 2.5rem;
}

.category-desc .desc-content .show_more {
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all 0.35s ease-in-out;
}

.category-desc .desc-content .show_more.visible {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.category-desc .read-more .show-more:focus {
  outline: 0;
}

.btn-continue {
  border: none;
  background-color: #000;
  color: #fff !important;
  font-size: 1.5rem;
  padding: 1rem 1.5rem;
  transition: background-color 0.25s ease-in-out;
}

.btn-continue:hover {
  background-color: #e5058c;
  color: #fff !important;
}

.empty-category {
  width: 250px;
  height: 125px;
  margin: 1rem 0;
}

/* Brainyfilter Custom CSS Start */

.bf-form {
  display: flex;
  justify-content: space-between;
}

.bf-attr-header {
  border: none !important;
  background: none !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  padding: 0 !important;
  margin-bottom: 1rem !important;
}

.box {
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

.bf-cascade-1,
.bf-cascade-2,
.bf-cascade-3 {
  background-image: none !important;
}

.brainyfilter-panel .box-content {
  padding: 0 !important;
}

.bf-attr-block-cont {
  padding: 0 !important;
}

.bf-cascade-1 {
  padding: 0 !important;
}

.bf-cell {
  padding: 0 !important;
  border: none !important;
}

.bf-horizontal .bf-sliding-cont {
  margin-right: 0 !important;
}

.bf-group-arrow,
.bf-attr-group-header {
  display: none !important;
}

.bf-horizontal .bf-attr-block {
  border: none !important;
  display: flex;
  flex-direction: column;
}

.bf-horizontal .bf-cell {
  background: none !important;
}

.bf-form>.bf-attr-block:nth-child(3) {
  display: flex;
  flex-direction: column;
}

.bf-horizontal .bf-row {
  /* display: block; */
  /* float: left; */
  display: flex !important;
  float: none !important;
  align-items: center;
}

.bf-horizontal .bf-sliding-cont {
  height: auto !important;
}

.bf-horizontal .bf-cell.bf-c-1 {
  margin-right: 1rem;
}

/* 
.varynatcs0 {
  width: initial !important;
} */

.varynatcs1 {
  width: initial !important;
}

/* 
.bf-responsive .bf-sliding.bf-expanded {
  overflow-y: visible !important;
}

.bf-horizontal .bf-attr-block {
  overflow: visible !important;
} */
/* Brainyfilter Custom CSS End */

footer {
  margin: 5.5rem 0 0;
  padding: 0;
  background-color: initial;
  border: none;
  color: #000;
}

footer a {
  color: #444;
}

footer a:hover,
footer a:active,
footer a:focus {
  color: #000;
}

footer p {
  margin: 0;
  padding: 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: .5rem solid #e7e7e7;
}

.footer-top>div {
  height: 350px;
}

.footer-top .footer-top-left {
  flex-basis: 70%;
  padding: 3.5rem 8rem 1rem;
  background-color: #fff;
  display: flex;
  margin-right: 1.5rem;
}

.footer-top .footer-top-left .footer-logo img {
  width: 160px;
}

.footer-top .footer-top-left .footer-social {
  margin: 2rem 0;
}

.footer-top .footer-top-left .footer-social p {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  color: #000;
}

.footer-top .footer-top-left .footer-social ul>li>a {
  color: #000;
  margin-right: 1.6rem;
}



.footer-top .footer-top-left .footer-social .social-list {
  display: flex;
  align-items: center;
  margin: 0.2rem 0;
}

.footer-top .l1 {
  flex-basis: 50%;
  overflow: hidden;
}

.footer-top .l2,
.footer-top .l3 {
  flex-basis: 25%;
  overflow: hidden;
}

.footer-top .l1 ul li,
.footer-top .l2 ul li,
.footer-top .l3 ul li {
  line-height: 3.4rem;
}

.footer-top .l1 ul li a,
.footer-top .l2 ul li a,
.footer-top .l3 ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  transition: 0.5s all ease-in-out;
  position: relative;
  overflow: hidden;
}

.footer-top .l1 .l1-links>ul li a:hover,
.footer-top .l2>ul li a:hover,
.footer-top .l3>ul li a:hover {
  border-bottom: 1px solid #fff;
  padding-left: 1.5rem;
  transition: 0.25s all ease-in-out;
}

.footer-top .l1 .l1-links>ul li a::before,
.footer-top .l2>ul li a::before,
.footer-top .l3>ul li a::before {
  content: ">";
  position: absolute;
  left: -3rem;
  transition: 0.25s all ease-in-out;
}

.footer-top .l1 .l1-links>ul li a:hover::before,
.footer-top .l2>ul li a:hover:before,
.footer-top .l3>ul li a:hover:before {
  left: 0;
  transition: 0.25s all ease-in-out;
}

.footer-top li.title {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  cursor: default;
}

.footer-top .footer-top-right {
  flex-basis: 30%;
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 3rem 6rem;
}

.footer-top .footer-top-right .subs-header .subs-info {
  font-size: 1.3rem;
}

.footer-top .footer-top-right .subs-header p.subs-info:nth-child(2) {
  margin-bottom: 1.8rem;
}

.footer-top .footer-top-right .subs-header .subs-title {
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  margin: 1.1rem 0;
}

.footer-top .footer-top-right .subs-form {
  margin-top: 2rem;
}

.footer-top .footer-top-right .subs-form .input-wrapper {
  position: relative;
  width: 100%;
}

.footer-top .footer-top-right .subs-form input[name="email"] {
  font-family: "ITC Kabel Std";
  border: none;
  border-bottom: 2px solid #777;
  font-size: 2rem;
  padding: 0.8rem 3rem 0.8rem 0;
  font-weight: 400;
  width: 100%;
  background-color: #fff;
}

.footer-top .footer-top-right .subs-form input[name="email"]:focus,
.footer-top .footer-top-right .subs-form input[name="email"]:active {
  outline: 0;
}

.footer-top .footer-top-right .subs-form .subs-submit {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: 0;
  font-size: 4rem;
  color: #777;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.footer-top .footer-top-right .subs-form .cb-wrapper {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.footer-top .footer-top-right .subs-form .cb-wrapper input {
  margin: 0;
  margin-right: 1rem;
  padding: 0;
}

.footer-top .footer-top-right .subs-form .cb-wrapper label {
  font-weight: 600;
  color: #777;
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 0;
}

.footer-bottom .bottom-payments {
  width: 100%;
}

.footer-bottom .bottom-payments .pay-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-bottom .bottom-payments .pay-methods .pay-cards {
  margin-right: 2rem;
}

.footer-bottom .bottom-payments .pay-methods .pay-cards>img,
.footer-bottom .bottom-payments .pay-methods .pay-shipping>img {
  margin: 0px 0.8rem;
}

.footer-bottom .bottom-payments .pay-methods .secure-payments {
  font-weight: 500;
  font-size: 1.5rem;
}

.footer-bottom .bottom-copy .copy {
  margin: 2rem 0;
  color: #444;
  font-style: italic;
}

.left-img-area img {
  width: 100%;
}

#toast-container {
  top: 60px;
  right: 30px;
}

#toast-container>div {
  opacity: 0.9;
  padding: 0;
  border-radius: 0;
  -moz-box-shadow: 0 0 2px #999;
  -webkit-box-shadow: 0 0 2px #999;
  box-shadow: 0 0 2px #999;
}

#toast-container>div:hover {
  -moz-box-shadow: 0 0 4px #444;
  -webkit-box-shadow: 0 0 4px #444;
  box-shadow: 0 0 4px #444;
}

#toast-container>.toast-success,
#toast-container>.toast-info {
  opacity: 0.9;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  filter: alpha(opacity=90);
  background-color: #fff;
}

.toast-close-button {
  right: 0.2em;
  top: 0em;
  color: #333;
}

.toast-message {
  padding: 10px;
}

.custom-toaster {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: pre-wrap;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  color: #333;
}

.custom-toaster a {
  color: var(--theme-black);
  text-decoration: none;
  font-weight: 600;
}

.custom-toaster a:hover {
  color: rgba(0, 0, 0, 1);
}

.custom-toaster a:active,
.custom-toaster a:focus {
  outline: 0;
  text-decoration: none;
}

.custom-toaster>a {
  display: flex;
  flex-wrap: nowrap;
  padding: 0 4px;
  font-weight: 600;
}

.custom-toaster .lottie {
  min-width: 75px !important;
  min-height: 75px !important;
  width: 75px;
  height: 75px;
  margin-right: 10px;
}

.bf-attr-block.bf-keywords-filter {
  display: none;
}

.colors-img img {
  width: 134px;
}

.prod-colors {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.colors-img {
  margin-bottom: 10px;
  margin-left: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review-div {
  display: flex;
  /* width: 100%; */
  /* align-items: center; */
}

.review-div .review-col-1 {
  flex-basis: 60%;
  display: flex;
  justify-content: space-between;
}

.review-div .review-col-1 .rate-div {
  display: flex;
  width: 100%;
  /* justify-content: left; */
}


.review-div .review-col-1 .rate-div .stars-div ul {
  display: flex;
}



.review-div .review-col-1 .rate-div .stars-div ul li i {
  font-size: 1.5rem;


}

.review-div .review-col-1 .rate-div .stars-div ul li:not(:first-child) {
  margin-left: 10px;
  margin-bottom: 3px;
}

.review-div .review-col-1 .rate-div .bar-div {
  padding-left: 2rem;
  width: 100%;
}



.review-col-2 {
  flex-basis: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.progress {
  height: 16px;
  margin-bottom: 8px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
  box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
}

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #e5058c;
  -webkit-box-shadow: inset 0 -1px 0 rgb(0 0 0 / 15%);
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 15%);
  -webkit-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease;
}

span.pointtext {
  font-size: 2rem;
  padding-bottom: 12px;
}

span.pointicon {
  font-size: 3em;
}

span.pointicon i {
  font-size: 1em;
}

.selectstar {
  color: #e5058c;
}

.em-product-tab-comment {
  padding: 17px;
  background: #f5f5f5;
  margin-bottom: 5px;
}

.filtersortcol {
  flex-basis: 30%;
}

.bf-panel-wrapper {
  position: relative;
  flex-basis: 70%;
}

.row-related {
  display: flow-root;
}

.row-related .col-md-2 {
  padding: 0;
}

.vertial-featured {
  display: flex;
  width: 100%;
  padding: 2rem;
  background: #c5b5f27d;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.left-img-area {
  width: 40%;
}

.vertial-featured .tab-product {
  /* width: 60%; */
  padding: 1rem;
}

.right-featured-wrapper {
  width: 60%;
  background-color: #fff;
  margin-left: 1rem;
  height: 425px;

}

.right-featured-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

.eight-banner-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.eight-first-area {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.eight-first-area>a {
  /* margin: .5rem; */
  width: 33.333%;
}

.eight-second-area {
  display: flex;
  width: 100%;
}

.eight-second-area a {
  margin: .5rem;
  width: calc(50% - 1rem);
}

.home-heading.featured-heading {
  width: 100%;
  text-align: center;
  font-size: 29px;
}

.eight-first-area>a>img {
  width: 100%;
}

.eight-second-area a img {
  width: 100%;
}

.product-search-wrapper {
  display: flex;
}

.product-options {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
}

.product-options.full {
  padding-bottom: 0.8rem;
}

.product-options>div {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: start;
  margin: 0;
  margin-top: 0 !important;
}

.product-options>div:nth-child(1) {
  padding-right: 1rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 11px;
  flex-direction: row;
}

.product-options>div:nth-child(2) {
  padding-left: 0;
}

.product-options {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
}

.product-options.full {
  padding-bottom: 0.8rem;
}

.product-options>div {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: start;
  margin: 0;
  margin-top: 0 !important;
}

.product-options>div:nth-child(1) {
  padding-right: 1rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 11px;
  flex-direction: row;
}

.product-options>div:nth-child(2) {
  padding-left: 0;
}

select#input-option2 {
  width: 52% !important;
}

div#product {
  width: 100%;
  padding-top: 3rem;
}

ul.megamenu li .sub-menu .content .hover-menu a:before {
  color: #e5058c !important;
}

.megamenu-wrapper b.fa.fa-angle-right {
  margin-left: 1.5rem;
  margin-top: .3rem;
}

ul.social-list li a i {
  font-size: 22px;
}

ul.social-list li:first-child:hover a i {
  color: #E1306C;
  transition: .6s ease-in-out;
}

ul.social-list li:nth-child(2):hover a i {
  color: #FF0000;
  transition: .6s ease-in-out;
}

ul.header-social-list {
  /* position: absolute; */
  /* left: 2%; */
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.header-social-list li {
  margin-right: 6rem;
  margin-left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.header-social-list li a i {
  font-size: 20px;
  color: #fff;
}

ul.header-social-list li a {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}

ul.header-social-list li {

  width: 30px;
  height: 30px;
  border-radius: 4px;
}

.subcategory-list ul {
  list-style-type: none;
  padding: 0;
}

.subcategory-list ul li {
  margin: 10px 0;
  width: 9%;
  margin-right: 1rem;
}

.subcategory-list ul li a {
  text-decoration: none;
  font-weight: bold;
}

.subcategory-list ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.subcategory-list ul li a {
  font-size: 19px;
  font-weight: 900;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e2;
  height: 70px;
  padding: .1rem;
}

.product-name span {
  font-size: 19px;
}

span.new-price {
  font-size: 26px;
}

.tab-urun-div {
  display: none !important;
}

.cargo-pay-wrapper {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px dotted #e5058c;
  padding: .5rem;
}

.cargo-pay-wrapper span {
  font-size: 22px;
  color: #E5058E;
  letter-spacing: 3px;
  font-weight: 900;
  text-align: center;
  line-height: 2.5rem;
}

.course-wrapper {
  font-size: 19px;
  line-height: 4rem;
}

.course-wrapper label {
  font-size: 20px;
  font-weight: 700;
}

.form-group.required {
  display: flex;
}

@media all and (max-width: 1199px) {
  .box-wrapper img {
    width: 150px;
    height: 150px;
  }
}

@media all and (min-width: 993px) and (max-width: 1199px) {

  .header-top .top-bar .bar-wrapper .social-links>li:first-child,
  .header-top .top-bar .bar-wrapper .header-caption p {
    font-size: 1.1rem;
  }

  .footer-top .l1 ul li a,
  .footer-top .l2 ul li a,
  .footer-top .l3 ul li a {
    font-size: 1.1rem;
  }

  .footer-top .footer-top-right {
    padding: 2rem 1.5rem;
  }

  .footer-top .footer-top-right .subs-header .subs-info {
    font-size: 1rem;
  }

  .footer-top .footer-top-right .subs-header .subs-title {
    font-size: 2rem;
    margin: 1rem 0;
  }

  .footer-top .footer-top-right .subs-form input[name="email"] {
    font-size: 1.6rem;
  }

  .footer-bottom .bottom-payments .pay-methods .pay-cards>img,
  .footer-bottom .bottom-payments .pay-methods .pay-shipping>img {
    margin: 0px 0.5rem;
  }

  .footer-bottom .bottom-payments .pay-methods .secure-payments {
    font-size: 1.2rem;
  }
}

.container-megamenu,
.container-megamenu .container {
  width: unset !important;
}

@media all and (min-width: 993px) {

  .nav-wrapper .main-menu div,
  .nav-wrapper .main-menu ul,
  .nav-wrapper .main-menu li,
  .nav-wrapper .main-menu a {
    position: unset;
  }

  .nav-wrapper .main-menu .navbar-default {
    background-color: transparent;
    border-color: transparent;
  }

  .nav-wrapper .main-menu .megamenu-wrapper {
    background-color: transparent;
  }

  .nav-wrapper .main-menu .megamenu-pattern .container {
    width: initial !important;
  }

  .nav-wrapper .main-menu .navbar-default,
  .nav-wrapper .main-menu .responsive,
  .nav-wrapper .main-menu .container-megamenu,
  .nav-wrapper .main-menu .megamenu-wrapper,
  .nav-wrapper .main-menu .megamenu-pattern,
  .nav-wrapper .main-menu .megamenu-pattern .container,
  .nav-wrapper .main-menu ul.megamenu {
    width: 100%;
    height: 100%;
  }

  .nav-wrapper .main-menu ul.megamenu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
  }

  .nav-wrapper .main-menu ul.megamenu>li>a {
    position: relative;
  }

  .nav-wrapper .main-menu ul.megamenu>li>a:hover,
  .nav-wrapper .main-menu ul.megamenu>li.active>a,
  .nav-wrapper .main-menu ul.megamenu>li.home>a,
  .nav-wrapper .main-menu ul.megamenu>li:hover>a {
    background-color: transparent;
  }

  .nav-wrapper .main-menu ul.megamenu>li>a:hover::before,
  .nav-wrapper .main-menu ul.megamenu>li.active>a::before,
  .nav-wrapper .main-menu ul.megamenu>li.home>a::before,
  .nav-wrapper .main-menu ul.megamenu>li:hover>a::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 5px;
    background-color: #e5058c;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
  }

  .nav-wrapper .main-menu ul.megamenu>li {
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-wrapper .main-menu ul.megamenu>li>.sub-menu {
    width: 100%;
    display: block;
    right: auto;
    position: absolute;
    top: 105px;
    left: 0;
  }

  .nav-wrapper .main-menu ul.megamenu li .sub-menu .content {
    padding: 2.5rem 0;
    background: #fff;
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -webkit-box-shadow: 0px 15px 20px -5px rgb(0 0 0 / 30%);
    -moz-box-shadow: 0px 15px 20px -5px rgb(0 0 0 / 30%);
    box-shadow: 0px 15px 20px -5px rgb(0 0 0 / 30%);
  }

  .nav-wrapper .main-menu ul.megamenu li .sub-menu .content .static-menu .menu ul ul li:before {
    content: "";
    color: transparent;
    padding-right: 0;
  }

  .nav-wrapper .main-menu ul.megamenu li .sub-menu .content .static-menu .menu ul ul {
    padding: 0;
  }

  .nav-wrapper .main-menu ul.megamenu li .sub-menu .content .static-menu a.main-menu {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
  }

  .nav-wrapper .main-menu ul.megamenu li .sub-menu .content .static-menu .menu ul ul li {
    padding: 0.5rem 0;
  }

  .nav-wrapper .main-menu ul.megamenu li .sub-menu .content .categories>.row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .nav-wrapper .main-menu ul.megamenu li .sub-menu .content .categories .static-menu {
    width: unset !important;
  }

  .nav-wrapper .main-menu ul.megamenu>li:first-child>a {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
  }

  .nav-wrapper .main-menu ul.megamenu>li>a {
    display: block;
    /* position: relative; */
    color: #000000;
    text-shadow: none;
    padding: 0;
    height: 100%;
    width: 100%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }

  .nav-wrapper .main-menu .megamenu .caret {
    display: none;
  }

  .menu-active {
    background-color: #fff !important;
    transition: 0.25s all ease-in-out;
  }

  .nav-wrapper .main-menu .megamenu-pattern .container {
    width: initial;
  }

  .so-megamenu-active {
    display: none;
  }

  .mobile-logo-wrapper {
    display: none;
  }
}

.coldisc {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

p.buytitle {
  text-align: center;
  font-weight: bold;
  margin-top: 26px;
  margin-bottom: 15px;
  font-size: 2rem;
}

.vertial-featured .sepet-btn {
  background-color: #a085e7 !important;
}

.right-featured-header img {
  width: 20px;
}

.category-wrapper {
  display: flex;
}

.container.column-right {
  width: 80%;
}

@media all and (max-width: 992px) {
  .category-filter {
    background-color: #f8f8f8;
    display: none;
  }

  .pricediv {
    flex-basis: 100%;
  }

  .discdiv {
    flex-basis: 100%;
  }

  .header-top .top-bar .bar-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .header-top .top-bar .bar-wrapper .header-social {
    margin-right: 4rem;
  }

  .header-top .navigation .nav-wrapper {
    border-bottom: none;
  }


  .navbar-toggle {
    position: relative;
    float: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    background-image: none;
    border: none;
    border-radius: 0;
  }

  .navigation .main-menu {
    position: relative !important;
  }

  .navbar-default .navbar-toggle {
    border-color: transparent;
    transition: 0.25s all ease-in-out;
  }

  .navbar-header {
    float: none;
    position: absolute !important;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 2.5rem;
  }

  .navbar-default .navbar-toggle:hover {
    transform: scale(1.5);
    transition: 0.25s all ease-in-out;
  }

  .navbar-default .navbar-toggle:focus,
  .navbar-default .navbar-toggle:hover {
    background-color: transparent;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background-color: #000;
  }

  /* Hide scrollbar for Chrome, Safari and Opera */
  .so-megamenu-active::-webkit-scrollbar,
  .megamenu-wrapper::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  .so-megamenu-active::-webkit-scrollbar,
  .megamenu-wrapper::-webkit-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    -webkit-box-shadow: 15px 0 20px -5px rgb(0 0 0 / 30%);
    -moz-box-shadow: 15px 0 20px -5px rgb(0 0 0 / 30%);
    box-shadow: 15px 0 20px -5px rgb(0 0 0 / 30%);
  }

  .mobile-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
  }

  #remove-megamenu {
    display: block !important;
    text-align: unset;
    padding: 0;
  }

  #remove-megamenu::before {
    font-size: 2rem;
  }

  .megamenu-wrapper {
    width: 280px;
    padding: 0;
    max-height: unset;
    border: none;
  }

  .responsive ul.megamenu {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .responsive ul.megamenu>li {
    border-top: none;
    margin: 0;
  }

  .responsive ul.megamenu>li>a {
    color: #000;
    text-shadow: none;
    background: none !important;
    margin: 0;
    padding: 0;
    height: auto;
    font-weight: 600;
    font-size: 2rem;
    padding: 2rem;
  }

  .responsive ul.megamenu>li.click:before,
  .responsive ul.megamenu>li.hover:before {
    content: "\f067";
    font-family: FontAwesome;
    color: #e5058c;
    font-weight: 400;
    font-size: 1.5rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 2rem;
    cursor: pointer;
  }

  ul.megamenu>li>.sub-menu>.content {
    display: flex;
    flex-direction: column;
  }

  ul.megamenu li .sub-menu .content {
    padding: 0;
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
  }

  .responsive ul.megamenu .sub-menu .content .row {
    margin: 0;
  }

  ul.megamenu li .sub-menu .content .categories>.row {
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  ul.megamenu li .sub-menu .content .static-menu .menu ul {
    padding: 0;
  }

  .responsive ul.megamenu .sub-menu .content .row>div {
    margin: 0;
    padding: 0;
    border: none;
    width: unset;
  }

  .responsive ul.megamenu>li.active .close-menu {
    top: 0;
    right: 0;
    width: unset;
    height: unset;
    background: none;
    text-align: unset;
    cursor: pointer;
    padding: 2rem;
    margin: 0;
  }

  .responsive ul.megamenu>li.active .close-menu:before {
    content: "\f068";
    font-family: FontAwesome;
    color: #e5058c;
    font-size: 1.5rem;
  }

  ul.megamenu li .sub-menu .content .static-menu .menu ul ul li:before {
    content: "";
    padding-right: 0;
  }

  ul.megamenu li .sub-menu .content .static-menu .menu ul ul {
    padding: 0;
  }



  .responsive ul.megamenu>li.active::before {
    display: none;
  }

  .nav-wrapper .quick-access .access-links {
    justify-content: flex-start;
  }

  .mobile-logo img {
    width: 128px;
    height: 24px;
  }

  .responsive .horizontal ul.megamenu>li>.sub-menu {
    padding: 2rem;
  }

  ul.megamenu li .sub-menu .content .static-menu a.main-menu {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  ul.megamenu li .sub-menu .content .static-menu .menu ul ul>li {
    padding: 0.5rem 0;
  }

  ul.megamenu li .sub-menu .content .static-menu .menu ul ul>li>a {
    padding: 0.5rem 0;
  }

  .mobile-menu-overlay.active {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 50%);
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .search-overlay .search-card {
    width: 80%;
    padding: 1rem 2.5rem;
  }

  .login-overlay .login-card {
    width: 90%;
    max-height: 90%;
    top: 5%;
    transform: translate(-50%, 0);
    overflow: scroll;
    padding: 1.8rem 1.8rem;
  }

  /* Hide scrollbar for Chrome, Safari and Opera */
  .login-overlay .login-card::-webkit-scrollbar,
  .login-overlay .login-card::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  .login-overlay .login-card::-webkit-scrollbar,
  .login-overlay .login-card::-webkit-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    -webkit-box-shadow: 15px 0 20px -5px rgb(0 0 0 / 30%);
    -moz-box-shadow: 15px 0 20px -5px rgb(0 0 0 / 30%);
    box-shadow: 15px 0 20px -5px rgb(0 0 0 / 30%);
  }

  .login-overlay .login-card .login-card__logo img {
    width: 120px;
  }

  .login-overlay .login-card .login-card___form .login-submit,
  .login-overlay .login-card .login-card___form .signup-submit {
    padding: 1rem 0;
    margin: 0;
  }

  .login-overlay .login-card .login-card___form .nav-tabs>li>a {
    font-size: 1.5rem;
  }

  .login-overlay .login-card .login-card___form .nav-tabs>li.active>a {
    font-size: 1.5rem;
  }

  .login-overlay .login-card .login-card___form .nav-tabs>li {
    margin: 0 1rem;
  }

  .login-overlay .login-card .login-card___form .nav>li:nth-child(2)::before {
    height: 20px;
  }

  .login-overlay .login-card .login-card___form .user-input-group>input {
    height: 25px;
    font-size: 1rem;
  }

  .login-overlay .login-card .round {
    margin: 1rem;
    font-size: 1rem;
  }

  .tile-banners {
    flex-direction: column-reverse;
    padding: 0px 10rem;
  }

  .tile-banners .left-banner {
    width: 100%;
  }

  .double-banner {
    margin: 1rem 0;
  }

  .double-banner .banner-left {
    margin-right: 1rem;
  }

  .double-banner>div {
    flex-basis: calc(50% - 0.5rem);
  }

  .box-wrapper img {
    width: 100px;
    height: 100px;
  }

  .box-wrapper>div {
    justify-content: center;
  }

  .product-wrapper {
    flex-direction: column;
  }

  .product-wrapper .product-thumb-wrapper {
    flex-basis: 100%;
  }

  .product-wrapper .product-desc {
    flex-basis: 100%;
    overflow: hidden;
  }

  .product-wrapper .product-thumb-wrapper .xzoom-container {
    width: 100%;
    justify-content: center;
    flex-direction: column;
  }

  .product-wrapper .product-thumb-wrapper .xzoom-container .xzoom-thumbs {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-wrapper .product-thumb-wrapper .xzoom-container .xzoom-thumbs>div {
    margin: 1.5rem;
  }

  .product-wrapper .product-thumb-wrapper .xzoom-container .xzoom5 {
    width: 100% !important;
  }

  .product-wrapper .product-desc .desc-container {
    width: 100%;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .product-wrapper .product-desc .prod-details .desc-item {
    justify-content: center;
  }

  .product-wrapper .product-desc #product {
    margin: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .product-wrapper .product-desc .product-box-wrapper {
    margin: 1rem 0 1rem;
  }

  .product-wrapper .product-desc .product-box-wrapper .info-box {
    margin: 0 1.5rem;
  }

  .product-wrapper .product-desc .cart-add-container+.list-unstyled>li {
    text-align: center;
  }

  .product-content {
    padding: 0 1rem;
  }

  .product-content .tab-div .nav-tabs {
    margin: 2rem 0 2rem;
    justify-content: center;
    flex-direction: column;
  }

  .product-content .tab-div .tab-content {
    border-bottom: 1px solid #ccc;
  }

  .product-content .tab-div .nav-tabs>li {
    margin: 1.5rem;
  }

  .product-content .tab-div .nav-tabs>li>a {
    text-align: center;
    margin-right: 0;
  }

  .product-wrapper .product-desc .prod-details .desc-item .desc-caption .title,
  .product-wrapper .product-desc .prod-details .desc-item .desc-caption .info {
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .product-wrapper .product-desc .prod-details .desc-item .desc-img {
    padding: 0 0.8rem 0 0;
  }

  .product-wrapper .product-desc .prod-details .desc-item {
    flex-basis: 50%;
    margin-bottom: 1rem;
  }

  .product-wrapper .product-desc .prod-details+.list-unstyled {
    padding: 0;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-top .footer-top-left {
    margin-right: 0;
    padding: 2rem 0;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
  }

  .footer-top .footer-top-right {
    flex-basis: initial;
    align-items: center;
    width: 100%;
  }

  .footer-top .l1 {
    flex-basis: initial;
  }

  .footer-top .l2,
  .footer-top .l3 {
    flex-basis: initial;
  }

  .footer-top>div:nth-child(2) {
    height: 260px;
    padding: 0;
  }

  .footer-bottom .bottom-payments .pay-methods {
    flex-direction: column;
  }

  .footer-bottom .bottom-payments .pay-methods .pay-shipping {
    margin-top: 1rem;
  }
}

@media all and (max-width: 768px) {
  .product-wrapper .product-desc .cart-add-container .qty-wrapper {
    width: 100%;
  }

  .subcategory-list ul li {
    width: 20% !important;
  }

  button#button-cart {
    width: 100%;
  }

  .left-img-area img {
    width: 100%;
  }

  .left-img-area {
    width: 100%;
  }

  .vertial-featured {
    flex-direction: column;
  }



  .right-featured-wrapper {
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
  }

  .eight-first-area img {
    width: 100%;
  }



  .header-top .top-bar {
    height: 80px;
  }

  .header-top .top-bar .bar-wrapper>div:nth-child(1) {
    flex-basis: initial;
  }

  .header-top .top-bar .bar-wrapper>div:nth-child(2) {
    flex-basis: initial;
  }

  .header-top .top-bar .bar-wrapper {
    height: 80px;
    justify-content: center;
  }

  .header-top .top-bar .bar-wrapper>div:nth-child(1) {
    flex-direction: column;
  }

  .header-top .top-bar .bar-wrapper .header-social {
    margin: 0;
  }


  .slider-bottom {
    justify-content: space-around;
  }

  .slider-bottom>div {
    margin: 0;
  }

  .slider-bottom>div span {
    font-size: 1.1rem;
  }

  .tile-banners {
    flex-direction: column-reverse;
    padding: 0px 1rem;
  }

  .tile-banners .left-banner {
    height: 300px;
  }

  .tile-banners .right-banner-wrapper .right-banner-1,
  .tile-banners .right-banner-wrapper .right-banner-2 {
    height: 200px;
  }

  .tile-banners .right-banner-wrapper .right-banner-3,
  .tile-banners .right-banner-wrapper .right-banner-4 {
    height: 100px;
  }

  .tab-urun-div .nav-tabs {
    margin: 1rem 0;
  }

  .tab-urun-div .nav-tabs>li {
    margin: 0;
  }

  .tab-urun-div .nav-tabs>li>a {
    font-size: 1.5rem;
  }

  .product-layout .sepet-container {
    visibility: visible;
    transform: translateX(0);
    transition: 0.5s all ease-in-out;
  }

  .product-layout .product-image .fav-btn {
    transform: translateY(0);
    visibility: visible;
    transition: 0.25s all ease-in-out;
  }

  .box-container .box-title {
    margin: 2rem 0 2rem 0;
  }

  .footer-top .footer-top-left {
    flex-direction: column;
    text-align: center;
  }

  .footer-top .footer-top-left .link-heading {
    flex-direction: column;
    text-align: center;
  }

  .footer-top .footer-top-left .link-heading span button {
    background-color: #fff;
    border: 2px solid #fff;
    color: #fff;
    padding: 2rem;
    margin: 1rem;
    width: 250px;
    color: #79cfda;
    font-weight: 900;
  }

  .footer-top .footer-top-left .link-heading span button::after {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f078";
    margin: 0.5rem;
  }

  .footer-top .footer-top-left .link-heading span button:focus {
    outline: 0;
  }

  .footer-top .footer-top-left .footer-social .social-list {
    justify-content: center;
  }

  .footer-top>div {
    height: auto;
  }

  .footer-top .l1 .l1-links {
    display: none;
  }

  .footer-top .l2>ul,
  .footer-top .l3>ul {
    display: none;
  }

  .footer-top .mobile-links {
    display: block !important;
  }
}

@media all and (max-width: 640px) {
  .header-top .top-bar .bar-wrapper>div:first-child {
    display: none;
  }

  .header-top .language-div .lang-btn,
  .header-top .currency-div>.currency-btn {
    font-weight: 500;
    border: 1px solid #e5058c;
    padding: 1rem 2rem;
    font-size: 2rem;
  }

  .header-top .language-div:hover .lang-btn,
  .header-top .currency-div:hover>.currency-btn {
    border-bottom: 1px solid #e5058c;
  }

  .header-top .language-div .dropdown-menu,
  .header-top .currency-div .dropdown-menu {
    top: 42px;
  }

  .header-top .language-div .dropdown-menu,
  .header-top .currency-div .dropdown-menu {
    padding: 0.5rem;
  }

  .header-top .language-div .dropdown-menu>li>a,
  .header-top .currency-div .dropdown-menu>li>button {
    padding: 0.8rem;
  }

  .header-top .header-currency strong {
    display: none;
  }

  .nav-wrapper .site-logo img {
    width: 128px;
    height: 24px;
  }

  .navbar-header {
    padding-right: 1.5rem;
  }

  .nav-wrapper .quick-access .access-links>li:not(:last-child) {
    margin-right: 1.5rem;
  }

  .header-top .navigation .nav-wrapper {
    width: 100%;
    padding: 0 2rem;
  }

  .box-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .box-wrapper figure {
    flex-basis: 50%;
    margin: 0 0 1rem;
  }

  .box-wrapper figure:nth-child(2n) {
    text-align: left;
    padding-left: 0.5rem;
  }

  .box-wrapper figure:nth-child(2n-1) {
    text-align: right;
    padding-right: 0.5rem;
  }

  .box-wrapper>div {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom .bottom-payments .pay-methods .pay-shipping {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .footer-bottom .bottom-payments .pay-methods .pay-cards {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom .bottom-payments .pay-methods .pay-cards>img,
  .footer-bottom .bottom-payments .pay-methods .pay-shipping>img {
    margin: 0.5rem 0.5rem;
    height: 20px;
  }

  .footer-bottom .bottom-payments .pay-methods .pay-shipping img,
  .footer-bottom .bottom-payments .pay-methods .pay-shipping span {
    margin-top: 1rem;
  }
}

@media all and (max-width: 520px) {
  .slider-bottom>div span {
    font-size: 1rem;
  }

  .slider-bottom>div img {
    width: 25px;
    height: 25px;
  }

  .footer-bottom .bottom-payments .pay-methods .pay-shipping {
    font-weight: 400;
  }
}

@media all and (max-width: 480px) {
  .slider-bottom>div:not(.mobile-caption) span {
    display: none;
  }

  .slider-bottom>.mobile-caption {
    display: block !important;
  }

  .slider-bottom>div img {
    width: 32px;
    height: 32px;
  }

  .footer-bottom .bottom-payments .pay-methods .secure-payments {
    font-size: 1.2rem;
  }

  #toast-container {
    top: 0;
    right: 0;
    width: 100%;
  }

  #toast-container .toast-close-button {
    right: 7px;
    top: 0px;
    padding: 5px;
  }

  #toast-container>div {
    width: 100%;
  }

  .toast-message {
    padding: 5px;
  }


}