:root {
  --primary: #8C5C3D;
  --secondary: #E5D1BF;
  --filterPrimary: invert(74%) sepia(4%) saturate(3216%) hue-rotate(354deg) brightness(88%) contrast(75%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(190deg) brightness(172%) contrast(162%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Almarai', sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

body {
  direction: rtl;
  overflow-x: hidden !important;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #333;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none !important;
}

a:hover {
  color: var(--primary) !important;
}

a:focus {
  outline: 0;
}

del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

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

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form input,
form select {
  height: 55px !important;
}

textarea.form-control {
    resize: none;
}

form .form-check-input {
  height: 1em !important;
}

form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

form .form-check-input:focus {
  border-color: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 13px;
  top: 13px;
  height: 30px;
  width: 30px;
  display: block;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.whatsapp_butn {
    width: 60px;
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9;
    -webkit-box-shadow: 0 0px 15px 0 #0001;
    box-shadow: 0 0px 15px 0 #0001;
    border-radius: 50%;
}
.whatsapp_butn img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@-webkit-keyframes tilt-in-fwd-br {
  0% {
    -webkit-transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
            transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-fwd-br {
  0% {
    -webkit-transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
            transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

.tilt-in-fwd-br {
  -webkit-animation: tilt-in-fwd-br 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: tilt-in-fwd-br 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes tilt-in-fwd-bl {
  0% {
    -webkit-transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
            transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-fwd-bl {
  0% {
    -webkit-transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
            transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

.tilt-in-fwd-bl {
  -webkit-animation: tilt-in-fwd-bl 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: tilt-in-fwd-bl 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swal2-popup {
    padding: 3rem 1.25rem !important;
    width: 37em !important;
    border-radius: 25px !important;
}

.swal2-popup .swal2-styled.swal2-confirm{
  position: relative !important;
  padding: .9rem 2rem !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center !important;
  text-align: center !important;
  font-size: 14px !important;
  border: 1px solid transparent !important;
  border-radius: 25px !important;
}
.swal2-popup .swal2-styled.swal2-confirm{
  background-color: var(--primary) !important;
  color: #fff !important;
}

.swal2-popup .swal2-title {
    font-size: 1.5em;
    font-weight: bold;
}

.butn {
  position: relative;
  padding: .9rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 14px;
  border-radius: 25px ;
  border: 1px solid transparent;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}

.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.butn:hover ,
.swal2-popup .swal2-styled.swal2-confirm:hover {
  background-color: #9b865e;
  border: 1px solid #9b865e;
  color: #fff !important;
}

.butn:hover i {
  animation: floatingX .5s both infinite alternate-reverse;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--secondary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev,
.categ_inner .swiper-button-next,
.categ_inner .swiper-button-prev {
  background-image: unset;
  width: 35px;
  height: 35px;
  border: 1px solid transparent;
  border-radius: 0px;
  background-image: unset;
  background-color: #ddd;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .7;
  transform: rotateY(180deg);
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before,
.categ_inner .swiper-button-next::before,
.categ_inner .swiper-button-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover,
.categ_inner .swiper-button-next:hover,
.categ_inner .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before,
.categ_inner .swiper-button-next:hover::before,
.categ_inner .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before,
.categ_inner .swiper-button-next::before,
.categ_inner .swiper-container-rtl .swiper-button-prev::before {
  content: '\f0d9';
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before,
.categ_inner .swiper-button-prev::before,
.categ_inner .swiper-container-rtl .swiper-button-next::before {
  content: '\f0da ';
}

.swiper-container .swiper-pagination,
.categ_inner .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet,
.categ_inner .swiper-pagination .swiper-pagination-bullet {
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active,
.categ_inner .swiper-pagination .swiper-pagination-bullet-active {
  width: 15px;
  background: var(--secondary);
}

.badge {
  padding: .6rem 2rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: 0;
}

.badge.white_badge {
  background-color: #fff;
  color: var(--secondary);
}

.badge.gray_bagde {
  background-color: #eee;
  color: var(--primary);
}

.badge.offer_badge {
  background-color: #CBFFD8;
  color: #333;
}

.badge.primary_badge {
  background-color: var(--primary);
  color: #fff;
}

.icon-18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.position-unset {
  position: unset;
}

.bb {
  border-bottom: 1px solid #ccc;
}

.underline {
  text-decoration: underline !important;
}

.more_link {
  color: #555;
  font-size: 15px;
  font-weight: bold;
  display: block;
}

.more_link::before {
  content: '';
  width: 20px;
  height: 1px;
  display: inline-block;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  background-color: #ccc;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.more_link:hover::before {
  background-color: var(--primary);
  width: 40px;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .top-nav {
  background-color: #3c2919;
}

.navs-container .top-nav .search-box .form-group {
  position: relative;
}

.navs-container .top-nav .search-box .form-group .form-control {
  background-color: #2f2014;
  border: 1px solid #2f2014;
  color: #fff;
  border-radius: 30px;
  height: 45px !important;
  -webkit-padding-start: 55px;
  padding-inline-start: 60px;
}

.navs-container .top-nav .search-box .form-group .form-control::-webkit-input-placeholder {
  color: #999;
}

.navs-container .top-nav .search-box .form-group .form-control:-ms-input-placeholder {
  color: #999;
}

.navs-container .top-nav .search-box .form-group .form-control::-ms-input-placeholder {
  color: #999;
}

.navs-container .top-nav .search-box .form-group .form-control::placeholder {
  color: #999;
}

.navs-container .top-nav .search-box .form-group .search_butn {
    position: absolute;
    right: 0 !important;
    top: 0 !important;
    background-color: #1f150b !important;
    border-radius: 0 25px 25px 0;
    width: 50px;
    height: 45px;
}

.navs-container .top-nav .search-box .form-group .search_butn .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

.navs-container .top-nav .inner {
  padding: 20px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #4a3527;
}

.navs-container .top-nav .inner .butn {
  padding: 0.5rem 1.5rem;
  margin: 0 5px;
  font-size: 12px;
}

.navs-container .top-nav .inner .butn.reg_butn {
  color: #fff;
  border: 1px solid var(--secondary);
}

.navs-container .navbar {
  /*background-color: #3c2919;*/
}

.navs-container .navbar .logo {
  width: 180px;
  height: 185px;
  margin-top: -85px;
  -o-object-fit: contain;
  object-fit: contain;
}

.navs-container .navbar .nav-link {
  color: #eee;
  margin: 0 5px;
}

.navs-container .navbar .nav-link.active {
  color: var(--primary);
  font-weight: bold;
}

.navs-container .navbar .nav-links a {
  margin: 0 5px;
}

.navs-container .navbar .nav-links a .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.navs-container .navbar .nav-links a:hover .icon {
  -webkit-filter: var(--filterPrimary);
  filter: var(--filterPrimary);
}

.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
  box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--secondary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--secondary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  padding-top: 70px;
  position: relative;
  background-color: #3c2919;
  overflow: hidden;
}

.footer .content {
  margin-bottom: 35px;
}

.footer .content .contact_info .item{
    color: #ddd;
}
.footer .content .contact_info .item i{
    color: var(--secondary);
    margin-inline-end: 5px;
}
.footer .content .title {
  margin-bottom: 30px;
}

.footer .content .links a {
  display: block;
  margin: 17px 0;
  color: #ddd;
}

.footer .content .logo {
  width: 150px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

.footer .content .social_links a {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #eee;
  color: #171C21;
}

.footer .content .social_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}

.footer .foot_p {
  background-color: #1d120c;
  padding: 20px 0;
  margin-bottom: 0;
  color: #ccc;
  font-size: 14px;
}

/**********************************************
    Start Edit Home Page
**********************************************/
.header {
  background-color: #E8E8E8;
}

.header .item {
  opacity: 0;
}

.header .item .text-box .title {
  font-weight: bold;
  font-size: calc(35px + 1.3vw);
  line-height: 1.4;
}

.header .item .text-box .det {
  line-height: 2;
}

.header .item .sec-img {
    height: 400px;
    border-radius: 25px;
    object-fit: cover !important;
}
.header .item .img-box {
  height: 580px;
}


.header .item .img-box::before {
  content: '';
  width: 500px;
  height: 450px;
  background: url(../images/shape-1.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -65px;
  right: 47%;
  z-index: 1;
}

.header .swiper-slide-active .item {
  opacity: 1;
}

.header .swiper-slide-active .item .title {
  -webkit-animation: tilt-in-fwd-br 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: tilt-in-fwd-br 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.header .swiper-slide-active .item .det {
  -webkit-animation: tilt-in-fwd-bl 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: tilt-in-fwd-bl 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.header .swiper-slide-active .item .butn {
  -webkit-animation: zoomIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: zoomIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.header .swiper-slide-active .item .sec-img {
  -webkit-animation: flipInY 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: flipInY 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.about-sec .text-box .title {
  font-weight: bold;
  line-height: 1.4;
}

.about-sec .sec-img {
  height: 500px;
  border-radius: 25px;
}

.about-sec .sm-img {
  height: 400px;
}

.about-sec .pattern {
  position: absolute;
  bottom: 10px;
  left: 5%;
  width: 25%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: #222222;
  width: 60%;
  height: 50%;
  top: unset;
  right: unset;
}

.categ-sec {
  background-color: #F5F6F8;
}

.categ-sec .banner_box {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.categ-sec .banner_box .badge {
  padding: .9rem 3.5rem;
  position: absolute;
  bottom: 15px;
  font-size: 16px;
}

.categ-sec .banner_box .butn {
  position: absolute;
  bottom: 15px;
  min-width: 185px;
  padding: 0.7rem 2rem;
}

.categ-sec .banner_box .badge,
.categ-sec .banner_box .butn {
  left: 15px;
}

.categ-sec .banner_box::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}

.categ-sec .banner_box .sec-img {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.categ-sec .banner_box:hover .sec-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.categ-sec .banner_box:hover::before {
  -webkit-animation: shine .75s;
          animation: shine .75s;
}

.categ-sec .lg {
  height: 600px;
}

.categ-sec .lg .badge,
.categ-sec .lg .butn {
  left: unset;
  bottom: unset;
  top: 15px;
  right: 15px;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.categ-sec .sm {
  height: 292.5px;
}

.categ-sec .sm .badge,
.categ-sec .sm .butn {
  padding: .6rem 0;
  min-width: 150px;
}

.products-sec {
  background-color: #F5F6F8;
}

.products-sec  .nav-link {
    text-align: center;
    color: #555;
    position: relative;
    background-color: transparent;
    margin: 0 5px;
    width: 150px;
    padding: 1.5rem 0 1.5rem 0;
}

.products-sec .nav-link .img-box {
  width: 55px;
  height: 55px;
  margin: 0 auto 30px auto;
  position: relative;
}

.products-sec .nav-link .img-box .img {
  border-radius: 50%;
  outline: 5px solid #e1e0e4;
  background: #fff;
}

.products-sec .nav-link .img-box::before {
  content: '';
  height: 90px;
  width: 45px;
  background-color: var(--secondary);
  border-bottom-left-radius: 90px;
  border-top-left-radius: 90px;
  position: absolute;
  left: -18px;
  top: -17px;
  z-index: -1;
}

.products-sec .nav-link .title {
  font-size: .8rem;
}

.products-sec .nav-link.active {
  background-color: transparent;
}

.products-sec .nav-link.active .img-box::before {
  background-color: var(--primary);
}

.products-sec .nav-link.active .title {
  color: var(--primary);
}

.products-sec .prod_card {
  border: 1px solid #eee;
  position: relative;
  margin-bottom: 35px;
  border-radius: 25px !important;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.products-sec .prod_card .img-box {
  height: 350px;
}

.products-sec .prod_card .img-box .offer_badge {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 0.7rem 1.5rem;
  font-size: 15px;
}

.products-sec .prod_card .card-body {
  padding: 1.5rem;
}

.products-sec .prod_card .card-body .categ {
  font-size: .8rem;
}

.products-sec .prod_card .card-body .name {
  font-weight: bold;
}

.products-sec .prod_card .card-body .price small {
  font-size: 65%;
}

.products-sec .prod_card .card-body .secondary_butn {
  padding: 0.8rem 1.5rem;
}

.products-sec .prod_card .card-body .fav_butn.active {
  background-color: var(--primary);
}

.products-sec .prod_card .card-body .fav_butn.active .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.products-sec .prod_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 3px 6px 15px 0 #eee;
          box-shadow: 3px 6px 15px 0 #eee;
}

.products-sec .prod_card:hover .name {
  color: var(--primary);
}

.features-sec .feature_card {
  border: 1px solid #eee;
  padding: 45px;
  margin: 10px 0;
}

.features-sec .feature_card .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.features-sec .feature_card:hover .icon {
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.features-sec .feature_card:hover .title {
  color: var(--primary);
}

.banner-sec .banner {
  height: 450px;
}

.banner-sec .banner .text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
}

.banner-sec .banner .text-box .title {
  font-size: calc(35px + 1.3vw);
  font-weight: bold;
}

.banner-sec .banner .text-box strong {
  font-size: 2.2rem;
  -webkit-margin-start: 7px;
          margin-inline-start: 7px;
}

.banner-sec .banner .shadow_img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 70px;
}

/**********************************************
    Start Edit pg-header
**********************************************/
.pg-header {
  padding: 50px 0;
  background-color: #222222;
}

.pg-header .link_pg,
.pg-header .this_pg {
  margin: 0 5px;
}

.pg-header .pattern {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: .2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    Start Edit About Page
**********************************************/
.about-cards .about_card {
  border: 1px solid #eee;
  padding: 35px;
  position: relative;
  margin: 10px 0;
}

.about-cards .about_card .icon-outer {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  position: relative;
  background-color: #f9f9f9;
  color: var(--primary);
  font-size: 20px;
  border: 1px solid transparent;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.about-cards .about_card .icon-outer::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--primary);
  opacity: .1;
  z-index: -1;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 50%;
}

.about-cards .about_card .content {
  text-align: center;
  margin-top: 20px;
}

.about-cards .about_card .content .title {
  font-weight: bold;
}

.about-cards .about_card .content .p {
  margin-bottom: 0;
  font-size: 12px;
  color: #888;
}

.about-cards .about_card:hover .icon-outer {
  border: 1px solid var(--primary);
}

.about-cards .about_card:hover .icon-outer::before {
  -webkit-transform: translate(-10px, 10px);
          transform: translate(-10px, 10px);
}

.about-cards .about_card:hover .icon-outer i {
  -webkit-animation: tada 1s both infinite;
          animation: tada 1s both infinite;
}

.about-cards .about_card:hover .title {
  color: var(--primary);
}

.feedback-sec {
  background-color: #F5F6F8;
}

.feedback-sec .feedback_card {
  background-color: #fff;
  padding: 35px;
  border-radius: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.feedback-sec .feedback_card .img-box {
  width: 90px;
  height: 90px;
  margin: auto;
  position: relative;
  border-radius: 15px;
  border: 1px solid transparent;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.feedback-sec .feedback_card .img-box::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 15px;
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--primary);
  opacity: .1;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.feedback-sec .feedback_card .content {
  margin-top: 20px;
  text-align: center;
}

.feedback-sec .feedback_card .content .name {
  font-weight: bold;
}

.feedback-sec .feedback_card .content .p {
  font-size: 13px;
  color: #999;
}

.feedback-sec .feedback_card .content .rate i {
  color: #ccc;
}

.feedback-sec .feedback_card .content .rate i.active {
  color: #FFC107;
}

.feedback-sec .feedback_card:hover {
  -webkit-box-shadow: 3px 6px 15px 0 #eee;
          box-shadow: 3px 6px 15px 0 #eee;
}

.feedback-sec .feedback_card:hover .img-box {
  border: 1px solid var(--primary);
}

.feedback-sec .feedback_card:hover .img-box::before {
  -webkit-transform: translate(-10px, 10px);
          transform: translate(-10px, 10px);
}

.feedback-sec .feedback_card:hover .name {
  color: var(--primary);
}

.feedback-sec .swiper-pagination {
  bottom: 0;
}

/**********************************************
    Start Edit register Page
**********************************************/
.register-pg {
  background-color: #f4f4f4;
}

.register-pg .register_inner {
  position: relative;
  -webkit-box-shadow: 15px 30px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 15px 30px 30px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
}

.register-pg .register_inner .head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 25px 50px;
  background-color: #fff;
    border-radius: 6px 25px 0 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  position: relative;
}

.register-pg .register_inner .head .title {
  font-weight: bold;
}

.register-pg .register_inner .head .title i {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  color: var(--primary);
}

.register-pg .register_inner .head::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 73px solid #fff;
  border-radius: 10px;
  top: 0;
  position: absolute;
  left: -22px;
}

.register-pg .register_inner .register_body {
  background-color: #fff;
  margin-top: -5px;
    border-radius: 25px 0 25px 25px;
  overflow: hidden;
}

.register-pg .register_inner .register_body .logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
}

.register-pg .register_inner .register_body .card-body {
  padding: 2.5rem 2rem 3rem 2rem;
}

.register-pg .register_inner .register_body .form-control {
  background-color: #f4f4f4;
  border: 1px solid #f4f4f4;
  border-radius: 25px;
}
.register-pg .register_inner .register_body .code-select ,
.modal .code-select {
    border-radius: 25px 0 0 25px !important;
    position: relative;

}

.register-pg .register_inner .register_body .forget_pass {
  font-size: 13px;
  color: #777;
}

.register-pg .register_inner .register_body input,
.register-pg .register_inner .register_body select {
  height: 60px !important;
}

.register-pg .register_inner .register_body .form-check-input {
  height: 1em !important;
}

.register-pg .register_inner .register_body .code_input .code-container input {
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 25px;
  margin: 5px;
  -webkit-box-shadow: 0 0 30px #0001;
          box-shadow: 0 0 30px #0001;
  border: 0;
}

.register-pg .register_inner .register_body .primary_butn {
  font-weight: bold;
  padding: 1.3rem 2rem;
  font-size: 17px;
}

.register-pg .register_inner .register_body .code_country_group .input-group-text {
  padding: 0;
  background-color: #F4F4F4;
  border: none;
  min-width: 85px;
}

/*<<<<<<<<<<<<<< Start Upload image >>>>>>>>>>>>>>>*/
.profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  margin: auto;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.profile-avatar input {
  position: absolute;
  bottom: 0;
  left: 64%;
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
  color: #222;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  border: none;
  opacity: 0;
  z-index: 3;
}

.profile-avatar button {
  width: 45px;
  height: 45px;
  -webkit-box-shadow: 0px 0px 10px #ddd;
          box-shadow: 0px 0px 10px #ddd;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid #eee;
  position: absolute;
  right: 2px;
  bottom: 0px;
  cursor: pointer;
}

.profile-avatar button i {
  position: relative;
  top: 1px;
  cursor: pointer !important;
}
/*<<<<<<<<<< End Upload image >>>>>>>>>>>>>*/

.show_hide_password {
  position: relative;
}

.show_hide_password .show_pass {
  position: absolute;
  top: 26px;
  left: 20px;
  cursor: pointer;
  color: #888;
}

/**********************************************
    Start Edit products Page
**********************************************/
.products-pg {
  overflow: unset;
}

.products-pg .box {
    padding: 70px 30px;
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 15px 0 #eee;
          box-shadow: 3px 6px 15px 0 #eee;
  border-radius: 25px;
  height: calc(100% - 1.5rem);
}

.products-pg .search_box {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

.products-pg .search_box .form-control {
  border: 1px solid #f7f7f7;
  background-color: #f7f7f7;
  height: 65px;
}

.products-pg .search_box .butn_submit {
  position: absolute;
  left: 15px;
  top: 17px;
  background-color: transparent;
  color: #888;
}

.products-pg .search_box .price-wrapper .ui-slider-horizontal {
  width: 100%;
}

.products-pg .search_box .price-wrapper .ui-widget-header {
  background: var(--primary);
}

.products-pg .search_box .price-wrapper .price-range-field {
  width: 40%;
  font-size: 14px;
  height: 35px !important;
  border: 1px solid #f7f7f7;
  background-color: #f7f7f7;
  margin: 0 4px;
}

.products-pg .search_box .price-wrapper .inputs-wrapper {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.products-pg .categ_box .categ-item {
  background-color: #fff;
  border-radius: 25px;
  position: relative;
  text-align: start;
  width: 100%;
  height: 150px;
  cursor: pointer;
  border: 1px solid #ddd;
  color: var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  font-size: 13px;
  overflow: hidden;
}

.products-pg .categ_box .categ-item .categ_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.products-pg .categ_box .categ-item .name {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  padding: .5rem 1rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}

.products-pg .categ_box .categ-item.active {
  border: 1px solid var(--secondary) !important;
}

.products-pg .categ_box .categ-item.active .name {
  background-color: rgba(0, 0, 0, 0.9);
  font-weight: bold;
  color: var(--primary);
}

.products-pg .categ_box .swiper-button-next::before,
.products-pg .categ_box .swiper-button-prev::before {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.products-pg .accordion {
  background-color: #fff;
  padding: 25px;
  position: -webkit-sticky;
  /*position: sticky;*/
  /*top: 10px;*/
  border-radius: 25px;
  margin-bottom: 1.5rem;
}

.products-pg .accordion .accordion-item {
  margin-bottom: 10px;
  border: 1px solid #eee !important;
}

.products-pg .accordion .accordion-item .accordion-button {
  padding: 1.1rem 1.5rem;
  font-size: 14px;
  background-color: #f9f9f9;
}

.products-pg .accordion .accordion-item .accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

.products-pg .accordion .accordion-item .accordion-body {
  border-top: 1px solid #ddd;
}

.products-pg .accordion .accordion-item .accordion-body .filter_ul .filter_li .filter_a {
  display: block;
  margin: 10px 0;
  font-size: 13px;
  color: #888;
}

.products-pg .accordion .accordion-item .accordion-body .filter_ul .filter_li .filter_a.active {
  font-weight: bold;
  color: var(--primary);
}

.products-pg .accordion .accordion-item .accordion-body .chosen_filter {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.products-pg .accordion .accordion-item .accordion-body .chosen_filter .filter_a {
  padding: .4rem 1rem;
  border: 1px solid var(--primary);
  border-radius: 25px;
  text-align: center;
  display: block;
  margin: 5px;
  font-size: 13px;
  color: var(--primary);
  position: relative;
}

.products-pg .accordion .accordion-item .accordion-body .chosen_filter .filter_a::before {
  content: '\f00d';
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  display: inline-block;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.products-pg .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.products-pg .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  -webkit-filter: invert(0%) sepia(98%) saturate(0%) hue-rotate(13deg) brightness(98%) contrast(105%);
          filter: invert(0%) sepia(98%) saturate(0%) hue-rotate(13deg) brightness(98%) contrast(105%);
}

.products-pg .swiper-button-next,
.products-pg .swiper-button-prev{
    background-color: #eee;
}
.pagination-wrapper .pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.pagination-wrapper .pagination .page-link {
  border-radius: 0px !important;
  background-color: transparent;
  color: var(--secondary);
  margin: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 45px;
  height: 40px;
}

.pagination-wrapper .pagination .page-link:hover, .pagination-wrapper .pagination .page-link.active {
  background-color: var(--primary);
  color: #fff !important;
}

/**********************************************
    Start Edit product det Page
**********************************************/
.product-det .product_imgs .gallery-top img {
  height: 650px;
  border-radius: 0px;
}

.product-det .product_imgs .gallery-thumbs img {
  height: 140px;
  padding: 10px;
  border: 1px solid #eee;
}

.product-det .product-social-icons a {
  width: 40px;
  text-align: center;
  font-size: 18px;
  color: #777;
}

.product-det .text-box .butn.white_border_butn {
  padding: 0.6rem 1.5rem;
}

.product-det .text-box .product-fav-btn ,
.prod_butns .product-fav-btn {
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-det .text-box .product-fav-btn .icon ,
.prod_butns .product-fav-btn .icon{
    margin-inline-end: 0px;
    top: 0 !important;
    right: 0 !important;
}

.product-det .details_wrapper {
  padding: 45px;
  border: 1px solid #eee;
  border-radius: 25px;
}

.product-det .details_wrapper .nav .nav-link {
  font-weight: bold;
  border: transparent;
  border-bottom: 1px solid #ddd;
  color: #999;
  padding: 0 2rem 0.7rem 2rem;
}

.product-det .details_wrapper .nav .nav-link.active {
  border-bottom: 1px solid var(--primary);
  color: var(--primary);
}

.product-det .details_wrapper .tab_inner .det {
  line-height: 2rem;
}

.product-det .details_wrapper .tab_inner .size-img {
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}

.table {
  border: 1px solid #ddd;
}
.bankTransfer-form .table  {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 3px 6px 15px 0 #eee;
}
.table th {
  background-color: #f5f5f5;
}

.table th, .table td {
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  padding: 1rem 1.5rem;
  border: 1px solid #eee;
  background: #fff;
}

.color-group .colors-flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.color-group .form-check {
  position: relative;
  padding-left: 0;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  padding-right: 0em;
}

.color-group .form-check .form-check-input {
  position: absolute;
  left: 0px;
  top: 0;
  opacity: 0;
  width: 25px;
  height: 25px !important;
  cursor: pointer;
}

.color-group .form-check .form-check-label {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #f6f6f6;
  cursor: pointer;
}

.color-group .form-check .form-check-label .checkmark {
  position: absolute;
  opacity: 0;
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.color-group .form-check .form-check-input:checked ~ .form-check-label .checkmark {
  opacity: 1;
}

.size-group .size-flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.size-group .form-check {
  position: relative;
  padding-left: 0;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  padding-right: 0em;
}

.size-group .form-check .form-check-input {
  position: absolute;
  left: 0px;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100% !important;
  cursor: pointer;
}

.size-group .form-check .form-check-label {
  border-radius: 5px;
  background-color: #f6f6f6;
  cursor: pointer;
  padding: .5rem 1rem;
  text-align: center;
  font-size: 13px;
}

.size-group .form-check .form-check-input:checked ~ .form-check-label {
  background-color: var(--primary);
  color: #fff;
}

.quantity-container .qt-plus,
.quantity-container .qt-minus {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: solid 1px transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  color: #555;
  font-size: 10px;
  vertical-align: middle;
  display: inline-flex;
  cursor: pointer;
  background-color: #f8f8f8;
}

.quantity-container .qt-plus:hover,
.quantity-container .qt-minus:hover {
  background-color: var(--secondary) !important;
  color: #fff;
}

.quantity-container .qt-plus .fa,
.quantity-container .qt-minus .fa {
  font-weight: 300;
}

.quantity-container .qt {
  display: inline-block;
  min-width: 30px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.44;
  color: #202020;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 5px;
  text-align: center;
}

/**********************************************
    Start Edit content Page
**********************************************/
.content-pg {
  background-color: #f4f4f4;
}

.content-pg .inner {
  background-color: #fff;
  -webkit-box-shadow: 3px 6px 15px 0 #ddd;
          box-shadow: 3px 6px 15px 0 #ddd;
  padding: 45px;
  border-radius: 25px;

}

.content-pg .inner .desc {
  font-size: 16px;
  line-height: 2.4;
}

/**********************************************
    Start Edit cart Page
**********************************************/
.cart-pg {
  background-color: #f4f4f4;
  overflow: unset;
}

.cart-pg .cart-item {
  margin-bottom: 25px;
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 25px;
}

.cart-pg .cart-item .prod-img {
  height: 200px;
  border-radius: 25px;
}

.cart-pg .cart-item .prod-det .prod-name {
  color: #B39465;
}

.cart-pg .cart-item .prod-det .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 20px;
}

.cart-pg .cart-item .prod-det .price span {
  font-size: 14px;
}

.cart-pg .cart-item .prod-det .price span b {
  font-size: 15px;
  color: var(--primary);
}

.cart-pg .cart-item .prod-det .categ-name {
  font-weight: 500;
  display: block;
  margin-bottom: .5rem;
}

.cart-pg .cart-item .prod-det .det {
  margin-bottom: 8px;
  font-size: 13px;
}

.cart-pg .cart-item .prod-det .delete-btn {
  background-color: transparent;
  color: #bd3c3c;
  border: transparent;
  font-weight: 500;
}

.cart-pg .cart-item .prod-det .delete-btn:hover {
  color: red;
}

.cart-pg .steps-wizard {
  background-color: #fff;
  border-right: 1px solid #eee;
  padding: 30px 0;
  height: calc(100% - 35px);
  border-radius: 25px;
  margin-bottom: 35px;
}

.cart-pg .steps-wizard .single_step {
  text-align: center;
  position: relative;
}

.cart-pg .steps-wizard .single_step::after {
  content: '';
  width: 1px;
  height: 70px;
  position: relative;
  top: 10px;
  display: block;
  margin: 0 auto 25px auto;
  background-color: #ccc;
}

.cart-pg .steps-wizard .single_step.last-step::after {
  display: none;
}

.cart-pg .steps-wizard .single_step.active::after {
  background-color: #B39465;
}

.cart-pg .steps-wizard .single_step.inProgress .circle {
  background-color: #B39465;
  color: #fff;
}

.cart-pg .steps-wizard .single_step .circle {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  background-color: #E5E5E5;
  display: block;
  margin: auto;
  color: #343A3E;
  font-weight: bold;
}

.cart-pg .steps-wizard .single_step .label {
  color: #555;
  margin-top: 15px;
}

.cart-pg .summary-checkout {
  background-color: #fff;
      border-radius: 25px;
  padding: 30px 20px 10px 20px;
  top: 10px;
}

.cart-pg .summary-checkout .title {
  color: #B39465;
  font-weight: bold;
  position: relative;
  font-size: 1.2rem;
  padding-bottom: 15px;
}

.cart-pg .summary-checkout .title::after {
  content: '';
  width: 100%;
  background-color: #ddd;
  height: 2px;
  display: block;
  position: relative;
  top: 16px;
}

.cart-pg .summary-checkout .title::before {
  content: '';
  width: 70px;
  background-color: #B39465;
  height: 2px;
  display: block;
  position: absolute;
  top: 39px;
  z-index: 1;
}

.cart-pg .summary-checkout .card-body .item {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0 15px 0;
  border-bottom: 1px solid #ddd;
}

.cart-pg .summary-checkout .card-body .item .prod-img {
  width: 70px;
  height: 70px;
}

.cart-pg .summary-checkout .card-body .item .info-inner {
  margin: 0 10px;
}

.cart-pg .summary-checkout .card-body .item .info-inner .prod-name {
  margin-bottom: 0;
}

.cart-pg .summary-checkout .card-body .item .info-inner .delete-btn {
  background-color: transparent;
  border: transparent;
  color: #FF4A63;
  font-size: 14px;
  font-weight: bold;
  margin-top: 18px;
}

.cart-pg .summary-checkout .card-body .item .info-l .number-input {
  width: 60px;
  height: 25px !important;
  margin-left: auto;
}

.cart-pg .summary-checkout .card-body .item .info-l .price {
  margin-bottom: 0;
  margin-top: 15px;
}

.cart-pg .summary-checkout .footer-card {
  padding: 1.25rem;
}

.cart-pg .summary-checkout .footer-card .code-group {
  position: relative;
}

.cart-pg .summary-checkout .footer-card .code-group .code-input {
  height: 55px;
  border-radius: 25px;
  padding-inline-end: 70px;
}

.cart-pg .summary-checkout .footer-card .code-group .submit-btn {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #B39465;
  color: #fff;
  border: 1px solid #B39465;
  width: 50px;
  font-size: 12px;
  height: 55px;
  border-radius: 25px 0 0 25px;
}

.cart-pg .summary-checkout .footer-card .summary_price .price_item {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-pg .butn {
  padding: .8rem 3rem;
}

.cart-pg .butns_foot .butn {
  padding: 0.8rem 1rem;
  width: 50%;
}

/**********************************************
    Start Edit checkout Page
**********************************************/
.checkout-pg  .form-control {
    border-radius: 25px;
}

.checkout-pg .receiving_method_radios.form-check {
  padding: 0;
  position: relative;
}

.checkout-pg .receiving_method_radios .form-check-input {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.checkout-pg .receiving_method_radios .form-check-label {
  background-color: #fff;
  width: 100%;
  padding: 2rem 1rem;
  text-align: center;
  border: 1px solid #eee;
  cursor: pointer;
}

.checkout-pg .receiving_method_radios .form-check-label .icon {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

.checkout-pg .receiving_method_radios .form-check-label .title {
  color: #999;
}

.checkout-pg .receiving_method_radios .form-check-input:checked ~ .form-check-label {
  border: 1px solid var(--primary);
}

.checkout-pg .receiving_method_radios .form-check-input:checked ~ .form-check-label .title {
  font-weight: bold;
  color: var(--primary);
}

.checkout-pg .payment_method .form-check {
  position: relative;
  padding-right: 0;
  margin-bottom: 25px;
}

.checkout-pg .payment_method .form-check .form-check-label {
  text-align: center;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 25px;
  width: 100%;
  padding: 20px;
  cursor: pointer;
}

.checkout-pg .payment_method .form-check .form-check-label .pay_logo {
  width: 100px;
  height: 50px;
  display: block;
  margin: 0 auto 20px auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.checkout-pg .payment_method .form-check .form-check-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  cursor: pointer;
  opacity: 0;
}

.checkout-pg .payment_method .form-check .form-check-input:checked ~ .form-check-label {
  border: 1px solid var(--secondary);
}

.checkout-pg .payment_method .form-check .form-check-input:checked ~ .form-check-label .name {
  color: var(--secondary);
  font-weight: bold;
}

.checkout-pg .file-upload {
  display: block;
  font-size: 12px;
  position: relative;
}

.checkout-pg .file-upload .file-select {
  display: block;
  border: 0;
  color: #2B2B2B;
  cursor: pointer;
  height: 55px;
  line-height: 55px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 25px;
}

.checkout-pg .file-upload .file-select .file-select-button {
  background: #EEEEEE;
  padding: 0 10px;
  display: inline-block;
  height: 55px;
  line-height: 55px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 85px;
  font-size: 18px;
  text-align: center;
}

.checkout-pg .file-upload .file-select .file-select-name {
  line-height: 55px;
  display: inline-block;
  padding: 0 10px;
  position: absolute;
  top: 0;
  right: 90px;
}

.checkout-pg .file-upload .file-select input[type="file"] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.checkout-pg .file-upload .file-select:hover {
  border-color: #ccc;
}

.checkout-pg .file-upload .file-select:hover .file-select-button {
  background: #ccc;
  color: #ffffff;
}

.checkout-pg .file-upload .file-select.file-select-disabled {
  opacity: 0.65;
}

.checkout-pg .file-upload .file-select.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #dce4ec;
  color: #2B2B2B;
  cursor: pointer;
  height: 55px;
  line-height: 55px;
  margin-top: 5px;
  text-align: left;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.checkout-pg .file-upload .file-select.file-select-disabled:hover .file-select-button {
  background: #dce4ec;
  color: #666666;
  padding: 0 10px;
  display: inline-block;
  height: 55px;
  line-height: 55px;
}

.checkout-pg .file-upload .file-select.file-select-disabled:hover .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}

.checkout-pg .file-upload.active .file-select {
  border-color: var(--primary);
}

.checkout-pg .file-upload.active .file-select .file-select-button {
  background: var(--primary);
  color: #ffffff;
}

.checkout-pg .order_det {
  background-color: #fff;
  padding: 35px;
  border-radius: 25px;
}

.checkout-pg .map_butn {
  padding: 0.5rem 1.5rem;
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 12px;
  color: #666;
}

.data-group {
  margin-bottom: 1.2rem;
  position: relative;
}

.data-group .label {
  font-size: 12px;
  font-weight: bold;
}

.data-group .label a {
    background: var(--secondary);
    padding: 0.1rem 0.5rem;
    color: #fff !important;
    border-radius: 10px;
}

.data-group .data {
  padding: 1rem 1.5rem;
  background-color: #f7f7f7;
  margin-top: 10px;
  border-radius: 25px;
}

.modal-content {
  padding: 15px;
}

.modal-content .form-group .form-control {
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
  border-radius: 25px;
}

/**********************************************
    Start Edit profile Page
**********************************************/
.profile-pg {
  background-color: #f4f4f4;
  overflow: unset;
}

.profile-pg .prof_side {
  padding: 35px;
  background-color: #fff;
  border-radius: 25px;
}

.profile-pg .prof_side .prof-data {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.profile-pg .prof_side .prof-data .prof_img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: block;
  margin: auto;
}

.profile-pg .prof_side .prof-data .points {
  margin-top: 15px;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 20px;
  background-color: #f9f9f9;
  font-size: 13px;
}

.profile-pg .prof_side .links .nav-link {
  text-align: start;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #555;
  font-size: 15px;
}

.profile-pg .prof_side .links .nav-link .icon_outer {
  width: 45px;
  height: 45px;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 25px;
}

.profile-pg .prof_side .links .nav-link .icon_outer .icon {
  opacity: .5;
}

.profile-pg .prof_side .links .nav-link.active {
  background-color: transparent;
  color: var(--primary);
}

.profile-pg .prof_side .links .nav-link.active .icon_outer {
  background-color: var(--primary);
}

.profile-pg .prof_side .links .nav-link.active .icon_outer .icon {
  opacity: 1;
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.profile-pg .tab_wrapper {
  padding: 45px;
  background-color: #fff;
  border-radius: 25px;
}

.profile-pg .tab_wrapper .primary_butn {
  min-width: 180px;
  font-weight: bold;
}

.profile-pg .tab_wrapper.loc_tab .loc_card {
  background-color: #f9f9f9;
  border-radius: 25px;
  margin: 0 auto 25px auto;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading {
  padding: 25px;
  border-bottom: 1px solid #ddd;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .icon-outer {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  color: var(--primary);
  border-radius: 50%;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .title {
  font-size: 1rem;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .card_butn {
  background-color: transparent;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  font-size: 13px;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .card_butn.edit {
  color: #3a9b27;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .heading .card_butn.delete {
  color: #f14343;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .card-body {
  padding: 1.25rem 2rem;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .card-body .icon-outer {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
  background-color: #f8f1d7;
  border-radius: 5px;
}

.profile-pg .tab_wrapper.loc_tab .loc_card .card-body .icon-outer .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.profile-pg .tab_wrapper.orders_tab {
  padding: 45px 20px;
}

.profile-pg .tab_wrapper.orders_tab .table-responsive .table th,
.profile-pg .tab_wrapper.orders_tab .table-responsive .table td {
  padding: 1rem 0.5rem;
}

.profile-pg .tab_wrapper.orders_tab .table-responsive::-webkit-scrollbar {
  height: 5px;
}

.profile-pg .tab_wrapper.orders_tab .badge {
  min-width: 100px;
  padding: .6rem;
  text-align: center;
}

.profile-pg .tab_wrapper.orders_tab .prod_img {
    width: 80px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
    margin-inline-end: 10px;
}

.profile-pg .tab_wrapper.noti_tab .noti_item {
  border: 1px solid #ddd;
  border-radius: 0px;
  position: relative;
  margin-bottom: 20px;
  padding: 25px 25px 30px 25px;
}

.profile-pg .tab_wrapper.noti_tab .noti_item .date {
  text-align: end;
  margin-bottom: 0.1rem;
  color: #888;
  font-size: 12px;
}

.profile-pg .tab_wrapper.noti_tab .noti_item .content .icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.profile-pg .tab_wrapper.noti_tab .noti_item .content .p {
  color: #999;
  margin-bottom: 0;
}

.logoutModal .img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 30px auto;
  display: block;
}

/**********************************************
    Start Edit blog Page
**********************************************/
.blog-sec .blog_card {
  position: relative;
  border: 1px solid #ddd;
  margin-bottom: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 0px;
}

.blog-sec .blog_card .sec-img {
  height: 250px;
  border-radius: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.blog-sec .blog_card .card-body {
  padding: 1.7rem;
}

.blog-sec .blog_card .card-body .heading .data {
  -webkit-margin-end: 13px;
          margin-inline-end: 13px;
  color: #888;
  font-size: 12px;
}

.blog-sec .blog_card .card-body .heading .data i {
  color: var(--primary);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.blog-sec .blog_card .card-body .title {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.5;
}

.blog-sec .blog_card .card-body .p {
  font-size: 12px;
  color: #888;
  margin-bottom: 0;
}

.blog-sec .blog_card .prof-data {
  position: absolute;
  background-color: #fff;
  border-radius: 25px;
  padding: .5rem 1rem;
  bottom: -25px;
  left: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0 4px 10px 0 rgba(16, 16, 16, 0.16);
          box-shadow: 0 4px 10px 0 rgba(16, 16, 16, 0.16);
}

.blog-sec .blog_card .prof-data .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.blog-sec .blog_card:hover {
  -webkit-box-shadow: 3px 6px 15px 0 #ddd;
          box-shadow: 3px 6px 15px 0 #ddd;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.blog-sec .blog_card:hover .title {
  color: var(--primary);
}

/**********************************************
    Start Edit blog det Page
**********************************************/
.blog-det {
  background-color: #f6f6f6;
}

.blog-det .blog_card {
  background-color: #fff;
}

.blog-det .blog_card .blog-img {
  height: 400px;
}

.blog-det .blog_card .card-body {
  padding: 2rem;
}

.blog-det .blog_card .card-body .heading .data {
  -webkit-margin-end: 13px;
          margin-inline-end: 13px;
  color: #888;
  font-size: 13px;
}

.blog-det .blog_card .card-body .heading .data i {
  color: var(--primary);
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.blog-det .blog_card .card-body .title {
  font-weight: bold;
}

.blog-det .blog_card .card-body .det {
  font-size: 13px;
  color: #888;
  margin-bottom: .5rem;
}

.blog-det .box {
  background-color: #fff;
  padding: 35px;
}

.blog-det .blog_box .item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
}

.blog-det .blog_box .item .main-img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.blog-det .blog_box .item .title {
  font-weight: bold;
}

.blog-det .blog_box .item .det {
  font-size: 12px;
  margin-bottom: 0;
  line-height: 1.5;
}

/**********************************************
    Start Edit Contact Page
**********************************************/
.contact-pg {
  background-color: #f4f4f4;
}

.contact-pg .contact-wrapper {
  background-color: #fff;
  padding: 45px;
  -webkit-box-shadow: 3px 6px 15px #eee;
          box-shadow: 3px 6px 15px #eee;
  border-radius: 25px;

}

.contact-pg .contact-wrapper .form-group {
  margin-bottom: 1.1rem;
}

.contact-pg .contact-wrapper .form-control {
  background-color: #f4f4f4;
  border: 1px solid #f4f4f4;
      border-radius: 25px;

}
textarea::-webkit-scrollbar-track  {
    border-radius: 25px;
}

.contact-pg .contact-wrapper input,
.contact-pg .contact-wrapper select {
  height: 60px !important;
}

.contact-pg .wrapper-sm {
    overflow: hidden;
  padding: 2vw 2vw;
  margin-bottom: 15px;
  -webkit-box-shadow: 3px 6px 15px #eee;
          box-shadow: 3px 6px 15px #eee;
}

.contact-pg .wrapper-sm .num-item {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

.contact-pg .wrapper-sm .num-item .icon {
    width: 55px;
    height: 55px;
    /* line-height: 55px; */
    text-align: center;
    background-color: var(--primary);
    display: inline-block;
    -webkit-margin-end: 15px;
    margin-inline-end: 15px;
    color: #fff;
    position: relative;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-pg .wrapper-sm .num-item .icon::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--primary);
  opacity: .2;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 15px;
}

.contact-pg .wrapper-sm .num-item .num {
    width: calc(100% - 70px);
  color: #888;
  margin-bottom: 0;
  font-size: .9rem;
  font-weight: bold;
}

.contact-pg .wrapper-sm .num-item:hover .icon {
  border: 1px solid var(--primary);
}

.contact-pg .wrapper-sm .num-item:hover .icon::before {
  -webkit-transform: translate(-10px, 10px);
          transform: translate(-10px, 10px);
}

.contact-pg .wrapper-sm .num-item:hover .icon i {
  -webkit-animation: tada 1s both infinite;
          animation: tada 1s both infinite;
}

.contact-pg .wrapper-sm .num-item:hover .num {
  color: #333;
}

.contact-pg .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 3px;
}
.contact-pg .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}
/**********************************************
    Start Edit order-details Page
**********************************************/
.order-details {
  /*padding: 3vw;*/
  /*background-color: #f9f9f9;*/
  /*border-radius: 20px;*/
}

.order-details .order-head {
    border-radius: 25px;
    /* -webkit-box-shadow: -10px 10px rgb(0 0 0 / 5%); */
    box-shadow: 3px 6px 15px rgb(0 0 0 / 5%);
    padding: 30px;
    margin-bottom: 50px;
    background-color: #fff;
}

.order-details .order-head ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.order-details .order-head ul li {
  width: 50%;
  margin: 5px 0;
}

.order-details .order-head ul li p {
  margin: 0;
}

.order-details .order-head ul li span {
  font-weight: bold;
  margin-right: 15px;
}

.order-details .order-head ul li span a{
    display: block;
    background-color: #8c5c3d;
    margin-top: 10px;
    color: #fff;
    padding: 8px 15px;
    border-radius: 15px;
    width: max-content;
}

.order-details .order-head ul li span a:hover{
    color: #fff !important;
}

.order-details .order-body .table-bordered {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 3px 6px 15px #eee;
    margin-bottom: 35px;
}

.order-details .order-body .table-bordered th, .order-details .order-body .table-bordered td {
    border: 1px solid #9992;
}

.order-details .order-body .table-bordered th.text-left, .order-details .order-body .table-bordered td.text-left {
  text-align: initial;
}

.order-details .order-body .table .img img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #9993;
  border-radius: 10px;
  padding: 0;
}

.order-details .order-body .table thead th {
  background-color: var(--secondary);
  color: #fff;
}

@media print {
  #print_btn {
    display: none !important;
  }
}

.order-barcode-photo img {
    border-radius: 25px;
    box-shadow: 3px 6px 15px #eee;
    padding: 10px;
    background: #fff;
}
/* ---------- rate --------- */
.stars {
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 15px;
  direction: ltr;
  min-width: 150px;
  /*direction: ltr;*/
}

.stars input {
  border-radius: 0;
  visibility: hidden;
  width: 30px;
  cursor: pointer;
}

.stars input:after {
  content: '\f005';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 30px;
  color: #EEE;
  visibility: visible;
  display: inline-block;
  width: 30px;
  height: 30px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  text-shadow: 0px 2px 4px RGBA(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.stars input:hover:after {
  opacity: 0.8;
}

.rate-stars {
  color: #fc0;
}

.stars input:checked:after {
  color: #fc0;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.stars input:checked ~ input:after {
  color: #fc0;
}

.stars input:not(:checked):after {
  color: #eee;
}

/*  loading-page */
.loading-page {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: #1F150B;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.coffeeloader {
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    top: 50%;
}
.cupcontainer {
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 50px;
    left: 5px;
}
.cupcontainer .cup {
    border-bottom: 40px solid #8b6139;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    height: 0;
    width: 60px;
    transform: rotate(180deg);
    position: relative;
    left: -3px;
    top: 5px;
}
.cupcontainer .handle {
    width: 25px;
    height: 18px;
    border: 6px solid #8b6139;
    position: relative;
    top: -30px;
    left: 10px;
}
.cupcontainer .glance {
    border-bottom: 25px solid #af7a48;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    height: 0;
    width: 2px;
    transform: rotate(180deg);
    position: absolute;
    top: 13px;
    left: 10px;
}
.plate {
    background: #8b6139;
    width: 100px;
    height: 6px;
    border-radius: 3px;
    position: relative;
    top: 40px;
    margin-left: auto;
    margin-right: auto;
}
.bottom {
    background: #8b6139;
    width: 60px;
    height: 6px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    position: relative;
    top: 45px;
    margin-left: auto;
    margin-right: auto;
}
.steam {
    width: 50px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 50px;
    left: 5px;
}
.smoke1 {
    width: 6px;
    height: 30px;
    float: left;
    margin-right: 6px;
    margin-left: 4px;
    border-radius: 3px;
}
.smoke1::before,
.smoke1::after {
    content: "";
    background: #8b6139;
    position: absolute;
    animation: load 0.9s infinite reverse ease-in-out;
    border-radius: 3px;
}
.smoke2 {
    width: 6px;
    height: 15px;
    float: left;
    margin-right: 6px;
    margin-left: 4px;
    border-radius: 3px;
}
.smoke2::before,
.smoke2::after {
    content: "";
    background: #8b6139;
    position: absolute;
    animation: load 0.6s infinite reverse ease-in-out;
    border-radius: 3px;
    margin-top: 5px;
}
.smoke3 {
    width: 6px;
    height: 30px;
    float: left;
    margin-right: 6px;
    margin-left: 4px;
    border-radius: 3px;
}
.smoke3::before,
.smoke3::after {
    content: "";
    background: #8b6139;
    position: absolute;
    animation: load 0.9s infinite 0.5s reverse ease-in-out;
    border-radius: 3px;
}
@keyframes load {
    0% {
        top: 0;
        height: 30px;
        width: 6px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 29px;
        height: 15px;
        width: 6px;
        opacity: 0;
    }
}
/*# sourceMappingURL=style.css.map */