/* variables css */
/* for common fonts */
/* mixins */
html {
  font-size: 10px;
}

@media (min-width: 1921px) {
  html {
    font-size: 11px;
  }
}

@media (max-width: 1920.98px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 1399.98px) {
  html {
    font-size: 9.4px;
  }
}

@media (max-width: 1199.98px) {
  html {
    font-size: 8px;
  }
}

@media (max-width: 991.98px) {
  html {
    font-size: 8px;
  }
}

@media (max-width: 767.98px) {
  html {
    font-size: 8px;
  }
}

:root {
  --background-image: linear-gradient(90deg, rgba(255, 100, 0, 1) 0%, rgba(255, 11, 0, 1) 100%);
  --background-image-opacity: linear-gradient(90deg, rgba(255, 100, 0, 0.7) 0%, rgba(255, 11, 0, 0.7) 100%);
  --border-color: #f1472c;
  --red-color: #ff0b00;
  --orange-color: #ff6400;
}

input:focus,
select:focus,
.form-control:focus,
button:focus,
.btn:focus {
  box-shadow: none;
  outline: none;
  border-color: inherit;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
  text-transform: inherit;
}

body {
  font: 400 1.6rem/1.69 "inter-regular";
  color: #111111;
  position: relative;
}

body.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 11;
  transition: all 0.3s linear;
}

a,
a:hover {
  text-decoration: none;
  outline: none;
  transition: all 0.3s linear;
}

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

.py-80 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.pt-80 {
  padding-top: 8rem;
}

.pb-80 {
  padding-bottom: 8rem;
}

@media (max-width: 991.98px) {
  .py-80 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .pt-80 {
    padding-top: 6rem;
  }

  .pb-80 {
    padding-bottom: 6rem;
  }
}

@media (max-width: 575.98px) {
  .sec-ttl h2 {
    font-size: 3rem;
  }
}

@media (max-width: 575.98px) {

  .container,
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/*  Page Title  */
.page-ttl-wrapper .banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-ttl-wrapper .page-ttl>* {
  color: #ffffff;
}

.page-ttl-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.qty p {
  font: 500 1.6rem/1.21 "inter-medium";
  padding-bottom: 1rem;
}

.qty .qty-box {
  gap: 1rem;
  padding: 0.8rem;
  border-radius: 5rem;
  background-image: var(--background-image);
}

.qty .qty-box .qty-input {
  background-color: transparent;
  border: none;
  color: #ffffff;
  max-width: 6.3rem;
  line-height: 1;
  text-align: center;
}

.qty .qty-box .qty-input::-webkit-inner-spin-button, .qty .qty-box .qty-input::-webkit-outer-spin-button {
  display: none;
}

.qty .qty-box button {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  background-size: 100%;
  border: none;
  background-repeat: no-repeat;
  background-color: transparent;
}

.qty .qty-box button.minus {
  background-image: url("../images/minus.svg");
}

.qty .qty-box button.pluse {
  background-image: url("../images/pluse.svg");
}

/*  buttons start  */
.btn {
  font: 500 1.6rem/1.21 "inter-medium";
  border-radius: 4rem;
  border: none;
}

.theme-btn {
  font: 500 1.6rem/1.21 "inter-medium";
  color: #ffffff;
  padding: 1.2rem 3.2rem;
  display: inline-block;
  background-image: var(--background-image);
  border: none;
  border-radius: 5rem;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.theme-btn:hover {
  background-image: linear-gradient(90deg, rgb(255, 11, 0) 0%, rgb(255, 100, 0) 100%);
  color: #ffffff;
}

.theme-btn.red-btn {
  background-image: linear-gradient(90deg, #ff7272 0%, #ff0000 100%);
}

.theme-btn.red-btn:hover {
  background-image: linear-gradient(90deg, #ff0000 0%, #ff7272 100%);
}

.theme-btn .load {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
}

.theme-btn .load::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px solid #fff;
  width: 30px;
  height: 30px;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  animation: loading1 1s ease infinite;
  z-index: 10;
}

.theme-btn .load::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px dashed #fff;
  width: 30px;
  height: 30px;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  animation: loading1 2s linear infinite;
  z-index: 5;
}

.theme-btn.activeLoading {
  pointer-events: none;
}

.theme-btn.activeLoading .loading {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .theme-btn {
    font-size: 1.6rem;
  }

  .theme-btn::after {
    width: 1.4rem;
    height: 1.4rem;
  }
}

@keyframes loading1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(126, 126, 126, 0.2);
}

.loader .loader-circle {
  height: 15px;
  width: 105px;
  display: flex;
  position: relative;
}

.loader .loader-circle .circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--border-color);
  animation: move 500ms linear 0ms infinite;
  margin-right: 30px;
}

.loader .loader-circle .circle:first-child {
  position: absolute;
  top: 0;
  left: 0;
  animation: grow 500ms linear 0ms infinite;
}

.loader .loader-circle .circle:last-child {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 0;
  animation: grow 500ms linear 0s infinite reverse;
}

#coupon-btn {
  cursor: pointer;
}

#coupon-input .coupon button {
  position: absolute;
  top: 50%;
  right: 0.7rem;
  transform: translateY(-50%);
  padding: 1rem 1.8rem;
  font-size: 1.4rem;
}

#coupon-input .coupon button .loading {
  transform: scale(0.7);
}

@keyframes grow {
  from {
    transform: scale(0, 0);
    opacity: 0;
  }

  to {
    transform: scale(1, 1);
    opacity: 1;
  }
}

@keyframes move {
  from {
    transform: translateX(0px);
  }

  to {
    transform: translateX(45px);
  }
}

.calculator-img {
  position: fixed;
  top: 50%;
  right: 0;
  width: 4.4rem;
  height: 5rem;
  padding-left: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.2rem 0 0 1.2rem;
  transform: translateY(-50%);
  background-image: var(--background-image);
  cursor: pointer;
  z-index: 5;
}

.calculator-img img {
  width: 3rem;
  height: 3rem;
}

hr {
  color: rgba(241, 70, 44, 0.2);
  opacity: 1;
  margin: 0;
}

#calculator .cart-body {
  height: calc(100% - 5.7rem - 2rem);
  border: 1px solid rgba(241, 70, 44, 0.3);
  border-radius: 1rem;
  background-color: #ffffff;
}

#calculator .cart-body .calc-card {
  padding: 2rem;
}

#calculator .cart-body #calc-result {
  display: none;
}

/* common css */
.form-group .error {
  font: 500 1.4rem/1 "inter-medium";
  color: #dc3545;
  margin: 0.8rem 0.5rem -1.4rem;
  display: none;
}

.form-group .error.active {
  display: block;
}

.form-control,
.form-select {
  font: 400 1.6rem/1.21 "inter-regular";
  width: 100%;
  background-color: #ffffff;
  padding: 1.4rem 2rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  color: #111111;
  border-radius: 4rem;
  transition: all 0.3s ease-in-out;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  outline: none;
  border-color: var(--border-color);
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/arrow-down.svg");
  background-size: 2.2rem;
  background-position: calc(100% - 1.8rem) center;
}

.form-control::-moz-placeholder {
  color: #333333;
}

.form-control::placeholder {
  color: #333333;
}

textarea.form-control {
  height: 10rem;
  border-radius: 2rem;
}

textarea.form-control:focus {
  outline: none;
}

