/* ==================================================================
 * Main color: #2f55d4
================================================================== */

:root {
  --primary: #d30019;
  --secondary: #707070;
  --purper: #7c388b;
  --blue: #2c3192;
  --light: #f3f5f7;
  --white: #fff;
  --dark: #000;
  --shadow: #2f55d496;
  --shadow-none: #2f55d496;
  --muted: #8492a6;
  --light-gray: #ebebeb;
}

html {
  scroll-behavior: smooth;
}

* {
  outline: 0 !important;
}

body {
  font-family: "Nunito Sans";
  margin: 0;
  overflow-x: hidden;
  color: var(--dark);
  background: var(--light-gray);
}

html a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  color: var(--primary);
  text-decoration: none;
}

html a:hover {
  color: var(--dark);
  text-decoration: none;
}

svg,
img {
  max-width: 100%;
  height: auto;
  width: auto;
}

html .container {
  max-width: 1390px;
}

section {
  position: relative;
  margin-top: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 1;
  background-color: var(--white);
}

.pt-25 {
  padding-top: 25px;
}

html input.form-control,
html input.form-control:focus {
  box-shadow: none;
  outline: none;
}

p {
  font-size: 14px;
  color: #666;
  line-height: 160%;
}

p:last-child {
  margin-bottom: 0;
}

#wrapper {
  overflow-x: hidden;
  max-width: 100%;
}

::selection {
  color: var(--white);
  background: var(--primary);
}

/* ==================================================================
    02.Loader Styles
================================================================== */
.search-result {
  border-radius: 15px;
}

.search-result .tab-content {
  padding: 15px;
}

.search-result .nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
}

.search-result .nav-tabs li:first-child .nav-link {
  border-left: 0px;
}

.search-result .request-item {
  margin-bottom: 8px;
  border-bottom: 1px solid var(--light-gray);
  padding: 0 0 8px;
}

.search-result .request-item .sm-img img {
  height: 40px;
  width: 40px;
}

.search-result .request-item .sm-img {
  left: 0px;
  max-width: 40px;
}

.search-result .request-item .user-info h5 {
  font-size: 17px;
  margin-bottom: 0px;
}

.search-result .request-item .outer {
  padding-left: 54px;
  line-height: 40px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.search-result .cart_order_list .item .img {
  max-width: 75px;
  padding-right: 15px;
}

.search-result .cart_order_list .item {
  display: flex;
  margin: 0 0 10px;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 10px;
  align-items: center;
}

.search-result .cart_order_list .item h3 {
  font-size: 15px;
  margin: 0 0 5px;
}

.search-result .cart_order_list .item p {
  font-size: 13px;
  margin: 0 0 5px;
}

.search-result ul.product-offer-list li {
  display: flex;
  margin: 0 0 10px;
  border-bottom: 1px solid var(--light-gray);
  padding: 0 0 10px;
  box-shadow: none;
}

.search-result .product-offer-list .product-img {
  width: 195px;
  max-width: 200px;
  margin-right: 15px;
}

.search-result .product-offer-list .offer-info p {
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 20px;
}

.search-result .product-offer-list .offer-info h6 {
  font-size: 15px;
  margin-bottom: 6px;
}

.search-result .product-offer-list .offer-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.search-result .product-offer-list .offer-info h5 {
  font-size: 15px;
}

.search-result .event-bottom {
  font-size: 10px;
  margin-top: 5px;
}

.search-result .product-offer-list .offer-info .event-bottom a {
  font-size: 13px;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader {
  width: 140px;
  z-index: 9999;
}

#loader img {
  display: block;
  animation-name: loader-img;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.52, 0.4, 0.9, 0.68);
}

@keyframes loader-img {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto auto;
  background-color: #fff;
  z-index: 1000;
  background-attachment: fixed;
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
  background-position: right center;
}

/* Loaded Styles */

.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

html .owl-carousel .owl-nav button.owl-next span,
html .owl-carousel .owl-nav button.owl-prev span {
  display: none;
}

html .owl-carousel .owl-nav button.owl-next:hover,
html .owl-carousel .owl-nav button.owl-prev:hover {
  background-color: var(--dark);
}

html .owl-carousel .owl-nav button.owl-next,
html .owl-carousel .owl-nav button.owl-prev {
  width: 63px;
  height: 63px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto -40px;
  transition: all 0.5s;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  color: #fff;
  background: url("../images/right-arrow.svg") no-repeat center center;
  background-color: var(--primary);
  border-radius: 50%;
}

html .owl-carousel .owl-nav button.owl-next {
  right: 0;
}

html .owl-carousel .owl-nav button.owl-prev {
  left: 0;
  transform: rotate(180deg);
}

html .owl-dots {
  margin-top: 35px;
  text-align: center;
}

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

html .owl-carousel.nav-style-2 .owl-nav button.owl-next {
  left: 10px;
  color: #fff;
}

html .owl-carousel.nav-style-2 .owl-nav button.owl-prev {
  right: 10px;
  color: #fff;
}

html .owl-carousel.nav-style-3 .owl-nav button.owl-next,
html .owl-carousel.nav-style-3 .owl-nav button.owl-prev {
  width: 44px;
  height: 80px;
  background: #fff;
  border-radius: 0 5px 5px 0;
  box-shadow: 4px 0px 5px 0 rgba(0, 0, 0, 0.1);
  font-size: 22px;
  margin: auto 0;
  color: var(--secondary);
  opacity: 0.4;
}

html .owl-carousel.nav-style-3:hover .owl-nav button.owl-next,
html .owl-carousel.nav-style-3:hover .owl-nav button.owl-prev {
  opacity: 1;
}

html .owl-carousel.nav-style-3 .owl-nav button.owl-next:hover,
html .owl-carousel.nav-style-3 .owl-nav button.owl-prev:hover {
  color: var(--primary);
}

html .owl-carousel.nav-style-3 .owl-nav button.owl-next:after,
html .owl-carousel.nav-style-3 .owl-nav button.owl-prev:after {
  display: none;
}

html .owl-carousel.nav-style-3 .owl-nav button.owl-prev {
  border-radius: 5px 0 0 5px;
  box-shadow: -4px 0px 5px 0 rgba(0, 0, 0, 0.1);
}

html .owl-carousel.nav-style-small .owl-nav button.owl-next,
html .owl-carousel.nav-style-small .owl-nav button.owl-prev {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  margin: auto 10px;
  opacity: 0.4;
}

html .owl-carousel.nav-style-small .owl-nav button.owl-next:after,
html .owl-carousel.nav-style-small .owl-nav button.owl-prev:after {
  width: 15px;
  height: 15px;
}

html .owl-carousel.nav-style-small:hover .owl-nav button.owl-next,
html .owl-carousel.nav-style-small:hover .owl-nav button.owl-prev {
  margin: auto -50px;
  opacity: 1;
}

.owl-carousel.dots-style-2 .owl-dots {
  margin: 0;
  bottom: 25px;
  position: absolute;
  left: 0;
  right: 0;
}

.owl-carousel.dots-style-2 .owl-dots button.owl-dot:after {
  background: var(--light);
}

.owl-carousel.dots-style-2 .owl-dots button.owl-dot:before {
  background: var(--light);
}

.owl-carousel.dots-style-2 .owl-dots button.owl-dot.active:after,
.owl-carousel.dots-style-2 .owl-dots button.owl-dot:hover:after {
  background: var(--primary);
}

/*------- Header Style Start -------*/

header.sticky {
  width: 100%;
  background: var(--primary);
  z-index: 100;
  position: fixed;
  -webkit-animation: slide-down 0.5s;
  -moz-animation: slide-down 0.5s;
  animation: slide-down 0.5s;
}

@-webkit-keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@-moz-keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

header {
  top: 0px;
  left: 0px;
  position: relative;
  width: 100%;
  z-index: 100;
  transition: all 0.5s ease 0s;
  background: var(--primary);
  padding: 15px 0px;
  height: auto !important;
}

.header-main .tag-self {
  margin-top: 5px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .navbar-brand {
  display: block;
  max-width: 200px;
  padding: 0px;
  margin: 0px;
}

.rating-wrap {
  /* position: relative;
  width: 110px;
  height: 22px;
  background: url(../images/star-rating-o.svg) repeat-x center left;
  background-size: 22px auto; */
}

.rating-wrap .inner {
  /* position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  overflow: hidden;
  background: url(../images/star-rating.svg) repeat-x center left;
  background-size: 22px auto; */
}

.header-right {
  /* display: flex;
    align-items: right;
    justify-content: right; */
  width: 60%;
  text-align: right;
}

.header-btn {
  display: inline-block;
  vertical-align: top;
  border-radius: 50px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  min-width: 170px;
  line-height: 38px;
  padding: 0 20px;
  text-align: center;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.36);
}

.header-btn:hover {
  background: var(--dark);
  color: #fff;
}

.header-city {
  margin-right: 25px;
}

.header-city .ui-selectmenu-button.ui-button {
  background: #fff;
  border-radius: 50px;
  border: 0;
  line-height: 38px;
  padding: 0 30px 0 40px;
  font-family: "Nunito Sans";
  font-size: 14px;
  min-width: 170px;
  font-weight: 800;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.36);
  color: var(--primary);
  width: auto;
}

.header-city .ui-selectmenu-button.ui-button .ui-selectmenu-text {
  color: inherit;
  font: inherit;
}

.header-city .ui-selectmenu-icon.ui-icon {
  display: none;
}

html .ui-front {
  z-index: 999;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid var(--dark);
  background: var(--dark);
}

.ui-selectmenu-menu .ui-menu {
  font-size: 14px;
}

.header-city .ui-selectmenu-button.ui-button:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin: 9px;
  width: 21px;
  height: 21px;
  background: url("../images/worldwide.svg") no-repeat center center;
}

.header-city .ui-selectmenu-button.ui-button:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 5px ridge transparent;
  border-right: 5px ridge transparent;
  border-top: 8px solid var(--dark);
  margin: 14px 16px 0 0;
}

section.banner {
  padding: 100px 0;
  background-color: #fff;
  background-size: cover;
  background-position: center center;
}

.banner .caption img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.banner .caption {
  position: relative;
  /* padding-left: 110px; */
}

.banner .caption h2 big {
  font-size: 67px;
}

.banner .caption h2 {
  color: #000;
  font-family: "Playfair Display";
  font-size: 53px;
  margin: 0;
  font-weight: 600;
  line-height: 120%;
}

.banner .caption h3 {
  color: #000;
  font-family: "Playfair Display";
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
}

.sub-title {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 6px;
  font-family: "Playfair Display";
}

.top-picks {
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.13);
  margin: 10px 5px;
  padding: 10px;
  position: relative;
}

.top-picks .img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  margin: 0 0 8px;
  padding: 0px 30px;
}

.top-picks .img img {
  max-height: 100%;
}

.top-picks .whishlist-o {
  position: absolute;
  right: 0;
  top: 8px;
  margin: 10px;
}

.top-picks h3 {
  font-size: 12px;
  margin: 0 0 7px;
  line-height: 20px;
}

.top-picks h3 a {
  color: var(--dark);
}

.top-picks h3 a:hover {
  color: var(--primary);
}

.top-picks p {
  margin: 0;
  font-size: 11px;
  line-height: 120%;
}

.top-picks .rating-wrap {
  margin-left: auto;
  margin-bottom: 5px;
}

.top-picks .price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-list.inline-block .price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
}

.top-picks .price {
  font-size: 15px;
  color: var(--secondary);
  font-weight: 600;
}

.top-picks .review {
  font-size: 12px;
  color: var(--secondary);
}

.experience-box {
  background: var(--white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.13);
  position: relative;
  margin: 10px 5px;
  padding-bottom: 30px;
}

.owl-stage-outer .item .experience-box .img {
  overflow: hidden;
  width: 100%;
  height: 165px;
  background: var(--dark);
}

.owl-stage-outer .item .experience-box .img video {
  height: 165px;
  width: 100%;
}

.community .experience-box,
.details-experience {
  margin: 10px 0;
  background: var(--white);
}

.row.small-gap {
  margin-left: -5px;
  margin-right: -5px;
}

