@charset "UTF-8";
/**----------------------------------------
START: Template Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --rr-ff-body: 'Jost', sans-serif;
  --rr-ff-heading: 'Jost', serif;
  --rr-ff-p: 'Jost', sans-serif;
  --rr-fw-normal: normal;
  --rr-fw-thin: 100;
  --rr-fw-elight: 200;
  --rr-fw-light: 300;
  --rr-fw-regular: 400;
  --rr-fw-medium: 500;
  --rr-fw-sbold: 600;
  --rr-fw-bold: 700;
  --rr-fw-ebold: 800;
  --rr-fw-black: 900;
  --rr-fs-body: 16px;
  --rr-fs-p: 16px;
  --rr-fs-h1: 60px;
  --rr-fs-h2: 36px;
  --rr-fs-h3: 20px;
  --rr-fs-h4: 20px;
  --rr-fs-h5: 16px;
  --rr-fs-h6: 14px;
  --rr-color-common-white: #ffffff;
  --rr-color-common-black: #000000;
  --rr-color-common-dark: #141414;
  --rr-color-heading-primary: #141414;
  --rr-color-text-body: #b1b1b1;
  --rr-color-theme-primary: #0dcaf0;
  --rr-color-theme-secondary: #fa6800;
  --rr-color-theme-green: #67B02E;
  --rr-color-theme-third: #885B3A;
  --rr-color-bg-1: #11151C;
  --rr-color-grey-1: #e8e8ff;
  --rr-color-grey-2: #E3E3E3;
  --rr-color-grey-3: #F3F0E8;
  --rr-color-border-1: #E8E8E8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.form-label {
  color: #000;
}

/**
	Typography CSS
*/
.text-center {
  text-align: center !important;
}

body {
  background-color: var(--rr-color-common-white);
  font-family: var(--rr-ff-body);
  font-size: 16px;
  line-height: 1.625;
  font-weight: normal;
  color: var(--rr-color-text-body);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--rr-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--rr-fs-h1);
}

h2 {
  font-size: var(--rr-fs-h2);
}

h3 {
  font-size: var(--rr-fs-h3);
}

h4 {
  font-size: var(--rr-fs-h4);
}

h5 {
  font-size: var(--rr-fs-h5);
}

h6 {
  font-size: var(--rr-fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--rr-ff-p);
  font-size: 16px;
  font-weight: var(--rr-fw-normal);
  color: var(--rr-color-text-body);
  margin-bottom: 15px;
  line-height: 28px;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--rr-color-theme-primary);
}

.slick-list.draggable {
  cursor: grab;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

ul {
  display: block;
  padding: 0;
  margin: 0;
}

*::-moz-selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--rr-color-common-black);
  font-size: var(--rr-fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--rr-color-common-black);
  font-size: var(--rr-fs-body);
  opacity: 1;
}

/**
    Common Classes CSS
*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.b-radius {
  border-radius: 6px;
}

.bg-grey {
  background-color: var(--rr-color-grey-1);
}

.bg-dark-1 {
  background-color: var(--rr-color-bg-1);
}

.container {
  max-width: 1465px;
}

.bd-bottom {
  border-bottom: 1px solid #edebf9;
}

.top-shape {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  width: 468px;
  height: 478px;
  position: absolute;
  top: -200px;
  left: -200px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .top-shape {
    top: -250px;
    left: -250px;
  }
}

@media only screen and (max-width: 992px) {
  .top-shape {
    display: none;
  }
}

.bottom-shape {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  width: 468px;
  height: 478px;
  position: absolute;
  bottom: -200px;
  right: -200px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .bottom-shape {
    bottom: -250px;
    right: -250px;
  }
}

@media only screen and (max-width: 992px) {
  .bottom-shape {
    display: none;
  }
}

.bg-color-top {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

.bg-color-bottom {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.product-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

@media (max-width: 1600px) {
  .product-overlay {
    visibility: visible;
    opacity: 0.5;
  }
}

.overflow-h {
  overflow: hidden;
}

svg {
  fill: currentColor;
}

.section-heading {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 40px;
  }
}

.section-heading .section-title {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  text-transform: inherit;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .section-heading .section-title {
    font-size: 40px;
    width: 100%;
  }

  .section-heading .section-title br {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 20px;
  }
}

@media(max-width:575px) {
  .section-title {
    font-size: 20px;
  }
}

@media(max-width:575px) {
  .section-heading {
    margin-bottom: 5px;
  }
}

.section-heading.white-content .sub-heading {
  color: var(--rr-color-theme-primary);
}

.section-heading.white-content p,
.section-heading.white-content .section-title {
  color: var(--rr-color-common-white);
}

.section-heading.heading-2 .section-title {
  font-size: 24px;
  line-height: 1;
  text-transform: capitalize;
}

@media(max-width:575px) {
  .section-heading.heading-2 .section-title {
    font-size: 20px;
  }
}

.section-heading p {
  margin-bottom: 0;
}

.heading-space {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 992px) {
  .heading-space {
    margin-bottom: 40px;
  }
}

.space-border {
  padding-bottom: 35px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--rr-color-border-1);
}

.t-up {
  text-transform: uppercase;
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
  color: var(--rr-color-common-white);
}

.bd-top {
  border-top: 1px solid var(--rr-color-border-1);
}

.bd-right {
  border-right: 1px solid var(--rr-color-border-1);
}

.bd-left {
  border-left: 1px solid var(--rr-color-border-1);
}

.bd-bottom {
  border-bottom: 1px solid var(--rr-color-border-1);
}

.anim-text {
  overflow: hidden;
}

.running-text {
  background-color: var(--rr-color-theme-primary);
  background-repeat: repeat;
  background-size: 20px;
  padding: 20px 0;
  overflow: hidden;
}

.running-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 60px;
}

.running-text ul li {
  display: inline-block;
  white-space: nowrap;
  font-size: 24px;
  color: var(--rr-color-common-white);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

.running-text ul li:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  content: "\f068";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

.running-text.running-1 {
  background-color: var(--rr-color-bg-1);
}

.running-text.testi {
  background-color: transparent;
  margin-bottom: 40px;
  padding: 0;
}

.running-text.testi ul {
  gap: 20px;
}

.running-text.testi ul li {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

@media only screen and (max-width: 992px) {
  .running-text.testi ul li {
    font-size: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .running-text.testi ul li {
    font-size: 40px;
  }
}

.running-text.testi ul li:before {
  display: none;
}

.running-text.testi ul li:nth-child(2) {
  color: var(--rr-color-theme-primary);
}

.running-text.running-3 {
  position: relative;
  z-index: 1;
  padding: 51px 0;
}

.running-text.running-3 .bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.running-text.running-3 .bg-img:before {
  background-color: var(--rr-color-theme-primary);
  mix-blend-mode: multiply;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.running-text.running-3 .inner-3 {
  gap: 220px;
}

@media only screen and (max-width: 992px) {
  .running-text.running-3 .inner-3 {
    gap: 180px;
  }
}

@media only screen and (max-width: 992px) {
  .running-text.running-3 .inner-3 {
    gap: 100px;
  }
}

.running-text.running-3 .inner-3 li {
  color: var(--rr-color-common-white);
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
}

@media only screen and (max-width: 992px) {
  .running-text.running-3 .inner-3 li {
    font-size: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .running-text.running-3 .inner-3 li {
    font-size: 40px;
  }
}

.running-text.running-3 .inner-3 li:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  content: "\e28b";
  font-size: 80px;
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 992px) {
  .running-text.running-3 .inner-3 li:before {
    font-size: 60px;
    right: -80px;
  }
}

@media only screen and (max-width: 767px) {
  .running-text.running-3 .inner-3 li:before {
    font-size: 30px;
    right: -65px;
  }
}

.running-text.running-3 .inner-3 .stroke-text {
  color: var(--rr-color-common-white);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--rr-color-common-white);
}

.running-text .inner-4 {
  gap: 120px;
}

.running-text .inner-4 li:before {
  content: "\f005";
  right: auto;
  left: -40px;
  font-size: 21px;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated=true] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-animated=true] .scroller__inner.inner-2 {
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, reverse) linear infinite;
}

.scroller[data-direction=right] {
  --_animation-direction: reverse;
}

.scroller[data-direction=left] {
  --_animation-direction: forwards;
}

.scroller[data-speed=fast] {
  --_animation-duration: 30s;
}

.scroller[data-speed=slow] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/*  Custom Cursor */
@media (min-width: 992px) {
  .mt-cursor {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    left: 10px;
    top: 10px;
    user-select: none;
    pointer-events: none;
    visibility: hidden;
    z-index: 10000;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .mt-cursor:before {
    background: var(--rr-color-theme-primary);
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
  }

  .mt-cursor.cursor-grow:before {
    opacity: 0.7;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }

  .mt-cursor.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.4s;
  }

  .mt-cursor.hide .inner {
    transform: scale(0.1);
    transition: transform 0.3s ease;
  }
}

.sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

@media only screen and (max-width: 767px) {
  br {
    display: none;
  }
}

/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.pt-180 {
  padding-top: 180px;
}

@media only screen and (max-width: 992px) {
  .pt-180 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-180 {
    padding-top: 50px;
  }
}

.pt-130 {
  padding-top: 130px;
}

@media only screen and (max-width: 992px) {
  .pt-130 {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-130 {
    padding-top: 60px;
  }
}

.pt-120 {
  padding-top: 120px;
}

@media only screen and (max-width: 992px) {
  .pt-120 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-120 {
    padding-top: 60px;
  }
}

.pt-100 {
  padding-top: 100px;
}

@media only screen and (max-width: 992px) {
  .pt-100 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-100 {
    padding-top: 60px;
  }
}

.pt-90 {
  padding-top: 90px;
}

@media only screen and (max-width: 992px) {
  .pt-90 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-90 {
    padding-top: 60px;
  }
}

.pt-80 {
  padding-top: 80px;
}

@media only screen and (max-width: 992px) {
  .pt-80 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-80 {
    padding-top: 60px;
  }
}

.pt-70 {
  padding-top: 70px;
}

@media only screen and (max-width: 992px) {
  .pt-70 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pt-70 {
    padding-top: 60px;
  }
}

.pb-180 {
  padding-bottom: 180px;
}

@media only screen and (max-width: 992px) {
  .pb-180 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-180 {
    padding-bottom: 60px;
  }
}

.pb-130 {
  padding-bottom: 130px;
}

@media only screen and (max-width: 992px) {
  .pb-130 {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-130 {
    padding-bottom: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}

@media only screen and (max-width: 992px) {
  .pb-120 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 992px) {
  .pb-100 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-100 {
    padding-bottom: 60px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}

@media only screen and (max-width: 992px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-90 {
    padding-bottom: 60px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}

@media only screen and (max-width: 992px) {
  .pb-80 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}

@media only screen and (max-width: 992px) {
  .pb-70 {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-70 {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-30 {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-40 {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-50 {
    padding-bottom: 50px;
  }
}

/* Scroll To Top */
#scroll-percentage {
  position: absolute;
}

#scroll-percentage {
  height: 60px;
  width: 60px;
  background-color: var(--rr-color-common-white);
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 50px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100;
}

@media only screen and (max-width: 992px) {
  #scroll-percentage {
    right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  #scroll-percentage {
    bottom: 20px;
    right: 20px;
  }
}

#scroll-percentage.active {
  bottom: 50px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 992px) {
  #scroll-percentage.active {
    bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  #scroll-percentage.active {
    bottom: 20px;
  }
}

#scroll-percentage-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
}

#scroll-percentage-value i {
  font-size: 20px;
}

@-webkit-keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }

  33.3% {
    transform: translateY(-6px);
  }

  49.95% {
    transform: translateY(4px);
  }

  66.6% {
    transform: translateY(-2px);
  }

  83.25% {
    transform: translateY(1px);
  }

  100% {
    transform: translateY(0);
  }
}

.error-content .title {
  font-size: 48px;
  margin: 30px 0;
}

@media only screen and (max-width: 767px) {
  .error-content .title {
    font-size: 30px;
  }
}

.error-content p {
  max-width: 510px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}

/* img {
  height: 100%;
} */

.ripple,
.ripple:before,
.ripple:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  transform: translateX(-50%) translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  -moz-animation: rippleOne 3s infinite;
  -ms-animation: rippleOne 3s infinite;
  -o-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple {
  z-index: -1;
}

.ripple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

/** Buttons CSS */
.rr-wishlist-btn {
  background-color: var(--rr-color-theme-secondary);
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 19px 200px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}

@media(max-width: 575px) {
  .rr-wishlist-btn {
    padding: 19px 80px;
  }
}

.rr-addtocart-btn {
  background-color: #ff9f00;
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 19px 90px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}

@media(max-width:575px) {
  .rr-addtocart-btn {
    font-size: 14px;
  }
}

.rr-buynow-btn {
  background-color: var(--rr-color-theme-secondary);
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 19px 98px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}

.rr-secondary-btn {
  background-color: var(--rr-color-theme-secondary);
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 17px 30px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}

.rr-secondary-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.rr-primary-btn {
  background-color: var(--rr-color-theme-primary);
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 17px 30px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}

.rr-primary-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.rr-primary-btn i {
  margin-left: 10px;
  font-size: 14px;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.rr-primary-btn:hover {
  color: var(--rr-color-common-white);
}

.rr-primary-btn:hover:before {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}

.rr-primary-btn:hover i {
  transform: rotate(0deg);
}

.rr-primary-btn:focus {
  color: var(--rr-color-common-white);
}

.rr-primary-btn.transparent {
  background-color: transparent;
  border: 1px solid var(--rr-color-theme-primary);
  color: var(--rr-color-heading-primary);
}

.rr-primary-btn.transparent:hover {
  color: var(--rr-color-common-white);
}

.rr-primary-btn.transparent:before {
  background-color: var(--rr-color-theme-primary);
}

.rr-primary-btn.primary-2 {
  background-color: transparent;
  color: var(--rr-color-heading-primary);
  border: 1px solid var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.rr-primary-btn.primary-2:before {
  background-color: var(--rr-color-heading-primary);
}

.rr-primary-btn.primary-2:hover {
  color: var(--rr-color-common-white);
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  margin-bottom: -27.5px;
}

@media only screen and (max-width: 992px) {
  .header {
    position: relative;
    top: 0;
    height: auto !important;
    margin-bottom: 0;
  }
}

.header .top-bar {
  background-color: var(--rr-color-theme-primary);
  overflow-x: clip;
}

.header .top-bar .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 1px 0;
}

@media only screen and (max-width: 767px) {
  .header .top-bar .top-bar-inner {
    justify-content: center;
    padding: 6px;
  }
}

@media only screen and (max-width: 992px) {
  .header .top-bar .top-bar-inner .top-bar-left {
    display: none;
  }
}

.header .top-bar .top-bar-inner .top-bar-left .top-left-list li {
  display: inline-flex;
}

.header .top-bar .top-bar-inner .top-bar-left .top-left-list li:not(:last-of-type) {
  margin-right: 30px;
}

.header .top-bar .top-bar-inner .top-bar-left .top-left-list li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--rr-color-common-white);
}

/* @media only screen and (max-width: 767px) {
  .header .top-bar .top-bar-inner .top-bar-middle {
    display: none;
  }
} */
@media only screen and (max-width: 767px) {
  .header .top-bar .top-bar-inner .top-bar-right {
    display: none;
  }
}

.header .top-bar .top-bar-inner .top-bar-middle span {
  color: var(--rr-color-common-white);
}

.header .top-bar .top-bar-inner .top-bar-right .top-right-list li {
  display: inline-flex;
}

.header .top-bar .top-bar-inner .top-bar-right .top-right-list li:not(:last-of-type) {
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .header .top-bar .top-bar-inner .top-bar-right .top-right-list li:not(:last-of-type) {
    margin-right: 15px;
  }
}

.header .top-bar .top-bar-inner .top-bar-right .top-right-list li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--rr-color-common-white);
}

.header .top-bar .top-bar-inner .top-bar-right .top-right-list li .select-control {
  background-color: transparent;
  color: var(--rr-color-common-white);
  border: none;
  padding: 0;
  padding-right: 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--rr-color-common-white);
}

.header .top-bar .top-bar-inner .top-bar-right .top-right-list li .select-control:after {
  border-color: var(--rr-color-common-white);
  border-width: 1px;
  height: 7px;
  width: 7px;
  right: 0;
  margin-top: -5px;
  opacity: 1;
}

.header .top-bar .top-bar-inner .top-bar-right .top-right-list li .select-control .list li {
  display: block;
  color: var(--rr-color-heading-primary);
}

.header .top-bar .top-bar-inner .top-bar-right .top-right-list li .select-control.select-2 .list {
  left: auto;
  right: 0;
}

@media only screen and (max-width: 767px) {
  .header .header-middle {
    display: none;
  }
}

.header .header-middle .header-middle-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 20px;
  padding: 20px;
}

.header .header-middle .header-middle-left {
  display: flex;
  align-items: center;
  column-gap: 60px;
  flex-wrap: wrap;
  row-gap: 20px;
}

@media (max-width: 1199px) {
  .header .header-middle .header-middle-left {
    width: 100%;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 992px) {
  .header .header-middle .header-middle-left {
    justify-content: center;
  }
}

.header .header-middle .header-middle-left .header-logo img {
  max-width: 50px;
}

@media (max-width: 1399px) {
  .header .header-middle .header-middle-left .header-logo img {
    max-width: 60px;
  }
}

@media (max-width: 1199px) {
  .header .header-middle .header-middle-left .header-logo img {
    max-width: 60px;
  }
}

@media only screen and (max-width: 992px) {
  .header .header-middle .header-middle-left .header-logo {
    display: none;
  }
}

.header .header-middle .header-middle-left .category-form-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--rr-color-border-1);
  width: 650px;
  padding: 10px 0;
}

@media (max-width: 1399px) {
  .header .header-middle .header-middle-left .category-form-wrap {
    width: 450px;
  }
}

@media only screen and (max-width: 767px) {
  .header .header-middle .header-middle-left .category-form-wrap {
    display: none;
  }
}

.header .header-middle .header-middle-left .category-form-wrap .select-control {
  height: inherit;
  line-height: inherit;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--rr-color-heading-primary);
  margin-right: 20px;
  padding-right: 30px;
  border-right: 1px solid var(--rr-color-border-1);
  border-radius: 0;
}

.header .header-middle .header-middle-left .category-form-wrap .select-control:after {
  height: 7px;
  width: 7px;
  border-color: var(--rr-color-heading-primary);
  right: 15px;
}

