:root {
  --primary: #008da9;
  --title: #1a1a1a;
  --body: #404040;
  --body-lite: #666666;
  --white: #fff;
  --black: #000;
  --gray: #9c9c9c;
  --border: #dcdcdc;
  --body-font: "Trebuchet MS";
  --breadcrumb-divider: url("./../images/common/right-light-arrow.svg") !important;
}

/* reset.css */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Trebuchet MS";
  src:
    url("./../fonts/TrebuchetMS.woff2") format("woff2"),
    url("./../fonts/TrebuchetMS.woff") format("woff"),
    url("./../fonts/TrebuchetMS.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Trebuchet MS";
  src:
    url("./../fonts/TrebuchetMS-Italic.woff2") format("woff2"),
    url("./../fonts/TrebuchetMS-Italic.woff") format("woff"),
    url("./../fonts/TrebuchetMS-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
body {
  line-height: 1.5;
  color: var(--body);
  font-family: var(--body-font);
}

.accountLayout {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

a {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  text-decoration: none;
}

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

.bg-secondary-se {
  background-color: #f8f8f8;
}

.h-bg-gradient {
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%) !important;
}

.h-bg-gradient-light {
  background: linear-gradient(180deg, #9dafff 0%, #a689c4 100%) !important;
}

body.h-bg-gradient-light header.h-bg-gradient {
  background: transparent !important;
  box-shadow: none;
}

.breadcrumb {
  padding: 20px 0;
  margin: 0;
}
.breadcrumb a,
.breadcrumb .breadcrumb-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--black);
}
.breadcrumb a:hover,
.breadcrumb .breadcrumb-item:hover {
  color: var(--black);
}
.breadcrumb .breadcrumb-item::before {
  content: "" !important;
  background-image: url(./../images/common/right-light-arrow.svg);
  background-size: 6px;
  height: 20px;
  margin-top: 6px;
  padding: 0 8px;
  background-repeat: no-repeat;
}
.breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}
.breadcrumb .breadcrumb-item.text-primary {
  color: #008da9 !important;
}

h1.breadcrumb-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  color: #1a1a1a;
  margin-bottom: 0px;
}

h1.breadcrumb-title.text-primary {
  color: #008da9 !important;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 100%;
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 100%;
    padding: 0 36px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 100%;
    padding: 0 72px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 100%;
    padding: 0 72px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
    padding: 0 20px;
  }
}
.ma-container {
  padding: 16px;
  height: 100vh;
  width: 100%;
}
.ma-container p {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #666666;
}
.ma-container span {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #666666;
}

button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 30px;
  gap: 5px;
  color: var(--white);
  background: var(--primary);
  border-radius: 6px;
  border: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
}

button.btn-full {
  width: 100%;
}

button.btn-cart {
  background: #025a6b;
  color: var(--white);
}

button.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

button.btn-google {
  background: #43b7e7;
  color: var(--white);
}

button.btn-dark {
  background: #1a1a1a;
  color: var(--white);
}

button.btn-white-outline {
  background: #ffffff;
  border: 0.5px solid #d1d1d1;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 8px 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1a1a1a;
}

.btn.btn-outline-primary {
  --bs-btn-color: #008da9;
  --bs-btn-border-color: #008da9;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #008da9;
  --bs-btn-hover-border-color: #008da9;
  --bs-btn-active-bg: #008da9;
  --bs-btn-active-border-color: #008da9;
  --bs-btn-disabled-color: #008da9;
  --bs-btn-disabled-border-color: #008da9;
}
.btn.btn-outline-primary:hover svg path {
  fill: #fff;
}

@media (max-width: 1000px) {
  button {
    font-size: 15px;
    line-height: 16px;
    padding: 10px 15px;
    height: 45px;
  }
  button:disabled {
    background: #e2e2e2;
  }
  button.btn-blue-outline {
    padding: 8px 22px;
    gap: 10px;
    width: 72px;
    height: 30px;
    border: 1px solid #008da9;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    line-height: 14px;
    color: #008da9;
    background-color: transparent;
  }
}
label {
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  color: var(--body-lite);
  opacity: 0.7;
  cursor: pointer;
}

.form-check {
  padding-left: 0px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  min-height: 100%;
}
.form-check .form-check-input {
  margin-left: 0;
}

.form-control {
  font-weight: 400;
  font-size: 16px;
  color: var(--body);
  padding-left: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
}
.form-control:focus {
  box-shadow: none;
  border-bottom: 1px solid var(--border);
}

input[type="checkbox"] {
  height: 14px;
  width: 14px;
  border-radius: 3px !important;
  margin-top: -3px;
}
input[type="checkbox"]:focus {
  box-shadow: none;
  border: 1px solid var(--border);
}
input[type="checkbox"]:checked {
  background-color: var(--primary);
  border: 1px solid var(--primary);
}

.form-control.style-2 {
  background: #ffffff;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
  padding: 10px 12px;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #9c9c9c;
}
.form-control.style-2::-moz-placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #9c9c9c;
}
.form-control.style-2::placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #9c9c9c;
}

.form-check-input[type="checkbox"] {
  padding: 0;
}

input[type="radio"] {
  padding: 0;
}

label {
  color: #404040 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 16px !important;
  text-transform: uppercase !important;
  opacity: 1;
}

a {
  font-size: 13px;
  font-weight: 400;
  color: #008da9;
  line-height: 18px;
}

.pass {
  position: relative;
}

input {
  border: 0;
  width: 300px;
  border: 1px solid #a49696 !important;
  padding: 5px 10px !important;
  border-radius: 4px;
  width: 300px;
  color: #8b8b8b;
  font-size: 15px;
  font-weight: 400;
  height: 31px !important;
}
input::-moz-placeholder {
  color: #8b8b8b;
}
input::placeholder {
  color: #8b8b8b;
}
input:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  cursor: pointer;
}

.hidepass {
  position: absolute;
  right: 10px;
  top: 10px;
}

button {
  background: #008da9;
  color: #ffffff;
  font-size: 15px;
  border: none;
  padding: 6px 20px;
  border-radius: 4px;
}
@media (max-width: 1000px) {
  button {
    height: 31px;
  }
}

.userpage {
  height: 100vh;
  overflow: auto;
}
.userpage .user {
  padding: 0 10px;
}
.userpage .user h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  color: #000000;
  margin-bottom: 8px;
}
@media (max-width: 1200px) {
  .userpage .user h1 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .userpage .user h1 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .userpage .user h1 {
    font-size: 22px;
  }
}
.userpage .user p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .userpage .user p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .userpage .user p {
    font-size: 14px;
  }
}
.userpage .user img {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .userpage .user img {
    width: 100%;
  }
}
.userpage .user .back {
  gap: 24px;
}

.authorize p {
  margin-bottom: 4px !important;
}
.authorize button {
  margin-top: 20px !important;
}

.login {
  position: relative;
}
.login .loginform {
  background: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  position: relative;
  width: 400px;
  margin: 154px auto;
}
@media (max-width: 575px) {
  .login .loginform {
    width: 100%;
  }
}
.login .loginform .form {
  padding: 24px;
  border: none;
}
@media (max-width: 575px) {
  .login .loginform .form {
    padding: 16px;
  }
}
.login .loginform .form h1 {
  color: #222222;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 8px;
}
.login .loginform .form p {
  font-size: 15px;
  font-weight: 400;
  color: #5a4e4d;
  margin-bottom: 24px;
}
.login .loginform .form .name {
  margin-bottom: 14px;
}
.login .loginform .form .name input {
  width: 100%;
}
.login .loginform .form .form-check {
  margin-bottom: 24px;
}
.login .loginform .form .form-check label {
  color: #222222;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
}
.login .loginform .form button {
  width: 100%;
}
.login .loginform .form button.btn-primary {
  background: #008da9;
  border: none;
  color: #ffffff;
  border-radius: 4px;
}
.login .loginform .form .createacc {
  text-align: center;
  margin-top: 15px;
}
.login .loginform .form .createacc a {
  margin-left: 4px;
  font-size: 15px;
  font-weight: 400;
}
.login .loginform .form .border {
  width: 100%;
}
.login .loginform .form span {
  color: #d9dee3;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.login .loginform .form .verifystep input {
  width: 40px;
  height: 40px;
  font-size: 22px;
  font-weight: 600;
  color: #5a4e4d;
}
@media (max-width: 575px) {
  .login .loginform .form .verifystep input {
    width: 100%;
    height: auto;
  }
}
.login .dotimage {
  position: absolute;
  right: -46px;
  z-index: -1;
  top: -40px;
}
@media (max-width: 575px) {
  .login .dotimage {
    right: 0;
  }
}
.login .dotimage2 {
  position: absolute;
  left: -56px;
  z-index: -1;
  bottom: -70px;
}
@media (max-width: 575px) {
  .login .dotimage2 {
    left: 0;
  }
}
.login .logo {
  text-align: center;
  width: 81.21px;
  height: 80px;
  margin: 24px auto;
  margin-bottom: 0;
}

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