.row.small-gap>[class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.experience-box .user {
  position: relative;
  min-height: 28px;
  padding: 10px 25px 10px 50px;
}

.experience-box .dtc {
  padding: 0 10px 10px;
}

.experience-box .dtc p {
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
}

.experience-box.common .dtc {
  padding: 10px 30px;
}

.experience-box.common .dtc p {
  font-size: 18px;
  font-weight: normal;
}

.experience-box.common .dtc p a {
  color: #b1acac;
}

.experience-box .user .user-img {
  position: absolute;
  left: 0;
  top: 0;
  margin: 10px;
  max-width: 30px;
  max-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.experience-box .user .user-link {
  position: absolute;
  right: 0;
  top: 0;
  margin: 10px;
}

.experience-box .user h4 {
  font-size: 9px;
  font-weight: 800;
  margin: 0 0 3px;
}

.experience-box .user p {
  margin: 0;
  font-size: 6px;
  color: var(--dark);
}

.experience-box .user p span {
  color: #666;
}

html .col-lg-col5 {
  flex-basis: 20%;
  max-width: 20%;
}

.event-box {
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.13);
  margin: 10px 5px;
  padding: 10px;
  position: relative;
}

.event-box .img {
  border: 3px solid var(--primary);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 12px;
}

.event-box h6 {
  font-size: 15px;
  color: var(--secondary);
  font-weight: 600;
  margin: 0 0 6px;
}

.event-box h6 span {
  display: inline-block;
  vertical-align: top;
  margin-left: 15px;
}

.event-box h4,
.catalogue ul h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
}

.event-box p {
  font-size: 11px;
  line-height: 140%;
}

.event-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 12px;
  color: var(--dark);
  font-weight: 600;
}

.event-box .event-bottom .item img {
  display: inline-block;
}

.event-bottom a {
  color: var(--dark);
}

.event-bottom a:hover {
  color: var(--primary);
}

.offers-box {
  background: linear-gradient(45deg, rgba(255, 255, 255, 1) 0%, rgba(194, 194, 194, 1) 50%, rgba(255, 255, 255, 1) 100%);
  border-radius: 15px;
  padding: 20px 35px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  max-height: 200px;
}

.offers-card {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.13);
  border-radius: 10px;
  padding: 8px;
  margin: 5px 5px;
  min-height: 350px;
  max-height: 350px;
}

.offers-card .offers-box {
  padding: 15px 25px;
}

.offers-box:after,
.offers-box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto -20px;
  width: 36px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
}

.offers-box:after {
  left: auto;
  right: 0;
}

.offers-card .img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  max-height: 125px;
}

.offers-box .img img {
  display: block;
  width: 100%;
}

.offers-box h4 {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 13px;
}

.offers-carousel.owl-carousel .owl-item .offers-box img {
  display: inline-block;
}

.offers-box h4 a {
  color: var(--dark);
}

.offers-box h4 a:hover {
  color: var(--primary);
}

.offers-box h6 {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #545454;
}

.offers-box .locate {
  font-size: 10px;
  color: #545454;
  font-weight: 600;
  display: flex;
  margin: 0 0 10px;
}

.offers-box .locate img {
  width: 15px;
  min-width: 15px;
  margin-right: 10px;
  display: flex;
  align-self: flex-start;
}

.offers-box h5 {
  font-size: 11px;
  font-weight: 800;
  color: #d30019;
  margin-top: 13px;
  margin-bottom: 0;
}

.sub-text {
  color: #9c9c9c;
  font-size: 18px;
}

.number-form .field {
  position: relative;
  margin: 0 0 10px;
}

.number-form .field input {
  height: 45px;
  border-radius: 65px;
  display: block;
  padding: 0 20px 0 70px;
  border: 1px solid var(--secondary);
  width: 100%;
}

.number-form .field .code {
  border-right: 1px solid var(--secondary);
  display: block;
  position: absolute;
  left: 5px;
  top: 10px;
  width: 55px;
  text-align: center;
  line-height: 28px;
  font-size: 20px;
  color: #9c9c9c;
}

form.number-form {
  text-align: center;
}

button.number-btn {
  color: #fff;
  background: var(--primary);
  border-radius: 50px;
  border: 0;
  line-height: 35px;
  padding: 0 25px;
  display: inline-block;
  vertical-align: top;
  font-size: 15px;
}

button.number-btn.btn-light {
  background: #888888;
}

button.number-btn:hover {
  color: #fff;
  background: var(--dark);
}

.app-box {
  padding: 10px 10px 15px;
  text-align: center;
}

.btn.btn-primary.white {
  background: var(--white);
  color: var(--primary);
}

.btn.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 0 none;
  transition: all 0.5s;
  padding: 5px 30px;
  z-index: 5;
}

.btn.btn-outline {
  border: 2px solid var(--primary);
  border-radius: 18px;
  padding: 5px 20px;
  line-height: 30px;
  font-weight: 800;
  font-size: 20px;
}

.btn.btn-primary:hover {
  background: var(--dark);
  color: #fff;
}

.btn.btn-primary.rounded,
input.form-control.rounded {
  border-radius: 30px !important;
}

.search-icon-btn input.form-control {
  border: 0 none;
  padding: 0px 120px 0 40px;
}

.search-icon-btn .icon {
  position: absolute;
  z-index: 1;
  left: 15px;
  z-index: 5;
  top: 12px;
  color: var(--primary);
}

/***********Header Menu CSS********/

/***Confirmation Layer */

.overlay {
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
}

.confrim-screen {
  text-align: center;
  color: var(--white);
}

.confrim-screen h4 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 25px;
  text-shadow: 0px 2px 3px #000000;
}

.confrim-screen h3 {
  font-size: 53px;
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 25px;
}

.confrim-screen .btn-group-in .btn {
  border-radius: 30px;
  font-weight: bold;
  min-width: 100px;
}

.confrim-screen p {
  color: var(--white);
  font-size: 18px;
}

body.fixed {
  position: fixed;
  width: 100%;
}

/***Confirmation Layer End*/

.container-fluid {
  /* max-width: 1920px; */
  margin: 0 auto;
}

.navbar-default button.navbar-toggle,
.navbar-default button.navbar-toggle:hover {
  border: none;
  padding: 11px 8px;
  background: var(--primary) !important;
}

.navbar-toggle:hover {
  background: transparent !important;
}

.navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

.navbar-toggle .middle-bar {
  opacity: 0;
}

.navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}

.navbar-toggle.collapsed .middle-bar {
  opacity: 1;
}

.navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 4px;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  transition: all 0.2s;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

.magic-menu .menu-sm {
  position: absolute;
  width: 200px;
  top: 83px;
  text-align: left;
  left: -20px;
  box-shadow: 0px 1px 6px #00000061;
  margin: 0 auto;
}

.magic-menu .menu-sm ul {
  width: 100%;
}

.magic-menu .menu-sm ul li {
  display: block;
  margin: 0 auto;
}

.magic-menu .menu-sm ul li a,
.magic-menu .menu-sm ul li:last-child a {
  border: 0;
  background: var(--white);
  border-radius: 0;
  display: block;
  font-size: 16px;
  color: var(--dark);
  transition: all 0.2s;
  padding: 10px;
  display: block;
}

.magic-menu .menu-sm ul li:last-child {
  margin: auto;
}

.magic-menu .menu-sm ul li:last-child a {
  box-shadow: none;
}

.magic-menu .menu-sm ul li a:hover {
  background: var(--primary);
  color: var(--white);
}

ul.magic-menu {
  list-style: none;
  margin: 0 0 0 2px;
  padding: 0;
  position: relative;
}

ul.magic-menu li {
  display: inline-block;
  margin-right: 15px;
}

ul.magic-menu li:last-child {
  margin-right: 0px;
}

ul.magic-menu li:last-child a {
  border-radius: 30px;
  color: var(--primary);
  padding: 6px 30px;
  box-shadow: 0px 1px 6px #00000061;
  border-radius: 25px;
  transition: all 0.5s;
  border: none;
}

ul.magic-menu li:last-child a:hover {
  background-color: var(--dark);
  color: var(--white);
  transition: all 0.5s;
}

.magic-menu a,
.magic-menu button {
  position: relative;
  background: #fff;
  padding: 8px 10px;
  border-radius: 50%;
  border: 1px solid var(--primary);
}

.magic-menu a span {
  position: absolute;
  font-size: 9px;
  color: var(--white);
  background-color: var(--primary);
  padding: 0px 4px;
  border-radius: 50%;
  right: 4px;
  top: 7px;
  transition: all 0.5s;
}

.magic-menu .notificationButton span {
  position: absolute;
  font-size: 9px;
  color: var(--white);
  background-color: var(--primary);
  padding: 0px 4px;
  border-radius: 50%;
  right: 4px;
  top: 7px;
  transition: all 0.5s;
}

.magic-menu a svg,
.magic-menu button svg {
  max-width: 18px;
  fill: var(--primary);
  transition: all 0.5s;
}

.magic-menu a:hover svg {
  fill: var(--dark);
}

.search-icon-btn .under-btn {
  position: absolute;
  right: 2px;
  top: 2px;
}

/***********Catalogue Page CSS********/
.banner-bg {
  background: url(../images/bg.png);
  background-repeat: no-repeat;
  height: 267px;
  border-radius: 15px;
  position: relative;
  background-position: center;
  margin: 15px 0 25px;
}

.banner-bg .caption {
  position: absolute;
  top: 50px;
  left: 30px;
}

.banner-bg .caption h2 {
  font-size: 55px;
  font-weight: 800;
  line-height: 45px;
  margin-bottom: 5px;
  color: var(--white);
}

.banner-bg .caption p {
  font-size: 18px;
  margin-bottom: 0px;
  color: var(--white);
}

.banner-bg .in-banner-img {
  float: right;
  width: 155px;
  display: flex;
  margin: 28px 30px 28px;
}

.catalogue-grid {
  margin: 20px 0;
}

ul.inline-block li {
  display: inline-block;
  width: 33.3%;
}

ul.inline-block .product-info {
  padding-right: 0px;
  margin-bottom: 6px;
}

ul.inline-block .top-picks {
  margin: 0px 10px 10px 0px;
  height: 365px;
  max-height: 370px;
  display: flex;
  flex-direction: column;
}

ul.inline-block li:nth-of-type(3n) .top-picks {
  margin-right: 0;
}

ul.inline-block .top-picks h3 {
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: bold;
}

ul.inline-block .top-picks .price {
  font-size: 17px;
  color: var(--dark);
  font-weight: 600;
}

ul.inline-block .top-picks .img {
  margin: 8px auto 25px;
  width: auto;
  max-width: 160px;
  height: 160px;
  display: block;
  text-align: center;
}

ul.inline-block .rating-group-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

ul.inline-block .rating-group-text .rating-wrap {
  margin-left: 0;
}

ul.inline-block .rating-group-text .review-text {
  font-size: 18px;
  font-weight: 600;
}

.btn.add-to-cart {
  padding: 5px 10px;
  background: var(--primary);
  font-size: 10px;
  font-weight: bold;
  color: var(--white);
  transition: all 0.5s;
}

.btn.add-to-cart:hover {
  background: var(--dark);
}

/***********Order Page CSS********/
.box {
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.13);
  padding: 15px;
  position: relative;
}

.order-time {
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
}

.order-list .top-picks h3 {
  font-size: 23px;
  font-weight: bold;
}

.order_list.align-start .item {
  align-items: flex-start;
}

.order_list.align-start .dtc {
  padding-top: 10px;
}

.order_list.align-start .dtc-right {
  text-align: right;
  padding-right: 20px;
  padding-top: 10px;
}

.summery-detail {
  padding: 0 20px;
}

.summery-detail span {
  font-size: 21px;
  font-weight: 600;
  color: var(--secondary);
}

.summery-detail .item b {
  font-size: 20px;
  font-weight: bold;
  line-height: 35px;
}

.summery-detail .item,
.summery-detail .item-paid,
.summery-detail .item-included p {
  display: flex;
  justify-content: space-between;
}

