@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.form {
  --inputsize: 48px;
  --labelbefore: var(--text);
  --labelafter: var(--text);
  --borderbefore: var(--black);
  --borderafter: var(--secondary);
  --labelfontbefore: 16px;
  --labelfontafter: 14px;
  --font: 500;
  --inputsize: 42px;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: #838282;
}
.form .form-group::after {
  width: 0;
  background: var(--borderafter);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: none;
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
  height: 2px;
}
.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 13px;
  height: calc(var(--textareaheight) - 13px);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .form-group.file-input input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: pointer;
}
.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize) - var(--borderwidth));
  position: relative;
  --filename: "Attach Resume*";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  --image: url(../../icon/clip-gray.svg) no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: calc(var(--inputsize) - var(--borderwidth));
}
.form .form-group.file-input .file-name::before, .form .form-group.file-input .file-name::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.form .form-group.file-input .file-name::before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize) - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  background: none;
}
.form .form-group.file-input .file-name::after {
  content: "";
  right: 0;
  background: var(--image);
  background-repeat: no-repeat;
  z-index: 1;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
}
.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--selectheight);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
  --paddingleftright: 0;
}
.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: url(../../icon/location-gradient.svg);
  --iconspace: 8px;
}
.custom-select.has-icon::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;
  background: none;
  transition: 0.5s ease;
}
.custom-select.has-icon::after {
  left: 0;
  width: var(--iconsize);
  background-image: var(--iconurl);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
}
.custom-select.has-icon .current {
  padding-left: calc(var(--iconsize) + var(--iconspace));
  padding-right: calc(var(--arrow) + var(--iconsize) + var(--arrowspace) + var(--iconspace));
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright);
  bottom: 0;
  width: var(--arrow);
  background-image: url(../../icon/arrow-down-gray.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.custom-select .current {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow) + var(--arrowspace));
}
.custom-select .current.selected {
  color: var(--color);
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 7;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 8px 16px;
  white-space: break-spaces;
  font-size: 14px;
}
.custom-select .list li.selected {
  background: var(--secondary);
  color: var(--white);
}
.custom-select .list li.selected:hover {
  background: var(--secondary);
  color: var(--white);
}
.custom-select .list li:hover {
  background: #e2e2e2;
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.filter-ul li {
  position: relative;
  --size: 20px;
  display: flex;
  line-height: normal;
  align-items: center;
}
.filter-ul li:has(input:checked) .check-span {
  background: var(--primary);
}
.filter-ul li:has(input:checked) .check-span::before {
  opacity: 1;
}
.filter-ul li input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 2;
}
.filter-ul li .check-span {
  flex: 0 1 auto;
  display: block;
  --size: 20px;
  height: var(--size);
  width: var(--size);
  position: relative;
  padding: 0;
  border-radius: 5px;
  background: #D9D9D9;
  pointer-events: none;
}
.filter-ul li .check-span::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;
}
.filter-ul li p {
  padding-left: 14px;
}
.filter-ul li:not(:last-child) {
  margin-bottom: 10px;
}
.filter-ul li p {
  font-size: 14px;
  color: var(--text);
}

.checkbox-full {
  position: relative;
  --size: 20px;
  display: flex;
  line-height: normal;
  align-items: center;
}
.checkbox-full:has(input:checked) .check-span {
  background: var(--primary);
}
.checkbox-full:has(input:checked) .check-span::before {
  opacity: 1;
}
.checkbox-full input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 2;
}
.checkbox-full .check-span {
  flex: 0 1 auto;
  display: block;
  --size: 20px;
  height: var(--size);
  width: var(--size);
  position: relative;
  padding: 0;
  border-radius: 5px;
  background: #D9D9D9;
  pointer-events: none;
}
.checkbox-full .check-span::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;
}
.checkbox-full p {
  padding-left: 14px;
}

.radio-full {
  position: relative;
  --size: 20px;
  display: flex;
  line-height: normal;
  align-items: center;
}
.radio-full:has(input:checked) .check-span {
  background: var(--primary);
  outline-offset: -4px;
  outline: 2px solid var(--white);
  background: var(--primary);
}
.radio-full input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  z-index: 2;
}
.radio-full .check-span {
  flex: 0 1 auto;
  display: block;
  --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;
}
.radio-full p {
  padding-left: 14px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --headerpadding: 15px;
  --headerheight: 150px;
  --headerfixed: 100px;
  --homecatstrip: 80px;
  --homecatstripfixed: 70px;
  --mobilesearchbar: 45px;
  --footerstrip: 38px;
  --filterstrip: 42px;
  --elementhover:#771D1D;
  --navbgcolor: #612F23;
  --primary: #771D1D;
  --secondary: #EA4A38;
  --secondary2: #1DA9E1;
  --colortext: #0B2369;
  --red: #EA4A38;
  --green: #13BB75;
  --sucgreen: #008000;
  --blue: #2773E5;
  --text: #666666;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #F1F1F1;
  --container: 1280px;
  --containerfluid: 2rem;
  --gradient-a: linear-gradient(90deg, #FFFFFF 40%, #3D3D3D);
  --gradient-b: linear-gradient(90deg, #030735 30%, #444A8F);
}
@media only screen and (max-width: 1152px) {
  :root {
    --containerfluid: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --containerfluid: 15px;
    --headerheight: 100px;
    --headerfixed: 80px;
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --headerheight: 80px;
    --headerfixed: 60px;
  }
}
@media only screen and (max-width: 540px) {
  :root {
    --containerfluid: 10px;
    --headerheight: 70px;
    --headerfixed: 60px;
  }
}

.prime-bg {
  background-color: #030735;
}

.sec-head {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 10px;
  text-transform: uppercase;
  line-height: 1.5;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .sec-head {
    font-size: 18px;
  }
}
@media only screen and (max-width: 540px) {
  .sec-head {
    font-size: 16px;
    line-height: 1.5;
  }
}

.sec-heading {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.sec-pad {
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .sec-pad {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .sec-pad {
    padding: 40px 0;
  }
}

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

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-optical-sizing: auto;
  font-style: normal;
  font-family: "Poppins";
  font-weight: normal;
}

select {
  display: none;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}
a[href].logo {
  display: block;
  line-height: 0;
}
a[href]:not(.btn, .btn2) {
  color: var(--text);
}

svg path {
  transition: 0.5s ease;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1300px) {
  .container {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container {
    padding: 0 13px;
  }
}
@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;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  color: #fff;
}

h1 {
  font-size: 48px;
  line-height: 1.17;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 40px;
  line-height: 1.05;
}

h3 {
  font-size: 36px;
  line-height: 1.06;
}

.heading {
  text-align: center;
  position: relative;
}
.heading h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .heading h2 {
    font-size: 26px;
  }
}
.heading h3 {
  font-size: 20px;
  line-height: 1.282;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.heading.h-large h3, .heading.h-large h2 {
  font-size: 36px;
}
.heading.c-white h3, .heading.c-white h2 {
  color: var(--white);
}
.heading > p {
  margin-top: 10px;
  color: var(--text);
}

.head {
  font-family: "Rubik";
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .head {
    font-size: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .head {
    font-size: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .head {
    font-size: 40px;
  }
}

h4 {
  font-size: 36px;
  line-height: 1.28;
}

h5 {
  font-size: 24px;
  line-height: 1.25;
}
@media only screen and (max-width: 1152px) {
  h5 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}

.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;
}

.grid {
  display: grid;
}

.span-2 {
  grid-column: span(2);
}

.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;
}
.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;
  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;
  transition: 0.5s ease;
}
.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;
  background: none;
  transition: 0.5s ease;
}
.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 img, .item-md .figure video {
  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: 6;
  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: 2;
  }
}
.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) {
  position: absolute;
  top: 0;
  right: 0;
  top: 30px;
  right: 30px;
}
@media only screen and (max-width: 520px) {
  .model .close:not(.btn) {
    top: 20px;
    right: 20px;
  }
}
.model .close:not(.btn) path {
  stroke: var(--black);
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}

.btn, .btn2 {
  height: var(--height);
  line-height: var(--height);
  font-weight: 400;
  border-radius: 25px;
  align-items: center;
  display: inline-flex;
  overflow: hidden;
  color: var(--black);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.5s ease;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
  text-transform: capitalize !important;
}
.btn.w-100, .btn2.w-100 {
  width: 100%;
}

.btn {
  --padding: 18px;
  --height: 36px;
  border-radius: 25px;
  justify-content: center;
  font-weight: 400;
  gap: 10px;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 1.2;
  background: var(--secondary);
  color: var(--white);
  padding: 0 var(--padding);
  transition: 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .btn {
    height: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .btn {
    height: 26px;
    font-size: 12px;
    --padding: 14px;
  }
}
.btn:hover {
  background: var(--primary);
  color: var(--white);
}
.btn:hover path {
  fill: var(--primary);
}
.btn.btn-large, .btn.btn-medium {
  font-size: 16px;
  letter-spacing: 0px;
}
.btn.btn-large {
  --height: 52px;
  --padding: 38px;
}
.btn.btn-medium {
  --height: 45px;
  --padding: 25px;
}
.btn.btn-grad {
  background: linear-gradient(90deg, #FFFFFF, #B9B9B9);
}
.btn.btn-grad:hover {
  background: linear-gradient(270deg, #FFFFFF, #ffffff);
  color: #000;
}
.btn.white {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
.btn.white path {
  fill: var(--black);
}
.btn.white:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.btn.white:hover path {
  fill: var(--white);
}
.btn.full_btn {
  width: 100%;
  border-radius: 5px;
}
.btn.primary-border {
  background: none;
  border: 1px solid #D1D1D1;
  color: var(--primary);
}
.btn.primary-border path {
  fill: var(--primary);
}
.btn.primary-border:hover {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}
.btn.primary-border:hover path {
  fill: var(--white);
}

.btn2 {
  --padding: 18px;
  --height: 36px;
  justify-content: center;
  font-weight: 500;
  gap: 10px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  padding: 0 var(--padding);
}
.btn2:hover {
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--black);
}
.btn2:hover path {
  fill: 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);
}
.form-grid .full {
  grid-column: span var(--item);
}

.banner {
  position: relative;
  position: relative;
}
.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;
  transition: 0.5s ease;
}
.banner::before {
  z-index: 1;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 14%, rgba(0, 0, 0, 0.6) 88%);
}
.banner .bg {
  height: 650px;
  line-height: 0;
}
@media only screen and (max-width: 1366px) {
  .banner .bg {
    height: calc(100vh - var(--headerheight));
  }
}
.banner .bg video, .banner .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
}
.banner .banner-wrapper .heading h2 {
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  color: var(--black);
  padding-bottom: 20px;
}
.banner .banner-wrapper .heading p {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
}

