@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --headerpadding: 30px;
  --headerheight: 80px;
  --headerfixed: 100px;
  --footerstrip: 38px;
  --filterstrip: 44px;
  --detailstrip: 40px;
  --primary:#4C6C4E;
  --secondary: #9FB719;
  --thirdy: rgba(9, 34, 13, 1);
  --fourth: rgba(255, 241, 228, 1);
  --green: rgba(159, 183, 25, 1);
  --gradient-a: linear-gradient(180deg, #D4D293 0.59%, #ABBD5E 75.22%);
  --gradient-b: linear-gradient(180deg, #E0C782 0%, #B07A22 100%);
  --gradient-c: linear-gradient(180deg, #BFE5BA 0%, #C5CB80 100%);
  --gradient-d: radial-gradient(72.28% 175.85% at 91.44% 77.23%, #FFFFFF 22.35%, #D4D293 60.86%, #C5CB80 99.37%);
  --bg-color: #F4E5BE;
  --border-color: rgba(191, 229, 186, 1);
  --text: #666666;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #cfcfcf;
  --light-gray: rgba(235, 235, 235, 1);
  --container: 1750px;
  --containerfluid: 8rem;
  --containerfluid-header: 6rem;
}
@media only screen and (max-width: 1280px) {
  :root {
    --containerfluid: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --containerfluid: 2rem;
    --headerpadding: 2px;
    --headerheight: 85px;
    --containerfluid-header: 0rem;
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --headerheight: 85px;
  }
}
@media only screen and (max-width: 540px) {
  :root {
    --headerfixed: 75px;
    --headerheight: 75px;
  }
}
@media only screen and (max-width: 320px) {
  :root {
    --containerfluid: 10px;
  }
}

body::-webkit-scrollbar {
  width: 10px;
  background: var(--black);
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
body.overflow-hidden {
  overflow: hidden;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 10px);
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-size: 16px;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  background: rgb(250, 249, 247);
}

b {
  font-weight: 600;
}

.img {
  width: 100%;
  max-width: 100%;
}

button {
  font-family: "Poppins", serif !important;
}

small {
  font-size: 14px;
  line-height: 22px;
  display: block;
}

select {
  display: none;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}
a[href].logo {
  display: block;
  line-height: 0;
}
@media only screen and (max-width: 768px) {
  a[href].logo {
    width: 160px;
  }
}
@media only screen and (max-width: 420px) {
  a[href].logo {
    width: 110px;
  }
}

svg path {
  transition: 0.5s ease;
}

.position-relative {
  position: relative;
}

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

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
@media only screen and (max-width: 1450px) {
  .container {
    max-width: 100%;
    padding: 0 50px;
  }
}
@media only screen and (max-width: 1366px) {
  .container {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
}
@media only screen and (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
}
@media only screen and (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 .heading {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container.container2 .heading {
    padding-right: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container.container2 .heading {
    padding-right: 10px;
  }
}

.container-fluid {
  padding: 0 var(--containerfluid);
  display: block;
  margin: 0 auto;
}

.social-icons {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.heading h2 {
  text-transform: uppercase;
}

h1, h2, h4, h5 {
  font-weight: normal;
  text-transform: capitalize;
  font-family: "Kugile";
  color: var(--black);
}

h3, h6 {
  font-weight: normal;
  text-transform: capitalize;
  font-family: "Kugile";
}

p, span, ul li, button, a {
  font-family: "Poppins", serif;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (max-width: 1024px) {
  p, span, ul li, button, a {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 540px) {
  p, span, ul li, button, a {
    font-size: 14px;
    line-height: 1.4;
  }
}

img {
  max-width: 100%;
}

.sub-heading h3 {
  text-transform: capitalize;
}

h1 {
  font-size: 64px;
  line-height: 1;
  font-family: "Kugile";
}

h2 {
  font-size: 48px;
  line-height: 1.15;
  font-family: "Kugile";
}
@media only screen and (max-width: 1280px) {
  h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 540px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 420px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 40px;
  line-height: 1.2;
  font-family: "Kugile";
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 768px) {
  h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 540px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 36px;
  line-height: 1.3;
  font-family: "Kugile";
}
@media only screen and (max-width: 1024px) {
  h4 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  h4 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 540px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 30px;
  line-height: 1.2;
}
@media only screen and (max-width: 1280px) {
  h5 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 540px) {
  h5 {
    font-size: 24px;
  }
}

h6 {
  font-size: 24px;
  line-height: 1.4;
  font-family: "Poppins", serif;
}
@media only screen and (max-width: 991px) {
  h6 {
    font-size: 20px;
    line-height: 1.2;
  }
}

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

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

.inline-flex {
  --gap: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0 var(--gap);
}

img {
  max-width: 100%;
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input {
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.tab-nav {
  cursor: default;
}
.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: transparent;
}

.tab-nav-content {
  position: relative;
  margin-top: 45px;
}
@media only screen and (max-width: 540px) {
  .tab-nav-content {
    margin-top: 15px;
  }
}
.tab-nav-content .tabs:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.item-md {
  position: relative;
  display: block;
  position: relative;
}
.item-md::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.item-md::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.item-md::before, .item-md::after {
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figure, .item-md .figure {
  display: block;
  overflow: hidden;
  line-height: 0;
  height: 100%;
}
.item-md figure img, .item-md figure video, .item-md figure iframe, .item-md .figure img, .item-md .figure video, .item-md .figure iframe {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.item-md.center-item figcaption {
  bottom: auto;
  top: 50%;
  translate: 0 -50%;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 12;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: 0s ease 0.5s, opacity 0.5s ease;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .overlay {
    z-index: 999999;
  }
}
@media only screen and (max-width: 675px) {
  .overlay {
    display: none;
  }
}
.overlay.is-open {
  transition: opacity 1s ease;
  opacity: 1;
  transform: translateY(0%);
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  background: var(--white);
  background-position: 0% 80%;
  background-size: 75%;
  max-width: 435px;
  width: 100%;
}
.model .close:not(.btn, .close-video) {
  position: absolute;
  top: 0;
  right: 0;
  top: 25px;
  right: 25px;
  line-height: 0;
}
@media only screen and (max-width: 520px) {
  .model .close:not(.btn, .close-video) {
    top: 20px;
    right: 20px;
  }
}
.model .close:not(.btn, .close-video) path {
  stroke: var(--black);
}

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  display: grid;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item) - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
}
@media only screen and (max-width: 540px) {
  .form-grid {
    --gaptb: 16px;
  }
}
.form-grid .full {
  grid-column: span var(--item);
  margin-top: 2rem;
}

.btn-div-btm > *:not(:last-child) {
  margin-right: 14px;
}
@media only screen and (max-width: 675px) {
  .btn-div-btm > *:not(:last-child) {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 675px) {
  .btn-div-btm .btn {
    --padding: 12px;
    font-size: 14px;
  }
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}
.swiper-nav.hide-btn-no-loop .swiper-prev.swiper-button-disabled, .swiper-nav.hide-btn-no-loop .swiper-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.swiper-nav.swiper-group {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 11px;
}
.swiper-nav.center-full {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.swiper-nav.icon-width-auto .swiper-next svg, .swiper-nav.icon-width-auto .swiper-prev svg {
  width: auto;
  height: auto;
}

.swiper-prev svg, .swiper-prev img {
  transform: scaleX(-1);
}

.swiper-prev, .swiper-next {
  --size: 45px;
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: 1px solid var(--primary);
  transition: 0.5s ease;
}
.swiper-prev.swiper-btn-medium, .swiper-next.swiper-btn-medium {
  --size: 35px;
}
.swiper-prev path, .swiper-next path {
  fill: var(--white);
}
.swiper-prev:hover:not(.swiper-button-disabled), .swiper-next:hover:not(.swiper-button-disabled) {
  background: var(--white);
  border-color: var(--white);
}
.swiper-prev:hover:not(.swiper-button-disabled) path, .swiper-next:hover:not(.swiper-button-disabled) path {
  fill: var(--primary);
}
.swiper-prev.no-background, .swiper-next.no-background {
  height: auto;
  width: auto;
  display: block;
  background: none;
  border: none;
  line-height: 0;
}
.swiper-prev.no-background path, .swiper-next.no-background path {
  fill: initial;
}
.swiper-prev.no-background:hover, .swiper-next.no-background:hover {
  background: none;
}
.swiper-prev.has-shadow, .swiper-next.has-shadow {
  box-shadow: 0px 0px 4.8px 0px rgba(0, 0, 0, 0.2509803922);
}
.swiper-prev.white, .swiper-next.white {
  background: var(--white);
  border-color: var(--white);
}
.swiper-prev.white path, .swiper-next.white path {
  fill: var(--black);
}
.swiper-prev.white:hover:not(.swiper-button-disabled), .swiper-next.white:hover:not(.swiper-button-disabled) {
  background: var(--primary);
  border-color: var(--primary);
}
.swiper-prev.white:hover:not(.swiper-button-disabled) path, .swiper-next.white:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-prev.primary-border, .swiper-next.primary-border {
  border-color: var(--primary);
  background: none;
}
.swiper-prev.primary-border path, .swiper-next.primary-border path {
  fill: var(--primary);
}
.swiper-prev.primary-border:hover:not(.swiper-button-disabled), .swiper-next.primary-border:hover:not(.swiper-button-disabled) {
  background: var(--primary);
}
.swiper-prev.primary-border:hover:not(.swiper-button-disabled) path, .swiper-next.primary-border:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-prev.white-border, .swiper-next.white-border {
  border-color: var(--white);
  background: none;
}
.swiper-prev.white-border path, .swiper-next.white-border path {
  fill: var(--white);
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled), .swiper-next.white-border:hover:not(.swiper-button-disabled) {
  background: var(--white);
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled) path, .swiper-next.white-border:hover:not(.swiper-button-disabled) path {
  fill: var(--primary);
}
.swiper-prev.gray-border, .swiper-next.gray-border {
  border-color: #828282;
  background: none;
}
.swiper-prev.gray-border path, .swiper-next.gray-border path {
  fill: #828282;
}
.swiper-prev.gray-border:hover:not(.swiper-button-disabled), .swiper-next.gray-border:hover:not(.swiper-button-disabled) {
  background: var(--primary);
}
.swiper-prev.gray-border:hover:not(.swiper-button-disabled) path, .swiper-next.gray-border:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-prev.black-border, .swiper-next.black-border {
  border-color: var(--black);
  background: none;
}
.swiper-prev.black-border path, .swiper-next.black-border path {
  fill: var(--black);
}
.swiper-prev.black-border:hover:not(.swiper-button-disabled), .swiper-next.black-border:hover:not(.swiper-button-disabled) {
  background: var(--black);
  border-color: var(--black);
}
.swiper-prev.black-border:hover:not(.swiper-button-disabled) path, .swiper-next.black-border:hover:not(.swiper-button-disabled) path {
  fill: var(--white);
}
.swiper-prev.swiper-btn-large, .swiper-next.swiper-btn-large {
  --size: 59px;
}
@media only screen and (max-width: 991px) {
  .swiper-prev.swiper-btn-large, .swiper-next.swiper-btn-large {
    --size: 48px;
  }
}
.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: 0.4;
}
.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(92.36deg, #E4C97D -28.11%, #B07A22 59.98%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: btn-glow 3s infinite ease-in-out;
}
.play-btn::before, .play-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  animation: pulse-ring 2.4s infinite ease-out;
}
.play-btn::after {
  animation-delay: 1.2s;
}
.play-btn .play-icon {
  width: 34px;
  height: 34px;
  color: #fff;
  display: block;
  animation: icon-shine 1.6s infinite ease-in-out;
}
.play-btn:hover {
  transform: scale(1.07);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.9);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes icon-shine {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.9;
  }
  50% {
    transform: translateX(2px);
    opacity: 1;
  }
}
.kmr-animate {
  transition: 1.2s ease;
}

[data-video], [data-model] {
  cursor: pointer;
}

.banner {
  position: relative;
}
.banner:not(.banner-banner) {
  position: relative;
}
.banner:not(.banner-banner)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.banner:not(.banner-banner)::before {
  background: linear-gradient(180deg, rgba(2, 2, 2, 0.3) 50%, #010101 100%);
  z-index: 5;
}
.banner:not(.banner-banner).center-banner .banner-wrapper {
  bottom: 50%;
  translate: 0 50%;
  z-index: 10;
}
@media only screen and (max-width: 675px) {
  .banner:not(.banner-banner).center-banner .banner-wrapper {
    bottom: 20%;
    translate: none;
    top: auto;
  }
}
.banner:not(.banner-banner) .bg {
  height: 100vh;
  line-height: 0;
}
@media only screen and (max-width: 991px) {
  .banner:not(.banner-banner) .bg {
    height: 55vh;
  }
}
@media only screen and (max-width: 675px) {
  .banner:not(.banner-banner) .bg {
    height: 45vh;
  }
}
.banner:not(.banner-banner) .bg video, .banner:not(.banner-banner) .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.banner:not(.banner-banner) .home-bannerImg-slider {
  height: 100%;
}
.banner:not(.banner-banner) .home-bannerImg-slider .swiper {
  height: 100%;
}
.banner:not(.banner-banner) .home-bannerImg-slider .swiper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner:not(.banner-banner) .home-bannerImg-slider .swiper .swiper-wrapper {
  transition-timing-function: ease-in-out !important;
}
.banner:not(.banner-banner) .swiper-pagination {
  bottom: 14%;
  z-index: 5;
}
@media only screen and (max-width: 991px) {
  .banner:not(.banner-banner) .swiper-pagination {
    bottom: 18%;
  }
}
@media only screen and (max-width: 540px) {
  .banner:not(.banner-banner) .swiper-pagination {
    bottom: 8%;
  }
}
.banner:not(.banner-banner) .swiper-pagination .swiper-pagination-bullet {
  background: #fff !important;
  width: 12px;
  height: 12px;
}
.banner:not(.banner-banner) .banner-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
}
.banner:not(.banner-banner) .content.content-white h1, .banner:not(.banner-banner) .content.content-white p, .banner:not(.banner-banner) .content.content-white h5, .banner:not(.banner-banner) .content.content-white h6, .banner:not(.banner-banner) .content.content-white h4 {
  color: var(--white);
}
.banner:not(.banner-banner) .content.title-l h1 {
  font-size: 128px;
  line-height: normal;
}
@media only screen and (max-width: 1366px) {
  .banner:not(.banner-banner) .content.title-l h1 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 675px) {
  .banner:not(.banner-banner) .content.title-l h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 360px) {
  .banner:not(.banner-banner) .content.title-l h1 {
    font-size: 48px;
  }
}
.banner:not(.banner-banner) .content.title-l h1 span {
  font-size: 0.25em;
}
.banner:not(.banner-banner) .content.title-m h1 {
  font-size: 60px;
  line-height: 1.349;
}
@media only screen and (max-width: 1152px) {
  .banner:not(.banner-banner) .content.title-m h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .banner:not(.banner-banner) .content.title-m h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 675px) {
  .banner:not(.banner-banner) .content.title-m h1 {
    font-size: 38px;
  }
}
.banner:not(.banner-banner) .content.title-m h1:has(+ *) {
  margin-bottom: 10px;
}
.banner:not(.banner-banner) .content h5:has(+ *) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .banner:not(.banner-banner) .content h5:has(+ *) {
    margin-bottom: 14px;
  }
}
.banner:not(.banner-banner) .content h1 {
  font-size: 64px;
  line-height: normal;
}
@media only screen and (max-width: 520px) {
  .banner:not(.banner-banner) .content h1 {
    font-size: 32px;
  }
}
.banner:not(.banner-banner) .content h1 span {
  font-weight: 400;
  display: block;
  line-height: normal;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.banner:not(.banner-banner) .content h5 {
  font-size: 20px;
  line-height: 1.34;
}
@media only screen and (max-width: 991px) {
  .banner:not(.banner-banner) .content h5 {
    font-size: 16px;
  }
}
.banner:not(.banner-banner) .content h6 {
  font-size: 18px;
  line-height: 1.44;
  font-weight: 400;
}
.banner:not(.banner-banner) .content h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.166;
}
@media only screen and (max-width: 1366px) {
  .banner:not(.banner-banner) .content h4 {
    font-size: 22px;
  }
}
.banner:not(.banner-banner) .content p {
  font-weight: 500;
}
.banner:not(.banner-banner) .scroll-btn {
  --btnsize: 45px;
  height: var(--btnsize);
  width: calc(var(--btnsize) * 0.667);
  border-radius: 20px;
  border: 1px solid var(--white);
  margin-top: 5rem;
}
@media only screen and (max-width: 675px) {
  .banner:not(.banner-banner) .scroll-btn {
    --btnsize: 36px;
    margin-top: 2rem;
  }
}
.banner:not(.banner-banner) .scroll-btn.black-scroll-btn {
  border-color: var(--black);
}
.banner:not(.banner-banner) .scroll-btn.black-scroll-btn span {
  background: var(--black);
}
.banner:not(.banner-banner) .scroll-btn span {
  display: block;
  margin: 0 auto;
  width: 2px;
  height: calc(var(--btnsize) * 0.23);
  border-radius: 25%;
  background: var(--white);
  animation: scroll 2.2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.video-pop {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 999999;
  max-width: 100%;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.video-pop.is-open {
  transform: translateY(0%);
}
.video-pop .close-video {
  position: absolute;
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 675px) {
  .video-pop .close-video {
    right: 0;
  }
}
.video-pop .close-video:hover {
  background: var(--primary);
}
.video-pop .close-video svg {
  height: 35%;
  width: 35%;
}
.video-pop .close-video path {
  stroke-width: 2;
  stroke: var(--white);
}
.video-pop .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
  background: transparent !important;
}
@media only screen and (max-width: 675px) {
  .video-pop .model-body {
    max-width: 95%;
  }
}
.video-pop .model-body iframe {
  width: 100%;
  aspect-ratio: 1.9;
  border: 2px solid var(--white);
}

.profile-pop1, .profile-pop2, .profile-pop3 {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 999999;
  max-width: 100%;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.profile-pop1.is-open, .profile-pop2.is-open, .profile-pop3.is-open {
  transform: translateY(0%);
}
.profile-pop1 .close-video, .profile-pop2 .close-video, .profile-pop3 .close-video {
  position: absolute;
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 675px) {
  .profile-pop1 .close-video, .profile-pop2 .close-video, .profile-pop3 .close-video {
    right: 0;
  }
}
.profile-pop1 .close-video:hover, .profile-pop2 .close-video:hover, .profile-pop3 .close-video:hover {
  background: var(--primary);
}
.profile-pop1 .close-video svg, .profile-pop2 .close-video svg, .profile-pop3 .close-video svg {
  height: 35%;
  width: 35%;
}
.profile-pop1 .close-video path, .profile-pop2 .close-video path, .profile-pop3 .close-video path {
  stroke-width: 2;
  stroke: var(--white);
}
.profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
  padding: 30px;
  border-radius: 10px;
  background: var(--white);
}
@media only screen and (max-width: 1366px) {
  .profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
    max-width: 70%;
  }
}
@media only screen and (max-width: 991px) {
  .profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
    max-width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
    padding: 18px;
  }
}
@media only screen and (max-width: 675px) {
  .profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
    max-width: 95%;
  }
}
@media only screen and (max-width: 540px) {
  .profile-pop1 .model-body, .profile-pop2 .model-body, .profile-pop3 .model-body {
    max-width: 92%;
  }
}
.profile-pop1 .model-body .profile-content-wrap, .profile-pop2 .model-body .profile-content-wrap, .profile-pop3 .model-body .profile-content-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 45px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .profile-pop1 .model-body .profile-content-wrap, .profile-pop2 .model-body .profile-content-wrap, .profile-pop3 .model-body .profile-content-wrap {
    gap: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .profile-pop1 .model-body .profile-content-wrap, .profile-pop2 .model-body .profile-content-wrap, .profile-pop3 .model-body .profile-content-wrap {
    grid-template-columns: 1fr;
  }
}
.profile-pop1 .model-body .profile-content-wrap .close-video, .profile-pop2 .model-body .profile-content-wrap .close-video, .profile-pop3 .model-body .profile-content-wrap .close-video {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 35px;
  height: 35px;
}
@media only screen and (max-width: 540px) {
  .profile-pop1 .model-body .profile-content-wrap .close-video, .profile-pop2 .model-body .profile-content-wrap .close-video, .profile-pop3 .model-body .profile-content-wrap .close-video {
    width: 25px;
    height: 25px;
  }
}
@media only screen and (max-width: 420px) {
  .profile-pop1 .model-body .profile-content-wrap .close-video, .profile-pop2 .model-body .profile-content-wrap .close-video, .profile-pop3 .model-body .profile-content-wrap .close-video {
    right: -12px;
    top: -12px;
  }
}
.profile-pop1 .model-body .profile-content-wrap .profile-image, .profile-pop2 .model-body .profile-content-wrap .profile-image, .profile-pop3 .model-body .profile-content-wrap .profile-image {
  overflow: hidden;
  border-radius: 10px;
}
.profile-pop1 .model-body .profile-content-wrap .profile-image img, .profile-pop2 .model-body .profile-content-wrap .profile-image img, .profile-pop3 .model-body .profile-content-wrap .profile-image img {
  width: 100%;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-name, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-name, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-name {
  padding-bottom: 20px;
  border-bottom: 1px solid #d7d7d7;
}
@media only screen and (max-width: 768px) {
  .profile-pop1 .model-body .profile-content-wrap .profile-details .profile-name, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-name, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .profile-pop1 .model-body .profile-content-wrap .profile-details .profile-name, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-name, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-name {
    font-size: 18px;
  }
}
.profile-pop1 .model-body .profile-content-wrap .profile-details h6, .profile-pop2 .model-body .profile-content-wrap .profile-details h6, .profile-pop3 .model-body .profile-content-wrap .profile-details h6 {
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .profile-pop1 .model-body .profile-content-wrap .profile-details h6, .profile-pop2 .model-body .profile-content-wrap .profile-details h6, .profile-pop3 .model-body .profile-content-wrap .profile-details h6 {
    font-size: 15px;
  }
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .social-media, .profile-pop2 .model-body .profile-content-wrap .profile-details .social-media, .profile-pop3 .model-body .profile-content-wrap .profile-details .social-media {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .profile-pop1 .model-body .profile-content-wrap .profile-details .social-media, .profile-pop2 .model-body .profile-content-wrap .profile-details .social-media, .profile-pop3 .model-body .profile-content-wrap .profile-details .social-media {
    margin-top: 4px;
  }
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .social-media li, .profile-pop2 .model-body .profile-content-wrap .profile-details .social-media li, .profile-pop3 .model-body .profile-content-wrap .profile-details .social-media li {
  background: var(--primary);
  padding: 8px;
  border-radius: 50%;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .social-media li svg, .profile-pop2 .model-body .profile-content-wrap .profile-details .social-media li svg, .profile-pop3 .model-body .profile-content-wrap .profile-details .social-media li svg {
  width: 20px;
  height: 20px;
  display: block;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .social-media li svg path, .profile-pop2 .model-body .profile-content-wrap .profile-details .social-media li svg path, .profile-pop3 .model-body .profile-content-wrap .profile-details .social-media li svg path {
  fill: var(--white);
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content {
  height: 255px;
  overflow-y: scroll;
  margin-top: 20px;
  padding-right: 18px;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar {
  width: 4px;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-track, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-track, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-thumb, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-thumb, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-thumb {
  background-color: rgba(15, 43, 127, 0.4509803922);
  border-radius: 4px;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-thumb:hover, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-thumb:hover, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content::-webkit-scrollbar-thumb:hover {
  background-color: darkred;
  scrollbar-color: rgba(198, 255, 227, 0.5411764706);
  scrollbar-width: thin;
}
.profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content p, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content p, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  color: var(--text);
}
@media only screen and (max-width: 768px) {
  .profile-pop1 .model-body .profile-content-wrap .profile-details .profile-content p, .profile-pop2 .model-body .profile-content-wrap .profile-details .profile-content p, .profile-pop3 .model-body .profile-content-wrap .profile-details .profile-content p {
    font-size: 12px;
    line-height: 18px;
  }
}

.sticky-action-bar {
  display: none;
}
@media only screen and (max-width: 991px) {
  .sticky-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background-color: var(--primary);
    justify-content: space-between;
    align-items: center;
  }
  .sticky-action-bar > div {
    display: flex;
    flex: 1;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
    border-top: 1px solid rgba(133, 133, 133, 0.5);
  }
  .sticky-action-bar > div a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
  }
  .sticky-action-bar > div a svg {
    width: 20px;
    height: 20px;
  }
  .sticky-action-bar > div a svg path {
    fill: var(--white);
  }
  .sticky-action-bar > div a p {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
  }
  .sticky-action-bar > div:nth-child(2) {
    border-left: 1px solid rgba(133, 133, 133, 0.5);
    border-right: 1px solid rgba(133, 133, 133, 0.5);
  }
}

.btn {
  --height: 42px;
  --padding: 35px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--height);
  padding: 0 var(--padding);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
  overflow: hidden;
  color: #fff;
  border-radius: 10px;
  border: none;
  font-family: "Poppins", serif;
  text-decoration: none;
  box-sizing: border-box;
}
.btn span {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 10px;
}
.btn svg {
  width: 20px;
  height: 20px;
  transition: 0.3s ease;
}
.btn:hover svg {
  transform: translateX(4px);
}

.btn-fill {
  background: linear-gradient(92deg, #E4C97D, #B07A22);
}
.btn-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, #17481C, #2F6B29);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: 0;
}
.btn-fill:hover::before {
  opacity: 1;
}
.btn-fill span, .btn-fill svg {
  position: relative;
  z-index: 1;
}

.btn-fill-2 {
  background: linear-gradient(180deg, #E0C782, #B07A22);
}
.btn-fill-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #17481C, #2F6B29);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  z-index: 0;
}
.btn-fill-2:hover::before {
  opacity: 1;
}
.btn-fill-2 span, .btn-fill-2 svg {
  position: relative;
  z-index: 1;
}

.btn-outline {
  --height: 42px;
  --padding: 35px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--height);
  padding: 0 var(--padding);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #17481C;
  color: #17481C;
  transition: color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  box-sizing: border-box;
}
.btn-outline span, .btn-outline svg {
  position: relative;
  z-index: 2;
}
.btn-outline svg {
  width: 20px;
  height: 20px;
  color: currentColor;
  transition: 0.3s ease;
}
.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(92deg, #17481C, #2F6B29);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.btn-outline:hover {
  color: #fff;
  border-color: transparent;
}
.btn-outline:hover::before {
  opacity: 1;
}
.btn-outline:hover svg {
  color: #fff;
  transform: translateX(4px);
}

.enquire-pop.model {
  right: 0;
  top: 0;
  right: 0;
  width: 100%;
  background-image: url(../../images/eon7-stroke.png);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 85% auto;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 9999999;
  overflow: hidden;
}
.enquire-pop.model.is-open {
  transform: translateX(0%);
}
.enquire-pop.model .model-body {
  padding: 60px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.enquire-pop.model .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.enquire-pop.model .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.enquire-pop.model .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop.model .model-body {
    padding: 50px 20px 30px;
  }
}
.enquire-pop.model .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.enquire-pop.model .model-body .title h4 {
  font-size: 32px;
  color: var(--black);
  font-family: "Kugile";
}
.enquire-pop.model .model-body .title p {
  color: var(--text);
  margin-top: 10px;
}
.enquire-pop.model .model-body .title p small {
  line-height: 20px;
}
.enquire-pop.model .model-body .form {
  --gaptb: 15px;
}
.enquire-pop.model .model-body .form .services-dropdown .custom-dropdown {
  border-radius: 4px;
  cursor: pointer;
  padding: 20px 20px 20px 0px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s ease-in-out;
  line-height: 1.2;
}
.enquire-pop.model .model-body .form .services-dropdown .custom-dropdown.open {
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.enquire-pop.model .model-body .form .services-dropdown .custom-dropdown.open::before {
  transform: rotate(-90deg);
}
.enquire-pop.model .model-body .form .services-dropdown .custom-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright);
  bottom: 0;
  width: 15px;
  background-image: url(../../icon/arrow-down-gray.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  transition: all 0.3s ease-in-out;
}
.enquire-pop.model .model-body .form .services-dropdown .custom-dropdown span {
  font-weight: normal;
  color: var(--text);
}
.enquire-pop.model .model-body .form .services-dropdown .dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: white;
  z-index: 100;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  padding: 0 20px;
  height: 135px;
}
.enquire-pop.model .model-body .form .services-dropdown .dropdown-list label {
  display: block;
  padding: 10px 0;
  position: relative;
  pointer-events: auto;
  cursor: pointer;
}
.enquire-pop.model .model-body .form .services-dropdown .dropdown-list label input {
  height: auto;
  width: auto;
}
.enquire-pop.model .model-body .form .services-dropdown .custom-dropdown.open .dropdown-list {
  display: block;
}
.enquire-pop.model .model-body .form .services-dropdown .selected-values {
  font-weight: bold;
  color: #333;
}
.enquire-pop.model .model-body .form .services-dropdown .placeholder {
  color: #aaa;
}

.login-pop.model {
  right: 0;
  top: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(180deg, #c9ffce, #ffffff);
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 9999999;
  overflow: hidden;
}
.login-pop.model.is-open {
  transform: translateX(0%);
}
.login-pop.model .model-body {
  padding: 60px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.login-pop.model .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.login-pop.model .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.login-pop.model .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .login-pop.model .model-body {
    padding: 50px 20px 30px;
  }
}
.login-pop.model .model-body .login-wrap {
  width: 100%;
  max-width: 380px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.login-pop.model .model-body .login-wrap .leaf-icon {
  width: 60px;
  display: block;
  margin: 0 auto 15px;
}
.login-pop.model .model-body .login-wrap .main-title {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0;
  color: var(--thirdy);
  text-transform: uppercase;
}
.login-pop.model .model-body .login-wrap .form {
  margin-top: 40px;
}
.login-pop.model .model-body .login-wrap .form .form-group.active::after {
  width: 100%;
}
.login-pop.model .model-body .login-wrap .form .form-group::before, .login-pop.model .model-body .login-wrap .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.login-pop.model .model-body .login-wrap .form .form-group::before {
  background: var(--text);
}
.login-pop.model .model-body .login-wrap .form .form-group::after {
  width: 0;
  background: var(--text);
}
.login-pop.model .model-body .login-wrap .form .form-group label {
  color: var(--text);
}
.login-pop.model .model-body .login-wrap .form .form-group input, .login-pop.model .model-body .login-wrap .form .form-group textarea {
  color: var(--black);
}
.login-pop.model .model-body .login-wrap .form .form-group input:focus, .login-pop.model .model-body .login-wrap .form .form-group input.valid, .login-pop.model .model-body .login-wrap .form .form-group textarea:focus, .login-pop.model .model-body .login-wrap .form .form-group textarea.valid {
  outline: none;
}
.login-pop.model .model-body .login-wrap .form .form-group input:focus ~ label, .login-pop.model .model-body .login-wrap .form .form-group input.valid ~ label, .login-pop.model .model-body .login-wrap .form .form-group textarea:focus ~ label, .login-pop.model .model-body .login-wrap .form .form-group textarea.valid ~ label {
  color: var(--black);
}
.login-pop.model .model-body .login-wrap .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 34px 0;
}
.login-pop.model .model-body .login-wrap .divider span {
  padding: 0 12px;
  font-size: 14px;
  color: #444;
}
.login-pop.model .model-body .login-wrap .divider::before, .login-pop.model .model-body .login-wrap .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
}
.login-pop.model .model-body .login-wrap .social-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.login-pop.model .model-body .login-wrap .social-btns button {
  flex: 1;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  font-family: "Poppins", serif;
}
.login-pop.model .model-body .login-wrap .social-btns button svg {
  width: 18px;
  height: 18px;
  z-index: 1;
}
.login-pop.model .model-body .login-wrap .social-btns button span {
  z-index: 1;
}
.login-pop.model .model-body .otp-field {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}
.login-pop.model .model-body .otp-field .bk_btn {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", serif;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
}
.login-pop.model .model-body .otp-field .bk_btn svg {
  width: 20px;
  height: 20px;
  transform: rotate(180deg);
}
.login-pop.model .model-body .otp-field .vfy_btn {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
}
.login-pop.model .model-body .otp-field .form {
  margin: 100px 0;
}
.login-pop.model .model-body .otp-field .form p {
  text-align: center;
  font-weight: 400;
  margin-bottom: 12px;
}
.login-pop.model .model-body .otp-field .form p:nth-of-type(2) {
  font-weight: 600;
  font-size: 18px;
}
.login-pop.model .model-body .otp-field .form a {
  color: var(--thirdy);
  font-weight: 500;
}
.login-pop.model .model-body .otp-field .form .otpInput {
  padding: 30px 0 0;
  max-width: 230px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  font-family: "Poppins", serif;
  gap: 0 21px;
  color: #666666;
}
.login-pop.model .model-body .otp-field .form .otpInput input {
  flex: 1;
  height: 40px;
  width: 100%;
  border: none;
  font-weight: 500;
  border: 1px solid #CCCCCC;
  color: #666666;
  outline: none;
  border-radius: 5px;
  text-align: center;
}
.login-pop.model .model-body .otp-field .alert {
  font-size: 14px;
}
.login-pop.model .model-body .otp-field .alert span {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding-left: 10px;
}

.wishlist,
.remove {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #666;
  padding: 4px;
  line-height: 1;
}

.wishlist {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  color: #666;
  line-height: 1;
}
.wishlist.fillSvg svg path {
  fill: red;
  stroke: red;
}

input[type=checkbox] {
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid rgb(9, 34, 13);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
input[type=checkbox]:checked {
  background: rgb(9, 34, 13);
  border-color: rgb(9, 34, 13);
}
input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  top: 2px;
  left: 4px;
}

.input-checkbox {
  font-family: "Poppins", serif;
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.input-checkbox span, .input-checkbox a {
  font-size: 11px;
  line-height: 1.2;
}
.input-checkbox input[type=checkbox] {
  width: 15px;
  height: 15px;
}
.input-checkbox input[type=checkbox]:checked::after {
  width: 5px;
  height: 8px;
}

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

a {
  color: inherit;
}

.error {
  font-size: 12px;
  color: #ff0000;
}

@media only screen and (max-width: 991px) {
  .swiper-group {
    display: none !important;
  }
}

.header-wrapper {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background: var(--white);
  transition: 0.3s ease;
}

.dashboard-secA {
  background: var(--white);
  padding: 10rem 0 4rem;
}
@media only screen and (max-width: 991px) {
  .dashboard-secA {
    padding: 2rem 0;
    margin-top: calc(var(--headerheight) + var(--mobilesearch));
  }
}
@media only screen and (max-width: 767px) {
  .dashboard-secA {
    padding: 2rem 0;
  }
}
.dashboard-secA .flex {
  gap: 4rem;
}
.dashboard-secA .flex .aside-left, .dashboard-secA .flex .aside-right {
  position: sticky;
  top: calc(var(--headerfixed) + 10px);
  height: 100%;
}
.dashboard-secA .flex .aside-left {
  flex: 0 1 23%;
  max-width: 23%;
  width: 100%;
  border-radius: 6px;
  background: #edf9d9;
}
.dashboard-secA .flex .aside-left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 1024px) {
  .dashboard-secA .flex .aside-left {
    flex: 0 1 22%;
    max-width: 22%;
  }
}
@media only screen and (max-width: 991px) {
  .dashboard-secA .flex .aside-left {
    display: none;
  }
}
.dashboard-secA .flex .aside-left::after {
  background: url(/assets/icon/leaf.svg) no-repeat;
  background-size: 70% auto;
  background-position: right -50px bottom 0px;
  z-index: 0;
  opacity: 0.1;
}
.dashboard-secA .flex .aside-left .aside-left-wrap {
  position: relative;
  z-index: 1;
}
.dashboard-secA .flex .aside-left .profile-col {
  padding: 30px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.168627451);
  --ico: 78px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .dashboard-secA .flex .aside-left .profile-col {
    --ico: 60px;
    padding: 20px 20px 25px;
  }
}
.dashboard-secA .flex .aside-left .profile-col .ico {
  height: var(--ico);
  width: var(--ico);
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
  display: inline-block;
}
.dashboard-secA .flex .aside-left .profile-col .ico img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard-secA .flex .aside-left .profile-col .wlcm {
  font-size: 18px;
  line-height: 1.2;
  color: var(--black);
  font-weight: 500;
  margin: 14px 0 4px;
}
.dashboard-secA .flex .aside-left .profile-col .name-usr, .dashboard-secA .flex .aside-left .profile-col .fld-usr {
  color: var(--text);
}
.dashboard-secA .flex .aside-left .profile-col .name-usr a, .dashboard-secA .flex .aside-left .profile-col .fld-usr a {
  color: inherit;
}
.dashboard-secA .flex .aside-left .profile-col .name-usr a:hover, .dashboard-secA .flex .aside-left .profile-col .fld-usr a:hover {
  color: var(--secondary);
}
.dashboard-secA .flex .aside-left .profile-col .name-usr {
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 12px;
}
.dashboard-secA .flex .aside-left .profile-col .fld-usr {
  font-size: 12px;
}
.dashboard-secA .flex .aside-left .nav-col {
  padding: 30px 30px 12rem 0px;
  background-position: 0 100%;
  background-size: 100% auto;
}
@media only screen and (max-width: 1024px) {
  .dashboard-secA .flex .aside-left .nav-col {
    display: block;
  }
}
.dashboard-secA .flex .aside-left .nav-col ul li {
  position: relative;
}
.dashboard-secA .flex .aside-left .nav-col ul li:not(:last-child) {
  margin-bottom: 12px;
}
@media only screen and (max-width: 1024px) {
  .dashboard-secA .flex .aside-left .nav-col ul li:not(:last-child) {
    margin-bottom: 8px;
  }
}
.dashboard-secA .flex .aside-left .nav-col ul li a {
  padding-left: 100px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .dashboard-secA .flex .aside-left .nav-col ul li a {
    font-size: 14px;
  }
}
.dashboard-secA .flex .aside-left .nav-col ul li a:hover, .dashboard-secA .flex .aside-left .nav-col ul li a.active {
  color: var(--primary);
}
.dashboard-secA .flex .aside-left .nav-col ul li a.active::before {
  top: 50%;
  transform: translateY(-50%);
  content: "";
  position: absolute;
  left: 0px;
  width: 80px;
  height: 1.6px;
  background: var(--primary);
}
.dashboard-secA .flex .aside-left .nav-col ul li:has(.has-sub-men-li) > a {
  background-image: url(../../icon/arrow-down-gray.svg);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  padding-right: 1rem;
}
.dashboard-secA .flex .aside-left .nav-col ul li:has(.has-sub-men-li) > a.active, .dashboard-secA .flex .aside-left .nav-col ul li:has(.has-sub-men-li) > a:hover {
  background-image: url(../../icon/arrow-down-secondary.svg);
}
.dashboard-secA .flex .aside-left .nav-col ul li .has-sub-men-li {
  border: 1px solid #dfdfdf;
  background: #f2f6ff;
  padding: 12px 15px;
  margin-top: 1rem;
  border-radius: 5px;
  display: none;
}
.dashboard-secA .flex .aside-left .nav-col ul li .has-sub-men-li ul li:not(:last-child) {
  margin-bottom: 10px;
}
.dashboard-secA .flex .aside-left .nav-col ul li .has-sub-men-li ul li a {
  font-size: 14px;
}
.dashboard-secA .flex .aside-right {
  flex: 1;
}
@media only screen and (max-width: 991px) {
  .dashboard-secA .flex .aside-right {
    margin-left: 0;
  }
}
.dashboard-secA .flex .aside-right .aside-right-wrap .form-title {
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "Poppins", serif;
  font-size: 16px;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .aside-right-wrap .form-title {
    font-size: 16px;
    text-align: center;
  }
}
.dashboard-secA .flex .aside-right .aside-right-wrap .form-grid {
  --item: 2;
  --gaplr: 53px;
  --gaptb: 28px;
}
@media only screen and (max-width: 991px) {
  .dashboard-secA .flex .aside-right .aside-right-wrap .form-grid {
    --gaplr: 30px;
  }
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .aside-right-wrap .form-grid {
    --item: 1;
  }
}
.dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .form-group::before {
  background: var(--text);
}
.dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .form-group::after {
  width: 0;
  background: var(--text);
}
.dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .form-group label {
  color: var(--text);
}
.dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .form-group input:focus, .dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .form-group input.valid, .dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .form-group textarea:focus, .dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .form-group textarea.valid {
  outline: none;
}
.dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .form-group input:focus ~ label, .dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .form-group input.valid ~ label, .dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .form-group textarea:focus ~ label, .dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .form-group textarea.valid ~ label {
  color: var(--black);
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .submit-grp {
    text-align: center;
  }
}
.dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .submit-grp .btn {
  --padding: 54px;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .aside-right-wrap .form-grid .submit-grp .btn {
    font-size: 14px;
    --padding: 32px;
  }
}
.dashboard-secA .flex .aside-right .ukrjh {
  justify-content: space-between;
  margin-bottom: 35px;
}
.dashboard-secA .flex .aside-right .ukrjh.ywxax {
  flex-direction: column;
  gap: 1rem;
}
.dashboard-secA .flex .aside-right .ukrjh.ywxax .idioq .form-group:has(.custom-select) {
  width: 130px;
}
.dashboard-secA .flex .aside-right .ukrjh h5 {
  font-weight: 600;
}
.dashboard-secA .flex .aside-right .ukrjh .idioq {
  display: flex;
  --paddingleftright: 12px;
  --inputsize: 38px;
  gap: 13px;
}
.dashboard-secA .flex .aside-right .ukrjh .idioq .qwuic {
  --labelfontbefore: 14px;
}
.dashboard-secA .flex .aside-right .ukrjh .idioq .qwuic::before, .dashboard-secA .flex .aside-right .ukrjh .idioq .qwuic::after {
  display: none;
}
.dashboard-secA .flex .aside-right .ukrjh .idioq .qwuic input, .dashboard-secA .flex .aside-right .ukrjh .idioq .qwuic .custom-select {
  border: 1px solid #DBDBDB;
  border-radius: 5px !important;
  font-size: 14px;
}
.dashboard-secA .flex .aside-right .ukrjh .idioq .btn {
  --height: var(--inputsize);
  --padding: 20px;
}
.dashboard-secA .flex .aside-right .yokqa-wrap {
  border: 1px solid #E3E3E3;
  padding: 30px;
  border-radius: 5px;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .media-upload-file {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 25px 24px;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .media-upload-file li {
  background: #F4F4F4;
  padding: 45px 15px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  text-align: center;
  aspect-ratio: 1.2;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .media-upload-file li .plu-ico, .dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .media-upload-file li .pdf-ico {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .media-upload-file li .plu-ico {
  width: 18px;
  height: 18px;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .media-upload-file li .pdf-ico {
  width: 25px;
  height: 25px;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .media-upload-file li input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  z-index: 2;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .media-upload-file li p {
  font-size: 14px;
  line-height: 1;
  color: #A5A3A3;
  font-weight: 500;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .media-upload-file li .img-preview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
  background: var(--white);
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .media-upload-file li .img-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .media-upload-file li .img-preview .close-prev-img {
  position: absolute;
  background: var(--primary);
  height: 14px;
  width: 14px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 5px;
  top: 5px;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  text-transform: lowercase;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .category-grid li:not(:last-child) {
  margin-bottom: 20px;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .category-grid li .cat_input {
  --paddingleftright: 20px;
  display: inline-flex;
  width: 50%;
  gap: 10px;
  margin-bottom: 25px;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .category-grid li .cat_input::before, .dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .category-grid li .cat_input::after {
  display: none;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .category-grid li .cat_input input {
  flex: 1;
  background: #F4F4F4;
  border-radius: 5px !important;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .category-grid li .cat_input input[disabled] {
  caret-color: transparent;
  color: var(--text);
  font-weight: 500;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .category-grid li .cat_input .edt_btn, .dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .category-grid li .cat_input .dlt_btn {
  line-height: 0;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .category-grid li .btn {
  --height: var(--inputsize);
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .sub-cat-div {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .sub-cat-div .btn-div {
  display: flex;
  gap: 5px;
}
.dashboard-secA .flex .aside-right .yokqa-wrap .yokqa .form .zvxzj-btn {
  width: auto;
  margin-right: auto;
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd {
  border: 1px solid #F1F1F1;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (max-width: 520px) {
  .dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd {
    border-radius: 0px;
  }
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd:not(:last-child) {
  margin-bottom: 8px;
}
@media only screen and (max-width: 520px) {
  .dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd:not(:last-child) {
    margin-bottom: 22px;
  }
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd.open .title .arr-htt {
  transform: rotate(-90deg);
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .title {
  padding: 8px 16px;
  background: #F1F1F1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  transition: 0.5s ease;
  cursor: pointer;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .title {
    gap: 10px;
    padding: 8px 12px;
  }
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .title .asd-ttl {
  flex: 1;
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .title .asd-ttl .kwvrf {
  font-size: 14px;
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .title .asd-ttl .rm-id {
  font-size: 16px;
  line-height: 1.5;
  transition: inherit;
  color: var(--black);
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .title .asd-ttl .rm-id {
    line-height: 1.2;
  }
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .title .asd-ttl .rm-dt {
  font-size: 14px;
  line-height: 18px;
  transition: inherit;
  color: var(--text);
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .title .asd-ttl .rm-dt.delivered {
  color: var(--green);
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .title .asd-ttl .rm-dt.cancelled {
  color: red;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .title .asd-ttl .rm-dt {
    font-size: 12px;
    line-height: 14px;
  }
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .title .arr-htt {
  width: 15px;
  height: 15px;
  background-image: url(/assets/icon/arrow-down-gray.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
  transform: rotate(0deg);
  transition: 0.5s ease;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .title .arr-htt {
    display: none;
  }
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd .quuguj-wrap {
  padding: 0 15px 30px;
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article {
  padding: 0 !important;
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 15px;
}
@media only screen and (max-width: 520px) {
  .dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card {
    padding: 20px 0 0;
  }
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figure {
  flex: 0 1 107px;
  line-height: 0;
  overflow: hidden;
}
@media only screen and (max-width: 520px) {
  .dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figure {
    padding: 0 15px;
  }
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figcaption {
  flex: 1;
  padding-left: 34px;
  position: relative;
}
@media only screen and (max-width: 520px) {
  .dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figcaption {
    flex: 0 1 100%;
    margin-top: 1.4rem;
    padding-left: 0;
  }
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figcaption > *:not(.kgmia-ordt-wrap) {
  padding: 0 15px;
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figcaption .ialv {
  font-size: 14px;
  line-height: 18px;
  color: var(--text);
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figcaption .lmxa {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  max-width: 407px;
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figcaption .ialv {
  margin-bottom: 12px;
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figcaption .xzoui {
  color: var(--black);
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
}
.dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figcaption .kgmia-ordt-wrap {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figcaption .kgmia-ordt-wrap {
    position: unset;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 520px) {
  .dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figcaption .kgmia-ordt-wrap {
    gap: 0px;
  }
}
@media only screen and (max-width: 520px) {
  .dashboard-secA .flex .aside-right .dznjn-wrap .dznjn .bkd-htl-crd article .mid-sec-card figcaption .kgmia-ordt-wrap > * {
    --height: 38px;
    flex: 1;
    border-radius: 0px;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .veqrn {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
.dashboard-secA .flex .aside-right .dypye-wrap .veqrn:hover {
  color: var(--black);
}
.dashboard-secA .flex .aside-right .dypye-wrap .veqrn:hover path {
  fill: var(--black);
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk {
  border: 1px solid #F1F1F1;
  border-radius: 6px;
  overflow: hidden;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk .title {
  border-bottom: 1px solid #DADADA;
  padding: 8px 16px;
  background: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: 0.5s ease;
  cursor: pointer;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk .title .asd-ttl {
  flex: 1;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk .title .asd-ttl .rm-id {
  font-size: 16px;
  line-height: 1.5;
  transition: inherit;
  font-weight: 500;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk .title .asd-ttl .rm-dt {
  font-size: 14px;
  line-height: 18px;
  transition: inherit;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .achfv-card-desc {
  font-family: "Poppins", serif;
  background: var(--white);
  padding: 24px 15px;
  border-bottom: 1px solid #F3F3F3;
  position: relative;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .achfv-card-desc .xqzlx {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .achfv-card-desc .xqzlx {
    position: unset;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .achfv-card-desc .ttl-kauwh {
  margin-bottom: 12px;
  font-weight: 500;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .achfv-card-desc .icodf > * {
  margin-bottom: 10px;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .achfv-card-desc .icodf *:not(.btn) {
  color: var(--text);
  font-size: 14px;
  line-height: 17.22px;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .achfv-card-desc .icodf *:not(.btn) span {
  color: var(--black);
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .achfv-card-desc .icodf .jnkvz {
  max-width: 388px;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card {
  background: var(--white);
  display: flex;
  flex-wrap: wrap;
  padding: 24px 15px;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figure {
  flex: 0 1 85px;
  line-height: 0;
  overflow: hidden;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figure {
    flex: 0 1 75px;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption {
  flex: 1;
  padding-left: 22px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption {
    padding-left: 16px;
  }
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption {
    flex: 0 1 100%;
    padding-left: 0;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .lmxa, .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .ialv {
  font-size: 14px;
  line-height: 18px;
  color: var(--text);
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .lmxa, .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .ialv {
    font-size: 11px;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .lmxa {
  margin-bottom: 18px;
  max-width: 407px;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .lmxa {
    font-size: 14px;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .ialv {
  margin-bottom: 15px;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap {
  max-width: 727px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1152px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap {
    max-width: 640px;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul {
  display: flex;
  gap: 30px;
  --color: #c6c6c6;
  --dot: 13px;
  --line: 140px;
  position: relative;
}
@media only screen and (max-width: 1152px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul {
    gap: 15px;
    --line: 123px;
  }
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul {
    flex-direction: column;
    text-align: left;
    padding: 0;
    --line: 50px;
    gap: var(--line);
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li {
  flex: 1;
  text-align: center;
  line-height: normal;
  position: relative;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li {
    text-align: left;
    display: flex;
    gap: 10px;
  }
}
@media only screen and (max-width: 345px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li {
    gap: 5px;
  }
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li span {
    order: 2;
  }
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li p {
    order: 3;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li::before {
  content: "";
  position: absolute;
  right: calc(100% - 54px);
  top: 55%;
  translate: 0 -50%;
  height: 1px;
  width: var(--line);
  background: var(--secondary);
  display: none;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li::before {
    top: auto;
    bottom: 100%;
    left: calc(var(--dot) / 2);
    right: auto;
    translate: -50% 0;
    height: var(--line);
    width: 1px;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li:first-child.active > *, .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li:last-child.active > * {
  color: var(--secondary);
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li:first-child.active .dot, .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li:last-child.active .dot {
  background: var(--secondary);
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li:not(:first-child, :last-child).active > * {
  color: var(--secondary);
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li:not(:first-child, :last-child).active::before {
  display: block;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li:not(:first-child, :last-child).active .dot {
  background: var(--secondary);
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li:not(:first-child, :last-child).active .dot::after {
  opacity: 1;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li:last-child.active .dot::after {
  opacity: 1;
  right: 100%;
  left: auto;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li > * {
  font-size: 12px;
  line-height: 16px;
  color: #c6c6c6;
}
@media only screen and (max-width: 1152px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li > * {
    font-size: 11px;
    line-height: 14px;
  }
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li > * {
    font-size: 14px;
    font-weight: 500;
  }
}
@media only screen and (max-width: 345px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li > * {
    font-size: 11px;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li .dot {
  height: var(--dot);
  width: var(--dot);
  margin: 14px auto;
  background: #c6c6c6;
  border-radius: 50%;
  position: relative;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li .dot {
    margin: 0;
    order: 1;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li .dot::before, .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li .dot::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  translate: 0 -50%;
  height: 1px;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li .dot::before, .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li .dot::after {
    top: 100%;
    left: 50%;
    translate: -50% 0;
    height: var(--line);
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li .dot::before {
  width: var(--line);
  background: #c6c6c6;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li .dot::before {
    width: 1px;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li .dot::after {
  width: calc(var(--line) * 0.5);
  background: var(--secondary);
  z-index: 1;
  opacity: 0;
}
@media only screen and (max-width: 675px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li .dot::after {
    width: 1px;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .mid-eelqz-card figcaption .nsvq0-wrap ul li:last-child .dot::before {
  display: none;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .etydk {
  background: var(--white);
  padding: 12px 15px;
  border-top: 1px solid #DADADA;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .etydk .owhcjaxdd {
  width: 100%;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .etydk .owhcjaxdd ul {
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .etydk .owhcjaxdd ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media only screen and (max-width: 540px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .etydk .owhcjaxdd ul {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 12px;
  }
}
@media only screen and (max-width: 540px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .etydk .owhcjaxdd ul li {
    line-height: 0;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .etydk .owhcjaxdd ul li span {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  color: #a5a5a5;
  font-weight: 500;
}
@media only screen and (max-width: 540px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .etydk .owhcjaxdd ul li span {
    margin-bottom: 4px;
  }
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .etydk .owhcjaxdd ul li p {
  font-size: 13px;
  line-height: 1.2;
  color: var(--text);
  font-weight: 500;
}
.dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .etydk .owhcjaxdd ul li p.ttl-sefw {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
}
@media only screen and (min-width: 767px) {
  .dashboard-secA .flex .aside-right .dypye-wrap .dypye .ratpk article .etydk .owhcjaxdd ul li:last-child {
    margin-left: auto;
  }
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 90px 20px;
}
@media only screen and (max-width: 991px) {
  .dashboard-secA .flex .aside-right .wish-list-wrap-dashboard {
    grid-gap: 20px 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .dashboard-secA .flex .aside-right .wish-list-wrap-dashboard {
    grid-gap: 0px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard .product-card {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard .product-card .close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard .product-card .img-box {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard .product-card .img-box img {
  width: 100%;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard .product-card .rating {
  display: flex;
  gap: 3px;
  margin-bottom: 5px;
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard .product-card .rating img {
  width: 15px;
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard .product-card .rating span {
  font-size: 12px;
  margin-left: 6px;
  color: var(--black);
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard .product-card .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard .product-card .sub {
  font-size: 12px;
  color: var(--text);
  line-height: 1.3;
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard .product-card .size {
  font-size: 12px;
  color: var(--black);
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard .product-card .price {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.dashboard-secA .flex .aside-right .wish-list-wrap-dashboard .product-card .btn {
  margin-top: 12px;
}

.kcyycf-col {
  padding: 25px 15px 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}
.kcyycf-col .bmrdxh {
  flex: 0 1 20%;
}
.kcyycf-col .bmrdxh figure {
  border: 1px solid rgba(208, 208, 208, 0.5019607843);
  border-radius: 5px;
  padding: 20px;
}
.kcyycf-col .bmrdxh figure img {
  width: 100%;
}
.kcyycf-col .tusnbq {
  flex: 1;
}
.kcyycf-col .tusnbq p, .kcyycf-col .tusnbq li {
  color: var(--text);
  font-size: 14px;
}
.kcyycf-col .tusnbq p span, .kcyycf-col .tusnbq p a, .kcyycf-col .tusnbq li span, .kcyycf-col .tusnbq li a {
  color: var(--black);
}
.kcyycf-col .tusnbq .pigjwf {
  margin-bottom: 18px;
}
.kcyycf-col .tusnbq .pigjwf h6 {
  font-family: "Poppins", serif;
  font-size: 24px;
  line-height: 1;
}
.kcyycf-col .tusnbq .pigjwf p {
  font-size: 13px;
  margin-top: 8px;
}
.kcyycf-col .tusnbq .wwgwr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 12px 16px;
  margin-bottom: 15px;
}

.zefvei {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #DFDFDF;
  padding: 12px 16px;
}
.zefvei ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  color: var(--text);
}
.zefvei ul li:not(:last-child) {
  margin-right: 16px;
}
.zefvei ul li .prc {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
}

.profile-detail-doc .profile-tab {
  margin-bottom: 3rem;
}
.profile-detail-doc .profile-tab li {
  display: inline-block;
  vertical-align: middle;
  color: #a3a3a3;
  position: relative;
  padding: 10px 0;
  font-weight: 500;
  transition: 0.6s ease;
}
.profile-detail-doc .profile-tab li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--black);
}
.profile-detail-doc .profile-tab li::before {
  height: 1px;
  top: auto;
  transition: 0.6s ease;
  width: 0;
}
.profile-detail-doc .profile-tab li.active {
  color: var(--black);
}
.profile-detail-doc .profile-tab li.active::before {
  width: 100%;
}
.profile-detail-doc .profile-tab li:not(:last-child) {
  margin-right: 2rem;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 25px 24px;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li {
  background: #F4F4F4;
  padding: 45px 15px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  text-align: center;
  aspect-ratio: 1.2;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li .plu-ico, .profile-detail-doc .profile-tab-content .form .doc-upload-file li .pdf-ico {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li .plu-ico {
  width: 18px;
  height: 18px;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li .pdf-ico {
  width: 25px;
  height: 25px;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li p {
  font-size: 14px;
  line-height: 1.2;
  color: #A5A3A3;
  font-weight: 500;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li .preview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
  background: var(--white);
  overflow: hidden;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li .preview img:not(.pdf-ico) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li .preview .pdf-url {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  flex-direction: column;
  gap: 10px;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li .preview .pdf-url .pdf-ico {
  width: 50px;
  height: 50px;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li .preview .pdf-url .pdf-nm {
  font-size: 12px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  padding: 0 20px;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li .close-preview, .profile-detail-doc .profile-tab-content .form .doc-upload-file li .view-preview {
  position: absolute;
  z-index: 4;
  background: var(--primary);
  height: 17px;
  width: 17px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  text-transform: lowercase;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li .close-preview {
  right: 5px;
}
.profile-detail-doc .profile-tab-content .form .doc-upload-file li .view-preview {
  right: 27px;
  width: 32px;
  border-radius: 3px;
}
.profile-detail-doc .profile-tab-content .fzamc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.profile-detail-doc .profile-tab-content .fzamc .ttl-tkywa {
  font-weight: 500;
  font-size: 18px;
}

.fancybox__content:has(iframe) {
  height: 100% !important;
  padding: 0;
}

.savd-addr-col-wrap-fwefef {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px 15px;
}

.savd-addr-col-fwefef {
  display: flex;
  border: 1px solid #F3F3F3;
  border-radius: 5px;
  padding: 28px 16px;
  gap: 13px;
  position: relative;
  transition: 0.5s ease;
}
.savd-addr-col-fwefef:has(input:checked) {
  border-color: var(--secondary);
  background: #f0f4ff;
}
.savd-addr-col-fwefef .cola-fgsqw {
  line-height: 0;
}
.savd-addr-col-fwefef .cola-fgsqw input[type=radio] {
  --size: 17px;
  display: inline-block;
  height: var(--size);
  width: var(--size);
  border: 1px solid var(--primary);
  border-radius: 50%;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  background: transparent;
}
.savd-addr-col-fwefef .cola-fgsqw input[type=radio]:checked {
  background: var(--primary);
  outline-offset: -4px;
  outline: 2px solid var(--white);
}
.savd-addr-col-fwefef .colb-dtl-fwwz {
  flex: 1;
  color: var(--text);
  font-size: 14px;
  line-height: 18px;
}
.savd-addr-col-fwefef .colb-dtl-fwwz .ahck-ttl {
  font-size: 16px;
  line-height: 19.68px;
  color: var(--black);
  margin-bottom: 20px;
}
.savd-addr-col-fwefef .colb-dtl-fwwz .addr-erter {
  margin-bottom: 20px;
}
.savd-addr-col-fwefef .colb-dtl-fwwz .mbl-wef span {
  color: var(--black);
  font-weight: 500;
}
.savd-addr-col-fwefef .btn-etp-eew {
  position: absolute;
  bottom: 26px;
  right: 20px;
}
.savd-addr-col-fwefef .btn-etp-eew .mbcw {
  font-size: 14px;
  text-transform: capitalize;
  color: var(--primary);
  font-weight: 500;
}
.savd-addr-col-fwefef .btn-etp-eew .mbcw:is(a, button):hover {
  color: var(--secondary);
}
.savd-addr-col-fwefef .btn-etp-eew .mbcw:not(:last-child) {
  margin-right: 20px;
}

.addr-pop {
  right: 0;
  transition: 0.5s ease;
  transform: translateX(100%);
}
.addr-pop.is-open {
  transform: translateX(0%);
}
.addr-pop .model-body {
  padding: 70px 20px 30px;
}
.addr-pop .savd-addr-col-wrap-fwefef {
  grid-template-columns: 100%;
}

.circle-value-wrap {
  position: relative;
  line-height: 0;
}
.circle-value-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.circle-value-wrap::after {
  border: 5px solid #ededed;
  border-radius: 50%;
  z-index: -1;
}
.circle-value-wrap .count-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  white-space: nowrap;
  display: flex;
}
.circle-value-wrap .count-ttl p, .circle-value-wrap .count-ttl span {
  display: block;
  line-height: 1;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.flex-1 {
  flex: 1;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.table-div.space-medium table th, .table-div.space-medium table td {
  padding: 8px 12px;
}
.table-div table {
  width: 100%;
  border-spacing: 0px;
  border: 1px solid #ccc;
  border-collapse: collapse;
}
.table-div table th, .table-div table td {
  padding: 12px 20px;
  border: 1px solid #ccc;
  color: var(--text);
  font-size: 14px;
}
.table-div table th a, .table-div table th button, .table-div table td a, .table-div table td button {
  display: block;
}
.table-div table th a:has(img), .table-div table th button:has(img), .table-div table td a:has(img), .table-div table td button:has(img) {
  text-align: center;
  line-height: 0;
}
.table-div table th:has(small) p, .table-div table td:has(small) p {
  font-weight: 500;
}
.table-div table th p small, .table-div table td p small {
  font-size: 12px;
  line-height: 1.2;
}
.table-div table tr:has(.deduct) {
  background: rgba(255, 191, 191, 0.2901960784);
}
.table-div table tr:has(.added) {
  background: #dfffd0;
}
.table-div table th {
  font-weight: 500;
  text-align: left;
}

.dashboard-land-wrap > * {
  margin-bottom: 1rem;
}

.etuk-ttl {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.etuk-ttl h5 {
  font-weight: 600;
}
.etuk-ttl h6 {
  font-weight: 500;
}

.ntsi {
  border: 1px solid #efefef;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.ntsi .ico {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  background: #e3f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 26px;
}
.ntsi .inf {
  flex: 1;
}
.ntsi .inf h5, .ntsi .inf h6 {
  font-weight: 600;
}
.ntsi .inf p {
  color: var(--text);
  font-size: 14px;
}

.vandor-dashboard-chat {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 400px;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.vandor-dashboard-chat .chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.dashboard-chat {
  border: 1px solid #ddd;
  --padt: 10px;
  --padlr: 20px;
  --padb: 20px;
  border-radius: 5px;
  overflow: hidden;
}
.dashboard-chat .chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--gray);
  padding: var(--padt) var(--padlr);
}
.dashboard-chat .chat-header .aside-head-chat {
  display: flex;
  gap: 12px;
}
.dashboard-chat .chat-header .aside-head-chat .ico {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
}
.dashboard-chat .chat-header .aside-head-chat .ico img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard-chat .chat-header .aside-head-chat .inf .chat-name {
  font-size: 18px;
  font-weight: 600;
}
.dashboard-chat .chat-header .aside-head-chat .inf .chat-desc {
  font-size: 13px;
  color: var(--text);
}
.dashboard-chat .chat-header .aside-right-chat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dashboard-chat .chat-header .aside-right-chat .more-op-chat {
  position: relative;
}
.dashboard-chat .chat-header .aside-right-chat .more-op-chat .v-mr-optn {
  line-height: 0;
}
.dashboard-chat .chat-header .aside-right-chat .more-op-chat .v-mr-optn-div {
  display: none;
  background: var(--white);
  padding: 10px 0;
  position: absolute;
  right: 0;
  top: 100%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.dashboard-chat .chat-header .aside-right-chat .more-op-chat .v-mr-optn-div ul {
  white-space: nowrap;
  max-height: 140px;
  overflow-y: auto;
}
.dashboard-chat .chat-header .aside-right-chat .more-op-chat .v-mr-optn-div ul::-webkit-scrollbar {
  width: 3px;
  background: none;
  height: 3px;
}
.dashboard-chat .chat-header .aside-right-chat .more-op-chat .v-mr-optn-div ul::-webkit-scrollbar-track {
  box-shadow: none;
}
.dashboard-chat .chat-header .aside-right-chat .more-op-chat .v-mr-optn-div ul::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 0;
}
.dashboard-chat .chat-header .aside-right-chat .more-op-chat .v-mr-optn-div li {
  line-height: 0;
}
.dashboard-chat .chat-header .aside-right-chat .more-op-chat .v-mr-optn-div li a {
  color: var(--text);
  font-size: 14px;
  display: block;
  height: 35px;
  line-height: 35px;
  padding: 0 18px;
}
.dashboard-chat .chat-header .aside-right-chat .more-op-chat .v-mr-optn-div li a:hover {
  background: var(--secondary);
  color: var(--secondary);
}
.dashboard-chat .chat-messages {
  margin: 2rem 0;
  padding: 0 var(--padlr);
  max-height: 250px;
  min-height: 250px;
  overflow-y: auto;
}
.dashboard-chat .chat-messages::-webkit-scrollbar {
  width: 10px;
  background: none;
  height: 10px;
}
.dashboard-chat .chat-messages::-webkit-scrollbar-track {
  box-shadow: none;
}
.dashboard-chat .chat-messages::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 0;
}
.dashboard-chat .chat-messages .message {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 60%;
}
.dashboard-chat .chat-messages .message .time {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
}
.dashboard-chat .chat-messages .message .time svg, .dashboard-chat .chat-messages .message .time img {
  width: 12px;
}
.dashboard-chat .chat-messages .message p {
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 14px;
}
.dashboard-chat .chat-messages .message:not(:last-child) {
  margin-bottom: 10px;
}
.dashboard-chat .chat-messages .message.message-right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
.dashboard-chat .chat-messages .message.message-right p {
  background: var(--secondary);
  color: var(--white);
}
.dashboard-chat .chat-messages .message.message-left p {
  background: var(--secondary);
}
.dashboard-chat .chat-input-container {
  display: flex;
  padding: 0 var(--padlr) var(--padb);
  align-items: center;
  --btmheigth: 40px;
  gap: 10px;
}
.dashboard-chat .chat-input-container .chat-input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  height: var(--btmheigth);
  font-size: 14px;
}
.dashboard-chat .chat-input-container .chat-input:focus {
  outline: 1px solid #ccc;
}
.dashboard-chat .chat-input-container .send-message-btn {
  --height: var(--btmheigth);
  --padding: 28px;
}

.mac-pr-dtl .mac-pr {
  display: inline-flex;
  align-items: center;
}
.mac-pr-dtl .mac-pr .ico {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
}
.mac-pr-dtl .mac-pr .ico img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mac-pr-dtl .mac-pr .inf {
  padding-left: 1rem;
}
.mac-pr-dtl .mac-pr .inf .pr-cat-brand, .mac-pr-dtl .mac-pr .inf .pr-cat-name {
  font-size: 12px;
}
.mac-pr-dtl .mac-pr .inf .prdt-nm {
  margin-bottom: 4px;
  max-width: 400px;
}

.text-input {
  display: block;
  max-width: 80px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
  height: 32px;
  color: var(--text);
}
.text-input:focus {
  outline: none;
}

.text-input-checkbox {
  --size: 20px;
  height: var(--size);
  width: var(--size);
  position: relative;
  padding: 0;
  border-radius: 5px;
  background: #D9D9D9;
  pointer-events: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  pointer-events: all;
  --size: 24px;
}
.text-input-checkbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: url(../../icon/tick-white.svg) no-repeat;
  background-position: 50% 50%;
  background-size: 10px auto;
  opacity: 0;
}
.text-input-checkbox:checked {
  background: var(--primary);
}
.text-input-checkbox:checked::before {
  opacity: 1;
}

td:has(.text-input-checkbox) .text-input-checkbox {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

td[align=center], th[align=center] {
  text-align: center !important;
}
td .val-wrap, th .val-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
td .val-wrap .count-val, th .val-wrap .count-val {
  font-size: 14px;
  background: none;
  text-align: center;
}
td .val-wrap .count-val:focus, th .val-wrap .count-val:focus {
  outline: none;
}
td .val-wrap .minus-val, td .val-wrap .plus-val, td .val-wrap input, th .val-wrap .minus-val, th .val-wrap .plus-val, th .val-wrap input {
  width: 35px;
  height: 35px;
  border: 1px solid #C7C7C7;
  background: none;
  border-radius: 50%;
  text-align: center;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
  font-weight: 400;
}
td .val-wrap .minus-val span, td .val-wrap .plus-val span, td .val-wrap input span, th .val-wrap .minus-val span, th .val-wrap .plus-val span, th .val-wrap input span {
  display: inline-block;
  margin-bottom: -2px;
  line-height: 1;
  font-size: 14px;
  vertical-align: middle;
}
td .val-wrap .minus-val.disabled, td .val-wrap .plus-val.disabled, td .val-wrap input.disabled, th .val-wrap .minus-val.disabled, th .val-wrap .plus-val.disabled, th .val-wrap input.disabled {
  opacity: 0.4;
  cursor: no-drop;
}

.yrnri-wrap .bottom-filter {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 26px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .yrnri-wrap .bottom-filter {
    padding: 10px;
  }
}
.yrnri-wrap .bottom-filter ul {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .yrnri-wrap .bottom-filter ul {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
  }
}
.yrnri-wrap .bottom-filter ul li {
  display: inline-block;
  vertical-align: middle;
  height: 36px;
  width: 36px;
  line-height: 36px;
}
@media only screen and (max-width: 767px) {
  .yrnri-wrap .bottom-filter ul li {
    height: 30px;
    width: 30px;
  }
}
.yrnri-wrap .bottom-filter ul li a {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text);
  border-radius: 4px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .yrnri-wrap .bottom-filter ul li a {
    font-size: 12px;
  }
}
.yrnri-wrap .bottom-filter ul li a.active {
  color: var(--secondary);
  background: var(--secondary);
}
.yrnri-wrap .bottom-filter ul li a:hover {
  background: var(--secondary);
}
.yrnri-wrap .bottom-filter ul li.disabled {
  pointer-events: none;
}
.yrnri-wrap .bottom-filter .no-of-results {
  flex: 0 1 auto;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
@media only screen and (max-width: 767px) {
  .yrnri-wrap .bottom-filter .no-of-results {
    flex: 0 1 100%;
    max-width: 100%;
    width: 100%;
    font-size: 12px;
    margin-top: 8px;
  }
}

.variant-section {
  grid-column: span 2;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.variant-section .variant-header {
  background: #000;
  color: #fff;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 14px;
}
.variant-section .variant-row {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-top: 1px solid #eee;
  gap: 10px;
  flex-wrap: wrap;
}
.variant-section .variant-row .storage {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 90px;
}
.variant-section .variant-row .storage input[type=checkbox] {
  transform: scale(1.2);
}
.variant-section .variant-row .storage span {
  font-size: 14px;
  font-weight: 500;
}
.variant-section .variant-row .field {
  display: flex;
  flex-direction: column;
}
.variant-section .variant-row .field label {
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.variant-section .variant-row .field input {
  width: 90px;
  padding: 4px 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
  background: #fafafa;
}
.variant-section .variant-row .field input:focus {
  outline: none;
  border-color: #ccc;
}

.accordion.order {
  border-bottom: 1px solid #F1F1F1;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  background: #fff;
  margin-bottom: 20px;
}
.accordion.order.open .accordion-content {
  max-height: 1000px;
  padding: 15px;
}
.accordion.order .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  background: #f9f9f9 !important;
  border-bottom: 1px solid #F1F1F1;
}
.accordion.order .accordion-header .order-date {
  font-size: 14px;
  color: #777;
  font-weight: 400;
  margin-bottom: 10px;
}
.accordion.order .accordion-header:hover {
  background: #f9f9f9;
}
.accordion.order .accordion-header .toggle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.accordion.order .accordion-content {
  max-height: 0;
  padding: 0 15px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
.accordion.order .accordion-content .order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F1F1F1;
  padding: 10px 0;
}
.accordion.order .accordion-content .item-img {
  width: 80px;
}
.accordion.order .accordion-content .item-img img {
  width: 100%;
  border-radius: 4px;
}
.accordion.order .accordion-content .item-details {
  flex: 1;
  margin-left: 15px;
  font-size: 14px;
  color: #555;
}
.accordion.order .accordion-content .item-details .item-name {
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}
.accordion.order .accordion-content .item-details .item-price {
  font-weight: 600;
  color: #000;
  margin-top: 5px;
}
.accordion.order .accordion-content .item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.accordion.order .accordion-content .item-actions button {
  border: 1px solid #007bff;
  background: transparent;
  color: #007bff;
  border-radius: 4px;
  font-size: 13px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.accordion.order .accordion-content .item-actions.confirmed {
  background: #e6f4ff;
  border-color: #007bff;
}
.accordion.order .accordion-content .item-actions:hover {
  background: #007bff;
  color: #fff;
}
.accordion.order .accordion-content .order-summary {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  font-size: 14px;
  color: #444;
}
.accordion.order .accordion-content .total {
  font-weight: 700;
  color: #000;
}

.accordion {
  border-bottom: 1px solid #F1F1F1;
  overflow: hidden;
}
.accordion.open .accordion-content {
  max-height: 600px;
  padding: 10px 15px 15px;
}
.accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #333;
}
.accordion .accordion-header:hover {
  background: #f9f9f9;
}
.accordion .accordion-header span:first-child {
  font-weight: 500;
}
.accordion .accordion-header .toggle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.accordion .accordion-content {
  max-height: 0;
  padding: 0px 15px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.formField {
  margin: 0 !important;
}

.accordion.order {
  border-bottom: 1px solid #F1F1F1;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  background: #fff;
  margin-bottom: 20px;
}
.accordion.order.open .accordion-content {
  max-height: 1000px;
  padding: 15px;
}
.accordion.order .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  background: #f9f9f9 !important;
  border-bottom: 1px solid #F1F1F1;
}
.accordion.order .accordion-header .order-date {
  font-size: 14px;
  color: #777;
  font-weight: 400;
  margin-bottom: 10px;
}
.accordion.order .accordion-header:hover {
  background: #f9f9f9;
}
.accordion.order .accordion-header .toggle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.accordion.order .accordion-content {
  max-height: 0;
  padding: 0 15px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
.accordion.order .accordion-content .order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F1F1F1;
  padding: 10px 0;
}
.accordion.order .accordion-content .item-img {
  width: 80px;
}
.accordion.order .accordion-content .item-img img {
  width: 100%;
  border-radius: 4px;
}
.accordion.order .accordion-content .item-details {
  flex: 1;
  margin-left: 15px;
  font-size: 14px;
  color: #555;
}
.accordion.order .accordion-content .item-details .item-name {
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}
.accordion.order .accordion-content .item-details .item-price {
  font-weight: 600;
  color: #000;
  margin-top: 5px;
}
.accordion.order .accordion-content .item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.accordion.order .accordion-content .item-actions button {
  border: 1px solid #007bff;
  background: transparent;
  color: #007bff;
  border-radius: 4px;
  font-size: 13px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.accordion.order .accordion-content .item-actions.confirmed {
  background: #e6f4ff;
  border-color: #007bff;
}
.accordion.order .accordion-content .item-actions:hover {
  background: #007bff;
  color: #fff;
}
.accordion.order .accordion-content .order-summary {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  font-size: 14px;
  color: #444;
}
.accordion.order .accordion-content .total {
  font-weight: 700;
  color: #000;
}

.etydk {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 15px;
  border-top: 1px solid #DADADA;
  justify-content: space-between;
}
@media only screen and (max-width: 520px) {
  .etydk {
    gap: 4px;
  }
}
.etydk .owhcjaxdd {
  width: 100%;
}
.etydk .owhcjaxdd ul {
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .etydk .owhcjaxdd ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media only screen and (max-width: 540px) {
  .etydk .owhcjaxdd ul {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 12px;
  }
}
@media only screen and (max-width: 540px) {
  .etydk .owhcjaxdd ul li {
    line-height: 0;
  }
}
.etydk .owhcjaxdd ul li span {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  color: #a5a5a5;
  font-weight: 500;
}
@media only screen and (max-width: 540px) {
  .etydk .owhcjaxdd ul li span {
    margin-bottom: 4px;
  }
}
.etydk .owhcjaxdd ul li p {
  font-size: 13px;
  line-height: 1.2;
  color: var(--text);
  font-weight: 500;
}
.etydk .owhcjaxdd ul li p.ttl-sefw {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
}
@media only screen and (min-width: 767px) {
  .etydk .owhcjaxdd ul li:last-child {
    margin-left: auto;
  }
}
.etydk .lezce, .etydk .kpqhg {
  display: flex;
  align-items: center;
  gap: 53px;
}
@media only screen and (max-width: 991px) {
  .etydk .lezce, .etydk .kpqhg {
    gap: 20px;
  }
}
@media only screen and (max-width: 675px) {
  .etydk .lezce, .etydk .kpqhg {
    width: 100%;
    justify-content: space-between;
  }
}
.etydk .lezce p {
  font-size: 14px;
  line-height: 1.2;
  color: var(--text);
  font-weight: 500;
}
.etydk .xpfsps {
  font-size: 14px;
  line-height: 1.2;
  color: var(--text);
  font-weight: 500;
}
.etydk .ignqi {
  font-weight: 600;
  color: var(--black);
  font-size: 16px;
}/*# sourceMappingURL=dashboard.css.map */