.summery-detail .item .dt {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
}

.summery-detail .item-included p,
.summery-detail .item-paid {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 19px;
}

.order_status {
  padding: 20px 30px;
}

.delivery-way {
  display: flex;
  align-items: center;
}

.delivery-way .icon-sm {
  position: relative;
  border: 1px solid #c4c4c4;
  padding: 5px;
  border-radius: 5px;
  margin-right: 15px;
}

.delivery-way .icon-sm img {
  width: 60px;
}

.delivery-way .icon-sm img.cart_done {
  position: absolute;
  width: 20px;
  top: -10px;
  right: -12px;
}

.delivery-way .des p {
  font-size: 14px;
  color: var(--dark);
  font-weight: bold;
  margin-bottom: 6px;
  line-height: 16px;
}

.delivery-way .des p.scale {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0px;
}

.delivery-way .btn {
  font-size: 12px;
  font-weight: bold;
  padding: 10px;
  min-width: 160px;
  border-radius: 0;
}

.delivery-way .btn span {
  display: block;
  font-weight: normal;
}

/***********Notification CSS********/
.notification a {
  border: 0;
  padding: 0;
}

.noted {
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 11px #0000002e;
  padding: 10px 15px;
  margin-bottom: 5px;
}

.note-item .btn {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
  width: 80px;
  max-width: 90px;
}

.note-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: #ebebeb;
  margin-bottom: 5px;
}

.noted h4 {
  font-size: 19px;
  font-weight: bold;
  color: var(--dark);
  margin: 0;
}

.note-info,
.incover {
  padding-left: 45px;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.note-info .note-count {
  background: #a51022;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 0px 7px;
  border-radius: 50%;
}

.notification .sm-img {
  max-width: 35px;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 15px;
}

.notification .sm-img img {
  border-radius: 50%;
  width: 100%;
  height: 35px;
  width: 35px;
}

.notification .note-item h5 {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--dark);
  max-width: 75px;
}

.notification .note-item h6 {
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--dark);
}

.notification .note-item p {
  color: #878787;
  font-size: 10px;
  margin: 0;
}

.notification .note-desc {
  font-size: 12px;
  font-weight: 600;
  align-self: flex-end;
  width: 135px;
}

.notification .note-desc img {
  max-width: 20px;
  margin-left: 5px;
}

/***********RequestPage CSS********/
.request-box {
  padding: 15px 0;
  border-radius: 15px;
  box-shadow: 0px 0px 8px #0000004f;
}

.request-box h2 {
  font-size: 43px;
  font-weight: bold;
  padding: 0 20px;
  margin: 0 0 30px;
}

.request-item {
  position: relative;
  padding: 15px 35px;
  margin-bottom: 10px;
}

.request-item.active {
  background: #ebebeb;
}

.request-item .sm-img {
  position: absolute;
  left: 35px;
  max-width: 55px;
}

.request-item .sm-img img {
  width: 100%;
  border-radius: 50%;
}

.request-item .outer {
  padding-left: 70px;
  display: flex;
  justify-content: space-between;
}

.request-item .user-info h5 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 3px;
}

.request-item .user-info h6 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
}

.request-item .user-info p {
  font-size: 12px;
  color: var(--gray);
  margin: 0;
}

.request-item .btn-slim {
  font-size: 16px;
  font-weight: bold;
  border-radius: 20px;
  padding: 5px 20px;
  line-height: 24px;
}

@media (max-width: 767px) {
  .request-item .btn-slim {
    font-size: 13px !important;
    padding: 4px 12px !important;
    line-height: normal !important;
  }
  .request-item .user-info h5 {
    font-size: 14px !important;
  }
}

.request-item .btn-outline {
  padding: 5px 20px;
  line-height: 20px;
}

/***********404 Page CSS********/

.min-height {
  height: 550px;
}

.page-not-found h1 {
  font-size: 142px;
  color: var(--dark);
  font-weight: 800;
}

.page-not-found h3 {
  font-size: 67px;
  color: var(--gray);
  font-weight: 600;
  line-height: 67px;
}

.page-not-found h3 a {
  font-size: 29px;
  color: var(--gray);
  text-decoration: underline;
  font-weight: 600;
}

.bg-area {
  background: var(--primary);
  text-align: center;
  height: 310px;
  position: relative;
}

.bg-area img {
  position: absolute;
  bottom: 0;
  margin: -250px auto 0;
  left: 0;
  right: 0;
}

/***********Community/Feed Page CSS********/
.comments-info {
  padding: 5px 30px;
  border-bottom: 1px solid #909090;
  font-size: 18px;
  font-weight: 600;
}

.comments-info span {
  color: #909090;
}

.comments-info .comm {
  position: relative;
  color: #909090;
}

.user-search input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--dark);
  opacity: 1;
  /* Firefox */
  font-weight: 600;
}

.user-search input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--dark);
  font-weight: 600;
}

.user-search input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--dark);
  font-weight: 600;
}

.cust-modal .modal-dialog.modal-md {
  max-width: 700px;
}

.share-experience .experience-data {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.share-experience .thumbnail {
  max-width: 70px;
}

.share-experience .head h3 {
  font-size: 28px;
  font-weight: bold;
  border-bottom: 1px solid var(--dark);
  line-height: 40px;
  margin-bottom: 20px;
}

.share-experience textarea {
  height: 130px;
  border: 1px solid #d2d2d2;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 30px;
  resize: none;
}

.share-experience .post-reipe {
  font-size: 21px;
  display: flex;
  align-items: self-end;
  margin-bottom: 15px;
}

.share-experience .bottom-in a {
  font-size: 21px;
  color: var(--dark);
}

.share-experience .bottom-in .btn.btn-primary {
  color: var(--white);
}

.share-experience .post-reipe img,
.share-experience .bottom-in a img {
  max-width: 35px;
  margin-top: -6px;
}

.di-info ul {
  display: flex;
}

.di-info ul li {
  margin-right: 10px;
}

.di-info ul li img {
  max-width: 35px;
}

.user-indetail h3 {
  font-size: 24px;
  font-weight: bold;
}

.user-indetail h3 span {
  font-weight: normal;
}

.left-sidebar,
.right-sidebar {
  background-color: var(--light-gray);
  padding: 30px 15px;
}

.user-img {
  border-bottom: 2px solid var(--dark);
}

.circle-img {
  max-width: 75px;
}

.circle-img img {
  border: 4px solid var(--white);
  max-width: 65px;
  width: 65px;
  height: 65px;
  max-height: 65px;
}

.feed.community .product-slider.feed-slider .item img,
.feed.community .product-slider.feed-slider .item video,
.product-slider.feed-slider.center .item img {
  width: 100%;
}

.bg-color-gbl {
  background: var(--light-gray);
}

.container-md {
  padding-top: 40px;
  padding-bottom: 40px;
}

.user-name h3,
h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 3px;
  line-height: 30px;
}

.align-r h5 {
  margin-bottom: 0px;
  line-height: 30px;
}

.align-r h5 a {
  color: var(--dark);
  font-size: 21px;
  font-weight: bold;
}

.align-r h5 a img {
  max-width: 35px;
}

.user-n h3 a,
.user-name h3 a {
  color: var(--dark);
}

.user-name h3 span {
  font-weight: 500;
}

.user-name p {
  font-size: 16px;
  color: #7a8fa6;
}

.user-name p img {
  max-width: 18px;
  margin-right: 8px;
}

.product-slider .owl-carousel .caption,
.events-list .event-caption {
  position: absolute;
  top: 30px;
  left: 20px;
}

.product-slider .owl-carousel .caption h2,
.events-list .event-caption h2 {
  font-size: 55px;
  font-weight: 800;
  line-height: 45px;
  margin-bottom: 5px;
  color: var(--white);
}

.product-slider .owl-carousel .caption p,
.events-list .event-caption p {
  font-size: 18px;
  margin-bottom: 0px;
  color: var(--white);
}

.w-20 {
  width: 20px;
}

.feed-slider .owl-carousel.owl-theme .owl-dot {
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

.feed-slider .owl-carousel.owl-theme .owl-dots {
  padding-left: 20px;
}

.feed-slider h4 {
  font-size: 14px;
  font-weight: 600;
}

/*.vertical-nav.nav a.nav-link.active {
    background: #C9C4C4;
}*/
.vertical-nav.nav a.nav-link {
  color: var(--dark);
  background-color: transparent;
  font-size: 18px;
  font-weight: bold;
  display: block;
  border-bottom: 1px solid #c9c4c4;
  border-radius: 0;
  padding: 15px 15px 15px 65px;
  position: relative;
  line-height: 30px;
}

.vertical-nav.nav a.nav-link.active {
  background-color: var(--primary);
  color: var(--white);
}

.vertical-nav.nav a.nav-link.active svg .a,
.vertical-nav.nav a.nav-link.active svg .b {
  fill: var(--white) !important;
}

.vertical-nav.nav {
  /* margin-right: -15px; */
  margin-left: -15px;
}

.vertical-nav.nav a.nav-link svg {
  max-height: 40px;
  position: absolute;
  left: 15px;
  top: 10px;
}

.circle-img .border-primary,
.border-primary {
  border: 1px solid var(--primary) !important;
}

.searc-input {
  width: 100%;
}

.searc-input input {
  padding: 15px 30px;
  border-radius: 50px;
  height: 70px;
  font-weight: 600;
}

.feed {
  margin: 0 0 20px;
}

.community .user-data,
.community .user-opinion {
  padding: 15px;
  position: relative;
}

.community .user-data .v-menu {
  position: absolute;
  right: 15px;
}

.v-menu .position-set {
  position: relative;
}

.v-menu .submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #ffffff;
  box-shadow: 4px 6px 10px #00000029;
  border-radius: 6px;
  position: absolute;
  z-index: 5;
  right: 0;
  top: 5px;
  width: 120px;
  display: none;
}

.v-menu .submenu.active {
  display: block;
}

.v-menu .submenu li a {
  padding: 5px 10px;
  transition: all 0.5s;
  color: var(--dark);
  display: block;
}

.v-menu .submenu li a:hover {
  color: var(--primary);
}

.user-opinion ul {
  list-style: none;
  margin: 0;
  display: flex;
  padding: 0;
}

.user-opinion ul li {
  margin-right: 15px;
}

.user-opinion ul li img {
  max-width: 45px;
  width: 40px;
}

.user-opinion ul li a.fav {
  color: var(--dark);
  border: 1px solid var(--dark);
  border-radius: 15px;
  font-weight: bold;
  padding-right: 6px;
  font-size: 13px;
}

.user-opinion ul li a.fav img {
  background: #fff;
  margin-left: -2px;
}

.community .user-data p {
  color: var(--dark);
  font-size: 16px;
}

.community .user-data p span {
  color: #878787;
}

.community .thumbnail img {
  max-width: 65px;
  width: 65px;
  height: 65px;
}

.number-btn.slim {
  min-width: 120px;
  height: 35px;
}

.excerpt p {
  padding: 0 15px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 15px;
  color: var(--dark);
}

.right-sidebar h4 {
  font-size: 14px;
  font-weight: 600;
  padding-left: 15px;
}

.right-sidebar .banner-bg {
  height: 205px;
}

.right-sidebar .banner-bg .caption {
  top: 30px;
  left: 30px;
}

.right-sidebar .banner-bg .caption h2 {
  font-size: 22px;
  line-height: 22px;
  text-transform: uppercase;
}

.right-sidebar .banner-bg .caption p {
  font-size: 14px;
  line-height: 28px;
}

.right-sidebar .banner-bg .in-banner-img {
  width: 140px;
  margin: 8px 15px 8px;
  max-height: 190px;
}

.right-sidebar .banner-bg .in-banner-img img {
  max-height: 190px;
}

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

.product-slider {
  margin-bottom: 30px;
}

.product-slider .owl-carousel .owl-dots {
  margin-top: -40px;
  text-align: left;
  padding-left: 30px;
}

.product-slider.center {
  margin-bottom: 0px;
}

.product-slider.center .owl-carousel .owl-dots {
  margin-top: 0px;
  text-align: center;
}