.banner-banner .content h1 {
  font-family: "Rubik";
  font-size: 32px;
  line-height: 1.1875;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.banner-banner .content p {
  margin-top: 18px;
  color: var(--text);
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}
.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.group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 15px;
}
@media only screen and (max-width: 1152px) {
  .swiper-nav.group {
    gap: 0 8px;
  }
}
.swiper-nav.icon-width-auto .swiper-next svg, .swiper-nav.icon-width-auto .swiper-prev svg {
  width: auto;
  height: auto;
}

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

.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 {
  --btnsize: 56px;
  --border: 2px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: none;
}
@media only screen and (max-width: 1024px) {
  .play-btn {
    --btnsize: 50px;
  }
}
@media only screen and (max-width: 675px) {
  .play-btn {
    --btnsize: 45px;
    --border: 1px;
  }
}
.play-btn::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}

.website-content > :first-child {
  margin-top: 0 !important;
}
.website-content > :last-child {
  margin-bottom: 0 !important;
}
.website-content h1, .website-content h2, .website-content h3, .website-content h4, .website-content h5, .website-content h6 {
  color: var(--black);
}
.website-content h1 {
  font-size: 48px;
  margin-bottom: 45px;
  font-family: "Rubik";
  text-align: center;
}
@media only screen and (max-width: 675px) {
  .website-content h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 520px) {
  .website-content h1 {
    font-size: 30px;
  }
}
.website-content h2 {
  font-size: 34px;
}
@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}
.website-content h3 {
  font-size: 28px;
  line-height: 1.21;
}
@media only screen and (max-width: 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}
.website-content h4 {
  font-size: 22px;
}
@media only screen and (max-width: 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}
.website-content h5 {
  font-size: 18px;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}
.website-content h5, .website-content h6 {
  margin: 28px 0 18px;
}
.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  word-spacing: -0.07em;
}
.website-content p b, .website-content li b {
  font-weight: normal;
}
.website-content a {
  color: var(--primary) !important;
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 20px;
}
.website-content ul {
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .website-content ul {
    padding-left: 10px;
  }
}
.website-content ul li {
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 675px) {
  .website-content ul li {
    padding-left: 20px;
  }
}
.website-content ul li:not(:last-child) {
  margin-bottom: 6px;
}
.website-content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
}

@media only screen and (max-width: 675px) {
  .slider-section .container {
    padding-right: 0;
  }
}
.slider-section .upper-sec {
  position: relative;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .slider-section .upper-sec {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 540px) {
  .slider-section .upper-sec {
    margin-bottom: 2.5rem;
  }
}
.slider-section .upper-sec .slider-nav {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .slider-section .upper-sec .slider-nav {
    display: none;
  }
}
.slider-section .upper-sec .slider-nav .swiper-prev {
  margin-right: 22px;
}
.slider-section .upper-sec .heading {
  text-align: center;
}

.lctn {
  font-size: 14px;
  line-height: 1;
  color: var(--text);
  --arrow: 20px;
  --space: 5px;
  position: relative;
  padding-left: calc(var(--arrow) + var(--space));
}
.lctn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  height: var(--arrow);
  width: var(--arrow);
  background-image: url(../../icon/location-gradient.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  transition: 0.5s ease;
  transform-origin: center right;
}
.lctn.clndr {
  color: var(--white);
  --arrow: 17px;
  --space: 12px;
}
.lctn.clndr::before {
  background-image: url(../../icon/calender.svg);
}

.common-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 20px;
}
@media only screen and (max-width: 991px) {
  .common-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 18px;
  }
}
@media only screen and (max-width: 675px) {
  .common-grid {
    grid-template-columns: 100%;
    grid-gap: 10px;
  }
}

.product-col {
  position: relative;
}
.product-col .figure, .product-col figure {
  display: block;
  line-height: 0;
  overflow: hidden;
  position: relative;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
.product-col .figure .add-to, .product-col figure .add-to {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: end;
  opacity: 0;
  transition: 0.5s ease;
}
.product-col .figure .add-to a, .product-col figure .add-to a {
  display: block;
  padding: 11px 20px;
  transition: 0.5s ease;
}
.product-col .figure .add-to a svg, .product-col figure .add-to a svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}
.product-col .figure .add-to a.add2cart, .product-col figure .add-to a.add2cart {
  background-color: #13195F;
}
.product-col .figure .add-to a.add2cart:hover, .product-col figure .add-to a.add2cart:hover {
  background-color: #fff;
}
.product-col .figure .add-to a.add2cart:hover svg path, .product-col figure .add-to a.add2cart:hover svg path {
  fill: var(--primary);
}
.product-col .figure .add-to a.add2wish, .product-col figure .add-to a.add2wish {
  background-color: #030735;
}
.product-col .figure .add-to a.add2wish.active, .product-col figure .add-to a.add2wish.active {
  background-color: #fff;
}
.product-col .figure .add-to a.add2wish.active svg path, .product-col figure .add-to a.add2wish.active svg path {
  fill: var(--primary);
}
.product-col .figure .add-to a.add2wish:hover, .product-col figure .add-to a.add2wish:hover {
  background-color: #fff;
}
.product-col .figure .add-to a.add2wish:hover svg path, .product-col figure .add-to a.add2wish:hover svg path {
  stroke: var(--primary);
}
.product-col .figure img, .product-col figure img {
  width: 100%;
  -o-object-position: cover;
     object-position: cover;
  -o-object-position: top;
     object-position: top;
  transition: 0.5s ease;
  transform-origin: left top;
}
.product-col figcaption {
  padding: 15px 15px 20px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  width: 100%;
  background-color: #F0EBEB;
}
.product-col figcaption h6 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--black);
  padding-bottom: 5px;
}
.product-col figcaption .flex {
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  padding-bottom: 5px;
}
.product-col figcaption .flex .quant {
  border-right: 1px solid var(--text);
  padding-right: 10px;
}
.product-col figcaption .price_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-col figcaption .price_wrapper .mrp {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: line-through;
  color: var(--text);
}
.product-col figcaption .price_wrapper .disct {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #3E8329;
}
.product-col figcaption .price_wrapper .price {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--black);
}
.product-col:hover .add-to {
  opacity: 1;
}
.product-col:hover img {
  transform: scale(1.1);
}
.product-col:hover .figure img, .product-col:hover figure img {
  transform: scale(1.1);
}

.product-col .wishlist-ico, .product-col-2 .wishlist-ico {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.product-col .wishlist-ico img, .product-col .wishlist-ico svg, .product-col-2 .wishlist-ico img, .product-col-2 .wishlist-ico svg {
  width: 15px;
  height: auto;
}
.product-col .wishlist-ico:hover, .product-col .wishlist-ico.is-active, .product-col-2 .wishlist-ico:hover, .product-col-2 .wishlist-ico.is-active {
  background: var(--primary);
}
.product-col .wishlist-ico:hover img, .product-col .wishlist-ico.is-active img, .product-col-2 .wishlist-ico:hover img, .product-col-2 .wishlist-ico.is-active img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(236deg) brightness(103%) contrast(101%);
}
.product-col:hover .wishlist-ico, .product-col-2:hover .wishlist-ico {
  opacity: 1;
  pointer-events: all;
}

.product-col-2, .product-col-3 {
  position: relative;
  position: relative;
}
.product-col-2::before, .product-col-3::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;
  transition: 0.5s ease;
}
.product-col-2 .figure, .product-col-2 figure, .product-col-3 .figure, .product-col-3 figure {
  display: block;
  line-height: 0;
  height: 100%;
  overflow: hidden;
}
.product-col-2 .figure img, .product-col-2 figure img, .product-col-3 .figure img, .product-col-3 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transform-origin: left top;
  transition: 0.5s ease;
}
.product-col-2::before, .product-col-3::before {
  z-index: 1;
}
.product-col-2:hover .figure img, .product-col-2:hover figure img, .product-col-3:hover .figure img, .product-col-3:hover figure img {
  transform: scale(1.1);
}
.product-col-2 figcaption, .product-col-3 figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.product-col-2::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.product-col-2 figcaption {
  text-align: center;
  padding: 0 2rem 46px;
}
.product-col-2 figcaption .prdt-nm, .product-col-2 figcaption .prd-price {
  display: block;
  display: block;
  color: var(--white);
  font-size: 18px;
}
.product-col-2 figcaption .prdt-nm {
  margin-bottom: 8px;
}