.invoice {
  padding: 50px;
  max-width: 1056px;
  margin: auto;
}
.invoice .top {
  margin-bottom: 50px;
}
.invoice .top .brand-logo img {
  width: 130.12px;
  height: 50px;
}
.invoice .top .brand-title h2 {
  font-weight: 400;
  font-size: 32px;
  line-height: 35px;
  color: #1a1a1a;
  text-align: end;
  text-transform: uppercase;
}
.invoice .address p {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #1a1a1a;
  max-width: 200px;
}
.invoice .address .billing-add p:first-child {
  margin-bottom: 16px;
}
.invoice .address .add-right p {
  margin-left: auto;
  text-align: end;
}
.invoice .order-details {
  margin-bottom: 50px;
}
.invoice .order-details p {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.invoice .order-details .InvoiceNumber {
  margin-left: auto;
  text-align: end;
}
.invoice table {
  border: 1px solid #1a1a1a;
  width: 100%;
}
.invoice table thead {
  background: #dadada;
}
.invoice table thead th {
  border: 1px solid #1a1a1a;
  padding: 8px 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  color: #1a1a1a;
}
.invoice table tbody tr td {
  border: 1px solid #1a1a1a;
  padding: 8px 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #1a1a1a;
}
.invoice table tbody tr.total td:first-child {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
}
.invoice table tbody tr.total td {
  background: #dadada;
}
.invoice table tbody tr.bold-info p {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #1a1a1a;
}
.invoice table tbody tr.bold-info.right p {
  text-align: end;
}
.invoice table tbody tr.bold-info.right p:first-child {
  margin-bottom: 40px;
}
.invoice .payable {
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1a1a1a;
}

header {
  background: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.04);
}
header .navbar-toggler {
  height: 44px;
  width: 50px;
}
header .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar-nav li.nav-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #404040;
  border: 1px solid transparent;
}
header .navbar-nav li.nav-item .nav-link {
  padding: 8px 20px;
}
.form-group-mb {
  border: 1px solid #ced4da;
  padding: 5px;
  border-radius: 6px;
  width: auto;
}
.form-group-mb:focus {
  color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
.form-group-mb input {
  display: inline-block;
  border: none !important;
  width: auto;
  border: none;
}
.form-group-mb input:focus {
  box-shadow: none;
}
.login .loginform .form span{ color: #9a9c9f !important;}
@media (max-width: 991px) {
  header .navbar-nav li.nav-item .nav-link {
    padding-left: 0;
  }
}
header .navbar-nav li.nav-item .nav-link.active {
  color: #008da9;
}
@media (max-width: 992px) {
  header .navbar-nav li.nav-item:hover {
    background-color: #008da9;
    border-radius: 4px;
  }
  header .navbar-nav li.nav-item:hover .nav-link {
    color: #fff;
    transition: none;
    padding-left: 12px;
  }
}
header .header-right-list {
  position: relative;
  margin-top: 10px;
}
header .header-right-list span {
  color: #fff;
  position: absolute;
  right: -9px;
  top: -9px;
  border: 1.5px solid #ffffff;
  width: 18px;
  height: 18px;
  font-weight: 500;
  font-size: 10px;
  line-height: 11px;
  border-radius: 100px;
  box-shadow: 0px 7px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #008da9;
  z-index: 99;
}

.header-search {
  height: 94px;
  padding: 25px;
  background-color: #008da9;
}
.header-search .search {
  display: flex;
  align-items: center;
}
.header-search .search .left {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 30px;
}
.header-search .search .header-inpt {
  background-color: transparent;
  border: none !important;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
.header-search .search .header-inpt::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
.header-search .search .header-inpt::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
.header-search .search .header-go {
  background-color: #ffffff;
  border-radius: 80px;
  color: #008da9;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  height: 44px;
}

.carddetail {
  gap: 20px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1400px) {
  .carddetail {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .carddetail {
    grid-template-columns: repeat(3, 1fr);
  }
}
.carddetail .prod-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}
.carddetail .prod-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: contain;
  object-fit: contain;
}
.carddetail .prod-info button {
  font-size: 15px;
}
@media (max-width: 1200px) {
  .carddetail .prod-info button {
    padding: 14px;
  }
}
.carddetail .prod-info p {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: var(--title);
  margin-top: 16px;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.carddetail .prod-info .prod-star {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  margin-bottom: 12px;
}
.carddetail .prod-info .prod-star span {
  padding-top: 3px;
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  color: var(--title);
}
.carddetail .prod-info .prod-star .rating {
  display: flex;
  align-items: center;
  gap: 3px;
}
.carddetail .prod-info h4 {
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: var(--title);
  margin-bottom: 12px;
}
.carddetail .prod-info h4 span {
  font-weight: 500;
  font-size: 15px;
  line-height: 17px;
  text-decoration-line: line-through;
  color: var(--body-lite);
  margin-left: 6px;
}

.card.prod-card {
  border-radius: 8px;
  padding: 0;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
}
.card.prod-card .prod-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}
.card.prod-card .prod-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: contain;
  object-fit: contain;
}
.card.prod-card .prod-info {
  padding: 16px;
}
.card.prod-card .prod-info button {
  font-size: 15px;
}
@media (max-width: 1200px) {
  .card.prod-card .prod-info button {
    padding: 14px;
  }
}
.card.prod-card .prod-info p {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: var(--title);
  margin-top: 30px;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card.prod-card .prod-info .prod-star {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  margin-bottom: 12px;
}
.card.prod-card .prod-info .prod-star span {
  padding-top: 3px;
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  color: var(--title);
}
.card.prod-card .prod-info .prod-star .rating {
  display: flex;
  align-items: center;
  gap: 3px;
}
.card.prod-card .prod-info h4 {
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: var(--title);
  margin-bottom: 12px;
}
.card.prod-card .prod-info h4 span {
  font-weight: 500;
  font-size: 15px;
  line-height: 17px;
  text-decoration-line: line-through;
  color: var(--body-lite);
  margin-left: 6px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1350px) and (min-width: 1150px) {
  .prod-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1150px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 650px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 350px) {
  .prod-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.prod-grid .prod-img {
  border-radius: 0 !important;
}
.prod-grid .prod-img img {
  border-radius: 0 !important;
}
.prod-grid .prod-info h4 {
  margin: 0 !important;
}
.prod-grid .prod-info p {
  -webkit-line-clamp: 4 !important;
  margin-top: 0 !important;
  -webkit-box-orient: vertical;
}

.ma-container.MA-home .card {
  background: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  border: none;
  padding: 10px;
}

.swiper.hero-banner {
  width: 100%;
  cursor: pointer;
}
.swiper.hero-banner .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}
.swiper.hero-banner .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}
.swiper.hero-banner .swiper-pagination .swiper-pagination-bullet {
  opacity: 0.5;
  border: 2px solid #008da9;
  width: 10px;
  height: 10px;
  background-color: transparent;
}
.swiper.hero-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #008da9;
  border: 1px solid #008da9;
  opacity: 1;
}

@media (min-width: 2000px) {
  .swiper.hero-banner {
    max-height: 600px;
  }
  .swiper.hero-banner .swiper-slide img {
    max-height: 600px;
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    overflow: hidden;
  }
}
.swiper.hero-banner2 {
  margin-top: 70px;
  cursor: pointer;
}
.swiper.hero-banner2 .swiper-slide {
  width: 80%;
}
.swiper.hero-banner2 .swiper-slide img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}
.swiper.hero-banner2 .swiper-slide:nth-child(2n) {
  width: 60%;
}
.swiper.hero-banner2 .swiper-slide:nth-child(3n) {
  width: 40%;
}

.swiper.aboutSwiper .swiper-wrapper {
  padding-bottom: 50px;
}
.swiper.aboutSwiper .swiper-wrapper .swiper-slide {
  height: 120px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper.aboutSwiper .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper.aboutSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  background-color: transparent;
  border: 1px solid #008da9;
}
.swiper.aboutSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #008da9;
}

.filter .accordion .accordion-item {
  border-radius: 0;
  border: none;
  background-color: transparent;
}
.filter .accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  box-shadow: none;
  color: var(--body);
  padding: 0;
  margin-bottom: 16px;
  cursor: pointer;
  transition: none;
}
.filter .accordion .accordion-item .accordion-header .accordion-button::after {
  transform: none;
  background-image: url(./../images/common/arrow-right.svg);
  background-size: 8px;
  background-repeat: no-repeat;
}
.filter .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url(./../images/common/arrow-bottom.svg);
  background-size: 12px;
  background-repeat: no-repeat;
}
.filter .accordion .accordion-item .accordion-body {
  padding: 0;
  margin-bottom: 16px;
}
.filter .accordion .accordion-item .accordion-body ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-bottom: 10px;
  padding: 5px 10px;
}
.filter .accordion .accordion-item .accordion-body ul li:hover {
  cursor: pointer;
  border: 1px solid #008da9;
  color: #008da9;
}
.filter .accordion .accordion-item .accordion-body ul li:hover svg path {
  stroke: #008da9;
}
.filter .accordion.accordion-nested .accordion-header .accordion-button {
  display: block;
  padding-left: 30px;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}