.product-slider.center .owl-carousel .owl-dot.active {
  background: #ff6a47;
  border-color: #ff6a47;
}

.product-slider.center .owl-carousel .owl-dot {
  background: var(--secondary);
}

.product-slider.center .owl-carousel.owl-theme .owl-dot {
  width: 6px;
  height: 6px;
  margin-right: 4px;
}

.product-slider .owl-carousel .owl-dot {
  background: transparent;
  border: 1px solid var(--secondary);
  padding: 0 !important;
  font: inherit;
  height: 7px;
  width: 7px;
  margin-right: 5px;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}

.product-slider .owl-carousel .owl-dot.active {
  background: var(--white);
  border-color: var(--white);
}

.product-list .top-picks .img {
  height: 90px;
  margin-bottom: 0;
  margin-right: 10px;
}

.product-list .top-picks p {
  margin-bottom: 15px;
}

.product-list .product-info {
  padding-right: 35px;
}

.product-list .top-picks .whishlist-o {
  top: 0;
}

.tranding-events-list .event-box h4 {
  padding-left: 0;
}

.tranding-events-list .event-box h6 {
  font-size: 12px;
}

.tranding-events-list .event-img {
  max-width: 140px;
}

.tranding-events-list .event-img img {
  border-radius: 10px;
}

.events-nav.nav-pills {
  margin-bottom: 25px;
}

.slim-slider.owl-carousel .owl-item {
  height: 50px !important;
}

html .slim-slider.owl-carousel .owl-nav button.owl-next {
  margin: auto -16px;
}

html .slim-slider.owl-carousel .owl-nav button.owl-prev {
  margin: auto -30px;
}

html .slim-slider.owl-carousel .owl-nav button.owl-next,
html .slim-slider.owl-carousel .owl-nav button.owl-prev {
  width: 25px;
  background-size: 13px;
  height: 25px;
  top: -7px;
}

.events-nav.nav-pills .nav-link {
  color: var(--dark);
  background-color: var(--white);
  border: 2px solid #a9a9a9;
  border-radius: 30px;
  font-size: 20px;
  font-weight: bold;
  margin-right: 15px;
  display: flex;
  padding: 1px;
  transition: all 0.5s;
  cursor: pointer;
  align-items: center;
}

.events-nav.nav-pills .nav-link.active,
.events-nav.nav-pills .nav-link:hover {
  background: var(--primary);
  color: var(--white);
}

.events-nav.nav-pills .nav-link div.img {
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 30px;
  padding: 8px;
  margin-right: 8px;
  background: var(--white);
}

.events-nav.nav-pills .nav-link div.img img {
  fill: var(--primary);
  width: 30px;
  height: 30px;
  max-width: 30px;
}

.events-nav.nav-pills .nav-link div {
  display: flex;
  align-self: center;
}

/*.events-nav.nav-pills .nav-link.active {
    background-color: var(--primary);
    color: var(--white);
}*/
.events-list .tranding-events-list .event-img {
  max-width: 250px;
}

.events-list .event-banner {
  position: relative;
  margin-bottom: 15px;
}

.dropdown.in .dropdown-menu {
  width: 250px;
  max-height: 330px;
  padding: 15px;
  transition: all 0.5s;
  top: 10px !important;
  border-radius: 5px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
}

.dropdown.in .dropdown-menu ul {
  width: 100%;
  height: 200px;
  overflow-y: auto;
  display: block;
}

.label-in {
  font-size: 20px;
  margin-bottom: 5px;
}

.btn-group-map {
  margin: 15px 0;
}

.review-rate .img-review span {
  color: var(--white);
  width: 65%;
  font-size: 24px;
  display: inline-block;
  padding-left: 35px;
  padding-top: 20px;
}

.removeImg {
  padding: 2px 6px;
  cursor: pointer;
  border-radius: 50%;
  color: var(--white) !important;
  background: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.review-rate .img-review img {
  float: right;
  max-height: 180px;
  padding-top: 10px;
}

.product-searched {
  position: relative;
  margin-bottom: 15px;
}

.list-prod {
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  top: 38px;
  background: #fff;
  width: 100%;
  z-index: 5;
  transition: all 0.5s;
  border-radius: 5px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
}

.search-people {
  width: 100%;
  max-height: 150px;
  transition: all 0.5s;
  border-radius: 5px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
}

.list-prod li,
.dropdown.in .dropdown-menu ul li,
.search-people li {
  padding: 6px 8px;
  font-size: 13px;
  border-bottom: 1px solid var(--light-gray);
}

.catalogue .product-list .top-picks .img {
  height: auto;
  margin-right: 20px;
  max-width: 170px;
}

.catalogue .top-picks:nth-child(3n) {
  margin-right: 0px;
}

.catalogue .product-list .top-picks p {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 600;
}

.catalogue .top-picks .review {
  font-size: 16px;
  margin-bottom: 0;
}

.catalogue .top-picks .price {
  font-size: 22px;
}

/*ul.product-offer-list {
    margin: 20px 0;
}*/
ul.product-offer-list li {
  display: flex;
  padding: 10px;
  background: #fff;
  margin: 0 0 15px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.13);
}

.product-offer-list .product-img {
  width: 240px;
  min-width: 240px;
  margin-right: 20px;
  position: relative;
}

.product-offer-list .product-img img {
  border-radius: 7px;
  width: 240px;
  height: 240px;
}

.product-offer-list .offer-info p {
  font-size: 18px;
  margin-bottom: 5px;
  line-height: 26px;
  color: var(--dark);
}

.product-offer-list .offer-info h6 {
  font-size: 19px;
  color: #828282;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-offer-list .offer-info h6 img {
  width: 15px;
}

.product-offer-list .offer-info h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
}

.product-offer-list .offer-info h5 {
  font-size: 19px;
  color: var(--primary);
  font-weight: bold;
}

.product-offer-list .offer-info .event-bottom img {
  width: 30px;
  margin-right: 5px;
}

.product-offer-list .offer-info .event-bottom a {
  font-weight: 600;
  font-size: 16px;
}

.footer-mobile {
  text-align: right;
  margin: 0 0 -210px;
  position: relative;
}

.tag-self img {
  width: 25px;
  margin-right: 5px;
}

.tag-self {
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-right: 20px;
  margin-top: -5px;
  font-size: 14px;
}

footer {
  padding: 30px 0 20px;
}

.menu-list {
  display: flex;
  flex-wrap: wrap;
}

.menu-list>ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 15px;
}

.menu-list>ul>li {
  margin-bottom: 3px;
}

.menu-list>ul>li a {
  color: var(--dark);
}

.menu-list>ul>li a:hover {
  color: var(--primary);
}

.menu-list>ul+ul {
  margin-left: 40px;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  margin-top: 90px;
}

.footer-bottom>ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 22px;
  display: flex;
  align-items: flex-end;
  font-weight: 700;
  line-height: 50px;
}

.footer-bottom>ul>li+li {
  margin-left: 30px;
}

.footer-bottom>ul>li a {
  color: var(--dark);
}

.footer-bottom>ul>li a:hover {
  color: var(--primary);
}

.footer-logo {
  margin-right: 50px;
}

.location-search {
  position: relative;
  margin: 0px 0 24px;
}

.location-search .search-word {
  position: absolute;
  right: 0;
  top: 5px;
}

.location-search input {
  border-radius: 10px;
  width: 100%;
  display: block;
  height: 45px;
  font-size: 20px;
  padding: 0 20px 0 50px;
  border: 1px solid #d2d2d2;
  box-shadow: 0px 3px 6px #00000029;
}

.location-search .field>img {
  display: block;
  position: absolute;
  left: 0px;
  width: 28px;
  top: 0;
  margin: 10px 10px;
}

.o-wrap h3 {
  font-size: 19px;
  margin: 0 0 15px;
}

.o-wrap .img {
  overflow: hidden;
  position: relative;
  border-radius: 7px;
}

.o-wrap .img .rating-offer,
.product-offer-list .product-img .rating-offer {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  width: 55px;
  line-height: 28px;
  font-size: 18px;
  font-weight: bold;
  background: #43b701;
  border-radius: 50px;
  text-align: center;
  margin: 10px;
}

.o-wrap .btn.btn-rounded {
  border-radius: 50px;
  font-size: 17px;
  line-height: 40px;
  font-weight: bold;
}

.coupon-code {
  text-align: center;
  border: 2px dashed var(--secondary);
  color: var(--primary);
  padding: 6px;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 15px;
}

.o-wrap .btn-set .btn-block+.btn-block {
  margin-top: 0;
}

.cmt-form.single .form-group label {
  color: var(--dark);
  font-size: 13px;
  font-weight: bold;
}

.cmt-form.single .lb-with-star {
  display: inline-flex;
  margin-bottom: 7px;
}

.cmt-form.single .form-group textarea {
  resize: none;
}

.o-wrap .btn.btn-rounded.p-sm {
  padding: 5px 15px;
}

.o-rate-wrap {
  margin-bottom: 10px;
}

.o-rate-wrap p {
  font-weight: 600;
  font-size: 13px;
}

.o-rate-wrap img {
  vertical-align: baseline;
}

.o-rate-wrap .rate-pub-txt {
  font-size: 10px;
  margin-top: 3px;
}

.offers-page-box p {
  font-size: 14px;
  color: #3d3d3d;
  font-weight: 600;
  line-height: 120%;
}

html .owl-carousel .offers-image-box {
  max-width: 270px;
}

html .owl-carousel .offers-image-box img {
  width: 260px;
  height: 250px;
  border-radius: 10px;
}

.offers-box.lg .location-card {
  font-weight: 800;
  display: inline-block;
  font-size: 23px;
}

html .owl-carousel .offers-box.lg .location-card img {
  width: 18px;
  margin-top: -6px;
  display: inline-block;
}

html .dot-design.lg .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
}

html .dot-design.lg .owl-dots {
  margin-top: 20px;
}

.offers-box.lg .location-card span {
  font-size: 19px;
  color: #545454;
}

.offers-box.lg h4 {
  font-size: 28px;
}

.offers-box.lg h5 {
  font-size: 21px;
}

.offers-box.offers-page-box {
  padding-left: 30px;
  padding-right: 30px;
}

.o-wrap .offers-box.offers-page-box {
  padding-left: 20px;
  padding-right: 20px;
}

html .dot-design .owl-dots {
  margin-top: 12px;
  line-height: 0;
}

html .dot-design .owl-dots .owl-dot {
  border: 1px solid var(--secondary);
  width: 6px;
  height: 6px;
  margin: 0 3px;
  border-radius: 50%;
}

html .dot-design .owl-dots .owl-dot.active,
html .dot-design .owl-dots .owl-dot:hover {
  background: var(--secondary);
}

.cmt-box {
  margin-top: 15px;
}

.cmt-box .item {
  padding-left: 28px;
}

.cmt-box .item p {
  color: #000000;
  margin: 0;
  line-height: 120%;
}

.cmt-box .item .cmt-meta {
  color: #acacac;
  font-weight: 600;
  margin-top: 5px;
}

.cmt-box .item .cmt-meta a {
  color: #acacac;
}

.cmt-box .item .cmt-meta a:hover {
  color: #000;
}

.cmt-box h5 {
  font-size: 15px;
  margin: 0 0 3px;
}