.product-col-3::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
}
.product-col-3:hover .figure img, .product-col-3:hover figure img {
  transform: scale(1.05);
}
.product-col-3 figure img, .product-col-3 .figure img {
  aspect-ratio: 0.9;
}
.product-col-3 figcaption {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 3.5rem;
  transition: 0.5s ease;
  --btnheight: 36px;
  --titlepad: 30px;
}
.product-col-3 figcaption .ico {
  line-height: 0;
  margin-bottom: 20px;
  transform: translateY(30px) scale(0.4);
  transition: 0.5s ease;
  opacity: 0;
}
.product-col-3 figcaption h6 {
  font-family: "Rubik";
  color: var(--white);
  font-size: 22px;
  line-height: 1.283;
  text-transform: uppercase;
  transition: 0.6s ease;
}
.product-col-3 .xbjs {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: 0.6s ease;
}
.product-col-3 .xbjs .btn {
  --height: var(--btnheight);
}
.product-col-3:hover {
  transform: translateY(0px);
}
.product-col-3:hover figcaption .ico {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
.product-col-3:hover figcaption h6 {
  padding-bottom: calc(var(--btnheight) + var(--titlepad));
}
.product-col-3:hover figcaption .xbjs {
  opacity: 1;
  transform: translateY(0px) scale(1);
}

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

.gradient-head {
  display: inline-block;
  text-transform: initial;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: var(--gradient-a);
}

.whitetxt {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border-radius: 50%;
  background: var(--primary);
  border-color: var(--primary);
  height: 17px;
  width: 17px;
  border: none !important;
  top: 50%;
  translate: 0 -50%;
}
.ui-state-default:focus, .ui-widget-content .ui-state-default:focus, .ui-widget-header .ui-state-default:focus, .ui-button:focus, html .ui-button.ui-state-disabled:hover:focus, html .ui-button.ui-state-disabled:active:focus {
  outline: none;
}

.ui-slider-horizontal {
  height: 2px;
  border: none !important;
}

.ui-widget-content {
  background: #CECECE;
  border: none !important;
}

.ui-widget-header {
  background: var(--primary);
}

.kmr-select-wrap {
  position: relative;
  display: inline-block;
  --labelheight: 45px;
  --liheight: 34px;
  --boxsize: calc(var(--liheight) - 14px);
  --arrowsize: 16px;
  --space: 11px;
}
.kmr-select-wrap .label {
  color: var(--white);
  height: var(--labelheight);
  line-height: var(--labelheight);
  background-image: url(../../icon/arrow-down-white.svg);
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-position-x: 100%;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize) + var(--space));
  cursor: pointer;
  caret-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.kmr-select-wrap.active {
  --btn: 10px;
}
.kmr-select-wrap.active.price_select .kmr-select-menu .upper-sec .reset-btn {
  display: block;
}
.kmr-select-wrap.slt-rgt .kmr-select-menu {
  right: 0;
  left: auto;
}
.kmr-select-wrap.color-select .kmr-select-menu li .in-bx {
  border-color: #ccc;
  border-radius: 50%;
}
.kmr-select-wrap.price_select .kmr-select-menu {
  padding: 20px;
  width: 325px;
}
.kmr-select-wrap.price_select .kmr-select-menu .upper-sec {
  display: flex;
}
.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn {
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn svg {
  width: 15px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
}
.kmr-select-wrap.price_select .kmr-select-menu h6 {
  flex: 1;
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
}
.kmr-select-wrap.price_select .product-range-slider-wrap {
  margin: 30px 0 40px;
}
.kmr-select-wrap.price_select .price-range-input-wrap {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--text);
}
.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input {
  flex: 1;
  border: 1px solid #E0E0E0;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 30px;
  color: var(--text);
  gap: 10px;
}
.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input {
  border: none;
  width: 100%;
  color: var(--text);
}
.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input:focus {
  outline: none;
}
.kmr-select-wrap .kmr-select-menu {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 100%;
  background: var(--white);
  width: 260px;
  padding: 20px 0;
  display: none;
  max-height: 244px;
  overflow-y: auto;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar {
  width: 6px;
  background: none;
  height: 6px;
}
.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-track {
  box-shadow: none;
}
.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 10px;
}
.kmr-select-wrap .kmr-select-menu:has(input[type=radio]) li .in-bx {
  border-radius: 50%;
}
.kmr-select-wrap .kmr-select-menu:has(input[type=radio]) li .in-bx::before {
  display: none;
}
.kmr-select-wrap .kmr-select-menu:has(input[type=radio]):has(input:checked) li .in-bx {
  outline: 5px solid var(--white);
  outline-offset: -10px;
}
.kmr-select-wrap .kmr-select-menu li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--liheight);
  padding: 0 14px;
}
.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx {
  background: var(--primary);
  transition: 0.4s ease;
}
.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx::before {
  opacity: 1;
}
.kmr-select-wrap .kmr-select-menu li .in-bx {
  height: var(--boxsize);
  width: var(--boxsize);
  border: 1px solid var(--black);
  border-radius: 3px;
  transition: 0s ease;
  position: relative;
}
.kmr-select-wrap .kmr-select-menu li .in-bx::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: url(../../icon/tick-white.svg);
  transition: 0.5s ease;
}
.kmr-select-wrap .kmr-select-menu li .in-bx::before {
  background-repeat: no-repeat;
  background-size: 48%;
  background-position: center center;
  opacity: 0;
}
.kmr-select-wrap .kmr-select-menu li span {
  display: block;
  flex: 1;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}
.kmr-select-wrap .kmr-select-menu li input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}

@media only screen and (max-width: 991px) {
  .breadcrumps {
    display: none;
  }
}
.breadcrumps li {
  display: inline-block;
  vertical-align: middle;
}
.breadcrumps li a {
  color: var(--text);
  font-size: 14px;
}
@media only screen and (max-width: 520px) {
  .breadcrumps li a {
    font-size: 12px;
    text-overflow: ellipsis;
  }
}
.breadcrumps li a.active {
  color: var(--black);
}
.breadcrumps li:not(:last-child) {
  position: relative;
  padding-right: 20px;
}
@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:last-child) {
    padding-right: 8px;
  }
}
.breadcrumps li:not(:last-child)::before {
  content: ">";
  position: absolute;
  left: 100%;
  top: 50%;
  translate: 0 -50%;
  font-size: 12px;
  font-family: monospace;
  color: var(--text);
}
.breadcrumps li:not(:first-child) {
  padding-left: 20px;
}
@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:first-child) {
    padding-left: 8px;
  }
}

[data-scrollTo] {
  cursor: pointer;
}

.fancybox__container {
  --fancybox-bg: var(--black);
}

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

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

.orange-color {
  color: orange !important;
}

em {
  font-style: normal;
}

.mt-hdrfxd {
  margin-top: var(--headerfixed);
}

.w-full {
  width: 100%;
}

.sm-block {
  display: none;
}
@media only screen and (max-width: 540px) {
  .sm-block {
    display: block;
  }
}

.sm-none {
  display: block;
}
@media only screen and (max-width: 540px) {
  .sm-none {
    display: none;
  }
}

.md-block {
  display: none;
}
@media only screen and (max-width: 768px) {
  .md-block {
    display: block;
  }
}

.md-none {
  display: block;
}
@media only screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.lg-block {
  display: none;
}
@media only screen and (max-width: 991px) {
  .lg-block {
    display: block;
  }
}

.lg-none {
  display: block;
}
@media only screen and (max-width: 991px) {
  .lg-none {
    display: none;
  }
}

.product_not_found {
  width: 100%;
  height: 100%;
  position: relative;
}
.product_not_found .not_wrapper {
  padding: 30px 20px;
  width: 450px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}
.product_not_found .not_wrapper img {
  width: 80px;
  animation: wiggle 2s ease-in-out infinite;
  transform-origin: center;
}
.product_not_found .not_wrapper p {
  font-size: 18px;
  padding-top: 20px;
}

@keyframes wiggle {
  0% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(3deg);
  }
}
.animate-button {
  border-radius: 25px;
  border-width: 2px;
  padding: 7px 24px;
  gap: 10px;
  border: 1px solid var(--primary);
  position: relative;
  transition: all ease 0.4s;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.animate-button:hover::after {
  bottom: 0;
  border-radius: 0;
  transition: all ease 0.4s;
}
.animate-button::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--primary);
  left: 0;
  bottom: -100%;
  border-radius: 50%;
}
.animate-button:hover a {
  color: var(--white);
}
.animate-button a {
  transition: 0.3s ease-in-out;
  border-radius: 25px;
  font-family: Poppins;
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  text-align: center;
  text-decoration: none;
  color: var(--black);
  z-index: 9;
  position: relative;
}

.wishlist-fill svg path {
  fill: var(--primary);
}

.information-pop {
  max-width: 690px;
  background: var(--white);
  transition: 0.7s ease;
  z-index: 9999;
  top: 50%;
  left: 50%;
  bottom: auto;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transform-origin: left center;
  scale: 0;
  max-height: 70vh;
  overflow: auto;
}
@media only screen and (max-width: 540px) {
  .information-pop {
    max-width: 90%;
  }
}
.information-pop::before {
  z-index: 2;
}
.information-pop.is-open {
  scale: 1;
}
.information-pop .close {
  display: flex;
  align-items: center;
  gap: 0 10px;
  top: 40px;
  right: 40px;
}
@media only screen and (max-width: 675px) {
  .information-pop .close {
    top: 20px;
    right: 20px;
  }
}
.information-pop .close path {
  stroke: var(--black);
}
.information-pop .model-body {
  padding: 40px 42px 20px;
  height: 100%;
  overflow-y: auto;
}
@media only screen and (max-width: 675px) {
  .information-pop .model-body {
    padding: 40px 25px 50px;
  }
}
.information-pop .model-body .flex-box {
  display: flex;
  justify-content: start;
  gap: 30px;
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body .flex-box {
    display: block;
  }
}
.information-pop .model-body .flex-box .flex-box-item:first-child {
  width: 20%;
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body .flex-box .flex-box-item:first-child {
    width: 100%;
  }
}
.information-pop .model-body .flex-box .flex-box-item:first-child .user-image {
  position: sticky;
  top: 0;
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body .flex-box .flex-box-item:first-child .user-image {
    max-width: 20%;
    margin: auto;
  }
}
.information-pop .model-body .flex-box .flex-box-item:first-child .social-icon {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body .flex-box .flex-box-item:first-child .social-icon {
    margin-top: 0;
  }
}
.information-pop .model-body .flex-box .flex-box-item:last-child {
  width: 70%;
}
@media only screen and (max-width: 540px) {
  .information-pop .model-body .flex-box .flex-box-item:last-child {
    width: 100%;
    text-align: center;
  }
}
.information-pop .model-body .flex-box .flex-box-item:last-child .user-name {
  font-size: 18px;
}
.information-pop .model-body .flex-box .flex-box-item:last-child .degination {
  border-bottom: 1px solid rgba(102, 102, 102, 0.5490196078);
  padding-bottom: 4px;
  margin-bottom: 15px;
}
.information-pop .model-body .flex-box .flex-box-item:last-child .degination p {
  font-size: 12px;
}
.information-pop .model-body .flex-box .flex-box-item:last-child .description-text p {
  color: var(--text);
  font-size: 12px;
  text-align: justify;
}

