@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+Da+2&display=swap");
body {
  font-family: "DM Serif Display", serif;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  body {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.8rem;
  }
}

*,
::after,
::before {
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a, a:hover {
  text-decoration: none;
}

.main-title {
  position: relative;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-title:before {
  background-color: #e5e5e5;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
html[dir=rtl] .main-title:before {
  right: 0;
}

.main-title > h3 {
  background-color: #ffffff;
  display: inline-block;
  padding-right: 25px;
  margin-bottom: 0;
  z-index: 1;
}

@media (max-width: 767px) {
  .main-title > h3 {
    font-size: 20px;
  }
}
.section-title {
  position: relative;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-title:before {
  background-color: #e5e5e5;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.section-title > h3 {
  background-color: #ffffff;
  display: inline-block;
  padding-right: 25px;
  margin-bottom: 0;
  z-index: 1;
}

@media (max-width: 767px) {
  .section-title > h3 {
    font-size: 20px;
  }
}
.close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 100000;
}
.close-btn:hover {
  text-decoration: none;
}

.close-btn i {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  display: block;
  position: relative;
  top: 0;
  right: 0;
}

.close-btn:hover i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  color: #bb7e85;
}

.overlay, .menu-bigScreen, .search, .cart, .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(51, 51, 51, 0.8);
  z-index: 9999;
}

.content, .menu-inner, .cart__content, .mobile-menu-inner {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  right: 0;
  position: absolute;
  top: 0;
  width: 450px;
  min-width: 400px;
  height: 100vh;
  padding: 3rem;
  background-color: #f5f5f5;
}

.center-abs, .shop-now .shop_content, .search__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.img-animation {
  position: relative;
}

.img-animation:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 1;
}

.img-animation:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 1;
}

.img-animation:hover:before {
  background-color: rgba(255, 255, 255, 0.3);
  left: 50%;
  right: 50%;
}

.img-animation:hover:after {
  background-color: rgba(255, 255, 255, 0.3);
  bottom: 50%;
  top: 50%;
}