.cmt-weekdays {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.cmt-weekdays li {
  margin: 0 5px 5px 0;
}

.cmt-weekdays input {
  display: none;
}

.cmt-weekdays li label {
  border: 1px solid #d2d2d2;
  margin: 0;
  padding: 0 10px;
  transition: all 0.5s;
  line-height: 28px;
  display: inline-block;
  vertical-align: top;
  font-size: 11px;
  cursor: pointer;
  border-radius: 50px;
}

.cmt-weekdays li input:checked+label,
.cmt-weekdays li label:hover {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.cmt-form {
  margin-top: 25px;
}

.cmt-form .form-group label {
  font-size: 14px;
  color: #aaaaaa;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.cmt-form .form-control {
  border: 1px solid #d2d2d2;
  border-radius: 20px;
  height: 36px;
  padding: 0 18px;
  font-size: 13px;
}

.cmt-form textarea.form-control {
  height: 65px;
  border-radius: 10px;
  padding-top: 10px;
}

.cmt-form .form-group {
  margin-bottom: 15px;
}

.date-field-wrap>img {
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
}

.date-field-wrap {
  position: relative;
  padding-left: 40px;
  padding-right: 30px;
}

.date-field-wrap input {
  display: block;
  border: 0;
  width: 100%;
  border-bottom: 1px solid #b5b5b5;
  text-align: center;
  font-size: 12px;
  height: 28px;
  padding: 0 8px;
}

.add_p a {
  font-size: 14px;
  font-weight: 600;
  color: #aaaaaa;
}

.add_p a:hover {
  color: var(--primary);
}

.limit-switch.custom-switch .custom-control-label::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 27px;
  background-color: #00c11a;
  border: 0;
  border-radius: 50px;
}

.limit-switch.custom-switch .custom-control-label::after {
  background: #fff;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  transition: all 0.2s;
  border-radius: 50px;
  margin: 4px;
}

.limit-switch.custom-switch .custom-control-label {
  width: 46px;
  margin: 0;
  height: 27px;
  margin: 0 8px;
  cursor: pointer;
}

.limit-switch.custom-switch {
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
}

.limit-switch.custom-switch .custom-control-input:checked~.custom-control-label::after {
  transform: none;
  left: 19px;
}

/**OTP Model***/

.otp .sm-label {
  display: block;
  color: #b5afaf;
  font-size: 15px;
  margin-bottom: 3px;
  font-weight: 600;
}

.cust-modal .form-group .form-control.input-otp {
  padding: 5px 15px;
  letter-spacing: 35px;
  border: 0;
  border-radius: 0px;
  font-weight: bold;
  font-size: 22px;
  margin-left: 20px;
  background-image: linear-gradient(to left, black 70%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 50px 2px;
  background-repeat: repeat-x;
  background-position-x: 35px;
  width: 300px;
}

.otp .timer {
  color: #b5afaf;
  font-size: 13px;
  font-weight: 600;
}

.cust-modal.otp .form-group label {
  margin-left: 0px;
}

/*

.otp .sm-label {
    display: block;
    color: #B5AFAF;
    font-size: 15px;
    margin-bottom: 3px;
    font-weight: 600;
}
.digit-group input {
    width: 35px;
      height: 45px;
      border-bottom: 2px solid var(--dark);
      line-height: 50px;
      text-align: center;
      font-size: 24px;
      font-weight: 600;
      color: var(--dark);
      border-top: 0;
      border-right: 0;
      border-left: 0;
      margin: 0 10px 0 0;
  }
  .otpouter{
    display: block;
  }
  .prompt {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--dark);
  }
.otp .timer {
    color: #B5AFAF;
    font-size: 13px;
    font-weight: 600;
}
*/
.cust-modal.otp .form-group label {
  margin-left: 0px;
}

.cmt-form .btn.btn-primary,
.share-experience .btn.btn-primary {
  border-radius: 50px;
  line-height: 32px;
  font-size: 18px;
  padding: 0 30px;
  font-weight: 600;
}

.cust-modal .modal-dialog {
  max-width: 430px;
}

.cust-modal .modal-content {
  padding: 40px;
  border-radius: 44px;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
}

.cust-modal .modal-body {
  padding: 0;
}

.cust-modal .modal-content .close {
  color: #000;
  position: absolute;
  right: 0;
  top: -5px;
  margin: -18px;
  font-size: 28px;
  opacity: 1;
  z-index: 55;
}

.cust-modal .modal-content .close:hover {
  opacity: 0.6;
}

.cust-modal .form-group label {
  line-height: 120%;
  margin: 0 0 5px 14px;
  font-size: 22px;
  color: #000;
  font-weight: 700;
}

.cust-modal .form-group .form-control {
  border-radius: 50px;
  padding: 0 20px;
  height: 42px;
  font-size: 15px;
  border: 1px solid #c8c8c8;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.btn.btn-primary.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 15px;
}

.btn.btn-custom {
  border-radius: 11px;
  font-size: 18px;
  line-height: 42px;
  padding: 0 25px;
}

.cust-checkbox {
  margin: 0 0 12px 20px;
}

.cust-checkbox label {
  margin: 0;
}

.cust-checkbox input {
  display: none;
}

.cust-checkbox label {
  margin: 0;
  line-height: 25px;
  font-size: 15px;
  color: #b5afaf;
  padding: 0 0 0 40px;
  cursor: pointer;
  position: relative;
}

.cust-checkbox label a {
  color: #b5afaf;
  text-decoration: underline;
}

.cust-checkbox label:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  border: 1px solid var(--secondary);
  height: 25px;
  border-radius: 6px;
  background-position: center center;
  background-repeat: no-repeat;
}

.cust-checkbox input:checked~label:before {
  background-image: url("../images/agree-checkbox.svg");
}

.or {
  position: relative;
  margin: 20px 0 20px;
  z-index: 1;
  text-align: center;
  line-height: 30px;
  font-size: 21px;
  font-weight: bold;
}

.or span {
  background: #fff;
  display: inline-block;
  padding: 0 17px;
}

.or:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 3px;
  background: #000;
  margin: auto;
  max-width: 280px;
  z-index: -1;
}

ul.with-login {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: var(--primary);
  font-weight: bold;
}

ul.with-login li+li {
  margin-left: 25px;
}

ul.with-login a {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.acc_user .img {
  min-width: 90px;
  max-width: 90px;
  border-radius: 50%;
  overflow: hidden;
}

.acc_user h4 {
  font-size: 23px;
  color: #b5afaf;
  font-weight: 600;
  margin: 0 0 2px;
}

.acc_user h2 {
  font-size: 39px;
  color: #2b2f3b;
  font-weight: bold;
  margin: 0;
}

.acc_user {
  margin: 0 0 15px;
}

.text-muted {
  color: #b5afaf !important;
}

.cust-modal .modal-dialog.modal-lg {
  max-width: 1050px;
}

.prouct_image {
  padding: 30px 20px 30px 30px;
}

.prouct_dtc {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  min-height: 100%;
  border-radius: 43px;
  overflow: hidden;
  padding: 40px 40px 90px;
  position: relative;
}

.cust-modal .modal-content.p-0 .close {
  margin: 25px;
}

.prouct_dtc h2 {
  font-size: 20px;
  margin: 0 0 10px;
}

.price-desc p {
  color: var(--dark);
}

.ingredient-content h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

table.ingredient-content thead th {
  width: 50%;
  text-align: center;
}

table.ingredient-content {
  font-size: 14px;
}

table.ingredient-content tbody td {
  border-top: 0;
  padding: 10px 0;
}

table.ingredient-content thead th:first-child,
table.ingredient-content tbody td:first-child {
  border-right: 1px solid #dee2e6;
}

table.ingredient-content ul li {
  display: inline-flex;
}

table.ingredient-content ul.fixed-lab {
  margin-left: 25px;
}

table.ingredient-content ul.fixed-lab label {
  width: 70px;
}

table.ingredient-content ul label {
  width: 120px;
  font-weight: 800;
  margin-bottom: 0;
}

.prouct_dtc .nav-tabs .nav-link {
  border: 0;
  padding: 0;
  font-size: 23px;
  color: #000000;
  background: transparent;
  font-weight: 600;
  position: relative;
  line-height: 42px;
  display: inline-block;
  vertical-align: top;
}

.prouct_dtc .nav-tabs .nav-item {
  margin: 0;
  flex-grow: 1;
}

.prouct_dtc .nav-tabs .nav-item+.nav-item {
  border-left: 1px solid #d6d6d6;
}

.prouct_dtc .nav-tabs {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 3px;
  margin: 0 0 20px;
  text-align: center;
}

.prouct_dtc .nav-tabs .nav-link:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #000;
  border-radius: 5px;
  height: 3px;
  margin: auto;
  width: 0;
  transition: all 0.5s;
}

.prouct_dtc .nav-tabs .nav-link.active:before,
.prouct_dtc .nav-tabs .nav-link:hover:before {
  width: 100%;
}

.product-share {
  position: absolute;
  right: 0;
  top: 0;
  margin: 20px;
  z-index: 5;
}

.prouct_image .dot-design .owl-dots {
  margin-top: 20px;
}

.prouct_image .dot-design .owl-dots .owl-dot.active,
.prouct_image .dot-design .owl-dots .owl-dot:hover {
  border-color: #d30019;
  background: #d30019;
}

.product_action {
  display: flex;
  align-items: center;
  margin-top: 22px;
}

.product_action .item {
  margin: 0;
  flex-grow: 1;
  text-align: center;
  line-height: 48px;
}

.product_action .item+.item {
  border-left: 2px solid #b9b9b9;
}

.product_action .item_btn {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16);
  display: inline-block;
  border-radius: 50px;
  padding: 0 20px;
  line-height: 36px;
}

.product-btns {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0 0 42px 42px;
  overflow: hidden;
  display: flex;
}

.product-btns .btn.btn-primary {
  border-radius: 0;
  display: block;
  flex-grow: 1;
  min-width: 50%;
  line-height: 64px;
  padding: 0 10px;
  font-size: 23px;
}

.product-btns .btn.btn-primary.dark {
  background: #980416;
}

.product-btns .btn.btn-primary.dark:hover {
  background: #000;
}

.c_review {
  display: flex;
  justify-content: space-between;
  padding-right: 70px;
}

.c_review ul li {
  position: relative;
  padding-left: 140px;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 20px;
}

.c_review ul li .r_label {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.c_review h4 {
  font-size: 13px;
  font-weight: bold;
  margin-left: 50px;
}

.p_review_add {
  display: flex;
  align-items: center;
  background: #fafafa;
  padding: 12px 40px;
  margin: 25px -40px 12px;
}

.prouct_dtc .user {
  min-width: 40px;
  width: 40px;
  border: 1px solid #d30019;
  border-radius: 50%;
  margin-right: 15px;
}

.p_review_add_field,
.p_review_add_dtc {
  flex-grow: 1;
}

.p_review_item {
  display: flex;
  align-items: flex-start;
}

.p_review_add_field input {
  display: block;
  border-radius: 50px;
  width: 100%;
  background: #f5f5f5;
  height: 39px;
  border: 0;
  padding: 0 20px;
  font-size: 13px;
}

.p_review_add_dtc {
  padding-right: 170px;
  position: relative;
}

.p_review_add_dtc .rating-wrap {
  position: absolute;
  right: 70px;
  top: 10px;
}

.p_review_add_dtc h5 {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 5px;
}

.p_review_add_dtc h5 small {
  font-size: 7px;
  color: #d30019;
  font-weight: 600;
  margin-left: 10px;
}

.p_review_add_dtc p {
  font-size: 10px;
}

.text-primary {
  color: var(--primary) !important;
}

.join-list .item {
  position: relative;
  padding: 3px 0 0 50px;
  margin: 0 0 10px;
}

.join-list .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.join-list .item h6 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.join-list .item p {
  font-size: 11px;
  font-weight: 600;
}

.join-list .item.free_join_item {
  padding-right: 180px;
}

.join-list .item .btn {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  font-weight: bold;
  padding: 0 15px;
  line-height: 30px;
  border-radius: 7px;
}

.pepole {
  display: flex;
  align-items: center;
  margin-top: 30px;
  justify-content: space-between;
}

.pepole h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.pepole ul {
  display: flex;
  max-width: 64%;
  flex-basis: 64%;
  overflow: hidden;
}

.pepole ul li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  min-width: 40px;
}

.user_wrap {
  position: relative;
  padding: 15px 40px;
}

.user_wrap .user {
  position: relative;
  padding-left: 70px;
  margin: 0 0 12px;
  padding-top: 6px;
}

.user_wrap .user .user-img {
  display: block;
  border: 0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.user_wrap .user h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 2px;
}

.user_wrap .user h4 a {
  color: var(--dark);
}

.user_wrap .user p {
  font-size: 16px;
  line-height: 120%;
  color: #000;
}

.user_wrap .user p span {
  color: #878787;
}