@media (max-width: 991.98px) {
  .wpcf7-form-control {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .wpcf7-form-control {
    font-size: 1.8rem;
  }

  form .form p {
    font-size: 1.6rem;
  }
}

/* form css */
header {
  /* background-image: var(--background-image); */
  background-color: rgba(255, 99, 0, 0.1);
}

header .main-header {
  padding: 1.6rem 0;
}

header .main-header .logo img {
  max-width: 110px;
}

header .main-header .right-link,
header .main-header .right-link .links {
  gap: 2rem;
}

header .main-header .right-link .links a {
  font: 500 1.6rem/1.21 "inter-medium";
  gap: 0.6rem;
  /* color: #ffffff; */
  transition: none;
}

header .main-header .right-link .links a img {
  width: 2.4rem;
  filter: invert(1);
}

header .main-header .right-link .links a:hover {
  color: var(--red-color);
}

header .main-header .right-link .links a:hover img {
  filter: invert(75%) sepia(206%) saturate(7588%);
}

header .main-header .right-link .icons-button .theme-btn {
  padding: 1.2rem 2rem;
  gap: 0.7rem;
  border: none;
  transition: all 0.1s linear;
}

header .main-header .right-link .icons-button .theme-btn img {
  width: 1.9rem;
  filter: brightness(0) invert(1);
  transition: all 0.1s linear;
}

header .main-header .right-link .icons-button .theme-btn:hover img {
  filter: brightness(0) invert(1);
}

header .main-header .right-link .icons-button .icon {
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  /* background-color: #ffffff; */
  background-image: var(--background-image);
  position: relative;
  cursor: pointer;
  transition: all 0.3s linear;
}

header .main-header .right-link .icons-button .icon img {
  max-width: 2.4rem;
  height: 2.3rem;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

header .main-header .right-link .icons-button .icon h6 {
  position: absolute;
  top: -0.4rem;
  right: -1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  text-align: center;
  font-family: "inter-semibold";
  line-height: 1.76;
  color: #ffffff;
  background-color: #000;
}

header .main-header .right-link .icons-button .icon:hover {
  background-color: var(--red-color);
}

header .main-header .right-link .icons-button .icon:hover img {
  filter: brightness(0) invert(1);
}

header .navbar-nav {
  padding: 1.2rem 0.8rem 1.2rem 2.6rem;
  /* background-color: #ffffff; */
  margin-bottom: -3rem;
  position: relative;
  z-index: 2;
  background-image: var(--background-image);
  border-radius: 4rem;
}

header .navbar-nav .navbar .nav {
  gap: 1.4rem 4rem;
}

header .navbar-nav .navbar .nav .nav-item .nav-link {
  font: 500 1.6rem/1.188 "inter-medium";
  color: #fff;
  padding: 0;
  position: relative;
  transition: all 0.3s linear;
}

header .navbar-nav .navbar .nav .nav-item.active .nav-link {
  font-family: "inter-semibold";
  font-weight: 600;
  color: #000000;
}

header .navbar-nav .buttons a {
  color: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 0 8px rgb(0 0 0 / 20%);
}

header .navbar-nav .buttons a.sell {
  background-color: #F65C66;
}

header .navbar-nav .buttons a.sell:hover {
  background-color: #d6454e;
}

header .navbar-nav .buttons a.buy {
  background-color: #55bd8a;
}

header .navbar-nav .buttons a.buy:hover {
  background-color: #16ad64;
}

header .head-text {
  padding: 1rem 2rem;
  /* background-color: rgba(0, 0, 0, 0.4); */
  background-image: var(--background-image);
}

header .head-text p {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #fff;
}

@media (min-width: 576px) {
  header.fixed .navbar-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    border-radius: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    animation: headerSticky 0.95s ease forwards;
    z-index: 10;
  }
}

@media (max-width: 767.98px) {
  header .navbar-nav .navbar .nav {
    gap: 1.4rem 2.4rem;
  }
}

@media (max-width: 575.98px) {
  header .main-header .logo img {
    max-width: 80px;
  }

  header .main-header .right-link .icons-button {
    gap: 1rem;
  }

  header .main-header .right-link .icons-button .btn {
    padding: 1rem 1.8rem;
  }

  header .main-header .right-link .icons-button .icon {
    width: 4.3rem;
    height: 4.3rem;
  }

  header .main-header .right-link .icons-button .icon h6 {
    top: -0.5rem;
    right: -1rem;
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.3rem;
    line-height: 1.8;
  }

  header .navbar-nav {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 11;
    padding: 4rem 3rem;
    border-radius: 0;
    background-image: var(--background-image);
    transition: all 0.5s linear;
    z-index: 12;
  }

  header .navbar-nav .close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 2rem;
  }

  header .navbar-nav .navbar {
    height: calc(100vh - 8rem);
    overflow: auto;
  }

  header .navbar-nav .navbar .nav {
    gap: 2.6rem;
  }

  header .navbar-nav .navbar .nav .nav-item .nav-link {
    font-size: 2.2rem;
    color: #ffffff;
  }

  header .navbar-nav .navbar .nav .nav-item.active .nav-link {
    color: #162055;
  }

  header .navbar-nav.active {
    top: 2px;
  }

  header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    animation: headerSticky 0.95s ease forwards;
    z-index: 10;
  }

  header.fixed>.container {
    background-color: rgba(255, 99, 0, 0.1);
  }
}

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

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

/* header css */
footer {
  background-color: var(--border-color);
  padding-top: 8rem;
}

footer .top-footer {
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .top-footer .foot-item .logo h1 {
  display: inline-block;
  line-height: 1.2;
}

footer .top-footer .foot-item p {
  color: #ffffff;
  padding-top: 1rem;
}

footer .top-footer .foot-item .app-download {
  gap: 1.2rem;
  padding-top: 2rem;
}

footer .top-footer .foot-item h4 {
  font-family: "inter-bold";
  color: #ffffff;
  padding-bottom: 2rem;
}

footer .top-footer .foot-item ul li {
  padding-bottom: 2rem;
}

footer .top-footer .foot-item ul li a {
  line-height: 1.21;
  color: #ffffff;
  padding: 0;
}

footer .top-footer .foot-item ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
}

footer .top-footer .foot-item ul li:last-child {
  padding-bottom: 0;
}

footer .top-footer .foot-item .social-icon {
  -moz-column-count: 2;
  column-count: 2;
  gap: 3rem;
}