@keyframes color-blink {
  0%, 100% {
    background-color: var(--secondary);
    color: #612F23;
  }
  50% {
    background-color: var(--navbgcolor);
    color: #fff;
  }
}
#blinking-button {
  animation: color-blink 2s infinite;
}

#blinking-button:hover {
  animation-play-state: paused;
  animation: none;
  background: white;
}

@keyframes blink {
  0% {
    opacity: 1;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(0.8);
  }
}
header {
  position: fixed;
  background-color: var(--white);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  transition: 0.5s ease;
  height: var(--headerheight);
}
header .header-container {
  height: 100%;
  transition: 0.5s ease;
  box-shadow: 0 2px 5px 2px rgba(97, 47, 35, 0.28);
}
@media only screen and (max-width: 991px) {
  header .header-container {
    padding-bottom: 5px;
  }
}
header .header-container .upper-container {
  height: 64%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px var(--containerfluid);
  transition: 0.5s ease;
  gap: 2rem;
}
@media only screen and (max-width: 991px) {
  header .header-container .upper-container {
    height: 100%;
  }
}
@media only screen and (max-width: 540px) {
  header .header-container .upper-container {
    padding: 5px 0;
    flex-wrap: wrap;
    gap: 0;
  }
  header .header-container .upper-container .colA {
    padding: 0 15px;
  }
  header .header-container .upper-container .colB {
    width: 100%;
    background: white;
    order: 2;
    flex: 1;
    min-width: 100%;
  }
  header .header-container .upper-container .colB .search_wrapper {
    width: 100%;
    padding: 0 7px;
  }
  header .header-container .upper-container .colB .search_wrapper .search_wrap {
    width: 100%;
  }
  header .header-container .upper-container .colB .search_wrapper .search_wrap .search_input_wrap {
    width: 100% !important;
  }
  header .header-container .upper-container .colC {
    padding: 0 15px;
  }
}
header .header-container .upper-container .colA, header .header-container .upper-container .colB, header .header-container .upper-container .colC {
  height: 100%;
  display: flex;
}
header .header-container .upper-container .colC ul li a {
  color: var(--black);
  font-weight: 500;
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
}
header .header-container .upper-container .colC ul li:nth-child(2) {
  border-right: 1px solid var(--text);
  padding-right: 20px;
}
@media only screen and (max-width: 991px) {
  header .header-container .upper-container .colC ul li:nth-child(2) {
    display: none;
  }
}
header .header-container .upper-container .colC ul li:first-child a {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
}
header .header-container .upper-container .colC .animate-button {
  padding: 0px 0;
}
@media only screen and (max-width: 745px) {
  header .header-container .upper-container .colC .animate-button {
    display: none;
  }
}
header .header-container .upper-container .colC .animate-button:hover a {
  color: var(--white);
}
header .header-container .upper-container .colC .animate-button a {
  padding: 10px 21px;
}
header .header-container .upper-container .colB {
  flex: 0.7;
  justify-content: center;
}
@media only screen and (max-width: 540px) {
  header .header-container .upper-container .colB {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  }
}
header .header-container .upper-container .colB .search_wrapper {
  display: flex;
  align-items: center;
}
header .header-container .upper-container .colB .search_wrapper ::-moz-placeholder {
  color: var(--text);
}
header .header-container .upper-container .colB .search_wrapper ::placeholder {
  color: var(--text);
}
header .header-container .upper-container .colB .search_wrapper .search_wrap {
  position: relative;
  transition: 0.5s ease;
}
header .header-container .upper-container .colB .search_wrapper .search_wrap.search_wrap_active .search_input_wrap {
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_input_wrap {
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px 0 15px;
  background: var(--white);
  width: 400px;
  transition: 0.5s ease;
  border-radius: 25px;
  border: 1px solid var(--text);
}
@media only screen and (max-width: 1060px) {
  header .header-container .upper-container .colB .search_wrapper .search_wrap .search_input_wrap {
    width: 260px;
  }
}
@media only screen and (max-width: 768px) {
  header .header-container .upper-container .colB .search_wrapper .search_wrap .search_input_wrap {
    height: auto;
    border-radius: 5px;
  }
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_input_wrap input {
  flex: 1;
  width: 100%;
  border: none;
  background: none;
  outline: none;
  padding: 14px 14px 14px 0;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  header .header-container .upper-container .colB .search_wrapper .search_wrap .search_input_wrap input {
    padding: 7px 0;
    font-size: 12px;
  }
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_input_wrap .search_btn {
  flex: 0 1 auto;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  line-height: 0;
  background-color: var(--secondary);
}
@media only screen and (max-width: 768px) {
  header .header-container .upper-container .colB .search_wrapper .search_wrap .search_input_wrap .search_btn {
    height: 25px;
    width: 25px;
  }
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_input_wrap .search_btn img {
  vertical-align: middle;
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  header .header-container .upper-container .colB .search_wrapper .search_wrap .search_input_wrap .search_btn img {
    width: 13px;
    height: 13px;
  }
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_dropdown_menu {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  background: var(--white);
  border: 1px solid var(--text);
  border-top-color: rgba(204, 204, 204, 0.5803921569);
  box-shadow: rgba(149, 157, 165, 0.2) 1px 20px 24px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 85vh;
  overflow: auto;
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_dropdown_menu::-webkit-scrollbar {
  width: 5px;
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_dropdown_menu::-webkit-scrollbar-track {
  box-shadow: unset;
  background: #fff;
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_dropdown_menu::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_dropdown_menu .dropdown_wrap {
  padding: 15px 10px;
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_dropdown_menu .dropdown_wrap .searched_pro {
  display: flex;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_dropdown_menu .dropdown_wrap .searched_pro img {
  width: 30%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_dropdown_menu .dropdown_wrap .searched_pro .info {
  flex: 1;
  padding-left: 15px;
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_dropdown_menu .dropdown_wrap .searched_pro .info p {
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
  color: var(--text);
}
@media only screen and (max-width: 540px) {
  header .header-container .upper-container .colB .search_wrapper .search_wrap .search_dropdown_menu .dropdown_wrap .searched_pro .info p {
    font-size: 12px;
    line-height: 17px;
    font-weight: 500;
    color: var(--text);
  }
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_dropdown_menu .dropdown_wrap .searched_pro .info p.pro_price {
  margin-top: 8px;
  color: var(--black);
  font-size: 14px;
}
header .header-container .upper-container .colB .search_wrapper .search_wrap .search_dropdown_menu .dropdown_wrap .searched_pro .info p.pro_price span {
  margin-right: 5px;
  text-decoration: line-through;
}
header .header-container .upper-container .colA {
  flex: 0 1 auto;
}
header .header-container .upper-container .colA .logo {
  height: 100%;
  width: 100%;
}
header .header-container .upper-container .colA .logo img {
  width: 100%;
  height: 100%;
}
header .header-container .upper-container .colC {
  flex: 1;
  display: flex;
  justify-content: end;
  align-items: center;
}
header .header-container .upper-container .colC > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 540px) {
  header .header-container .upper-container .colC > ul {
    gap: 13px;
  }
}
header .header-container .upper-container .colC > ul > li.my-account {
  position: relative;
  z-index: 1;
  --triangle: 15px;
}
header .header-container .upper-container .colC > ul > li.my-account:hover .my-acnt-dropdown {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
header .header-container .upper-container .colC > ul > li.my-account .my-acnt-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  transform: perspective(2000px) translate3d(0px, 0px, 50px) rotateX(-90deg) scale3d(0.86, 0.75, 1) translateY(50px);
  transform-origin: top;
  transition: 0.5s ease;
  opacity: 0;
}
header .header-container .upper-container .colC > ul > li.my-account .my-acnt-dropdown ul {
  background: var(--white);
  padding: 10px 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
  position: relative;
}
header .header-container .upper-container .colC > ul > li.my-account .my-acnt-dropdown ul::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  translate: -50% 0;
  width: 0;
  height: 0;
  border-left: var(--triangle) solid transparent;
  border-right: var(--triangle) solid transparent;
  border-bottom: 20px solid #fff;
}
header .header-container .upper-container .colC > ul > li.my-account .my-acnt-dropdown ul li {
  display: block;
  vertical-align: middle;
  line-height: 0;
  white-space: nowrap;
}
header .header-container .upper-container .colC > ul > li.my-account .my-acnt-dropdown ul li a {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--text);
  transition: 0.5s ease;
}
header .header-container .upper-container .colC > ul > li.my-account .my-acnt-dropdown ul li a:hover {
  color: var(--elementhover);
}
header .header-container .upper-container .colC > ul > li button.ham-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--elementhover);
}
header .header-container .upper-container .colC > ul > li button.ham-btn .lines span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--elementhover);
  transition: 0.5s ease;
}
header .header-container .upper-container .colC > ul > li button.ham-btn .lines span:not(:last-child) {
  margin-bottom: 6px;
}
header .header-container .upper-container .colC > ul > li:has(.dot-noti) {
  position: relative;
}
header .header-container .upper-container .colC > ul > li:has(.dot-noti) span {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -6px;
  top: 0;
  color: var(--white);
  font-size: 12px;
  pointer-events: none;
}
header .header-container .upper-container .colC > ul > li a {
  padding: 5px 0;
  transition: 0.5s ease;
}
header .header-container .upper-container .colC > ul > li a:hover {
  color: var(--elementhover);
}
header .header-container .upper-container .colC > ul > li a:not(.sm-block) {
  display: flex;
  align-items: center;
  gap: 5px;
}
header .header-container .upper-container .colC > ul > li a svg {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 540px) {
  header .header-container .upper-container .colC > ul > li a svg {
    width: 20px;
    height: 20px;
  }
}
header .header-container .lower-container {
  outline-style: solid;
  outline-color: var(--navbgcolor);
  height: 34%;
  background-color: var(--navbgcolor);
}
@media only screen and (max-width: 991px) {
  header .header-container .lower-container {
    display: none;
  }
}
header .header-container .lower-container .custom-nav {
  display: flex;
  list-style: none;
  align-items: center;
  border-top: 2px dashed rgba(255, 255, 255, 0.28);
  border-bottom: 2px dashed rgba(255, 255, 255, 0.28);
}
header .header-container .lower-container .left-item {
  margin-right: auto;
}
header .header-container .lower-container .right-item a {
  padding: 10px 30px;
  border-radius: 3px;
}
header .header-container .lower-container .right-item a:hover {
  background: var(--white);
  color: var(--primary);
}
header .header-container .lower-container .resDrop {
  padding: 10px 30px;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
header .header-container .lower-container .resDrop a span img {
  width: 15px;
}
header .header-container .lower-container .resDrop .dropdown-menu {
  height: auto !important;
  width: 210px !important;
  padding: 10px 0 0 0;
}
header .header-container .lower-container .resDrop .dropdown-menu li {
  padding: 10px 30px 10px 0px;
  transition: 0.5s ease;
}
header .header-container .lower-container .resDrop .dropdown-menu li:hover {
  padding-left: 4px;
}
header .header-container .lower-container > ul {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0px var(--containerfluid);
}
header .header-container .lower-container > ul > li:first-child {
  display: flex;
  justify-content: space-between;
  border-radius: 3px;
}
header .header-container .lower-container > ul > li:first-child > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
}
header .header-container .lower-container > ul > li {
  transition: 0.5s ease;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
header .header-container .lower-container > ul > li.hasDropdown.active {
  background-color: var(--white);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
header .header-container .lower-container > ul > li.hasDropdown.active a {
  color: var(--primary);
}
header .header-container .lower-container > ul > li.hasDropdown.active a svg path {
  fill: var(--primary);
}
header .header-container .lower-container > ul > li.hasDropdown:hover .dropdown-menu {
  transform: translateY(0px);
  opacity: 1;
  pointer-events: all;
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu {
  position: absolute;
  background: var(--white);
  top: 100%;
  width: -moz-fit-content;
  width: fit-content;
  height: 345px;
  overflow-y: auto;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  left: 0%;
  transform: translateY(30px);
  transform-origin: top;
  transition: 0.4s ease;
  pointer-events: none;
  opacity: 0;
  border-bottom: 5px solid #EA4A38;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-width: 5px;
  overflow: hidden;
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu::-webkit-scrollbar {
  width: 8px;
  background: none;
  height: 8px;
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu::-webkit-scrollbar-track {
  box-shadow: none;
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu::-webkit-scrollbar {
  width: 4px;
  height: 3px;
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu .dropdown-menu-wrap {
  width: 1179px;
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu .dropdown-menu-wrap .flex-box {
  display: flex;
  justify-content: start;
  align-items: center;
  max-width: 1090px;
  margin: 50px auto 0;
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu .dropdown-menu-wrap .flex-box a:hover .content-img img {
  transform: scale(1.05);
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu .dropdown-menu-wrap .flex-box .flex-item {
  display: block;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 240px;
  position: relative;
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu .dropdown-menu-wrap .flex-box .flex-item .content-img {
  width: 100%;
  padding: 30px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu .dropdown-menu-wrap .flex-box .flex-item .title {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu .dropdown-menu-wrap .flex-box .flex-item .title p {
  color: #8B4633;
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu .btn-div {
  max-width: 1090px;
  margin: 30px auto 0;
  display: none;
}
header .header-container .lower-container > ul > li.hasDropdown .dropdown-menu .btn-div a {
  color: var(--white);
}
header .header-container .lower-container > ul > li > a {
  display: inline-block;
  color: #fff;
  transition: 0.5s ease;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  position: relative;
}

@media only screen and (max-width: 991px) {
  header.header-fixed {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}
header.header-fit {
  transition: 0.5s ease;
}
header.header-fit::after {
  height: 100%;
}
header.header-fit .header-container .colA .logo {
  transition: none !important;
}
header.header-shadow {
  box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
}

.product-size-pop {
  max-width: 933px;
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
}
.product-size-pop.is-open {
  transform: translateX(0%);
}
.product-size-pop .model-body {
  padding: 56px 41px;
  height: 100%;
  overflow-y: auto;
}
.product-size-pop .model-body::-webkit-scrollbar {
  width: 6px;
  background: none;
  height: 6px;
}
.product-size-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.product-size-pop .model-body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body {
    padding: 51px 10px 30px;
  }
}
.product-size-pop .model-body .upper-sopku {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .upper-sopku {
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }
}
.product-size-pop .model-body .upper-sopku figure {
  width: 107px;
  line-height: 0;
}
.product-size-pop .model-body .upper-sopku figure img {
  width: 100%;
}
.product-size-pop .model-body .upper-sopku figcaption {
  flex: 1;
  padding-left: 34px;
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .upper-sopku figcaption {
    padding-left: 0;
  }
}
.product-size-pop .model-body .upper-sopku figcaption .title-lctpr {
  font-size: 24px;
  line-height: 1.2;
  color: var(--black);
  max-width: 407px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .upper-sopku figcaption .title-lctpr {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz li {
  display: inline-block;
  vertical-align: middle;
}
.product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz li:not(:last-child) {
  margin-right: 25px;
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz li:not(:last-child) {
    margin-right: 6px;
  }
}
.product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .price-bbjvz {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .price-bbjvz {
    font-size: 16px;
  }
}
.product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .price-bbjvz.mrp {
  color: #666666;
  text-decoration: line-through;
}
.product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .price-fvyrq {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #666666;
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .price-fvyrq {
    font-size: 16px;
  }
}
.product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .discount-lsirg {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--colortext);
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .discount-lsirg {
    font-size: 14px;
  }
}
.product-size-pop .model-body .upper-sopku .region {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
}
.product-size-pop .model-body .upper-sopku .region label {
  position: relative;
}
.product-size-pop .model-body .upper-sopku .region label::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 2px;
  background-image: url(/assets/icon/globe.svg);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 20px;
}
.product-size-pop .model-body .upper-sopku .region .custom-select {
  width: 60px;
}
.product-size-pop .model-body .upper-sopku .region .custom-select .current {
  text-align: center;
}
.product-size-pop .model-body .upper-sopku .region .custom-select .list {
  border-radius: 0;
}
.product-size-pop .model-body .upper-sopku .region .custom-select .list li {
  padding: 8px 16px;
}
.product-size-pop .model-body .drsgu-tab-nav {
  display: flex;
  margin-bottom: 28px;
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .drsgu-tab-nav {
    margin-bottom: 20px;
  }
}
.product-size-pop .model-body .drsgu-tab-nav li {
  flex: 1;
  color: var(--text);
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 4px;
  line-height: 1.2;
  padding: 10px;
  border-bottom: 2px solid #E1DCE1;
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .drsgu-tab-nav li {
    font-size: 11px;
    letter-spacing: 2px;
    padding: 5px;
  }
}
.product-size-pop .model-body .drsgu-tab-nav li.active {
  color: var(--colortext);
  border-color: var(--colortext);
}
.product-size-pop .model-body .drsgu-tab-nav-content {
  margin-bottom: 50px;
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .drsgu-tab-nav-content {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .product-size-pop .model-body .drsgu-tab-nav-content .table-div {
    overflow-x: auto;
  }
}
.product-size-pop .model-body .drsgu-tab-nav-content .table-div table {
  width: 100%;
  border: 0;
  border-spacing: 0;
}
.product-size-pop .model-body .drsgu-tab-nav-content .table-div table th, .product-size-pop .model-body .drsgu-tab-nav-content .table-div table td {
  padding: 10px;
}
.product-size-pop .model-body .drsgu-tab-nav-content .table-div table th {
  background: #F1F1F1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 200;
  font-size: 12px;
}
.product-size-pop .model-body .drsgu-tab-nav-content .table-div table td {
  color: var(--text);
  text-align: center;
  font-size: 14px;
}
.product-size-pop .model-body .drsgu-tab-nav-content .table-div table tbody tr {
  position: relative;
}
.product-size-pop .model-body .drsgu-tab-nav-content .table-div table tbody tr:has(input:checked) td {
  color: var(--black);
}
.product-size-pop .model-body .drsgu-tab-nav-content .table-div table tbody tr:has(input:checked) td .check-dot {
  background: var(--primary);
  outline-offset: -4px;
  outline: 2px solid var(--white);
}
.product-size-pop .model-body .drsgu-tab-nav-content .table-div table tbody tr td {
  border-bottom: 1px solid #E7E7E8;
}
.product-size-pop .model-body .drsgu-tab-nav-content .table-div table tbody tr td .check-dot {
  --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;
}
.product-size-pop .model-body .drsgu-tab-nav-content .table-div table tbody tr input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.product-size-pop .model-body .drsgu-tab-nav-content .size-chart-img {
  display: block;
  margin: 0 auto;
}
.product-size-pop .model-body .drsgu-tab-nav-content .measure-div {
  width: 100%;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  grid-gap: 30px;
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .drsgu-tab-nav-content .measure-div {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-size-pop .model-body .drsgu-tab-nav-content .measure-div .colA {
  width: 100%;
}
.product-size-pop .model-body .drsgu-tab-nav-content .measure-div .colA .apparel-layout {
  width: 100%;
  margin-bottom: 20px;
}
.product-size-pop .model-body .drsgu-tab-nav-content .measure-div .colA .item-md figcaption {
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  bottom: unset;
  right: unset;
}
.product-size-pop .model-body .drsgu-tab-nav-content .measure-div .colB p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.product-size-pop .model-body .drsgu-tab-nav-content .measure-div .colB p.discl {
  color: var(--black);
  margin-bottom: 30px;
}
.product-size-pop .model-body .drsgu-tab-nav-content .measure-div .colB h3 {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--black);
  font-family: "Rubik";
}
.product-size-pop .model-body .btn-wrap-wvguf {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  display: none;
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .btn-wrap-wvguf {
    gap: 20px;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .product-size-pop .model-body .btn-wrap-wvguf span {
    font-size: 12px;
  }
}
.product-size-pop .model-body .btn-wrap-wvguf > * {
  flex: 1;
}

.login-pop {
  max-width: 550px;
  background: var(--white);
  right: 0;
  transform: translateX(100%);
  transition: 0.7s ease;
  background: var(--white);
}
.login-pop.is-open {
  transform: translateX(0%);
}
.login-pop .bg-gradient {
  position: relative;
}
.login-pop .bg-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #FFFFFF 67%, #FFE2DB 100%);
  z-index: -1;
}
.login-pop .close {
  top: 25px;
  right: 25px;
}
@media only screen and (max-width: 675px) {
  .login-pop .close {
    top: 20px;
    right: 20px;
  }
}
.login-pop .close path {
  stroke: var(--black);
}
.login-pop .model-body {
  padding: 75px 95px 50px;
  height: 100%;
  overflow-y: auto;
}
.login-pop .model-body::-webkit-scrollbar {
  width: 6px;
  background: none;
  height: 6px;
}
.login-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.login-pop .model-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 25px;
}
@media only screen and (max-width: 675px) {
  .login-pop .model-body {
    padding: 40px 25px 50px;
  }
}
.login-pop .model-body .title {
  margin-bottom: 4.5rem;
}
.login-pop .model-body .title .ico {
  width: 70px;
  line-height: 0;
  margin: 0 auto 30px;
}
.login-pop .model-body .title .ico img {
  width: 100%;
}
.login-pop .model-body .title h4 {
  text-align: center;
  color: var(--primary);
  font-family: "Rubik";
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}
.login-pop .model-body .form-group-login {
  border-bottom: 1px solid var(--text);
  display: flex;
  position: relative;
  align-items: center;
  color: var(--text);
  font-family: Rubik;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.login-pop .model-body .form-group-login .wefeewf {
  position: absolute;
  left: 0;
  right: 0;
  color: red;
  font-weight: bold;
  font-size: 14px;
  top: calc(100% + 10px);
}
.login-pop .model-body .form-group-login .mobile-input, .login-pop .model-body .form-group-login .dial-code {
  border: none;
  width: 100%;
  height: 42px;
  color: var(--text);
}
.login-pop .model-body .form-group-login .mobile-input:focus, .login-pop .model-body .form-group-login .dial-code:focus {
  outline: none;
}
.login-pop .model-body .form-group-login .dial-code {
  flex: 0;
  min-width: 20px;
  caret-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-pop .model-body .form-group-login .dial-code svg {
  width: 100%;
  height: auto;
}
.login-pop .model-body .form-group-login .mobile-input {
  flex: 1;
  color: var(--text);
  font-family: Rubik;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.login-pop .model-body .sbmt-btn-div {
  margin: 55px 0 70px;
  text-align: center;
}
.login-pop .model-body .sbmt-btn-div button {
  border-radius: 25px;
  padding: 22px 110px;
  gap: 10px;
}
.login-pop .model-body .split-sec {
  overflow: hidden;
}
.login-pop .model-body .split-sec p {
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: var(--text);
  font-weight: 500;
}
.login-pop .model-body .split-sec p::before, .login-pop .model-body .split-sec p::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 200px;
  height: 1px;
  background: #ECECEC;
}
.login-pop .model-body .split-sec p::before {
  left: calc(100% + 12px);
}
.login-pop .model-body .split-sec p::after {
  right: calc(100% + 12px);
}
.login-pop .model-body .btm-social-wrp {
  display: flex;
  align-items: center;
  gap: 0 30px;
  margin-top: 40px;
}
.login-pop .model-body .btm-social-wrp .btn {
  background-color: transparent;
  border: 1px solid var(--text);
  color: var(--text);
}
.login-pop .model-body .btm-social-wrp .btn:hover {
  border-color: var(--primary);
  color: var(--white);
  background-color: var(--primary);
}
.login-pop .model-body .btm-social-wrp .btn:hover svg path {
  fill: var(--white);
}
.login-pop .model-body .btm-social-wrp .btn svg path {
  fill: var(--text);
}
.login-pop .model-body .btm-social-wrp > * {
  flex: 1;
}
.login-pop .model-body .btm-social-wrp svg {
  width: auto;
}
.login-pop .model-body .register {
  text-align: center;
  color: var(--text);
  margin-top: 46px;
  font-family: Poppins;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
}
.login-pop .model-body .register .reg-btn {
  color: var(--secondary);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}
.login-pop .model-body.otp-verify .otp-verify-wrap {
  padding-top: 3rem;
}
.login-pop .model-body.otp-verify .back-to-login {
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
  color: var(--primary);
  font-weight: 500;
}
.login-pop .model-body.otp-verify .back-to-login:hover {
  color: var(--primary);
}
.login-pop .model-body.otp-verify .back-to-login img {
  width: 13px;
  transform: rotate(90deg);
}
.login-pop .model-body.otp-verify .enter-nm-erww {
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.login-pop .model-body.otp-verify .txtVr {
  font-size: 20px;
  color: var(--text);
  text-align: center;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.login-pop .model-body.otp-verify .txtVr span {
  display: block;
  font-size: 18px;
  margin-top: 5px;
  font-weight: 600;
  line-height: 24px;
}
.login-pop .model-body.otp-verify .cojm-wrap {
  position: relative;
}
.login-pop .model-body.otp-verify .cojm-wrap .otp-error-ozrj {
  color: red;
  position: absolute;
  font-size: 14px;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}
.login-pop .model-body.otp-verify .verify-button {
  width: 100%;
  text-align: center;
}
.login-pop .model-body.otp-verify .verify-button a {
  text-transform: uppercase;
  border-radius: 25px;
  padding: 22px 110px;
  gap: 10px;
}
.login-pop .model-body.otp-verify .enter_new {
  margin-bottom: 40px;
}
.login-pop .model-body.otp-verify .enter_new .form-group-login::before {
  display: none;
}
.login-pop .model-body.otp-verify .enter_new label {
  font-family: Rubik;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}
.login-pop .model-body.otp-verify .otpInput {
  padding: 50px 0 60px;
  max-width: 230px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0 21px;
  color: #666666;
}
.login-pop .model-body.otp-verify .otpInput input {
  flex: 1;
  height: 40px;
  width: 100%;
  border: none;
  font-weight: 500;
  border: 1px solid #CCCCCC;
  color: #666666;
  border-radius: 5px;
  text-align: center;
}
.login-pop .model-body.otp-verify .otpInput input:focus {
  outline: none;
}

.model.ham-pop {
  right: 0;
  max-width: 480px;
  transform: translateX(100%);
  transition: 0.5s ease;
  z-index: 10;
}
.model.ham-pop.is-open {
  transform: translateX(0%);
}
.model.ham-pop .close {
  top: 17px;
  right: 22px;
}
.model.ham-pop .close svg {
  width: 22px;
}
.model.ham-pop .close svg path {
  stroke: var(--black) !important;
  stroke-width: 2 !important;
}
.model.ham-pop .model-body {
  padding: 0px 40px 30px;
  margin-top: 60px;
  height: calc(100% - 60px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.model.ham-pop .model-body::-webkit-scrollbar {
  width: 0px;
  background: var(--black);
  height: 0px;
}
.model.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0px;
}
@media only screen and (max-width: 540px) {
  .model.ham-pop .model-body {
    padding: 0 20px 40px;
  }
}
.model.ham-pop .model-body .icon {
  display: flex;
  align-items: center;
  font-family: "Rubik";
  gap: 15px;
  margin-bottom: 30px;
  line-height: 0;
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 30px;
  color: #000;
}
.model.ham-pop .model-body .icon img, .model.ham-pop .model-body .icon svg {
  width: 70px;
  height: auto;
}
@media only screen and (max-width: 540px) {
  .model.ham-pop .model-body .icon img, .model.ham-pop .model-body .icon svg {
    width: 50px;
  }
}
.model.ham-pop .model-body .icon img path, .model.ham-pop .model-body .icon svg path {
  fill: #000;
}
.model.ham-pop .model-body .nav-list {
  width: 100%;
}
.model.ham-pop .model-body .nav-list > li {
  cursor: pointer;
}
.model.ham-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 15px;
}
.model.ham-pop .model-body .nav-list > li.desktop-non {
  display: none;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown {
  position: relative;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown:hover .title h5 {
  color: var(--primary);
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .title.active svg {
  transform: rotate(90deg);
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .title h5 {
  font-size: 22px;
  color: #000;
  transition: 0.5s ease;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .title .arrow {
  width: 30px;
  transition: 0.5s ease;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .title svg {
  transition: 0.5s ease;
  width: 16px;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham {
  display: none;
  padding-top: 15px;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  padding: 15px 10px;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li a {
  display: block;
  font-size: 18px;
  color: #666;
  padding: 5px 0;
  transition: 0.5s ease;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li a:hover {
  color: var(--primary);
}
.model.ham-pop .model-body .nav-list > li > a {
  font-size: 20px;
  line-height: 1.06;
  color: #000;
  display: inline-block;
  font-weight: 500;
}
.model.ham-pop .model-body .nav-list > li > a:hover {
  color: var(--primary);
}
.model.ham-pop .model-body .bottom-list {
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #dadada;
}
.model.ham-pop .model-body .bottom-list .social-icon {
  display: flex;
  justify-content: center;
  gap: 7px;
}
.model.ham-pop .model-body .bottom-list .social-icon svg {
  cursor: pointer;
  border: 1px solid #A06242;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 7px;
}
.model.ham-pop .model-body .bottom-list .social-icon svg:hover {
  background-color: #A06242;
}
.model.ham-pop .model-body .bottom-list .social-icon svg:hover path {
  fill: var(--white);
}
.model.ham-pop .model-body .bottom-list .social-icon svg path {
  fill: #A06242;
}

.bulk-order-pop {
  right: 0;
  max-width: 480px;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: linear-gradient(360deg, #FFFFFF 17.06%, #FFE2DB 100%);
}
.bulk-order-pop.is-open {
  transform: translateX(0%);
}
.bulk-order-pop .model-body {
  padding: 60px 60px 30px;
  height: 100%;
  overflow-y: auto;
}
.bulk-order-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.bulk-order-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.bulk-order-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .bulk-order-pop .model-body {
    padding: 70px 20px 30px;
  }
}
.bulk-order-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.bulk-order-pop .model-body .title .heading-img {
  width: 80px;
  margin: auto;
}
.bulk-order-pop .model-body .title .heading {
  margin-top: 10px;
}
.bulk-order-pop .model-body .title .heading h4 {
  color: var(--primary);
}
.bulk-order-pop .model-body .title h4 {
  font-size: 32px;
  color: var(--black);
  font-weight: 500;
}
.bulk-order-pop .model-body .title p {
  color: black;
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 675px) {
  .bulk-order-pop .model-body .title p {
    font-size: 14px;
    max-width: 300px;
  }
}
.bulk-order-pop .model-body .form {
  --gaptb: 15px;
}
.bulk-order-pop .model-body .form .form-group input:focus ~ label, .bulk-order-pop .model-body .form .form-group input.valid ~ label, .bulk-order-pop .model-body .form .form-group textarea:focus ~ label, .bulk-order-pop .model-body .form .form-group textarea.valid ~ label {
  top: calc(var(--labelfontafter) / -1);
}
.bulk-order-pop .model-body .form .form-group label {
  font-family: Poppins;
  font-weight: 500;
  line-height: 24px;
  color: var(--text);
}
.bulk-order-pop .model-body .form .inline-radio {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bulk-order-pop .model-body .form .inline-radio input[type=radio] {
  width: 16px;
  accent-color: var(--secondary);
  cursor: pointer;
}
.bulk-order-pop .model-body .form .inline-radio input:focus ~ label, .bulk-order-pop .model-body .form .inline-radio input.valid ~ label, .bulk-order-pop .model-body .form .inline-radio textarea:focus ~ label, .bulk-order-pop .model-body .form .inline-radio textarea.valid ~ label {
  top: 0;
  font-size: 16px;
}
.bulk-order-pop .model-body .form .inline-radio label {
  position: relative;
  top: 0;
}
.bulk-order-pop .model-body .form .inline-radio label:first-child {
  margin-right: 10px;
  white-space: nowrap;
}
.bulk-order-pop .model-body .form .inline-radio .radio-options {
  display: flex;
  gap: 10px;
  align-items: center;
}
.bulk-order-pop .model-body .form .bottom-btn {
  text-align: center;
  margin-top: 30px;
  width: 100%;
}
.bulk-order-pop .model-body .form .bottom-btn button {
  padding: 20px 21px;
  border-radius: 25px;
  background: var(--secondary);
  color: var(--white);
  border: 1px solid var(--secondary);
  width: 100%;
  font-family: Poppins;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.bulk-order-pop .model-body .form .bottom-btn button:hover {
  background: var(--primary);
  border: 1px solid var(--primary);
}

.message-pop {
  position: fixed;
  top: calc(var(--headerheight) + 12px);
  right: 30px;
  background: var(--primary);
  z-index: 7;
  padding: 8px 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
}
.message-pop * {
  color: var(--white);
}

.model-full {
  left: 0;
  right: 0;
  max-width: 100%;
  width: 100%;
  background: none;
  pointer-events: none;
  display: flex;
  align-items: center;
  transform: translateY(100%);
  transition: 0.5s ease;
  overflow: hidden;
}
.model-full.is-open {
  transform: translateY(0%);
}
.model-full .dialog-wrapper {
  width: 100%;
  background: var(--white);
  margin: 0 auto;
  pointer-events: all;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.model-full .dialog-wrapper .title {
  padding: 8px 20px;
  border-bottom: 1px solid #e7e7e7;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}
.model-full .dialog-wrapper .title:has(.close) {
  position: relative;
}
.model-full .dialog-wrapper .title .close {
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  line-height: 0;
  z-index: 2;
}
.model-full .dialog-wrapper .title .close svg {
  width: 20px;
  height: auto;
}
.model-full .dialog-wrapper .title .close path {
  stroke: var(--black);
}
.model-full .dialog-wrapper .content {
  padding: 12px 20px;
}
.model-full.cancel-order-pop .dialog-wrapper {
  max-width: 540px;
}
.model-full.cancel-order-pop .dialog-wrapper .close {
  right: 18px;
  top: 28px;
}
.model-full.cancel-order-pop .dialog-wrapper .close svg {
  width: 18px;
}
.model-full.cancel-order-pop .dialog-wrapper .model-body {
  padding: 35px 30px 55px;
}
.model-full.cancel-order-pop .dialog-wrapper .model-body .ksxif {
  margin-bottom: 50px;
}
.model-full.cancel-order-pop .dialog-wrapper .model-body .ksxif h4 {
  color: var(--black);
  font-size: 20px;
  line-height: 24px;
}
.model-full.cancel-order-pop .dialog-wrapper .model-body .form {
  --gaptb: 18px;
}
.model-full.add-address-pop .dialog-wrapper {
  max-width: 470px;
}
.model-full.add-address-pop .close {
  right: 18px;
  top: 28px;
}
.model-full.add-address-pop .model-body {
  padding: 36px 38px 60px;
}
@media only screen and (max-width: 1366px) {
  .model-full.add-address-pop .model-body {
    max-height: 530px;
    overflow-y: auto;
  }
  .model-full.add-address-pop .model-body::-webkit-scrollbar {
    width: 6px;
    background: none;
    height: 6px;
  }
  .model-full.add-address-pop .model-body::-webkit-scrollbar-track {
    box-shadow: none;
  }
  .model-full.add-address-pop .model-body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
  }
}
.model-full.add-address-pop .model-body .pilce {
  display: flex;
  gap: 1rem;
  margin-bottom: 50px;
}
.model-full.add-address-pop .model-body .pilce h4 {
  flex: 1;
  font-family: "Rubik";
  font-size: 20px;
  line-height: 25.64px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.model-full.add-address-pop .model-body .pilce .close svg {
  width: 18px;
}
.model-full.add-address-pop .model-body .form {
  --item: 2;
  --borderbefore: var(--text);
  --gaptb: 16px;
  --gaplr: 16px;
  --labelfontbefore: 14px;
  --labelfontafter: 12px;
}
.model-full.add-address-pop .model-body .form .label-tzooz {
  color: var(--black);
}
.model-full.add-address-pop .model-body .form .chckbx-tkfrb {
  margin-top: 12px;
}
.model-full.add-address-pop .model-body .form .chckbx-tkfrb p {
  font-size: var(--labelfontbefore);
}
.model-full.add-address-pop .model-body .form .btn-grp {
  margin-top: 20px;
}

.video-pop {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 9;
  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(--black);
  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(--black);
}
.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%;
}
@media only screen and (max-width: 675px) {
  .video-pop .model-body {
    max-width: 95%;
  }
}
.video-pop .model-body iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.9;
  border: 2px solid var(--white);
}

.tdur-search-pop {
  left: 0;
  right: 0;
  max-width: 100%;
  height: 100%;
  z-index: 9;
  background: var(--white);
  --searchstrip: 70px;
  transform: translateY(100%) scale(0.8);
  transition: 0.5s ease;
}
.tdur-search-pop.is-open {
  transform: translateY(0) scale(1);
}
.tdur-search-pop .upper-strip-search {
  border-bottom: 1px solid #ccc;
}
.tdur-search-pop .upper-strip-search .form-group-search {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--searchstrip);
}
.tdur-search-pop .upper-strip-search .form-group-search input {
  flex: 1;
  border: none;
  font-size: 20px;
}
.tdur-search-pop .upper-strip-search .form-group-search input:focus {
  outline: none;
}
.tdur-search-pop .upper-strip-search .form-group-search input::-moz-placeholder {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tdur-search-pop .upper-strip-search .form-group-search input::placeholder {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tdur-search-pop .upper-strip-search .form-group-search .close-search-whktk, .tdur-search-pop .upper-strip-search .form-group-search .ico {
  width: 30px;
  line-height: 0;
}
@media only screen and (max-width: 540px) {
  .tdur-search-pop .upper-strip-search .form-group-search .close-search-whktk, .tdur-search-pop .upper-strip-search .form-group-search .ico {
    width: 20px;
  }
}
.tdur-search-pop .upper-strip-search .form-group-search .close-search-whktk svg, .tdur-search-pop .upper-strip-search .form-group-search .ico svg {
  width: 100%;
  height: auto;
}
.tdur-search-pop .upper-strip-search .form-group-search .close-search-whktk {
  position: unset;
}
.tdur-search-pop .secsrch-moxqj {
  min-height: calc(100% - var(--searchstrip));
  max-height: calc(100% - var(--searchstrip));
  overflow-y: auto;
  padding: 5rem 0;
}
.tdur-search-pop .secsrch-moxqj::-webkit-scrollbar {
  width: 6px;
  background: none;
  height: 6px;
}
.tdur-search-pop .secsrch-moxqj::-webkit-scrollbar-track {
  box-shadow: none;
}
.tdur-search-pop .secsrch-moxqj::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0;
}
@media only screen and (max-width: 991px) {
  .tdur-search-pop .secsrch-moxqj {
    padding: 4rem 0;
  }
}
@media only screen and (max-width: 768px) {
  .tdur-search-pop .secsrch-moxqj {
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 540px) {
  .tdur-search-pop .secsrch-moxqj {
    padding: 2rem 0;
  }
}
.tdur-search-pop .secsrch-moxqj .secsrch-cjrvs-sec {
  height: 100%;
}
.tdur-search-pop .secsrch-moxqj .secsrch-cjrvs-sec .upper-sec .heading h3 {
  color: #000;
  font-weight: 500;
}
.tdur-search-pop .secsrch-moxqj .search-result-prdct-wrap {
  display: none;
}
.tdur-search-pop .secsrch-moxqj .search-result-prdct-wrap .search-result-prdct {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px 20px;
}
@media only screen and (max-width: 991px) {
  .tdur-search-pop .secsrch-moxqj .search-result-prdct-wrap .search-result-prdct {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .tdur-search-pop .secsrch-moxqj .search-result-prdct-wrap .search-result-prdct {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 10px;
  }
}
@media only screen and (max-width: 350px) {
  .tdur-search-pop .secsrch-moxqj .search-result-prdct-wrap .search-result-prdct {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tdur-search-pop .secsrch-moxqj .search-result-prdct-wrap .search-result-prdct .product-col figcaption a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding-bottom: 10px;
}
.tdur-search-pop .secsrch-moxqj .search-result-prdct-wrap .search-result-prdct .product-col figcaption p.prd-price {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #666666;
}

div:has(> .product-not-found) {
  position: relative;
}

.product-not-found {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}
.product-not-found.not-found2 {
  position: relative;
}
.product-not-found .nt-fnd-wrp {
  text-align: center;
}
.product-not-found .nt-fnd-wrp .ico {
  width: 120px;
  margin-left: auto;
  margin-right: auto;
  filter: grayscale(1);
}
.product-not-found .nt-fnd-wrp p {
  font-size: 24px;
  font-family: "Rubik";
  margin: 10px 0 3rem;
}

.whatsapp-icon {
  background: #25d366;
  border-radius: 50%;
  width: 60px;
  position: fixed;
  bottom: 5%;
  left: 2%;
  z-index: 99;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 540px) {
  .whatsapp-icon {
    bottom: 3%;
    left: 5%;
  }
}

footer {
  width: 100%;
  z-index: 0;
  position: relative;
  background-color: #F1F1F2;
}
footer .border .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 6px;
}
footer .border .grid .grid-item:nth-child(3n+1) .border {
  background-color: #1DA9E1;
  height: 11px;
}
footer .border .grid .grid-item:nth-child(3n+2) .border {
  background-color: #EA4A38;
  height: 11px;
}
footer .border .grid .grid-item:nth-child(3n) .border {
  background-color: #8B4633;
  height: 11px;
}
footer .upper-sec {
  padding: 50px 0 0px;
}
footer .upper-sec .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media only screen and (max-width: 991px) {
  footer .upper-sec .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  footer .upper-sec .grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px;
  }
}
footer .upper-sec .grid .grid-item {
  width: 100%;
}
footer .upper-sec .grid .one, footer .upper-sec .grid .three {
  display: flex;
  gap: 60px;
}
footer .upper-sec .grid .one h6, footer .upper-sec .grid .three h6 {
  color: #8B4633;
  font-family: Poppins;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 540px) {
  footer .upper-sec .grid .one h6, footer .upper-sec .grid .three h6 {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
footer .upper-sec .grid .one ul li, footer .upper-sec .grid .three ul li {
  padding: 0px 0 5px 0;
}
footer .upper-sec .grid .one ul li a, footer .upper-sec .grid .three ul li a {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.6980392157);
  padding: 5px 0;
}
footer .upper-sec .grid .one ul li a:hover, footer .upper-sec .grid .three ul li a:hover {
  color: var(--primary);
}
@media only screen and (max-width: 540px) {
  footer .upper-sec .grid .two {
    order: -1;
  }
}
footer .upper-sec .grid .two .logo {
  width: 142px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 540px) {
  footer .upper-sec .grid .two .logo {
    margin: 0 auto 10px;
  }
}
footer .upper-sec .grid .two .social-icon {
  display: flex;
  justify-content: center;
  gap: 7px;
}
footer .upper-sec .grid .two .social-icon svg {
  cursor: pointer;
  border: 1px solid #A06242;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 7px;
}
footer .upper-sec .grid .two .social-icon svg:hover {
  background-color: #A06242;
}
footer .upper-sec .grid .two .social-icon svg:hover path {
  fill: var(--white);
}
footer .upper-sec .grid .two .social-icon svg path {
  fill: #A06242;
}
footer .line {
  border: 1px solid rgba(0, 0, 0, 0.1098039216);
  margin: 50px 0 0 0;
}
footer .bottom-sec {
  height: 65vh;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  footer .bottom-sec {
    height: 84vh;
  }
}
@media only screen and (max-width: 540px) {
  footer .bottom-sec {
    height: 60vh;
  }
}
@media only screen and (max-width: 380px) {
  footer .bottom-sec {
    height: 90vh;
  }
}
@media only screen and (max-width: 360px) {
  footer .bottom-sec {
    height: 75vh;
  }
}
@media only screen and (max-width: 991px) {
  footer .bottom-sec .bg {
    height: 100%;
  }
}
@media only screen and (max-width: 540px) {
  footer .bottom-sec .bg {
    height: 860px;
  }
}
footer .bottom-sec .bg img {
  -o-object-fit: cover;
     object-fit: cover;
  line-height: 0;
}
@media only screen and (max-width: 991px) {
  footer .bottom-sec .bg img {
    width: 100%;
    height: 100%;
  }
}
footer .bottom-sec .content-wrapper {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media only screen and (max-width: 540px) {
  footer .bottom-sec .content-wrapper {
    top: 45%;
  }
}
footer .bottom-sec .content-wrapper .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 991px) {
  footer .bottom-sec .content-wrapper .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 0;
  }
}
@media only screen and (max-width: 540px) {
  footer .bottom-sec .content-wrapper .grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
  }
}
footer .bottom-sec .content-wrapper .grid .grid-item {
  width: 100%;
}
footer .bottom-sec .content-wrapper .grid .one {
  display: flex;
  gap: 20px;
  padding: 0 20px 0 0px;
  border-right: 1px solid rgba(0, 0, 0, 0.2509803922);
}
@media only screen and (max-width: 540px) {
  footer .bottom-sec .content-wrapper .grid .one {
    gap: 10px;
    border-right: none;
  }
}
footer .bottom-sec .content-wrapper .grid .two {
  gap: 20px;
  padding: 0 20px 0 30px;
}
footer .bottom-sec .content-wrapper .grid .three .two-btn {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 30px;
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 540px) {
  footer .bottom-sec .content-wrapper .grid .three .two-btn {
    margin: 0 0 30px 0;
  }
}
footer .bottom-sec .content-wrapper .grid .three .two-btn .animate-button {
  padding: 7px 0px;
}
footer .bottom-sec .content-wrapper .grid .three .two-btn .animate-button:hover a {
  color: var(--white);
}
footer .bottom-sec .content-wrapper .grid .three .two-btn .animate-button a {
  padding: 8px 21px;
  font-weight: 400;
  color: var(--black);
}
footer .bottom-sec .content-wrapper .grid .three .two-btn .secondary-btn a {
  padding: 8px 21px;
  border-radius: 25px;
  background: var(--secondary);
  color: var(--white);
}
footer .bottom-sec .content-wrapper .grid .three .two-btn .secondary-btn a:hover {
  background: var(--primary);
}
footer .bottom-sec .content-wrapper .grid .three .prettify a {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
footer .bottom-sec .content-wrapper .grid .three .prettify a .text p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: var(--text);
}
footer .bottom-sec .content-wrapper .grid .three .prettify a .logo {
  width: 60px;
}
footer .bottom-sec .content-wrapper .grid .icon {
  width: 50px;
  padding: 0;
}
@media only screen and (max-width: 540px) {
  footer .bottom-sec .content-wrapper .grid .icon {
    width: 25px;
  }
}
footer .bottom-sec .content-wrapper .grid h6 {
  color: #8B4633;
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
footer .bottom-sec .content-wrapper .grid p {
  color: var(--text);
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
footer .bottom-sec .content-wrapper .grid p ul li {
  padding: 0px 0 5px 0;
}
footer .bottom-sec .content-wrapper .grid p ul li a {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.6980392157);
  padding: 5px 0;
}
footer .bottom-sec .content-wrapper .grid p ul li a:hover {
  color: var(--primary);
}

@media only screen and (max-width: 991px) {
  .sm-block {
    display: block;
  }
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.bulk-order-pop .form-group.file-input input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: pointer;
}
.bulk-order-pop .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize) - var(--borderwidth));
  position: relative;
  --filename: "Attach Logo*" !important;
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  --image: url(../../icon/clip-gray.svg) no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: calc(var(--inputsize) - var(--borderwidth));
}
.bulk-order-pop .form-group.file-input .file-name::before, .bulk-order-pop .form-group.file-input .file-name::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.bulk-order-pop .form-group.file-input .file-name::before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize) - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  background: none;
}
.bulk-order-pop .form-group.file-input .file-name::after {
  content: "";
  right: 0;
  background: var(--image);
  background-repeat: no-repeat;
  z-index: 1;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
}/*# sourceMappingURL=header.css.map */