.user_wrap p {
  font-size: 15px;
  line-height: 120%;
  color: #000;
}

.experience-modal-box .img {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}

#expert_modal .experience-modal-box .img video {
  padding-bottom: 74px;
}

#expert_modal .experience-modal-box .experience_action {
  padding: 10px 10px 20px;
}

.experience_action {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 1);
  border-radius: 0 0 40px 40px;
}

.experience_action.only-this {
  position: relative;
  padding: 15px 30px;
  justify-content: space-between;
  border-radius: 0;
}

.experience_action.only-this .item {
  flex-grow: 0;
}

.details-experience.only-this .dtc p {
  margin-bottom: 5px;
}

.experience_action.only-this .item+.item {
  border-left: 0;
}

.experience_action .item {
  margin: 0;
  flex-grow: 1;
  text-align: center;
}

.experience_action .item+.item {
  border-left: 1px solid var(--secondary);
}

.cust-modal .modal-dialog.modal-normal {
  max-width: 650px;
}

.experience_action.bottom .item a {
  font-size: 17px;
  font-weight: 600;
  color: #000;
  display: flex;
  padding: 0;
  justify-content: space-around;
}

.experience_action.bottom .item a img {
  width: 26px;
  max-width: 30px;
}

.experience_action .item a {
  font-size: 17px;
  font-weight: 600;
  color: #000;
  position: relative;
  padding-left: 50px;
  line-height: 30px;
  display: inline-block;
  vertical-align: top;
}

.experience_action .item a .icon {
  display: flex;
  position: absolute;
  left: 0;
  top: -5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.experience_action .item a .icon span {
  position: absolute;
  right: -3px;
  top: 0;
  min-width: 22px;
  height: 22px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 23px;
  font-weight: bold;
  font-size: 13px;
}

.catalogue-select {
  position: relative;
}

.catalogue-select .search-word {
  position: absolute;
  top: 4px;
  max-width: 30px;
  left: 5px;
}

.catalogue-select select {
  border-radius: 50px;
  width: 240px;
  border-radius: 50px;
  background-color: #fff;
  border-radius: 50px;
  border: 0;
  font-family: "Nunito Sans";
  line-height: 38px;
  padding: 0 30px 0 40px;
  font-size: 14px;
  min-width: 200px;
  font-weight: 800;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
  color: var(--primary);
  height: 38px;
  appearance: none;
  -webkit-appearance: none;
}

.catalogue-select select {
  background-image: url("../images/down-arrow.svg");
  background-repeat: no-repeat;
  background-position: center right 15px;
}

/* .catalogue-select .search-word{
    max-width: 30px;
    width: 30px;
}
.catalogue-select .select{
    background: #fff;
}
.catalogue-select .ui-selectmenu-button.ui-button {
    background: #fff;
    border-radius: 50px;
    border: 0;
    line-height: 38px;
    padding: 0 30px 0 40px;
    font-size: 14px;
    min-width: 170px;
    font-weight: 800;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.36);
    color: var(--primary);
}
.catalogue-select .ui-selectmenu-button.ui-button::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    margin: 9px;
    width: 21px;
    height: 21px;
    background: url("../images/worldwide.svg") no-repeat center center;
}
.catalogue-select .ui-selectmenu-button.ui-button::after {
    content: "";
display: block;
position: absolute;
right: 0;
top: 0;
border-left: 5px ridge transparent;
border-right: 5px ridge transparent;
border-top: 8px solid var(--dark);
margin: 16px 16px 0 0;
} */
/*28-7-2020*/
.mapbox {
  position: relative;
  height: 100%;
}

.mapbox iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.mapbox .back-btn {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin: 10px;
  padding: 6px;
  background: transparent;
  border: 0;
  line-height: 0;
}

.selector-box h2 {
  font-size: 31px;
  font-weight: 900;
  margin: 0 0 4px 0;
}

.selector-box h2 img {
  width: 41px;
  vertical-align: bottom;
}

.selector_address .btn {
  line-height: 34px;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 0;
}

.selector_address {
  position: relative;
  padding-right: 97px;
  font-size: 19px;
  font-weight: bold;
  color: var(--secondary);
  line-height: 120%;
  min-height: 32px;
}

.selector-box .field input {
  font-size: 15px;
  display: block;
  width: 100%;
  padding: 0;
  height: 24px;
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #d3d3d3;
}

.selector-box .field {
  margin-top: 45px;
}

.field-save {
  margin-top: 30px;
  margin-bottom: 10px;
}

.field-save label {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 11px;
  color: var(--secondary);
}

.save_list {
  display: flex;
  flex-wrap: wrap;
}

.save_list input {
  display: none;
}

.save_list .item {
  margin-right: 18px;
}

.save_list .item label {
  display: block;
  border-radius: 10px;
  border: 1px solid #d30019;
  cursor: pointer;
  line-height: 33px;
  padding: 0 20px;
  transition: all 0.3s;
  color: #d30019;
  font-size: 16px;
  font-weight: bold;
}

.save_list .item input:checked+label {
  background: #d30019;
  color: #fff;
}

.selector-box form .btn-block {
  border-radius: 7px;
  line-height: 30px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: bold;
}

.order_head h4 {
  font-size: 25px;
  font-weight: bold;
  margin: 0 0 2px;
}

.order_head p {
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
}

.order_head {
  margin: 0 0 15px;
}

.order_box {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
}

.order_box .dtc {
  padding: 15px 30px 15px 15px;
}

.order_box h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 6px;
}

.order_box h2 img {
  width: 41px;
  vertical-align: bottom;
}

.order_box p {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

.user_order {
  position: relative;
  padding-right: 100px;
  margin-top: 30px;
}

.user_order .right_u {
  position: absolute;
  right: 0;
  top: 0;
}

.user_order .right_u img {
  max-width: 82px;
  border-radius: 50%;
  overflow: hidden;
}

.user_order .right_u .red_call {
  position: absolute;
  left: -10px;
  bottom: 0;
  margin: -10px;
}

.user_order h3 {
  font-size: 25px;
  margin: 0 0 35px;
}

html .user_order p {
  font-size: 18px;
}

.early {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  width: 123px;
  text-align: center;
  margin: 90px 0px 0 auto;
  padding: 7px;
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  line-height: 140%;
}

.early span {
  border-radius: 10px;
  line-height: 58px;
  display: block;
  font-size: 25px;
  font-weight: 600;
  background: #d30019;
  color: #fff;
  margin: -7px -7px 7px;
}

.early b {
  display: block;
  font-size: 19px;
  font-weight: 600;
  color: var(--secondary);
}

.my-order h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 18px;
}

.order_list {
  margin: 0 0 30px;
}

.order_list .item {
  margin: 0 0 10px;
  display: flex;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  align-items: center;
  padding: 15px;
}

.order_list .item.without_shadow {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.order_list .img {
  flex-basis: 28%;
  max-width: 28%;
  padding-right: 20px;
  text-align: center;
}

.order_list .dtc {
  flex-basis: 50%;
  max-width: 50%;
  padding-right: 20px;
}

.order_list .dtc-right {
  flex-basis: 22%;
  max-width: 22%;
}

.order_list .dtc h3 {
  font-size: 17px;
  font-weight: bold;
  line-height: 120%;
  margin: 0px 0 6px;
}

.order_list .dtc h3 a {
  color: #000000;
}

.order_list .dtc h3 a:hover {
  color: var(--primary);
}

.order_list .dtc p {
  font-size: 18px;
  color: var(--secondary);
  font-weight: 600;
  margin: 0 0 8px;
}

.order_list .dtc p:last-child {
  margin: 0;
}

.order_list .dtc .total_txt {
  color: #989898;
  line-height: 120%;
}

.order_list .dtc .total_txt b {
  display: block;
  color: #000;
  font-weight: 600;
}

.order_list .dtc-right p {
  font-size: 21px;
  color: var(--secondary);
  margin: 0 0 10px;
  font-weight: 600;
}

.order_list .dtc-right h4 {
  color: #000000;
  font-weight: bold;
  font-size: 23px;
  margin: 0 0 10px;
}

.order_list .status_link {
  color: #66a259;
  font-weight: bold;
  font-size: 23px;
  text-decoration: underline;
}

.order_list .status_link:hover {
  color: #000 !important;
}

.order_list .status_link.status_link_red {
  color: #d30019;
}

.cart_order_box {
  padding: 20px 25px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  margin: 0 0 15px;
  background: var(--white);
}

.cart_order_list .item {
  display: flex;
  margin: 0 0 15px;
}

.cart_order_list {
  margin-bottom: 15px;
  border-bottom: 1px solid #c7c7c7;
}

.cart_order_list .item .img {
  flex-basis: 20%;
  max-width: 20%;
  padding-right: 20px;
}

.cart_order_list .item .dtc {
  flex-basis: 50%;
  max-width: 50%;
  padding-right: 15px;
  padding-top: 10px;
}

.cart_order_list .item .dtc-right {
  max-width: 30%;
  flex-basis: 30%;
  position: relative;
  padding-left: 110px;
  margin-top: 10px;
}

.cart_order_list .item h3 {
  font-size: 19px;
  font-weight: bold;
  margin: 0 0 8px;
  line-height: 120%;
}

.cart_order_list .item h3 a {
  color: #000;
}

.cart_order_list .item h3 a:hover {
  color: var(--primary);
}

.cart_order_list .item p {
  font-size: 19px;
  margin: 0 0 8px;
  line-height: 120%;
}

.cart_order_list .item p:last-child {
  margin: 0;
}

.prodinput {
  width: 98px;
  border: 1px solid #c7c7c7;
  position: relative;
  padding: 0 28px;
}

.prodinput .productqty {
  width: 100%;
  border: 0;
  text-align: center;
  height: 36px;
  font-size: 19px;
  font-weight: 900;
  color: #d30019;
}

.prodinput .minus,
.prodinput .plus {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 36px;
  border: 0;
  text-align: center;
  background: transparent;
  font-size: 23px;
  color: var(--secondary);
  font-weight: 600;
  transition: all 0.5s;
}

.prodinput .minus:hover,
.prodinput .plus:hover {
  color: var(--primary);
}

.prodinput .plus {
  left: auto;
  right: 0;
}

.cart_order_list .dtc-right .prodinput {
  position: absolute;
  left: 0;
  top: 0;
}

.cart_order_list .dtc-right h4 {
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  line-height: 38px;
  margin: 0;
}

.delivery_link a {
  vertical-align: top;
  display: inline-block;
  line-height: 38px;
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary);
}

.delivery_link img {
  margin-right: 10px;
}

.coupon_wrap {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  padding: 15px 30px;
  margin: 0 0 15px;
  border-radius: 22px;
  background: var(--white);
}

.coupon_wrap .coupon_toggle {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  font-size: 17px;
  line-height: 40px;
  font-weight: 600;
  padding-left: 0;
  position: relative;
  padding-right: 40px;
}

.coupon_wrap .coupon_toggle img {
  margin-right: 10px;
}

.coupon_wrap .coupon_toggle:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border-top: 2px solid #a2a2a2;
  border-right: 2px solid #a2a2a2;
  transform: rotate(45deg);
  margin: 13px 5px 0;
  transition: all 0.3s;
}

.coupon_wrap .coupon_toggle[aria-expanded="true"]:before {
  transform: rotate(135deg);
  margin-top: 10px;
}

.coupon_wrap .field {
  margin-top: 20px;
  padding-right: 120px;
  position: relative;
  max-width: 400px;
}

.coupon_wrap .field .btn {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 39px;
  padding: 0 30px;
}

.billdetails {
  padding: 20px 25px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  margin: 0 0 15px;
  background: var(--white);
}

.billdetails h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
}

.billdetails .item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 26px;
}

.billdetails .item span {
  display: block;
  margin-left: auto;
}

.blue-link {
  text-decoration: underline;
  color: #6490ce;
}

.blue-link:hover {
  text-decoration: underline;
  color: #000;
}

.cancellations-box {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  padding: 20px 25px 20px 65px;
  margin: 0 0 15px;
  position: relative;
  background: var(--white);
}

.cancellations-box .icon {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin: 20px 25px;
}