.filter .accordion.accordion-nested .accordion-button::after {
  background-image: url(./../images/common/plus.svg) !important;
  background-size: 12px !important;
  transition: none;
  position: absolute;
  left: 0;
  margin-top: 3px;
}
.filter .accordion.accordion-nested .accordion-button:not(.collapsed)::after {
  background-image: url(./../images/common/minus.svg) !important;
  margin-top: 9px;
}
.filter .accordion.sub-accordion-nested {
  padding-left: 25px;
  border-left: 1px solid #d9d9d9;
  margin-left: 5px;
}
.filter .filters-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: baseline;
}
.filter .filters-header .page-title {
  font-size: 28px;
  color: #008da9;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.filter .filters-header .view-catlog {
  border: 1px solid #008da9;
  font-weight: 700;
  color: #ffffff;
  background: #008da9;
  position: relative;
  font-size: 14px;
  padding: 10px 15px;
  text-transform: uppercase;
  border-radius: 100px;
}
.filter .filters-area {
  margin-bottom: 2%;
  gap: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.filter .filters-area .filters {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.filter .filters-area .filters .gender-filter {
  list-style: none;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #c3c3c3;
  background: #ffffff;
  font-weight: 700;
  color: #989898;
  transition: all 0.35s ease-in-out;
  cursor: pointer;
}
.filter .filters-area .filters .gender-filter a {
  padding: 14px 45px;
  line-height: 44px;
  color: #989898;
  transition: all 0.35s ease-in-out;
  font-size: 14px;
  font-weight: 700;
}
.filter .filters-area .filters .gender-filter:hover,
.filter .filters-area .filters .gender-filter.active {
  border: 1px solid #008da9;
  font-weight: 700;
  color: #ffffff;
  background: #008da9;
  position: relative;
}
.filter .filters-area .filters .gender-filter:hover:before,
.filter .filters-area .filters .gender-filter.active:before {
  left: 0;
  right: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-left-color: transparent;
  border-top-color: #008da9;
  bottom: -23px;
  border-width: 12px;
  display: block;
  margin: auto;
}
.filter .filters-area .filters .gender-filter:hover a,
.filter .filters-area .filters .gender-filter.active a {
  color: #fff;
}
@media (max-width: 600px) {
  .filter .filters-area .filters {
    gap: 15px;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}
.filter .filters-area .form-select {
  width: -moz-max-content;
  width: max-content;
  height: 46px;
  border-radius: 0;
  border: 1px solid #c3c3c3;
}

nav.navigation {
  display: flex;
  justify-content: center;
  padding: 15px 0;
}
nav.navigation ul {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
}
nav.navigation ul .page-item .page-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #1a1a1a;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}
nav.navigation ul .page-item .page-link:hover {
  background-color: var(--white);
}
nav.navigation ul .page-item .page-link:focus {
  box-shadow: none;
}

footer {
  background-color: #004558;
  color: #fff;
  padding: 60px 0 30px 0;
}
@media (max-width: 767px) {
  footer {
    padding: 30px 16px 30px 16px;
  }
}
footer .about {
  position: relative;
  padding-bottom: 62px;
  border-bottom: 1px solid #cccccc;
}
footer .about ul {
  padding-left: 0;
}
footer .about ul li {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  z-index: 9;
  cursor: pointer;
  margin-bottom: 8px;
}
footer .about ul li:hover {
  color: #fb6d27;
}
footer .about .row > * {
  padding: 0;
  z-index: 9;
}
footer .about .map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
footer .about .map img {
  width: 100%;
  min-width: 300px;
}
footer p {
  color: #fff;
}
footer h3.title {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: #fb6d27;
}
footer .footer-bottom {
  padding-top: 30px;
}
footer .footer-bottom p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #b1b1b1;
}
footer .footer-bottom p span {
  color: #fff;
}

.card {
  padding: 20px;
  background: var(--white);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  border: none;
}

.back-result {
  padding: 25px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.share .share-dropdown {
  position: absolute;
  z-index: 99;
  width: 34px;
  height: 34px;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  cursor: pointer;
}
.share .dropdown-menu li a {
  padding: 7px;
}

.s-prod-single-view {
  padding-bottom: 120px;
}
.s-prod-single-view .s-card {
  background: #ffffff;
  border-radius: 8px;
  height: 440px;
}
.s-prod-single-view .s-card img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.s-prod-single-view .view-size {
  cursor: pointer;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #008da9;
  display: inline-block;
  margin-bottom: 15px;
}
.s-prod-single-view .s-prod-info {
  display: flex;
  gap: 20px;
}
.s-prod-single-view .s-prod-info .prod-disc {
  width: calc(100% - 242px);
}
.s-prod-single-view .s-prod-info .prod-disc h2.title {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #1a1a1a;
}
.s-prod-single-view .s-prod-info .prod-disc .brand {
  font-size: 15px;
  line-height: 150%;
  color: #008da9;
  padding-bottom: 10px;
  border-bottom: 1px solid #d1d1d1;
}
.s-prod-single-view .s-prod-info .prod-disc .rating-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 11px;
  border-bottom: 1px solid #d1d1d1;
}
.s-prod-single-view .s-prod-info .prod-disc .rating-main .rating-info {
  font-weight: 400;
  font-size: 15px;
  line-height: 16px;
  color: #008da9;
}
.s-prod-single-view .s-prod-info .prod-disc .price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.s-prod-single-view .s-prod-info .prod-disc .price .discount {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ca223d;
}
.s-prod-single-view .s-prod-info .prod-disc .price .value {
  font-weight: 400;
  font-size: 28px;
  line-height: 150%;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.s-prod-single-view .s-prod-info .prod-disc .price .value span {
  font-size: 16px;
  line-height: 206%;
}
.s-prod-single-view .s-prod-info .prod-disc .mrp {
  font-weight: 400;
  font-size: 15px;
  line-height: 16px;
  color: #666666;
}
.s-prod-single-view .s-prod-info .prod-disc .mrp span {
  text-decoration-line: line-through;
}
.s-prod-single-view .s-prod-info .prod-disc .vat {
  font-weight: 400;
  font-size: 15px;
  line-height: 16px;
  color: #1a1a1a;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d1d1d1;
}
.s-prod-single-view .s-prod-info .prod-disc .feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #d1d1d1;
}
.s-prod-single-view .s-prod-info .prod-disc .feature .feature-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.s-prod-single-view .s-prod-info .prod-disc .feature .feature-list img {
  height: 35px;
  width: 35px;
}
.s-prod-single-view .s-prod-info .prod-disc .feature .feature-list p {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  color: #008da9;
  max-width: 122px;
}
.s-prod-single-view .s-prod-info .prod-disc .brand-disc {
  padding-top: 15px;
}
.s-prod-single-view .s-prod-info .prod-disc .brand-disc .brand-disc-list {
  display: flex;
  gap: 10px;
}
.s-prod-single-view .s-prod-info .prod-disc .brand-disc .brand-disc-list .title {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #1a1a1a;
  min-width: 160px;
}
.s-prod-single-view .s-prod-info .prod-disc .brand-disc .brand-disc-list .disc {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
  width: calc(100% - 170px);
}
.s-prod-single-view .s-prod-info .prod-disc .see-more {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 15px;
  padding: 6px 0;
  line-height: 150%;
  color: #008da9;
  border-bottom: 1px solid #d1d1d1;
}
.s-prod-single-view .s-prod-info .prod-disc .about-item {
  padding-top: 15px;
}
.s-prod-single-view .s-prod-info .prod-disc .about-item h5 {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #1a1a1a;
}
.s-prod-single-view .s-prod-info .prod-disc .about-item ul {
  list-style-image: url(./../images/common/list-type.svg);
  padding-left: 20px;
  margin-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d1d1d1;
}
.s-prod-single-view .s-prod-info .prod-disc .about-item ul li {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
  margin-bottom: 4px;
}
.s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
}
.s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp::-webkit-scrollbar {
  display: none;
}
.s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp .color-img-list .color-img {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  overflow: hidden;
}
.s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp .color-img-list .color-img img {
  border-radius: 4px;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp .color-img-list p {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
  margin-top: 4px;
}
.s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp .piece-box {
  display: flex;
  padding: 8px 12px;
  gap: 10px;
  width: 98px;
  height: 62px;
  background: #ffffff;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
}
.s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp .piece-box.active {
  background: #fcf8f7;
  border: 1px solid #e47b1f;
}
.s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp .piece-box.not-available {
  border: 1px dashed #d1d1d1;
}
.s-prod-single-view .s-prod-info .prod-disc .color-variant .see-all {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  width: -moz-max-content;
  width: max-content;
  margin: 10px 0;
}
.s-prod-single-view .s-prod-info .add-to-cart {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 12px 16px;
  width: 242px;
  height: -moz-fit-content;
  height: fit-content;
}
.s-prod-single-view .s-prod-info .add-to-cart .price {
  font-weight: 400;
  font-size: 28px;
  line-height: 150%;
  color: #1a1a1a;
  display: flex;
  gap: 6px;
}
.s-prod-single-view .s-prod-info .add-to-cart .price span {
  margin-top: -5px;
  font-size: 16px;
}
.s-prod-single-view .s-prod-info .add-to-cart .delivery {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
  margin-top: 12px;
}
.s-prod-single-view .s-prod-info .add-to-cart .delivery span {
  font-weight: 500;
  color: #000;
}
.s-prod-single-view .s-prod-info .add-to-cart .delivery strong {
  font-weight: 500;
  color: #008da9;
}
.s-prod-single-view .s-prod-info .add-to-cart .location {
  display: flex;
  margin-top: 12px;
  align-items: start;
  gap: 6px;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #008da9;
}
.s-prod-single-view .s-prod-info .add-to-cart .warning {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #af3b43;
  margin-top: 12px;
}
.s-prod-single-view .s-prod-info .add-to-cart .qty-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  margin-top: 8px;
}
.s-prod-single-view .s-prod-info .add-to-cart .qty-dropdown .form-select {
  box-shadow: none;
  padding: 4px 12px;
  gap: 4px;
  width: 96px;
  height: 35px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.s-prod-single-view .s-prod-info .add-to-cart .delivery-info {
  padding-bottom: 8px;
}
.s-prod-single-view .s-prod-info .add-to-cart .delivery-info div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.s-prod-single-view .s-prod-info .add-to-cart .delivery-info div p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1a1a1a;
  padding-top: 12px;
  width: 80px;
}
.s-prod-single-view .s-prod-info .add-to-cart .delivery-info div p.name {
  color: var(--black);
}
.s-prod-single-view .s-prod-info .add-to-cart .delivery-info div.sold p {
  padding-top: 4px;
}
.s-prod-single-view .s-prod-info .add-to-cart .delivery-info div.sold p.name {
  color: #008da9;
}
.s-prod-single-view .s-prod-info .add-to-cart .add-to-list {
  width: 100%;
  border: 1px solid #404040;
  margin-top: 12px;
}
.s-prod-single-view .s-prod-info .add-to-cart .add-to-list button.btn {
  padding: 5px 12px;
  border: none;
  outline: none;
  text-align: left;
}
.s-prod-single-view .s-prod-info .add-to-cart .add-to-list button.dropdown-toggle {
  max-width: 46px;
  border-left: 1px solid #404040;
  text-align: center;
}
.s-prod-single-view .s-prod-info .add-to-cart .add-to-list button.dropdown-toggle::after {
  content: "";
  background-image: url(./../images/common/arrow-bottom.svg);
  background-size: 10px;
  border: none;
  height: 10px;
  width: 10px;
  top: 15px;
  background-repeat: no-repeat;
  position: absolute;
  left: 18px;
}
.s-prod-single-view .s-prod-info .add-to-cart .add-to-list ul.dropdown-menu.show {
  width: 100%;
}
.s-prod-single-view .s-prod-info .add-to-cart .add-to-list ul.dropdown-menu.show li a {
  padding: 8px 16px;
}

#collapseExample {
  padding: 0;
}
#collapseExample .table {
  width: 100%;
  text-align: center;
  border-radius: 8px;
  border: none;
  margin-bottom: 0;
}
#collapseExample .table th {
  border-left: 1px solid #f7f7f7;
  background: #056d89;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.03em;
}
#collapseExample .table th:first-child {
  border: none;
}
#collapseExample .table td {
  padding: 10px;
  color: #056d89;
  border: 1px solid #d6d6d6;
  font-weight: 700;
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 0.03em;
}