.header .header-middle .header-middle-left .category-form-wrap .select-control .list {
  margin-top: 12px;
}

.header .header-middle .header-middle-left .category-form-wrap .header-form {
  position: relative;
  width: 100%;
}

.header .header-middle .header-middle-left .category-form-wrap .header-form .form-control {
  padding-top: 0;
  padding-bottom: 0;
  border: none;
  box-shadow: none;
  padding-left: 0;
  padding-right: 150px;
}

.header .header-middle .header-middle-left .category-form-wrap .header-form .submit {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  padding: 10px 15px 9px 15px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.header .header-middle .header-middle-right {
  margin-left: auto;
}

@media (max-width: 1199px) {
  .header .header-middle .header-middle-right {
    display: none;
  }
}

.header .header-middle .header-middle-right .contact-item-list {
  list-style: none;
  display: flex;
  align-items: center;
}

.header .header-middle .header-middle-right .contact-item-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.header .header-middle .header-middle-right .contact-item-list li:not(:last-of-type) {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--rr-color-border-1);
}

.header .header-middle .header-middle-right .contact-item-list li .content span {
  font-size: 14px;
  font-weight: 400;
  color: var(--rr-color-text-body);
  display: block;
}

.header .header-middle .header-middle-right .contact-item-list li .content .number {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 0;
}

.header .header-middle .header-middle-right .contact-item-list li .icon {
  background-color: var(--rr-color-grey-1);
  height: 45px;
  width: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rr-color-heading-primary);
  position: relative;
}

.header .header-middle .header-middle-right .contact-item-list li .icon:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

.header .header-middle .header-middle-right .contact-item-list li .icon span {
  background-color: var(--rr-color-theme-primary);
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 10px;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rr-color-common-white);
  display: block;
}

.header .header-middle .header-middle-right .contact-item-list li:nth-child(1) .content {
  text-align: right;
}

.header .primary-header-inner {
  background-color: #0dcaf0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 4px 30px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner {
    background-color: var(--rr-color-common-white);
    padding: 0;
    border-top: 1px solid var(--rr-color-border-1);
    padding: 15px 0;
    border-radius: 0;
  }
  .header .primary-header-inner{
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .header .primary-header-inner {
    padding: 10px 0;
    border: none;
  }
  .header .primary-header-inner{
    display: block;
  }
}

.header .primary-header-inner:before {
  background-color: #ffc107;
  content: "";
  width: 15%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  border-radius: 0 6px 6px 0;
}

@media (max-width: 1399px) {
  .header .primary-header-inner:before {
    width: 18%;
  }
}

@media (max-width: 1199px) {
  .header .primary-header-inner:before {
    width: 30%;
  }
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner:before {
    display: none;
  }
}

.header .primary-header-inner .header-logo.mobile-logo {
  display: none;
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-logo.mobile-logo {
    display: block;
  }
}

.header .primary-header-inner .header-logo img {
  max-width: 170px;
}

@media (max-width: 1399px) {
  .header .primary-header-inner .header-logo img {
    max-width: 150px;
  }
}

@media (max-width: 1199px) {
  .header .primary-header-inner .header-logo img {
    max-width: 60px;
  }
}

.header .primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
}

.header .primary-header-inner .header-menu-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-menu-wrap ul {
    display: none;
  }
}

.header .primary-header-inner .header-menu-wrap ul li {
  display: inline-block;
  position: relative;
  margin: 0 20px;
}

@media (max-width: 1399px) {
  .header .primary-header-inner .header-menu-wrap ul li {
    margin: 0 15px;
  }
}

@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap ul li {
    margin: 0 10px;
  }
}

.header .primary-header-inner .header-menu-wrap ul li:nth-child(1) {
  margin-left: 0;
}

.header .primary-header-inner .header-menu-wrap ul li a {
  color: var(--rr-color-common-white);
  display: block;
  font-size: 13px;
  padding: 7px 0;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap ul li a {
    font-size: 16px;
  }
}

.header .primary-header-inner .header-menu-wrap ul li a:hover {
  color: white;
}

.header .primary-header-inner .header-menu-wrap ul li a i {
  font-size: 13px;
}

.header .primary-header-inner .header-menu-wrap ul li ul {
  background-color: var(--rr-color-common-white);
  display: block;
  width: 220px;
  padding: 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: -30px;
  top: 55px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: all 0.6s ease;
  border-radius: 6px;
  overflow: hidden;
}

.header .primary-header-inner .header-menu-wrap ul li:hover>ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}

.header .primary-header-inner .header-menu-wrap ul li li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.header .primary-header-inner .header-menu-wrap ul li li:not(:last-of-type) {
  border-bottom: 1px solid var(--rr-color-border-1);
}

.header .primary-header-inner .header-menu-wrap ul li li:last-child {
  margin: 0;
  border-bottom: none;
}

.header .primary-header-inner .header-menu-wrap ul li li a {
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--rr-color-heading-primary);
  font-weight: 400;
  font-size: 13px;
  padding: 15px 0;
  padding-left: 30px;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  position: relative;
}

.header .primary-header-inner .header-menu-wrap ul li li a:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .primary-header-inner .header-menu-wrap ul li li a:hover {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
}

.header .primary-header-inner .header-menu-wrap ul li li a:hover:before {
  width: 100%;
}

.header .primary-header-inner .header-menu-wrap ul li li ul {
  top: 0;
  left: 100%;
}

.header .primary-header-inner .header-menu-wrap ul li li ul li a {
  color: var(--rr-color-common-white);
}

.header .primary-header-inner .header-menu-wrap ul li li:hover li a {
  color: var(--rr-color-heading-primary);
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children {
  position: relative;
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li {
  margin: 0;
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li a {
  padding-right: 0;
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-weight: 700;
  content: "\f078";
  color: var(--rr-color-common-white);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: none;
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:hover:after {
  color: var(--rr-color-theme-primary);
}

.header .primary-header-inner .header-right-wrap {
  display: flex;
  align-items: center;
  column-gap: 120px;
  flex-wrap: wrap;
  row-gap: 20px;
}

@media (max-width: 1399px) {
  .header .primary-header-inner .header-right-wrap {
    column-gap: 50px;
  }
}

@media (max-width: 1199px) {
  .header .primary-header-inner .header-right-wrap {
    column-gap: 20px;
  }
}

.header .primary-header-inner .header-right-wrap .header-right {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-logo img {
    width: 90px;
  }
}

.header .primary-header-inner .header-right-wrap .header-right span {
  color: var(--rr-color-common-white);
  font-size: 13px;
  font-weight: 500;
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-right span {
    display: none;
  }
}

.header .primary-header-inner .header-right-wrap .header-right span span {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin-left: 10px;
}

.header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--rr-color-heading-primary);
  font-size: 30px;
  opacity: 0.9;
}

@media (min-width: 993px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
    display: none;
  }
}

.header .primary-header-inner .header-right-wrap .header-right .header-right-item .search-icon {
  font-size: 16px;
  margin-left: 55px;
  cursor: pointer;
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-right-wrap .header-right .header-right-item .search-icon {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .mean-push {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}

.side-menu-icon {
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 100;
  display: block;
  cursor: pointer;
}

@media only screen and (max-width: 992px) {
  .side-menu-icon {
    display: none;
  }
}

.side-menu-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 850px;
  -webkit-transform: translateX(850px);
  -ms-transform: translateX(850px);
  transform: translateX(850px);
  height: 100%;
  display: block;
  background-color: var(--rr-color-theme-bg-dark-deep);
  z-index: 100;
  padding: 40px;
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}

.side-menu-wrapper .side-menu-close {
  background-color: var(--rr-color-theme-primary);
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}

.side-menu-wrapper.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@media only screen and (max-width: 992px) {
  .side-menu-wrapper {
    display: none;
  }
}

.side-menu-content .side-menu-header {
  font-family: var(--rr-ff-body);
  font-size: 30px;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
}

.side-menu-content .side-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box img {
  max-width: 150px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
  font-family: var(--rr-ff-body);
  font-size: 32px;
  font-weight: 500;
  color: var(--rr-color-theme-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
  max-width: 400px;
  width: 100%;
}

.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
  margin-bottom: 0;
}

.side-menu-content .side-menu-item .side-menu-arrow {
  font-size: 45px;
  color: var(--rr-color-theme-primary);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.side-menu-content .side-menu-item:hover {
  border: 1px solid var(--rr-color-border-6);
}

.side-menu-content .side-menu-item:hover .side-menu-arrow {
  transform: rotate(0deg);
}

.side-menu-content .side-menu-item:last-child {
  margin-bottom: 0;
}

.side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
  cursor: url(../img/cancel.png), auto;
}

@media only screen and (max-width: 992px) {
  .side-menu-overlay {
    display: none;
  }
}

.primary-header {
  width: 100%;
}

.primary-header.fixed {
  background-color: #0dcaf0;
  position: fixed;
  left: 0;
  top: 0;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
  z-index: 99;
}

@media only screen and (max-width: 992px) {
  .primary-header.fixed {
    background-color: var(--rr-color-common-white);
  }
}

.primary-header.fixed .primary-header-inner {
  padding: 10px 0;
  padding-right: 25px;
}

@media (max-width: 1199px) {
  .primary-header.fixed .primary-header-inner {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .primary-header.fixed .primary-header-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.primary-header.fixed .primary-header-inner .header-menu-wrap ul li ul {
  top: 65px;
}

@-webkit-keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu {
    background-color: var(--rr-color-common-white);
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 80%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    height: 100%;
    display: block;
    z-index: 100;
    padding: 40px 40px 40px 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
  }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu {
    padding: 10px 20px;
    width: 100%;
    max-width: 320px;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .mobile-side-menu .side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #3f7fb5;
    padding: 20px;
  }

  .mobile-side-menu .side-menu-head a img {
    max-width: 40px;
  }

  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 35px;
    right: 40px;
    color: var(--rr-color-heading-primary);
    font-size: 17px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rr-color-border-1);
  }
}

@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    top: 28px;
  }
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
  }

  @media(max-width:575px) {
    .mobile-side-menu .side-menu-wrap img {
      display: none;
    }
  }

  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 50px;
  }

  .mobile-side-menu p {
    color: var(--rr-color-common-white);
    margin-bottom: 50px;
  }

  .mobile-side-menu .list-header {
    color: var(--rr-color-common-white);
    font-family: var(--rr-ff-body);
    font-weight: 400;
    margin-bottom: 30px;
  }

  .mobile-side-menu .side-menu-list {
    list-style: none;
  }

  .mobile-side-menu .side-menu-list li {
    font-family: var(--rr-ff-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--rr-color-heading-primary);
  }

  .mobile-side-menu .side-menu-list li span,
  .mobile-side-menu .side-menu-list li a {
    color: var(--rr-color-heading-primary);
    margin-left: 10px;
    font-size: 14px;
  }

  .mobile-side-menu .side-menu-list li i {
    margin-right: 10px;
  }

  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }

  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.png), auto;
  }
}

.mean-bar {
  background-color: transparent;
  min-height: auto;
  padding: 0;
}

.mean-bar .meanmenu-reveal {
  display: none !important;
}

.mean-bar .mean-nav {
  background-color: transparent;
  margin-top: 0;
  /* padding-top: 20px; */
}

.mean-bar .mean-nav.mean-nav>ul {
  display: block !important;
}

.mean-bar .mean-nav.mean-nav>ul li {
  position: relative;
  float: none;
  display: block;
  width: auto;
}

.mean-bar .mean-nav.mean-nav>ul li:not(:last-of-type) {
  margin-bottom: 9px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rr-color-border-1);
}

.mean-bar .mean-nav.mean-nav>ul li a {
  color: #0dcaf0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  border-top: none;
  padding: 0;
  float: none;
}

@media only screen and (max-width: 767px) {
  .mean-bar .mean-nav.mean-nav>ul li a {
    font-size: 16px;
  }
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  position: absolute;
  padding: 0;
  top: 3px;
  right: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand:before,
.mean-bar .mean-nav.mean-nav>ul li a.mean-expand:after {
  font-size: 12px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand:before {
  content: "+";
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked {
  background-color: var(--rr-color-heading-primary);
  color: var(--rr-color-common-white);
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked:after {
  content: "\f068";
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand.mean-clicked:before {
  display: none;
}

.mean-bar .mean-nav.mean-nav>ul li a.mean-expand i {
  display: none;
}

.mean-bar .mean-nav.mean-nav>ul li ul {
  padding: 0 0 0 30px;
  margin-top: 20px;
}

/* .mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
  padding-bottom: 15px;
  margin-bottom: 15px;
} */
.mean-bar .mean-nav.mean-nav>ul li ul li a {
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
  .mean-bar .mean-nav.mean-nav>ul li ul li a {
    font-size: 14px;
  }
}

#popup-search-box {
  background-color: var(--rr-color-common-white);
  position: fixed;
  width: 100%;
  height: 20%;
  top: -100%;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

#popup-search-box .box-inner-wrap form {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 15px;
}

#popup-search-box .box-inner-wrap form input {
  width: 100%;
  padding: 20px 15px;
  padding-right: 80px;
  background: transparent;
  border: none;
  color: #ddd;
  border: 1px solid var(--rr-color-border-1);
  color: #666;
  font-size: 16px;
}

#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
  color: #666;
  font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:-moz-placeholder {
  color: #666;
  font-size: 16px;
}

#popup-search-box .box-inner-wrap form input::-moz-placeholder {
  color: #666;
  font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
  color: #666;
  font-size: 16px;
}

#popup-search-box .box-inner-wrap form input:focus {
  outline: none;
}

#popup-search-box .box-inner-wrap:hover {
  cursor: url(../img/cross.html), auto;
}

#popup-search-box .box-inner-wrap .search-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: var(--rr-color-heading-primary);
  border: 1px solid var(--rr-color-border-1);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  #popup-search-box .box-inner-wrap .search-close {
    height: 35px;
    width: 35px;
    top: 10px;
    right: 10px;
  }
}

#popup-search-box .box-inner-wrap .search-close:hover {
  background-color: var(--rr-color-theme-primary);
  border: 1px solid var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

#popup-search-box.toggled {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.popup-tags {
  position: relative;
  margin: 0 auto;
}

/**----------------------------------------
    START: Category CSS
----------------------------------------*/
.discount-item {
  background-color: #e5f2ff;
  /* background: url(../img/bg-img/fashion.jpg) no-repeat;
  background-position: center center;
  background-size: cover; */
  padding: 35px 22px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .discount-item {
    padding: 50px 20px;
  }
}

.discount-item .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 992px) {
  .discount-item .shape {
    height: 100%;
  }
}

.discount-item .men {
  position: absolute;
  bottom: 0;
  right: 2%;
  z-index: -1;
}

.discount-item .men img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 992px) {
  .discount-item .men {
    height: 100%;
  }
}

.discount-item .content {
  position: relative;
  z-index: 1;
}

.discount-item .content span {
  font-size: 16px;
  color: var(--rr-color-theme-primary);
  margin-bottom: 20px;
  display: block;
}

.discount-item .content .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .discount-item .content .title {
    font-size: 20px;
  }

  .discount-item .content .title br {
    display: none;
  }
}

.discount-item .content a {
  display: inline-flex;
  align-items: center;
  column-gap: 15px;
  font-size: 16px;
  font-weight: 500;
  color: var(--rr-color-heading-primary);
}

.discount-item .content a:hover {
  color: var(--rr-color-theme-primary);
}

.discount-item .content a i {
  background-color: rgba(229, 62, 62, 0.15);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--rr-color-theme-primary);
  border-radius: 50%;
}

.discount-item.item-1 .men {
  right: 13%;
}

.discount-item:hover .men img {
  transform: scale(1.03);
}

.food-discount {
  background-color: #EDDECE;
}

.food-discount .men {
  top: 0;
  right: 0;
}

.food-discount .men img {
  width: 100%;
  height: 200px;
}

.food-discount.food-discount-2 {
  background-color: #EFEEE8;
}

.food-discount .content span {
  background-color: #ffc107;
  color: var(--rr-color-common-white);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  padding: 0 10px;
  padding-right: 0;
  position: relative;
  z-index: 1;
  overflow-y: clip;
  border-radius: 4px;
}

.food-discount .content span:before {
  background-color: #ffc107;
  content: "";
  width: 25px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -10px;
  transform: rotate(45deg);
  z-index: -1;
  border-radius: 4px;
}

.food-discount .content .title {
  font-size: 30px;
  margin-bottom: 15px;
}

.food-discount .content p {
  margin-bottom: 20px;
}

.food-discount .content a i {
  background-color: rgba(103, 176, 46, 0.15);
}

.discount-cta-wrap {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  padding-left: 15px;
  padding-right: 15px;
}

.discount-cta-wrap span {
  font-size: 20px;
  color: var(--rr-color-heading-primary);
  font-weight: 500;
}

/* !END: Category CSS */
/**----------------------------------------
    START: Food CSS
----------------------------------------*/
.food-wrap {
  background-color: var(--rr-color-grey-1);
  padding: 40px;
  margin: 0;

}

@media only screen and (max-width: 767px) {
  .food-wrap {
    padding: 2px;
  }
}