.cancellations-box p {
  font-size: 18px;
  color: #8d8d8d;
}

.text-red {
  color: #f72424;
}

.cancellations-box h2 {
  color: var(--secondary);
  line-height: 34px;
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 10px;
}

ul.notes {
  list-style-type: disc;
}

.notes li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #8d8d8d;
}

.pickup-box {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  padding: 20px 25px;
  margin: 0 0 15px;
  position: relative;
  background: var(--white);
}

.pickup-box .item {
  position: relative;
  padding-left: 95px;
  min-height: 78px;
  padding-top: 2px;
}

.pickup-box .item .icon {
  display: block;
  position: absolute;
  left: 0;
  max-width: 77px;
  top: 0;
  border-radius: 50%;
  overflow: hidden;
}

.pickup-box .item h3 {
  font-size: 18px;
  margin: 0 0 5px;
}

.pickup-box .item h5 {
  font-size: 20px;
  margin: 0 0 5px;
  font-weight: normal;
}

.pickup-box .item p {
  font-size: 15px;
  margin: 0 0 5px;
  color: #8f8f8f;
}

.pickup-box .item .blue-link {
  font-size: 20px;
  font-weight: bold;
}

.pickup-box .btn {
  line-height: 68px;
  font-size: 19px;
  padding: 0 20px;
  border-radius: 0;
  min-width: 260px;
  font-weight: bold;
}

.btn.btn-primary-dark {
  background: #a70215;
  color: #fff;
}

.btn.btn-primary-dark:hover {
  background: #000;
  color: #fff;
}

.btn-shadow {
  border-radius: 17px;
  background: #fff;
  border: 0;
  padding: 9px 20px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16);
  display: inline-block;
  vertical-align: top;
}

.review-user-opinion .number-btn.slim {
  height: 42px;
}

.community .user-opinion.review-user-opinion {
  padding-left: 25px;
  padding-right: 25px;
}

.user-opinion.review-user-opinion ul li a.fav {
  position: relative;
  z-index: 1;
  background: #fff;
  display: inline-block;
  vertical-align: top;
  border: 1px solid var(--secondary);
  line-height: 23px;
  font-size: 14px;
  padding-left: 43px;
  margin: 10px 0;
  border-radius: 10px;
}

.user-opinion.review-user-opinion ul li a.fav:before {
  content: "";
  display: block;
  height: 48px;
  width: 48px;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  position: absolute;
  left: -5px;
  top: -12px;
  background: #fff;
  z-index: -2;
}

.user-opinion.review-user-opinion ul li a.fav img {
  display: block;
  position: absolute;
  left: -4px;
  top: -14px;
  background: transparent;
  width: 43px;
}

.user-opinion.review-user-opinion ul li a.fav:after {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 22px;
  background: #fff;
  z-index: -1;
}

.r_rating_wrap {
  width: 100%;
  margin-top: 20px;
}

.r_rating_wrap .item {
  position: relative;
  padding-left: 150px;
  margin-bottom: 5px;
}

.r_rating_wrap .item p {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 30px;
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

.review-cmt {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.13);
  padding: 20px 25px;
}

.review-cmt .item {
  margin-bottom: 12px;
}

.review-cmt .item p {
  font-size: 17px;
  color: #000000;
  margin: 0;
}

.review-cmt .item h5 {
  font-size: 17px;
  margin: 0;
  font-weight: 600;
  color: #acacac;
}

.review-cmt .item h5 a {
  color: #acacac;
}

.review-cmt .item h5 a:hover {
  color: #000000;
}

.review-cmt .sub-item {
  border-left: 1px solid var(--secondary);
  padding-left: 14px;
  margin: 12px 0 0px 30px;
}

.order_box .mapbox {
  height: 100%;
}

.order_box .mapbox iframe {
  height: 100%;
}

.active>.subcart-dropdown {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.subcart-dropdown {
  position: absolute;
  top: 200%;
  background: #fff;
  width: 350px;
  right: 0;
  padding: 15px 20px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.31);
  margin-top: 15px;
}

.subcart-dropdown h6,
.subcart-group h6 {
  font-size: 14px;
  font-weight: 600;
  color: #656565;
  margin: 0 0 12px;
}

.subcart-dropdown hr,
.subcart-group hr {
  border-color: #c1c1c1;
  margin: 20px 0;
}

ul.magic-menu li.subcart .subcart-dropdown li,
.subcart-group li {
  display: block;
  margin: 0 0 8px;
}

ul.magic-menu li.subcart .subcart-dropdown li a,
.subcart-group li a {
  border-radius: 0;
  background: transparent;
  border: 0;
  display: inline-block;
  vertical-align: top;
  box-shadow: 0 0 0 0 transparent;
  padding: 0;
  font-size: 16px;
  color: #040404;
  font-weight: bold;
}

ul.magic-menu li.subcart .subcart-dropdown li a:hover,
.subcart-group li a:hover {
  color: var(--primary);
}

ul.magic-menu li.subcart .subcart-dropdown li a.link-with-icon,
.subcart-group li a.link-with-icon {
  position: relative;
  padding-left: 36px;
  line-height: 30px;
}

ul.magic-menu li.subcart .subcart-dropdown li a.link-with-icon img,
.subcart-group a.link-with-icon img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

ul.magic-menu li.subcart .subcart-dropdown li a.link-with-icon .cart_done,
.subcart-group a.link-with-icon .cart_done {
  left: 13px;
  bottom: auto;
}

.r_preview_dtc {
  padding: 30px;
}

.r_preview_dtc h3 {
  font-size: 20px;
  color: #d30019;
  margin: 0 0 20px;
}

.r_preview_dtc .inner {
  padding: 0 30px;
}

.r_preview_dtc h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
}

.r_preview_dtc p {
  font-size: 15px;
  color: #040404;
  margin: 0 0 10px;
}

.r_preview_dtc .review-cmt {
  box-shadow: 0 0 0 transparent;
}

ul.dot_list {
  font-size: 14px;
}

ul.dot_list li {
  position: relative;
  padding-left: 20px;
  margin: 0 0 10px;
}

ul.dot_list li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 9px;
  top: 5px;
  height: 9px;
  background: #000000;
  border-radius: 50%;
}

ul.link_list {
  font-size: 14px;
}

ul.link_list li {
  margin: 0 0 10px;
}

ul.link_list li a {
  color: #000000;
}

ul.link_list li a:hover {
  color: var(--primary);
}

.prouct_dtc.main-details {
  border-radius: 0;
  box-shadow: 0 0 0 transparent;
}

.prouct_dtc.main-details .pepole {
  display: block;
}

.main-details .pepole ul {
  flex-wrap: wrap;
  max-width: 100%;
  flex-basis: 100%;
}

.main-details .pepole ul li {
  margin: 5px 5px 10px;
}

.book_list_icon {
  position: absolute;
  right: 0;
  top: 0;
}

.book_list_icon img {
  max-height: 26px;
  max-width: 26px;
}

.main-details p {
  font-size: 22px;
}

.prouct_dtc.main-details h2 {
  font-size: 30px;
  font-weight: 600;
}

.main-details .join-list .item h6 {
  font-size: 19px;
}

.main-details .join-list .item p {
  font-size: 15px;
  margin: 0;
}

.main-details .join-list .item {
  padding-top: 0;
  margin-bottom: 7px;
}

.main-details .join-list {
  margin-top: 30px;
}

.details_img {
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 22px;
}

.profile-details_main .img {
  /* max-width: 200px; */
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  /* max-height: 200px; */
  align-items: center;
  display: flex;
  /* width: 160px; */
  justify-content: center;
  /* height: 160px; */
}

.profile-details_main .inner {
  padding: 0 40px;
  margin: 0px 0 20px;
}

.shadow-btn {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16);
  display: inline-block;
  vertical-align: top;
  border-radius: 17px;
  padding: 0 30px;
  line-height: 50px;
}

.profile-details_main h2 {
  font-size: 31px;
  line-height: 48px;
  margin: 0;
}

.profile-details_main h2 img {
  max-width: 41px;
}

.profile-details_main p {
  font-size: 16px;
  color: #7a8fa6;
  line-height: 140%;
}

.follwer_list {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  color: #7a8fa6;
  text-align: center;
  margin-top: 70px;
}

.follwer_list li a {
  color: #7a8fa6 !important;
}

.cust-modal .model-sm {
  max-width: 500px;
}

ul.follo-list {
  margin-top: 20px;
  max-height: 348px;
  overflow-y: auto;
}

.nav-tabs.follo-tab {
  border-bottom: 1px solid var(--primary);
}

.nav-tabs.follo-tab .nav-link:hover {
  border-color: transparent;
}

.nav-tabs.follo-tab .nav-link.active {
  color: #fff;
  font-weight: 600;
  background-color: var(--primary);
  border-color: var(--primary);
}

ul.follo-list li {
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 10px;
  padding-bottom: 10px;
}

ul.follo-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

ul.follo-list li h3 {
  font-size: 19px;
  line-height: 22px;
}

.follwer_list b {
  display: block;
  color: #1b1b1b;
  line-height: 120%;
  font-size: 28px;
  font-weight: 900;
}

.profile-details_main h2 b {
  font-weight: 900;
}

.profile-details_main .btn-set {
  text-align: center;
  margin-top: 35px;
}

.profile-details_main .btn-set .btn {
  border-radius: 50px;
  line-height: 54px;
  padding: 0 30px;
  font-size: 21px;
  font-weight: 600;
}

.profile-details_main .btn-set .btn+.btn {
  margin-left: 50px;
}

ul.follwer_value_list {
  background: var(--white);
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 15px 10px;
  font-size: 27px;
  line-height: 45px;
  margin-bottom: 20px;
}

ul.follwer_value_list li {
  flex-basis: 33.33%;
  max-width: 33.33%;
}

ul.follwer_value_list li+li {
  border-left: 1px solid #bebebe;
}

.details-experience {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
}

.community .details-experience .user_wrap {
  padding-left: 15px;
  padding-right: 15px;
}

.details-experience .user_wrap {
  padding-left: 15px;
  padding-right: 15px;
}

.user_wrap .v-menu {
  position: absolute;
  right: 0;
  top: 12px;
}

.experience-modal-box.details-experience .img {
  border-radius: 0;
}

.details-experience .experience_action {
  background: rgba(255, 255, 255, 0.82);
}

.details-experience .dtc {
  padding: 10px 30px;
}

.details-experience .dtc p {
  font-size: 18px;
  color: #000;
}

.details-experience .dtc p a {
  color: #b1acac;
}

.details-experience .dtc p a:hover {
  color: #000;
}

.details-experience .p_review_add {
  margin: 0 -30px;
  padding: 10px 30px;
}

.details-experience .p_review_add .user {
  border: 1px solid var(--primary);
  border-radius: 50%;
  margin-right: 14px;
  width: 56px;
  height: 56px;
}

.details-experience .p_review_add_field input {
  font-size: 18px;
  height: 43px;
  padding: 0 30px;
}

.experience-modal-box .img .img-star {
  position: absolute;
  left: 30px;
  bottom: 20px;
}

.community .experience-modal-box .img .img-star {
  bottom: 20px;
}

.experience-modal-box .img .img-star img {
  margin-right: 5px;
}

.edit-profile .img {
  width: 170px;
  margin: 0 auto 15px;
  position: relative;
}

.edit-profile .img img {
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

.edit-profile .img .verify_img {
  border-radius: 0;
  position: absolute;
  right: -18px;
  top: 50px;
  display: block;
}

.chane-picture {
  display: flex;
  justify-content: center;
  margin: 0 0 20px;
}

.chane-picture .field {
  position: relative;
  font-size: 24px;
  color: #040404;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
}

.chane-picture .field input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  font-size: 0;
}

.edit-profile .form-group label {
  color: #aaaaaa;
  font-size: 24px;
  line-height: 120%;
  margin: 0 0 5px 20px;
}

.edit-profile .form-group .form-control {
  height: 72px;
  border: 1px solid #d2d2d2;
  border-radius: 22px;
  padding: 0 32px 0;
  font-size: 27px;
  font-weight: bold;
  color: #000000;
  box-shadow: 0 0 0 transparent !important;
}