.preload {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  z-index: 9999999999999;
}
.preload .middle {
  position: absolute;
  top: 50%;
  width: 100%;
}
.preload .middle .loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 3;
  top: 50%;
  border: 5px solid #bb7e85;
  -webkit-animation: loader 2s infinite ease;
  animation: loader 2s infinite ease;
}
.preload .middle .loader-inner {
  background-color: #bb7e85;
  vertical-align: top;
  display: inline-block;
  width: 100%;
  -webkit-animation: loader-inner 2s infinite ease-in;
  animation: loader-inner 2s infinite ease-in;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
@keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
/* ---Slider Progress Bar--- */
.loading {
  background: rgba(0, 0, 0, 0.3);
  -webkit-animation: initial;
  animation: initial;
  height: 5px;
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 0;
  z-index: 4;
}

.slick-current .loading {
  -webkit-animation: loading-animate 8s ease-in-out 0s 1 backwards;
  animation: loading-animate 8s ease-in-out 0s 1 backwards;
}

@-webkit-keyframes loading-animate {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes loading-animate {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.header {
  background-color: #ecf1f5;
  padding-top: 2rem;
}
@media screen and (max-width: 992px) {
  .header {
    background-color: #fff;
  }
}

.header-fixed {
  background-color: #fff;
  padding-top: 2rem;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 300ms ease-in 0s;
  transition: all 300ms ease-in 0s;
  z-index: 99;
  -moz-transition: all 300ms ease-in 0s;
  -ms-transition: all 300ms ease-in 0s;
  -o-transition: all 300ms ease-in 0s;
  display: block;
}

@media (max-width: 575px) {
  .header-fixed.fixed {
    position: static;
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.header .row {
  display: flex;
  justify-content: space-between;
}

.main-menu ul {
  display: flex;
}
.main-menu ul a:hover {
  color: #bb7e85;
}
.main-menu li {
  padding: 0.7rem;
  position: relative;
}
.main-menu a {
  color: rgba(51, 51, 51, 0.8);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.main-menu .main-nav ul li a:hover {
  text-decoration: none;
  color: #bb7e85;
}
.main-menu li.dropdown-li {
  position: relative;
}
.main-menu li.dropdown-li:hover ul.dropdown-list {
  height: 100% !important;
  opacity: 1;
  visibility: visible;
}
.main-menu ul.dropdown-list {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 1rem 3rem 0 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: height 0.5s;
  -webkit-transition: height 0.5s;
  -moz-transition: height 0.5s;
  -ms-transition: height 0.5s;
  -o-transition: height 0.5s;
}
.main-menu ul.dropdown-list li {
  padding: 0.5rem 0.7rem;
  width: 200px;
  background-color: #fff;
}
.main-menu ul.dropdown-list li a {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.main-menu ul.dropdown-list li:hover a {
  color: #bb7e85;
  margin-left: 0.7rem;
}
.main-menu > li:last-of-type {
  margin-left: -110px;
}

.header__right-side ul {
  display: flex;
}
.header__right-side li {
  padding: 0.7rem;
}
.header__right-side a {
  color: rgba(51, 51, 51, 0.8);
}
.header__right-side i.fa {
  font-size: 22px;
}
.header__right-side .cart-count_area {
  color: #bb7e85;
  position: relative;
}
.header__right-side .item-count {
  position: absolute;
  top: -17px;
  right: 13px;
  background-color: #bb7e85;
  color: #fff;
  width: 19px;
  height: 19px;
  line-height: 19px;
  text-align: center;
  font-size: 0.7rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.mobile-menu {
  opacity: 0;
  visibility: hidden;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a.close-btn {
  right: 400px !important;
  top: 0 !important;
  background-color: #333;
  color: #fff;
  font-size: 1.2rem;
  padding: 1.5rem;
}
.mobile-menu-inner {
  z-index: 99999999;
  background-color: #f5f5f5 !important;
  width: 200px !important;
  margin: 0;
  padding: 0;
  font-family: "Baloo Da 2", cursive;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  overflow-y: scroll;
}
.mobile-menu-inner.show {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.mobile-menu-inner .menueS-list .menueS-item, .mobile-menu-inner .user-select .menueS-item {
  border-bottom: 1px solid #dad9d9;
  margin-bottom: 1rem;
}
.mobile-menu-inner .menueS-list i, .mobile-menu-inner .user-select i {
  font-size: 0.8rem;
  content: "";
  display: inline-block;
  position: absolute;
  right: 30px;
  top: 50%;
}
.mobile-menu-inner .menueS-list a, .mobile-menu-inner .user-select a {
  color: #333;
  position: relative;
  display: block;
}
.mobile-menu-inner .menueS-list li, .mobile-menu-inner .user-select li {
  display: block;
  padding-bottom: 0.5rem;
}
.mobile-menu-inner .menueS-list li.active > a,
.mobile-menu-inner .menueS-list li:hover > a, .mobile-menu-inner .user-select li.active > a,
.mobile-menu-inner .user-select li:hover > a {
  color: #bb7e85 !important;
}
.mobile-menu-inner .user-select {
  margin-top: 2.5rem;
}
.mobile-menu-inner .expand {
  display: block;
  height: 0;
  max-width: 100%;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  padding: 0.3rem;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-animation: slideUp 1s normal;
  animation: slideUp 1s normal;
}
.mobile-menu-inner .show {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow: visible;
  -webkit-animation: slideUp 1s normal;
  animation: slideUp 1s normal;
}
.mobile-menu-inner .minus i:before {
  content: "";
}
.mobile-menu-inner .user-select-item ul {
  display: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.mobile-menu-inner .user-select-item.active ul {
  display: block;
}
.mobile-menu-inner .user-select-item.active i:before {
  content: "";
}

.cart {
  opacity: 0;
  visibility: hidden;
}
.cart.open {
  opacity: 1;
  visibility: visible;
}
.cart__inner {
  position: relative;
  right: 0;
}
.cart__content {
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
}
.cart__content.show {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.cart__product {
  display: flex;
  padding: 1rem 0;
  position: relative;
}
.cart__btn {
  background-color: #333;
  border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  -ms-border-radius: 1.5rem;
  -o-border-radius: 1.5rem;
  padding: 0.5rem 0;
  width: 90%;
  margin: 0.5rem 5% !important;
  display: inline-block;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.cart__btn:hover {
  background-color: #bb7e85;
}
.cart .product-item_img {
  padding-right: 1rem;
}
.cart .product-item_img img {
  width: 70px;
  height: 70px;
  border: 1px solid #d8d8d8;
}
.cart .product-item_remove {
  position: absolute;
  top: 20%;
  right: 20%;
  color: rgba(51, 51, 51, 0.8);
  font-size: 0.7rem;
  font-weight: lighter;
}
.cart a {
  color: #333;
}

.search {
  background-color: #222 !important;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transform-origin: left;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
}
.search.open {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}
.search__inner {
  color: #fff;
  width: 90%;
  padding: 6rem;
}
.search__box {
  display: block;
  width: 80%;
  height: 100px;
  background-color: #333 !important;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: 1s ease 0.5s;
  -webkit-transition: 1s ease 0.5s;
  -moz-transition: 1s ease 0.5s;
  -ms-transition: 1s ease 0.5s;
  -o-transition: 1s ease 0.5s;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}
.search__box.show {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}
.search .close-search {
  font-size: 2rem;
  color: #fff;
}
.search .form-input {
  position: absolute;
  color: #fff;
  top: 25%;
  left: 0;
  margin: 0 2rem;
  outline: none;
  border: 0;
  width: 80%;
  padding: 0.7rem;
  align-self: center;
  background-color: #333 !important;
}
.search .form-input::-webkit-input-placeholder {
  color: #fff;
}
.search .search-icon {
  position: absolute;
  top: 35%;
  right: 7%;
  font-size: 1.5rem;
  align-self: center;
  margin-right: auto;
  display: inline-block;
}

.menu-bigScreen {
  opacity: 0;
  visibility: hidden;
}
.menu-bigScreen.open {
  opacity: 1;
  visibility: visible;
}

a.close-btn {
  right: 190px;
  color: #333;
  font-size: 1.2rem;
}

.menu-inner {
  background-color: #fff !important;
  width: 300px !important;
  font-family: "Baloo Da 2", cursive;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}
.menu-inner.show {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.menu-inner .short-desc {
  margin: 1rem 0 2rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e2e2;
}
.menu-inner .box_list {
  display: flex;
  margin-left: -40px;
  margin-bottom: 2rem;
}
.menu-inner .box_list a {
  color: rgba(51, 51, 51, 0.8);
  font-size: 0.9rem;
}
.menu-inner .box_list li.active a,
.menu-inner .box_list li:hover a {
  color: #bb7e85 !important;
}
.menu-inner .box_list span {
  color: #e2e2e2;
  margin: 0 0.5rem;
}
.menu-inner .box_title {
  margin-bottom: 1rem;
  display: block;
}
.menu-inner .social_list {
  display: flex;
  margin-left: -40px;
  margin-top: 20px;
}
.menu-inner .social_list a {
  color: #333;
  padding: 1rem;
  margin: 0.5rem;
  display: inline-block;
  border: 1px solid rgba(51, 51, 51, 0.1);
}
.menu-inner .social_list a:first-of-type {
  margin-left: 0;
}

.slider {
  background-color: #ecf1f5;
  height: 90vh;
}
@media screen and (max-width: 767px) {
  .slider {
    height: 70vh;
  }
}
.slider .bg-1, .slider .bg-2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 90vh;
}
@media screen and (max-width: 767px) {
  .slider .bg-1, .slider .bg-2 {
    height: 70vh;
  }
}
.slider .single-item {
  padding: 0;
}
.slider .bg-1 {
  background-image: url("../img/1-1 (1).jpg");
}
.slider .bg-2 {
  background-image: url(../img/1-2.jpg);
}
.slider__content {
  margin-left: 2rem;
  z-index: 2;
  width: 50%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .slider__content {
    width: 85%;
    margin-left: 0rem;
    height: 70vh;
  }
}
.slider span {
  display: block;
}
.slider h2 {
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .slider h2 {
    font-size: 2rem;
  }
}
.slider .slider-btn {
  margin-top: 2.5rem;
  width: 160px;
  border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  -ms-border-radius: 1.5rem;
  -o-border-radius: 1.5rem;
  padding: 0.5rem;
  background-color: #222;
  transition: 0.5s all;
}
.slider .slider-btn:hover {
  background-color: #bb7e85;
}

/* Header Animation style */
.slick-active.slider-animation .slider__content span {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
html[dir=ltr] .slick-active.slider-animation .slider__content span {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
html[dir=rtl] .slick-active.slider-animation .slider__content span {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.slick-active.slider-animation .slider__content h2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
html[dir=ltr] .slick-active.slider-animation .slider__content h2 {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
html[dir=rtl] .slick-active.slider-animation .slider__content h2 {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.slick-active.slider-animation .slider__content p {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
html[dir=ltr] .slick-active.slider-animation .slider__content p {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
html[dir=rtl] .slick-active.slider-animation .slider__content p {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.slick-active.slider-animation .slider__content .slider-btn {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
html[dir=ltr] .slick-active.slider-animation .slider__content .slider-btn {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
html[dir=rtl] .slick-active.slider-animation .slider__content .slider-btn {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.single-item {
  width: 100%;
  margin: 0 auto;
  background-color: #ecf1f5;
  padding: 1rem;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  position: relative;
}
html[dir=rtl] .single-item {
  text-align: right;
}
.single-item:focus {
  outline: none;
  border: 0;
}
.single-item .single-item .items p {
  color: #777;
  line-height: 2;
  z-index: -1;
}
.single-item .single-item img {
  height: 95vh;
}
.single-item .for-slick-slide button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 20;
}
.single-item .slide-arrow {
  position: absolute;
  cursor: pointer;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  z-index: 2;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
  width: 50px;
  height: 50px;
}
.single-item .slide-arrow:hover {
  background-color: #222 !important;
  color: #fff !important;
}
.single-item .prev-arrow {
  right: 80px;
  top: 50%;
}
html[dir=rtl] .single-item .prev-arrow {
  left: 80px !important;
  right: initial;
  top: 30%;
}
.single-item .next-arrow {
  right: 80px;
  top: 30%;
}
html[dir=rtl] .single-item .next-arrow {
  left: 80px !important;
  right: initial;
  top: 50%;
}
.single-item .prev-arrow i, .single-item .next-arrow i {
  line-height: 50px;
  font-size: 0.9;
}
.single-item .slick-dots {
  margin: 30px auto;
}
.single-item .slick-dots li {
  background-color: #7777;
  border-radius: 50%;
}

.service {
  background-color: #fff;
  margin-top: 100px;
  margin-bottom: 100px;
  font-family: "Baloo Da 2", cursive;
  position: relative;
}
@media (max-width: 992px) {
  .service {
    margin-top: 90px !important;
    margin-bottom: 90px;
  }
}
html[dir=rtl] .service {
  text-align: center;
}
.service-item::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 1px;
  height: 30px;
  background-color: #acacac;
}
html[dir=rtl] .service-item::after {
  left: 0px;
  right: auto;
}
.service-last-item:after {
  background-color: transparent;
}
@media (max-width: 768px) {
  .service {
    text-align: center;
    margin-top: 220px;
    margin-bottom: 40px;
  }
  .service-item {
    margin-bottom: 3rem;
  }
  .service-item:after {
    background-color: transparent;
  }
}

.designer {
  margin-bottom: 100px;
}
.designer img {
  width: 100%;
  margin-bottom: 25px;
}

.product .main-title:before {
  width: 85%;
}
@media screen and (max-width: 992px) {
  .product .main-title:before {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .product .main-title:before {
    width: 70%;
  }
}

.product__slider {
  width: 100%;
  padding: 0 0 90px;
  font-family: "Baloo Da 2", cursive;
}
@media screen and (max-width: 575px) {
  .product__slider {
    margin-bottom: 0px;
  }
}
.product__slider .product-arrow {
  position: absolute;
  cursor: pointer;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
  z-index: 2;
  background-color: transparent;
  width: 40px !important;
  height: 40px !important;
  color: #333;
  font-size: 0.9rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: -62px !important;
  background-color: #e2e2e2;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
}
.product__slider .product-arrow i {
  line-height: 40px;
}
.product__slider .product-arrow:hover {
  background-color: #bb7e85;
  color: #fff;
}
.product__slider .prev-arrow {
  top: -62px !important;
  right: 85px;
}
html[dir=rtl] .product__slider .prev-arrow {
  left: 25px !important;
  right: initial;
}
.product__slider .next-arrow {
  right: 25px;
}
html[dir=rtl] .product__slider .next-arrow {
  left: 85px !important;
  right: auto;
}

.slick-disabled {
  cursor: not-allowed !important;
}

.product__item {
  position: relative;
  margin-right: 30px !important;
}
html[dir=rtl] .product__item {
  margin-left: 30px !important;
  margin-right: 0 !important;
}
@media screen and (max-width: 992px) {
  .product__item {
    margin-right: 20 !important;
  }
  html[dir=rtl] .product__item {
    margin-left: 20px !important;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .product__item {
    margin-right: 15 !important;
  }
  html[dir=rtl] .product__item {
    margin-left: 15px !important;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 575px) {
  .product__item {
    margin-right: 0 !important;
  }
  html[dir=rtl] .product__item {
    margin-left: 0px !important;
    margin-right: 0;
  }
}
.product__item .inner-product {
  border: 1px solid #e2e2e2;
  padding: 1rem;
  width: 100%;
  margin-bottom: 20px;
}
.product__item .inner-product:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.product__item .product__img {
  position: relative;
  text-align: center;
}
.product__item .product__img a {
  display: block;
}
.product__item .product__img a img {
  width: 100%;
  height: 100%;
}
.product__item .product__img a .secondary__img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  transition: 0.5s all ease-in-out;
  -webkit-transition: 0.5s all ease-in-out;
  -moz-transition: 0.5s all ease-in-out;
  -ms-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
}
.product__item .product__img:hover .secondary__img {
  opacity: 1;
}
.product__item .product__img:hover .main__img {
  opacity: 0;
}
.product__item .product__img .add-behaviur {
  transition: 0.5s all ease-in-out;
  -webkit-transition: 0.5s all ease-in-out;
  -moz-transition: 0.5s all ease-in-out;
  -ms-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  background-color: #f5f5f5;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
html[dir=rtl] .product__item .product__img .add-behaviur {
  right: 0;
  left: initial;
}
.product__item .product__img .add-behaviur ul {
  margin: 0 0 0 -39px;
}
html[dir=rtl] .product__item .product__img .add-behaviur ul {
  margin: 0 -39px 0 0;
}
.product__item .product__img .add-behaviur ul li {
  display: block;
}
.product__item .product__img .add-behaviur ul li a {
  color: #bb7e85;
  display: block;
  height: 35px;
  line-height: 36px;
  align-items: center;
  width: 35px;
  padding: 5px;
}
.product__item .product__img .add-behaviur ul li a i {
  font-size: 20px;
}
.product__item .product__img:hover .add-behaviur {
  opacity: 1;
}
.product__item .product__img .add-behaviur a:hover {
  background-color: #bb7e85;
  color: #f5f5f5;
}
.product__item .product__content {
  padding-top: 30px;
}
.product__item .product__content .product__name a {
  font-size: 20px;
  color: #333;
}
.product__item .product__content .price-box .old-price {
  color: #bb7e85;
}
.product__item .product__content .price-box .new-price {
  color: #bbbbbb;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 10px;
}
.product__item .product__content .star-box ul {
  display: flex;
  margin-left: -40px;
  margin-top: 20px;
}
.product__item .product__content .star-box ul li {
  color: #bb7e85;
  margin-left: 2px;
}
.product__item .product__content .star-box ul li.white-star {
  color: #fff;
}

/* ---Product Shape---*/
.shape,
.shape-2 {
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 10px;
  height: 25px;
  line-height: 26px;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  cursor: text;
}

.shape {
  background-color: #bb7e85;
}

.shape:before,
.shape-2:before {
  -o-border-image: none;
  border-image: none;
  border-style: solid;
  border-width: 6px;
  content: "";
  margin-top: -6px;
  position: absolute;
  right: -11px;
  top: 50%;
}

.shape.shape-2,
.shape-2.shape-2 {
  background-color: #242424;
  left: auto;
  right: 0;
}

.shape.shape-2:before,
.shape-2.shape-2:before {
  border-color: transparent #242424 transparent transparent;
  right: auto;
  left: -11px;
}

.shape:before {
  border-color: transparent transparent transparent #bb7e85;
}

.designer-2 {
  margin-bottom: 90px;
}
.designer-2 .designer-img {
  overflow: hidden;
}
.designer-2 .designer-img img {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.product-tab .main-title:before {
  width: 65%;
}
@media screen and (max-width: 992px) {
  .product-tab .main-title:before {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .product-tab .main-title:before {
    width: 45%;
  }
}
@media screen and (max-width: 525px) {
  .product-tab .main-title:before {
    width: 0%;
  }
}
@media screen and (max-width: 525px) {
  .product-tab .main-title {
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
    left: -35% !important;
  }
  html[dir=rtl] .product-tab .main-title {
    right: -35% !important;
  }
}
@media screen and (max-width: 525px) {
  .product-tab .main-title .product-menu {
    left: 33% !important;
    margin-left: -15px !important;
  }
  html[dir=rtl] .product-tab .main-title .product-menu {
    margin-left: -100px !important;
  }
}
html[dir=rtl] .product-tab .main-title .product-menu {
  margin-right: -70%;
}
.product-tab .product-menu {
  margin-right: 0.5rem;
}
.product-tab .product-menu a:hover {
  color: #bb7e85;
}
.product-tab .product-menu a.active {
  color: #bb7e85;
}
.product-tab .tab-inner {
  display: block;
  height: 0;
  max-width: 100%;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
}
.product-tab .tab-inner.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow: visible;
}
.product-tab .product-menu {
  margin-left: -60% !important;
  display: flex;
}
.product-tab .product-menu a {
  color: #333;
  display: block;
  margin-right: 0.5rem;
  margin-bottom: -20px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

.shop-now {
  font-family: "Baloo Da 2", cursive;
  background-image: linear-gradient(rgba(51, 51, 51, 0.5), rgba(51, 51, 51, 0.5)), url(../img/instagram/2.jpg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  min-height: 90vh;
  position: relative;
  padding-top: 0;
  margin-top: 70px;
}
.shop-now h2 {
  font-weight: bold;
  font-size: 3rem;
}
.shop-now .shop_content {
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .shop-now .shop_content {
    width: 90%;
  }
}
.shop-now .contact-us {
  font-weight: bold;
  font-size: 1.2rem;
}
.shop-now .shop-btn {
  font-weight: bold;
  display: block;
  padding: 0.5rem 2rem;
  margin: 2rem auto 0;
  margin-top: 2rem;
  border: 1px solid #fff;
  width: 180px;
  border-radius: 0.3rem;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  -o-border-radius: 0.3rem;
  overflow: hidden;
  font-size: 1.2rem;
  transition: 0.5s all ease-in-out;
  -webkit-transition: 0.5s all ease-in-out;
  -moz-transition: 0.5s all ease-in-out;
  -ms-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  cursor: pointer;
}
.shop-now .shop-btn:hover {
  border: 1px solid #bb7e85 !important;
  background-color: #bb7e85 !important;
}
.shop-now a {
  color: #fff;
}

.instagram {
  font-family: "Baloo Da 2", cursive;
  margin: 120px 0 90px;
}
.instagram_heading h2 {
  font-weight: bold;
}
.instagram_slider {
  position: relative;
}
.instagram-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  background-color: rgba(34, 34, 34, 0.7);
  color: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
}
.instagram-arrow:hover {
  background-color: #222222;
}
.instagram-arrow i {
  line-height: 30px;
}
.instagram .prev-arrow {
  left: 15px;
}
.instagram .next-arrow {
  right: 45px !important;
}
@media screen and (max-width: 767px) {
  .instagram .next-arrow {
    right: 35px !important;
  }
}
@media screen and (max-width: 567px) {
  .instagram .next-arrow {
    right: 30px !important;
  }
}
@media screen and (max-width: 480px) {
  .instagram .next-arrow {
    right: 15px !important;
  }
}
.instagram-item {
  margin-right: 30px !important;
}
@media screen and (max-width: 767px) {
  .instagram-item {
    margin-right: 20 !important;
  }
}
@media screen and (max-width: 567px) {
  .instagram-item {
    margin-right: 15 !important;
  }
}
@media screen and (max-width: 480px) {
  .instagram-item {
    margin-right: 0 !important;
  }
}
.instagram-img img {
  width: 100%;
}

.footer {
  font-family: "Baloo Da 2", cursive;
  background-color: #f5f5f5;
  padding-top: 70px;
}
html[dir=rtl] .footer {
  text-align: right;
}
.footer .footer-top {
  padding-bottom: 70px;
  border-bottom: 1px solid #e2e2e2;
}
.footer .footer-top .footer-subscripe p.short-desc {
  margin-top: 1.5rem;
}
.footer .footer-top .footer-form .input-group .form-control {
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.7rem;
}
.footer .footer-top .footer-form .input-group .footer-form__btn {
  background-color: #bb7e85;
  color: #fff;
  padding: 0.7;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
}
.footer .footer-top .footer-form .input-group .footer-form__btn:hover {
  background-color: #000000;
}
.footer .footer-top .footer-form .input-group .footer-form__btn:focus {
  outline: none !important;
}
.footer .footer-top .footer-links_title {
  font-weight: bold;
}
.footer .footer-top .footer-links ul {
  margin-left: -40px;
  margin-top: 1rem;
}
html[dir=rtl] .footer .footer-top .footer-links ul {
  margin-left: 0;
  margin-right: -40px;
}
.footer .footer-top .footer-links li {
  margin-bottom: 0.7rem;
}
.footer .footer-top .footer-links a {
  color: #333;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
}
.footer .footer-top .footer-links li:hover a {
  margin-left: 10px;
  color: #bb7e85;
}
.footer .footer-bottom {
  padding: 1rem 0;
  font-size: 0.9rem;
}
.footer .footer-bottom a {
  color: #333;
}

.scroll-to-top {
  background-color: #242424;
  color: #ffffff;
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  z-index: 999;
  font-size: 20px;
  overflow: hidden;
  display: block;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
.scroll-to-top:hover {
  color: #fff;
  background-color: #bb7e85;
}
.scroll-to-top:hover i {
  -webkit-animation: slideUp 1s normal;
  animation: slideUp 1s normal;
  color: #fff;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-animation: slideUp 1s normal;
  animation: slideUp 1s normal;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(250px);
    -moz-transform: translateY(250px);
    -ms-transform: translateY(250px);
    -o-transform: translateY(250px);
  }
  100% {
    transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(250px);
    -moz-transform: translateY(250px);
    -ms-transform: translateY(250px);
    -o-transform: translateY(250px);
  }
}
.modal {
  font-family: "Baloo Da 2", cursive;
}
html[dir=rtl] .modal {
  text-align: right;
}
.modal .close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #222 !important;
}

.modal-body {
  position: relative;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 90%;
  }
}

.modal-content {
  width: 100%;
  padding: 30px 30px 25px;
  height: 755px;
  overflow-y: auto;
}
.modal-content .slid-btn-inner {
  padding: 10px;
  color: #fff;
  display: block;
  height: 200px;
}
.modal-content .slid-btn-inner:hover img {
  opacity: 1;
}
.modal-content .slid-btn-inner .slick-active img {
  opacity: 1;
}
.modal-content .slid-btn-inner img {
  border: 1px solid #bbbbbb;
  opacity: 0.9;
}
.modal-content .slick-slide img {
  width: 100% !important;
  height: 100% !important;
}
.modal-content .slider-nav {
  position: relative !important;
}
.modal-content .slide-container {
  border: 1px solid #bbbbbb;
  padding: 10px;
  color: #fff;
}
.modal-content .nav-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  background-color: rgba(34, 34, 34, 0.7);
  color: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
}
.modal-content .nav-arrow:hover {
  background-color: #222222;
}
.modal-content .nav-arrow i {
  line-height: 30px;
}
.modal-content .prev-arrow {
  left: 15px;
}
.modal-content .next-arrow {
  right: 15px !important;
}
.modal-content .modul-r-content a {
  color: #333;
}
.modal-content .modul-r-content .star-box ul {
  display: flex;
  color: #bb7e85;
  margin-left: -40px;
  font-size: 0.8rem;
}
html[dir=rtl] .modal-content .modul-r-content .star-box ul {
  margin-right: -40px;
}
.modal-content .modul-r-content .star-box ul li {
  margin-right: 0.2rem;
}
.modal-content .modul-r-content .price-box .new-price {
  color: #bb7e85;
  margin-right: 0.5rem;
}
html[dir=rtl] .modal-content .modul-r-content .price-box .new-price {
  margin-right: 0;
  margin-left: 0.5rem;
}
.modal-content .modul-r-content .price-box .old-price {
  color: #333;
  opacity: 0.5;
  text-decoration: line-through;
}
.modal-content .modul-r-content .product-info {
  margin-left: -40px;
  margin-top: 1rem;
}
html[dir=rtl] .modal-content .modul-r-content .product-info {
  margin-left: 0;
  margin-right: -40px;
}
.modal-content .modul-r-content .product-info a:hover {
  color: #bb7e85;
}
.modal-content .modul-r-content .color-list_area {
  border: 1px solid #dad9d9;
  padding: 1.7rem;
}
.modal-content .modul-r-content .color-list {
  display: flex;
  margin-top: 1rem;
}
.modal-content .modul-r-content .color-list_heading {
  font-weight: bold;
}
.modal-content .modul-r-content .color {
  margin-right: 0.5rem;
  border: 1px solid #dad9d9;
  display: block;
  padding: 0.1rem;
}
.modal-content .modul-r-content .color.active {
  border: 1px solid #7e7e7e;
}
.modal-content .modul-r-content .color .bg-red_color {
  background-color: #ff0000;
  display: block;
  width: 15px;
  height: 15px;
}
.modal-content .modul-r-content .color .burnt-orange_color {
  background-color: #ff832b;
  display: block;
  width: 15px;
  height: 15px;
}
.modal-content .modul-r-content .color .brown_color {
  background-color: #a6311f;
  display: block;
  width: 15px;
  height: 15px;
}
.modal-content .modul-r-content .color .raw-umber_color {
  background-color: #824900;
  display: block;
  width: 15px;
  height: 15px;
}
.modal-content .modul-r-content .color .black_color {
  background-color: #000;
  display: block;
  width: 15px;
  height: 15px;
}
.modal-content .modul-r-content .color .golden_color {
  background-color: #bb7e85;
  display: block;
  width: 15px;
  height: 15px;
}
.modal-content .modul-r-content .color .color-text {
  display: none;
}
.modal-content .modul-r-content .cart-plus-minus {
  position: relative;
  width: 76px;
  text-align: left;
}
.modal-content .modul-r-content .cart-plus-minus-box {
  border: 1px solid #e5e5e5;
  height: 46px;
  text-align: center;
  width: 48px;
  background: #ffffff;
}
.modal-content .modul-r-content .cart-plus-minus > .change {
  border-bottom: 1px solid #e5e5e5;
  border-right: 2px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  cursor: pointer;
  height: 23px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  width: 28px;
  line-height: 21px;
}
.modal-content .modul-r-content .quantity .cart-plus-minus > .change:hover {
  background: #f5f5f5;
}
.modal-content .modul-r-content .quantity .cart-plus-minus > .change.dec {
  bottom: 0;
  right: 0;
  box-shadow: 3px 2px 4px rgba(0, 0, 0, 0.03);
  border-bottom: 2px solid #e5e5e5;
}
.modal-content .modul-r-content .quantity .cart-plus-minus > .change.inc {
  border-bottom: none;
  top: 0;
  right: 0;
  box-shadow: 3px -2px 4px rgba(0, 0, 0, 0.03);
}
.modal-content .modul-r-content .add-to_cart_group ul {
  margin-top: 2rem;
  display: flex;
  margin-left: -40px;
}
.modal-content .modul-r-content .add-to_cart_group ul .add-to_cart {
  background-color: #222;
  border: 2px solid #222;
  color: #ffffff;
  width: 140px;
  display: block;
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin-right: 0.5rem;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.modal-content .modul-r-content .add-to_cart_group ul .add-to_cart:hover {
  background-color: #bb7e85;
  border: 2px solid #bb7e85;
}
.modal-content .modul-r-content .add-to_cart_group ul .heart {
  border: 2px solid #e5e5e5;
  width: 50px;
  height: 50px;
  line-height: 47px;
  display: block;
  text-align: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.modal-content .modul-r-content .add-to_cart_group ul .heart:hover {
  color: #bb7e85;
  border: 2px solid #bb7e85;
}
.modal-content .modul-r-content .tag-line {
  display: flex;
}
.modal-content .modul-r-content .tag-line h6 {
  font-weight: bold;
}
.modal-content .modul-r-content .social_link ul {
  display: flex;
  margin-left: -40px;
}
.modal-content .modul-r-content .social_link ul a {
  border: 1px solid #e5e5e5;
  font-size: 16px;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 0.5rem;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.modal-content .modul-r-content .social_link ul a:hover {
  background-color: #bb7e85;
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