.food-item {
  background-color: var(--rr-color-common-white);
  padding: 20px;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.food-item .food-img {
  height: 90px;
  max-width: 110px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.food-item .food-img img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  object-fit: inherit;
}

.food-item .title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

.food-item .title span {
  color: var(--rr-color-theme-green);
  font-size: 12px;
  font-weight: 500;
  display: block;
  margin-top: 7px;
}

.food-item:hover .food-img img {
  transform: scale(1.05);
}

/* !END: Food CSS */
/**----------------------------------------
    START: Product CSS
----------------------------------------*/
.product-button {
  margin-top: 15px;
}

.product-top-content .project-filter li {
  display: inline-flex;
  font-size: 14px;
  font-weight: 400;
  color: var(--rr-color-heading-primary);
  cursor: pointer;
}

.product-top-content .project-filter li:not(:last-of-type) {
  margin-right: 15px;
}

.product-top-content .project-filter li.active {
  color: var(--rr-color-theme-green);
}

.product-item-wrap {
  background: linear-gradient(180deg, rgba(246, 246, 247, 0) 0%, rgba(220, 38, 38, 0.05) 100%), #F6F6F7;
  border: 2px solid #0563bb;
  border-radius: 6px;
  padding: 35px 40px;
}

@media only screen and (max-width: 767px) {
  .product-item-wrap {
    padding: 30px 10px;
  }
}

.product-item-wrap .section-heading {
  margin-bottom: 20px;
}

.product-item-wrap .section-heading .section-title {
  text-transform: capitalize;
  font-size: 24px;
  line-height: 1;
}

.product-item-wrap .item-wrap .food-discount {
  background-color: #EC0106;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
}

.product-item-wrap .item-wrap .food-discount:nth-child(1) {
  margin-bottom: 24px;
}

.product-item-wrap .item-wrap .food-discount:nth-child(1) .title {
  color: var(--rr-color-common-white);
}

.product-item-wrap .item-wrap .food-discount:nth-child(1) p {
  color: var(--rr-color-common-white);
}

.product-item-wrap .item-wrap .food-discount .content span {
  background-color: var(--rr-color-common-white);
  color: #EC0106;
}

.product-item-wrap .item-wrap .food-discount .content span:before {
  background-color: var(--rr-color-common-white);
}

.product-item-wrap .item-wrap .food-discount .content .title {
  font-size: 20px;
  font-weight: 600;
}

.product-item-wrap .item-wrap .food-discount .content p {
  margin-bottom: 0;
}

.product-item-wrap .item-wrap .food-discount:nth-child(2) {
  background-color: #E4D7C7;
}

.product-item {
  background-color: var(--rr-color-common-white);
  border-radius: 10px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  height: 100%;
  position: relative;
}

.product-item .product-thumb {
  max-width: 120px;
  height: 120px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 15px 0 15px;
  overflow: hidden;
}

.product-item .product-thumb img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  object-fit: contain;
}