.shopping-cart {
  padding-top: 50px;
  padding-bottom: 80px;
}
.shopping-cart .card .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #d1d1d1;
}
.shopping-cart .card .title h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #1a1a1a;
}
.shopping-cart .card .title span {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
}
.shopping-cart .card .cart-product .card-prod-list {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #e8e8e8;
}
@media (max-width: 1200px) {
  .shopping-cart .card .cart-product .card-prod-list {
    gap: 8px;
  }
}
.shopping-cart .card .cart-product .card-prod-list .prod-img {
  height: 180px;
  width: 180px;
  min-width: 180px;
  overflow: hidden;
  background: #f5f5f5;
}
@media (max-width: 1200px) {
  .shopping-cart .card .cart-product .card-prod-list .prod-img {
    height: 100%;
    min-height: 140px;
    width: 140px;
    min-width: 140px;
  }
}
.shopping-cart .card .cart-product .card-prod-list .prod-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.shopping-cart .card .cart-product .card-prod-list .prod-disc .prod-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.shopping-cart .card .cart-product .card-prod-list .prod-disc .stock {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #008da9;
  margin-bottom: 2px;
}
.shopping-cart .card .cart-product .card-prod-list .prod-disc .delivery {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.shopping-cart .card .cart-product .card-prod-list .prod-disc .color {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.shopping-cart .card .cart-product .card-prod-list .prod-disc .color span {
  font-weight: 400;
}
.shopping-cart .card .cart-product .card-prod-list .prod-disc .prod-share {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shopping-cart .card .cart-product .card-prod-list .prod-disc .prod-share div:not(.qty-dropdown) {
  border-left: 1px solid #d9d9d9;
  padding-left: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #008da9;
  cursor: pointer;
}
.shopping-cart .card .cart-product .card-prod-list .prod-disc .prod-share .qty-group {
  width: 102px;
  height: 35px;
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shopping-cart .card .cart-product .card-prod-list .prod-disc .prod-share .qty-group div {
  border-left: none;
  padding-left: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  display: flex;
}
.shopping-cart .card .cart-product .card-prod-list .prod-disc .prod-share .form-select {
  box-shadow: none;
  padding: 4px 12px;
  gap: 4px;
  min-width: 96px;
  height: 35px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.shopping-cart .card .cart-product .card-prod-list .prod-price h2 {
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  color: #1a1a1a;
}
.shopping-cart .card .cart-product .card-prod-list .prod-price p {
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1a1a1a;
}
.shopping-cart .card .cart-product .sub-total {
  display: flex;
  align-items: end;
  justify-content: end;
  flex-direction: column;
  padding-top: 10px;
  gap: 5px;
}
.shopping-cart .card .cart-product .sub-total h5 {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: #1a1a1a;
}
.shopping-cart .card .cart-product .sub-total p {
  font-weight: 500;
  font-size: 22px;
  line-height: 170%;
  color: #1a1a1a;
}
.shopping-cart .card .cart-product .sub-total .Shipping h5 {
  font-weight: 500;
  font-size: 16px;
}
.shopping-cart .card .cart-product .sub-total .Shipping p {
  font-size: 18px;
}
.shopping-cart .process-buy .card .h3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.shopping-cart .process-buy .card .sub-price {
  font-weight: 500;
  font-size: 22px;
  line-height: 170%;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.shopping-cart .process-buy .card button {
  height: 33px;
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
}

.wish-list .cart-product .card-prod-list:nth-last-child(1) {
  border: none;
  padding-bottom: 0;
}
.wish-list h4.prod-title {
  max-width: 70%;
  color: #008da9 !important;
}
.wish-list .author {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #1a1a1a;
}
.wish-list .more-items {
  min-width: 230px;
}
.wish-list .more-items p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1a1a1a;
}
.wish-list .more-items .form-select {
  cursor: pointer;
  border: 0.5px solid #d1d1d1;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.wish-list .more-items .comment {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #008da9;
  margin-top: 20px;
}

.check-out {
  padding-top: 50px;
  padding-bottom: 80px;
}
.check-out .check-out-right .card {
  border: 1px solid #d9d9d9;
  padding: 12px 16px;
}
.check-out .check-out-right p {
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
  text-align: center;
}
.check-out .check-out-right h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 170%;
  color: #1a1a1a;
}
.check-out .check-out-right .order-info {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 10px;
}
.check-out .check-out-right .order-info .order-info-list {
  font-weight: 400;
  font-size: 12px;
  line-height: 170%;
  color: #404040;
  display: flex;
  align-items: center;
}
.check-out .check-out-right .order-info .order-info-list .right,
.check-out .check-out-right .order-info .order-info-list .left {
  width: 50%;
}
.check-out .check-out-right .order-info .order-info-list .right {
  text-align: end;
}
.check-out .check-out-right .order-total {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 170%;
  color: #af3b43;
  padding-top: 10px;
}
.check-out .check-out-right h6 {
  padding: 12px 16px;
  background: #f5f5f5;
  border-top: 1px solid #d9d9d9;
  margin: 0 -16px;
  margin-bottom: -12px;
  margin-top: 10px;
  font-weight: 400;
  font-size: 12px;
  line-height: 170%;
  text-align: center;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  color: #008da9;
}
.check-out .check-out-left .accordion .accordion-item {
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.check-out .check-out-left .accordion .accordion-item .accordion-header {
  display: flex;
  align-items: center;
}
.check-out .check-out-left .accordion .accordion-item .accordion-header .edit-address {
  max-width: 230px;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #1a1a1a;
  margin-left: 20px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-header .edit-address span {
  color: #008da9;
}
.check-out .check-out-left .accordion .accordion-item .accordion-header .Change {
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  color: #008da9;
  cursor: pointer;
}
.check-out .check-out-left .accordion .accordion-item .accordion-button {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0;
  box-shadow: none;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #1a1a1a;
  height: 100% !important;
  justify-content: start;
}
.check-out .check-out-left .accordion .accordion-item .accordion-button::after {
  content: "";
  display: none;
}
.check-out .check-out-left .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: #af3b43;
  border: none;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body {
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  padding: 16px 20px;
  margin-left: 40px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .title {
  font-weight: 500;
  font-size: 18px;
  line-height: 170%;
  color: #1a1a1a;
  padding-bottom: 6px;
  border-bottom: 1px solid #d5d9d9;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group {
  margin: 15px 0;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check {
  padding: 10px;
  flex-direction: column;
  align-items: start;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check .inpt {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check input[type="radio"] {
  margin-top: 0;
  height: 16px;
  width: 16px;
  max-height: 16px;
  padding: 10px !important;
  background-size: 18px;
  max-width: 16px;
  box-shadow: none;
  position: relative;
  top: 3px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check label {
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 150% !important;
  color: #1a1a1a;
  z-index: 9;
  opacity: 1;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check form {
  width: calc(100% - 20px);
  margin-left: 20px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check form .row {
  padding: 0 8px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check form .row > * {
  padding: 0 8px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check form select.form-select,
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check form input.form-control {
  border-radius: 4px;
  border: none;
  padding: 8px 12px;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #9c9c9c;
  box-shadow: none;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check form button {
  padding: 8px 12px;
  height: 39px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15px;
  margin-left: auto;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check .pay-grp {
  display: flex;
  gap: 16px;
  align-items: center;
  width: calc(100% - 20px);
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check .pay-grp img {
  height: 60px;
  width: 100%;
  background: #ffffff;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check span span {
  color: #008da9;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check .offerInpt {
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check .offerInpt .plus button {
  width: 37px;
  height: 37px;
  border: 1px solid #404040;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .radio-group
  .form-check
  .offerInpt
  .apply
  button {
  height: 37px;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .radio-group
  .form-check
  .offerInpt
  input.form-control {
  padding: 8px 12px;
  height: 37px;
  background: #ffffff;
  border: 1px solid #404040;
  border-radius: 4px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .add-new-address {
  background: #fcf5ee;
  border: 1px solid #fbd8b4;
  border-radius: 8px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .radio-group .form-check-label span {
  color: #008da9;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .add-address {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
  display: flex;
  align-items: center;
  gap: 16px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .header {
  font-weight: 500;
  font-size: 18px;
  line-height: 170%;
  color: #1a1a1a;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .header span {
  color: #008da9;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review span {
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  color: #404040;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .prod-grp .prod-list {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 25px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .prod-grp .prod-list:nth-last-child(1) {
  margin-bottom: 0;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .prod-grp .prod-list .prod-img {
  width: 90px;
  height: 90px;
  background: #f5f5f5;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .prod-grp .prod-list .prod-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .prod-grp .prod-list .prod-info h4 {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .prod-grp .prod-list .prod-info .price {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #af3b43;
  margin-bottom: 4px;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .review
  .prod-grp
  .prod-list
  .prod-info
  .qty-dropdown {
  background: #f5f5f5;
  border-radius: 4px;
  width: -moz-max-content;
  width: max-content;
  min-width: 78px;
  margin-bottom: 4px;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .review
  .prod-grp
  .prod-list
  .prod-info
  .qty-dropdown
  .form-select:focus {
  box-shadow: none;
  border: 1px solid #ced4da;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .prod-grp .prod-list .prod-info .sold {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #1a1a1a;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .review
  .prod-grp
  .prod-list
  .prod-info
  .sold
  strong {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #1a1a1a;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .delivery-option h5 {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #1a1a1a;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .delivery-option .form-check {
  align-items: baseline;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .delivery-option .form-check-input {
  min-width: 15px;
  height: 15px;
  width: 15px;
  box-shadow: none;
  position: relative;
  top: 3px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .delivery-option label.form-check-label {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #1a1a1a;
  opacity: 1;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .review
  .delivery-option
  label.form-check-label
  span {
  color: #008da9;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .payment-table {
  width: 100%;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .payment-table .payment-header {
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #bbbfbf;
  width: 100%;
  padding-left: 30px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .payment-table .payment-header .title {
  font-weight: 500;
  font-size: 18px;
  line-height: 170%;
  color: #1a1a1a;
  border: none;
  width: 75%;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .payment-table .payment-header .card-name {
  width: 25%;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .payment-table .payment-header .expires {
  min-width: 120px;
  text-align: end;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .payment-table .payment-header .expires,
.check-out .check-out-left .accordion .accordion-item .accordion-body .payment-table .payment-header .card-name {
  font-weight: 400;
  font-size: 12px;
  line-height: 170%;
  color: #1a1a1a;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .payment-table .payment-body {
  margin-left: 30px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .payment-table .payment-body .payment-list {
  width: calc(100% - 30px);
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-info {
  display: flex;
  align-items: center;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-info
  .form-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 75%;
  padding: 0;
  padding: 13px 0;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-info
  .form-check
  .form-check-label {
  display: flex;
  align-items: center;
  gap: 20px;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-info
  .form-check
  .form-check-label
  img {
  width: 40px;
  height: 28px;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-info
  .form-check
  .form-check-label
  .companyName {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-info
  .form-check
  .form-check-label
  .companyName
  span {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-info
  .card-name {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
  width: 25%;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-info
  .card-date {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
  min-width: 120px;
  text-align: end;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-info
  .card-date.Expired {
  font-weight: 500;
  color: #af3b43;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest {
  margin-left: 85px;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  h5 {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #1a1a1a;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  .interestSwiper {
  margin-top: 10px;
  margin-bottom: 16px;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  .interestSwiper
  .swiper-wrapper
  .swiper-slide
  .interest-card {
  padding: 10px;
  gap: 2px;
  background: #ffffff;
  border: 2px solid #b5bab8;
  border-radius: 4px;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  .interestSwiper
  .swiper-wrapper
  .swiper-slide
  .interest-card
  p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1a1a1a;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  .interestSwiper
  .swiper-wrapper
  .swiper-slide
  .interest-card
  h4 {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #1a1a1a;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  .interestSwiper
  .swiper-wrapper
  .swiper-slide-active
  .interest-card {
  background: #fdeaaf;
  border: 2px solid #dfab7b;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  .interestSwiper
  .swiper-button-next,
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  .interestSwiper
  .swiper-button-prev {
  width: 30px;
  height: 30px;
  background: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  .interestSwiper
  .swiper-button-next:after,
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  .interestSwiper
  .swiper-button-prev:after {
  font-size: 0;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  .security-code
  .row
  > * {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  .security-code
  .row
  > *
  input.form-control {
  border: 0.5px solid #d1d1d1;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  width: 78px;
  height: 37px;
  padding: 8px 12px;
}
.check-out
  .check-out-left
  .accordion
  .accordion-item
  .accordion-body
  .payment-table
  .payment-body
  .payment-list
  .payment-interest
  .security-code
  .row
  > *
  .Update {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #008da9;
  text-align: end !important;
  width: 100%;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .payment-table .payment-body .payment-list form {
  width: 100%;
  margin-top: 12px;
  margin-left: 10px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .payment-table .payment-body .payment-list-white {
  background-color: #ffffff;
  margin-left: -42px;
  width: calc(100% + 55px);
  padding: 10px;
  padding-top: 0;
  padding-left: 45px;
}

.account {
  padding: 50px 80px 80px 80px;
}
@media (max-width: 1200px) {
  .account {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .account {
    padding: 40px 10px;
  }
}
.account .order {
  background: #ffffff;
  border: 0.5px solid #f1f1f1;
  border-radius: 8px;
  padding: 13px 18px 12px 35px;
  height: 100px;
}
@media (max-width: 1300px) {
  .account .order {
    padding: 14px;
  }
}
@media (max-width: 1024px) {
  .account .order {
    padding: 10px;
  }
}
.account .order h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  color: #1a1a1a;
}
@media (max-width: 1300px) {
  .account .order h3 {
    font-size: 14px;
  }
}
.account .order .orderimg {
  background: #f8f8f8;
  border-radius: 100px;
  height: 60px;
  width: 60px;
  min-width: 60px;
  border-radius: 100%;
}
.account .order p {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #404040;
}
@media (max-width: 1300px) {
  .account .order p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .account .order p {
    font-size: 12px;
  }
}

h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #1a1a1a;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  h1 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 20px;
  }
}

/* Yout account css  */
/* tour adsress */
.address {
  padding: 0 0 80px 0;
}
.address .addtitle {
  height: 100%;
}
.address .addtitle button {
  width: 100%;
  height: 100%;
  border: 2px dashed #ddcfcf;
  background: none;
  border-radius: 8px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 991px) {
  .address .addtitle button {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .address .addtitle button {
    font-size: 20px;
  }
}
.address .addtitle .thomas h4 {
  font-weight: 500;
  font-size: 15px;
  color: #1a1a1a;
}
.address address {
  font-weight: 400;
  font-size: 15px;
  color: #1a1a1a;
}
@media (max-width: 1200px) {
  .address address {
    font-size: 14px;
  }
}
.address address a {
  color: #008da9;
}
.address .adddelivery {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 20px;
}
@media (max-width: 991px) {
  .address .adddelivery {
    padding: 10px;
  }
}
.address .adddelivery button {
  background: none;
  color: #008da9;
  font-size: 15px;
  font-weight: 400;
  border-radius: 0;
  padding: 0px 17px;
}
.address .adddelivery button:first-child {
  border-right: 2px solid #666666;
  padding-left: 0;
  height: 20px;
}
.address .adddelivery .edit {
  margin-top: 50px;
}
@media (max-width: 1200px) {
  .address .adddelivery .edit {
    margin-top: 20px;
  }
}

.addtab {
  gap: 14px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
  margin-bottom: 10px;
}

.active {
  color: #008da9;
}

/* login css */
.login .form {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  margin-bottom: 20px;
}
.login .form input {
  width: 100%;
  border-bottom: 0;
}
.login .form button {
  font-weight: 400;
  font-size: 14px;
  color: #1a1a1a;
  background: linear-gradient(180deg, #f8f9fb 0%, #eaebef 100%);
  border: 1px solid #d0d0d4;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  width: 100px;
  height: 33px;
}
.login .form p {
  color: #404040;
  font-size: 14px;
  font-weight: 400;
}
.login .detail {
  padding: 16px 20px;
}
.login .detail label {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700 !important;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
.login .detail p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1a1a1a;
}
.login .detail input {
  padding: 0px 20px 0px 0;
  font-weight: 400;
  font-size: 14px;
  color: #1a1a1a;
  margin-top: 6px;
}
.login .formdetail button {
  font-weight: 400;
  font-size: 14px;
  width: 100px;
  height: 33px;
  border-radius: 8px;
}

.formcontent {
  width: 600px;
  margin: auto;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .formcontent {
    width: 100%;
    padding-bottom: 60px;
  }
}

.changepass .accountpass {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
}
.changepass p {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 30px;
  color: #1a1a1a;
}
.changepass .passinformation .activity p {
  font-weight: 500;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 5px;
  margin-top: 30px;
}
.changepass .passinformation .activity a {
  color: #008da9;
  font-weight: 400;
  font-size: 15px;
}
.changepass .passinformation .activity span {
  color: #1a1a1a;
}
.changepass .passinformation button {
  height: 33px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

label {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #1a1a1a;
}

input {
  border: 1px solid #404040;
  border-radius: 4px;
  width: 300px;
  height: 37px;
  padding: 8px 20px;
}
input:focus {
  outline: 0;
}

select {
  border: 1px solid #404040;
  border-radius: 4px;
  height: 37px;
  padding: 8px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

.selectvalue {
  position: relative;
  width: 100%;
}

.arrowimage {
  position: absolute;
  right: 20px;
  top: 5px;
}

select:focus {
  outline: 0;
}

.selectcity .firstname {
  width: 50%;
}

.verification {
  padding-top: 64px;
}
.verification .enterverification {
  background: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 20px;
  width: 400px;
  margin: auto;
}
.verification .enterverification h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.verification .enterverification .codesent span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #ffffff;
  border: 0.5px solid #e2e3e4;
}
.verification .enterverification .codesent .addcode {
  background-color: #008da9;
}
.verification .enterverification .resendcode span {
  font-weight: 400;
  font-size: 15px;
  color: #008da9;
}
.verification .enterverification .resendcode p {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 400;
}
.verification .enterverification .resendcode .request {
  margin: 20px 0 30px 0;
}
.verification .enterverification .resendcode button {
  width: 100%;
}

.newplusadd .nameadd {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
}
.newplusadd .nameadd .firstname input {
  width: 100%;
}
.newplusadd .nameadd .firstname label {
  font-weight: 700 !important;
  opacity: 1;
}
.newplusadd .nameadd button {
  height: 33px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

.Changename .Changecard {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
}
.Changename .Changecard p {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 30px;
}
.Changename .Changecard label {
  font-weight: 700 !important;
  opacity: 1;
}
.Changename .Changecard button {
  height: 33px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  border-radius: 8px;
}

.privacypolicy h1 {
  font-weight: 600;
  font-size: 36px;
  color: #008da9;
  margin: 50px 0;
}
@media (max-width: 1200px) {
  .privacypolicy h1 {
    font-size: 32px;
    margin: 30px 0;
  }
}
.privacypolicy .conditiontitle {
  margin-bottom: 40px;
}
.privacypolicy .conditiontitle h3 {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 24px;
  color: #1a1a1a;
}
.privacypolicy .conditiontitle p {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #404040;
}
.privacypolicy .conditiontitle .lorem {
  margin-bottom: 0;
}

.yearwish h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  color: #008da9;
}
.yearwish h3 p {
  font-weight: 400;
  font-size: 18px;
  color: #1a1a1a;
}
.yearwish .viewitem {
  background: #ffffff;
  color: #1a1a1a;
  padding: 8px 20px;
  border: 0.5px solid #d1d1d1;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  margin-left: 10px;
}
@media (max-width: 991px) {
  .yearwish .viewitem {
    margin-left: 0;
  }
}
.yearwish button {
  font-size: 18px;
  height: 37px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}
@media (max-width: 1200px) {
  .yearwish button {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .yearwish button {
    padding: 10px 12px;
  }
}

.wishlish h2 {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  padding-top: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid #bcbdbc;
}
@media (max-width: 991px) {
  .wishlish h2 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .wishlish h2 {
    font-size: 20px;
  }
}
.wishlish .wishlishcard .addcart p {
  font-weight: 400;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.wishlish .wishlishcard .addcart span {
  color: #008da9;
  font-size: 12px;
  font-weight: 400;
}
.wishlish .wishlishcard .addcart .moredetail {
  gap: 10px;
  margin-top: 10px;
}
.wishlish .wishlishcard .addcart .moredetail button {
  background: #ffffff;
  border: 0.5px solid #d1d1d1;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 31px;
}

.form-select:focus {
  box-shadow: none;
  border-color: #d1d1d1;
}

.allorder h1 {
  margin-bottom: 15px;
  padding-top: 50px;
}
.allorder .activeorder {
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  .allorder .activeorder {
    padding-bottom: 60px;
  }
}
.allorder .activeorder .nav .nav-item .nav-link {
  color: #666666;
  font-size: 15px;
  font-weight: 500;
}
.allorder .activeorder .nav .nav-item .active {
  background: none;
  color: #008da9;
  border-bottom: 1px solid #008da9;
  border-radius: 0;
}
.allorder .placeordercard {
  background-color: #ffffff;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: #dddddd;
  border-radius: 8px;
}
.allorder .placeordercard .shiporder {
  background-color: #f5f5f5;
  border-radius: 8px 8px 0px 0px;
  border: 1px solid #dddddd;
  margin-top: 35px;
}
.allorder .placeordercard .shiporder .viewtab {
  padding: 14px 20px;
}
.allorder .placeordercard .shiporder .viewtab span {
  font-weight: 400;
  font-size: 13px;
  color: #1a1a1a;
}
.allorder .placeordercard .shiporder .viewtab p {
  font-size: 15px;
  font-weight: 500;
}
.allorder .placeordercard .shiporder .viewtab .view p {
  color: #008da9;
}
.allorder .placeordercard .shiporder .viewtab .dateorder p {
  color: #1a1a1a;
}
.allorder .placeordercard .purchase h4 {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 500;
  line-height: 170%;
}
.allorder .placeordercard .purchase p {
  color: #404040;
  font-size: 15px;
  font-weight: 400;
}
.allorder .placeordercard .package {
  width: 100%;
}
.allorder .placeordercard .package button {
  background: #ffffff;
  border: 0.5px solid #d1d1d1;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  color: #1a1a1a;
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
  max-width: 220px;
  height: 37px;
  margin-left: auto;
}
.allorder .placeordercard .productreview {
  padding: 20px 20px 27px 20px;
}
@media (max-width: 767px) {
  .allorder .placeordercard .productreview {
    padding: 10px;
  }
}
.allorder .placeordercard .productreview .prod-img {
  height: 100px;
  width: 100px;
  min-width: 100px;
  margin-right: 10px;
}
.allorder .placeordercard .productreview .prod-img img {
  height: 100%;
  width: 100%;
}

lottie-player {
  max-height: 650px;
}

.policyTabs ul {
  margin: 50px 0;
  gap: 10px;
}
.policyTabs ul li.nav-item .nav-link {
  padding: 5px 20px;
  height: 41px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 18px;
  line-height: 170%;
  background: #f5f5f5;
  color: #404040;
}
.policyTabs ul li.nav-item .nav-link.active {
  background: rgba(0, 141, 169, 0.1);
  color: #008da9;
}

.emailTemplate {
  max-width: 600px;
}
.emailTemplate p {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #666666;
  margin-bottom: 4px;
}
.emailTemplate p strong {
  font-weight: 600;
}
.emailTemplate p.name {
  margin-bottom: 16px;
}
.emailTemplate a {
  margin-bottom: 4px;
  text-decoration: underline;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #008da9;
}
.emailTemplate button {
  padding: 8px 30px;
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  max-width: 210px;
  margin: 40px auto;
}
.emailTemplate .Sincerely {
  margin-top: 30px;
}
.emailTemplate .Copyright {
  margin-top: 50px;
  text-align: center;
}
.emailTemplate .Copyright a {
  color: #666666;
}

.my-image {
  width: 400px;
  height: 400px;
}

#target {
  height: 600px;
  width: 100% !important;
  z-index: 99;
  position: absolute !important;
  right: 0;
  box-shadow: 0 2px 10px #d7d7d7;
  border-radius: 8px;
}

.target_remove_display img,
.target_remove_display {
  visibility: hidden;
}

.target_add_display {
  display: block !important;
}

input[type="color"] {
  display: none;
}

.s-service {
  padding: 120px 0;
}
.s-service h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  color: #1a1a1a;
  max-width: 365px;
}
.s-service .title-element {
  background-repeat: no-repeat;
  background-image: url("./../images/common/title-element.svg");
  padding-top: 25px;
  padding-bottom: 50px;
}
.s-service .col-lg-4 .s-service-main {
  margin: 0 15px;
}
.s-service .col-lg-4:first-child .s-service-main {
  margin-left: 0;
}
.s-service .col-lg-4:last-child .s-service-main {
  margin-left: 0;
}
.s-service .s-service-main .s-service-img {
  height: 384px;
  text-align: center;
  width: 100%;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0px 192px 0px 0px;
  margin-bottom: 32px;
}
.s-service .s-service-main lottie-player {
  width: 100% !important;
}
.s-service .s-service-main.default lottie-player {
  bottom: -80px;
  position: relative;
}
.s-service .s-service-main.blue {
  margin-top: 77px;
}
.s-service .s-service-main.blue lottie-player {
  right: -30px;
  position: relative;
}
.s-service .s-service-main.blue .s-service-img {
  border-radius: 192px 0px 0px 0px;
  background: #e4f5ff;
}
.s-service .s-service-main.yellow .s-service-img {
  border-radius: 0px 0px 192px 0px;
  background: #f4eac7;
}
.s-service .s-service-main .s-service-info h5 {
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  color: #000000;
  margin-bottom: 16px;
}
.s-service .s-service-main .s-service-info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  color: #404040;
}

.sumeru-shop-main {
  padding-bottom: 120px;
}
.sumeru-shop-main .sumeru-shop {
  padding-left: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sumeru-shop-main .sumeru-shop img {
  max-height: 700px;
}
.sumeru-shop-main .sumeru-shop h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  color: #1a1a1a;
  max-width: 365px;
}
.sumeru-shop-main .sumeru-shop .title-element {
  background-repeat: no-repeat;
  background-image: url("./../images/common/title-element.svg");
  padding-top: 25px;
  padding-bottom: 16px;
}
.sumeru-shop-main .sumeru-shop p {
  color: #008da9;
  margin-bottom: 10px;
}
.sumeru-shop-main .sumeru-shop h4.title {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #1a1a1a;
  margin-top: 14px;
}
.sumeru-shop-main .sumeru-shop p {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #666666;
  margin-top: 6px;
}

.search-main .header-search {
  background-color: transparent;
  padding: 0;
  padding-top: 25px;
}
.search-main .header-search .search .header-inpt {
  color: #008da9;
}
.search-main .header-search .search .header-inpt::-moz-placeholder {
  color: #008da9;
}
.search-main .header-search .search .header-inpt::placeholder {
  color: #008da9;
}
.search-main .header-search .search .left {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.search-main .header-search .search .header-go {
  background-color: #008da9;
  color: #fff;
  width: 155px;
  min-width: 155px;
}
.search-main .card-list-grp {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 100px;
  padding-bottom: 120px;
}
.search-main .card-list-grp .card {
  padding: 0;
  box-shadow: none;
  background: transparent;
}
.search-main .card-list-grp .card-list {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 36px;
}
.search-main .card-list-grp .card-list .card-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.search-main .card-list-grp .card-list-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #1a1a1a;
  margin-top: 16px;
  text-align: center;
}

.s-about-us section {
  padding: 120px 0;
}
.s-about-us h6 {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 20px;
}
.s-about-us h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.s-about-us p {
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  color: #404040;
  margin-bottom: 20px;
}
.s-about-us ul {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}
.s-about-us ul li {
  margin-bottom: 4px;
}

.s-contact-us .title {
  background: linear-gradient(301.86deg, #f0fdff 57.11%, rgba(245, 247, 250, 0) 110.56%);
  height: 338px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.s-contact-us .title h1 {
  font-weight: 700;
  font-size: 52px;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.s-contact-us .title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #404040;
}
.s-contact-us .contact-info {
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.s-contact-us .contact-info .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.s-contact-us .contact-info .contact-item:nth-child(2) {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.s-contact-us .contact-info .contact-item img {
  margin-bottom: 30px;
}
.s-contact-us .contact-info .contact-item h6 {
  font-weight: 700;
  font-size: 21px;
  line-height: 150%;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.s-contact-us .contact-info .contact-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  color: #404040;
}

.get-into-touch {
  overflow: hidden;
  width: 100%;
  margin: 0;
}
.get-into-touch .map {
  height: 760px;
  padding: 0;
  width: 50%;
}
.get-into-touch .map iframe {
  height: 100%;
}
.get-into-touch .contact-box {
  width: 50%;
  background-color: #0e2233;
  padding: 50px;
}
.get-into-touch .contact-box .git-sub-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #008da9;
  margin-bottom: 12px;
}
.get-into-touch .contact-box .git-title {
  font-weight: 700;
  font-size: 38px;
  line-height: 44px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 50px;
}
.get-into-touch .contact-box form label.form-label {
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 21px !important;
  text-transform: capitalize !important;
  color: #ffffff !important;
  margin-bottom: 16px;
}
.get-into-touch .contact-box form label.form-label span {
  color: #008da9;
}
.get-into-touch .contact-box form .form-control {
  height: 61px !important;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: none !important;
  padding: 21px 25px !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.5);
}
.get-into-touch .contact-box form textarea {
  min-height: 160px;
  resize: none;
}
.get-into-touch .contact-box form button {
  height: 51px;
  background: #178f9f;
  border-radius: 8px;
  gap: 10px;
  margin-left: auto;
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-xl,
  .container-xxl {
    padding: 0 72px;
  }
}
@media (max-width: 991px) {
  .get-into-touch .map {
    width: 100%;
    height: 450px;
  }
  .get-into-touch .contact-box {
    width: 100%;
  }
  .sumeru-shop-main {
    padding-bottom: 60px;
  }
  .sumeru-shop-main .sumeru-shop {
    padding-left: 12px;
    margin-top: 35px;
  }
  .sumeru-shop-main .sumeru-shop h2 {
    max-width: 100% !important;
  }
  .sumeru-shop-main .img-fluid {
    max-height: 700px;
  }
  .s-service-main {
    margin-bottom: 25px !important;
  }
  .s-service-main .title-element {
    max-width: 100%;
  }
  .s-service-main .s-service-img {
    width: -moz-max-content !important;
    width: max-content !important;
    margin: auto;
  }
  .s-service {
    padding: 60px 0;
  }
  .title-element {
    font-size: 28px;
    padding-bottom: 25px;
    text-align: center;
    background-position-x: center;
  }
  .s-service-info {
    text-align: center;
  }
  .search-main .card-list-grp {
    padding-top: 60px;
    padding-bottom: 60px;
    grid-template-columns: repeat(2, 1fr);
  }
  .s-card {
    max-width: 510px;
    margin: auto;
    margin-bottom: 35px;
  }
  .s-prod-info {
    flex-direction: column;
  }
  .s-prod-info .prod-disc,
  .s-prod-info .add-to-cart {
    width: 100% !important;
  }
  .shopping-cart .card .cart-product .card-prod-list .prod-price h2 {
    font-size: 22px;
  }
  .s-contact-us .title {
    height: 280px;
  }
  .s-contact-us .title h1 {
    font-size: 38px;
  }
  .s-contact-us .contact-info {
    flex-direction: column;
    gap: 30px;
    padding: 60px 0;
  }
  .s-contact-us .contact-info .contact-item {
    border: none !important;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5 !important;
  }
}
@media (max-width: 768px) {
  .shopping-cart .card .title h3 {
    font-size: 20px;
  }
  .shopping-cart .card .cart-product .card-prod-list {
    flex-direction: column;
  }
  .shopping-cart .card .cart-product .card-prod-list .prod-disc .prod-title {
    font-size: 16px;
    line-height: 140%;
  }
  .shopping-cart .card .cart-product .card-prod-list .prod-disc .color,
  .shopping-cart .card .cart-product .card-prod-list .prod-disc .stock {
    font-size: 14px;
    line-height: 150%;
  }
  .filter .filters-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
  }
  .filter .filters-header .page-title {
    margin-bottom: 0;
  }
}
@media (max-width: 576px) {
  .filter .filters-area .filters .gender-filter a {
    padding: 7px 20px;
    line-height: 35px;
  }
  .check-out .check-out-left .accordion .accordion-item .accordion-button {
    font-size: 18px;
    padding-left: 0;
  }
  .check-out .check-out-left .accordion .accordion-item .accordion-body {
    margin-left: 20px;
    padding: 10px 15px;
  }
  .check-out .check-out-right .card a button {
    margin-bottom: 0 !important;
  }
  .container {
    padding: 0 16px;
  }
  .header-search .search .left {
    margin-right: 15px;
  }
  .header-search {
    padding: 25px 0;
  }
  .sumeru-shop-main .sumeru-shop h2,
  .s-service h2 {
    font-size: 40px;
  }
  .prod-grid {
    gap: 15px;
  }
  footer .about .row {
    gap: 30px;
  }
  .s-contact-us .title h1,
  .s-about-us h1 {
    font-size: 32px;
  }
  .s-contact-us .title {
    height: 240px;
  }
  footer .about ul li {
    font-size: 14px;
  }
  .s-contact-us .contact-info {
    padding: 60px 0;
  }
  .search-main .card-list-grp {
    grid-template-columns: repeat(1, 1fr);
  }
  .search-main .card-list-grp .card-list {
    padding: 20px;
  }
  .allorder .placeordercard .package button {
    max-width: 100%;
  }
  .s-service-main .s-service-img {
    width: 100% !important;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: sticky;
  top: 0;
  z-index: 999999;
}

#preloader {
  position: fixed;
  background: rgb(255, 255, 255);
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  --loader-size: 50px;
  --loader-border-size: 4px;
  --loader-border-color: #008da9;
  width: var(--loader-size);
  height: var(--loader-size);
  border: var(--loader-border-size) solid var(--loader-border-color);
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  background-color: transparent;
  border-radius: 50%;
  position: relative;
  animation: rotateX 1s infinite linear;
}

.loader::before {
  content: "";
  border: var(--loader-border-size) solid var(--loader-border-color);
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  animation: rotateX 0.5s infinite linear reverse;
}

@keyframes rotateX {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
.shape1 img {
  position: absolute;
  right: 0;
  transform: translateY(-50%);
}

.shape2 img {
  position: absolute;
  left: 0;
  z-index: -1;
  transform: translateY(-75%);
}

.shape3 img {
  position: absolute;
  right: 0;
  z-index: -1;
  transform: translateY(-75%);
}

.modal-close {
  height: 45px;
  width: 45px;
  position: absolute;
  bottom: -50px;
  cursor: pointer;
  left: 50%;
  transform: translateX(-50%);
} /*# sourceMappingURL=style.css.map */

.search-main .card-list-grp .card-list .card-img img {
  height: 150px;
  object-fit: contain;
}

.card.prod-card .prod-info p {
  -webkit-line-clamp: 2 !important;
  height: 45px;
}

.s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp .color-img-list .color-img {
  position: relative;
}
.s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp .color-img-list .color-img.active{
  border: 1px solid #008da9;
}
.s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp .color-img-list .choice_element {
  position: absolute;
  top: 0;
  height: 80px !important;
  width: 80px !important;
  opacity: 0;
  cursor: pointer;
}

.s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp .color-img-list label {
  font-weight: 400 !important;
  font-size: 15px !important;
  line-height: 150% !important;
  color: #404040 !important;
  margin-top: 4px !important;
  margin-bottom: 12px !important;
  text-align: center;
  display: block;
}
.shopping-cart .qty-group-2 ,
.s-prod-single-view .s-prod-info .qty-group-2 {
  border-left: 1px solid #d9d9d9;
  padding-left: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #008da9;
  cursor: pointer;
  width: 102px;
  height: 35px;
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shopping-cart .qty-group-2 button ,
.s-prod-single-view .s-prod-info .qty-group-2 button {
  background: transparent;
  padding: 0;
}
.shopping-cart .qty-group-2 input ,
.s-prod-single-view .s-prod-info .qty-group-2 input {
  border: none !important;
  background-color: transparent;
  padding: 0 !important;
  text-align: center;
}
.allorder .placeordercard .productreview {
  padding: 20px 8px 27px 8px;
}
.header-search .search .header-inpt {
  background-color: transparent !important;
}

.check-out .check-out-right .order-total {
  padding-bottom: 10px;
}

.check-out .check-out-left .accordion .accordion-item .collapse.show .accordion-body {
  background: #fcf5ee;
  border: 1px solid #fbd8b4;
  border-radius: 8px;
}
.check-out .check-out-left .accordion .accordion-item .accordion-body .review .prod-grp .prod-list .prod-img {
  min-width: 90px;
}
/* .invoice-preview-card {
    display: table;
    position: relative;
} */
.invoice-preview-card{
  max-width: 1000px;
  margin: auto;
}
.invoice-preview h4 {
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 1.1;
  font-size: 22px;
}
.invoice-preview span {
  font-weight: 500;
  line-height: 23px;
  font-size: 15px;
}
.invoice-preview p {
  font-weight: 400;
  line-height: 23px;
  font-size: 15px;
}

.invoice-preview h6 {
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 17px;
  font-size: 15px;
}

.invoice-preview table {
  caption-side: bottom;
  border-collapse: collapse;
}

thead, tbody, tfoot, tr, td, th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

.invoice-preview .table th {
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: 1px;
}

.invoice-preview .table>:not(caption)>*>* {
  padding: 10px 20px;
  background-color: transparent;
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px transparent;
}

.privacypolicy .conditiontitle ul{
  list-style: disc;
  padding-left: 20px;
}

.shopping-cart .card .cart-product .sub-total p{
  line-height: inherit;
}

.badge{
  padding: 5px 8px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
}
.privacypolicy .conditiontitle .accordion .accordion-item{
  background-color: transparent;
  border: none;
}
.privacypolicy .conditiontitle .accordion .accordion-item .accordion-header .accordion-button{
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #008da9;
  height: auto !important;
}
.privacypolicy .conditiontitle .accordion .accordion-item .accordion-header .accordion-button::after{
  content: '';
  opacity: 0;
}
.privacypolicy .conditiontitle .accordion .accordion-item .accordion-collapse .accordion-body{
  padding: 16px 0;
  font-weight: 400;
  font-size: 16px;
  color: #404040;
}

@media (max-width:650px){
  .s-prod-single-view .s-prod-info .prod-disc .color-variant .color-img-grp{
    flex-wrap: wrap;
  }
}

.shopping-cart .card .cart-product .card-prod-list .prod-img img,
.s-prod-single-view .s-card img{
  object-fit: contain;
}

.newplusadd .nameadd select,
.newplusadd .nameadd input{
  height: 37px !important;
  border: 1px solid rgba(64, 64, 64, 1);
}
.newplusadd .nameadd .form-group-mb{
  height: 37px;
  display: flex;
  padding: 0;
}
.newplusadd .nameadd .form-group-mb input{
  height: 34px !important;
  border-radius: 4px !important;
}
.newplusadd .nameadd .form-group-mb span{
  padding: 5px;
}
.newplusadd .nameadd .form-group-mb input{
  width: calc(100% - 50px);
}
@media (max-width:992px){
  .newplusadd .nameadd .mobile-address .firstname{
    width: 100%;
  }
  .newplusadd .nameadd .mobile-address{
    display: block !important;
  }
}