footer .top-footer .foot-item .social-icon .social-item {
  font: 500 1.6rem/1.21 "inter-medium";
  color: #ffffff;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

footer .top-footer .foot-item .social-icon .social-item img {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

footer .top-footer .foot-item .social-icon .social-item:hover {
  color: rgba(255, 255, 255, 0.6);
}

footer .top-footer .foot-item .social-icon .social-item:hover img {
  opacity: 0.6;
}

footer .top-footer .foot-item:first-child {
  max-width: 30rem;
}

footer .copyright {
  padding: 2rem 0;
}

footer .copyright p {
  line-height: 1.21;
  color: #ffffff;
}

@media (min-width: 768px) and (max-width: 991px) {
  footer .top-footer .foot-item .social-icon {
    -moz-column-count: 1;
    column-count: 1;
  }

  footer .top-footer .foot-item .social-icon .social-item {
    margin-bottom: 1.6rem;
  }

  footer .top-footer .foot-item .social-icon .social-item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  footer {
    padding-top: 4rem;
  }

  footer .top-footer {
    gap: 4rem 0;
    padding-bottom: 4rem;
  }

  footer .top-footer .foot-item:first-child {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  footer .top-footer {
    gap: 4rem 0;
    padding-bottom: 4rem;
  }

  footer .top-footer .foot-item h4 {
    font-size: 2.4rem;
  }

  footer .top-footer .foot-item:nth-of-type(2), footer .top-footer .foot-item:nth-of-type(3) {
    width: 50%;
  }

  footer .top-footer .foot-item:last-child {
    width: 100%;
  }
}

/* footer css */
@font-face {
  font-family: "inter-bold";
  src: url("../fonts/inter-bold.woff2") format("woff2"), url("../fonts/inter-bold.ttf") format("ttf");
  font-display: auto;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}

@font-face {
  font-family: "inter-semibold";
  src: url("../fonts/inter-semibold.woff2") format("woff2"), url("../fonts/inter-semibold.ttf") format("ttf");
  font-display: auto;
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
}

@font-face {
  font-family: "inter-medium";
  src: url("../fonts/inter-medium.woff2") format("woff2"), url("../fonts/inter-medium.ttf") format("ttf");
  font-display: auto;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
}

@font-face {
  font-family: "inter-regular";
  src: url("../fonts/inter-regular.woff2") format("woff2"), url("../fonts/inter-regular.ttf") format("ttf");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}

h1 {
  font-family: "inter-bold";
  font-style: normal;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.5;
  color: #ffffff;
}

h2 {
  font-family: "inter-bold";
  font-style: normal;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  color: #000000;
}

h3 {
  font-family: "inter-medium";
  font-style: normal;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #111111;
}

h4 {
  font-family: "inter-regular";
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
  color: #111111;
}

h5 {
  font-family: "inter-regular";
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #333333;
}

h6 {
  font-family: "inter-medium";
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.21;
  color: #111111;
}

p {
  font-family: "inter-regular";
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.69;
  color: #111111;
}

@media (max-width: 767.98px) {
  p {
    font-size: 1.75rem;
  }
}

span {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  font-size: inheritrem;
  line-height: inherit;
  color: inherit;
}

a {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  font-size: inheritrem;
  line-height: inherit;
  color: inherit;
}

/* typography css */
/* layout css */
.banner-wrapper {
  padding: 8rem 0 15.7rem;
}

.banner-wrapper .banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-wrapper .banner {
  max-width: 70rem;
}

.banner-wrapper .banner .search-bar {
  padding-top: 4rem;
}

.banner-wrapper .banner .search-bar .form-group {
  max-width: 55rem;
}

.banner-wrapper .banner .search-bar .form-group .form-control {
  font: 400 1.4rem/1.21 "inter-regular";
  color: #111111;
  border: none;
  padding: 1.8rem 13rem 1.8rem 5.2rem;
  border-radius: 5rem;
}

.banner-wrapper .banner .search-bar .form-group .form-control::-moz-placeholder {
  color: #111111;
}

.banner-wrapper .banner .search-bar .form-group .form-control::placeholder {
  color: #111111;
}

.banner-wrapper .banner .search-bar .form-group img {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 2.4rem;
  transform: translateY(-50%);
}

.banner-wrapper .banner .search-bar .form-group .theme-btn {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
}

.banner-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

@media (max-width: 575.98px) {
  .banner-wrapper .banner .search-bar .form-group .form-control {
    font-size: 1.6rem;
    padding-bottom: 1.7rem;
  }
}

.multiple-wrapper {
  background-image: linear-gradient(180deg, rgba(255, 99, 0, 0.1) 0%, #FFFFFF 100%);
}

.odometer {
  vertical-align: middle;
  position: relative;
  display: inline-block;
}

.odometer .odometer-inside {
  display: flex;
}

.odometer .odometer-inside .odometer-digit {
  vertical-align: middle;
  position: relative;
  display: inline-block;
}

.odometer .odometer-inside .odometer-digit .odometer-digit-spacer {
  vertical-align: middle;
  visibility: hidden;
  display: inline-block;
}

.odometer .odometer-inside .odometer-digit .odometer-digit-inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.odometer .odometer-inside .odometer-digit .odometer-digit-inner .odometer-ribbon {
  display: block;
}

.odometer .odometer-inside .odometer-digit .odometer-digit-inner .odometer-ribbon .odometer-ribbon-inner {
  display: block;
  backface-visibility: hidden;
}

.odometer .odometer-inside .odometer-digit .odometer-digit-inner .odometer-ribbon .odometer-ribbon-inner .odometer-value {
  display: block;
  transform: translateZ(0);
}

.odometer .odometer-inside .odometer-digit .odometer-digit-inner .odometer-ribbon .odometer-ribbon-inner .odometer-value.odometer-last-value {
  position: absolute;
  left: 0;
}

.odometer.odometer-animating-up .odometer-inside .odometer-digit .odometer-digit-inner .odometer-ribbon .odometer-ribbon-inner {
  transition: transform 3s;
}

.odometer.odometer-animating-up.odometer-animating .odometer-inside .odometer-digit .odometer-digit-inner .odometer-ribbon .odometer-ribbon-inner {
  transform: translateY(-100%);
}

.odometer.odometer-animating-down .odometer-inside .odometer-digit .odometer-digit-inner .odometer-ribbon .odometer-ribbon-inner {
  transform: translateY(-100%);
}

.odometer.odometer-animating-down.odometer-animating .odometer-inside .odometer-digit .odometer-digit-inner .odometer-ribbon .odometer-ribbon-inner {
  transition: transform 3s;
  transform: translateY(0);
}

.counter-wrapper {
  margin-top: -6.1rem;
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 2rem;
  box-shadow: 0px 0px 50px 0px rgba(17, 17, 17, 0.1);
}

.counter-wrapper .counter .counter-item {
  gap: 1.5rem;
}

.counter-wrapper .counter .counter-item img {
  width: 5rem;
  height: 5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.counter-wrapper .counter .counter-item h2 {
  font-family: "inter-semibold";
  line-height: 1.13;
}

.counter-wrapper .counter .counter-item p {
  line-height: 1.63;
}

@media (max-width: 991.98px) {
  .counter-wrapper {
    margin-top: -9.4rem;
  }
}

@media (max-width: 767.98px) {
  .counter-wrapper .counter {
    gap: 3rem 0;
  }
}

.requirement-wrapper .requirement {
  padding: 3rem;
  border-radius: 2rem;
  background-image: var(--background-image);
}

.requirement-wrapper .requirement .sec-ttl {
  gap: 2rem;
  padding-bottom: 2rem;
}

.requirement-wrapper .requirement .sec-ttl h2 {
  color: #ffffff;
}

.requirement-wrapper .requirement .sec-ttl ul {
  color: #ffffff;
}

.requirement-wrapper .requirement .sec-ttl ul li {
  position: relative;
  padding-right: 1.4rem;
}

.requirement-wrapper .requirement .sec-ttl ul li::after {
  content: "|";
  position: absolute;
  top: 50%;
  right: 0.8rem;
  width: 2px;
  transform: translateY(-50%);
}

.requirement-wrapper .requirement .sec-ttl ul li:last-child {
  padding-right: 0;
}

.requirement-wrapper .requirement .sec-ttl ul li:last-child::after {
  display: none;
}

.requirement-wrapper .requirement .requirement-form {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
}

.requirement-wrapper .requirement .requirement-form .form-label {
  font: 500 1.6rem/1.21 "inter-medium";
  margin-bottom: 0;
}

.requirement-wrapper .requirement .requirement-form .buy-sell {
  gap: 2rem;
}

.requirement-wrapper .requirement .requirement-form .buy-sell .form-check {
  padding-left: 3.2rem;
  margin-bottom: 0;
  line-height: 2rem;
}

.requirement-wrapper .requirement .requirement-form .buy-sell .form-check .form-check-input {
  width: 2rem;
  height: 2rem;
  margin-left: -3.2rem;
  margin-top: 0;
  border: 1.5px solid #111111;
}

.requirement-wrapper .requirement .requirement-form .buy-sell .form-check .form-check-input:checked {
  background-image: url("../images/select.png");
  background-size: 1rem;
  background-color: transparent;
  box-shadow: none;
}

.requirement-wrapper .requirement .requirement-form .form-dtl .form-group .form-label {
  margin-bottom: 0.8rem;
}

.requirement-wrapper .requirement .requirement-form .form-dtl .form-group .form-select {
  width: 22rem;
}

.requirement-wrapper .requirement .requirement-form .form-dtl .form-group .phone span {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
}

.requirement-wrapper .requirement .requirement-form .form-dtl .form-group .phone .form-control {
  width: 17rem;
  padding-left: 5rem;
}

.requirement-wrapper .requirement .requirement-form .form-dtl .theme-btn {
  padding: 1.6rem 3.2rem;
  align-self: flex-end;
}

@media (max-width: 991.98px) {
  .requirement-wrapper .requirement .requirement-form .form-dtl .form-group {
    width: calc(33.33% - 0.67rem);
  }

  .requirement-wrapper .requirement .requirement-form .form-dtl .form-group .phone .form-control {
    width: 100%;
  }

  .requirement-wrapper .requirement .requirement-form .form-dtl .form-group .form-select {
    width: 100%;
  }

  .requirement-wrapper .requirement .requirement-form .form-dtl .theme-btn {
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .requirement-wrapper .requirement .sec-ttl {
    gap: 1rem;
  }

  .requirement-wrapper .requirement .requirement-form .form-dtl .form-group .form-select {
    background-size: 2rem;
    background-position: calc(100% - 1.4rem) center;
  }
}

@media (max-width: 575.98px) {
  .requirement-wrapper .requirement {
    padding: 2rem;
  }

  .requirement-wrapper .requirement .sec-ttl ul {
    font-size: 1.4rem;
  }

  .requirement-wrapper .requirement .requirement-form .form-dtl .form-group {
    width: 100%;
  }
}

.service-wrapper .services {
  gap: 3rem 0;
  --bs-gutter-x: 3rem;
}

.service-wrapper .services .service-item {
  padding: 4rem 3rem 3rem;
  border: 1px solid var(--border-color);
  border-radius: 1rem;
}

.service-wrapper .services .service-item .icon {
  width: 5rem;
  display: inline-block;
  margin-bottom: 2rem;
}

.service-wrapper .services .service-item h4 {
  font-family: "inter-semibold";
  padding-bottom: 1rem;
}

@media (max-width: 575.98px) {
  .service-wrapper .services .service-item {
    padding: 2.6rem 2.4rem 2.4rem;
  }
}

.update-wrapper .stay-update {
  margin: 0 -1.4rem;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.tags-list .tag,
.chart-container .filter-btn {
  font: 500 1.6rem / 1.2 "inter-medium";
  /* color: #ffffff; */
  border: 1px solid var(--border-color);
  padding: 0.8rem 1.8rem;
  border-radius: 3rem;
  cursor: pointer;
  background-color: transparent;
}

.page-ttl-wrapper .page-ttl .tags-list {
  justify-content: center;
}

.page-ttl-wrapper .page-ttl .tags-list .tag {
  cursor: initial;
  color: #fff;
  background-color: var(--border-color);
}

.update-wrapper .tags-list .tag:hover {
  color: initial;
}

.update-wrapper .tags-list .tag.active,
.chart-container .filter-btn.active {
  color: #fff;
  background-color: var(--border-color);
}

.update-wrapper .stay-update .card-item {
  margin-left: 1.4rem;
  margin-right: 1.4rem;
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  height: 100%;
}

.update-wrapper .stay-update .card-item .card-img img {
  aspect-ratio: 1/0.68425;
  transition: all 0.4s linear;
}

.update-wrapper .stay-update .card-item .card-body {
  padding: 2rem;
}

.update-wrapper .stay-update .card-item .card-body .cate {
  position: absolute;
  top: 2.2rem;
  right: 3.3rem;
  font: 500 1.4rem/1.2 "inter-medium";
  color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0.7rem 1.2rem;
  text-transform: uppercase;
  border-radius: 3rem;
  background-color: var(--border-color);
}

.update-wrapper .stay-update .card-item .card-body h6 {
  padding-bottom: 1.5rem;
}

.update-wrapper .stay-update .card-item .card-body h4 {
  padding-bottom: 1rem;
}

.update-wrapper .stay-update .card-item .card-body h4 a:hover {
  color: var(--orange-color);
}

.update-wrapper .stay-update .card-item:hover .card-img img {
  transform: scale(1.1);
}

.update-wrapper .stay-update .slick-arrow {
  top: auto;
  bottom: 0;
  left: calc(50% + 2.5rem);
  width: 4rem;
  height: 4rem;
  transform: translateX(-50%);
  border: 1px solid var(--border-color);
  border-radius: 100%;
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: 2.4rem;
  background-position: center;
}

.update-wrapper .stay-update .slick-arrow::before {
  display: none;
}

.update-wrapper .stay-update .slick-arrow.slick-prev {
  left: calc(50% - 2.5rem);
  transform: translateX(-50%) rotate(180deg);
}

.update-wrapper .stay-update#stay-update .slick-list .slick-track {
  display: flex;
}

.update-wrapper .stay-update#stay-update .slick-list .slick-track .card-item {
  height: auto;
}

@media (max-width: 575.98px) {
  .update-wrapper .stay-update .card-item .card-body .cate {
    padding-bottom: 0.6rem;
  }
}

.testi-wrapper {
  margin-top: 22.5rem;
  background-image: var(--background-image-opacity);
}

.testi-wrapper .testi-banner {
  border-radius: 2rem;
  height: 45rem;
  margin-top: -22.5rem;
}

.testi-wrapper .sec-ttl>* {
  color: #ffffff;
}

.testi-wrapper .testimonial {
  margin: 0 -2.1rem;
}

.testi-wrapper .testimonial .testi-item {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  margin-left: 2.1rem;
  margin-right: 2.1rem;
}

.testi-wrapper .testimonial .testi-item .quote {
  width: 4.5rem;
}

.testi-wrapper .testimonial .testi-item .desc {
  padding-top: 2rem;
}

.testi-wrapper .testimonial .testi-item .desc p {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #333333;
}

.testi-wrapper .testimonial .testi-item .testi-dtl {
  padding-top: 2rem;
  margin-top: 2rem;
  gap: 1.6rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.testi-wrapper .testimonial .testi-item .testi-dtl img {
  width: 7rem;
  height: 7rem;
  border-radius: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.testi-wrapper .testimonial .testi-item .testi-dtl .testi-name p {
  padding-top: 0.5rem;
  color: #333333;
  line-height: 1.21;
}

@media (max-width: 991.98px) {
  .testi-wrapper {
    margin-top: 18rem;
  }

  .testi-wrapper .testi-banner {
    height: 36rem;
    margin-top: -18rem;
  }
}

@media (max-width: 575.98px) {
  .testi-wrapper {
    margin-top: 14rem;
  }

  .testi-wrapper .testi-banner {
    height: 28rem;
    margin-top: -14rem;
  }
}

.client-wrapper {
  background-color: rgba(255, 99, 0, 0.1);
}

.client-wrapper .marquee {
  width: 100vw;
  height: 10rem;
  overflow-x: hidden;
}

.client-wrapper .marquee .clients {
  gap: 2rem;
  height: 100%;
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  text-align: center;
  animation: marquee 32s linear infinite;
}

.client-wrapper .marquee .clients .client-item {
  width: 20rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 1rem;
}

.client-wrapper .marquee .clients .client-item img {
  max-width: 12.2rem;
  max-height: 3.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.client-wrapper .marquee .clients.client-2 {
  animation-name: marquee2;
}

.client-wrapper .marquee:last-child {
  margin-top: 2rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee2 {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.project-wrapper .mobile-project {
  padding: 0 6rem;
  border-radius: 2rem;
  background-image: var(--background-image-opacity);
}

.project-wrapper .mobile-project .project-content {
  padding: 4rem 0;
}

.project-wrapper .mobile-project .project-content>* {
  color: #ffffff;
}

.project-wrapper .mobile-project .project-content h2 {
  line-height: 1.5;
  padding-bottom: 2rem;
}

.project-wrapper .mobile-project .project-content p {
  font-size: 1.8rem;
  line-height: 1.78;
}

.project-wrapper .mobile-project .project-content .app-download {
  gap: 1.2rem;
  padding-top: 3rem;
}

.project-wrapper .mobile-project .project-img {
  gap: 3.2rem;
  padding-left: 3.6rem;
}

.project-wrapper .mobile-project .project-img img {
  width: calc(50% - 1.6rem);
}

.project-wrapper .mobile-project .project-img img.play-store {
  margin-top: -10.7rem;
  margin-bottom: 9.3rem;
}

.project-wrapper .mobile-project .project-img img.app-store {
  margin-top: 7.4rem;
  margin-bottom: -8.8rem;
}

@media (max-width: 991.98px) {
  .project-wrapper .mobile-project {
    padding: 0 5rem;
  }
}

@media (max-width: 767.98px) {
  .project-wrapper .mobile-project .project-img {
    padding-left: 0;
  }
}

@media (max-width: 575.98px) {
  .project-wrapper .mobile-project {
    padding: 0 3rem;
  }

  .project-wrapper .mobile-project .project-content {
    padding-top: 3rem;
  }

  .project-wrapper .mobile-project .project-img {
    gap: 2rem;
  }

  .project-wrapper .mobile-project .project-img img {
    width: calc(50% - 1rem);
  }
}

.modal-backdrop {
  --bs-backdrop-opacity: 0.9;
}

#login-modal.modal,
#select-address.modal {
  --bs-modal-width: 800px;
}

@media (max-width: 991.98px) {

  #login-modal.modal,
  #select-address.modal {
    --bs-modal-width: 550px;
  }
}

@media (max-width: 575.98px) {

  #login-modal.modal,
  #select-address.modal {
    --bs-modal-margin: 3rem;
  }
}

.modal .modal-content {
  border-radius: 2rem;
  padding: 4rem;
  border: 1px solid var(--border-color);
  background-color: #ffefe5;
}

.modal .modal-content .btn-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  box-shadow: none;
  background-image: url("../images/cancel.svg");
  background-size: contain;
  opacity: 1;
  z-index: 1;
}

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

.login-modal .modal-content .modal-body .login-img {
  width: 48%;
}

.login-modal .modal-content .modal-body .login-img img {
  background-color: #162055;
  height: 47rem;
}

.login-modal .modal-content .modal-body .login-content {
  width: 52%;
}

.login-modal .modal-content .modal-body .login-content .sec-ttl {
  padding-bottom: 2rem;
}

.login-modal .modal-content .modal-body .login-content .sec-ttl h2 {
  font-size: 2.4rem;
  line-height: 1.5;
}

.login-modal .modal-content .modal-body .login-content form .form-group {
  padding-bottom: 2rem;
}

.login-modal .modal-content .modal-body .login-content form .form-group .form-label {
  font-family: "inter-medium";
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.login-modal .modal-content .modal-body .login-content form .form-group .mobile_no .form-control {
  padding-left: 5.2rem;
}

.login-modal .modal-content .modal-body .login-content form .form-group .mobile_no span {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  color: #333333;
}

.login-modal .modal-content .modal-body .login-content form .form-group .mobile_no span.invalid-feedback {
  top: 100%;
  transform: none;
  color: #dc3545;
}

.login-modal .modal-content .modal-body .login-content form .form-check {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  line-height: 1.8rem;
}

.login-modal .modal-content .modal-body .login-content form .form-check .form-check-input {
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0;
  border: 2px solid #111111;
  box-shadow: none;
}

.login-modal .modal-content .modal-body .login-content form .form-check .form-label {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 0;
}

.login-modal .modal-content .modal-body .login-content form .theme-btn {
  padding: 1.6rem 3rem;
  margin-top: 4rem;
}

@media (max-width: 767.98px) {
  .login-modal .modal-content {
    padding: 3rem 2.4rem;
  }

  .login-modal .modal-content .btn-close {
    top: 1.4rem;
    right: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .login-modal .modal-content .btn-close {
    top: 0.5rem;
    right: 0.5rem;
  }

  .login-modal .modal-content .modal-body .login-img {
    width: 100%;
  }

  .login-modal .modal-content .modal-body .login-img img {
    height: 30rem;
  }

  .login-modal .modal-content .modal-body .login-content {
    width: 100%;
  }

  .login-modal .modal-content .modal-body .login-content form .theme-btn {
    margin-top: 3rem;
  }
}

.info-modal .modal-content .btn-close {
  filter: brightness(0) invert(1);
}

.info-modal .modal-content .require-blue::before {
  display: none;
}

@media (max-width: 991.98px) {
  .info-modal .modal-content .modal-body .requirement-wrapper .requirement .requirement-form .form-dtl .form-group {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .info-modal .modal-content .modal-body .requirement-wrapper .requirement .requirement-form {
    padding: 2rem 1.6rem;
  }
}

.quantity-modal .modal-content {
  padding: 3rem;
}

.quantity-modal .modal-content .btn-close {
  top: 1rem;
  right: 1rem;
}

.quantity-modal .modal-content .modal-body .quantity-dtl div {
  font-family: "inter-semibold";
  line-height: 1.21;
  padding-bottom: 1.5rem;
}

.quantity-modal .modal-content .modal-body .qty {
  padding: 2rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.quantity-modal .modal-content .modal-body .theme-btn {
  padding: 1.6rem;
  margin-top: 3rem;
}

.registration-wrapper {
  background-image: linear-gradient(180deg, rgba(255, 99, 0, 0.1) 0%, #FFFFFF 100%);
}

.registration-wrapper .registration {
  max-width: 80rem;
  margin: auto;
  padding: 4rem;
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  background-color: #ffffff;
}

.registration-wrapper .registration .registration-form {
  gap: 2.7rem 0;
  --bs-gutter-x: 3rem;
}

.registration-wrapper .registration .registration-form .form-group .form-label {
  font-family: "inter-medium";
}

.registration-wrapper .registration .registration-form .theme-btn {
  max-width: 35.5rem;
  width: 100%;
  padding: 1.6rem 3rem;
}

.registration-wrapper .edit-profile {
  --bs-gutter-x: 5rem;
}

.registration-wrapper .edit-profile .profile-nav {
  background: var(--background-image-opacity);
  border-radius: 2rem;
  padding: 4rem;
  height: 100%;
}

.registration-wrapper .edit-profile .profile-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #ffffff;
  padding: 1.6rem 0;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.registration-wrapper .edit-profile .profile-nav .nav-link img {
  width: 2.4rem;
  height: 2.4rem;
}

.registration-wrapper .edit-profile .profile-nav .nav-link:hover {
  opacity: 0.8;
}

.registration-wrapper .edit-profile .profile-nav .nav-link:last-child {
  border-bottom: none;
}

@media (max-width: 991.98px) {
  .registration-wrapper .edit-profile {
    gap: 4rem 0;
    --bs-gutter-x: 2.4rem;
  }

  .registration-wrapper .edit-profile .profile-nav {
    padding: 2.4rem;
  }

  .registration-wrapper .edit-profile .registration {
    padding: 3rem;
  }
}

@media (max-width: 767.98px) {
  .registration-wrapper .registration {
    padding: 3rem;
  }

  .registration-wrapper .registration .registration-form {
    gap: 2.2rem 0;
    --bs-gutter-x: 2rem;
  }
}

@media (max-width: 575.98px) {
  .registration-wrapper .registration {
    padding: 3rem 2.4rem;
  }
}

@media (max-width: 575.98px) {
  #select-address.modal .modal-content {
    padding: 3rem 2rem 2rem;
  }

  #select-address.modal .modal-content .modal-body .sec-ttl h2 {
    font-size: 2.6rem;
  }
}

.all-address {
  height: calc(100vh - 25rem);
  overflow: auto;
}

.all-address .form-check {
  padding: 1.6rem 2rem 1.6rem 3rem;
  margin-right: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.all-address .form-check .form-check-input {
  margin-left: -2.8rem;
  margin-top: 0.5rem;
}

.all-address .form-check .form-check-label {
  font-family: "inter-medium";
  cursor: pointer;
}

.all-address .form-check .form-check-label b {
  font-family: "inter-bold";
}

.all-address .form-check .form-check-label b.name {
  padding-right: 1rem;
  padding-bottom: 0.8rem;
  display: inline-block;
}

.all-address .form-check .form-check-label h6 {
  padding-top: 0.6rem;
}

.all-address .form-check .form-check-label h6 b {
  font-family: "inter-semibold";
  font-weight: 600;
}

.all-address .form-check:last-child {
  border-bottom: none;
}

@media (max-width: 575.98px) {
  .all-address .form-check {
    padding: 1.6rem 0rem 1.6rem 2.8rem;
  }

  .all-address .form-check .form-check-label b.name {
    padding-right: 0.2rem;
    padding-bottom: 0.4rem;
  }
}

.table-search-wrapper {
  background: linear-gradient(180deg, rgba(255, 99, 0, 0.1) 0%, #FFFFFF 100%);
}

.table-search-wrapper .table-search .search-form {
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  padding: 2rem 2rem 3rem;
}

.table-search-wrapper .table-search .search-form>.row {
  gap: 2rem 0;
  --bs-gutter-x: 2rem;
}

.table-search-wrapper .table-search .search-form .theme-btn {
  width: 100%;
  padding: 1.6rem 3.2rem;
}

.table-search-wrapper .table-search .download-app {
  background-image: var(--background-image-opacity);
  border-radius: 2rem;
  padding: 3rem;
  max-width: 36rem;
}

.table-search-wrapper .table-search .download-app h2 {
  color: #ffffff;
  line-height: 1.5;
  font-family: "inter-bold";
}

.table-search-wrapper::after, .table-search-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 50rem;
  height: 22.5rem;
  transform: translateY(-50%);
  background-image: url("../images/woolball.png");
  background-size: 100%;
}

.table-search-wrapper::after {
  left: auto;
  right: 0;
}

@media (max-width: 991.98px) {
  .table-search-wrapper .table-search {
    gap: 2.4rem;
  }

  .table-search-wrapper .table-search .download-app {
    margin: auto;
  }
}

@media (max-width: 575.98px) {
  .table-search-wrapper .table-search .download-app {
    max-width: 100%;
  }

  .table-search-wrapper::after, .table-search-wrapper::before {
    width: 100%;
  }
}

.table-wrapper .table-info {
  padding: 3rem;
  border-radius: 2rem;
  background-color: rgba(255, 99, 0, 0.1);
  border: 1px solid var(--border-color);
}

.table-wrapper .table-info .table-head {
  padding-bottom: 2rem;
}

.table-wrapper .table-info .table-head .table-ttl h2 {
  color: #111111;
}

.table-wrapper .table-info .table-head .table-search {
  gap: 5rem;
}

.table-wrapper .table-info .table-head .table-search .refresh {
  padding: 0;
  gap: 0.8rem;
  border: none;
}

.table-wrapper .table-info .table-head .table-search .refresh img {
  width: 2.4rem;
  height: 2.4rem;
}

.table-wrapper .table-info .table-head .table-search .refresh.active img {
  animation: 1s linear 0s 1 normal none running refresh;
}

.table-wrapper .table-info .table-head .table-search .form-group {
  width: 45rem;
}

.table-wrapper .table-info .table-head .table-search .form-group .form-control {
  font-size: 1.4rem;
  padding: 1.8rem 1.8rem 1.6rem 5.2rem;
}

.table-wrapper .table-info .table-head .table-search .form-group img {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 2.4rem;
  height: 2.4rem;
  transform: translateY(-50%);
}

.table-wrapper .table-info .table-body table {
  color: #111111;
  margin-bottom: 0;
  border-spacing: 0 1rem;
  border-collapse: separate;
  line-height: 1.21;
}

.table-wrapper .table-info .table-body table thead tr {
  color: #ffffff;
  background: var(--background-image);
}

.table-wrapper .table-info .table-body table thead tr th {
  font: 400 1.8rem/1.21 "inter-regular";
  padding: 2rem;
  vertical-align: middle;
  white-space: nowrap;
}

.table-wrapper .table-info .table-body table thead tr th:first-child {
  border-radius: 1rem 0 0 1rem;
}

.table-wrapper .table-info .table-body table thead tr th:last-child {
  border-radius: 0 1rem 1rem 0;
}

.table-wrapper .table-info .table-body table thead tr th[aria-label="Deniyer"] {
  padding: 2rem 0;
}

.table-wrapper .table-info .table-body table thead tr th[aria-label="Filament"] {
  padding-right: 0;
}

.table-wrapper .table-info .table-body table.price-table thead tr th:not(:first-of-type),
.table-wrapper .table-info .table-body table.price-table tbody tr td:not(:first-of-type) {
  text-align: center;
}

.table-wrapper .table-info .table-body table tbody tr td {
  vertical-align: middle;
  padding: 1rem 2rem;
  background-color: #ffffff;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.table-wrapper .table-info .table-body table tbody tr td:first-child {
  border-left: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 1rem 0 0 1rem;
}

.table-wrapper .table-info .table-body table tbody tr td:last-child {
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0 1rem 1rem 0;
}

.table-wrapper .table-info .table-body table tbody tr td b {
  font-family: "inter-semibold";
  font-weight: 600;
}

.table-wrapper .table-info .table-body table tbody tr td h6 {
  font: 600 1.4rem/0.7 "inter-semibold";
  color: #ffffff;
  border-radius: 5rem;
  display: inline-block;
  position: relative;
  padding: 0.8rem;
  background: linear-gradient(90deg, #5D9BFD 0%, #3775FA 100%);
}

.table-wrapper .table-info .table-body table tbody tr td h6::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.8rem;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("../images/rate-arrow.svg");
  background-size: 100%;
  transform: translateY(-50%);
  display: none;
}

.table-wrapper .table-info .table-body table tbody tr td h6.up {
  background: #15CF74;
  padding: 0.9rem 0.8rem 0.9rem 2.5rem;
}

.table-wrapper .table-info .table-body table tbody tr td h6.up::before {
  display: block;
}

.table-wrapper .table-info .table-body table tbody tr td h6.down {
  background: #F65C66;
  padding: 0.9rem 0.8rem 0.9rem 2.5rem;
}

.table-wrapper .table-info .table-body table tbody tr td h6.down::before {
  display: block;
  transform: translateY(-50%) rotate(180deg);
}

.table-wrapper .table-info .table-body table tbody tr td .due {
  white-space: nowrap;
}

.table-wrapper .table-info .table-body table tbody tr td .btn {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  padding: 0;
  background-image: var(--background-image);
}

.table-wrapper .table-info .table-body table tbody tr td .btn img {
  width: 2rem;
  height: 2rem;
  filter: brightness(0) invert(1);
}

.table-wrapper .table-info .table-body #myTable_info {
  display: none;
}

.table-wrapper .table-info .table-body .dt-paging {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1rem;
}

.table-wrapper .table-info .table-body .dt-paging button {
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background-color: #ffffff;
  border-radius: 4px;
  font: 600 1.6rem/1.21 "inter-semibold";
  color: #111111;
}

.table-wrapper .table-info .table-body .dt-paging button.current {
  border-color: var(--border-color);
  color: var(--border-color);
}

@media (max-width: 991.98px) {
  .table-wrapper .table-info .table-head .table-search {
    gap: 3rem;
  }

  .table-wrapper .table-info .table-head .table-search .form-group {
    width: 30rem;
  }
}

@media (max-width: 767.98px) {
  .table-wrapper .table-info .table-head .table-search {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .table-wrapper .table-info {
    padding: 2rem;
  }

  .table-wrapper .table-info .table-head .table-search {
    gap: 2rem;
  }

  .table-wrapper .table-info .table-head .table-search .form-group {
    width: 100%;
  }
}

@keyframes refresh {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.require-blue .requirement-wrapper .requirement {
  background-image: var(--background-image);
}

.require-blue::before {
  content: "";
  position: absolute;
  bottom: -1.4rem;
  left: 0;
  width: 50rem;
  height: 22.5rem;
  transform: rotateY(180deg);
  background-image: url("../images/woolball.png");
  background-size: 100%;
  z-index: -1;
}

@media (max-width: 575.98px) {
  .require-blue::before {
    width: 100%;
  }
}

.faq-wrapper .accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.faq-wrapper .accordion .accordion-item .accordion-button {
  font: 500 2rem/1.21 "inter-medium";
  color: #111111;
  padding: 2rem;
  box-shadow: none;
}

.faq-wrapper .accordion .accordion-item .accordion-button::after {
  width: 1.8rem;
  height: 1.8rem;
  background-size: 1.8rem;
}

.faq-wrapper .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
}

.faq-wrapper .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}

.faq-wrapper .accordion .accordion-item .accordion-body {
  padding: 0.8rem 2rem 2rem;
}

.faq-wrapper .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .faq-wrapper .accordion .accordion-item .accordion-button {
    padding: 1.6rem 1.6rem 1.5rem;
  }

  .faq-wrapper .accordion .accordion-item .accordion-body {
    padding: 0.8rem 1.6rem 1.8rem;
  }
}

.cart-wrapper {
  background-image: linear-gradient(180deg, rgba(255, 99, 0, 0.1) 0%, #FFFFFF 100%);
}

.cart-wrapper .cart-order {
  --bs-gutter-x: 2rem;
}

.cart-wrapper .cart-order .carts .cart-item {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background-color: #ffffff;
  margin-bottom: 2rem;
}

.cart-wrapper .cart-order .carts .empty-cart-item {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background-color: #ffffff;
  margin-bottom: 2rem;
  height: 250px;
}

.cart-wrapper .cart-order .carts .empty-cart-item p {
  font-size: 2rem;
  padding: 0 20px;
  font-family: 'inter-medium';
}

.cart-wrapper .cart-order .carts .cart-item .cart-head {
  padding: 3rem 3rem 2rem;
}

.cart-wrapper .cart-order .carts .cart-item .cart-head p {
  font: 600 1.6rem/1.21 "inter-semibold";
  width: 100%;
}

.cart-wrapper .cart-order .carts .cart-item .cart-body {
  padding: 2rem 3rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cart-wrapper .cart-order .carts .cart-item .cart-body .form-group {
  width: 100%;
}

.cart-wrapper .cart-order .carts .cart-item .cart-body .form-group .form-label {
  font: 500 1.6rem/1.21 "inter-medium";
  margin-bottom: 0.8rem;
}

.cart-wrapper .cart-order .carts .cart-item .cart-foot {
  padding: 2rem 3rem 2.6rem;
}

.cart-wrapper .cart-order .carts .cart-item .cart-foot .total h4 {
  font-family: "inter-medium";
}

.cart-wrapper .cart-order .carts .cart-item .cart-foot .total p {
  line-height: 1.2;
}

.cart-wrapper .cart-order .carts .cart-item .cart-foot .cancel {
  border: none;
  line-height: 1;
  background-color: transparent;
}

.cart-wrapper .cart-order .carts .cart-item .cart-foot .cancel img {
  width: 2.4rem;
  height: 2.4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.cart-wrapper .cart-order .carts .cart-item:last-child {
  margin-bottom: 0;
}

.cart-wrapper .cart-order .your-details .select-address {
  white-space: nowrap;
  line-height: 1.19;
  background-image: var(--background-image);
  border-bottom: 1px solid var(--border-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cart-wrapper .cart-order .your-details .cart-form>.row {
  gap: 3rem 0;
  --bs-gutter-x: 3rem;
}

.cart-wrapper .cart-order .your-details .cart-form .form-group .form-label {
  font-family: "inter-medium";
  line-height: 1.21;
  margin-bottom: 0.8rem;
}

.cart-wrapper .cart-order .order-summary {
  background-image: linear-gradient(90deg, rgb(253 161 104) 0%, rgb(247 93 83) 100%);
  border-radius: 2rem;
  padding: 3rem;
}

.cart-wrapper .cart-order .order-summary table {
  font: 500 1.8rem/1.21 "inter-medium";
  width: 100%;
  color: #ffffff;
}

.cart-wrapper .cart-order .order-summary table tbody tr td {
  padding-bottom: 2rem;
}

.cart-wrapper .cart-order .order-summary table tbody tr td:nth-of-type(2) {
  text-align: right;
}

.cart-wrapper .cart-order .order-summary table tbody tr:last-child td {
  padding-bottom: 3rem;
}

.cart-wrapper .cart-order .order-summary table tfoot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-wrapper .cart-order .order-summary table tfoot tr td {
  font-size: 2.4rem;
  padding-top: 2rem;
}

.cart-wrapper .cart-order .order-summary table tfoot tr td:nth-of-type(2) {
  text-align: right;
}

.cart-wrapper .cart-order .order-summary .theme-btn {
  padding: 1.6rem 3.2rem;
  text-align: center;
}

.cart-wrapper .cart-order .order-step ul li {
  display: flex;
  align-items: center;
  padding-bottom: 3rem;
  position: relative;
}

.cart-wrapper .cart-order .order-step ul li .step-img {
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background-color: #ffffff;
}

.cart-wrapper .cart-order .order-step ul li .step-img img {
  width: 2.4rem;
}

.cart-wrapper .cart-order .order-step ul li .step-title {
  padding-left: 1.5rem;
}

.cart-wrapper .cart-order .order-step ul li .step-title h4 {
  font-family: "inter-semibold";
  padding-bottom: 0.5rem;
}

.cart-wrapper .cart-order .order-step ul li .step-title p {
  color: #555555;
}

.cart-wrapper .cart-order .order-step ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.5rem;
  width: 1px;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.1);
}

.cart-wrapper .cart-order .order-step ul li:last-child {
  padding-bottom: 0;
}

.cart-wrapper .cart-order .order-step ul li:last-child::after {
  display: none;
}

.cart-wrapper .cart-order .order-step ul li.active .step-img {
  border-color: #15cf74;
}

.cart-wrapper .cart-order .order-step ul li.active .step-img img {
  filter: invert(58%) sepia(37%) saturate(2697%) hue-rotate(108deg) brightness(104%) contrast(84%);
}

.cart-wrapper .cart-order .order-step ul li.active::after {
  background-color: #15cf74;
}

.cart-wrapper::after, .cart-wrapper::before {
  content: "";
  position: absolute;
  top: 8rem;
  left: 0;
  width: 50rem;
  height: 22.5rem;
  background-image: url("../images/woolball.png");
  background-size: 100%;
}

.cart-wrapper::after {
  left: auto;
  right: 0;
}

@media (max-width: 991.98px) {
  .cart-wrapper .cart-order {
    gap: 5rem 0;
  }
}

@media (max-width: 575.98px) {
  .cart-wrapper .cart-order .carts .cart-item .cart-head {
    padding: 1.8rem 1.6rem 1.4rem;
  }

  .cart-wrapper .cart-order .carts .cart-item .cart-body,
  .cart-wrapper .cart-order .carts .cart-item .cart-foot {
    padding: 1.4rem 1.6rem;
  }

  .cart-wrapper .cart-order .your-details .sec-ttl .ttl p {
    line-height: 1.3;
  }

  .cart-wrapper .cart-order .your-details .sec-ttl .select-address {
    font-family: "inter-bold";
  }

  .cart-wrapper .cart-order .your-details .cart-form>.row {
    gap: 2.2rem 0;
  }

  .cart-wrapper::after, .cart-wrapper::before {
    width: 100%;
  }
}

.mini-cart {
  position: fixed;
  top: 0;
  right: -100%;
  width: 55rem;
  height: 100vh;
  padding: 3rem 3rem 4rem;
  background-color: #ffefe5;
  box-shadow: 0px 0px 50px 0px rgba(17, 17, 17, 0.1);
  z-index: 12;
  transition: all 0.4s linear;
}

.mini-cart .cart-head {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(241, 70, 44, 0.479);
}

.mini-cart .cart-head .close {
  width: 2.4rem;
  cursor: pointer;
}

.mini-cart .cart-body {
  margin: 2rem 0;
  padding-right: 1rem;
  height: calc(100% - 5.7rem - 13.1rem - 4rem);
  overflow-y: auto;
  overflow-x: hidden;
}

.mini-cart .cart-body h4 {
  font-family: "inter-semibold";
}

.mini-cart .cart-body .mini-cart-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.mini-cart .cart-body .mini-cart-item .item-dtl {
  font: 600 1.6rem/1.21 "inter-semibold";
  gap: 1.5rem 0;
}

.mini-cart .cart-body .mini-cart-item .qty p {
  padding-bottom: 0;
}

.mini-cart .cart-body .mini-cart-item:last-child {
  border-bottom: 0;
}

.mini-cart .cart-body::-webkit-scrollbar,
.all-address::-webkit-scrollbar {
  width: 0.4rem;
  border-radius: 5px;
}

.mini-cart .cart-body::-webkit-scrollbar-track,
.all-address::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.mini-cart .cart-body::-webkit-scrollbar-thumb,
.all-address::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 5px;
}

.mini-cart .cart-foot .total-cart {
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.mini-cart .cart-foot .total-cart h3 {
  line-height: 1.2;
}

.mini-cart .cart-foot .theme-btn {
  padding: 1.6rem 3.2rem;
}

.mini-cart.active {
  right: 0;
}

@media (max-width: 575.98px) {
  .mini-cart {
    width: 90%;
    padding: 2rem;
    height: calc(100vh + 2px);
  }

  .mini-cart .cart-head {
    padding-bottom: 1.4rem;
  }

  .mini-cart .cart-body {
    height: calc(100% - 5.7rem - 11.8rem - 4rem);
  }

  .mini-cart .cart-foot .total-cart {
    padding-bottom: 1.6rem;
    margin-bottom: 2.5rem;
  }
}

.registration-wrapper.inquiry-support {
  background: none;
}

.registration-wrapper.inquiry-support::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40rem;
  background-image: var(--background-image-opacity);
}

.update-wrapper.support-page {
  padding-top: 12rem;
  background: linear-gradient(180deg, rgba(255, 99, 0, 0.1) 0%, #FFFFFF 100%);
}

.update-wrapper.support-page .sec-ttl .search {
  max-width: 45rem;
  width: 100%;
}

.update-wrapper.support-page .sec-ttl .search label {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.update-wrapper.support-page .sec-ttl .search input {
  font-size: 1.4rem;
  padding: 1.75rem 2rem 1.65rem 5.2rem;
}

.update-wrapper.support-page .stay-update {
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  --bs-gutter-x: 3rem;
  gap: 3rem 0;
}

.update-wrapper.support-page .stay-update .card-item {
  margin: 0;
}

@media (max-width: 991.98px) {
  .update-wrapper.support-page {
    padding-top: 8rem;
  }
}

@media (max-width: 767.98px) {
  .update-wrapper.support-page {
    padding-top: 6rem;
  }

  .update-wrapper.support-page .stay-update {
    --bs-gutter-x: 2rem;
    gap: 2rem 0;
  }
}

.news-dtl-wrapper {
  background: #fff linear-gradient(180deg, rgba(255, 99, 0, 0.1) 0%, #FFFFFF 100%);
}

.news-dtl-wrapper .news-dtl h1 {
  text-align: center;
  max-width: 70rem;
  margin: auto;
  color: #111111;
}

.news-dtl-wrapper .news-dtl h6 {
  text-align: center;
  font-family: "inter-bold";
  padding-top: 2rem;
}

.news-dtl-wrapper .news-dtl .news-banner {
  max-width: 102.4rem;
  margin: 4rem auto;
  display: block;
  max-height: 50rem;
  border-radius: 1.6rem;
}

.news-dtl-wrapper .news-dtl .video {
  max-width: 102.4rem;
  margin: 4rem auto;
}

.news-dtl-wrapper .news-dtl .video iframe {
  border-radius: 1.6rem;
  width: 100%;
  aspect-ratio: 1/0.56;
}

.news-dtl-wrapper .news-dtl .news-desc {
  max-width: 80rem;
  margin: auto;
}

.news-dtl-wrapper .news-dtl .news-desc p {
  padding-bottom: 1.6rem;
}

@media (max-width: 575.98px) {
  .news-dtl-wrapper .news-dtl h1 {
    font-size: 3rem;
  }

  .news-dtl-wrapper .news-dtl .news-banner {
    margin: 3rem auto;
  }
}

.all-order-wrapper {
  background: linear-gradient(180deg, rgba(255, 99, 0, 0.1) 0%, #FFFFFF 100%);
}

.all-order-wrapper .all-order .order-item {
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 3rem;
}

.all-order-wrapper .all-order .order-item .accordion-button {
  background-color: transparent;
  box-shadow: none;
}

.all-order-wrapper .all-order .order-item .accordion-button::after {
  width: 1.8rem;
  height: 1.8rem;
  background-size: 1.8rem;
}

.all-order-wrapper .all-order .order-item .order-head p b {
  font-family: "inter-semibold";
  font-weight: 600;
  vertical-align: middle;
}

.all-order-wrapper .all-order .order-item .order-head p .status,
.complaints table tr td .status {
  font: 600 1.4rem/0.7 "inter-semibold";
  color: #ffffff;
  background-color: #15CF74;
  border-radius: 5rem;
  padding: 0.6rem 1.6rem 0.7rem;
}

.all-order-wrapper .all-order .order-item .order-body table,
.complaints table {
  border-spacing: 0 1rem;
  border-collapse: separate;
}

.all-order-wrapper .all-order .order-item .order-body table thead tr th,
.complaints table thead tr th {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.21;
  padding: 1rem 2rem;
  white-space: nowrap;
}

.complaints table thead tr th {
  font-weight: 600;
  font-family: 'inter-semibold';
}

.all-order-wrapper .all-order .order-item .order-body table tbody tr td,
.complaints table tbody tr td {
  vertical-align: middle;
  padding: 1.6rem 2rem;
  background-color: #ffffff;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.all-order-wrapper .all-order .order-item .order-body table tbody tr td:first-child,
.complaints table tbody tr td:first-child {
  border-left: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 1rem 0 0 1rem;
}

.all-order-wrapper .all-order .order-item .order-body table tbody tr td:last-child,
.complaints table tbody tr td:last-child {
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0 1rem 1rem 0;
}

.all-order-wrapper .all-order .order-item .order-body table tbody tr td b,
.complaints table tbody tr td b {
  font-family: "inter-semibold";
  font-weight: 600;
}

.all-order-wrapper .all-order .order-item .order-foot .order-log .log-item {
  width: 100%;
}

.all-order-wrapper .all-order .order-item .order-foot .order-log .log-item h6 {
  font-family: "inter-regular";
  line-height: 1.7;
}

.all-order-wrapper .all-order .order-item .order-foot .order-log .log-item .log-icon {
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  margin: 2rem auto;
  position: relative;
  outline: 1px dashed rgba(17, 17, 17, 0.1);
  border: 0.5rem solid #ffffff;
  background-color: #ffffff;
  z-index: 1;
}

.all-order-wrapper .all-order .order-item .order-foot .order-log .log-item .log-icon img {
  width: 4rem;
  height: 4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.all-order-wrapper .all-order .order-item .order-foot .order-log .log-item h4 {
  font-family: "inter-semibold";
  padding-bottom: 1rem;
}

.all-order-wrapper .all-order .order-item .order-foot .order-log .log-item::after {
  content: "";
  position: absolute;
  top: 11rem;
  left: 50%;
  width: 100%;
  height: 1px;
  border-top: 1px dashed rgba(17, 17, 17, 0.1);
}

.all-order-wrapper .all-order .order-item .order-foot .order-log .log-item:first-child::after {
  left: 0;
  width: 150%;
}

.all-order-wrapper .all-order .order-item .order-foot .order-log .log-item:last-child::after {
  width: 50%;
}

.all-order-wrapper .all-order .order-item .order-foot .order-log .log-item.active .log-icon {
  outline-color: #15CF74;
  background-color: #15CF74;
}

.all-order-wrapper .all-order .order-item .order-foot .order-log .log-item.active .log-icon img {
  filter: brightness(0) invert(1);
}

.all-order-wrapper .all-order .order-item .order-foot .order-log .log-item.active::after {
  border-color: #15CF74;
}

.all-order-wrapper .all-order .order-item .cancle-order {
  background: #dc3545;
}

.all-order-wrapper .all-order .order-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .all-order-wrapper .all-order .order-item .order-foot .order-log {
    overflow: auto;
  }

  .all-order-wrapper .all-order .order-item .order-foot .order-log .log-item {
    width: 18rem;
    flex-shrink: 0;
  }

  .all-order-wrapper .all-order .order-item .order-foot .order-log .log-item .log-icon {
    width: 6rem;
    height: 6rem;
    margin: 1rem auto 1.2rem;
  }

  .all-order-wrapper .all-order .order-item .order-foot .order-log .log-item .log-icon img {
    width: 2.6rem;
    height: 2.6rem;
  }

  .all-order-wrapper .all-order .order-item .order-foot .order-log .log-item h4 {
    font-size: 1.6rem;
  }

  .all-order-wrapper .all-order .order-item .order-foot .order-log .log-item h6 {
    font-size: 1.3rem;
  }

  .all-order-wrapper .all-order .order-item .order-foot .order-log .log-item p {
    font-size: 1.4rem;
  }

  .all-order-wrapper .all-order .order-item .order-foot .order-log .log-item::after {
    top: 8.5rem;
  }
}

@media (max-width: 575.98px) {
  .all-order-wrapper .all-order .order-item {
    padding: 2rem;
    margin-bottom: 4rem;
  }

  .all-order-wrapper .all-order .order-item .order-head {
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 2.6rem;
  }

  .complaints-modal .modal-content {
    padding: 2rem;
  }

  .complaints table tbody tr td,
  .complaints table thead tr th {
    padding: 1rem;
  }
}

.chart-container {
  display: none;
  margin-top: 20px;
}

nav ul.pagination {
  gap: 1rem;
  margin-top: 2rem;
}

nav ul.pagination li button.page-link {
  min-width: 3.4rem;
  height: 3.4rem;
  border: 1px solid rgba(17, 17, 17, 0.2);
  background-color: #ffffff;
  border-radius: 4px;
  font: 600 1.6rem / 1 "inter-semibold";
  color: #111111;
}

nav ul.pagination li.active button.page-link {
  border-color: var(--border-color);
  color: var(--border-color);
}

nav ul.pagination li.disabled button.page-link {
  opacity: 0.6;
}

select.custom-dropdown {
  display: none !important;
}

.dropdown-select {
  cursor: pointer;
  position: relative;
}

.dropdown-select.open .list {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-select.open .option {
  cursor: pointer;
}

.dropdown-select .list {
  transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
  transform: scale(0.75);
  background-color: #fff;
  border-radius: 2rem;
  margin-top: 4px;
  padding: 1rem;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  max-height: 250px;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.dropdown-select .list ul {
  max-height: 180px;
  overflow: auto;
  white-space: nowrap;
  padding-right: 0.8rem;
}

.dropdown-select .list ul::-webkit-scrollbar {
  width: 0.4rem;
}

.dropdown-select .list ul::-webkit-scrollbar-thumb {
  background-color: #ff0b00;
}

.dropdown-select .current {
  white-space: nowrap;
  width: calc(100% - 2.8rem);
  display: block;
  overflow: hidden;
}

.dropdown-select .dd-searchbox {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 1rem;
  outline: none;
  margin-bottom: 0.5rem;
}

.dropdown-select .option {
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 0.5rem 0;
  transition: all 0.2s;
}

.dropdown-select .option:hover,
.dropdown-select .option:focus,
.dropdown-select .option.selected:focus {
  background-color: #f6f6f6 !important;
}

.dropdown-select .option.selected {
  color: #ff0b00;
}

.dropdown-select a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.dropdown-select a:hover {
  color: #666;
}

.whatsapp-icon {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 100%;
  box-shadow: 0 0 10px rgb(0 0 0 / 40%);
  animation: whatsapp 1s ease-in-out alternate infinite;
}

@keyframes whatsapp {
  0% {
    transform: scale(1);
  }

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

/* pages css */
/*# sourceMappingURL=application.css.map */