.edit-profile .form-group {
  margin: 0 0 25px;
}

.edit-profile .form-group .tel_field .form-control {
  padding-left: 95px;
}

.tel_field {
  position: relative;
}

.tel_field span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin: 21px 30px;
  font-size: 27px;
  font-weight: bold;
  color: #7a7a7a;
  line-height: 30px;
  border-right: 1px solid var(--secondary);
  padding-right: 7px;
}

.edit-profile .form-group textarea.form-control {
  border-radius: 12px;
  height: 135px;
  resize: none;
  padding-top: 12px;
}

.bartender_field {
  position: relative;
}

.edit-profile .form-group .bartender_field .form-control {
  padding-right: 95px;
}

.bartender_field img {
  position: absolute;
  right: 10px;
  top: 0;
  margin: 6px;
}

.edit-profile .ui-selectmenu-button.ui-button {
  display: block;
  width: auto;
  border-radius: 22px;
  height: 72px;
  background: transparent;
  font-size: 26px;
  color: #000000;
  line-height: 72px;
  padding: 0 60px 0 30px;
  font-weight: bold;
}

.edit-profile .ui-selectmenu-button.ui-button .ui-selectmenu-icon {
  display: none;
}

.edit-profile .ui-selectmenu-button.ui-button .ui-selectmenu-text {
  font: inherit;
  color: inherit;
  font-weight: inherit;
}

.edit-profile .ui-selectmenu-button.ui-button:before,
.edit-profile .date_field:before,
.qty-group .item.sm .ui-selectmenu-button.ui-button:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 14px ridge transparent;
  border-right: 14px ridge transparent;
  border-top: 15px solid #000;
  margin: 30px 20px;
}

.date_field {
  position: relative;
}

.fileupload-custom {
  text-align: center;
  border-radius: 10px;
  border: 1px solid #d2d2d2;
  padding: 24px;
  cursor: pointer;
}

.fileuploader h3 {
  text-align: center;
  color: var(--secondary);
  font-size: 24px;
  margin-top: 8px;
}

.fileupload-custom img {
  margin: 0 0 16px;
}

.fileupload-custom h3 {
  font-size: 22px;
  font-weight: bold;
  color: #717171;
  margin: 0 0 8px;
}

.fileupload-custom p {
  font-size: 14px;
  font-weight: bold;
  color: #717171;
}

html .fileuploader-item .column-title {
  padding-left: 60px;
  color: #000;
}

html .fileuploader-items-list {
  margin: 10px 0 0;
}

.column-thumbnail canvas {
  width: 100%;
}

.fileuploader-item .column-thumbnail {
  width: 50px;
  height: 50px;
}

a.fileuploader-action.fileuploader-action-retry {
  display: none;
}

html .fileuploader-action-remove {
  border: 0;
  background: transparent !important;
  width: 30px;
  height: 30px;
}

.fileuploader-action-remove i:before,
.fileuploader-action-remove i:after {
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 5px;
}

.popup-product.main-product {
  position: relative;
}

.main-product .prouct_image {
  padding: 0;
  margin: 0 0 20px;
}

.main-product .prouct_dtc {
  box-shadow: 0 0 0 transparent;
  border-radius: 0;
  padding: 0;
  min-height: 0;
}

html .main-product .dot-design .owl-dots .owl-dot {
  width: 11px;
  height: 11px;
  margin: 0 5px;
}

.main-product .product_action .item_btn {
  border-radius: 12px;
  line-height: 42px;
}

.main-product .product_action .item+.item {
  border-left: 1px solid var(--secondary);
}

.main-product .prouct_dtc h2 {
  font-size: 22px;
  font-weight: 600;
}

.main-product .prouct_dtc .txt p {
  font-size: 21px;
  font-weight: 600;
  color: var(--secondary);
}

.main-product .prouct_dtc .txt {
  position: relative;
  padding-right: 190px;
}

.main-product .prouct_dtc .txt .overall {
  position: absolute;
  right: 0;
  top: 0;
}

.main-product .rating-wrap {
  background-size: 30px;
  min-width: 150px;
  max-width: 200px;
  height: 30px;
}

.main-product .rating-wrap .inner {
  background-size: 30px;
}

.main-product-btns .btn {
  font-size: 21px;
  border-radius: 15px;
  line-height: 46px;
  padding: 0 30px;
  min-width: 238px;
}

.main-product-btns .btn+.btn {
  margin-left: 15px;
}

.main-product-btns {
  text-align: right;
  margin: 0 0 40px;
}

.qty-group {
  display: flex;
  justify-content: space-between;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
  align-items: center;
  font-size: 20px;
  background: var(--white);
  margin: 0 6px 25px;
  font-weight: bold;
}

.qty-group .item {
  border-right: 1px solid #d6d6d6;
  flex-grow: 1;
  text-align: center;
  line-height: 40px;
  padding: 10px 5px;
}

.qty-group .item:last-child {
  border-right: 0;
}

.qty-group .item.sm .ui-selectmenu-button.ui-button {
  width: 150px;
  background: transparent;
}

.qty-group .item.sm .ui-selectmenu-button.ui-button::before {
  margin: 15px 10px;
  border-left: 10px ridge transparent;
  border-right: 10px ridge transparent;
  border-top: 12px solid #000;
}

.btn.btn-primary.dark {
  background: #980416;
}

.btn.btn-primary.dark:hover {
  background: #000;
}

.main-product .prouct_dtc .nav-tabs .nav-link {
  font-size: 31px;
  line-height: 77px;
}

.main-product .prouct_dtc .nav-tabs .nav-link:before {
  height: 6px;
  bottom: 0;
}

.main-product .tab-pane p {
  font-size: 22px;
}

.main-product .ingredient-content h4 {
  font-size: 23px;
}

.main-product table.ingredient-content ul li {
  display: block;
  position: relative;
  padding-left: 170px;
}

.main-product table.ingredient-content ul {
  font-size: 21px;
  color: #676767;
}

.main-product table.ingredient-content ul li label {
  position: absolute;
  left: 0;
  top: 0;
  color: #040404;
  font-weight: 600;
  width: 180px;
}

.main-product table.ingredient-content ul.small_p li {
  padding-left: 70px;
}

.main-product .c_review ul li {
  font-size: 23px;
  padding-left: 180px;
}

.main-product .c_review {
  padding-right: 30px;
  padding-left: 30px;
}

.main-product .c_review h4 {
  margin-left: 0;
  font-size: 24px;
  font-weight: 600;
}

.main-product .prouct_dtc .user {
  width: 74px;
  min-width: 74px;
}

.main-product .p_review_add {
  padding: 12px 30px;
  margin: 25px 0px 12px;
}

.main-product .p_review_add_field input {
  height: 73px;
  border-radius: 20px;
  font-size: 24px;
}

.main-product .p_review_add_dtc h5 {
  font-size: 16px;
}

html .main-product .p_review_add_dtc p {
  font-size: 15px;
}

.main-product .p_review_add_dtc .rating-wrap {
  background-size: 24px;
  width: 150px;
  right: 0;
}

.main-product .p_review_add_dtc .rating-wrap .inner {
  background-size: 24px;
}

.main-product .p_review_add_dtc h5 small {
  font-size: 12px;
}

.popup-product.main-product .prouct_dtc .user {
  width: 65px;
  min-width: 65px;
}

.popup-product.main-product .prouct_dtc .user img {
  width: 65px;
  height: 65px;
}

.main-product .p_review_item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  padding: 0 30px 10px;
  border-bottom: 1px solid #fff;
}

.main-product .p_review_item .user img {
  width: 65px;
  height: 65px;
  max-height: 65px;
}

.main-product .p_review_item .user .p_review_add_dtc {
  padding-top: 15px;
}

.payment-box {
  padding: 20px 30px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
  margin: 0 0 30px;
}

h2.p_head {
  margin: 0 0 14px 30px;
  font-size: 26px;
  font-weight: bold;
}

h3.p_head {
  margin: 0 0 14px 30px;
  font-size: 21px;
  color: #6a6a6a;
  font-weight: bold;
}

.p_radio input {
  display: none;
}

.p_radio label {
  font-size: 21px;
  vertical-align: top;
  margin: 0;
  font-weight: bold;
  padding: 0 0 0 60px;
  line-height: 40px;
  display: block;
  cursor: pointer;
  position: relative;
}

.p_radio label:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
  width: 38px;
  height: 38px;
  border: 6px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #a5a3a3;
  transition: all 0.3s;
}

.p_radio input:checked~label:before {
  background: var(--primary);
}

.payment-box .item {
  border-bottom: 1px solid #c7c7c7;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.payment-box .item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.pay-set {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pay-set h3 {
  font-size: 34px;
  margin: 0;
}

.pay-set .btn {
  line-height: 68px;
  border-radius: 0;
  padding: 0 60px;
  font-size: 19px;
  font-weight: bold;
}

/*****Setting Page CSS *****/
.lable-box {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 8px;
}

.white-box {
  background: var(--white);
  padding: 15px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 15px;
}

.theme-select .form-check {
  border-bottom: 1px solid var(--light-gray);
  margin: 0 0 8px;
  padding-bottom: 10px;
}

.theme-select .form-check .form-check-label {
  padding-left: 10px;
  font-size: 15px;
}

.theme-select .form-check:last-child {
  border-bottom: 0 none;
  padding-bottom: 0px;
  margin: 0;
}

.white-box b {
  font-size: 16px;
  color: var(--dark);
  font-weight: 700;
}

.white-box small {
  color: var(--gray);
  font-size: 12px;
}

.change-phone .form-control {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  margin: 0;
  font-weight: 600;
  padding-left: 0;
}

.change-phone label {
  margin-bottom: 0;
  font-weight: 600;
}

.change-phone .btn-outline-secondary {
  background: transparent;
  border: 0;
  color: var(--gray);
}

.change-phone p {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--dark);
}

.delete-account {
  color: var(--dark);
}

.delete-account:hover {
  color: var(--primary);
}

.switcher {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.switcher .lable-group {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.switcher h4 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 700;
}

.switcher .switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
  margin-bottom: 0;
}

.switcher .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switcher .switcher-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 0 none !important;
}

.switcher .switcher-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

.switcher input:checked+.switcher-slider {
  background-color: var(--primary);
}

.switcher input:focus+.switcher-slider {
  box-shadow: 0 0 1px #2196f3;
}

.switcher input:checked+.switcher-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/*Restyle Checkbox*/
.check-box,
.radio-box {
  position: relative;
  margin-bottom: 6px;
}

.check-box .label-checkbox,
.radio-box .label-checkbox {
  padding-left: 30px;
  margin-bottom: 0;
}

input.checkbox[type="checkbox"],
input.checkbox[type="radio"] {
  display: none;
}

input[type="checkbox"],
input[type="radio"] {
  font-size: 14px;
  color: #999999;
  line-height: 1.2;
  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.radio-box .label-checkbox::before {
  border-radius: 30px;
  content: "";
  background: var(--white);
  border-color: var(--gray);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

input[type="radio"]:checked+.label-checkbox::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--primary);
  position: absolute;
  top: 6px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.label-checkbox::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 13px;
  color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-shadow: 13px 0px 38px #fff;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 18px;
  height: 18px;
  transition: all 0.5s;
  border-radius: 3px;
  background: var(--white);
  border: 1px solid #9698ac;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

input[type="checkbox"]:checked+.label-checkbox::before {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

/*****Social Media Icons ***/
.inline-list.social {
  display: flex;
  margin-top: 10px !important;
  width: 210px;
  margin: 0 auto;
}

.inline-list.social li {
  margin-right: 10px;
}

.inline-list.social li img {
  max-width: 35px;
}

.inline-list.social li a {
  margin-bottom: 0;
}

.hideForClient {
  display: none !important;
}

/* @media min-device-width: 768px{
	
}
@media min-device-width: 1024px{
	
} */
.note-desc img {
  float: right;
}

@media (max-width: 768px) {
  .slim-slider.owl-carousel .owl-item {
    height: auto !important;
  }
}