.product-item .product-list {
  background-color: var(--rr-color-grey-1);
  position: absolute;
  top: 20px;
  right: 10px;
  padding: 15px 8px 15px 10px;
  list-style: none;
  border-radius: 100px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-item .product-list li a {
  background-color: transparent;
  height: 25px;
  width: 25px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.product-item .product-list li a i {
  margin-top: 1px;
}

.product-item .product-list li a:hover {
  background-color: #0d6efd;
  color: var(--rr-color-common-white);
}

.product-item .product-list li:not(:last-of-type) {
  margin-bottom: 5px;
}

.product-item .product-bottom {
  padding: 15px;
}

.product-item .product-bottom .stock {
  font-size: 14px;
  color: var(--rr-color-common-dark);
  font-weight: 500;
}

.product-item .product-bottom .line {
  background-color: rgba(26, 26, 26, 0.08);
  width: 100%;
  height: 5px;
  border-radius: 100px;
  margin: 10px 0;
  position: relative;
}

.product-item .product-bottom .line:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100px;
}

.product-item .product-bottom .number {
  font-size: 14px;
  font-weight: 500;
}

.product-item .product-bottom .number span {
  color: var(--rr-color-common-dark);
  font-weight: 500;
}

.product-item:hover .product-thumb img {
  transform: scale(1.04);
}

.product-item:hover .product-list {
  right: 15px;
  visibility: visible;
  opacity: 1;
}

.grocery-img {
  height: 60px;
  width: 100%;
}

@media(max-width:575px) {
  .grocery-img {
    height: 100px;
  }
}

.product-content {
  padding: 20px 15px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.product-content .category {
  background: #4eade51a;
  color: #0d6efd;
  ;
  font-size: 10px;
  font-weight: 500;
  border-radius: 4px;
  padding: 4px 15px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.product-content .title {
  color: var(--rr-color-common-dark);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0px;
}

@media (max-width: 1199px) {
  .product-content .title {
    max-width: 220px;
    width: 100%;
  }
}

.product-content .quantity {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1;
  color: var(--rr-color-text-body);
  display: inline-block;
  margin-bottom: 15px;
}

.product-content .price {
  color: var(--rr-color-theme-primary);
  display: block;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.product-content .price .offer {
  font-size: 14px;
  margin-top: 0;
  margin-left: 10px;
  text-decoration: line-through;
  color: var(--rr-color-text-body);
}

.product-item-2 {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.product-item-2 .product-thumb {
  margin-top: 20px;
}

.product-item-2 .product-bottom {
  padding: 0;
}

.product-item-2 .product-bottom a {
  display: block;
  background-color: #0d6efd;
  color: var(--rr-color-common-white);
  padding: 10px 15px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.product-item-2 .time {
  position: absolute;
  top: 15px;
  left: 15px;
}

.product-item-2 .time span {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
}

.product-item-3 {
  display: grid;
  grid-template-columns: 230px 1fr;
  height: auto;
  margin-bottom: 24px;
}

@media (max-width: 1199px) {
  .product-item-3 {
    grid-template-columns: 160px 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .product-item-3 {
    padding: 20px;
    grid-template-columns: 1fr;
  }
}

.product-item-3 .product-left {
  display: flex;
  align-items: center;
  padding-right: 10px;
}

.product-item-3 .product-left .product-thumb {
  padding: 0;
  margin-top: 0;
}

@media (max-width: 1199px) {
  .product-item-3 .product-left .product-thumb img {
    width: 80%;
  }
}

.product-item-3 .product-right {
  margin-left: 10px;
  border-left: 1px solid var(--rr-color-border-1);
}

@media only screen and (max-width: 767px) {
  .product-item-3 .product-right {
    margin-left: 0;
    border: none;
  }
}

@media only screen and (max-width: 767px) {
  .product-item-3 .product-right .product-content {
    padding-left: 0;
  }
}

.product-item-3 .product-right .product-bottom a {
  background-color: transparent;
  color: var(--rr-color-heading-primary);
  text-transform: uppercase;
  color: var(--rr-color-theme-green);
}

.rr-product-countdown-inner ul li {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 10px;
}

.rr-product-countdown-inner ul li:not(:last-of-type) {
  margin-bottom: 10px;
}

.product-item.large-item .product-thumb {
  height: 325px;
  max-width: 300px;
}

.product-item.large-item .product-content p {
  margin-top: 20px;
}

.product-item.large-item:hover .product-list {
  right: 40px;
}

/* !END: Product CSS */
/**----------------------------------------
    START: Product Tab CSS
----------------------------------------*/
.product-tab-wrap {
  background-color: var(--rr-color-grey-1);
  padding: 40px;
  box-shadow: 1px 0px 5px 0px rgba(130, 130, 130, 1);

}

@media only screen and (max-width: 767px) {
  .product-tab-wrap {
    padding: 30px 20px;
  }
}

@media only screen and (max-width: 992px) {
  .tab-top {
    margin-top: 20px;
  }
}

/* .nav-item {
  padding: 0px 17px 0px;
} */

.tab-top .nav-tabs {
  border: none;
  row-gap: 10px;
}

.tab-top .nav-tabs .nav-item:not(:last-of-type) {
  margin-right: 10px;
}

.tab-top .nav-tabs .nav-item .nav-link {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  padding: 5px 15px;
}

.tab-top .nav-tabs .nav-item .nav-link.active {
  background-color: #0d6efd;
  color: var(--rr-color-common-white);
}

.discount-item-wrap {
  height: 100%;
}

@media (max-width: 1199px) {
  .discount-item-wrap {
    height: 435px;
  }
}

.discount-item-wrap .discount-item {
  position: relative;
  padding: 0;
  height: 100%;
  z-index: 1;
}

.discount-item-wrap .discount-item .content {
  padding: 70px 60px;
  padding-top: 40px;
  padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .discount-item-wrap .discount-item .content {
    padding: 30px 20px;
  }
}

.discount-item-wrap .discount-item .content span {
  background-color: var(--rr-color-common-white);
  color: #0d6efd;
}

.discount-item-wrap .discount-item .content span:before {
  background-color: var(--rr-color-common-white);
}

.discount-item-wrap .discount-item .content .title {
  font-size: 24px;
  font-weight: 700;
}

.discount-item-wrap .discount-item .content .title span {
  background-color: transparent;
  color: var(--rr-color-heading-primary);
  font-size: 24px;
  font-weight: 300;
  padding: 0;
  margin-bottom: 0;
}

.discount-item-wrap .discount-item .content .title span:before {
  display: none;
}

.discount-item-wrap .discount-item .content a {
  font-weight: 600;
}

.discount-item-wrap .discount-item .content a i {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--rr-color-heading-primary);
}

.discount-item-wrap .discount-item .discount-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

/* !END: Product Tab CSS */

/**----------------------------------------
    START: Recently viewed
----------------------------------------*/
.furniture-shop .section-heading {
  margin-bottom: 20px;
}

.furniture-shop .section-heading .section-title {
  margin-bottom: 0;
}

.furniture-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  list-style: none;
  margin-bottom: 40px;
  flex-wrap: wrap;
  row-gap: 20px;
}

.furniture-filter li {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.furniture-filter li.active {
  color: var(--rr-color-theme-third);
}

.ft-shop-item {
  background-color: var(--rr-color-common-white);
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  height: 300px;
}

@media(max-width:575px) {
  .ft-shop-item {
    height: 250px;
  }
}

.ft-shop-item .new {
  background-color: var(--rr-color-theme-third);
  color: var(--rr-color-common-white);
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  border-radius: 50%;
}

.ft-shop-item .furniture-img {
  padding: 20px 20px 30px 20px;
}

.ft-shop-item .furniture-img img {
  height: 185px;
  max-width: 185px;
  width: 100%;
  margin: 0 auto;
  object-fit: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media(max-width:575px) {
  .ft-shop-item .furniture-img img {
    height: 130px;
  }
}

.ft-shop-item .shop-content {
  text-align: center;
  border: none;
  padding: 10px;
}

.ft-shop-item .shop-content .title {
  text-transform: uppercase;
}

.ft-shop-item .shop-content .review-wrap {
  margin-top: 5px;
}

.ft-shop-item:hover .furniture-img img {
  transform: scale(1.02);
}

.shop-popular-wrap {
  background-color: var(--rr-color-grey-1);
  padding: 60px;
  box-shadow: 1px 0px 5px 0px rgba(130, 130, 130, 1);
}

@media only screen and (max-width: 992px) {
  .shop-popular-wrap {
    padding: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .shop-popular-wrap {
    padding: 20px 0;
  }
}

.shop-popular-wrap .section-heading .section-title {
  text-transform: uppercase;
  margin-bottom: 0;
}

/* !END: Furniture CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.sub-title span {
  font-size: 15px;
}

.page-header {
  background: #f1f3f6;
}

.page-header .shape {
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.page-header .shape img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.page-header-content {
  padding: 30px 0 10px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-top: 20px;
}

/* @media only screen and (max-width: 992px) {
  .page-header-content {
    padding: 100px 0 100px 0;
  }
} */
@media only screen and (max-width: 767px) {
  .page-header-content {
    flex-direction: column;
  }
}

.page-header-content .title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}

@media only screen and (max-width: 992px) {
  .page-header-content .title {
    font-size: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .page-header-content .title {
    font-size: 29px;
  }
}

.page-header-content .sub-title {
  display: flex;
  align-items: center;
  column-gap: 17px;
}

.page-header-content .sub-title .home {
  color: var(--rr-color-text-body);
  font-size: 18px;
  font-weight: 400;
}

.page-header-content .sub-title .icon {
  font-size: 16px;
  color: var(--rr-color-text-body);
  line-height: 1;
}

.page-header-content .sub-title .inner {
  font-size: 18px;
  color: var(--rr-color-heading-primary);
  font-weight: 600;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Login CSS
----------------------------------------*/
.login-image {
  width: 100%;
  height: 400px;
}

@media (max-width:575px) {
  .login-image {
    width: 100%;
    height: 100%;
  }
}

.login-wrap-email {
  background-color: #ebebeb;
  max-width: 725px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 120px;
  border-radius: 6px;
}

.login-wrap {
  background-color: #ebebeb;
  max-width: 725px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 50px;
  border-radius: 6px;
}

@media only screen and (max-width: 767px) {
  .login-wrap {
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .login-wrap-email {
    padding: 40px 20px;
  }
}

.login-wrap-email .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.login-wrap-email .google-login {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.login-wrap-email .google-login img {
  width: 20px;
  height: 20px;
}

.login-wrap-email.or-text {
  color: var(--rr-color-heading-primary);
  font-weight: 600;
  display: block;
  margin: 40px 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.login-wrap-email .or-text:before {
  background-color: var(--rr-color-border-1);
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -2;
}

.login-wrap-email .or-text:after {
  background-color: var(--rr-color-grey-1);
  content: "";
  width: 50px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.login-wrap .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.login-wrap .google-login {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.login-wrap .google-login img {
  width: 20px;
  height: 20px;
}

.login-wrap .or-text {
  color: var(--rr-color-heading-primary);
  font-weight: 600;
  display: block;
  margin: 40px 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.login-wrap .or-text:before {
  background-color: var(--rr-color-border-1);
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -2;
}

.login-wrap .or-text:after {
  background-color: var(--rr-color-grey-1);
  content: "";
  width: 50px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.login-form .form-item {
  margin-bottom: 25px;
}

.login-form .form-item .form-header {
  font-size: 14px;
  font-weight: 500;
  display: block;
  text-align: left;
}

.login-form .form-item .form-control {
  box-shadow: none;
  padding: 14px 20px;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 6px;
}

.login-form .form-item .checkbox-wrap {
  display: block;
  text-align: left;
  display: flex;
  align-items: center;
}

.login-form .form-item .checkbox-wrap input {
  accent-color: var(--rr-color-theme-primary);
  margin-right: 10px;
}

.login-form .form-item .checkbox-wrap label {
  cursor: pointer;
}

.login-form .form-item .checkbox-wrap label span {
  color: var(--rr-color-heading-primary);
  font-weight: 500;
}

.login-form .submit-btn {
  margin-bottom: 20px;
}

.login-form .submit-btn .rr-primary-btn {
  width: 100%;
  justify-content: center;
}

.login-form .login-btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.login-form .forgot {
  color: var(--rr-color-heading-primary);
  font-weight: 500;
  text-align: left;
  display: block;
}

.login-form .log-in {
  color: var(--rr-color-theme-primary);
  font-weight: 500;
  display: block;
  text-align: left;
}

/* !END: Login CSS */
/**----------------------------------------
    START: FAQ CSS
----------------------------------------*/
.faq-content .accordion-item {
  border: 1px solid var(--rr-color-border-1);
}

.faq-content .accordion-item:not(:last-of-type) {
  margin-bottom: 20px;
}

.faq-content .accordion-item .accordion-header .accordion-button {
  background-color: var(--rr-color-common-white);
  box-shadow: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--rr-color-heading-primary);
}

.faq-content .accordion-item .accordion-body {
  padding-top: 0px;
  color: var(--rr-color-text-body);
}

.faq-form {
  background-color: var(--rr-color-grey-1);
  padding: 40px;
}

@media only screen and (max-width: 992px) {
  .faq-form {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .faq-form {
    padding: 30px 20px;
  }
}

.faq-form .form-item:not(:last-of-type) {
  margin-bottom: 20px;
}

.faq-form .form-item .form-control {
  background-color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-border-1);
  box-shadow: none;
  padding: 14.5px 20px;
}

.faq-form .submit-btn .submit {
  width: 100%;
  justify-content: center;
}

/* !END: FAQ CSS */
/**----------------------------------------
    START: About CSS
----------------------------------------*/
.about-content {
  max-width: 595px;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .about-content {
    margin-bottom: 40px;
  }
}

.about-content .section-heading {
  margin-bottom: 30px;
}

.about-content .section-heading .section-title {
  margin-bottom: 20px;
}

.about-content .about-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .about-content .about-items {
    grid-template-columns: 1fr;
  }
}

.about-content .about-items .about-item {
  background-color: var(--rr-color-common-white);
  display: flex;
  align-items: center;
  border: 1px solid #EAEEF4;
  box-shadow: 0px 8px 38px rgba(0, 0, 0, 0.09);
  border-radius: 6px;
  column-gap: 10px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--rr-color-heading-primary);
}

.about-content .about-items .about-item i {
  color: var(--rr-color-theme-primary);
}

.about-content .about-btn {
  background-color: #0d6efd;
}

.about-content .about-btn:before {
  background-color: var(--rr-color-theme-primary);
}

.about-content .about-btn:hover {
  color: var(--rr-color-common-white);
}

.about-img {
  max-width: 740px;
  width: 100%;
  /* height: 560px; */
  position: relative;
}

@media only screen and (max-width: 767px) {
  .about-img {
    height: 250px;
  }
}

.about-img .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-img .play-btn a {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 50%;
}

.about-img .play-btn a:hover {
  color: var(--rr-color-theme-primary);
}

/* !END: About CSS */
/**----------------------------------------
    START: Team CSS
----------------------------------------*/
.team-item .team-thumb {
  border-radius: 6px;
  overflow: hidden;
}

.team-item .team-thumb img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-item .team-content {
  text-align: center;
  padding-top: 30px;
}

.team-item .team-content span {
  font-size: 12px;
  color: var(--rr-color-text-body);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1;
}

.team-item .team-content .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--rr-color-border-1);
}

.team-item .team-content .team-social li {
  display: inline-flex;
}

.team-item .team-content .team-social li:not(:last-of-type) {
  margin-right: 10px;
}

.team-item .team-content .team-social li a {
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.team-item .team-content .team-social li a:hover {
  text-decoration: underline;
}

.team-item:hover .team-thumb img {
  transform: scale(1.03);
}

/* !END: Team CSS */
/**----------------------------------------
    START: Service CSS
----------------------------------------*/
.service-item .service-img {
  height: 300px;
}

@media (max-width: 1199px) {
  .service-item .service-img {
    max-width: 465px;
    width: 100%;
    margin: 0 auto;
  }
}

.service-item .top-area {
  height: 300px;
}

.service-item .service-content {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  padding-top: 50px;
}

.service-item .service-content .number {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  margin: 0 auto;
  border: 1px solid #ECECEC;
  box-shadow: 0px 13px 37px rgba(0, 0, 0, 0.08);
}

.service-item .service-content .title {
  font-size: 17px;
  font-weight: 600;
  margin: 20px 0 15px 0;
  text-transform: uppercase;
}

.service-item .service-content p:last-child {
  margin-bottom: 0;
}

.service-item.item-2 .service-content {
  padding-bottom: 0;
}

/* !END: Service CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.background-wrap {
  background: white;
  box-shadow: 0 0 2px rgba(0, 0, 0, .12);
}

.contact-wrap {
  background-color: var(--rr-color-grey-1);
  padding: 60px;
  box-shadow: 1px 0px 5px 0px rgba(130, 130, 130, 1);
}

@media only screen and (max-width: 767px) {
  .contact-wrap {
    padding: 50px 10px;
  }
}

.blog-contact-form.form-2 {
  border-radius: 6px;
}

.blog-contact-form.form-2 .form-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  text-transform: capitalize;
}

.blog-contact-form.form-2 .form-item:not(:last-of-type) {
  margin-bottom: 30px;
}

.blog-contact-form.form-2 .form-item .form-header {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--rr-color-text-body);
}

.contact-content {
  background-color: var(--rr-color-common-white);
  padding: 40px;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 6px;
  max-width: 465px;
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .contact-content {
    margin-top: 40px;
  }
}

@media (max-width: 1199px) {
  .contact-content {
    padding: 40px 20px;
  }
}

.contact-content .contact-img {
  margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
  .contact-content .contact-img img {
    width: 100%;
  }
}

.contact-content .contact-info-box:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rr-color-border-1);
}

.contact-content .contact-info-box .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-content .contact-info-box ul {
  list-style: none;
}

.contact-content .contact-info-box ul li:not(:last-of-type) {
  margin-bottom: 5px;
}

.map-wrapper {
  margin-bottom: -10px;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Sidebar CSS
----------------------------------------*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
  display: none;
}

.sidebar-trigger {
  display: block;
}

.sidebar-area {
  background-color: var(--rr-color-bg-1);
  border-left: 1px solid var(--rr-color-border-1);
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 450px;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: scroll;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  padding: 60px 40px;
}

.open-sidebar .sidebar-area {
  right: 0;
  visibility: visible;
  transform: translate(0);
}

.sidebar-trigger.close {
  position: absolute;
  right: 30px;
  top: 63px;
  color: var(--grey-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sidebar-trigger.close:hover {
  color: var(--rr-color-theme-primary);
}

.sidebar-trigger.close svg {
  fill: currentColor;
  stroke: none;
  width: 20px;
  height: 20px;
}

.sidebar-content .site-logo {
  margin-bottom: 40px;
}

.sidebar-content .site-logo img {
  max-width: 200px;
}

.sidebar-content .sidebar-info li {
  font-size: 18px;
}

.sidebar-content .sidebar-social li {
  display: inline-block;
  margin: 0 3px;
  padding-top: 30px;
}

.sidebar-content .sidebar-social li a {
  display: inline-block;
  border: 1px solid var(--border-1);
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sidebar-content .sidebar-social li a:after {
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 59%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.sidebar-content .sidebar-social li a:hover {
  border: 1px solid var(--primary-color);
  color: #fff;
}

.sidebar-content .sidebar-social li:hover a:after {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  transform: translate(-50%, -50%) scale(1);
}

.sidebar-content .list-post-area {
  margin: 50px 0 20px 0;
}

/*Scrollbar Style*/
.sidebar-area::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.sidebar-area::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #ccc;
}

.sidebar-area::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area-webkit-::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area::-moz-selection {
  background-color: #999;
  color: #fff;
}

#sidebar-overlay {
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all 0s ease-in-out;
  width: calc(100% - 400px);
  z-index: -1;
}

.open-sidebar #sidebar-overlay {
  opacity: 1;
  z-index: 1002;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.3s;
}

@media (max-width: 992px) {
  .sidebar-content .list-post-area.list-2 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .sidebar-area {
    width: 400px;
    padding: 60px 30px;
    justify-content: center;
  }

  .side-menu-logo {
    margin-bottom: 50px;
  }

  .side-menu-wrap {
    margin-bottom: 70px;
  }

  .side-menu-header h3 {
    display: none;
  }

  .side-menu-list li a {
    font-size: 14px;
  }

  .side-menu-list li p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .sidebar-area {
    width: 320px;
    padding: 60px 20px 60px 20px;
  }

  .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
    height: 90px;
    width: 90px;
  }

  .sidebar-content .list-post-area.list-2 .list-post-card {
    grid-template-columns: 90px 1fr;
  }
}

.side-menu-logo {
  max-width: 150px;
}

.side-menu-about {
  margin: 50px 0 50px 0;
}

@media only screen and (max-width: 992px) {
  .side-menu-about {
    display: none;
  }
}

.side-menu-about p {
  margin: 25px 0;
}

.side-menu-header h3 {
  font-size: 30px;
  font-weight: 600px;
  line-height: 1;
  font-weight: 600;
}

.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
  margin-bottom: 20px;
}

.side-menu-list {
  margin: 25px 0 35px 0;
}

.side-menu-list li {
  display: flex;
  align-items: center;
}

.side-menu-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.side-menu-list li i {
  background-color: var(--rr-color-theme-primary);
  font-size: 12px;
  color: var(--rr-color-common-white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.side-menu-list li:hover i {
  background-color: var(--rr-color-theme-primary);
  color: #fff;
}

.side-menu-list li p {
  padding-left: 10px;
  margin-bottom: 0;
}

.side-menu-list li a {
  font-size: 16px;
  color: var(--rr-color-text-body);
  padding-left: 10px;
}

.side-menu-list li a:hover {
  color: var(--rr-color-theme-primary);
}

.side-menu-social {
  margin-top: 40px;
  list-style: none;
}

.side-menu-social li {
  display: inline-flex;
}

.side-menu-social li:not(:last-of-type) {
  margin-right: 10px;
}

.side-menu-social li a {
  background-color: var(--rr-color-border-1);
  font-size: 17px;
  color: var(--rr-color-common-white);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rr-color-border-1);
}

.side-menu-social li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

/* !END: Sidebar CSS */

/**----------------------------------------
    START: Shop CSS
----------------------------------------*/
.shop-top {
  margin-bottom: 30px;
}

.shop-top .left-content {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.shop-top .select-control {
  background-color: transparent;
  border: 1px solid var(--rr-color-border-1);
  padding: 14px 30px;
  padding-right: 60px;
  height: auto;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.shop-top .select-control:after {
  border: none;
  height: auto;
  width: auto;
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 700;
  content: "\f0d7";
  color: var(--rr-color-text-body);
  position: absolute;
  top: 63%;
  right: 20px;
  transform: translateY(-50%);
}

.shop-top .select-control .list {
  background-color: var(--rr-color-bg-1);
}

.shop-top .select-control.open:after {
  transform: translateY(-50%);
}

/* .shop-content{
  height: 100px;
} */
.shop-item {
  border-radius: 6px;
  overflow: hidden;
  height: 410px;
  background: white;
  border: 1px solid #e8e8e8;
}

@media(max-width:575px) {
  .shop-item {
    height: 350px;
  }
}

.shop-item .shop-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.shop-item .shop-thumb img {
  transform: scale(1);
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 250px;
}

@media(max-width:575px) {
  .shop-item .shop-thumb img {
    height: 200px;
    width: 100%;
  }
}

.shop-item .shop-thumb .sale {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 20px;
  position: absolute;
  top: 30px;
  left: 30px;
  display: inline-block;
  z-index: 2;
}

.shop-item .shop-thumb .shop-list {
  list-style: none;
  position: absolute;
  top: 30px;
  right: 20px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}

.shop-item .shop-thumb .shop-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.shop-item .shop-thumb .shop-list li a {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-bg-1);
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.shop-item .shop-thumb .shop-list li a i {
  line-height: 1;
  display: block;
}

.shop-item .shop-thumb .shop-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

.shop-item:hover .shop-thumb img {
  transform: scale(1.03);
}

.shop-item:hover .shop-thumb .overlay {
  visibility: visible;
  opacity: 1;
}

.shop-item:hover .shop-thumb .shop-list {
  right: 30px;
  visibility: visible;
  opacity: 1;
}

.shop-content {
  padding: 30px;
  border-top: none;
  border-radius: 0 0 6px 6px;
}

@media only screen and (max-width: 767px) {
  .shop-content {
    padding: 20px 20px;
  }
}

@media (max-width:575px) {
  .ft-shop-item .shop-content {
    padding: 2px;
  }
}

.shop-content .category {
  font-size: 12px;
  font-weight: 400;
  color: var(--rr-color-text-body);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.shop-content .title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}

.shop-content .review-wrap {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  row-gap: 5px;
}

.shop-content .review-wrap .review {
  list-style: none;
}

.shop-content .review-wrap .review li {
  display: inline-flex;
  color: var(--rr-color-theme-primary);
}

.shop-content .price {
  color: var(--rr-color-theme-primary);
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.shop-content .price .offer {
  margin-top: 0;
  margin-right: 10px;
  text-decoration: line-through;
  color: var(--rr-color-text-body);
}

.tab-navigation {
  border-bottom: 1px solid var(--rr-color-border-1);
  padding-bottom: 30px;
}

.tab-navigation button {
  color: var(--rr-color-text-body);
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  letter-spacing: 0;
  padding: 0;
  margin-right: 30px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tab-navigation button.active,
.tab-navigation button:hover {
  color: var(--rr-color-heading-primary);
}

/*** 7.2 - Tab Description ***/
/* .tab-content .tab-pane {
  margin-top: 40px;
} */

.tab-content .tab-pane .desc-wrap {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 1fr 535px;
}

@media only screen and (max-width: 992px) {
  .tab-content .tab-pane .desc-wrap {
    grid-template-columns: 1fr;
  }
}

.tab-content .tab-pane .desc-wrap .right-content img {
  height: 220px;
  max-width: 535px;
  width: 100%;
  object-fit: cover;
}

.description-meta {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 10px;
}

.description-meta li span {
  color: var(--rr-color-theme-primary);
  font-weight: 600;
  margin-right: 5px;
}

/*** 7.3 - Tab Additional Information ***/
.product-table {
  background-color: var(--rr-color-grey-1);
  margin: 0;
  margin-top: 40px;
  --bs-table-bg: transparent;
}

.product-table:not(caption)>*>* {
  border-bottom: 1px solid var(--rr-color-border-1);
}

.product-table> :not(:last-child)> :last-child>* {
  border-color: var(--rr-color-border-1);
}

.product-table tbody tr td,
.product-table thead tr th {
  text-align: center;
}

.product-table tbody tr td:not(:last-of-type),
.product-table thead tr th:not(:last-of-type) {
  border-right: 1px solid var(--rr-color-border-1);
}

.product-table tbody tr td:not(:last-of-type) {
  border-bottom: 1px solid var(--rr-color-border-1);
}

.product-table thead tr th {
  color: var(--rr-color-theme-primary);
}

.product-table tbody tr td {
  color: var(--rr-color-heading-primary);
  padding: 15px 0;
}

/*** 7.4 - Tab Review ***/
.review .comment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.review .comment-list>li {
  background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 30px;
  align-items: center;
  padding: 40px;
}

.review .comment-list .comment-thumb img {
  border-radius: 50%;
}

.review .comment-list .comment-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review .comment-list .comment-text h3 span {
  font-size: 14px;
  font-weight: 600;
  color: #ddd;
  display: block;
}

.review .comment-list .comment-text p {
  margin: 0;
}

@media only screen and (max-width: 992px) {
  .shop-grid-left {
    margin-bottom: 50px;
  }
}

.top-grid-content {
  padding: 20px;
}

.shop-grid-left .top-grid-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}

.shop-grid-left .top-grid-content .shop-tab-nav {
  display: flex;
  align-items: center;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 15px;
}

.shop-grid-left .top-grid-content .shop-tab-nav .nav-tabs {
  border: none;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 6px;
  padding: 10px 20px;
  column-gap: 15px;
}

.shop-grid-left .top-grid-content .shop-tab-nav .nav-tabs .nav-link {
  border: none;
  padding: 0;
}

.shop-grid-left .top-grid-content .shop-tab-nav .nav-tabs .nav-link svg {
  color: var(--rr-color-text-body);
  fill: var(--rr-color-text-body);
}

.shop-grid-left .top-grid-content .shop-tab-nav .nav-tabs .nav-link.active svg {
  color: var(--rr-color-heading-primary);
}

.shop-grid-left .top-grid-content .shop-select {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--rr-color-border-1);
}

.shop-grid-left .top-grid-content .shop-select ul {
  left: auto;
  right: 0;
}

.grid-shop {
  display: grid;
  align-items: center;
  grid-template-columns: 500px 1fr;
  border: 1px solid var(--rr-color-border-1);
}

.grid-shop:not(:last-of-type) {
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .grid-shop {
    grid-template-columns: 400px 1fr;
  }
}

@media (max-width: 1199px) {
  .grid-shop {
    grid-template-columns: 300px 1fr;
  }
}

@media only screen and (max-width: 992px) {
  .grid-shop {
    grid-template-columns: 1fr;
  }
}

.grid-shop .shop-thumb img {
  object-position: top center;
  border-radius: 0;
}

.grid-shop .shop-content {
  border: none;
}

.grid-shop .shop-content .title {
  font-size: 30px;
  margin-bottom: 15px;
}

.grid-shop .shop-content p {
  margin-bottom: 15px;
}

.grid-shop .shop-content .review-wrap {
  margin-bottom: 15px;
}

.shop-sidebar {
  border: 1px solid var(--rr-color-border-1);
  border-radius: 6px;
  padding: 25px 30px;
}

.shop-sidebar:not(:last-of-type) {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .shop-sidebar {
    padding: 25px 20px;
  }
}

.shop-sidebar .sidebar-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rr-color-border-1);
}

.shop-sidebar .sidebar-list {
  list-style: none;
}

.shop-sidebar .sidebar-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.shop-sidebar .sidebar-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.shop-sidebar .sidebar-list li .sidebar-input-check {
  border: 1px solid var(--rr-color-border-1);
}

.shop-sidebar .sidebar-list li input {
  background-color: var(--rr-color-theme-primary);
  accent-color: var(--rr-color-theme-primary);
}

.shop-sidebar .sidebar-list li label {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 400;
}

.shop-sidebar .sidebar-list.list-2 li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-sidebar .sidebar-list.list-2 li .left-item {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.shop-sidebar .sidebar-list.list-2 li .number {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 400;
}

.shop-sidebar .filter-box .range-slider input {
  width: 100%;
  background-color: var(--rr-color-theme-primary);
  accent-color: var(--rr-color-theme-primary);
  border: none;
}

.shop-sidebar .filter-box .range-slider .range-slider-output {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.shop-sidebar .filter-box .range-slider .range-slider-output .price {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.shop-sidebar .radio-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-sidebar .radio-item:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rr-color-border-1);
}

.shop-sidebar .radio-item label {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.shop-sidebar .radio-item label input {
  background-color: var(--rr-color-theme-primary);
  accent-color: var(--rr-color-theme-primary);
  height: 20px;
  width: 20px;
}

.shop-sidebar .radio-item label .size {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 400;
}

.shop-sidebar .radio-item .number {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 400;
}

.shop-sidebar .sidebar-items .sidebar-item {
  display: grid;
  align-items: center;
  grid-template-columns: 85px 1fr;
  grid-gap: 20px;
  overflow: hidden;
}

.shop-sidebar .sidebar-items .sidebar-item:not(:last-of-type) {
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .shop-sidebar .sidebar-items .sidebar-item {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 992px) {
  .shop-sidebar .sidebar-items .sidebar-item {
    grid-template-columns: 85px 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .shop-sidebar .sidebar-items .sidebar-item {
    grid-template-columns: 1fr;
  }

  .shop-sidebar .sidebar-items .sidebar-item:not(:last-of-type) {
    margin-bottom: 25px;
  }
}

.shop-sidebar .sidebar-items .sidebar-item .item-img {
  height: 85px;
  width: 85px;
}

.shop-sidebar .sidebar-items .sidebar-item .item-img img {
  float: left;
  margin-right: 20px;
}

.shop-sidebar .sidebar-items .sidebar-item .content {
  padding-left: 0;
  overflow: hidden;
}

.shop-sidebar .sidebar-items .sidebar-item .content .review {
  display: flex;
  align-items: center;
  list-style: none;
}

.shop-sidebar .sidebar-items .sidebar-item .content .review li {
  color: var(--rr-color-theme-primary);
}

.shop-sidebar .sidebar-items .sidebar-item .content .title {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
  line-height: 1;
}

.shop-sidebar .sidebar-items .sidebar-item .content .price {
  color: var(--rr-color-theme-primary);
  display: block;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.shop-sidebar .sidebar-items .sidebar-item .content .price .offer {
  margin-top: 0;
  margin-right: 10px;
  text-decoration: line-through;
  color: var(--rr-color-text-body);
}

/* !END: Shop CSS */
/**----------------------------------------
    START: Cart CSS
----------------------------------------*/
/* .cart-section{
  background: url(../img/shapes/background.jpg) no-repeat;
  background-size: cover;
} */
.cartdeliver span {
  color: #000000;
}

.cartdeliver {
  float: right !important;
}

@media(max-width:575px) {
  .cartdeliver {
    float: left !important;
  }
}

.cartproduct span {
  color: black;
  font-weight: 500;
  font-size: 14px;
}

.cartproduct p {
  margin-top: 10px;
  font-weight: 600;
  font-size: 13px;
}

.pincodesubmit {
  background: #b8bbbf;
  color: #fff;
  cursor: not-allowed;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #b8bbbf;
  border-radius: 4px;
  width: 70px;
  height: 32px;
  color: #fff;
}

.enterpincode {
  -ms-flex: 2;
  flex: 2;
  font-size: 14px;
  font-weight: 500;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: inline-block;
  line-height: 25px;
  outline: none;
  box-shadow: none;
  font-weight: 400;
  width: 160px;
  border: none;
  border-bottom: 2px solid rgba(133, 137, 143, .66);
  transition: border-bottom .3s linear;
  margin-right: 15px;
}

.pincode {
  display: flex;
  margin-top: 20px;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #dee2e6;
}

.cart-footer span {
  color: black;
  font-weight: 600;
}

.cart-bottom {
  float: right;
}

.cart-extra {
  border-top: 1px solid #e7e7e7;
}

.placeordersection {
  border-top: 1px solid #f0f0f0;
  background: #fff;
  padding: 16px 22px;
  box-shadow: 0 -2px 10px 0 rgba(0, 0, 0, .1);
}

.placeorderbutton {
  float: right;
}

.home-button {
  background-color: #f0f2f5;
  margin: 0 0 0 12px;
  color: #717478;
  font-size: 10px;
  text-align: center;
  padding: 4px 8px;
  border-radius: 2px;
}

.totalcart {
  border-top: 1px dotted #cacaca;
  border-bottom: 1px dotted #cacaca;
  padding: 10px;
}

.item-details {
  color: black;
  font-size: 15px;
}

.details-item {
  color: black;
  font-size: 15px;
}

.details-itemgreen {
  color: green;
  float: right;
}

.cartdetails {
  padding: 10px 20px 0 20px;
}

.details-item {
  float: right;
}

.qty-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-container .input-qty {
  text-align: center;
  padding: 6px 10px;
  border: 1px solid #d4d4d4;
  max-width: 80px;
}

.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus {
  border: 1px solid #d4d4d4;
  padding: 10px 13px;
  font-size: 10px;
  height: 38px;
  width: 38px;
  transition: 0.3s;
}

.qty-container .qty-btn-plus {
  margin-left: -1px;
  background: #0d6efd;
  color: #ffffff;
}

.qty-container .qty-btn-minus {
  margin-right: -1px;
  background: #0d6efd;
  color: #ffffff;
}

.btn-rounded {
  border-radius: 50%;
}

.input-rounded {
  border-radius: 50px;
}

.deliver-address {
  padding: 12px 16px;
}

.delivery-change {
  float: right;
}

@media(max-width:575px) {
  .delivery-change {
    float: left;
  }
}

.cart-details {
  padding: 20px 30px;
}

.cart-image img {
  width: 100%;
  height: 250px;
}

.cart-deliver {
  font-size: 13px;
  text-align: justify;
  line-height: 20px;
}

.cart-top-content {
  background-color: var(--rr-color-grey-1);
  padding: 30px 40px;
  margin-bottom: 40px;
}

.cart-top-content p {
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}

.cart-top-content p span {
  color: var(--rr-color-theme-primary);
  font-weight: 500;
}

.cart-top-content p line {
  background-color: var(--rr-color-grey-1);
}

.cart-top-content .line {
  background-color: var(--rr-color-common-white);
  position: relative;
  display: inline-block;
  width: 100%;
  height: 6px;
  overflow: hidden;
  border-radius: 30px;
}

.cart-top-content .line:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cart-btn-wrap {
  background-color: var(--rr-color-grey-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
  padding: 30px;
}

.cart-btn-wrap .left-item {
  display: grid;
  grid-template-columns: 295px 1fr;
  align-items: center;
  grid-gap: 10px;
}

@media only screen and (max-width: 767px) {
  .cart-btn-wrap .left-item {
    grid-template-columns: 1fr;
  }
}

.cart-btn-wrap .left-item .form-control {
  background-color: var(--rr-color-common-white);
  box-shadow: none;
  font-size: 14px;
  border: 1px solid transparent;
  color: var(--rr-color-text-body);
  padding: 14px 20px;
  border-radius: 0;
}

.cart-btn-wrap .left-item .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--rr-color-text-body);
}

.cart-btn-wrap .left-item .form-control:-moz-placeholder {
  font-size: 14px;
  color: var(--rr-color-text-body);
}

.cart-btn-wrap .left-item .form-control::-moz-placeholder {
  font-size: 14px;
  color: var(--rr-color-text-body);
}

.cart-btn-wrap .left-item .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: var(--rr-color-text-body);
}

.cart-btn-wrap .left-item .rr-primary-btn {
  font-size: 14px;
  padding: 17px 30px;
  border: none;
}

.cart-btn-wrap .update-btn {
  background-color: transparent;
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  padding: 17px 30px;
  border: 1px solid var(--rr-color-border-1);
  text-transform: uppercase;
}

.cart-btn-wrap .update-btn:before {
  background-color: var(--rr-color-theme-primary);
}

.cart-btn-wrap .update-btn:hover {
  color: var(--rr-color-common-white);
  border: 1px solid var(--rr-color-theme-primary);
}

.cart-box-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .cart-box-title {
    font-size: 28px;
  }
}

.checkout-wrapper {
  background-color: white;
  max-width: 600px;
  width: 100%;
  border: 1px solid var(--rr-color-border-1);
  padding: 20px 0;
}

@media only screen and (max-width: 992px) {
  .checkout-wrapper {
    margin-top: 30px;
  }
}

.checkout-wrapper .checkout-item {
  display: flex;
  align-items: center;
  align-items: start;
  column-gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
  padding-left: 35px;
  padding-right: 35px;
}

@media only screen and (max-width: 767px) {
  .checkout-wrapper .checkout-item {
    align-items: center;
  }
}

.checkout-wrapper .checkout-item:not(:last-of-type) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rr-color-border-1);
}

.checkout-wrapper .checkout-item .title {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
}

.checkout-wrapper .checkout-item span {
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 500;
}

.checkout-wrapper .checkout-item p {
  color: var(--rr-color-text-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin: 20px 0;
}

.checkout-wrapper .checkout-item .checkout-option-wrapper .shipping-option input {
  accent-color: var(--rr-color-theme-primary);
}

.checkout-wrapper .checkout-item .checkout-option-wrapper .shipping-option label {
  font-size: 16px;
  color: var(--rr-color-heading-primary);
  font-weight: 400;
  margin-left: 10px;
  cursor: pointer;
}

.checkout-wrapper .checkout-item .checkout-option-wrapper .shipping-option:not(:last-of-type) {
  margin-bottom: 10px;
}

.checkout-wrapper .checkout-item.item-1 .title {
  color: var(--rr-color-heading-primary);
  font-weight: 600;
}

.checkout-proceed {
  margin-top: 30px;
}

/* !END: Cart CSS */
/**----------------------------------------
    START: Shop Details CSS
----------------------------------------*/
/**********product page**************/
#show-more,
#show-less {
  color: #0d6efd;
  font-weight: 700;
  font-size: 14px;
}

#show-more a,
#show-less a {
  cursor: pointer;
  color: auto;
}

.product-page {
  padding: 50px;
}

@media(max-width:575px) {
  .product-page {
    padding: 10px;
  }
}

.tag-offer {
  color: green;
}

.offer-bank {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
}

.offer-others {
  color: #000000;
}

.terms-offer {
  color: #0d6efd;
  font-weight: 700;
  font-size: 14px;
}

.product-bank-offerlist {
  padding: 3px;
}

.product-ratings {
  padding: 2px 7px;
  border-radius: 14px;
  font-size: 16px;
  background-color: #26a541;
}

.color-option {
  display: inline;
  position: relative;
  margin: 5px 5px 2px 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.color-picker {
  margin: 0px 5px 10px 0px;
}

.color-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 1px solid #e6e3e3;
}

.color-option input:checked~.checkmark {
  margin-right: 5px;
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  padding: 3px 0px 3px 3px;
  border: 1px solid #000000;
}

.color-option .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.clothes-size-sec,
.cloths-color-sec {
  display: flex;
  gap: 11px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.clothes-size input {
  display: none;
}

.custom-radio-sel-size {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  border: 2px solid black;
}

.custom-radio-sel-size,
.partner-title p {
  color: black;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.clothes-size input[type="radio"]:checked+label {
  border-radius: 10px;
  border: 2px solid #0d6efd;
  color: black;
}

/***************/
.collapsible-btn {
  background-color: #e3e3e3;
  color: #000;
  border: 1px solid #999;
  cursor: pointer;
  display: block;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}



.seller-ratings {
  display: inline-block;
  color: #fff;
  padding: 2px 4px 2px 6px;
  font-weight: 500;
  font-size: 12px;
  margin-left: 8px;
  border-radius: 10px;
  background: #2874f0;
}

.product-details-wrap .product-slider-wrap {
  display: grid;
  grid-template-columns: 112px 1fr;
  grid-gap: 24px;
}

@media only screen and (max-width: 767px) {
  .product-details-wrap .product-slider-wrap {
    grid-template-columns: 1fr;
  }
}

.product-details-wrap .product-gallary {
  position: relative;
  margin: 0;
  height: 100%;
}

.product-details-wrap .product-gallary .sale {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 100px;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 2;
}

.product-details-wrap .product-gallary .gallary-item {
  background-color: var(--rr-color-common-white);
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .product-details-wrap .product-gallary .gallary-item {
    height: 450px;
  }
}

.product-details-wrap .product-gallary .gallary-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.product-details-wrap .product-gallary-thumb {
  height: 375px;
}

@media only screen and (max-width: 767px) {
  .product-details-wrap .product-gallary-thumb {
    max-width: 100%;
    padding: 0 15px;
    left: 0;
  }
}

.product-details-wrap .product-gallary-thumb .thumb-item {
  height: 112px;
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DEE0E3;
  cursor: pointer;
}

.product-details-wrap .product-gallary-thumb .thumb-item img {
  width: auto;
  height: auto;
  object-fit: inherit;
}

.product-details-wrap .product-gallary-thumb .swiper-slide-thumb-active .thumb-item {
  border: 1px solid var(--rr-color-theme-primary);
}

.product-info {
  padding-left: 20px;
}

@media only screen and (max-width: 992px) {
  .product-info {
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .product-info {
    padding-top: 40px;
  }
}

.product-info .category {
  color: var(--rr-color-theme-primary);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: block;
}

.product-info .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
  .product-info .title {
    font-size: 24px;
  }
}

.product-info .rating-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.product-info .rating-wrap .rating {
  display: flex;
  align-items: center;
  list-style: none;
}

.product-info .rating-wrap .rating li {
  color: var(--rr-color-heading-primary);
}

.product-info .rating-wrap .rating li:not(:last-of-type) {
  margin-right: 2px;
}

.product-info .rating-wrap span {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
}

.product-info .price {
  font-size: 22px;
  nav-down: 600;
  margin-bottom: 30px;
}

.product-info .price span {
  font-weight: 400;
  color: var(--rr-color-text-body);
  text-decoration: line-through;
  margin-left: 10px;
}

.product-info .product-desc-wrap {
  border-top: 1px solid var(--rr-color-border-1);
  border-bottom: 1px solid var(--rr-color-border-1);
  padding: 20px 0;
  margin-bottom: 20px;
}

.product-info .product-desc-wrap .desc {
  margin-bottom: 0;
  margin-bottom: 10px;
}

.product-info .product-desc-wrap .view-text {
  font-size: 16px;
  color: var(--rr-color-heading-primary);
}

.product-info .product-desc-wrap .view-text i {
  margin-right: 10px;
}

.product-info .item-left-line {
  margin-bottom: 30px;
}

.product-info .item-left-line .line {
  background: #EBEBEB;
  height: 4px;
  width: 100%;
  position: relative;
  margin-top: 10px;
}

.product-info .item-left-line .line:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.product-info .details-list {
  list-style: none;
}

.product-info .details-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--rr-color-heading-primary);
}

.product-info .details-list li i {
  width: 20px;
}

.product-info .details-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.product-info .product-btn {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin: 30px 0;
}

.product-info .product-btn input {
  background-color: var(--rr-color-theme-primary);
  color: #fff;
  width: 100%;
  height: 45px;
  line-height: 45px;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  text-align: center;
}

.product-info .product-btn .cart-btn-wrap-2 {
  width: 100%;
}

.product-info .product-btn .cart-btn-wrap-2 .cart-btn {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  border: 2px solid var(--rr-color-heading-primary);
  width: 100%;
  border-radius: 100px;
  padding: 15px 30px;
  text-align: center;
  justify-content: center;
}

.product-info .product-btn .cart-btn-wrap-2 .cart-btn:before {
  display: none;
}

.product-info .product-btn .cart-btn-wrap-2 .cart-btn:hover {
  background-color: var(--rr-color-heading-primary);
  color: var(--rr-color-common-white);
}

.product-info .shop-details-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 30px;
}

.product-info .product-meta {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
}

.product-info .product-meta li a {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}

.reviewr-wrap {
  padding-right: 20px;
}

@media only screen and (max-width: 992px) {
  .reviewr-wrap {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.reviewr-wrap .review-list .review-item {
  display: grid;
  align-items: center;
  grid-template-columns: 90px 1fr;
  grid-gap: 15px;
  padding: 30px;
  border: 1px solid var(--rr-color-border-1);
}

@media only screen and (max-width: 767px) {
  .reviewr-wrap .review-list .review-item {
    grid-template-columns: 1fr;
  }
}

.reviewr-wrap .review-list .review-item:not(:last-of-type) {
  margin-bottom: 30px;
}

.reviewr-wrap .review-list .review-item img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}

.reviewr-wrap .review-list .review-item .content .content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}

.reviewr-wrap .review-list .review-item .content .content-top .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.reviewr-wrap .review-list .review-item .content .content-top .name span {
  color: var(--rr-color-text-body);
  font-size: 15px;
  display: block;
  margin-top: 7px;
}

.reviewr-wrap .review-list .review-item .content .content-top ul {
  list-style: none;
}

.reviewr-wrap .review-list .review-item .content .content-top ul li {
  display: inline-flex;
  color: var(--rr-color-theme-primary);
}

.reviewr-wrap .review-list .review-item .content .content-top ul li:not(:last-of-type) {
  margin-right: 2px;
}

.reviewr-wrap .review-list .review-item .content p {
  margin-bottom: 0;
}

.review-form-wrap .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.review-form-wrap .publish {
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}

.review-form-wrap .review-box {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.review-form-wrap .review-box span {
  color: var(--rr-color-heading-primary);
}

.review-form-wrap .review-box .review {
  list-style: none;
}

.review-form-wrap .review-box .review li {
  display: inline-flex;
  color: var(--rr-color-theme-primary);
}

.review-form-wrap .review-box .review li:not(:last-of-type) {
  margin-right: 2px;
}

.review-form-wrap .review-form {
  background-color: transparent;
  padding: 0;
  border: none;
  margin-top: 40px;
}

.review-form-wrap .checkbox-wrap {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.review-form-wrap .checkbox-wrap input {
  width: 15px;
  height: 15px;
  accent-color: var(--rr-color-theme-primary);
}

.review-form-wrap .checkbox-wrap label {
  color: var(--rr-color-text-body);
  cursor: pointer;
  margin-left: 10px;
}

.review-form-wrap .submit-btn .rr-primary-btn {
  padding: 15px 35px;
}

/* !END: Shop Details CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.checkout-top {
  margin-bottom: 80px;
}

@media only screen and (max-width: 992px) {
  .checkout-top {
    margin-bottom: 40px;
  }
}

.checkout-top .coupon-list .verify-item .title {
  background-color: var(--rr-color-common-white);
  width: 100%;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--rr-color-border-1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.checkout-top .coupon-list .verify-item .title:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

.checkout-top .coupon-list .verify-item .title button {
  font-weight: 600;
  margin: 0 5px;
  text-decoration: underline;
}

.checkout-top .coupon-list .verify-item .login-form {
  padding-top: 30px;
  display: none;
}

.checkout-top .coupon-list .verify-item .login-form .form-control {
  background-color: var(--rr-color-grey-1);
  padding: 15px 30px;
  border: none;
  box-shadow: none;
  font-size: 14px;
  color: var(--rr-color-text-body);
  border-radius: 0;
  margin-bottom: 20px;
  max-width: 700px;
  width: 100%;
}

.checkout-top .coupon-list .verify-item .login-form .form-control::-webkit-input-placeholder {
  color: var(--rr-color-text-body);
}

.checkout-top .coupon-list .verify-item .login-form .form-control:-moz-placeholder {
  color: var(--rr-color-text-body);
}

.checkout-top .coupon-list .verify-item .login-form .form-control::-moz-placeholder {
  color: var(--rr-color-text-body);
}

.checkout-top .coupon-list .verify-item .login-form .form-control:-ms-input-placeholder {
  color: var(--rr-color-text-body);
}

.checkout-top .coupon-list .verify-item .checkbox-wrap {
  max-width: 700px;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-top .coupon-list .verify-item .checkbox-wrap .checkbox-item {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.checkout-top .coupon-list .verify-item .checkbox-wrap .checkbox-item label {
  color: var(--rr-color-text-body);
  cursor: pointer;
}

.checkout-top .coupon-list .verify-item .checkbox-wrap .forgot {
  color: var(--rr-color-common-white);
  font-weight: 600;
}

.checkout-top .coupon-list .verify-item .checkbox-wrap .forgot:hover {
  color: var(--rr-color-theme-primary);
}

.checkout-left {
  padding-right: 10px;
}

@media only screen and (max-width: 992px) {
  .checkout-left {
    padding-right: 0;
  }
}

.checkout-left .form-header {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 40px;
}

.checkout-form-wrap .form-group:not(:last-of-type) {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .checkout-form-wrap .form-item.name {
    margin-bottom: 30px;
  }
}

.checkout-form-wrap .form-item .form-title {
  color: var(--rr-color-heading-primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.checkout-form-wrap .form-item .form-control {
  padding: 18px 20px;
  background-color: var(--rr-color-common-white);
  border: none;
  box-shadow: none;
  font-size: 16px;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 6px;
}

.checkout-form-wrap .form-item .form-control::-webkit-input-placeholder {
  color: var(--rr-color-text-body);
}

.checkout-form-wrap .form-item .form-control:-moz-placeholder {
  color: var(--rr-color-text-body);
}

.checkout-form-wrap .form-item .form-control::-moz-placeholder {
  color: var(--rr-color-text-body);
}

.checkout-form-wrap .form-item .form-control:-ms-input-placeholder {
  color: var(--rr-color-text-body);
}

.checkout-form-wrap .form-item .form-control.street-control {
  margin-bottom: 20px;
}

.checkout-form-wrap .form-item .form-control.nice-select {
  width: 100%;
  height: auto;
  line-height: inherit;
  padding: 18px 20px;
}

.checkout-form-wrap .form-item .form-control.nice-select:after {
  top: 46%;
  width: 10px;
  height: 10px;
  border-color: var(--rr-color-text-body);
  border-bottom: 1px solid var(--rr-color-text-body);
  border-right: 1px solid var(--rr-color-text-body);
  right: 25px;
}

.checkout-form-wrap .form-item .form-control.nice-select .list {
  background-color: var(--rr-color-common-white);
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--rr-color-border-1);
}

.checkout-form-wrap .form-item .form-control.nice-select .list li {
  padding-left: 20px;
}

.checkout-right {
  padding-left: 10px;
}

@media only screen and (max-width: 992px) {
  .checkout-right {
    margin-top: 50px;
    padding-left: 0;
  }
}

.checkout-right .form-header {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 40px;
}

.order-box {
  background-color: var(--rr-color-grey-1);
  padding: 30px 40px;
  border: 1px solid var(--rr-color-border-1);
}

@media only screen and (max-width: 767px) {
  .order-box {
    padding: 30px 20px;
  }
}

.order-box .order-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 20px;
}

.order-box .order-item:not(:last-of-type) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rr-color-border-1);
}

@media only screen and (max-width: 767px) {
  .order-box .order-item {
    grid-template-columns: 1fr;
  }
}

.order-box .order-item .order-left .order-img {
  height: 80px;
  width: 80px;
}

.order-box .order-item .order-left .order-img img {
  width: 100%;
  height: 100%;
}

.order-box .order-item .order-left .product {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
  text-transform: uppercase;
}

.order-box .order-item .order-left .left-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--rr-color-text-body);
  line-height: 1;
}

.order-box .order-item .order-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 15px;
}

.order-box .order-item .order-right .content .category {
  color: var(--rr-color-theme-primary);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
}

.order-box .order-item .order-right .content .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1;
}

.order-box .order-item .order-right .price {
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
  text-transform: uppercase;
}

.order-box .order-item .order-right .right-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--rr-color-heading-primary);
  line-height: 1;
}

.order-box .order-item .order-right .right-title span {
  color: var(--rr-color-text-body);
  font-weight: 400;
  margin-right: 10px;
}

.order-box .order-item .order-right .right-title.title-2 {
  color: var(--rr-color-theme-primary);
}

.order-box .order-item.item-1 {
  grid-template-columns: 200px 1fr;
}

@media only screen and (max-width: 767px) {
  .order-box .order-item.item-1 {
    grid-template-columns: 100px 1fr;
  }
}

.order-box .order-item.item-1 .order-right {
  justify-content: end;
}

.payment-option-wrap {
  margin-top: 40px;
}

.payment-option-wrap .payment-option .shipping-option:not(:last-of-type) {
  margin-bottom: 20px;
}

.payment-option-wrap .payment-option .shipping-option input {
  accent-color: var(--rr-color-theme-primary);
}

.payment-option-wrap .payment-option .shipping-option label {
  font-size: 16px;
  font-weight: 500;
  color: var(--rr-color-heading-primary);
  margin-left: 5px;
}

.payment-option-wrap .payment-option .shipping-option .options input {
  accent-color: var(--rr-color-theme-primary);
  margin-bottom: 15px;
}

.payment-option-wrap .desc {
  margin: 20px 0;
}

.payment-option-wrap .form-check {
  margin-bottom: 40px;
}

.payment-option-wrap .form-check .form-check-input {
  border: 1px solid var(--rr-color-border-1);
  box-shadow: none;
  accent-color: var(--rr-color-theme-primary);
}

.payment-option-wrap .form-check .form-check-label {
  cursor: pointer;
}

.payment-option-wrap .order-btn {
  width: 100%;
  justify-content: center;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: product details CSS
----------------------------------------*/
.product-details-wrap .product-slider-wrap {
  display: grid;
  grid-template-columns: 112px 1fr;
  grid-gap: 24px;
}

@media only screen and (max-width: 767px) {
  .product-details-wrap .product-slider-wrap {
    grid-template-columns: 1fr;
  }
}

.product-details-wrap .product-gallary {
  position: relative;
  margin: 0;
  height: 100%;
}

.product-details-wrap .product-gallary .sale {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 100px;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 2;
}

.product-details-wrap .product-gallary .gallary-item {
  background-color: var(--rr-color-common-white);
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .product-details-wrap .product-gallary .gallary-item {
    height: 450px;
  }
}

.product-details-wrap .product-gallary .gallary-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details-wrap .product-gallary-thumb {
  height: 375px;
}

@media only screen and (max-width: 767px) {
  .product-details-wrap .product-gallary-thumb {
    max-width: 100%;
    padding: 0 15px;
    left: 0;
  }
}

.product-details-wrap .product-gallary-thumb .thumb-item {
  height: 112px;
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DEE0E3;
  cursor: pointer;
}

.product-details-wrap .product-gallary-thumb .thumb-item img {
  width: auto;
  height: auto;
  object-fit: inherit;
}

.product-details-wrap .product-gallary-thumb .swiper-slide-thumb-active .thumb-item {
  border: 1px solid var(--rr-color-theme-primary);
}

.product-info {
  padding-left: 20px;
}

@media only screen and (max-width: 992px) {
  .product-info {
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .product-info {
    padding-top: 40px;
  }
}

.product-info .category {
  color: var(--rr-color-theme-primary);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: block;
}

.product-info .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
  .product-info .title {
    font-size: 24px;
  }
}

.product-info .rating-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.product-info .rating-wrap .rating {
  display: flex;
  align-items: center;
  list-style: none;
}

.product-info .rating-wrap .rating li {
  color: var(--rr-color-heading-primary);
}

.product-info .rating-wrap .rating li:not(:last-of-type) {
  margin-right: 2px;
}

.product-info .rating-wrap span {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
}

.product-info .price {
  font-size: 22px;
  nav-down: 600;
  margin-bottom: 30px;
}

.product-info .price span {
  font-weight: 400;
  color: var(--rr-color-text-body);
  text-decoration: line-through;
  margin-left: 10px;
}

.product-info .product-desc-wrap {
  border-top: 1px solid var(--rr-color-border-1);
  border-bottom: 1px solid var(--rr-color-border-1);
  padding: 20px 0;
  margin-bottom: 20px;
}

.product-info .product-desc-wrap .desc {
  margin-bottom: 0;
  margin-bottom: 10px;
}

.product-info .product-desc-wrap .view-text {
  font-size: 16px;
  color: var(--rr-color-heading-primary);
}

.product-info .product-desc-wrap .view-text i {
  margin-right: 10px;
}

.product-info .item-left-line {
  margin-bottom: 30px;
}

.product-info .item-left-line .line {
  background: #EBEBEB;
  height: 4px;
  width: 100%;
  position: relative;
  margin-top: 10px;
}

.product-info .item-left-line .line:before {
  background-color: var(--rr-color-theme-primary);
  content: "";
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.product-info .details-list {
  list-style: none;
}

.product-info .details-list li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--rr-color-heading-primary);
}

.product-info .details-list li i {
  width: 20px;
}

.product-info .details-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.product-info .product-btn {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin: 30px 0;
}

.product-info .product-btn input {
  background-color: var(--rr-color-theme-primary);
  color: #fff;
  width: 100%;
  height: 45px;
  line-height: 45px;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  text-align: center;
}

.product-info .product-btn .cart-btn-wrap-2 {
  width: 100%;
}

.product-info .product-btn .cart-btn-wrap-2 .cart-btn {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  border: 2px solid var(--rr-color-heading-primary);
  width: 100%;
  border-radius: 100px;
  padding: 15px 30px;
  text-align: center;
  justify-content: center;
}

.product-info .product-btn .cart-btn-wrap-2 .cart-btn:before {
  display: none;
}

.product-info .product-btn .cart-btn-wrap-2 .cart-btn:hover {
  background-color: var(--rr-color-heading-primary);
  color: var(--rr-color-common-white);
}

.product-info .shop-details-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 30px;
}

.product-info .product-meta {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 15px;
}

.product-info .product-meta li a {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}

.reviewr-wrap {
  padding-right: 20px;
}

@media only screen and (max-width: 992px) {
  .reviewr-wrap {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

.reviewr-wrap .review-list .review-item {
  display: grid;
  align-items: center;
  grid-template-columns: 90px 1fr;
  grid-gap: 15px;
  padding: 30px;
  border: 1px solid var(--rr-color-border-1);
}

@media only screen and (max-width: 767px) {
  .reviewr-wrap .review-list .review-item {
    grid-template-columns: 1fr;
  }
}

.reviewr-wrap .review-list .review-item:not(:last-of-type) {
  margin-bottom: 30px;
}

.reviewr-wrap .review-list .review-item img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}

.reviewr-wrap .review-list .review-item .content .content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}

.reviewr-wrap .review-list .review-item .content .content-top .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.reviewr-wrap .review-list .review-item .content .content-top .name span {
  color: var(--rr-color-text-body);
  font-size: 15px;
  display: block;
  margin-top: 7px;
}

.reviewr-wrap .review-list .review-item .content .content-top ul {
  list-style: none;
}

.reviewr-wrap .review-list .review-item .content .content-top ul li {
  display: inline-flex;
  color: var(--rr-color-theme-primary);
}

.reviewr-wrap .review-list .review-item .content .content-top ul li:not(:last-of-type) {
  margin-right: 2px;
}

.reviewr-wrap .review-list .review-item .content p {
  margin-bottom: 0;
}

.review-form-wrap .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.review-form-wrap .publish {
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}

.review-form-wrap .review-box {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.review-form-wrap .review-box span {
  color: var(--rr-color-heading-primary);
}

.review-form-wrap .review-box .review {
  list-style: none;
}

.review-form-wrap .review-box .review li {
  display: inline-flex;
  color: var(--rr-color-theme-primary);
}

.review-form-wrap .review-box .review li:not(:last-of-type) {
  margin-right: 2px;
}

.review-form-wrap .review-form {
  background-color: transparent;
  padding: 0;
  border: none;
  margin-top: 40px;
}

.review-form-wrap .checkbox-wrap {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.review-form-wrap .checkbox-wrap input {
  width: 15px;
  height: 15px;
  accent-color: var(--rr-color-theme-primary);
}

.review-form-wrap .checkbox-wrap label {
  color: var(--rr-color-text-body);
  cursor: pointer;
  margin-left: 10px;
}

.review-form-wrap .submit-btn .rr-primary-btn {
  padding: 15px 35px;
}

/* !END: Shop Details CSS */
/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-section {
  background: url(../img/bg-img/footer.png) no-repeat;
  background-position: center center;
  background-size: cover;
}

.footer-items {
  background-color: var(--rr-color-common-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 20px;
  padding: 30px 40px;
  border-radius: 6px;
  margin-bottom: 50px;
}

.footer-items .footer-item {
  display: grid;
  align-items: center;
  grid-template-columns: 35px 1fr;
  grid-gap: 15px;
  position: relative;
}

.footer-items .footer-item:before {
  background-color: var(--rr-color-border-1);
  content: "";
  width: 1px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: -25%;
  transform: translateY(-50%);
}

@media (max-width: 1199px) {
  .footer-items .footer-item:before {
    display: none;
  }
}

.footer-items .footer-item .icon {
  max-width: 35px;
  width: 100%;
}

.footer-items .footer-item .content .title {
  line-height: 1;
}

.footer-items .footer-item .content span {
  display: block;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .footer-items .footer-item .content span {
    line-height: 1.2;
  }
}

.footer-items .footer-item.item-2:before {
  display: none;
}

@media only screen and (max-width: 992px) {
  .footer-widget-wrap {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 992px) {
  .footer-widget {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 992px) {
  .footer-widget {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}

.footer-widget .widget-header {
  margin-bottom: 25px;
}

.footer-widget .widget-header .footer-logo {
  max-width: 170px;
}

.footer-widget .widget-header .widget-title {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.footer-widget .footer-contact {
  display: grid;
  align-items: center;
  grid-template-columns: 50px 1fr;
  grid-gap: 15px;
}

@media (max-width: 1199px) {
  .footer-widget .footer-contact {
    grid-template-columns: 1fr;
  }
}

.footer-widget .footer-contact .icon {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-theme-primary);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-widget .footer-contact .content span {
  display: block;
  margin-bottom: 5px;
}

.footer-widget .footer-contact .content a {
  color: var(--rr-color-theme-primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.footer-widget .schedule-list {
  margin-top: 20px;
  list-style: none;
}

.footer-widget .schedule-list li {
  font-size: 16px;
  color: var(--rr-color-heading-primary);
  font-weight: 500;
}

.footer-widget .schedule-list li:not(:last-of-type) {
  margin-bottom: 5px;
}

.footer-widget .schedule-list li span {
  color: var(--rr-color-text-body);
  font-weight: 400;
  margin-right: 10px;
}

.footer-widget .footer-list {
  list-style: none;
}

.footer-widget .footer-list li a {
  font-family: var(--rr-ff-body);
  color: var(--rr-color-text-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.footer-widget .footer-list li a:hover {
  color: var(--rr-color-theme-primary);
}

.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.footer-widget .footer-list.arrow-left li a {
  position: relative;
  padding-left: 20px;
}

.footer-widget .footer-list.arrow-left li a:before {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-weight: 700;
  content: "\f061";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.footer-widget .footer-list.arrow-left li a:hover {
  color: var(--rr-color-heading-primary);
}

.footer-widget .footer-list.social li i {
  width: 30px;
}

.footer-widget .footer-form {
  position: relative;
}

.footer-widget .footer-form .form-control {
  background-color: var(--rr-color-common-white);
  padding: 15px 132px 15px 15px;
  color: var(--rr-color-text-body);
  box-shadow: none;
  border: 1px solid var(--rr-color-border-1);
  border-radius: 2px;
}

.footer-widget .footer-form .form-control::-webkit-input-placeholder {
  color: var(--rr-color-text-body);
}

.footer-widget .footer-form .form-control:-moz-placeholder {
  color: var(--rr-color-text-body);
}

.footer-widget .footer-form .form-control::-moz-placeholder {
  color: var(--rr-color-text-body);
}

.footer-widget .footer-form .form-control:-ms-input-placeholder {
  color: var(--rr-color-text-body);
}

.footer-widget .footer-form .submit {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  height: 36px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 20px;
  border-radius: 4px;
}

.footer-widget .address-list {
  list-style: none;
  margin-bottom: 30px;
}

.footer-widget .address-list li {
  font-family: var(--rr-ff-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  column-gap: 10px;
}

.footer-widget .address-list li:not(:last-of-type) {
  margin-bottom: 15px;
}

.footer-widget .address-list li i {
  color: var(--rr-color-theme-primary);
  line-height: 1;
  margin-top: 6px;
}

.footer-widget .address-list li a {
  border-bottom: 1px solid transparent;
}

.footer-widget .address-list li a:hover {
  color: var(--rr-color-theme-primary);
  border-bottom: 1px solid var(--rr-color-theme-primary);
}

.footer-widget .social-list {
  display: flex;
  align-items: center;
  list-style: none;
}

.footer-widget .social-list li a {
  background-color: transparent;
  color: var(--rr-color-common-white);
  font-size: 14px;
  height: 40px;
  width: 40px;
  border-radius: 0;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget .social-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

.footer-widget .social-list li:not(:last-of-type) {
  margin-right: 10px;
}

.footer-widget .form-check {
  margin-top: 30px;
}

.footer-widget .form-check .form-check-input {
  background-color: var(--rr-color-border-1);
  border: none;
  box-shadow: none;
  height: 17px;
  width: 17px;
}

.footer-widget .form-check .form-check-input:checked[type=checkbox] {
  box-shadow: none;
}

.footer-widget .form-check .form-check-label {
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.footer-widget.footer-col-2 {
  padding-left: 70px;
}

@media only screen and (max-width: 992px) {
  .footer-widget.footer-col-2 {
    padding-left: 0;
  }
}

.footer-widget.footer-col-2 .footer-list li a {
  position: relative;
  padding-left: 30px;
}

.footer-widget.footer-col-2 .footer-list li a:before {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 700;
  content: "\f356";
  color: var(--rr-color-text-body);
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.footer-widget.footer-col-2 .footer-list li a:hover:before {
  color: var(--rr-color-theme-primary);
  left: 5px;
}

.footer-widget.widget-3 {
  padding-left: 30px;
}

@media only screen and (max-width: 992px) {
  .footer-widget.widget-3 {
    padding-left: 0;
  }
}

.footer-widget.footer-col-4 .footer-form .submit {
  position: inherit;
  transform: translate(0);
  margin-top: 10px;
}

.copyright-content {
  border-top: 1px solid var(--rr-color-border-1);
  padding: 20px 0;
  align-items: center;
}

@media only screen and (max-width: 992px) {
  .copyright-content {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .copyright-content {
    row-gap: 20px;
    padding: 40px 0;
  }
}

.copyright-content p {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  margin: 0;
  align-items: center;
}

.copyright-content p span {
  color: var(--rr-color-theme-primary);
}

@media only screen and (max-width: 992px) {
  .copyright-content p {
    margin-top: 10px;
    text-align: center;
  }
}

.copyright-content .footer-img-wrap {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 992px) {
  .copyright-content .footer-img-wrap {
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .copyright-content .footer-img-wrap {
    flex-direction: column;
    row-gap: 10px;
  }
}

.copyright-content .footer-img-wrap span {
  color: var(--rr-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}

.copyright-content .footer-img-wrap .footer-img {
  margin-left: 10px;
}

.copyright-content .footer-img-wrap .footer-img img {
  max-width: 265px;
  width: 100%;
}

/* !END: Theme Footer CSS */
/************extra css*************/
.game-bg {
  background: url(../img/bg-img/banner-12.jpg) no-repeat;
  height: 350px;
  background-size: cover;
  background-position: center center;
  padding: 60px;
}

.game-bg span {
  background-color: #0d6efd;
  color: var(--rr-color-common-white);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  padding: 0 10px;
  padding-right: 0;
  position: relative;
  z-index: 1;
  overflow-y: clip;
  border-radius: 4px;
  margin-bottom: 15px;
}

.game-bg span:before {
  background-color: #0d6efd;
  content: "";
  width: 25px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -10px;
  transform: rotate(45deg);
  z-index: -1;
  border-radius: 4px;
}

.game-bg .title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

@media only screen and (max-width: 767px) {
  .game-bg .title {
    font-size: 18px;
  }
}

.game-bg p {
  font-size: 18px;
  color: white;
  margin-bottom: 25px;
}

@media (max-width:575px) {
  .game-bg p {
    font-size: 11px;
  }
}

.game-bg .cta-btn {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  padding: 5px 15px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.game-bg .cta-btn i {
  color: #0d6efd;
}

/*cta section*/
/* @media(max-width:575px){
  .offer-bg{
    height: 350px!important;
  }
}
.offer-bg{
  background: url(../img/bg-img/shoe-banner.webp) no-repeat;
  height: 410px;
  background-size: cover;
  padding: 60px;
} */
.offer-bg span {
  background-color: #0d6efd;
  color: var(--rr-color-common-white);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  padding: 0 10px;
  padding-right: 0;
  position: relative;
  z-index: 1;
  overflow-y: clip;
  border-radius: 4px;
  margin-bottom: 15px;
}

.offer-bg span:before {
  background-color: #0d6efd;
  content: "";
  width: 25px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -10px;
  transform: rotate(45deg);
  z-index: -1;
  border-radius: 4px;
}

.offer-bg .title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

@media only screen and (max-width: 767px) {
  .offer-bg .title {
    font-size: 17px;
  }
}

.offer-bg p {
  font-size: 18px;
  color: var(--rr-color-heading-primary);
  margin-bottom: 25px;
  color: white;
}

@media (max-width:575px) {
  .offer-bg p {
    font-size: 11px;
  }
}

.offer-bg .cta-btn {
  background-color: var(--rr-color-common-white);
  color: var(--rr-color-heading-primary);
  padding: 5px 15px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.offer-bg .cta-btn i {
  color: #0d6efd;
}

/******end cta*********/
/******************/
.menu-item {
  width: 30px;
  height: 30px;
  border: 2px solid #f0f0f0;
  padding: 3px;
  border-radius: 50%;
  margin-right: 10px;
}

@media (max-width:575px) {
  .carousel-item img {
    width: 100%;
    height: 150px;
  }
}

.banner-item {
  background: url(../img/bg-img/banner-12.jpg) no-repeat;
  height: 200px;
  background-position: center center;
  background-size: cover;
}

.banner-text h3 {
  color: white;
  padding: 30px;
  font-size: 25px;
}

.banner-text p {
  color: white;
  padding: 0px 10px;
}

.banner-item-1 {
  background: url(../img/bg-img/banner-11.jpg) no-repeat;
  height: 200px;
  background-position: center center;
  background-size: cover;
}

/*****pagination***/
.pagination-wrap {
  display: flex;
  align-items: center;
  list-style: none;
  column-gap: 10px;
}

.pagination-wrap li a {
  background-color: #ffffff;
  color: var(--rr-color-heading-primary);
  font-weight: 600;
  height: 50px;
  width: 50px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.pagination-wrap li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

.pagination-wrap li .active {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}

@media(max-width:575px) {
  .grocerybanner img {
    height: 175px;
    width: 100%;
  }
}

/******shop extra*********/
/* .single-item{ width:300px; height:300px;}
  .slide{ width:300px; height:300px; font-size:50px; color:red; background:#ccc; float:left}

.shop-ecom{
  border: 1px solid rgb(226, 226, 226);
  padding: 20px 20px 50px;
} */
/************cancel policy***********/
.bank-name {
  color: #0d6efd !important;
  font-weight: 500;
}

.heading-center {
  font-size: 20px;
  font-weight: 700;
  text-align: center !important;
}

.policy-table {
  font-size: 13px;
  text-align: justify;
}

.policy-list {
  font-size: 15px;
  text-align: justify;
}

.term-list {
  font-size: 13px;
  font-weight: 600;
  text-align: justify;
  list-style: none;
  margin-bottom: 10px;
}

.form-border {
  color: #000000;
  text-align: justify;
}

/*************PLACE ORDER CSS***************/
.placeordercart {
  padding: 12px 16px;
  margin-bottom: 20px;
}

.placeordertext {
  color: #717478;
  font-size: 15px;
  font-weight: 600;
}

@media(max-width:575px) {
  .placeordertext {
    margin-left: 15px;
  }
}

.delivery-address {
  padding: 10px;
  margin-bottom: 20px;
}

.delivery-address-header {
  background: #0d6efd;
  padding: 5px 8px;
}

.second-address {
  border-top: 1px solid #f0f0f0;
  padding: 16px 24px 12px;
}

.first-address {
  padding: 16px 24px 12px;

}

/* .new-address {
  padding: 25px 44px;
} */

/*******product image insta********/
.img-rounded {
  height: 80px;
  width: 80px;
}

.sidebar-widget .blog-gallery-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 10px;
}

@media (max-width: 1399px) {
  .sidebar-widget .blog-gallery-wrap {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 992px) {
  .sidebar-widget .blog-gallery-wrap {
    display: flex;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
  }
}

/* .sidebar-widget .blog-gallery-wrap .gallary-img {
  height: 20px;
  width: 100%;
} */
.gallary-img img {
  height: 50px;
  width: 50px;
}

/*********rating css**************/
.btn-grey {
  background-color: #D8D8D8;
  color: #FFF;
}

.rating-block {
  background-color: #FAFAFA;
  border: 1px solid #EFEFEF;
  padding: 15px 15px 20px 15px;
  border-radius: 3px;
}

.bold {
  font-weight: 700;
}

.padding-bottom-7 {
  padding-bottom: 7px;
}

.review-block {
  background-color: #FAFAFA;
  border: 1px solid #EFEFEF;
  padding: 15px;
  border-radius: 3px;
  margin-bottom: 15px;
}

.review-block-name {
  font-size: 12px;
}

.review-block-date {
  font-size: 12px;
}

.review-block-rate {
  font-size: 13px;
  margin-bottom: 15px;
}

.review-block-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.review-block-description {
  font-size: 13px;
}

.product-quality {
  padding: 8px;
  border-radius: 2px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .18);
  background-color: #fff;
  font-size: 12px;
  color: #212121;
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0 12px 12px;
}

/*************question section css**********/
.question-section {
  border: 1px solid #efefef;
  padding: 15px;
}

.question {
  font-weight: 600;
  color: #000000;
  font-size: 13px;
}

.answer {
  font-size: 13px;
}

.thumbs-up {
  font-size: 12px;
}

.thumbs-down {
  font-size: 12px;
}

.best-product {
  padding: 10px 20px;
}

/**********trending css***********/
.trending-style {
  padding: 10px 15px;
}

.trending-style span {
  color: #000000;
  font-weight: 600;
}

.product-view-img {
  height: 250px;
  width: 100%;
}

/******recent view css********/
.recent-view {
  padding: 25px;
}

.product-view-details {
  margin-top: 10px;
  font-weight: 600;
}

/***********other seller css**********/
.otherseller {
  padding: 20px;
}

.seller-name {
  float: right;
}

.sellerdetails {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
  padding: 10px;
}

.otherseller_details {
  padding: 10px;
}

/******all review css**********/
.allreview {
  padding: 25px;
}

.review-image img {
  width: 250px;
  height: 250px;
}

.review-details p {
  color: #000000;
  font-weight: 600;
  font-size: 18px;
}

.all-review-btn {
  line-height: normal;
  display: inline-block;
  color: #fff;
  padding: 2px 4px 2px 6px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 12px;
  vertical-align: middle;
  background-color: #388e3c;
}

.customer-review {
  color: #000000;
  font-size: 15px;
  margin-left: 10px;
}

.customer-action {
  float: right;
  margin-top: 120px;
}

.customer_review_section {
  border: 1px solid #f0f0f0;
  padding: 20px;
  margin-top: 20px;
}

.review-one {
  border-bottom: 1px solid #f0f0f0;
  padding-top: 10px;
  padding-bottom: 10px;
}

/*******wishlist css*********/
.wishlist_item {
  padding: 30px;
}

.wishlist_item img {
  width: 100%;
  height: 300px;
}

.wishlist_detail {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.wishlist_detail span {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
}

.wishlist_modal {
  margin-top: 10px;
  font-weight: 700;
  color: #0d6efd;
}

/*----------------------------------------*/
/*  Profile CSS
/*----------------------------------------*/
.profile_details {
  color: #000000;
  font-weight: 500;
  font-size: 13px;
}

.personal_details {
  border: 1px solid #f0f0f0;
  padding: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .profile__tab {
    margin-right: 0;
    margin-bottom: 50px;
  }
}

.profile__tab .nav-tabs {
  background-color: white;
  padding: 0;
  border: 0;
  margin: 0;
  box-shadow: 0px 30px 50px rgba(5, 47, 40, 0.12);
}

.profile__tab .nav-tabs .nav-link {
  font-weight: 500;
  font-size: 14px;
  color: #767a7d;
  padding: 14px 30px;
  background-color: white;
  position: relative;
  border-radius: 0;
  text-align: left;
  border: 0;

}

[dir=rtl] .profile__tab .nav-tabs .nav-link {
  text-align: right;
}

.profile__tab .nav-tabs .nav-link span {
  margin-right: 7px;
}

[dir=rtl] .profile__tab .nav-tabs .nav-link span {
  margin-right: 0;
  margin-left: 7px;
}

.profile__tab .nav-tabs .nav-link.active {
  color: #007bff;
  background-color: rgba(9, 137, 255, 0.06);
}

.profile__tab .nav-tabs .nav-link.active:hover {
  background-color: rgba(9, 137, 255, 0.06);
}

.profile__tab .nav-tabs .nav-link:hover {
  background-color: #FFB21D;
}

.profile__tab .tab-menu {
  position: relative;
}

.profile__tab .tab-line {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 2px;
  height: auto;
}

[dir=rtl] .profile__tab .tab-line {
  left: auto;
  right: 0;
}

.profile__tab-content {
  padding: 20px 30px 30px;
}

.profile__info-title {
  font-size: 20px;
  margin-bottom: 25px;
}

.profile__input {
  margin-bottom: 25px;
  position: relative;
}

.profile__input-box h4 {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: black;
  margin-bottom: 10px;
}

.profile__input-box h4 span {
  color: #0989ff;
}

.profile__input-box p {
  font-size: 13px;
  color: white;
  opacity: 0.7;
  margin-bottom: 10px;
}

.profile__input>span {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

[dir=rtl] .profile__input>span {
  left: auto;
  right: 20px;
}

.profile__input>span svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.profile__input input,
.profile__input textarea {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 25px;
  padding-left: 50px;
  border: 0;
  outline: 0;
  border: 1px solid #EAEAEF;
  background-color: white;
  color: black;
}

[dir=rtl] .profile__input input,
[dir=rtl] .profile__input textarea {
  padding-left: 25px;
  padding-right: 50px;
}

.profile__input input:focus,
.profile__input textarea:focus {
  border-color: #0989ff;
}

.profile__input textarea {
  line-height: 1.5;
  padding: 20px;
  resize: none;
  height: 200px;
  resize: none;
}

.profile__input .form-select {
  width: 100%;
  float: none;
  height: 60px;
  border: 1px solid #EAEAEF;
  border-radius: 0;
  line-height: 58px;
  padding-left: 27px;
}

[dir=rtl] .profile__input .form-select {
  padding-left: 0;
  padding-right: 27px;
}

.profile__input .form-select .current {
  color: black;
}

.profile__input .form-select::after {
  right: 25px;
  color: black;
}

[dir=rtl] .profile__input .form-select::after {
  left: 25px;
  right: auto;
}

.profile__input .form-select.open .list {
  -webkit-transform: scale(1) translateY(0px);
  -moz-transform: scale(1) translateY(0px);
  -ms-transform: scale(1) translateY(0px);
  -o-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px);
}

.profile__input .form-select .list {
  width: 100%;
  border-radius: 0;
  margin-top: 0;
  padding: 13px 8px;
  transform-origin: center center;
  -webkit-transform: scale(0.9) translateY(0px);
  -moz-transform: scale(0.9) translateY(0px);
  -ms-transform: scale(0.9) translateY(0px);
  -o-transform: scale(0.9) translateY(0px);
  transform: scale(0.9) translateY(0px);
  width: 100%;
}

.profile__input .form-select .list .option:hover {
  color: black;
}

.profile__password input {
  padding: 0 20px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .profile__address-item {
    margin-bottom: 40px;
  }
}

.profile__address-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.profile__address-icon span {
  display: inline-block;
  min-width: 45px;
  margin-right: 20px;
}

[dir=rtl] .profile__address-icon span {
  margin-right: 0;
  margin-left: 20px;
}

@media (max-width: 575px) {
  .profile__address-icon span {
    margin-bottom: 20px;
  }
}

.profile__address-icon span svg {
  width: 45px;
}

.profile__address-icon span svg path {
  fill: #0989ff;
}

.profile__address-content p {
  font-size: 14px;
  margin-bottom: 10px;
}

.profile__address-content p span {
  color: black;
  font-weight: 500;
  margin-right: 7px;
}

[dir=rtl] .profile__address-content p span {
  margin-right: 0;
  margin-left: 7px;
}

.profile__notification-wrapper {
  padding: 20px;
}

.profile__notification-title {
  font-size: 20px;
  color: black;
  margin-bottom: 20px;
}

.profile__notification-item {
  padding: 20px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.notification_detail {
  font-size: 15px;
  color: #000000;
  font-weight: 500;
}

.notification_date {
  font-size: 12px;
  font-weight: 700;
}

.profile__btn .tp-btn {
  padding: 14px 39px;
}

@media (max-width: 575px) {
  .profile__main-inner {
    margin-bottom: 20px;
  }
}

.profile__main-thumb {
  position: relative;
}

.profile__main-thumb img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 16px;
}

[dir=rtl] .profile__main-thumb img {
  margin-right: 0;
  margin-left: 16px;
}

@media (max-width: 575px) {
  .profile__main-thumb img {
    margin-bottom: 20px;
  }
}

.profile__main-thumb-edit input {
  display: none;
}

.profile__main-thumb-edit label {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: #000000;
  width: 30px;
  height: 30px;
  line-height: 24px;
  border: 2px solid #000000;
  text-align: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

[dir=rtl] .profile__main-thumb-edit label {
  right: 0;
  bottom: 0;
}

.profile__main-thumb-edit label:hover {
  cursor: pointer;
  color: white;
  background-color: black;
  border: 2px solid #000000;
}

.profile__main-title {
  font-size: 20px;
  margin-bottom: 0;
}

.profile__main-content p {
  font-size: 14px;
  margin-bottom: 0;
}

.profile__main-content p span {
  color: #007bff;
  font-weight: 500;
}

.profile__main-info-item {
  border: 1px solid black;
  text-align: center;
  padding: 27px 30px 25px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .profile__main-info-item {
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .profile__main-info-item {
    padding: 22px 0 20px;
  }
}

.profile__main-info-icon {
  position: relative;
  margin-bottom: 15px;
}

.profile__main-info-icon>span {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

.profile__main-info-icon>span svg {
  width: 60px;
}

.profile__main-info-icon>span svg path {
  fill: black;
}

.profile__main-info-icon .profile-icon-count {
  position: absolute;
  top: 2px;
  right: -8px;
  width: 25px;
  height: 25px;
  line-height: 20px;
  border: 2px solid white;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
}

[dir=rtl] .profile__main-info-icon .profile-icon-count {
  right: auto;
  left: -8px;
}

.profile__main-info-title {
  font-size: 18px;
  margin-bottom: 0;
}


.logout-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: black;
  padding: 6px 18px;
  border: 1px solid black;
  text-align: center;
}

.logout-btn:hover {
  background-color: #007bff;
  border-color: #007bff;
  color: #ffffff;
}

.cashback_reward_wrapper {
  padding: 20px;
}

/******order page css**/
.delivered-order {
  padding: 10px 5px;
}

.deliver-item {
  font-size: 13px;
  color: #000000;
}

.rate_product {
  color: #007bff;
  font-weight: 600;
  font-size: 15px;
}

.refund_item {
  /* border: 1px solid #f0f0f0; */
  padding: 20px;
}

.refund {
  color: #008000;
  font-weight: 500;
  font-size: 16px;
}

.refund-id {
  color: #808080;
  font-size: 12px;
  font-weight: 600;
  margin-left: 5px;
}

.refund_money {
  margin-top: 10px;
  color: #000000;
  font-size: 14px;
}

/***********rating css*********/
.rating_review {
  padding: 20px;
}

.rating_img {
  float: right;
}

.good-review {
  padding: 10px;
}

.review-section {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  border-top: 1px solid #f0f0f0;
}

.review-product {
  color: #000000;
  font-size: 18px;
}

.review-detail {
  font-size: 14px;
  color: #000000;
}

.review-part {
  padding: 10px;
}

.rate-us {
  padding: 20px;
}

.rate {
  float: left;
  height: 46px;
}

.rate:not(:checked)>input {
  position: absolute;
  top: -9999px;
}

.rate:not(:checked)>label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 30px;
  color: #ccc;
}

.rate:not(:checked)>label:before {
  content: '★ ';
}

.rate>input:checked~label {
  color: #ffc700;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
  color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
  color: #c59b08;
}

.rating_product {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.product_desc {
  padding: 10px;
}

.submit_review {
  padding: 20px;
}

.review_btn {
  float: right;
}

@media(max-width:575px) {
  .review_btn {
    float: left;
  }
}

/**********order details page css******/
.order-details-page {
  padding: 20px;
}

.order_delivery-address {
  border-right: 1px solid #f0f0f0;
}

.order_delivery-address h5 {
  font-size: 18px;
}

.order_delivery-address h6 {
  font-size: 15px;
  margin-top: 15px;
}

.order_delivery-address span {
  font-size: 13px;
  font-weight: 600;
}

.order_delivery-address p {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}

.order_product_details p {
  color: #717478;
  font-size: 12px;
  font-weight: 600;
  line-height: 10px;
}

.hh-grayBox {
  background-color: #F8F8F8;
  margin-bottom: 20px;
  padding: 35px;
  margin-top: 20px;
}

.pt45 {
  padding-top: 45px;
}

.order-tracking {
  text-align: center;
  width: 33.33%;
  position: relative;
  display: block;
}

.order-tracking .is-complete {
  display: block;
  position: relative;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  border: 0px solid #AFAFAF;
  background-color: #008000;
  margin: 0 auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
  z-index: 2;
}

.order-tracking .is-complete:after {
  display: block;
  position: absolute;
  content: '';
  height: 14px;
  width: 7px;
  top: -2px;
  bottom: 0;
  left: 5px;
  margin: auto 0;
  border: 0px solid #AFAFAF;
  border-width: 0px 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.order-tracking.completed .is-complete {
  border-color: #008000;
  border-width: 0px;
  background-color: #008000;
}

.order-tracking.completed .is-complete:after {
  border-color: #fff;
  border-width: 0px 3px 3px 0;
  width: 7px;
  left: 11px;
  opacity: 1;
}

.order-tracking p {
  color: #A4A4A4;
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 20px;
}

.order-tracking p span {
  font-size: 14px;
}

.order-tracking.completed p {
  color: #000;
}

.order-tracking::before {
  content: '';
  display: block;
  height: 3px;
  width: calc(100% - 40px);
  background-color: #008000;
  top: 13px;
  position: absolute;
  left: calc(-50% + 20px);
  z-index: 0;
}

.order-tracking:first-child:before {
  display: none;
}

.order-tracking.completed:before {
  background-color: #008000;
}

/*****cancel order css*****/
.step-indicator {
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.step {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.step-indicator .step-icon {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ff0000;
  font-size: 10px;
  text-align: center;
  color: #ffffff;
  position: relative;
  line-height: 50px;
  font-size: 20px;
}

.step.active .step-icon {
  background: #008000;
}

.step p {
  text-align: center;
  position: absolute;
  bottom: -40px;
  color: #000000;
  font-size: 15px;

}

.step.active p {
  color: #000000;
  font-size: 15px;
}

.step.step2 p,
.step.step3 p {
  left: 50%;
  transform: translateX(-50%);
}

.indicator-line {
  width: 100%;
  height: 2px;
  background: #ff0000;
  flex: 1;
}

.indicator-line.active {
  background: crimson;
}

@media screen and (max-width: 500px) {
  .step p {
    font-size: 11px;
    bottom: -20px;
  }
}

.order-placed {
  padding: 20px;
}

.mobile-fix-option {
  display: none
}

@media screen and (max-width: 577px) {
  .mobile-fix-option {
    background-color: white;
    bottom: 0;
    display: block !important;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 8
  }

  .mobile-fix-option ul {
    align-items: center;
    display: flex;
    justify-content: space-evenly;
    list-style: none;
  }

  .mobile-fix-option ul li a {
    display: grid;
    font-weight: 500;
    padding: 8px 6px;
    text-align: center;
    transition: all .4s ease-in-out
  }

  .mobile-fix-option ul li a .iconsax {
    font-size: calc(14.4px + .5vw);
    line-height: 0;
    transition: all .4s ease-in-out;
    margin: 0 auto
  }
}

@media screen and (max-width: 577px) and (max-width:420px) {
  .mobile-fix-option ul li a {
    font-size: 13px
  }
}

@media(max-width:575px) {
  .login-area {
    padding-top: 0px;
  }
}

.service-image img {
  height: 250px;
  width: 100%;
}

/************dashboard css**************/
.single-banner-slide {
  height: 350px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

@media(max-width:575px) {
  .single-banner-slide {
    height: 150px;
  }
}

.single-banner-slide span {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
}

@media(max-width:575px) {
  .single-banner-slide span {
    font-size: 18px;
  }
}

.single-banner-slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.single-banner-slide p {
  color: #fff;
  font-size: 15px;
  /* max-width: 50%; */
  margin: 0 auto;
  text-align: center;
}

.single-banner-slide a:hover {
  color: #fff;
  background: #000;
}

.owl-dots {
  display: none !important;
}

/* .dashboard-image {
  background: url(../img/bg-img/dashboard.jpg) no-repeat;
  height: 250px;
  background-position: center;
  background-size: cover;
} */

.dashboard-content {
  padding: 20px 20px 10px;
  position: relative;
  background: url(../img/bg-img/dashboard-bg.jpg) no-repeat;
  border-radius: 20px;
  border-top: 5px solid #0dcaf0;
  box-shadow: 0px 6px 5px 0px rgba(199, 199, 199, 1);
}

@media(max-width:575px) {
  .dashboard-content {
    padding: 20px 20px 10px;
  }
}

/* @media(max-width:575px) {
  .dashboard-image img {
    height: 165px;
  }
} */
.service-three {
  position: relative;
  background-color: #f1f6f7;
  padding: 50px 0;
}

@media (max-width: 767px) {
  .service-three {
    padding: 30px 0;
  }
}

.service-three__shape-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
}

.service-three__shape-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
}

.service-three__item {
  position: relative;
  background-color: transparent;
  border: 1px solid #adadad;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  padding: 9px 9px 0;
  transition: all 500ms ease;
  background: white;
}

.service-three__item:hover {
  background-color: #fff;
  border-color: #fff;
}

.service-three__item__normal {
  position: relative;
  z-index: 1;
}

.service-three__item__image {
  position: relative;
}

.service-three__item__image img {
  width: 100%;
  height: 200px;
  object-position: top;
  object-fit: cover;
  border-radius: 10px;
}

@media(max-width:575px) {
  .service-three__item__image img {
    height: 300px;
  }
}

.service-three__item__icon {
  font-size: 32px;
  line-height: 1;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -52px auto 23px;
  background-color: transparent;
  width: 85px;
  height: 85px;
  transition: 300ms ease;
}

.service-three__item__icon::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accent-color);
  z-index: -1;
  transition: 500ms ease;
}

.service-three__item__icon::before {
  position: absolute;
  left: 6px;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  content: "";
  border-style: dashed;
  border-width: 1px;
  border-color: #fff;
  border-radius: 50%;
  animation-duration: 1500ms;
  animation: rotated 10s infinite linear;
  transition: 500ms all ease;
  animation-play-state: running;
}

.service-three__item__icon span {
  display: inline-block;
  transition: all 500ms linear;
  transform: scale(1);
  color: #fff;
  margin-left: 5px;
}

.service-three__item__title {
  font-size: 17px;
  transition: all 300ms ease;
  position: relative;
  margin-bottom: 10px;
}

.service-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}

.service-three__item__title a:hover {
  color: #ff5528;
  background-size: 100% 1px;
}

.service-three__item__text {
  position: relative;
  z-index: 2;
  transition: all 300ms ease;
  padding: 0 20px;
  margin: 0 0 15px;
}

.service-three__item__rm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 20px;
  border-top: 1px solid #dddddd;
  font-size: 16px;
  color: #636363;
  text-transform: capitalize;
  line-height: 1.1;
  padding: 16px 0;
  transition: all 300ms ease;
}

.service-three__item__rm a {
  display: inline-block;
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  transition: all 300ms ease;
}

.service-three__item__rm a:hover {
  background-size: 100% 1px;
}

.service-three__item__rm a:hover {
  color: inherit;
}

.service-three__item__rm i {
  color: var(--accent-color);
  font-size: 20px;
  position: relative;
  top: 1px;
  transition: all 300ms ease;
}

.service-three__item__hover {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  margin: auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 700ms ease, top 700ms ease;
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: center center;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
}

.service-three__item__hover::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 100%;
  height: 368px;
  z-index: -1;
  background-image: url(../images/shapes/overlay-service.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  transition: all ease 0.5s;
}

.service-three__item__hover__icon {
  font-size: 42px;
  line-height: 1;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -52px auto 23px;
  color: #fff;
  width: 105px;
  height: 105px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accent-color);
}

.service-three__item__hover__icon::after {
  position: absolute;
  left: 17px;
  top: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  content: "";
  border-style: dashed;
  border-width: 1px;
  border-color: #fff;
  border-radius: 50%;
  animation-duration: 1500ms;
  animation: rotated 10s infinite linear;
  animation-play-state: running;
  z-index: 1;
}

.service-three__item__hover__icon span {
  position: relative;
  left: 4px;
  z-index: 2;
}

.service-three__item__hover__title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  transition: all 300ms ease;
  position: relative;
  margin-bottom: 10px;
}

.service-three__item__hover__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}

.service-three__item__hover__title a:hover {
  color: #ff5528;
  background-size: 100% 1px;
}

.service-three__item__hover__text {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
  margin: 0 0 15px;
}

.service-three__item__hover__rm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: calc(100% - 60px);
  border-top: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.1;
  padding: 16px 0;
  transition: all 300ms ease;
}

.service-three__item__hover__rm a {
  display: inline-block;
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  transition: all 300ms ease;
}

.service-three__item__hover__rm a:hover {
  background-size: 100% 1px;
}

.service-three__item__hover__rm a:hover {
  color: inherit;
}

.service-three__item__hover__rm i {
  font-size: 20px;
  position: relative;
  top: 1px;
  transition: all 300ms ease;
}

.service-three__item:hover .service-three__item__hover {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

.service-three__text {
  font-size: 24px;
  color: #122f2a;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 73px;
}

@media (max-width: 767px) {
  .service-three__text {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .service-three__text {
    margin-top: 20px;
    display: block;
    text-align: center;
  }
}

.service-three__text>span {
  color: #ff5528;
  margin-right: 7px;
}

.service-three__text .careox-btn {
  margin-left: 16px;
  padding: 3px 32px;
}

.service-three__text .careox-btn::before {
  background-color: #ff5528;
}

@keyframes rotated {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/********refferal link css*************/
.donation-details__share {
  position: relative;
  background-color: #00000020;
  border-radius: 20px;
  border-top: 5px solid #ffbf00;
  padding: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .donation-details__share {
    padding: 35px 22px;
  }
}

.separator {
  display: flex;
  align-items: center;
}

.separator .line {
  height: 1px;
  flex: 1;
  background-color: #7b7b7b;
}

.separator h2 {
  padding: 0 2rem;
}

.refferal-social {
  font-size: 25px;
}

.sec-title {
  position: relative;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 46px;
    margin-top: -3px;
  }
}

.sec-title__tagline {
  margin: 0;
  color: #0dcaf0;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1.2px;
  font-size: 18px;
  line-height: 1em;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .sec-title__tagline {
    font-size: 22px;
    letter-spacing: 2.2px;
    margin-bottom: 16px;
  }
}

.sec-title__tagline__border {
  width: 4px;
  height: 17px;
  display: inline-block;
  background-color: #0dcaf0;
  position: relative;
  top: 2px;
  margin-right: 10px;
}

.sec-title__tagline__border::after {
  position: absolute;
  right: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent currentColor;
  content: "";
  animation: zump 2s linear infinite;
}

@keyframes zump {

  0%,
  100% {
    transform: translateY(0);
  }

  25%,
  75% {
    transform: translateY(5px);
  }

  50% {
    transform: translateY(-5px);
  }
}

/*************recently view css**************/
.recent-view-item {
  background-color: var(--rr-color-common-white);
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  height: 320px;
}

.recent-view-item .new {
  background-color: var(--rr-color-theme-third);
  color: var(--rr-color-common-white);
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  border-radius: 50%;
}

.recent-view-item .recent-view-image {
  padding: 20px 20px 30px 20px;
}

.recent-view-item .recent-view-image img {
  height: 185px;
  max-width: 185px;
  width: 100%;
  margin: 0 auto;
  object-fit: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media(max-width:575px) {
  .recent-view-item .recent-view-image img {
    height: 200px;
    width: 200px;
  }
}

.recent-view-item .shop-content {
  text-align: center;
  border: none;
  padding: 10px;
}

.recent-view-item .shop-content .title {
  text-transform: uppercase;
}

.recent-view-item .shop-content .review-wrap {
  margin-top: 5px;
}

.recent-view-item:hover .recent-view-image img {
  transform: scale(1.02);
}

/**********product activation css********/
.activation-item {
  border-radius: 6px;
  overflow: hidden;
  background: white;
}

.activation-item .activation-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.activation-item .activation-thumb img {
  transform: scale(1);
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 250px;
}

@media(max-width:575px) {
  .activation-item .activation-thumb img {
    height: 170px;
    width: 100%;
  }
}

.activation-item .activation-thumb .sale {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 20px;
  position: absolute;
  top: 30px;
  left: 30px;
  display: inline-block;
  z-index: 2;
}

.activation-content {
  padding: 30px;
  border: 1px solid var(--rr-color-border-1);
  border-top: none;
  border-radius: 0 0 6px 6px;
  background: white;
}

@media only screen and (max-width: 767px) {
  .activation-content {
    padding: 20px 20px;
  }
}

.activation-content .category {
  font-size: 12px;
  font-weight: 400;
  color: var(--rr-color-text-body);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.activation-content .title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}

.activation-content .price {
  color: var(--rr-color-theme-primary);
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  display: flex;
  /* align-items: center; */
}

.activation-content .price .offer {
  margin-top: 0;
  margin-right: 10px;
  text-decoration: line-through;
  color: var(--rr-color-text-body);
}

/**********team css****************/

.feature-two {
  position: relative;
  z-index: 2;
  padding: 120px 0 0;
  counter-reset: count;
}

@media (max-width: 1300px) {
  .feature-two {
    margin-top: 0;
    padding-top: 80px;
  }
}

.feature-two__item {
  position: relative;
  z-index: 1;
  counter-increment: count;
  padding: 64px 0 21px;
}

.feature-two__item__inner {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  overflow: hidden;
  min-height: 117px;
  width: 100%;
  background-color: white;
  border-radius: 58px;
  padding: 24px 30px 20px 119px;
}

.feature-two__item__inner::after {
  background-color: var(--accent-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
  border-radius: 58px;
  transition: all 700ms ease;
  z-index: -1;
}

.feature-two__item:hover .feature-two__item__inner:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.feature-two__item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--accent-color);
  position: absolute;
  left: 39px;
  top: 0;
  margin: auto;
  bottom: 0;
  z-index: 1;
  transition: 400ms ease;
}

.feature-two__item__icon::after {
  position: absolute;
  left: 0;
  top: -20px;
  margin: auto;
  bottom: 0;
  width: 38px;
  height: 33px;
  content: "";
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accent-color);
  opacity: 0.13;
  transition: 400ms ease;
}

.feature-two__item__icon span {
  transform: scale(1);
  transition: 500ms ease;
  position: relative;
  z-index: 1;
}

.feature-two__item:hover .feature-two__item__icon {
  color: var(--careox-white, #fff);
}

.feature-two__item:hover .feature-two__item__icon::after {
  background-color: var(--careox-white, #fff);
}

.feature-two__item:hover .feature-two__item__icon span {
  transform: scale(0.9);
}

.feature-two__item__title {
  font-size: 18px;
  font-weight: 800;
  transition: 300ms ease;
  margin: 0 0 9px;
}

.feature-two__item:hover .feature-two__item__title {
  color: var(--careox-white, #fff);
}

.feature-two__item__text {
  transition: 300ms ease;
  margin: 0;
  font-size: 12px;
}

.feature-two__item:hover .feature-two__item__text {
  color: var(--careox-white, #fff);
}

.feature-two__item__rm {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--careox-white, #fff);
  background-color: var(--accent-color);
  position: absolute;
  font-size: 16px;
  top: auto;
  right: 0;
  left: 0;
  bottom: -21px;
  margin: 0 auto;
  transform: rotate(90deg);
  transition: 400ms ease;
}

.feature-two__item__rm:hover {
  transform: rotate(0);
}

.feature-two__item__shape {
  position: absolute;
  right: 27px;
  bottom: 0;
  width: 215px;
  height: 0;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.11;
  visibility: visible;
  transition: 600ms ease;
}

.feature-two__item:hover .feature-two__item__shape {
  height: 100px;
  visibility: visible;
}

.feature-two__item__number {
  width: 75px;
  height: 60px;
  background-color: var(--careox-gray, #f1f6f7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 117px;
  margin: auto;
  font-family: var(--careox-special-font, "Caveat", cursive);
  color: var(--accent-color);
  font-size: 34px;
  font-weight: 700;
  z-index: 2;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .feature-two__item__number {
    top: 166px;
  }
}

.feature-two__item__number::after {
  content: counters(count, ".", decimal-leading-zero);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 9px;
  left: -4px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-two__item__number::before {
  background-color: var(--careox-white, #fff);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 700ms ease;
  z-index: -1;
}

.feature-two__item:hover .feature-two__item__number {
  color: var(--accent-color);
}

.feature-two__item:hover .feature-two__item__number::before {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.feature-two__item__image {
  position: relative;
}

.feature-two__item__image img {
  width: 100%;
  height: 300px;
  border-radius: 0 0 20px 20px;
}

/***********gallery css***************/
.gallery-img {
  height: 250px;
  width: 100%;
}

.gallery-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

@media(max-width:575px) {
  .gallery-img {
    height: 125px;
  }
}

.gallery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.gallery__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: marquee 10s linear infinite;
  animation: marquee 10s linear infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.gallery__slider:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.gallery__single {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 76.9230769231%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.gallery__single::after {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: rgba(9, 31, 27, 0.5019607843);
  width: 100%;
  height: 0%;
  z-index: -1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.gallery__single:hover a {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.gallery__single:hover::after {
  height: 100%;
}

.gallery__single:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.gallery__single img {
  width: 100%;
  height: 250px;
  z-index: -2;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.gallery__single a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--base-bg);
  color: var(--base-color);
  font-size: 24px;
}

.gallery__single a:hover {
  background-color: var(--white);
  color: var(--black);
}

@media (min-width: 768px) {
  .gallery__single {
    width: 33.3333333333%;
  }
}

@media (min-width: 992px) {
  .gallery__single {
    width: 25%;
  }
}

@media (min-width: 1200px) {
  .gallery__single {
    width: 20%;
  }
}

@media (min-width: 1600px) {
  .gallery__single {
    width: 16.6666666667%;
  }
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes marquee-rtl {
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes marquee-rtl {
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

/*************category slider css**********/
.recent-search-title {
  font-size: 15px;
  font-weight: 600;
}

@media(max-width:1024px) {
  .recent-search-title {
    font-size: 20px;
  }
}

@media(max-width:575px) {
  .recent-search-title {
    font-size: 15px;
  }
}

.recent-search {
  background: #ffffff;
  padding: 15px 8px;
  border: 1px solid #ededed;
  border-radius: 8px;
}

.categories-slider {
  display: flex;
  align-items: center;
  gap: calc(16px + (56 - 16) * ((100vw - 320px) / (1920 - 320)));
  overflow-x: auto;
  /* padding-inline: 20px; */
}

.categories-slider li .category-box {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.categories-slider li .category-box .category-box-img {
  width: 45px;
  height: 45px;
}

.categories-slider li .category-box .category-box-img .category-img {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.categories-slider li .category-box h5 {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  color: #000000;
}

@media(max-width:575px) {
  .categories-slider li .category-box h5 {
    font-size: 11px;
  }
}

.categories-slider.category-list {
  padding-inline: 0;
  flex-wrap: wrap;
  gap: calc(16px + (54 - 16) * ((100vw - 320px) / (1920 - 320)));
}

::-webkit-scrollbar {
  display: none;
}

.multi-line-text-truncate {
  overflow: hidden;
  max-width: 400px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/******rank tree css************/
.rank-table {
  width: 100%;
  border-collapse: collapse;
  border-width: 0px;
  border-color: #ffc107;
  border-style: solid;
  text-align: center;
}

.rank-table td,
.rank-table th {
  border-width: 2px;
  border-color: #ffc107;
  border-style: solid;
  padding: 3px;
}

.productimg img {
  height: 550px;
  width: 550px;
}

@media(max-width:575px) {
  .productimg img {
    height: 350px;
  }
}

/***************/
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #3f7fb5;
  padding: 20px;
}

.offcanvas-nav {
  margin-bottom: 4px;
  border-bottom: 1px solid var(--rr-color-border-1);
}

.custom-dropdown>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 10px;
}

.custom-dropdown>.dropdown-menu {
  display: none;
  margin-top: 0.25rem;
}

.custom-dropdown.open>.dropdown-menu {
  display: block;
}

.custom-dropdown .menu-icon {
  font-size: 1rem;
  transition: transform 0.2s;
}

.custom-dropdown.open>a .menu-icon i {
  transform: rotate(45deg);
}

.dropdown-divider {
  margin: 0.5rem 0;
}

.nav-link {
  cursor: pointer;
}
.menu-title{
  color: #0dcaf0;
}
