/*
Author: Mohammad Zare
Author URI: http://mohammadz.com/
*/
@charset "UTF-8";

:root {
  /*--color-primary: 255, 55, 28;*/
  --color-primary: 178, 34, 34;
  --color-secondary: 157, 157, 157;
  --color-light: 255, 255, 255;
  --color-dark: 38, 38, 35;

  --color-grey-50: 242, 242, 241;
  --color-grey-100: 217, 216, 214;
  --color-grey-200: 192, 191, 186;
  --color-grey-300: 166, 165, 158;
  --color-grey-400: 141, 139, 131;
  --color-grey-500: 128, 126, 117;
  --color-grey-600: 115, 113, 105;
  --color-grey-700: 90, 88, 82;
  --color-grey-800: 64, 63, 59;
  --color-grey-900: 38, 38, 35;
  --color-grey-1000: 13, 13, 12;

  --color-success: 47, 140, 51;
  --color-danger: 213, 54, 54;
  --color-warning: 237, 185, 94;
  --color-info: 74, 144, 226;

  --filter-primary: brightness(0) saturate(100%) invert(17%) sepia(74%) saturate(3041%) hue-rotate(346deg) brightness(94%) contrast(94%);
  --filter-info: brightness(0) saturate(100%) invert(49%) sepia(87%) saturate(1232%) hue-rotate(190deg) brightness(93%) contrast(89%);
  --filter-warning: brightness(0) saturate(100%) invert(93%) sepia(47%) saturate(2620%) hue-rotate(311deg) brightness(95%) contrast(96%);
  --filter-success: brightness(0) saturate(100%) invert(63%) sepia(21%) saturate(985%) hue-rotate(39deg) brightness(97%) contrast(98%);
  --border: 0.5px solid #000;

  --animate-duration: 1000ms;
  --animate-delay: 150ms;
}

@font-face {
  font-family: "Abar";
  src: url("../fonts/Abar-Variable.ttf") format("truetype-variations");
  font-weight: 1 999;
}

:focus {
  outline: 0 !important;
}

::selection {
  background: rgba(0, 0, 0, 0.1);
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.1);
}

a {
  color: rgb(var(--color-primary));
  text-decoration: none !important;
}

a:hover {
  color: #0d0d0c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Abar", Helvetica, Geneva, Verdana, sans-serif;
  font-weight: bold;
  line-height: 1.6;
}

html {
  background: rgb(var(--color-primary));
}

html,
body {
  width: 100vw;
  min-height: 100%;
  min-height: 100svh;
  position: relative;
  overflow-x: clip;
}

body {
  font: normal normal clamp(14px, 0.19vw + 13.26px, 16px)/1.5 'Abar';
  direction: rtl;
  background: rgb(var(--color-light));
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.overlay-link {
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.modal-backdrop,
.body-overlay {
  width: 100vw;
  height: 100svh;
  position: fixed !important;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  cursor: pointer;
}

.body-overflow {
  overflow: hidden;
  height: 100svh;
  max-height: 100svh;
}

.btn,
.custom-file-input,
.custom-select,
.form-control {
  border-radius: 0;
  box-shadow: none !important;
}

.btn,
label,
th,
.control-label {
  font-family: "Abar", sans-serif;
  font-weight: 700;
  font-size: 14px;
}

a>i:only-child,
button>i:only-child {
  line-height: inherit;
}

ol {
  list-style-type: persian;
}

ul {
  list-style-type: square;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.modal-content {
  border: none;
}

.modal-dialog {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.modal-header {
  display: flex;
  align-items: center;
}

.pagination {
  border-left: var(--border);
  border-right: var(--border);
  padding: 50px 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pagination>li {
  padding: 0 6px;
}

.pagination>li>a.page-numbers,
.pagination>li>.page-numbers.current {
  background: #ededed;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  line-height: 1px;
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.pagination>li>a.page-numbers:hover,
.pagination>li>.page-numbers.current {
  background: rgb(var(--color-primary));
  color: #fff;
}

/*Custom*/
.container-fluid {
  max-width: 1440px;
  padding-left: 32px;
  padding-right: 32px;
}

.section {
  position: relative;
  z-index: 1;
}

.section-wrapper {
  padding: clamp(32px, 4.57vw + 14.17px, 80px) 0;
  position: relative;
  z-index: 1;
}

.section:not(.section-covered)+.section .section-wrapper {
  padding-top: 0;
}

.section-inner {
  position: relative;
}

.section-cover {
  position: relative;
}

.section-bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.section-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-header+.section-body,
.section-body+.section-footer,
.section-header+.section-footer {
  margin-top: 60px;
}

.section-title {
  font: normal normal clamp(12px, 0.38vw + 10.51px, 16px)/1.5 'Abar';
  text-transform: uppercase;
  color: rgb(var(--color-primary));
  margin: 0;
}

.section-subtitle {
  font: normal bold clamp(24px, 1.52vw + 18.06px, 40px)/1.33 'Abar';
  color: #000000;
  margin: 0;
}

.section-desc {
  font: normal normal clamp(14px, 0.19vw + 13.26px, 16px)/1.5 'Abar';
  color: #000000;
}

.section-title+.section-subtitle {
  margin-top: clamp(12px, 0.38vw + 10.51px, 16px);
}

#page-footer {
  margin-top: auto;
}

#page-footer+#footer {
  margin-top: 0;
}

#page-title {
  margin: 0;
  position: relative;
  z-index: 1;
}

*+#page-cover {
  margin-top: 40px;
}

#page-cover>img {
  width: 100%;
  object-fit: cover;
}

.subsection-header+.subsection-body,
.subsection-body+.subsection-footer,
.subsection-header+.subsection-footer {
  margin-top: 32px;
}

.subsection-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: rgb(var(--color-primary));
  margin: 0;
}

.subsection-subtitle {
  font-size: 28px;
  font-weight: bold;
  line-height: 36px;
  margin: 0;
}

.subsection-title+.subsection-subtitle {
  margin-top: 16px;
}

.button {
  height: clamp(36px, 0.38vw + 34.51px, 40px);
  border: 1px solid transparent;
  border-radius: clamp(36px, 0.38vw + 34.51px, 40px);
  padding: 0 clamp(16px, 0.38vw + 14.51px, 20px);
  font-size: clamp(14px, 0.19vw + 13.26px, 16px);
  gap: 10px;
  font-weight: normal;
  line-height: 1;
  text-wrap: nowrap;
  margin: 0;
  background: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: clip;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.button:hover {
  background: transparent !important;
}

.button>i {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button:hover>i {
  width: 500px;
  height: 500px;
}

.button>img {
  height: 24px;
}

.button-square {
  border-radius: 0;
}

.button-small {
  height: 36px;
  padding: 0 16px;
  border-radius: 40px;
  font-size: 14px;
}

.button-large {
  height: 48px;
  padding: 0 20px;
  border-radius: 40px;
  font-size: 14px;
}

.button-block {
  display: flex;
  width: 100%;
}

.button-block+.button-block {
  margin-top: 15px;
}

.button-fill-primary {
  background: rgb(var(--color-primary));
  border-color: rgb(var(--color-primary));
  color: rgb(var(--color-light));
}

.button-fill-primary>i {
  background: rgb(var(--color-light));
}

.button-fill-primary:hover {
  background: transparent;
  border-color: rgb(var(--color-primary));
  color: rgb(var(--color-primary));
}

.button.alt,
.button-outline-primary {
  background: transparent;
  border-color: rgb(var(--color-primary));
  color: rgb(var(--color-primary));
}

.button.alt>i,
.button-outline-primary>i {
  background: rgb(var(--color-primary));
}

.button.alt:hover,
.button-outline-primary:hover {
  color: rgb(var(--color-light));
}

.button-fill-secondary {
  background: rgb(var(--color-secondary));
  border-color: rgb(var(--color-secondary));
  color: rgb(var(--color-light));
}

.button-fill-secondary>i {
  background: rgb(var(--color-light));
}

.button-fill-secondary:hover {
  color: rgb(var(--color-secondary));
  border-color: rgb(var(--color-secondary));
}

.button-outline-secondary {
  background: transparent;
  color: rgb(var(--color-secondary));
  border-color: rgb(var(--color-secondary));
}

.button-outline-secondary>i {
  background: rgb(var(--color-secondary));
}

.button-outline-secondary:hover {
  color: rgb(var(--color-light));
  border-color: rgb(var(--color-light));
}

.button-fill-light {
  background: rgb(var(--color-grey-50));
  border-color: rgb(var(--color-grey-50));
  color: rgb(var(--color-grey-800));
}

.button-fill-light>i {
  background: rgb(var(--color-grey-800));
}

.button-fill-light:hover {
  color: rgb(var(--color-grey-50));
  border-color: rgb(var(--color-grey-800));
}

.button-outline-light {
  background: transparent;
  border-color: rgb(var(--color-grey-50));
  color: rgb(var(--color-grey-50));
}

.button-outline-light>i {
  background: rgb(var(--color-grey-50));
}

.button-outline-light:hover {
  color: rgb(var(--color-grey-800));
  border-color: rgb(var(--color-grey-50));
}

.button-fill-dark {
  background: rgb(var(--color-dark));
  border-color: rgb(var(--color-dark));
  color: rgb(var(--color-light));
}

.button-fill-dark>i {
  background: rgb(var(--color-light));
}

.button-fill-dark:hover {
  color: rgb(var(--color-dark));
  border-color: rgb(var(--color-dark));
}

.button-outline-dark {
  background: transparent;
  border-color: rgb(var(--color-dark));
  color: rgb(var(--color-dark));
}

.button-outline-dark>i {
  background: rgb(var(--color-dark));
}

.button-outline-dark:hover {
  color: rgb(var(--color-light));
  border-color: rgb(var(--color-light));
}

.button-fill-white {
  background: rgb(var(--color-light));
  border-color: rgb(var(--color-light));
  color: rgb(var(--color-dark));
}

.button-fill-white>i {
  background: rgb(var(--color-dark));
}

.button-fill-white:hover {
  color: rgb(var(--color-light));
  border-color: rgb(var(--color-dark));
}

.button-outline-white {
  background: transparent;
  border-color: rgb(var(--color-light));
  color: rgb(var(--color-light));
}

.button-outline-white>i {
  background: rgb(var(--color-light));
}

.button-outline-white:hover {
  color: rgb(var(--color-dark));
  border-color: rgb(var(--color-light));
}

.button-fill-blue {
  background: rgb(var(--color-info));
  border-color: rgb(var(--color-info));
  color: rgb(var(--color-light));
}

.button-fill-blue>i {
  background: rgb(var(--color-light));
}

.button-fill-blue:hover {
  background: transparent;
  color: rgb(var(--color-info));
  border-color: rgb(var(--color-info));
}

.button-outline-blue {
  background: transparent;
  border-color: rgb(var(--color-info));
  color: rgb(var(--color-info));
}

.button-outline-blue>i {
  background: rgb(var(--color-info));
}

.button-outline-blue:hover {
  color: rgb(var(--color-light));
}

.button-fill-yellow {
  background: rgb(var(--color-warning));
  border-color: rgb(var(--color-warning));
  color: rgb(var(--color-light));
}

.button-fill-yellow>i {
  background: rgb(var(--color-light));
}

.button-fill-yellow:hover {
  background: transparent;
  border-color: rgb(var(--color-warning));
  color: rgb(var(--color-warning));
}

.button-outline-yellow {
  background: transparent;
  border-color: rgb(var(--color-warning));
  color: rgb(var(--color-warning));
}

.button-outline-yellow>i {
  background: rgb(var(--color-warning));
}

.button-outline-yellow:hover {
  color: rgb(var(--color-light));
}

.button-fill-green {
  background: rgb(var(--color-green));
  border-color: rgb(var(--color-green));
  color: rgb(var(--color-light));
}

.button-fill-green>i {
  background: rgb(var(--color-light));
}

.button-fill-green:hover {
  background: transparent;
  border-color: rgb(var(--color-green));
  color: rgb(var(--color-green));
}

.button-outline-green {
  background: transparent;
  border-color: rgb(var(--color-green));
  color: rgb(var(--color-green));
}

.button-outline-green>i {
  background: rgb(var(--color-green));
}

.button-outline-green:hover {
  background: rgb(var(--color-light));
}

.button-fill-danger {
  background: rgb(var(--color-danger));
  border-color: rgb(var(--color-danger));
  color: rgb(var(--color-light));
}

.button-fill-danger>i {
  background: rgb(var(--color-light));
}

.button-fill-danger:hover {
  background: transparent;
  border-color: rgb(var(--color-danger));
  color: rgb(var(--color-danger));
}

.button-outline-danger {
  background: transparent;
  border-color: rgb(var(--color-danger));
  color: rgb(var(--color-danger));
}

.button-outline-danger>i {
  background: rgb(var(--color-danger));
}

.button-outline-danger:hover {
  background: rgb(var(--color-light));
}

.tselect {
  position: relative;
  z-index: 1;
}

.tselect>button::after {
  width: 20px;
  height: 20px;
  background: url(../img/icon-chevron-down.svg) no-repeat center/cover;
  border: none;
  content: "";
}

.tselect>button:hover,
.tselect.open>button {
  background: rgb(var(--color-grey-800));
  color: #fff;
}

.tselect>button:hover::after,
.tselect.open>button::after {
  filter: brightness(0) invert(1);
}

.tselect>ul,
.tselect>div {
  background: #fff;
  border: 0.5px solid #c0bfba;
  margin-top: 4px;
  min-width: 160px;
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
}

.tselect>ul {
  padding: 4px;
  list-style: none;
}

.tselect>div {
  padding: 20px;
  width: 400px;
}

.tselect.open>ul,
.tselect.open>div {
  display: block;
}

.tselect label {
  display: block;
}

.tselect label>input {
  display: none;
}

.tselect label>span {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 12px 8px 16px;
  height: 45px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #212121;
  cursor: pointer;
}

.tselect label>span:hover,
.tselect label>input:checked+span {
  background: rgb(var(--color-primary), 0.05);
  color: rgb(var(--color-primary));
}

.form-action {
  padding-top: 40px;
  display: flex;
  align-items: center;
}

.form-group {
  margin: 0 0 16px;
}

.select2-container .select2-selection--single,
.input-text,
.form-control {
  font: normal normal clamp(14px, 0.19vw + 13.26px, 16px)/1.5 'Abar';
  border-radius: 2px;
  opacity: 1;
  background: rgba(217, 216, 214, 0.2);
  border: 1px solid rgb(var(--color-grey-50));
  padding: 8px 20px;
  color: #000000;
  width: 100%;
  height: 42px;
}

.input-text:focus,
.form-control:focus {
  border: 1px solid rgb(var(--color-grey-50));
}

.input-text::placeholder,
.form-control::placeholder {
  font: normal normal clamp(14px, 0.19vw + 13.26px, 16px)/1.5 'Abar';
  color: #000000;
  opacity: 0.2;
}

textarea.input-text {
  height: auto;
}

textarea.input-text,
select.form-control {
  padding-top: 0;
  padding-bottom: 0;
}

select.form-control {
  appearance: none !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  -o-appearance: none !important;
  background-image: url(../img/icon-chevron-down.svg);
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position-x: 10px;
  background-position-y: 33.3333333%;
  padding-left: 50px;
}


.form-label {
  font: normal normal clamp(14px, 0.19vw + 13.26px, 16px)/1.5 'Abar';
  color: #000000;
  text-transform: capitalize;
  margin: 0 0 8px;
  display: inline-flex;
  align-items: start;
}

.form-label.required::after {
  content: "*";
  color: rgb(var(--color-danger));
  line-height: 0.5;
  margin-right: 2px;
}

abbr.required {
  color: rgb(var(--color-danger));
  text-decoration: none;
  vertical-align: super;
  cursor: default;
}

#header {
  background-color: #fff;
  border-bottom: var(--border);
  transition: transform 0.3s ease-in-out;
  width: 100vw;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-inner {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  margin-left: auto;
}

.logo>img {
  height: 36px;
}

.user-nav {
  column-gap: clamp(10px, 0.95vw + 6.29px, 20px);
  margin: 0 clamp(10px, 0.95vw + 6.29px, 20px) 0 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.user-nav>li>a,
.user-nav>li>button {
  width: 24px;
  height: 24px;
  font-size: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0;
  position: relative;
}

.user-nav>li.btn-support>a {
  background-image: url(../img/icon-support.svg);
}

.user-nav>li.btn-compare>a {
  background-image: url(../img/icon-compare.svg);
}

.user-nav>li.btn-profile>a {
  background-image: url(../img/icon-user.svg);
}

.user-nav>li.btn-search>button {
  background-image: url(../img/icon-search.svg);
}

body.searchbar-opened .user-nav>li.btn-search>button {
  background-image: url(../img/icon-close.svg);
  filter: brightness(0) invert(0);
}

.user-nav>li.btn-cart>a {
  background-image: url(../img/icon-cart.svg);
}

.user-nav>li.btn-nav>button {
  background-image: url(../img/icon-nav.svg);
}

.user-nav>li strong {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background: rgb(var(--color-primary));
  color: #fff;
  font-size: 12px;
  padding: 0 8px;
  line-height: 1;
  border-radius: 20px;
  height: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.searchbar {
  height: 0;
  background: rgb(var(--color-grey-50));
  transition: all 0.3s linear;
  overflow: hidden;
}

.searchbar.active {
  height: 77px;
}

.searchbar-form {
  width: 100%;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.searchbar-form>input,
.searchbar-form>button {
  height: 100%;
  background: none;
  border: none;
  padding: 0;
}

.searchbar-form>input {
  width: 100%;
  padding: 0;
  text-align: center;
}

.searchbar-form-btn {
  width: 40px;
  height: 40px;
  font-size: 0;
  position: relative;
  margin-right: 15px;
}

.searchbar-form-btn::before {
  width: 32px;
  height: 32px;
  background-image: url(../img/icon-search.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
}

.section-hero {
  height: 560px;
  background: rgb(var(--color-grey-50));
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-hero .section-desc {
  font: normal 800 clamp(24px, 2.29vw + 15.09px, 48px)/1.5 'Abar';
  font-size: 48px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  color: #000;
  display: flex;
  flex-direction: column;
}

.section-hero .section-desc>span>span {
  display: inline-block;
}

.section-slideshow .section-wrapper {
  padding: 0;
}

.slideshow:not(.slick-initialized) .slide-card:not(:first-child) {
  display: none;
}

.slide-card {
  width: 100vw;
  position: relative;
}

.slide-card-header {
  width: 100vw;
  /* height: 560px; */
  height: 100%;
}

.slide-card-body {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slide-card-img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

.slide-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slide-card-title {
  color: #FFFFFF;
  font: normal 800 clamp(24px, 2.29vw + 15.09px, 48px)/1.79 'Abar';
  text-align: center;
  margin: 0;
}

.slide-card-nav {
  margin: 32px 0 0;
}

.slideshow .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  bottom: clamp(20px, 1.90vw + 12.57px, 40px);
  left: 50%;
  transform: translateX(-50%);
}

.slideshow .slick-dots>li>button {
  width: 12px;
  height: 4px;
  border-radius: 25px;
  background: #ffffff;
  opacity: 0.25;
  transition: all 0.5s ease-in-out;
  border: none;
  padding: 0;
  font-size: 0;
}

.slideshow .slick-dots>li.slick-active>button {
  width: clamp(80px, 3.81vw + 65.14px, 120px);
  opacity: 0.8;
}

.section-category {
  border-top: var(--border);
  border-bottom: var(--border);
}

.product-category-card {
  position: relative;
  text-align: center;
}

.product-category-card-header {
  position: relative;
  aspect-ratio: 1/1;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-category-card-img {
  width: 54.6875%;
}

.optimized {
  position: absolute;
  display: flex;
  width: 257px;
  height: 67px;
  padding: 12px 10px;
  align-items: center;
  gap: 10px;
  top: 920px;
  justify-content: center;
  flex-direction: row;
  left: 335px;
}

.product-category-card-body {
  padding: 12px 10px;
  border-top: var(--border);
}

.product-category-card-title {
  color: #000000;
  font: normal 600 clamp(16px, 0.76vw + 13.03px, 24px)/1.79 'Abar';
  margin: 0;
}

.product-category-card:hover .product-category-card-img,
.product-category-card.active .product-category-card-img {
  filter: var(--filter-primary);
}

.product-category-card:hover .product-category-card-body,
.product-category-card.active .product-category-card-body {
  background: rgb(var(--color-primary));
}

.product-category-card:hover .product-category-card-title,
.product-category-card.active .product-category-card-title {
  color: #fff;
}

.section-category .section-footer {
  margin-top: 0;
}

.product-category-nav {
  margin: 0;
  padding: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-category-nav>li>a {
  font-weight: 550;
  font-size: 20px;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-category-nav>li>a::after {
  background: url(../img/icon-more.svg) no-repeat center/cover;
  transform: scaleX(-1);
  width: 24px;
  height: 24px;
  content: "";
}

.product-category-nav>li>a:hover {
  filter: var(--filter-primary);
}

.product-category-slideshow,
.product-category-slideshow * {
  height: 100%;
}

.product-category-banner {
  width: 100%;
}

.product-category-banner img {
  width: 100%;
  object-fit: cover;
}

.intro-card-tracking {
  position: relative;
  aspect-ratio: 1/1;
}

.intro-card-tracking-img {
  width: 87.43%;
}

.intro-grid>div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.intro-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.intro-card {
  padding: 20px;
}

.intro-card-footer {
  margin-top: auto;
  padding-top: 40px;
}

.intro-card-title {
  font: normal bold clamp(20px, 0.38vw + 18.51px, 24px)/1.66 'Abar';
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  color: #000000;
  margin: 0;
}

.intro-card-subtitle {
  font: normal normal clamp(14px, 0.19vw + 13.26px, 16px)/1.12 'Abar';
  color: #000000;
  margin: 16px 0 0;
  opacity: 0.8;
}

.section-feature {
  overflow: clip;
}

.section-feature .section-bg {
  object-fit: cover;
  animation: parallaxY linear;
  animation-timeline: view();
  animation-range: entry cover;
}

@keyframes parallaxY {
  from {
    transform: scale(1) translateY(-25%);
  }

  to {
    transform: scale(1.5) translateY(25%);
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
}

.feature-card,
.feature-card-empty {
  aspect-ratio: 1/1;
}

.feature-card {
  padding: clamp(20px, 1.14vw + 15.54px, 32px);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.feature-card-title {
  font: normal 500 clamp(14px, 0.19vw + 13.26px, 16px)/1.25 'Abar';
  color: #ffffff;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card-title::before {
  width: 12px;
  min-height: 12px;
  max-height: 12px;
  background: rgb(var(--color-primary));
  content: "";
}

.blog-card {
  position: relative;
  height: 100%;
}

.blog-card-body {
  padding: clamp(20px, 1.90vw + 12.57px, 40px);
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
}

.blog-card-body::after {
  background: url(../img/icon-more.svg) no-repeat center/cover;
  transform: scaleX(-1);
  width: clamp(24px, 1.52vw + 18.06px, 40px);
  height: clamp(24px, 1.52vw + 18.06px, 40px);
  position: absolute;
  top: 20px;
  left: 20px;
  content: "";
}

.blog-card:hover .blog-card-body::after {
  filter: var(--filter-primary);
}

.blog-card-header {
  position: relative;
}

.blog-card-header::after {
  mix-blend-mode: multiply;
  background: rgb(var(--color-primary));
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
}

.blog-card:hover .blog-card-header::after {
  opacity: 0;
  visibility: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.blog-card:hover .blog-card-body {
  background: rgba(178, 34, 34, 0.1);
}

.blog-card-time {
  font: normal 400 clamp(14px, 0.19vw + 13.26px, 16px)/1.5 'Abar';
  text-transform: uppercase;
  color: rgb(var(--color-primary));
}

.blog-card-title {
  color: #000000;
  font: normal 700 clamp(20px, 0.76vw + 17.03px, 28px)/1.57 'Abar';
  margin: clamp(8px, 0.76vw + 5.03px, 16px) 0 0;
}

.blog-card-desc {
  font: normal 400 clamp(14px, 0.19vw + 13.26px, 16px)/1.5 'Abar';
  color: #000000;
  margin: clamp(12px, 0.76vw + 9.03px, 20px) 0 0;
  opacity: 0.6;
}

.about-card {
  border: var(--border);
  position: relative;
}

.about-card-header {
  height: 100%;
}

.about-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/0.617375;
}

.about-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(20px, 1.90vw + 12.57px, 40px);
  height: 100%;
}

.about-card:hover .about-card-body {
  background: rgba(178, 34, 34, 0.1);
}

.about-card-body::after {
  background: url(../img/icon-more.svg) no-repeat center/cover;
  transform: scaleX(-1);
  width: clamp(24px, 1.52vw + 18.06px, 40px);
  height: clamp(24px, 1.52vw + 18.06px, 40px);
  position: absolute;
  top: 20px;
  left: 20px;
  content: "";
}

.about-card-title {
  font: normal 400 clamp(14px, 0.19vw + 13.26px, 16px)/1.5 'Abar';
  text-transform: uppercase;
  color: rgb(var(--color-primary));
  margin: 0;
}

.about-card-subtitle {
  font: normal 700 clamp(20px, 1.90vw + 12.57px, 40px)/1.7 'Abar';
  color: #000000;
  margin: clamp(8px, 0.76vw + 5.03px, 16px) 0 0;
}

.section-newsletter {
  overflow: hidden;
}

.section-newsletter .section-inner {
  perspective: 1000;
  transform: perspective(1000px);
  transform-style: preserve-3d;
}

.section-newsletter .section-inner-front,
.section-newsletter .section-inner-back {
  background: rgb(var(--color-primary));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: 1s ease-in-out;
  transform-style: preserve-3d;
}

.section-newsletter .section-inner-front {
  padding: clamp(40px, 3.81vw + 25.14px, 80px) clamp(15px, 2.38vw + 5.71px, 40px);
  text-align: center;
  transform: rotateX(-180deg);
}

.section-newsletter .section-inner-back {
  transform: rotateX(0deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.section-newsletter .section-inner .square-corner>li {
  transition: 0.4s ease 1.1s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.section-newsletter .section-inner .square-corner>li:nth-child(1) {
  transform: translate(-100%, 100%);
}

.section-newsletter .section-inner .square-corner>li:nth-child(2) {
  transform: translate(100%, 100%);
}

.section-newsletter .section-inner .square-corner>li:nth-child(3) {
  transform: translate(-100%, -100%);
}

.section-newsletter .section-inner .square-corner>li:nth-child(4) {
  transform: translate(100%, -100%);
}

.section-newsletter .section-inner.active .section-inner-front {
  transform: rotateX(0deg);
}

.section-newsletter .section-inner.active .section-inner-back {
  transform: rotateX(180deg);
}

.section-newsletter .section-inner.active .square-corner>li {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.section-newsletter .section-desc {
  font: normal bold clamp(24px, 0.76vw + 21.03px, 32px)/1.5 'Abar';
  text-align: center;
  color: #ffffff;
  margin: 0;
}

.section-newsletter .section-footer {
  margin-top: 32px;
}

#newsletter-form {
  width: 100%;
  max-width: 600px;
  height: 50px;
  border-radius: 40px;
  padding: 4px 20px 4px 4px;
  border: 1px solid rgb(var(--color-grey-50));
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.newsletter-input,
.newsletter-btn {
  height: 100%;
}

.newsletter-input {
  color: #fff;
  width: 100%;
  padding: 0 0 0 10px;
  border: none;
  background: none;
}

.newsletter-input::placeholder {
  color: #fff;
}

.newsletter-btn {
  height: 40px !important;
  font-size: 16px !important;
  border-radius: 40px !important;
  padding: 0 20px !important;
}

#footer {
  background-color: #0d0d0c;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

#footer::after {
  background-color: rgba(38, 38, 35, 0.5);
  background-image: linear-gradient(#0d0d0c 20px, transparent 20px),
    linear-gradient(to right, #0d0d0c 20px, transparent 20px);
  background-position: calc(50% + 1.5px) calc(50% + 1.5px);
  background-size: 23px 23px;
  box-shadow: inset 0 0 0 17px #0d0d0c;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
}

#footer a {
  color: rgba(255, 255, 255, 0.7);
}

#footer a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-top {
  padding: clamp(32px, 4.57vw + 14.17px, 80px) 0 clamp(60px, -2.67vw + 70.40px, 32px);
}

.fblock-header {
  margin: 0 0 32px;
}

.fblock-title {
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  color: #ffffff;
}

.fblock-title::before {
  width: 12px;
  height: 12px;
  background: rgb(var(--color-primary));
  margin: 0 0 12px;
  content: "";
  display: block;
}

.fblock ul.menu,
.footer-nav,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact>li>a {
  display: inline-flex;
  align-items: end;
  line-height: 1;
}

.footer-contact>li>a::after {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: url(../img/icon-more.svg) no-repeat center/cover;
  transform: scaleX(-1);
  background-size: cover;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  content: "";
}

.footer-contact>li>a:hover::after {
  opacity: 1;
}

.fblock ul.menu>li:not(:last-child),
.footer-nav>li:not(:last-child),
.footer-contact>li:not(:last-child) {
  margin-bottom: 16px;
}

.footer-bottom {
  font-size: 14px;
}

.footer-bottom>div>div:first-child {
  padding: 16px 0 80px;
  border-top: 0.5px solid #262623;
}

.powered:hover>svg {
  transform-origin: 50% 50%;
  animation: bounce 1s ease-in-out;
}

@keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }

  70% {
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.footer-logo>img {
  width: 100%;
}

body.page-template-page-about #header {
  background-color: #d9d8d6;
}

.section-about-hero {
  /*height: 680px;*/
  background: #d9d8d6;
}

.about-cell-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -6.5px;
  margin-right: -6.5px;
}

.about-cell {
  position: relative;
  line-height: 1;
}

.about-cell .square-corner>li {
  z-index: 2;
}

.about-cell .square-corner>li:nth-child(1) {
  transform: translate(-50%, 50%);
}

.about-cell .square-corner>li:nth-child(2) {
  transform: translate(50%, 50%);
}

.about-cell-inner {
  width: 100%;
  height: 100%;
  padding: clamp(20px, 1.90vw + 12.57px, 40px);
  background: #d9d8d6;
  position: static;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-about-hero .section-title {
  font: normal 800 clamp(42px, 2.67vw + 31.60px, 70px)/1.42 'Abar';
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

.section-about-hero .section-desc {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  text-align: right;
}

.section-about-hero .section-desc+.section-icon {
  max-width: 100%;
  margin-top: 30px;
  margin-bottom: 0;
  opacity: 0.5;
}

.section-about-intro .section-desc {
  font: normal 600 clamp(16px, 1.14vw + 11.54px, 28px)/1.5 'Abar';
  color: #000000;
}

.section-about-intro .section-desc>strong {
  font-weight: inherit;
  color: rgb(var(--color-primary));
  text-align: justify;
}

.section-about-company .section-footer {
  margin-top: clamp(32px, 5.77vw + 9.51px, 92.56px);
}

.section-about-company .section-desc {
  opacity: 0.8;
}

.vision-card {
  padding: clamp(32px, 4.57vw + 14.17px, 80px) 0;
  position: relative;
}

.vision-card::before,
.vision-card::after {
  width: 12px;
  height: 12px;
  background: rgb(var(--color-primary));
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  content: "";
}

.vision-card::before {
  left: 100%;
}

.vision-card::after {
  right: 100%;
}

.vision-card-header {
  margin: 0 0 clamp(12px, 0.76vw + 9.03px, 20px);
}

.vision-card-title {
  font: normal 600 clamp(14px, 0.19vw + 13.26px, 16px)/1 'Abar';
  color: #000000;
  margin: 0;
}

.vision-card-desc {
  font: normal normal clamp(14px, 0.19vw + 13.26px, 16px)/2 'Abar';
  color: #000000;
  opacity: 0.8;
}

.section-about-history .section-header {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}

.section-about-history .section-title {
  margin-top: auto;
}

.section-about-history .section-subtitle {
  margin-bottom: auto;
}

.section-about-history .section-desc {
  margin-bottom: auto;
  opacity: 0.6;
}

.about-quote-card {
  padding: 51.91px 53.04px 58.94px 50.51px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}

.about-quote-card-header {
  width: 40.6685824%;
  position: relative;
}

.about-quote-card-header::after {
  mix-blend-mode: multiply;
  background: rgb(var(--color-primary));
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.about-quote-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.about-quote-card-desc {
  font: normal normal clamp(14px, 0.95vw + 10.29px, 24px)/1.5 'Abar';
  color: #000000;
}

.about-quote-card-desc>strong {
  font-weight: inherit;
  color: rgb(var(--color-primary));
}

.section-about-award .section-header {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}

.section-about-award .section-footer {
  position: relative;
}

.section-about-award .section-title {
  margin-top: auto;
}

.section-about-award .section-subtitle {
  margin-bottom: auto;
}

.section-about-award .section-list {
  margin: 0 0 auto;
  padding: 0;
  list-style: none;
}

.section-about-award .section-list>li {
  display: flex;
}

.section-about-award .section-list>li:not(:last-child) {
  margin-bottom: 8px;
}

.section-about-award .section-list>li::before {
  min-width: 8px;
  max-width: 8px;
  height: 8px;
  background: rgb(var(--color-primary));
  margin-left: 10px;
  margin-top: 6px;
  content: "";
}

.section-about-member {
  overflow: hidden;
}

.section-about-member .section-cover {
  margin-top: 102px;
}

.section-about-member .section-body {
  margin-top: 68px;
}

.member-carousel .slick-list {
  overflow: visible;
}

.member-carousel+.member-carousel {
  margin-top: 20px;
}

.member-card {
  width: 197px;
  min-width: 197px;
  max-width: 197px;
  margin-right: 20px;
  direction: rtl;
}

.member-card-header {
  position: relative;
}

.member-card-header::after {
  mix-blend-mode: multiply;
  background: rgb(var(--color-primary));
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
}

.member-card:hover .member-card-header::after {
  opacity: 1;
  visibility: visible;
}

.member-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.member-card-body {
  padding-top: 12px;
}

.member-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #000000;
  margin: 0;
}

.member-card-subtitle {
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  color: #000000;
  opacity: 0.7;
  margin: 4px 0 0;
}

.section-about-cta .section-inner {
  background: rgb(var(--color-primary));
  padding: clamp(40px, 3.81vw + 25.14px, 80px) clamp(20px, 1.90vw + 12.57px, 40px);
  text-align: center;
}

.section-about-cta .section-desc {
  font: normal 800 clamp(24px, 0.76vw + 21.03px, 32px)/1.5 'Abar';
  text-align: center;
  color: #ffffff;
  margin: 0;
}

.section-about-cta .section-footer {
  margin-top: 32px;
}

.section-contact-hero {
  /*height: 560px;*/
  background: #fff;
}

.contact-cell-grid {
  display: flex;
  flex-wrap: wrap;
}

.contact-cell {
  position: relative;
  line-height: 1;
}

.contact-cell-corner {
  z-index: 2;
}

.contact-cell-corner>div::before,
.contact-cell-corner>div::after {
  background: url(../img/contact-corner.svg) no-repeat top right/auto 100%;
  height: 107.8817734%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  z-index: 3;
}

.contact-cell-corner>div::before {
  transform: scaleX(-1) translate(2.42424242%, -50%);
}

.contact-cell-corner>div::after {
  transform: scaleX(1) translate(2.42424242%, -50%);
}

.contact-cell-inner {
  padding: 20px;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-contact-hero .section-title {
  font: normal 800 clamp(42px, 2.67vw + 31.60px, 70px)/1.42 'Abar';
  text-transform: uppercase;
  color: #000000;
}

.section-contact-hero .section-desc {
  font: normal normal 16px/1.5 'Abar';
  color: #000000;
  text-align: start;
}

.subsection-contact-info {
  display: flex;
  flex-direction: column;
}

.subsection-contact-info .subsection-header {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: var(--border);
}

.subsection-contact-info .subsection-body {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 44.61px 40.45px 40px 40.45px;
  border: var(--border);
  margin-top: 0 !important;
}

.intro-card-tracking-img {
  width: 87.43%;
}

.contact-info {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info>li:not(:last-child) {
  margin-bottom: 16px;
}

.contact-info>li>a {
  font: normal normal clamp(14px, 0.19vw + 13.26px, 16px)/1 'Abar';
  color: #000000;
}

.contact-social {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.contact-social>li:not(:last-child) {
  margin-left: 16px;
}

.contact-social>li>a {
  font: normal normal clamp(14px, 0.19vw + 13.26px, 16px)/1.25 'Abar';
  color: #000000;
  display: inline-flex;
  align-items: end;
}

.contact-social>li>a::after {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: url(../img/icon-more.svg) no-repeat center/cover;
  background-size: cover;
  transform: scaleX(-1);
  content: "";
}

.subsection-contact-form {
  height: 100%;
  padding: 80px;
  border: var(--border);
}

body.page-template-page-career:not(.nav-opened) #header,
body.page-template-page-job:not(.nav-opened) #header {
  background-color: #0d0d0c;
  border-bottom-color: #fff;
}

body.page-template-page-career:not(.nav-opened) #header .logo,
body.page-template-page-career:not(.nav-opened) #header .user-nav>li>a,
body.page-template-page-career:not(.nav-opened) #header .user-nav>li>button,
body.page-template-page-job:not(.nav-opened) #header .logo,
body.page-template-page-job:not(.nav-opened) #header .user-nav>li>a,
body.page-template-page-job:not(.nav-opened) #header .user-nav>li>button {
  filter: brightness(0) invert(1);
}

.section-job-hero {
  border-top: var(--border);
  border-bottom: var(--border);
  border-color: #fff;
  /*height: 560px;*/
  background-color: #0d0d0c;
  background-size: 100% 25%;
  background-image: repeating-linear-gradient(0deg,
      #fff,
      #fff 0.5px,
      #0d0d0c 0.5px,
      #0d0d0c);
  overflow: hidden;
}

.section-job-hero .section-wrapper {
  padding: 0;
}

.section-job-hero .section-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.section-job-hero .section-bg>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.job-cell-grid {
  display: flex;
  flex-wrap: wrap;
  border-color: #fff !important;
}

.job-cell {
  border-color: #fff !important;
  position: relative;
  aspect-ratio: 1/1;
  line-height: 1;
}

.job-cell::before,
.job-cell::after {
  width: 6px;
  height: 6px;
  background: #ffffff;
  position: absolute;
  content: "";
  z-index: 2;
}

.job-cell::before {
  top: 100%;
  right: 0;
  transform: translate(50%, -50%);
}

.job-cell::after {
  top: 100%;
  right: 100%;
  transform: translate(50%, -50%);
}

.job-cell-inner {
  padding: 20px;
  width: 100%;
  height: 100%;
  background: #0d0d0c;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-job-hero .section-title {
  font-size: 100px;
  font-weight: normal;
  line-height: 90px;
  text-transform: uppercase;
  color: #ffffff;
  text-wrap: nowrap;
}

.section-job-hero .section-subtitle {
  font-size: 100px;
  font-weight: normal;
  line-height: 90px;
  text-transform: uppercase;
  color: rgb(var(--color-primary));
}

.section-job-hero .section-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
}

.job-hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-hero-card {
  border-radius: 10px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  padding: 20px;
  display: inline-flex;
  flex-direction: column;
  text-align: right;
  text-wrap: nowrap;
  position: absolute;
}

.parallax-element {
  transition: transform 0.05s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: absolute;
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

.job-hero-card:not(.parallax-element) {
  opacity: 0;
  visibility: hidden;
}

.job-hero-card-title {
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  color: #ffffff;
  margin: 0;
}

.job-hero-card-type {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  color: #ffffff;
  margin-top: 4px;
}

.job-hero-card-location {
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  color: #ffffff;
  margin-top: 4px;
}

.job-grid>div {
  aspect-ratio: 1/1;
}

.job-grid>div:hover {
  z-index: 2;
}

.job-card {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  cursor: pointer;
}

.job-grid>div:nth-child(even):hover .job-card {
  right: auto;
  left: 100%;
}

.job-card-inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.job-card-title {
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
  color: #000000;
  margin: 0;
}

.job-card-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
}

.job-card-type {
  border-radius: 2px;
  background: rgba(255, 55, 28, 0.1);
  padding: 4px 12px 8px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: rgb(var(--color-primary));
}

.job-card-location {
  font-size: 14px;
  font-weight: normal;
  line-height: 16.38px;
  color: #000000;
  margin-right: 12px;
  opacity: 0.7;
}

.job-card-body {
  background-color: rgb(var(--color-primary));
  color: #fff;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.job-card-info {
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-card-info>li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: normal;
  line-height: 16.38px;
}

.job-card-info>li::before {
  background: url(../img/icon-arrow.svg) no-repeat center/cover;
  transform: scaleX(-1);
  width: 16px;
  height: 16px;
  margin-left: 8px;
  content: "";
}

.job-card-info>li:not(:last-child) {
  margin-bottom: 8px;
}

.job-card:hover .job-card-inner {
  background-color: rgb(var(--color-primary));
}

.job-card:hover .job-card-title {
  color: #fff;
}

.job-card:hover .job-card-type {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.job-card:hover .job-card-location {
  color: #fff;
  opacity: 0.7;
}

.job-card:hover .job-card-body {
  opacity: 1;
  visibility: visible;
}

body.blog .headerbar>.row>div:last-child>.page-header-box {
  padding: 0;
}

body.blog .page-header-title {
  font: normal normal clamp(42px, 1.71vw + 35.31px, 60px)/1.5 'Abar';
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

body.blog .page-header-title strong {
  font-weight: inherit;
  color: rgb(var(--color-primary));
}

.blog-featured-list {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-featured-list>.blog-card:not(:last-child) {
  border-bottom: var(--border);
}

.blog-card-featured .blog-card-body {
  padding: 24px 40.33px 24px 96px;
  aspect-ratio: unset;
}

.entry-cover>img {
  width: 100%;
}

.entry-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.entry-info-time,
.entry-info-cat {
  font: normal normal clamp(12px, 0.38vw + 10.51px, 16px)/1.6 'Abar';
  text-transform: uppercase;
}

.entry-info-time {
  color: rgb(var(--color-primary));
}

.entry-info-cat {
  color: #000;
}

.entry-title {
  font: normal normal clamp(20px, 1.52vw + 14.06px, 36px)/1.44 'Abar';
  color: #000000;
  margin: clamp(8px, 0.76vw + 5.03px, 16px) 0 0;
  text-wrap: balance;
}

.entry-excerpt {
  font-size: 20px;
  font-weight: normal;
  line-height: 32px;
  color: #000000;
  opacity: 0.8;
  margin: clamp(20px, 0.38vw + 18.51px, 24px) 0 0;
}

.entry-subheader {
  padding: clamp(20px, 11.43vw - 24.57px, 140px) clamp(20px, 8.57vw - 13.43px, 110px) clamp(20px, 1.90vw + 12.57px, 40px);
}

.entry-share {
  padding: clamp(12px, 0.76vw + 9.03px, 20px) 0;
  border-top: var(--border);
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: clamp(20px, 1.90vw + 12.57px, 40px) 0 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
}

.entry-share>strong {
  margin-left: clamp(20px, 1.90vw + 12.57px, 40px);
  opacity: 0.6;
}

.entry-share>ul {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-share>ul>li:not(:last-child) {
  margin-left: 12px;
}

.entry-share>ul>li>a {
  color: #000000;
  display: inline-flex;
  align-items: end;
  opacity: 0.7;
}

.entry-share>ul>li>a::after {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: url(../img/icon-more.svg) no-repeat center/cover;
  background-size: cover;
  transform: scaleX(-1);
  content: "";
}

.entry-share>ul>li>a:hover {
  opacity: 1;
}

.entry-body {
  padding: 0 clamp(20px, 8.57vw - 13.43px, 110px) clamp(110px, 18.10vw + 39.43px, 300px);
}

#page-header+#page-body .entry-body {
  padding-top: clamp(50px, 2.86vw + 38.86px, 80px);
}

#page-header {
  border-top: var(--border);
  border-width: 0.25px;
}

.page-header-box {
  padding: clamp(20px, 1.90vw + 12.57px, 40px);
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.page-header-title {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  text-transform: uppercase;
  color: rgb(var(--color-primary));
  margin: 0 0 16px;
}

.page-header-desc {
  font-size: 44px;
  font-weight: 800;
  line-height: 56px;
  color: #000000;
  margin: 0;
}

.page-header-search-input {
  padding: 0 20px;
  border-radius: 2px;
  height: 48px;
  opacity: 1;
  background: rgba(255, 55, 28, 0.1);
  border: 1px solid rgba(255, 55, 28, 0.25);
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  color: #000000;
}

.page-header-search-btn {
  color: #fff;
  display: inline-flex;
  align-items: center;
}

.page-header-search-btn::before {
  width: 24px;
  height: 24px;
  background: url(../img/icon-search.svg) no-repeat center/cover;
  margin-left: 10px;
  filter: brightness(0) invert(1);
  content: "";
}

.page-header-search-btn:hover::before {
  filter: var(--filter-primary);
}

.page-header-search-category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 16px 0 0;
  column-gap: 4px;
  row-gap: 4px;
}

.page-header-search-category>label {
  position: relative;
  display: inline-flex;
  margin: 0;
}

.page-header-search-category>label>span {
  border-radius: 2px;
  opacity: 1;
  background: rgba(255, 55, 28, 0.1);
  padding: 4px 12px 8px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: rgb(var(--color-primary));
  cursor: pointer;
}

.page-header-search-category>label>span:hover {
  background: rgba(255, 55, 28, 0.4);
}

.page-header-search-category>label>input:checked+span {
  background: rgb(var(--color-primary));
  color: #fff;
}

.page-header-search-category>label>input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.page-header-filter {
  display: flex;
  gap: 12px;
}

.page-header-filter-active {
  padding-top: 8px;
  margin-top: 8px;
  border-top: 0.5px solid #c0bfba;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 16px;
}

.page-header-filter-active .filter-tag-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #807e75;
}

.page-header-filter-active .filter-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 12px 4px 8px;
  gap: 4px;
  height: 28px;
  background: rgba(242, 242, 241, 0.5);
  border-radius: 40px;
  line-height: 1;
  font-weight: 400;
  font-size: 14px;
  color: #737169;
  cursor: pointer;
}

.page-header-filter-active .filter-tag::after {
  width: 20px;
  height: 20px;
  background: url(../img/icon-close.svg) no-repeat center/cover;
  filter: grayscale(1);
  content: "";
}

.page-header-filter-active .filter-tag:hover {
  background: rgb(var(--color-dark));
  color: #fff;
}

.page-header-filter-active .filter-tag:hover::after {
  filter: brightness(0) invert(1);
}

.page-header-filter-reset {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #807e75;
  white-space: nowrap;
  margin-right: auto;
  background: none;
  border: none;
  padding: 0;
}

.compare-toggle {
  height: 36px;
}

.product-grid {
  /*padding-bottom: 171.56px;*/
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-header {
  position: relative;
  text-align: center;
}

.product-card:not(.product-featured) .product-card-header {
  padding: 18.75%;
  aspect-ratio: 1/1;
}

.product-card-header::after {
  background: url(../img/icon-more.svg) no-repeat center/cover;
  transform: scaleX(-1);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 20px;
  left: 20px;
  content: "";
}

.product-card.product-featured .product-card-header::after {
  filter: brightness(0) invert(1);
}

.product-card.product-featured {
  background: rgba(var(--color-primary), 0.25);
}

.product-card-compare,
.product-card-like {
  width: 24px;
  height: 24px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  border: none;
  padding: 0;
  font-size: 0;
  bottom: 20px;
}

.product-card-compare {
  background-image: url(../img/icon-checkbox-01.svg);
  left: 20px;
  opacity: 0;
  visibility: hidden;
}

.product-card.product-in-compare .product-card-compare {
  background-image: url(../img/icon-checkbox-02.svg);
}

.section-category .product-card .product-card-compare {
  display: none;
}

.product-card-like {
  background-image: url(../img/icon-heart.svg);
  right: 20px;
  display: none;
}

.product-card-like:hover,
.product-card-like.active {
  filter: var(--filter-primary);
}

.product-card-img {
  width: 100%;
}

.product-card-disabled .product-card-img {
  filter: grayscale(1);
}

.product-card-body {
  border-top: 0.5px solid #403f3b;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-title {
  font: normal normal clamp(14px, 0.57vw + 11.77px, 20px)/1.17 'Abar';
  color: #000000;
  margin: 0;
}

.product-card-title>a {
  color: inherit;
}

.product-card-price,
.product-card-label {
  font: normal bold clamp(14px, 0.19vw + 13.26px, 16px)/1.17 'Abar';
  color: #000000;
  opacity: 0.8;
  margin: 12px 0 0;
}

.product-card-label-danger {
  color: rgb(var(--color-secondary));
}

.product-card-featured .product-card-body {
  background-color: rgba(255, 55, 28, 0.25);
}

.product-card-badge {
  padding: 4px 12px 8px 12px;
  border-radius: 2px;
  background: rgb(var(--color-primary));
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #ffffff;
  position: absolute;
  top: 20px;
  right: 20px;
}

.product-card-color {
  row-gap: 10px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
  font-size: 0;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.product-card-color>li {
  width: 12px;
  height: 12px;
  border: var(--border);
}

.product-card.product-card-mini {
  flex-direction: row;
  align-items: center;
  margin-top: 0 !important;
}

.product-card.product-card-mini .product-card-body {
  border: none;
  padding: 0;
  margin-right: 10px;
  height: 100%;
}

.product-card.product-card-mini .product-card-header {
  padding: 0 !important;
  min-width: 100px;
  max-width: 100px;
}

.product-card-mini .product-card-header::after {
  display: none;
}

body.page-template-default .mainbar,
.product-intro {
  border-right: var(--border);
  border-left: var(--border);
}

.product-gallery {
  aspect-ratio: 1/1;
  padding: 60px 60px 0;
}

.product-gallery:not(.slick-initialized) {
  opacity: 0;
  visibility: hidden;
}

.product-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.product-gallery .slick-dots {
  column-gap: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 28px auto;
  padding: 0;
  list-style: none;
  line-height: 4px;
}

.product-gallery .slick-dots>li>button {
  width: 12px;
  height: 4px;
  border-radius: 25px;
  opacity: 0.25;
  background: #403f3b;
  font-size: 0;
  padding: 0;
  transition: width 0.4s ease-in-out;
}

.product-gallery .slick-dots>li.slick-active>button {
  width: clamp(80px, 3.81vw + 65.14px, 120px);
  opacity: 0.8;
}

.product-inner {
  height: 100%;
  padding: clamp(20px, 3.81vw + 5.14px, 60px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-breadcrumb {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product-breadcrumb>li:not(:first-child)::before {
  background: url(../img/icon-arrow.svg) no-repeat center/cover;
  transform: scaleX(-1);
  filter: invert(1);
  width: 16px;
  height: 16px;
  margin: 0 8px;
  display: inline-block;
  vertical-align: middle;
  content: "";
}

.product-title {
  font: normal normal clamp(20px, 1.14vw + 15.54px, 32px)/1.17 'Abar';
  color: #000000;
  margin: 0;
}

.product-desc {
  font: normal normal clamp(14px, 0.19vw + 13.26px, 16px)/1.5 'Abar';
  color: #000000;
  margin: 20px 0 0;
}

.product-footer {
  margin-top: 32px;
}

.product-info-price {
  font-size: 24px;
  font-weight: bold;
  line-height: 28.08px;
  color: #000000;
}

.product-action {
  margin: 30px 0 0;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.product-action-helper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}

.product-action-compare,
.product-action-like {
  width: 24px;
  height: 24px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: none;
  padding: 0;
  font-size: 0;
}

.product-action-compare {
  background-image: url(../img/icon-compare.svg);
  opacity: 0.5;
}

.product-action-like {
  background-image: url(../img/icon-heart.svg);
  display: none;
}

.product-action-like:hover,
.product-action-like.active {
  filter: var(--filter-primary);
}

.product-action-cart::after {
  width: 24px;
  height: 24px;
  background: url(../img/icon-cart.svg) no-repeat center/cover;
  filter: brightness(0) invert(1);
  margin-right: 40px;
  transition: all 0.4s ease-in-out;
  content: "";
}

.product-action-cart:hover::after {
  filter: var(--filter-primary);
}

.product-action-disabled::after {
  width: 24px;
  height: 24px;
  background: url(../img/icon-close.svg) no-repeat center/cover;
  filter: brightness(0) invert(1);
  margin-right: 40px;
  transition: all 0.4s ease-in-out;
  content: "";
}

.product-action-disabled:hover::after {
  filter: var(--filter-primary);
}

.product-action-download::after {
  width: 24px;
  height: 24px;
  background: url(../img/icon-download.svg) no-repeat center/cover;
  filter: brightness(0) invert(0);
  margin-right: 40px;
  transition: all 0.4s ease-in-out;
  content: "";
}

.product-action-download:hover::after {
  filter: brightness(0) invert(1);
}

.product-tab-nav {
  border: var(--border);
  margin: 0;
  padding: 0 clamp(20px, 1.90vw + 12.57px, 40px);
  list-style: none;
  display: flex;
  align-items: center;
}

.product-tab-nav>li {
  height: 100%;
}

.product-tab-nav>li:not(:last-child) {
  margin-left: 32px;
}

.product-tab-nav>li>a {
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.25);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.product-tab-nav>li:hover>a {
  color: #000;
}

.product-tab-nav>li.active>a {
  color: #000;
  border-bottom-color: rgb(var(--color-primary));
}

.product-tab-content {
  border-left: var(--border);
  border-right: var(--border);
  padding-bottom: clamp(94.19px, 10.08vw + 54.89px, 200px);
}

.product-tab-content .subsection {
  padding: 40px;
}

.product-tab-content .subsection+.subsection {
  padding-top: 0;
}

.product-tab-content .subsection-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 37.44px;
  color: #000000;
  margin: 0;
}

.product-tab-content .subsection-body {
  margin-top: clamp(20px, 1.90vw + 12.57px, 40px);
}

.product-variation-color {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.product-variation-color>label>div {
  padding: 8px 20px;
  gap: 8px;
  height: 45px;
  background: rgba(242, 242, 241, 0.2);
  border: 0.5px solid #d9d8d6;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin: 0;
}

.product-variation-color>label>input:checked+div {
  border-color: #000;
}

.product-variation-color>label>input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.product-variation-color>label>div>span {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.product-variation-color>label>div>i {
  width: 16px;
  height: 16px;
  font-size: 0;
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px #000;
  position: relative;
}

.product-variation-color>label>input:checked+div>i::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6 12.1c-.2 0-.4 0-.5-.2L2.2 8.6c-.3-.3-.3-.8 0-1.1s.8-.3 1.1 0l2.8 2.8 6.8-6.8c.3-.3.8-.3 1.1 0s.3.8 0 1.1l-7.3 7.3c-.1.1-.3.2-.5.2Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: difference;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

/*.product-variation-color > label > input:disabled + div,
.product-variation-color > label > input.disabled + div {
  opacity: 0.5;
  filter: grayscale(1);
  pointer-events: none;
  cursor: default;
}*/
#page-alert {
  background: #9d9d9d;
  background: rgb(var(--color-primary));
  color: #fff;
  padding: 12px 12px;
  text-align: center;
}

#page-alert>a {
  color: #000;
  font-weight: bold;
}

#page-alert>a:hover {
  color: #fff;
}

.dashboard-header,
.dashboard-sidebar,
.dashboard-footer {
  /* background: rgba(242, 242, 241, 0.5); */
  background: #f8f8f8;
}

.dashboard-header-logo img {
  height: 24px;
}

.dashboard-welcome {
  font-size: 16px;
  font-weight: normal;
  line-height: 18.72px;
  color: #000;
}

.dashboard-welcome strong {
  color: rgb(var(--color-primary));
  font-weight: inherit;
}

.dashboard-title {
  font-size: 28px;
  font-weight: normal;
  line-height: 32.76px;
  color: #000000;
  margin: 0;
}

.dashboard-nav>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-nav>ul>li {
  border-bottom: var(--border);
}

.dashboard-nav>ul>li>a {
  padding: 16px clamp(12px, 2.67vw + 1.60px, 40px);
  font-size: 16px;
  font-weight: 500;
  line-height: 18.72px;
  color: #000000;
  display: flex;
  align-items: center;
}

.dashboard-nav>ul>li>a::before {
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-left: 16px;
  filter: brightness(0) invert(0);
  content: "";
}

.dashboard-nav>ul>li.dashboard-nav-main>a::before {
  background-image: url(../img/icon-nav.svg);
}

.dashboard-nav>ul>li.dashboard-nav-profile>a::before {
  background-image: url(../img/icon-user.svg);
}

.dashboard-nav>ul>li.dashboard-nav-home>a::before {
  background-image: url(../img/icon-home.svg);
}

.dashboard-nav>ul>li.dashboard-nav-order>a::before {
  background-image: url(../img/icon-box.svg);
}

.dashboard-nav>ul>li.dashboard-nav-setting>a::before {
  background-image: url(../img/icon-settings.svg);
}

.dashboard-nav>ul>li.dashboard-nav-wish>a::before {
  background-image: url(../img/icon-heart.svg);
}

.dashboard-nav>ul>li.dashboard-nav-logout>a::before {
  background-image: url(../img/icon-log-out.svg);
}

.dashboard-nav>ul>li>a:hover,
.dashboard-nav>ul>li.active>a {
  color: rgb(var(--color-primary));
}

.dashboard-nav>ul>li>a:hover::before,
.dashboard-nav>ul>li.active>a::before {
  filter: var(--filter-primary);
}

.dashboard-copyright {
  margin-top: auto;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5);
}

body.dashboard-ticket .dashboard-mainbar {
  padding-top: 0;
  padding-bottom: 0;
}

.dashboard-mainbar .subsection+.subsection {
  padding-top: 30px;
  margin-top: 30px;
  border-top: var(--border);
}

.dashboard-mainbar .subsection-title {
  font-size: 20px;
  font-weight: normal;
  line-height: 23.4px;
  color: #000000;
  margin: 0;
}

.subsection-header+.subsection-body {
  margin-top: 20px;
}

.subsection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-welcome-alert {
  font: normal normal clamp(22px, 2.48vw + 12.34px, 48px)/1.17 'Abar';
  color: #000000;
  text-align: center;
  padding: clamp(15px, 5.90vw - 8.03px, 77px) clamp(30px, 0.95vw + 26.29px, 40px) clamp(15px, 6.67vw - 11.00px, 85px);
  border-radius: 5px;
  background: rgb(var(--color-grey-50));
}

.dashboard-welcome-alert>span::before {
  width: clamp(40px, 1.24vw + 35.17px, 53px);
  height: clamp(40px, 1.24vw + 35.17px, 53px);
  margin: 0 clamp(10px, 0.48vw + 8.14px, 15px);
  background: url(../img/icon-profile.svg) no-repeat center/cover;
  display: inline-block;
  vertical-align: middle;
  content: "";
}

.dashboard-welcome-alert>strong {
  font-weight: inherit;
  position: relative;
}

.dashboard-welcome-alert>strong::after {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 10px;
  background: url(../img/icon-brush.svg) no-repeat center/contain;
  content: "";
}

.dashboard-table {
  width: 100%;
}

.dashboard-table>thead {
  border-bottom: 1px solid #262623;
}

.dashboard-table>thead th {
  padding: 0 20px 22px;
  font-size: 14px;
  font-weight: 300;
  line-height: 16.38px;
  text-transform: capitalize;
  color: #262623;
}

.dashboard-table>tbody>tr:not(:last-child) {
  border-bottom: var(--border);
}

.dashboard-table>tbody td {
  padding: 22px 20px;
  font-size: 16px;
  font-weight: normal;
  line-height: 18.72px;
  text-transform: uppercase;
  color: #403f3b;
}

.dashboard-table tr>th:last-child,
.dashboard-table tr>td:last-child {
  text-align: end;
  text-wrap: nowrap;
  padding-left: 0;
}

.dashboard-table tr>th:first-child,
.dashboard-table tr>td:first-child {
  padding-right: 0;
}

.dashboard-table tfoot>tr>td:only-child {
  padding-top: 20px;
}

.shop-table-thumbnail {
  width: 60px;
  height: 60px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.bg-success {
  background-color: rgb(var(--color-success)) !important;
}

.bg-danger {
  background-color: rgb(var(--color-danger)) !important;
}

.bg-warning {
  background-color: rgb(var(--color-warning)) !important;
}

.bg-info {
  background-color: rgb(var(--color-info)) !important;
}

.color-success {
  color: rgb(var(--color-success)) !important;
}

.color-danger {
  color: rgb(var(--color-danger)) !important;
}

.color-warning {
  color: rgb(var(--color-warning)) !important;
}

.color-info {
  color: rgb(var(--color-info)) !important;
}

.badge {
  height: 33px;
  border-radius: 25px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.38px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.badge-success {
  background: rgba(var(--color-success), 0.15);
  color: rgb(var(--color-success));
}

.badge-danger {
  background: rgba(var(--color-danger), 0.15);
  color: rgb(var(--color-danger));
}

.badge-warning {
  background: rgba(var(--color-warning), 0.15);
  color: rgb(var(--color-warning));
}

.badge-info {
  background: rgba(var(--color-info), 0.15);
  color: rgb(var(--color-info));
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info,
.alert {
  padding: 16px;
  display: flex;
  gap: 12px;
  color: var(--color-dark);
  border: var(--border);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
}

ul.woocommerce-message,
ul.woocommerce-error,
ul.woocommerce-info,
ul.alert {
  flex-direction: column;
  margin: 0;
  list-style: none;
}

.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a,
.alert a {
  color: inherit;
}

.woocommerce-message a:hover,
.woocommerce-error a:hover,
.woocommerce-info a:hover,
.alert a:hover {
  opacity: 0.5;
}

*+.woocommerce-notices-wrapper,
.woocommerce-notices-wrapper+*,
*+.woocommerce-message,
*+.woocommerce-error,
*+.woocommerce-info,
*+.alert,
.woocommerce-message+*,
.woocommerce-error+*,
.woocommerce-info+*,
.alert+* {
  margin-top: 24px;
}

.woocommerce-message,
.alert-success {
  background-color: rgba(var(--color-success), 0.15);
  border-color: rgba(var(--color-success), 1);
}

.woocommerce-error,
.alert-danger {
  background-color: rgba(var(--color-danger), 0.15);
  border-color: rgba(var(--color-danger), 1);
}

.alert-warning {
  background-color: rgba(var(--color-warning), 0.15);
  border-color: rgba(var(--color-warning), 1);
}

.woocommerce-info,
.alert-info {
  background-color: rgba(var(--color-info), 0.15);
  border-color: rgba(var(--color-info), 1);
}

.checkout-inline-error-message,
.form-helper {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: rgb(var(--color-grey-700));
  margin-top: 5px;
}

.checkout-inline-error-message {
  color: rgb(var(--color-danger));
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: rgb(var(--color-primary));
}

#form-profile .form-action,
#form-address .form-action {
  justify-content: flex-end;
}

.dashboard-btn-nav {
  width: clamp(24px, 0.57vw + 21.77px, 30px);
  height: clamp(24px, 0.57vw + 21.77px, 30px);
  font-size: 0;
  background: url(../img/icon-nav.svg) no-repeat center/cover;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0;
}

.shopping-header {
  background-color: #fff;
  border-bottom: var(--border);
  padding: 40px 0;
  text-align: center;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.shopping-header-logo>img {
  height: 24px;
}

.shopping-footer {
  margin-top: auto;
  text-align: center;
}

.shopping-footer-logo>img {
  height: 32px;
}

.shopping-copyright {
  background: #000;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
  color: #ffffff;
  margin-top: 80px;
}

.shopping-subheader {
  padding: 55px 40px 66px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.shopping-subheader::before {
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
}

.shopping-title {
  font-size: 28px;
  font-weight: normal;
  line-height: 32.76px;
  color: #000000;
  margin: 0;
}

.shopping-breadcrumb {
  margin: 35.5px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  counter-reset: breadcrumb;
}

.shopping-breadcrumb>li {
  display: inline-flex;
  align-items: center;
}

.shopping-breadcrumb>li>span {
  font-size: 20px;
  font-weight: 500;
  line-height: 23.4px;
  color: #000000;
  margin-right: 12px;
  white-space: nowrap;
}

.shopping-breadcrumb>li:not(.active)>span {
  display: none;
}

.shopping-breadcrumb>li:not(:last-child)::after {
  width: 60px;
  height: 2px;
  opacity: 0.5;
  background: #9d9d9d;
  margin: 0 12px;
  content: "";
}

.shopping-breadcrumb>li:not(.active):not(:last-child)::after {
  width: 32px;
}

.shopping-breadcrumb>li::before {
  width: 36px;
  height: 36px;
  aspect-ratio: 1/1;
  background: rgb(var(--color-primary));
  font-size: 20px;
  font-weight: 500;
  line-height: 23.4px;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  counter-increment: breadcrumb;
  content: counter(breadcrumb, persian);
}

.shopping-breadcrumb>li.active~li::before {
  background: linear-gradient(0deg,
      rgba(255, 55, 28, 0.2),
      rgba(255, 55, 28, 0.2)),
    #ffffff;
}

.shopping-body {
  padding: 28px 0 276px;
}

#form-checkout .form-action {
  justify-content: space-between;
}

.bg-pattern-1 {
  background-image: linear-gradient(#d9d8d6 0.5px, transparent 0),
    linear-gradient(90deg, #d9d8d6 0.5px, transparent 0);
  background-size: 40px 40px;
  background-position: center;
}

.bg-pattern-2 {
  background-color: #d9d8d6;
  background-image: linear-gradient(#fff 20px, transparent 20px),
    linear-gradient(to right, #fff 20px, transparent 20px);
  background-position: calc(50% + 1.5px) calc(50% + 1.5px);
  background-size: 23px 23px;
  box-shadow: inset 0 0 0 17px #fff;
}

.ribbon-carousel {
  padding: 32px 0;
}

.ribbon-carousel-primary {
  background: rgb(var(--color-primary));
}

.ribbon-carousel-dark {
  background: #000000;
}

.ribbon-card {
  margin-right: 32px;
  filter: brightness(0) invert(1);
  display: inline-flex;
}

.ribbon-card>img {
  height: 24px;
}

.square-corner {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.square-corner>li {
  width: 12px;
  height: 12px;
  position: absolute;
}

.square-corner-primary>li {
  background: rgb(var(--color-primary));
}

.square-corner-dark>li {
  background: #000;
}

.square-corner-light>li {
  background: #fff;
}

.square-corner>li:nth-child(1) {
  bottom: 100%;
  left: 100%;
}

.square-corner>li:nth-child(2) {
  bottom: 100%;
  right: 100%;
}

.square-corner>li:nth-child(3) {
  top: 100%;
  left: 100%;
}

.square-corner>li:nth-child(4) {
  top: 100%;
  right: 100%;
}

.shop-wrapper {
  padding: 20px;
  background: rgba(242, 242, 241, 0.5);
}

.shop-table {
  width: 100%;
}

.shop-table tr>td,
.shop-table tr>td {
  padding: 20px;
}

.shop-table>tbody>tr>td:first-child {
  padding-right: 0;
}

.shop-table>tbody>tr>td:last-child {
  padding-left: 0;
}

.shop-table tr:first-child>td {
  padding-top: 0;
}

.shop-table>tbody>tr:not(:last-child) {
  border-bottom: var(--border);
}

.shop-table>tfoot>tr>th,
.shop-table>tfoot>tr>td {
  padding-top: 20px !important;
  padding-bottom: 0;
}

.shop-table>tfoot {
  border-top: 4px solid #fff;
}

.shop-table tfoot th {
  font-size: 16px;
  font-weight: normal;
  line-height: 18.72px;
  color: rgba(0, 0, 0, 0.6);
}

.shop-table tfoot td {
  font-size: 20px;
  font-weight: bold;
  line-height: 23.4px;
  color: #000000;
}

.shop-table-thumbnail {
  width: 60px;
  height: 60px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.shop-table-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 18.72px;
  color: #000000;
  margin: 0;
}

.shop-table-price {
  font-size: 16px;
  font-weight: normal;
  line-height: 18.72px;
  color: #000000;
  opacity: 0.6;
  margin: 12px 0 0;
}

.shop-table-remove {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.38px;
  color: rgb(var(--color-primary));
  text-wrap: nowrap;
  display: flex;
  align-items: center;
}

.shop-table-remove::before {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url(../img/icon-trash.svg) no-repeat center/cover;
  content: "";
}

.shop-table-remove:hover::before {
  filter: brightness(0) invert(0);
}

.shopping-body .subsection+.subsection {
  margin-top: 40px;
}

.shopping-body .subsection .subsection-title {
  font-size: 20px;
  font-weight: normal;
  line-height: 23.4px;
  color: #000000;
  text-transform: capitalize;
  margin: 0;
}

.receipt-table {
  width: 100%;
  padding: 12px;
}

.receipt-table>tbody>tr {
  border-bottom: var(--border);
}

.receipt-table>tfoot>tr {
  border-top: 3px solid #000;
}

.receipt-table tr>th,
.receipt-table tr>td {
  padding: 20px 0;
}

.receipt-table tr>td {
  text-align: end;
}

.receipt-table>tbody>tr>th {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #000000;
}

.receipt-table>tbody>tr>td {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #000000;
}

.receipt-table>tfoot>tr>th {
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
  color: #000000;
}

.receipt-table>tfoot>tr>td {
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
  text-align: left;
  color: #000000;
}

.modal {
  padding: clamp(50px, 4.76vw + 31.43px, 100px) 0;
}

.modal-dialog {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.modal-header {
  display: flex;
  align-items: center;
  border: none;
  padding: clamp(20px, 1.90vw + 12.57px, 40px) clamp(20px, 1.90vw + 12.57px, 40px) 0;
  text-align: center;
}

.modal-body {
  padding: clamp(20px, 1.90vw + 12.57px, 40px) clamp(20px, 1.90vw + 12.57px, 40px) clamp(20px, 1.90vw + 12.57px, 40px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.modal-footer {
  padding: 0 clamp(20px, 1.90vw + 12.57px, 40px) clamp(20px, 1.90vw + 12.57px, 40px);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font: normal bold clamp(16px, 0.76vw + 13.03px, 24px)/1 'Abar';
  color: #000000;
  margin: 0 auto;
}

.modal-title>span {
  color: rgb(var(--color-primary));
}

.modal-body fieldset>div>div:last-child>.form-group {
  margin-bottom: 0;
}

.modal-header .close {
  width: 28px;
  height: 28px;
  background: url(../img/icon-close.svg) no-repeat center/cover;
  padding: 0;
  margin: 0;
  font-size: 0;
  position: absolute;
  left: 33px;
  top: 33px;
  border: none;
}

.modal-header .close:hover {
  filter: brightness(0) invert(0);
}

.intro-card-account {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.intro-card-account-title {
  font-size: 32px;
  font-weight: normal;
  line-height: normal;
  color: #000000;
  margin: 0;
}

.intro-card-account-title::before {
  width: 53px;
  height: 53px;
  margin: 0 0 12px;
  background: url(../img/icon-profile.svg) no-repeat center/cover;
  display: block;
  content: "";
}

.intro-card-account-desc {
  font-size: 16px;
  font-weight: normal;
  line-height: normal;
  color: #000000;
  opacity: 0.8;
  margin: 12px 0 0;
}

.intro-card-account-footer {
  padding-top: 24px;
  margin-top: auto;
}

.intro-card-nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-card-nav>li {
  height: 100%;
}

.intro-card-nav>li>a {
  padding: 40px 40px 40px 80px;
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
  color: #000000;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.intro-card-nav>li>a::after {
  background: url(../img/icon-more.svg) no-repeat center/cover;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: scaleX(-1) translateY(-50%);
  content: "";
}

.intro-card-nav>li>a:hover::after {
  filter: var(--filter-primary);
}

.intro-card-nav>li:not(:last-child) {
  border-bottom: var(--border);
}

.sup-grid {
  margin: -32px;
}

.sup-grid:before,
.sup-grid:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  z-index: 1;
}

.sup-grid:before {
  background-image: -webkit-linear-gradient(left,
      #fff 0%,
      rgba(255, 255, 255, 0.25) 50%,
      #fff 100%);
  background-image: linear-gradient(to right,
      #fff 0%,
      rgba(255, 255, 255, 0.25) 50%,
      #fff 100%);
}

.sup-grid:after {
  background-image: -webkit-linear-gradient(bottom,
      #fff 0%,
      rgba(255, 255, 255, 0.25) 50%,
      #fff 100%);
  background-image: linear-gradient(to top,
      #fff 0%,
      rgba(255, 255, 255, 0.25) 50%,
      #fff 100%);
}

.sup-grid>div {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}

.sup-card {
  padding: 32px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  z-index: 2;
}

.sup-card:hover::after {
  background: url(../img/icon-more.svg) no-repeat center/cover;
  filter: var(--filter-primary);
  transform: scaleX(-1);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  left: 10px;
  content: "";
}

.sup-card-img {
  height: 28px;
}

.sup-card-body {
  margin: 16px 0 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sup-card-title {
  font-size: 16px;
  font-weight: normal;
  line-height: normal;
  color: #000000;
  margin: 0;
}

.sup-card-desc {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  color: #000000;
  opacity: 0.6;
  margin: auto 0 0;
  padding-top: 24px;
}

.section-contact-info .section-wrapper {
  padding-bottom: 0;
}

#contact-map {
  background-color: rgb(var(--color-secondary));
  width: 100%;
  height: 100%;
}

.contact-info-grid {
  border-left: var(--border);
  border-right: var(--border);
}

.contact-info-grid>div:nth-child(2) {
  padding-bottom: 100px;
}

.contact-info-grid .contact-cell-grid {
  border: none;
}

.contact-info-grid .contact-cell-grid>div {
  flex: 0 0 33.3333333%;
  max-width: 33.3333333%;
  border: none;
}

.contact-info-grid .contact-cell-grid>div:not(:last-child) {
  border-left: var(--border);
}

.contact-info-cell-info {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: var(--border);
}

.contact-info-cell-info>li {
  border-bottom: var(--border);
}

.contact-info-cell-info>li>a {
  padding: 20px 20px 20px 10px;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.4;
  color: #000000;
  display: flex;
  align-items: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info-cell-info>li>a::after {
  background: url(../img/icon-more.svg) no-repeat center/cover;
  transform: scaleX(-1);
  min-width: clamp(24px, 1.52vw + 18.06px, 40px);
  max-width: clamp(24px, 1.52vw + 18.06px, 40px);
  height: clamp(24px, 1.52vw + 18.06px, 40px);
  margin-right: 10px;
  content: "";
}

.contact-info-cell-info>li>a[href*="tel"]::after,
.contact-info-cell-info>li>a[href*="maps"]::after,
.contact-info-cell-info>li>a[href*="mailto"]::after {
  display: none;
}

.account-wrapper {
  min-height: 100svh;
}

.account-hero {
  height: 100svh;
  position: sticky;
  top: 0;
}

.account-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-hero-cell {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.account-hero-cell>li {
  border-right: 0.5px solid #fff;
  border-bottom: 0.5px solid #fff;
  flex: 0 0 20%;
  max-width: 20%;
  aspect-ratio: 1/1;
  position: relative;
}

.account-hero-cell>li::before {
  width: 10px;
  height: 10px;
  background-color: rgb(var(--color-primary));
  position: absolute;
  top: 100%;
  right: 100%;
  transform: translate(5px, -5px);
  content: "";
  z-index: 1;
}

.account-hero-cell>li:nth-last-child(-n + 5)::before,
.account-hero-cell>li:nth-child(5n + 5)::before {
  display: none;
}

.account-mainbar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.account-card {
  width: 100%;
  max-width: 350px;
}

.account-card-header {
  text-align: center;
  margin-bottom: 16px;
}

.account-card-img {
  height: 40px;
}

.account-card-title {
  font-size: 28px;
  font-weight: normal;
  line-height: 32.76px;
  color: #000000;
  margin: 60px 0 0;
}

.account-card-switch {
  margin-top: 30px;
}

#otp-alert {
  text-align: center;
  margin: 0 0 60px;
}

#otp-alert>strong {
  letter-spacing: 2px;
}

#otp-field {
  direction: ltr;
  flex-wrap: nowrap;
}

#otp-field input {
  text-align: center;
  padding: 0;
}

#otp-timer {
  margin-top: 10px;
  text-align: center;
}

.ticket-list {
  margin: 0;
  padding: 0;
  row-gap: 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.ticket-card {
  padding: 15px;
  position: relative;
  padding: 12px;
  gap: 8px;
  border-radius: 20px;
  max-width: 450px;
}

.ticket-card-user {
  background: rgb(var(--color-grey-50));
  margin-left: 15%;
  margin-right: 13px;
  border-bottom-right-radius: 0;
  align-self: flex-start;
}

.ticket-card-admin {
  background: #f7e9e9;
  margin-right: 15%;
  margin-left: 13px;
  border-bottom-left-radius: 0;
  align-self: flex-end;
}

.ticket-card::before {
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  width: 13px;
  height: 25px;
  content: "";
}

.ticket-card-user::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 25'%3E%3Cpath fill='%23f2f2f1' d='M.71 23.43c-.4.06-.71.4-.71.8 0 .42.34.77.77.77h12.8V0s-.39 12-3.05 17.5c-2.18 4.49-7.81 5.65-9.8 5.93Z'/%3E%3C/svg%3E");
  transform: scaleX(-1);
  left: 100%;
}

.ticket-card-admin::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 25'%3E%3Cpath fill='%23f7e9e9' d='M.71 23.43c-.4.06-.71.4-.71.8 0 .42.34.77.77.77h12.8V0s-.39 12-3.05 17.5c-2.18 4.49-7.81 5.65-9.8 5.93Z'/%3E%3C/svg%3E");
  right: 100%;
}

.ticket-card-header {
  display: flex;
  align-items: end;
  column-gap: 10px;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  text-align: right;
  color: #000000;
}

.ticket-card-admin .ticket-card-header {
  flex-direction: row-reverse;
}

.ticket-card-time {
  font-style: normal;
  opacity: 0.5;
}

.ticket-card-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #000000;
}

.ticket-body {
  padding: 20px;
  height: 100%;
  border-left: var(--border);
  border-right: var(--border);
}

.ticket-body,
.ticket-footer {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.ticket-footer {
  border-top: var(--border);
  position: sticky;
  bottom: 0;
}

.ticket-footer::before,
.ticket-footer::after {
  border-top: var(--border);
  width: 100vw;
  position: absolute;
  top: 0;
  content: "";
}

.ticket-footer::before {
  left: 100%;
}

.ticket-footer::after {
  right: 100%;
}

#ticket-reply-form {
  padding: 0 20px;
  /* background: rgba(217, 216, 214, 0.2); */
  background: #f7f7f7;
  border-right: var(--border);
  border-left: var(--border);
  display: flex;
  align-items: end;
  column-gap: 10px;
}

.ticket-reply-text {
  width: 100%;
  min-height: 52px;
  background: none;
  border: none;
  overflow-y: hidden;
  resize: none;
}

.ticket-reply-file,
.ticket-reply-btn {
  min-width: 24px;
  max-width: 24px;
  height: 52px;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.ticket-reply-file>input {
  opacity: 0;
  visibility: hidden;
}

.ticket-reply-file {
  background-image: url(../img/icon-attachment.svg);
}

.ticket-reply-btn {
  background-image: url(../img/icon-send.svg);
}

body.single-job .subsection-header {
  display: block;
}

body.single-job .subsection-header .subsection-subtitle {
  font-size: 28px;
}

.accordion-list {
  border: var(--border);
  display: flex;
  flex-direction: column;
}

.accordion-card:not(:last-child) {
  border-bottom: var(--border);
}

.accordion-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  column-gap: 15px;
  row-gap: 8px;
  cursor: pointer;
}

.accordion-card-header::after {
  background: url(../img/icon-plus.svg) no-repeat center/cover;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  content: "";
}

.accordion-card.active .accordion-card-header::after {
  background-image: url(../img/icon-minus.svg);
}

.accordion-card-title {
  font-size: 16px;
  font-weight: bold;
  color: rgb(var(--color-dark));
  margin: 0;
  display: inline-flex;
  align-items: start;
}

.accordion-card-title.required::after {
  content: "*";
  color: rgb(var(--color-danger));
  line-height: 0.5;
  margin-right: 2px;
}

.accordion-card.active .accordion-card-title {
  color: rgb(var(--color-primary));
}

.accordion-card-body {
  padding: 0 24px 20px;
}

.accordion-card:not(.active) .accordion-card-body {
  display: none;
}

.custom-control-input:checked~.custom-control-label::before {
  background-color: rgb(var(--color-primary));
  border-color: rgb(var(--color-primary));
  box-shadow: none !important;
}

.range-slider {
  direction: rtl;
  padding: 0 10px;
}

.range-slider-track {
  width: 100%;
  height: 2px;
  background: rgb(var(--color-grey-50));
  position: relative;
}

.range-slider-bar {
  position: absolute;
  height: 100%;
  background: rgb(var(--color-primary));
  z-index: 1;
}

.range-slider-thumb {
  width: 12px;
  height: 12px;
  background: rgb(var(--color-primary));
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  cursor: pointer;
  z-index: 2;
}

.range-slider-label {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.range-slider-label>span {
  font-weight: 550;
  font-size: 16px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  display: inline-flex;
  column-gap: 10px;
}

.range-slider-label>span[data-title]::before {
  content: attr(data-title);
  font-weight: 400;
  font-size: 14px;
  color: #807e75;
}

.woocommerce .col2-set>div {
  flex: unset;
  max-width: unset;
  padding-right: 0;
  padding-left: 0;
}

.woocommerce .form-row {
  flex-direction: column;
  margin: 0 0 10px;
}

.ttable {
  width: 100%;
}

.ttable th,
.ttable td,
.shop_table th,
.shop_table td {
  padding: 10px 20px;
}

.ttable>tbody th {
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}

.dashboard-table th[colspan="1000"] {
  font-size: 18px;
  font-weight: 700;
  color: #000 !important;
  text-align: start !important;
}

.ttable>tbody td {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}

.ttable ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ttable-striped {
  border-top: var(--border) 000;
}

.ttable-striped tr {
  border-bottom: var(--border) 000;
}

.ttable-striped tr:nth-child(even) {
  background-color: rgb(var(--color-grey-50));
}

.ttable-bordered th,
.ttable-bordered td {
  border: 0.5px solid #c0bfba;
  text-align: center;
}

.ttable-bordered-action {
  padding: 0 !important;
}

.ttable-bordered-btn {
  background: rgb(var(--color-grey-50));
  padding: 8px 12px;
  border: none;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  color: #000000;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ttable-bordered-btn::after {
  background: url(../img/icon-plus.svg) no-repeat center/cover;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  content: "";
}

.ttable-bordered-btn:hover {
  background: rgb(var(--color-dark));
  color: #fff;
}

.ttable-bordered-btn:hover::after {
  filter: brightness(0) invert(1);
}

.ttable-bordered th {
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  color: rgb(var(--color-grey-600));
}

.ttable-bordered .ttable-action {
  padding: 0 !important;
}

.ttable-bordered .ttable-action-group {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ttable-bordered .ttable-action-group>button {
  width: 50%;
  border: none;
  background: none;
  padding: 16px 8px;
  font-size: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ttable-bordered .ttable-action-group>button:not(:last-child) {
  border-left: 0.5px solid #c0bfba;
}

.ttable-action .editItem::before,
.ttable-action .deleteItem::before {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
}

.ttable-action .editItem::before {
  background-image: url(../img/icon-edit.svg);
}

.ttable-action .deleteItem::before {
  background-image: url(../img/icon-trash.svg);
}

.ttable-fill,
.shop_table {
  background: rgba(242, 242, 241, 0.5);
  border: 20px solid transparent;
  width: 100%;
}

.ttable-fill thead>tr,
.shop_table thead>tr {
  border-bottom: var(--border);
}

.ttable-fill tbody>tr,
.shop_table tbody>tr {
  border-top: 0.5px solid #807e75;
}

.ttable-fill th,
.shop_table th {
  font-size: 14px;
  font-weight: 500;
  color: #262623;
}

.shop_table .product-thumbnail img {
  width: 64px;
  height: 64px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.shop_table .product-remove a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin-right: auto;
}

.shop_table .product-remove a::before {
  background: url(../img/icon-trash.svg) no-repeat center/cover;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  content: "";
}

.checkout_coupon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.checkout_coupon>p:first-child {
  width: 100%;
}

.checkout_coupon .form-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0;
}

.checkout_coupon .form-row.form-row-last {
  margin-right: 10px;
}

.coupon {
  display: inline-flex;
  align-items: center;
}

.checkout_coupon label,
.shop_table td.actions .coupon label {
  margin: 0 0 0 10px;
}

.shop_table td.actions .coupon input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
  height: 40px;
}

.shop_table td.actions .coupon button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 40px;
}

.cart_totals {
  margin-top: 30px;
}

#order_review_heading,
.woocommerce-shipping-fields>h3,
.woocommerce-billing-fields>h3,
.woocommerce-additional-fields>h3,
.cart_totals>h2 {
  font-size: 22px;
  margin: 0 0 10px;
}

ul.woocommerce-shipping-methods {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.woocommerce-shipping-methods {
  white-space: nowrap;
}

ul.woocommerce-shipping-methods>li label {
  margin: 0 5px 0 0;
}

.cart_totals .wc-proceed-to-checkout {
  padding-top: 15px;
  text-align: end;
}

.select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%);
}

#billing_delivery_time_field,
.payment_methods {
  margin: 15px 0;
  padding: 0;
  list-style: none;
  padding: 15px;
  background: rgb(var(--color-grey-50));
}

.payment_methods>li label {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
}

.payment_methods>li label>img {
  height: 40px;
  margin-left: 10px;
}

.payment_box {
  font-size: 10px;
}

.woocommerce-checkout-review-order-table {
  border-width: 15px;
}

.woocommerce-checkout-review-order-table tr>th:first-child,
.woocommerce-checkout-review-order-table tr>td:first-child {
  padding-right: 0;
}

.woocommerce-checkout-review-order-table tr>th:last-child,
.woocommerce-checkout-review-order-table tr>td:last-child {
  padding-left: 0;
}

#billing_delivery_time_field {
  margin-bottom: 0;
}

.award-card {
  width: 100%;
  height: 100%;
  padding: 15%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.award-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.product-card-badge {
  height: 28px;
  padding: 0 8px;
  background: rgb(var(--color-primary));
  color: #fff;
  font-size: 14px;
  border-radius: 2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
}

.product-card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.product-card-price del,
.product-info-price del {
  color: rgb(var(--color-secondary));
}

.product-card-price ins,
.product-info-price ins {
  color: #000;
  text-decoration: none;
}

.product-card-discount {
  height: 28px;
  padding: 0 8px;
  background: rgb(var(--color-primary));
  color: #fff;
  font-size: 14px;
  border-radius: 2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  direction: ltr;
  margin-right: auto;
}

.quantity-field {
  background: #fff;
  border: 1px solid rgb(200, 200, 200);
  padding: 4px;
  width: 110px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  direction: ltr;
}

.quantity-field>input,
.quantity-field>button {
  height: 100%;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  text-align: center;
}

.quantity-field>input {
  width: 100%;
  margin: 0 5px;
  color: #000;
  font-size: 16px;
}

.quantity-field>input::-webkit-outer-spin-button,
.quantity-field>input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-field>input[type="number"] {
  -moz-appearance: textfield;
}

.quantity-field>button {
  background: rgb(var(--color-dark));
  color: #fff;
  aspect-ratio: 1/1;
  font-size: 24px;
}

.quantity-field>button:disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.cart-action {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-items-total>th {
  font-size: 18px;
  font-weight: bold;
}

#apply-form .form-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-text {
  color: #6c757d;
  font-size: 75%;
}

.file-upload-wrapper {
  padding: 0.5px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23807E75FF' stroke-width='0.5' stroke-dasharray='16%2c10' stroke-dashoffset='8' stroke-linecap='square'/%3e%3c/svg%3e");
  position: relative;
}

.file-upload-box,
.file-upload-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  padding: 24px 20px;
}

.file-upload-box {
  cursor: pointer;
}

.file-remove-title,
.file-upload-title {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0em;
  color: rgb(var(--color-dark));
}

.file-upload-title>span {
  color: rgb(var(--color-primary));
}

.file-remove-btn,
.file-upload-title::before {
  width: 24px;
  height: 24px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  content: "";
}

.file-upload-title::before {
  background-image: url(../img/icon-upload.svg);
  margin: 0 auto 16px;
}

.file-remove-btn {
  background-image: url(../img/icon-trash.svg);
  margin: 16px auto 0;
  padding: 0;
  border: none;
  font-size: 0;
}

.file-upload-subtitle {
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  color: rgb(var(--color-grey-500));
  margin: 4px 0 0;
}

.file-upload-wrapper.uploaded .file-upload-box {
  opacity: 0;
  visibility: hidden;
  cursor: default;
  pointer-events: none;
}

.file-upload-wrapper.uploaded .file-upload-info {
  background: rgb(var(--color-grey-50));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.subsection-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.subsection-meta>li {
  background-color: rgb(var(--color-primary), 0.05);
  color: rgb(var(--color-primary));
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  display: inline-flex;
  padding: 8px;
}

.career-list {
  border: var(--border);
}

.career-card {
  padding: 24px;
  position: relative;
}

.career-list>.career-card:not(:last-child) {
  border-bottom: var(--border);
}

.career-card-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #000000;
  margin: 0;
}

.career-card-body {
  padding: 6px 0 0;
}

.career-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  opacity: 0.8;
}

.career-card-meta::after {
  width: 40px;
  height: 40px;
  background: url(../img/icon-more.svg) no-repeat center/cover;
  background-size: cover;
  filter: var(--filter-primary);
  transform: scaleX(-1);
  content: "";
}

.career-feature-card {
  text-align: center;
  height: 100%;
  padding: 24px;
  position: relative;
}

.career-feature-card[data-gallery] {
  cursor: pointer;
}

.career-feature-card[data-gallery]::before {
  background: url(../img/icon-camera.svg) no-repeat center/cover;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 12px;
  left: 12px;
  filter: var(--filter-primary);
  content: "";
}

.career-feature-card[data-gallery]:hover {
  background: rgba(var(--color-primary), 0.25);
}

.career-feature-card[data-gallery]:hover .career-feature-card-icon,
.career-feature-card[data-gallery]:hover .career-feature-card-title {
  filter: var(--filter-primary);
}

.career-feature-card-icon {
  max-width: 44px !important;
  max-height: 44px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}

.career-feature-card-body {
  padding: 15px 0 0;
}

.career-feature-card-title {
  font-weight: 700;
  font-size: 20px !important;
  line-height: 32px;
  color: #000000;
  margin: 0;
}

.faq-tab-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-tab-nav>li>a {
  color: #000;
  font-weight: 500;
  line-height: 1;
  padding: 20px 30px;
  display: flex;
  align-items: center;
}

.faq-tab-nav>li.active>a {
  color: rgb(var(--color-primary));
}

.faq-tab-nav>li {
  border-bottom: var(--border);
}

#universityDegreesTableBody>tr>td:nth-child(n + 4):not(.ttable-action),
#workExperiencesTableBody>tr>td:nth-child(n + 3):not(.ttable-action) {
  display: none;
}

.product-compare-table {
  width: 100%;
}

.product-compare-table tr>th,
.product-compare-table tr>td {
  border: var(--border);
  padding: 15px;
}

.product-compare-table tr>th {
  padding: 20px 16px;
  background: rgb(var(--color-grey-50));
}

.product-compare-table tr>td>p:last-child {
  margin-bottom: 0;
}

.compare-product-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compare-remove-btn {
  background: transparent url(../img/icon-trash.svg) no-repeat center/cover;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  font-size: 0;
  margin-left: auto;
}

.compare-return-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

.compare-return-btn>span::before {
  background: url(../img/icon-plus.svg) no-repeat center/cover;
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  display: block;
  content: "";
}

.compare-return-btn>span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #403f3b;
}

.compare-product-img>img {
  max-width: 230px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.ass-map-wrapper {
  position: sticky;
  top: 0;
  direction: ltr;
}

#ass-map {
  background-color: rgb(var(--color-secondary));
  width: 100%;
  height: 100svh;
}

.ass-list {
  border: none !important;
}

.ass-list>.ass-card:first-child {
  border-top: var(--border);
}

.ass-list>.ass-card:last-child {
  border-bottom: var(--border);
}

.ass-card-header,
.ass-card-body {
  padding-left: 24px;
  padding-right: 24px;
}

.ass-card-header {
  padding-top: 22px;
  padding-bottom: 22px;
}

.ass-card-body {
  padding-bottom: 22px;
}

.store-grid {
  row-gap: 80px;
}

.store-card-header {
  position: relative;
}

.store-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/0.778606965;
  object-fit: cover;
  object-position: center;
}

.store-card-body {
  padding-top: 32px;
}

.store-card-title {
  font-weight: 550;
  font-size: 24px;
  line-height: 43px;
  color: #000000;
  margin: 0 0 12px;
}

.ass-card-info,
.store-card-intro {
  color: #5a5852;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.ass-card-info>li span+div,
.store-card-intro>li span+div {
  display: inline;
}

.ass-card-info>li strong,
.store-card-intro>li strong {
  color: #000;
  display: inline-block;
}

.section-career-gallery {
  overflow: hidden;
}

.career-gallery .slick-list {
  overflow: visible;
}

.career-gallery-card {
  margin-right: 20px;
}

.career-gallery-card-img {
  width: auto;
  height: 500px;
  max-height: 75vh;
  object-fit: cover;
  object-position: center;
}

.comment-info {
  padding: 32px;
  border: var(--border);
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.comment-info-header {
  display: flex;
  column-gap: 12px;
}

.comment-info-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.comment-info-count {
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
  color: #807e75;
  padding-top: 5px 0 0;
}

.comment-info-average {
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
}

.comment-info-table {
  width: 100%;
  color: #807e75;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
}

.comment-info-table td {
  border: none;
  padding: 0;
  border-spacing: 0;
}

.comment-info-table tr>td:first-child {
  text-align: end;
}

.comment-info-table tr>td:last-child {
  text-align: start;
}

.comment-info-bar {
  margin: 6px;
  display: block;
  height: 6px;
  border-radius: 6px;
  background: rgb(var(--color-grey-50));
  overflow: hidden;
}

.comment-info-bar>div {
  background: rgb(var(--color-primary));
  border-radius: inherit;
  width: 0;
  height: inherit;
}

.rating-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 24px;
}

.rating-wrapper>.rating-empty,
.rating-wrapper>.rating-filled {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.rating-wrapper>.rating-filled {
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 0;
}

.rating-wrapper>.rating-empty>span,
.rating-wrapper>.rating-filled>span {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
}

.rating-wrapper>.rating-empty>span {
  background-image: url(../img/icon-star-empty.svg);
}

.rating-wrapper>.rating-filled>span {
  background-image: url(../img/icon-star-fill.svg);
}

.rating-wrapper>label {
  line-height: 1;
  margin: 0;
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.comment-list>li {
  padding: 0 24px 24px;
  border-bottom: var(--border);
}

.comment-card-header {
  margin-bottom: 10px;
}

.comment-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comment-card-author {
  font-size: 16px;
  font-weight: normal;
  color: #5a5852;
}

.comment-card-time {
  font-size: 14px;
  font-weight: normal;
  color: #a6a59e;
}

.comment-card-desc {
  font-size: 16px;
  font-weight: 550;
  line-height: 24px;
  color: #0d0d0c;
}

.entry-content,
.section-desc {
  text-align: justify;
}

.order_details {
  background: rgba(242, 242, 241, 0.5);
  margin: 0 auto 15px;
  padding: 32px;
  list-style: none;
  max-width: 700px;
}

.order_details>li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order_details>li:not(:last-child) {
  border-bottom: var(--border);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.order_details+form {
  text-align: center;
}

.wc-empty-cart-message {
  text-align: center;
  margin-bottom: 15px;
}

.return-to-shop {
  text-align: center;
}

body.error404 {
  height: 100svh;
}

.section-404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  height: 100%;
  text-align: center;
}

.tborder-row {
  border-top: var(--border);
  border-right: var(--border);
}

.tborder-row>div {
  border-bottom: var(--border);
  border-left: var(--border);
}

.tborder-row>div:not([class*="12"]):only-child {
  border-top: var(--border);
  border-right: var(--border);
}

.tborder-non-top {
  border-top: none !important;
}

.tborder-non-bottom {
  border-bottom: none !important;
}

.tborder-non-start {
  border-right: none !important;
}

.tborder-non-end {
  border-left: none !important;
}

.tline-start,
.tline-end,
.tline-full {
  position: relative;
}

.tline-start::before,
.tline-end::after,
.tline-full::before,
.tline-full::after {
  width: 100vw;
  border-bottom: var(--border);
  position: absolute;
  top: 100%;
  content: "";
}

.tline-start::before,
.tline-full::before {
  left: 100%;
}

.tline-end::after,
.tline-full::after {
  right: 100%;
}

.not-found-grid {
  padding: 60px 30px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  border-right: var(--border);
  border-left: var(--border);
}

.dashboard-card {
  border: var(--border);
}

.dashboard-card+.dashboard-card {
  margin-top: 30px;
}

.dashboard-card-header {
  border-bottom: var(--border);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.dashboard-card-title {
  font-weight: 550;
  font-size: 20px;
  line-height: 1;
  margin: 0;
  color: #000000;
}

.dashboard-card-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
  color: #403f3b;
}

.dashboard-card-btn:hover {
  color: #000000;
}

.dashboard-card-body {
  padding: 24px;
}

.widget-card {
  padding: 20px 16px;
}

.widget-card-info {
  background-color: rgb(var(--color-info), 0.05);
  color: rgb(var(--color-info));
}

.widget-card-success {
  background-color: rgb(var(--color-success), 0.05);
  color: rgb(var(--color-success));
}

.widget-card-warning {
  background-color: rgb(var(--color-warning), 0.05);
  color: rgb(var(--color-warning));
}

.widget-card-danger {
  background-color: rgb(var(--color-danger), 0.05);
  color: rgb(var(--color-danger));
}

.widget-card-value {
  font-weight: 550;
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  color: #737169;
}

.widget-card-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
  margin: 14px 0 0;
}

#tracking-form {
  margin-top: 30px;
}

body.sidecart-opened {
  overflow: hidden;
}

.sidecart {
  max-width: 85%;
  width: 493px;
  background: #fff;
  border-left: var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10003;
}

.sidecart-header {
  padding: 12px 24px;
  border-bottom: var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidecart-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  margin: 0;
}

.sidecart-close {
  width: 24px;
  height: 24px;
  font-size: 0;
  background: url(../img/icon-close.svg) no-repeat center/cover;
  filter: brightness(0) invert(0);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0;
  position: relative;
}

.sidecart-body {
  padding: 24px;
}

.sidecart-footer {
  border-top: var(--border);
  padding: 12px 24px;
  margin-top: auto;
}

.sidecart-table {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

.sidecart-table>li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidecart-table>li>span {
  font-weight: 550;
  font-size: 14px;
  line-height: 25px;
  color: #807e75;
}

.sidecart-table>li>strong {
  font-weight: 700;
  font-size: 16px;
  line-height: 29px;
  color: #5a5852;
}

.sidecart-action {
  display: flex;
  align-items: center;
  column-gap: 24px;
  row-gap: 24px;
  margin: 24px 0 0;
}

.sidecart-action .button {
  margin: 0;
}

.leaflet-pane.leaflet-tile-pane {
  filter: grayscale(1);
}

.receiver-fields {
  display: none;
}

.form-radio .woocommerce-input-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.form-radio .woocommerce-input-wrapper>input {
  min-width: 13px;
  max-width: 13px;
  margin-left: 7px;
}

.form-radio .woocommerce-input-wrapper>label {
  width: calc(100% - 20px);
  margin: 0;
}

.form-rating {
  display: flex;
  flex-direction: row-reverse;
}

.form-rating>input {
  display: none;
}

.form-rating label {
  font-size: 0;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  background-image: url(../img/icon-star-empty.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
  cursor: pointer;
}

.form-rating input[type="radio"]:checked~label,
.form-rating input[type="radio"]:hover~label {
  background-image: url(../img/icon-star-fill.svg);
}

.woocommerce-checkout-review-order-table th+td {
  width: 1%;
}

fieldset>.form-group:last-child {
  margin-bottom: 0;
}

span[dir="ltr"] {
  direction: ltr;
  display: inline-block;
}

.section-category .section-wrapper,
.section-intro .section-wrapper,
.section-product .section-wrapper,
.section-feature .section-wrapper,
.section-blog .section-wrapper,
.section-about .section-wrapper {
  padding: 0;
}

.file-card-info,
#billing_delivery_time_field,
.widget-card-value,
.comment-info,
.product-card-price,
.product-info-price,
.range-slider-label,
#otp-alert,
#otp-timer,
.store-card-info>li strong,
.ass-card-info>li strong,
.shopping-copyright,
.dashboard-copyright,
.copyright,
.user-nav>li strong,
.entry-info-time,
.blog-card-time,
.order_details>li.order,
.order_details>li.date,
.product-quantity,
.amount,
.star-rating,
.pagination,
.number,
[href^="tel"],
input.datepicker,
input[type="number"],
input[inputmode="numeric"] {
  -moz-font-feature-settings: "ss01";
  -webkit-font-feature-settings: "ss01";
  font-feature-settings: "ss01";
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 100px white inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 100px white inset !important;
  -webkit-text-fill-color: #000 !important;
}

body.page-template-page-instalment .career-feature-grid {
  margin-top: 30px;
  margin-bottom: 30px;
}

body.page-template-page-instalment .career-feature-card {
  padding: 15px 5px;
}

body.page-template-page-instalment .entry-body {
  padding-top: 50px;
  padding-bottom: 50px;
}

body.page-template-page-instalment .entry-cta {
  padding-top: 50px;
  text-align: center;
}

body.page-template-page-instalment .entry-title {
  font-size: 24px !important;
  font-weight: bold !important;
}

body.page-template-page-instalment .entry-content {
  line-height: 185% !important;
}

body.compare-opened .product-card .product-card-compare {
  opacity: 1;
  visibility: visible;
}

#compare-bar {
  background: #fff;
  border-top: var(--border);
  padding: 32px 0;
  position: fixed;
  z-index: 10;
  transform: translateY(100%);
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

body.compare-opened #compare-bar {
  transform: translate(0);
}

.compare-bar-action {
  text-align: end;
}

.compare-card-empty {
  min-height: 64px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23807E75FF' stroke-width='0.5' stroke-dasharray='16%2c10' stroke-dashoffset='8' stroke-linecap='square'/%3e%3c/svg%3e");
}

.compare-card {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: var(--border);
  height: 100%;
  position: relative;
}

.compare-card-header img {
  height: 62px;
  aspect-ratio: 1/1;
}

.compare-card-body {
  padding: 10px 0 10px 30px;
}

.compare-card-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: #000000;
}

.compare-card-remove {
  width: 14px;
  height: 14px;
  background: rgb(var(--color-grey-50)) url(../img/icon-close.svg) no-repeat center/10px;
  border-radius: 50%;
  font-size: 0;
  border: none;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.inst-feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.inst-feature-card-icon {
  height: 56px;
}

.inst-feature-card-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  color: #0d0d0c;
}

.inst-branch-card {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: var(--border);
}

.inst-branch-card-title {
  font-weight: 550;
  font-size: 24px;
  line-height: 43px;
  color: #0d0d0c;
}

.inst-branch-card-info {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #5a5852;
}

.inst-branch-card-info>li span+div {
  display: inline;
}

.inst-branch-card-info>li strong {
  color: #000;
  display: inline-block;
}

.inst-target-card {
  padding: 32px 14px;
  position: relative;
}

.inst-target-card-title {
  font-weight: 550;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin: 0;
}

.section-inst-help .section-wrapper {
  padding: 44px 0 !important;
}

.section-inst-help .section-desc {
  font-weight: 550;
  font-size: 24px;
  line-height: 44px;
}

.section-inst-help .section-desc a {
  color: rgb(var(--color-primary));
  border-bottom: 2px solid rgb(var(--color-primary));
}

.section-inst-help .section-desc a:hover {
  color: #000;
  border-bottom-color: #000;
}

.inst-step-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 30px;
  list-style: none;
  gap: 10px;
  border: 0.5px solid #d9d8d6;
  counter-reset: step;
}

.inst-step-list>li {
  font-weight: 550;
  font-size: 22px;
  line-height: 160%;
  color: #000000;
  display: flex;
  align-items: center;
}

.inst-step-list>li::before {
  counter-increment: step;
  content: counter(step, persian);
  background: rgb(var(--color-primary));
  color: #fff;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  font-weight: 550;
  font-size: 19.2135px;
  line-height: 35px;
  margin-left: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.file-card {
  padding: 12px 16px;
  background: rgba(242, 242, 241, 0.5);
  border-radius: 2px;
}

.file-card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  margin: 0;
}

.file-card-info {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  opacity: 0.4;
}

.file-card-footer a>img {
  filter: brightness(0) invert(1);
}

.file-card-footer a:hover>img {
  filter: brightness(0) invert(0) opacity(0.5);
}

.mainbar-inner {
  padding: clamp(16px, 2.29vw + 7.09px, 40px);
}

body.page-template-page-iframe .mainbar-inner iframe {
  max-width: 100% !important;
  display: block;
  margin: 0 auto;
  border: none;
  width: 100% !important;
  height: 100vh !important;
}

.reseller-list {
  border: none;
  gap: 16px;
}

.reseller-card {
  border: none !important;
}

.reseller-card-header {
  background: rgb(var(--color-secondary), 0.5);
}

.reseller-card-header::after {
  display: none;
}

.reseller-card-body {
  padding: 0 !important;
}

.reseller-group {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reseller-group>li {
  background: rgb(var(--color-secondary), 0.2);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reseller-group>li::before {
  min-width: 8px;
  max-width: 8px;
  height: 8px;
  background: rgba(var(--color-primary));
  display: block;
  content: '';
}

.page-template-page-reseller .entry-body {
  padding-bottom: 80px;
}

.quick-view-card:not(.dynamic-quick-view) {
  display: none;
}

.dynamic-quick-view>div {
  border-right: none;
}

.dynamic-quick-view>div>div:last-child {
  border-bottom: none;
}

.category-card-cell+.col-12 {
  border-left: none;
}

.page-header-helper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;

}

.filter-toggle::after {
  width: 20px;
  height: 20px;
  background: url(../img/Icon-filter.svg) no-repeat center/100%;
  content: "";
}

body.filter-opened .page-header-option {
  display: flex;
  flex-direction: column;
}

body.filter-opened .page-header-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  gap: 20px;
  border-bottom: var(--border);
}

body.filter-opened .page-header-option-title {
  color: #000000;
  font: normal 700 20px/1.20 'Abar';
  opacity: 0.8;
  margin: 0;
}

body.filter-opened .page-header-option-close {
  width: 24px;
  height: 24px;
  background: url(../img/icon-close.svg) no-repeat center/cover;
  filter: brightness(0) invert(0);
  font-size: 0;
  border: none;
  padding: 0;
}

body.filter-opened .page-header-option-footer {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 10px;
  margin-top: auto;
}

body.filter-opened .page-header-option-body .page-filter-compare {
  display: none;
}

body.filter-opened .page-header-option-body {
  padding: 24px 0;
}

body.filter-opened .page-header-option-body>.page-header-filter>div {
  border-bottom: var(--border);
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
}

.dropdown-backdrop {
  display: none !important;
}

body.filter-opened .tselect>button {
  font: normal 400 16px/1.50 'Abar';
  color: #000;
  border-radius: 0;
  opacity: 0.8;
  background: none;
  border: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

body.filter-opened .tselect>button>i {
  display: none;
}

body.filter-opened .tselect>button:hover::after,
body.filter-opened .tselect.open>button::after {
  filter: brightness(0) invert(0);
}

body.filter-opened .tselect>ul,
body.filter-opened .tselect>div {
  background: none;
  border: none;
  margin: 16px 0 0;
  padding: 0;
  width: 100%;
  position: static;
  flex-direction: column;
  display: none;
  opacity: 0;
  visibility: hidden;
}

body.filter-opened .tselect.open>ul,
body.filter-opened .tselect.open>div {
  display: flex;
  opacity: 1;
  visibility: visible;
}

body.filter-opened .tselect>ul {
  padding: 0;
}

body.filter-opened .tselect label>span {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 12px;
  height: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #212121;
  cursor: pointer;
}

body.filter-opened .page-header-filter-active {
  border-top: none;
  margin: 0;
  padding: 12px;
}

#category-container:not(.quick-view-initialized) {
  display: flex;
  flex-wrap: wrap;
}

/*Plugin*/
.mapp-logo {
  display: none !important;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

/*--*/
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  width: 100% !important;
  z-index: 1100;
}

.select2-container .select2-selection--single {
  border-radius: 2px;
  opacity: 1;
  background: rgba(217, 216, 214, 0.2);
  border: 1px solid rgb(var(--color-grey-50));
  padding: 8px 20px;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #000000;
  width: 100%;
  height: 42px;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 24px;
  height: 24px;
  background: url(../img/icon-chevron-down.svg) no-repeat center/cover;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 10px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role="group"] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled="true"] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: rgba(var(--color-primary), 0.1);
  color: #000;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid rgba(var(--color-primary), 0.1);
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid rgba(var(--color-primary), 0.1);
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid rgba(var(--color-primary), 0.1);
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid rgba(var(--color-primary), 0.1);
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role="group"] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled="true"] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: rgba(var(--color-primary), 0.1);
}

/*--*/
.toaster {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  outline: none;
  z-index: 999999999;
  position: fixed;
  padding: 5px;
}

.toaster.bottom-right {
  bottom: 20px;
  right: 20px;
}

.toaster.bottom-left {
  bottom: 20px;
  left: 20px;
}

.toaster.top-right {
  top: 20px;
  right: 20px;
}

.toaster.top-left {
  top: 20px;
  left: 20px;
}

.toaster.bottom-center {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.toaster.top-center {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.toaster.top-center ol.rack {
  flex-direction: column-reverse;
}

.toaster.top-left ol.rack {
  flex-direction: column-reverse;
}

.toaster.top-right ol.rack {
  flex-direction: column-reverse;
}

.toaster.bottom-center ol.rack {
  flex-direction: column;
}

.toaster.bottom-left ol.rack {
  flex-direction: column;
}

.toaster.bottom-right ol.rack {
  flex-direction: column;
}

ol.rack {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

ol.rack li {
  margin-bottom: 16px;
}

ol.rack.upperstack li {
  margin-bottom: -35px;
  transition: all 0.3s ease-in-out;
}

ol.rack.upperstack li:hover {
  margin-bottom: 16px;
  scale: 1.03;
  transition: all 0.3s ease-in-out;
}

ol.rack.lowerstack li {
  margin-top: -35px;
}

ol.rack.lowerstack {
  margin-bottom: 0px;
}

.butteruptoast {
  font-size: 13px;
  display: flex;
  padding: 16px;
  border: var(--border);
  border-radius: 1px;
  background-color: white;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
  gap: 6px;
  color: #282828;
  width: 325px;
  position: relative;
}

.butteruptoast.dismissable {
  cursor: pointer;
}

.butteruptoast .icon {
  display: flex;
  align-items: start;
  flex-direction: column;
}

.butteruptoast .icon svg {
  width: 20px;
  height: 20px;
  fill: #282828;
}

.notif .desc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notif .desc .title {
  font-weight: 550;
  font-size: 20px;
  line-height: 1;
  margin: 0 0 10px;
}

.notif .desc .message {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.5);
}

.butteruptoast.success {
  background: #ecffed;
  border-color: #2f8c33;
}

.butteruptoast.error {
  background: #fff2f0;
  border-color: #d53636;
}

.butteruptoast.warning {
  background: #fff5e5;
  border-color: #edb95e;
}

.butteruptoast.info {
  background: #e0eeff;
  border-color: #4a90e2;
}

.butteruptoast::after {
  width: 0;
  height: 4px;
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  animation: expandWidth 5s ease-in-out forwards;
}

.butteruptoast.success::after {
  background: #2f8c33;
}

.butteruptoast.error::after {
  background: #d53636;
}

.butteruptoast.warning::after {
  background: #edb95e;
}

.butteruptoast.info::after {
  background: #4a90e2;
}

@keyframes expandWidth {
  to {
    width: 100%;
  }
}

.butteruptoast.success .icon svg {
  fill: hsl(140, 100%, 27%);
}

.butteruptoast.error .icon svg {
  fill: hsl(0, 100%, 27%);
}

.butteruptoast.warning .icon svg {
  fill: hsl(50, 100%, 27%);
}

.butteruptoast.info .icon svg {
  fill: hsl(210, 100%, 27%);
}

.toast-buttons {
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: center;
  flex-direction: row;
  margin-top: 16px;
}

.toast-buttons .toast-button.primary {
  background-color: #282828;
  color: white;
  padding: 8px 16px;
  cursor: pointer;
  border: none;
  width: 100%;
}

.toast-buttons .toast-button.secondary {
  background-color: #f0f8ff;
  color: hsl(210, 100%, 27%);
  border: solid 1px hsl(210, 92%, 91%);
  padding: 8px 16px;
  cursor: pointer;
  width: 100%;
}

.butteruptoast.success .toast-button.primary {
  background-color: hsl(145, 63%, 42%);
  color: white;
}

.butteruptoast.success .toast-button.secondary {
  background-color: hsl(145, 45%, 90%);
  color: hsl(145, 63%, 32%);
  border: solid 1px hsl(145, 63%, 72%);
}

.butteruptoast.error .toast-button.primary {
  background-color: hsl(354, 70%, 54%);
  color: white;
}

.butteruptoast.error .toast-button.secondary {
  background-color: hsl(354, 30%, 90%);
  color: hsl(354, 70%, 44%);
  border: solid 1px hsl(354, 70%, 74%);
}

.butteruptoast.warning .toast-button.primary {
  background-color: hsl(45, 100%, 51%);
  color: hsl(45, 100%, 15%);
}

.butteruptoast.warning .toast-button.secondary {
  background-color: hsl(45, 100%, 96%);
  color: hsl(45, 100%, 31%);
  border: solid 1px hsl(45, 100%, 76%);
}

.butteruptoast.info .toast-button.primary {
  background-color: hsl(207, 90%, 54%);
  color: white;
}

.butteruptoast.info .toast-button.secondary {
  background-color: hsl(207, 90%, 94%);
  color: hsl(207, 90%, 34%);
  border: solid 1px hsl(207, 90%, 74%);
}

.toastUp {
  animation: slideUp 0.5s ease-in-out;
  animation-fill-mode: forwards;
}

.toastDown {
  animation: slideDown 0.5s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeOutToast {
  animation: fadeOut 0.3s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.butteruptoast.glass {
  background-color: rgba(255, 255, 255, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  color: #282828;
}

.butteruptoast.glass.success {
  background-color: rgba(235, 254, 242, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  color: hsl(140, 100%, 27%);
}

.butteruptoast.glass.error {
  background-color: rgba(254, 240, 240, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  color: hsl(0, 100%, 27%);
}

.butteruptoast.glass.warning {
  background-color: rgba(255, 253, 240, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  color: hsl(50, 100%, 27%);
}

.butteruptoast.glass.info {
  background-color: rgba(240, 248, 255, 0.42) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  color: hsl(210, 100%, 27%);
}

.butteruptoast.brutalist {
  border: solid 2px #282828;
  font-size: 13px;
  align-items: center;
  display: flex;
  padding: 16px;
  background-color: white;
  gap: 6px;
  color: #282828;
  width: 325px;
}

.butteruptoast.brutalist.success {
  background-color: #ebfef2;
  color: hsl(140, 100%, 27%);
  border: solid 2px hsl(140, 100%, 27%);
}

.butteruptoast.brutalist.error {
  background-color: #fef0f0;
  color: hsl(0, 100%, 27%);
  border: solid 2px hsl(0, 100%, 27%);
}

.butteruptoast.brutalist.warning {
  background-color: #fffdf0;
  color: hsl(50, 100%, 27%);
  border: solid 2px hsl(50, 100%, 27%);
}

.butteruptoast.brutalist.info {
  background-color: #f0f8ff;
  color: hsl(210, 100%, 27%);
  border: solid 2px hsl(210, 100%, 27%);
}

/*--*/
@keyframes start {
  from {
    transform: scale(0.5);
  }

  to {
    transform: scale(1);
  }
}

@-webkit-keyframes start {
  from {
    -webkit-transform: scale(0.5);
  }

  to {
    -webkit-transform: scale(1);
  }
}

.rtl {
  direction: rtl;
}

.pdp-default {
  position: absolute;
  direction: rtl;
  color: #555;
  box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.19);
  z-index: 99999;
}

.pdp-default ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.pdp-default ::-webkit-scrollbar {
  width: 15px;
  background-color: #f5f5f5;
}

.pdp-default ::-webkit-scrollbar-thumb {
  background-color: #444444;
}

.pdp-default ::selection {
  color: #67cdcc;
}

.pdp-default .pdp-header {
  background-color: #ffffff;
  border-top: 2px solid #999;
  border-left: 1px solid #999;
  border-right: 1px solid #999;
  border-bottom: none;
  padding: 2px;
  font-weight: bold;
}

.pdp-default .yearSelect {
  overflow-y: auto;
  direction: ltr;
}

.pdp-default .monthSelect li.disableMonth,
.pdp-default .monthSelect li.disableMonth:hover {
  color: #bbb;
  background: #eee;
  cursor: not-allowed;
}

.pdp-default .yearSelect,
.pdp-default .monthSelect {
  font-size: 13px;
  background: #f9f9f9;
  border: 1px solid #ccc;
  list-style: none;
  position: absolute;
  padding: 0;
  width: 99.6%;
  text-align: center;
  z-index: 9999;
  animation: start 0.2s;
  -webkit-animation: start 0.2s;
}

.pdp-default .selected {
  background: #15a6eb;
  color: #ffffff;
}

.pdp-default .yearSelect li,
.pdp-default .monthSelect li {
  padding: 1px;
  cursor: default;
  display: inline-table;
  text-align: center;
  border: 1px dotted #ddd;
}

.pdp-default .yearSelect li:hover,
.pdp-default .monthSelect li:hover {
  background: #ff9933;
  color: #ffffff;
  border-color: #ff7700;
}

.pdp-default .nextArrow {
  right: 0;
}

.pdp-default .prevArrow {
  left: 0;
}

.pdp-default .monthYear {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
}

.pdp-default .nextArrow,
.pdp-default .prevArrow {
  cursor: pointer;
  position: absolute;
  top: 1px;
  padding: 2px;
}

.pdp-default .nextArrow:hover,
.pdp-default .prevArrow:hover {
  color: #0073ea;
}

.pdp-default .cell {
  display: inline-block;
  cursor: default;
  text-align: center;
}

/* Days of the week */
.pdp-default .dows {
  background: #5f5d5d;
  /*#006fe0;*/
  color: #fff;
}

.pdp-default .dow {
  font-weight: bold;
  border: 1px solid #5f5d5d;
}

.pdp-default .days {
  background-color: #ffffff;
  border: 1px solid #999;
  border-top: none;
  font-size: 13px;
}

.pdp-default .day {
  border: 1px solid #f1f1f1;
}

.pdp-default .day:hover {
  background: #f3f3f3;
  border: 1px solid #bbb;
  border-radius: 2px;
}

.pdp-default .selday,
.pdp-default .selday:hover {
  background: #eadaa6;
  border-color: #eb5b04;
}

.pdp-default .friday {
  color: #f38;
}

.pdp-default .today {
  color: #fff;
  background: #0073ea;
}

.pdp-default .today:hover {
  color: #fff;
  background: #0073ea;
}

.pdp-default .disday,
.pdp-default .disday:hover {
  color: #b7b5b5;
  background: #f1f1f1;
  cursor: not-allowed;
}

.pdp-default .nul {
  border: 1px solid #f1f1f1;
  background: #f1f1f1;
}

.pdp-default .pdp-footer {
  background: #999;
  font-size: 13px;
  text-align: center;
  height: 17px;
}

.pdp-default .pdp-footer .goToday {
  color: #f0f0f0;
  text-decoration: none;
}

.pdp-default .pdp-footer .goToday:hover {
  color: #ffffff;
  text-decoration: overline;
}

/*--*/
/*Shop*/
.woocommerce .col2-set>div,
.woocommerce-page .col2-set>div {
  width: 100%;
}

.shop_table.cart tbody>tr:last-child,
.screen-reader-text {
  display: none;
}

/*CMS*/
.entry-content {
  font-size: 16px;
}

.entry-content h6 {
  font-size: 16px;
}

.entry-content h5 {
  font-size: 18px;
}

.entry-content h4 {
  font-size: 20px;
}

.entry-content h3 {
  font-size: 22px;
}

.entry-content h2 {
  font-size: 24px;
}

.entry-content h1 {
  font-size: 26px;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-content img {
  max-width: 100%;
  margin: 0 0 1.5em 0;
  height: auto !important;
}

.entry-content video {
  width: 100%;
}

.entry-content iframe {
  max-width: 100% !important;
  display: block;
  margin: 0 auto;
  border: none;
  width: 100% !important;
  height: 100vh !important;
}

.entry-content>ul,
.entry-content>ol,
p+ul,
p+ol,
p>ul,
p>ol {
  list-style-position: inside;
  padding: 0;
  margin-right: 0;
  text-align: unset;
}

.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.alignnone,
img.alignnone {
  /* not sure about this one */
}

.post-image-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.post-image-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.post-image-caption p.post-image-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/*Animation*/
[data-animate^="fade"] {
  position: relative;
  transition-duration: 500ms;
  transition-delay: 0s;
  transition-timing-function: ease-out;
  transition-property: all;
}

[data-animate^="fadeOut"],
[data-animate^="flipOut"] {
  opacity: 1;
  visibility: visible;
}

[data-animate^="fadeOut"].animated,
[data-animate^="flipOut"].animated {
  opacity: 0;
  visibility: hidden;
}

[data-animate^="fadeIn"],
[data-animate^="flipIn"] {
  opacity: 0;
  visibility: hidden;
}

[data-animate^="fadeIn"].animated,
[data-animate^="flipIn"].animated {
  opacity: 1;
  visibility: visible;
}

[data-animate^="fadeInDown"] {
  transform: translate3d(0, -50px, 0);
}

[data-animate^="fadeInDown"].animated {
  transform: translate3d(0, 0, 0);
}

[data-animate^="fadeInUp"] {
  transform: translate3d(0, 50px, 0);
}

[data-animate^="fadeInUp"].animated {
  transform: translate3d(0, 0, 0);
}

[data-animate^="fadeOutDown"] {
  transform: translate3d(0, 0, 0);
}

[data-animate^="fadeOutDown"].animated {
  transform: translate3d(0, 50px, 0);
}

[data-animate^="fadeOutUp"] {
  transform: translate3d(0, 0, 0);
}

[data-animate^="fadeOutUp"].animated {
  transform: translate3d(0, -50px, 0);
}

[data-animate="flipInX"] {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
    opacity: 1;
  }
}

[data-animate="flipInY"] {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

[data-animate="flipOutX"] {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

[data-animate="flipOutY"] {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

[data-duration] {
  transition-duration: calc(var(--animate-duration) * attr(data-duration, number) / 1000);
}

[data-delay] {
  transition-delay: calc(var(--animate-delay) * attr(data-delay, number) / 1000);
}

[data-easing="linear"] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-easing="ease"] {
  transition-timing-function: ease;
}

[data-easing="ease-in"] {
  transition-timing-function: ease-in;
}

[data-easing="ease-out"] {
  transition-timing-function: ease-out;
}

[data-easing="ease-in-out"] {
  transition-timing-function: ease-in-out;
}

[data-easing="ease-in-back"] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-easing="ease-out-back"] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-easing="ease-in-out-back"] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-easing="ease-in-sine"] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-easing="ease-out-sine"] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-easing="ease-in-out-sine"] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-easing="ease-in-quad"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-easing="ease-out-quad"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-easing="ease-in-out-quad"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-easing="ease-in-cubic"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-easing="ease-out-cubic"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-easing="ease-in-out-cubic"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-easing="ease-in-quart"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-easing="ease-out-quart"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-easing="ease-in-out-quart"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.row>div[class^="col-"][class$="-6"]>[data-animate],
.row>div[class^="col-"][class$="-4"]>[data-animate],
.row>div[class^="col-"][class$="-3"]>[data-animate],
.row>div[class^="col-"][class$="-2"]>[data-animate] {
  transition-delay: calc((var(--nth-child) - 1) * var(--animate-delay));
}

.row>div[class^="col-"][class$="-6"]:nth-child(2n + 1)>[data-animate],
.row>div[class^="col-"][class$="-4"]:nth-child(3n + 1)>[data-animate],
.row>div[class^="col-"][class$="-3"]:nth-child(4n + 1)>[data-animate],
.row>div[class^="col-"][class$="-2"]:nth-child(6n + 1)>[data-animate] {
  --nth-child: 1;
}

.row>div[class^="col-"][class$="-6"]:nth-child(2n + 2)>[data-animate],
.row>div[class^="col-"][class$="-4"]:nth-child(3n + 2)>[data-animate],
.row>div[class^="col-"][class$="-3"]:nth-child(4n + 2)>[data-animate],
.row>div[class^="col-"][class$="-2"]:nth-child(6n + 2)>[data-animate] {
  --nth-child: 2;
}

.row>div[class^="col-"][class$="-4"]:nth-child(3n + 3)>[data-animate],
.row>div[class^="col-"][class$="-3"]:nth-child(4n + 3)>[data-animate],
.row>div[class^="col-"][class$="-2"]:nth-child(6n + 3)>[data-animate] {
  --nth-child: 3;
}

.row>div[class^="col-"][class$="-3"]:nth-child(4n + 4)>[data-animate],
.row>div[class^="col-"][class$="-2"]:nth-child(6n + 4)>[data-animate] {
  --nth-child: 4;
}

.row>div[class^="col-"][class$="-2"]:nth-child(6n + 5)>[data-animate] {
  --nth-child: 5;
}

.row>div[class^="col-"][class$="-2"]:nth-child(6n + 6)>[data-animate] {
  --nth-child: 6;
}

@media (min-width: 576px) {

  .row>div[class^="col-sm-"][class$="-6"]>[data-animate],
  .row>div[class^="col-sm-"][class$="-4"]>[data-animate],
  .row>div[class^="col-sm-"][class$="-3"]>[data-animate],
  .row>div[class^="col-sm-"][class$="-2"]>[data-animate] {
    transition-delay: calc((var(--nth-child) - 1) * var(--animate-delay));
  }
}

@media (min-width: 768px) {

  .row>div[class^="col-md-"][class$="-6"]>[data-animate],
  .row>div[class^="col-md-"][class$="-4"]>[data-animate],
  .row>div[class^="col-md-"][class$="-3"]>[data-animate],
  .row>div[class^="col-md-"][class$="-2"]>[data-animate] {
    transition-delay: calc((var(--nth-child) - 1) * var(--animate-delay));
  }
}

@media (min-width: 992px) {

  .row>div[class^="col-lg-"][class$="-6"]>[data-animate],
  .row>div[class^="col-lg-"][class$="-4"]>[data-animate],
  .row>div[class^="col-lg-"][class$="-3"]>[data-animate],
  .row>div[class^="col-lg-"][class$="-2"]>[data-animate] {
    transition-delay: calc((var(--nth-child) - 1) * var(--animate-delay));
  }
}

@media (min-width: 1200px) {

  .row>div[class^="col-xl-"][class$="-6"]>[data-animate],
  .row>div[class^="col-xl-"][class$="-4"]>[data-animate],
  .row>div[class^="col-xl-"][class$="-3"]>[data-animate],
  .row>div[class^="col-xl-"][class$="-2"]>[data-animate] {
    transition-delay: calc((var(--nth-child) - 1) * var(--animate-delay));
  }
}

/*Responsive*/

@media (max-width: 767.98px) {
  #navigation {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2002;
    overflow-y: scroll;
    width: 258px;
    max-width: 85%;
    height: 100svh;
    padding: 15px 0;
    background-color: #fff;
    border-left: var(--border);
    transition: all 0.3s ease-out;
    backface-visibility: hidden;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }

  #navigation.active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
  }

  #navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #navigation li>a {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 20px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
    position: relative;
    display: flex;
    align-items: center;
  }

  #navigation ul>li>a {
    border-bottom: var(--border);
  }

  #navigation ul>li a:hover,
  #navigation ul>li a:focus {
    color: rgb(var(--color-primary));
  }

  #navigation li.menu-item-has-children>a {
    padding-left: 44px;
  }

  #navigation li.menu-item-has-children>a::before {
    width: 24px;
    height: 24px;
    background: url(../img/icon-chevron-down.svg) no-repeat center/cover;
    transform: translateY(-50%) rotate(90deg);
    position: absolute;
    left: 16px;
    top: 50%;
    content: "";
  }

  #navigation li.menu-item-has-children.active>a {
    padding-right: 44px;
    padding-left: 20px;
  }

  #navigation li.menu-item-has-children.active>a::before {
    transform: translateY(-50%) rotate(-90deg);
    left: auto;
    right: 16px;
  }

  #navigation img {
    display: none;
  }

  .blog-card-header {
    aspect-ratio: 1/1;
  }

  .blog-masonry .blog-card {
    display: flex;
    flex-wrap: wrap;
  }

  .blog-masonry .blog-card .blog-card-header,
  .blog-masonry .blog-card .blog-card-body {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .blog-card-body {
    aspect-ratio: unset;
  }

  .footer-bottom>div>div:first-child {
    padding: 16px 0 60px;
    text-align: center;
  }

  .footer-top>div>div {
    row-gap: 32px;
    margin-left: -14px;
    margin-right: -14px;
  }

  .footer-top>div>div>div {
    padding-left: 14px;
    padding-right: 14px;
  }

  .fblock ul.menu>li:not(:last-child),
  .footer-nav>li:not(:last-child),
  .footer-contact>li:not(:last-child) {
    margin-bottom: 12px;
  }

  .powered {
    margin-top: 20px;
  }

  .footer-logo>img:nth-child(1) {
    display: none;
  }

  .section-about-history .section-desc {
    margin-top: 32px;
  }

  .section-about-award .section-list {
    margin-top: 32px;
  }

  .about-quote-card {
    padding: 17.96px 32.5px 32.04px 31px;
    margin-top: 32px;
  }

  .about-quote-card-header {
    width: 52.0644172%;
  }

  .section-about-member .section-cover {
    margin-top: 32px;
  }

  .member-card {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    margin-left: 16px;
  }

  .member-card-title {
    font-size: 14px;
  }

  .member-card-subtitle {
    font-size: 12px;
  }

  .subsection-contact-form {
    padding: 32px;
  }

  .subsection-contact-info .subsection-body {
    padding: 20px;
  }

  .contact-info>li:not(:last-child) {
    margin-bottom: 12px;
  }

  .section-job-hero .section-title,
  .section-job-hero .section-subtitle {
    font-size: 42px;
    line-height: 42px;
  }

  .job-card {
    flex-direction: column;
  }

  .job-card-inner {
    padding: 16px;
    justify-content: space-between;
  }

  .job-card-title {
    font-size: 16px;
  }

  .job-card-footer {
    flex-direction: column;
    align-items: unset;
    margin: 0;
  }

  .job-card-type {
    padding: 4px 12px;
    font-size: 12px;
  }

  .job-card-location {
    font-size: 12px;
    line-height: 14.04px;
    margin: 8px 0 0;
  }

  .job-card .job-card-inner {
    min-height: 100%;
    max-height: 100%;
  }

  .job-card:hover .job-card-inner {
    min-height: calc(50% + 0.5px);
    max-height: calc(50% + 0.5px);
    width: calc(200% + 0.5px);
  }

  .job-card:hover .job-card-body {
    height: calc(150% + 0.5px);
    min-height: calc(150% + 0.5px);
    max-height: calc(150% + 0.5px);
    width: calc(200% + 0.5px);
  }

  .job-card:hover .job-card-inner {
    flex-direction: row;
  }

  .job-card-body {
    padding: 16px;
  }

  .page-header-title {
    font-size: 12px;
  }

  .page-header-desc {
    font-size: 20px;
    line-height: 28px;
    margin-top: 8px;
  }

  .page-header-search-input {
    height: 44px;
  }

  .page-header-search-category>label>span {
    padding: 4px 8px;
  }

  .product-card:not(.product-card-featured) .product-card-header {
    padding: 10%;
  }

  .product-card-header::after {
    top: 8px;
    left: 8px;
  }

  .product-card-compare,
  .product-card-like {
    width: 20px;
    height: 20px;
    bottom: 8px;
  }

  .product-card-compare {
    left: 8px;
  }

  .product-card-like {
    right: 8px;
  }

  .product-card-price,
  .product-card-label {
    font-size: 14px;
    line-height: 16.38px;
  }

  .product-card-badge {
    top: 8px;
    right: 8px;
    font-size: 12px;
    padding: 4px 8px;
  }

  /*.product-grid {
    padding-bottom: 125px;
  }*/
  .product-gallery {
    padding: 38px 38px 0;
  }

  .product-gallery .slick-dots {
    margin: 17px auto;
  }

  .product-info-price {
    font-size: 20px;
    line-height: 23.4px;
  }

  .product-action {
    margin-top: 12px;
  }

  .product-tab-nav {
    justify-content: space-between;
  }

  .product-tab-nav>li:not(:last-child) {
    margin-right: 0;
  }

  .product-tab-nav>li>a {
    font-size: 12px;
    padding: 20px 0;
  }

  .product-tab-content .subsection {
    padding: 20px;
  }

  .product-tab-content .subsection-title {
    font-size: 16px;
    line-height: 18.72px;
  }

  .subsection-table tr,
  .product-table tr {
    padding: 12px 10px;
    display: block;
  }

  .subsection-table th,
  .subsection-table td,
  .product-table th,
  .product-table td {
    font-size: 14px;
    display: block;
    padding: 0;
  }

  .subsection-table th+td,
  .product-table th+td {
    margin-top: 8px;
  }

  body.blog .headerbar>.row>div:first-child>.page-header-box {
    aspect-ratio: unset;
  }

  .entry-share>ul {
    width: 100%;
    margin-top: 10px;
  }

  .entry-share>ul>li:not(:last-child) {
    margin-left: 8px;
  }


  .dashboard-header {
    padding: 32px;
    border-bottom: var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dashboard-titlebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
  }

  .dashboard-mainbar {
    padding: 20px;
  }

  .dashboard-footer {
    padding: 12px 10px;
    text-align: center;
    border-top: var(--border);
  }

  .dashboard-sidebar {
    background: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2002;
    overflow-y: scroll;
    width: 280px;
    max-width: 85%;
    height: 100svh;
    padding: 15px 0;
    transition: all 0.3s ease-out;
    backface-visibility: hidden;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }

  .dashboard-sidebar.active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
  }

  .job-cell-grid-large {
    display: none;
  }

  .job-cell {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .job-cell-large {
    width: 300%;
  }

  .job-cell-small {
    width: 200%;
  }

  .section-job-hero .section-overlay {
    display: none;
  }

  .about-cell-grid-large {
    display: none;
  }

  .about-cell {
    flex: 0 0 100%;
    max-width: 100%;
    border-left-width: 0.75px !important;
  }

  .about-cell-inner {
    position: relative;
    text-align: center;
  }

  .section-about-hero .section-desc {
    text-align: center;
  }

  .about-cell-grid>div:nth-child(1),
  .about-cell-grid>div:nth-last-child(1) {
    aspect-ratio: 2/0.2;
  }

  .section-about-intro .square-corner>li:nth-child(1),
  .section-about-intro .square-corner>li:nth-child(2) {
    transform: translateY(-32px);
  }

  .section-about-company .section-header>.square-corner>li:nth-child(1),
  .section-about-company .section-header>.square-corner>li:nth-child(2) {
    transform: translateY(-32px);
  }

  .section-contact-hero .section-desc {
    text-align: center;
  }

  .contact-cell-grid-large {
    display: none;
  }

  .contact-cell {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-cell-grid>div:first-child {
    aspect-ratio: 2/0.1;
  }

  .contact-cell-inner {
    position: relative;
    text-align: center;
  }

  .feature-grid-large {
    display: none;
  }

  .feature-grid.feature-grid-small>div {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .slide-card-header {
    /* height: 320px; */
  }

  .account-hero {
    display: none;
  }

  td[data-title] {
    padding: 0 !important;
    display: flex !important;
    justify-content: space-between;
    font-style: normal;
    font-weight: 550;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
  }

  td[data-title]::before {
    content: attr(data-title) ":";
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin-left: 5px;
    display: inline-flex;
  }

  .ttable-action {
    padding: 0 !important;
    display: inline-flex !important;
    width: 49.5% !important;
  }

  .ttable-action+.ttable-action {
    justify-content: end;
  }

  .dashboard-table>tbody>tr {
    display: block;
  }

  .dashboard-table>tbody>tr>td[data-title]:not(:last-child) {
    padding-bottom: 4px !important;
  }

  .dashboard-table>tbody>tr>td[data-title]:nth-last-child(3) {
    padding-bottom: 16px !important;
  }

  .dashboard-table>tbody>tr:not(:last-child) {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .dashboard-table>tbody>tr>td[data-title]:first-child {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.8);
    padding: 0 0 16px !important;
    justify-content: start;
  }

  .dashboard-table>tbody>tr>td[data-title]:first-child::before {
    font-size: inherit;
    color: inherit;
  }

  .cart_totals .shop_table th,
  .shop_table thead {
    display: none;
  }

  .shop_table tr,
  .shop_table th,
  .shop_table td {
    display: grid;
    gap: 10px;
    align-items: center;
    padding: 0;
  }

  .shop_table>tbody>tr:not(:last-child) {
    padding-bottom: 10px;
  }

  .shop_table tr {
    border-bottom: 1px solid rgb(200, 200, 200);
  }

  .shop_table td.actions button[name="clear_cart"],
  .shop_table td.actions button[name="update_cart"] {
    margin-top: 15px;
    width: 100%;
  }

  .shop_table td.product-remove {
    text-align: end;
    border-bottom: none;
    height: 64px;
  }

  .shop_table td.product-thumbnail {
    border-top: none;
    padding: 0;
    position: relative;
  }

  .shop_table td.product-thumbnail>a {
    position: absolute;
    bottom: 100%;
    right: 10px;
  }

  .shop_table .quantity {
    display: inline-flex;
  }

  .checkout-button {
    width: 100%;
  }

  div+.ass-list {
    margin-top: 15px;
  }

  .ass-list {
    margin-left: -15px;
    margin-right: -15px;
  }

  .product-inner {
    border-top: var(--border);
  }

  #contact-map {
    aspect-ratio: 1/1;
  }

  .page-header-filter {
    flex-direction: column;
  }

  .ttable thead {
    display: none;
  }

  .ttable tr>th,
  .ttable tr>td {
    display: block;
  }

  .ttable tr>th+td {
    padding-top: 0;
  }

  .dashboard-wrapper {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
  }

  .dashboard-footer {
    margin-top: auto;
  }

  .dashboard-title {
    font-size: 22px;
  }

  .dashboard-welcome {
    display: none;
  }

  .dashboard-titlebar {
    display: none;
  }

  .dashboard-mainbar {
    flex: 1;
  }

  .subsection-header {
    display: block;
  }

  .dashboard-mainbar .subsection-title {
    font-weight: 700;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.8);
  }

  .dashboard-mainbar .subsection-header+.subsection-body {
    margin-top: 40px;
  }

  .subsection-nav {
    margin-top: 20px;
  }

  .quantity-field {
    width: 100px;
    height: 36px;
  }

  .career-card-meta>li:nth-child(1) {
    width: 100%;
  }

  #apply-form .form-action {
    padding-bottom: 25px;
  }

  .career-gallery-card-img {
    max-height: 42vh;
  }

  .dashboard-header-logo img {
    height: 36px;
  }

  .toaster {
    left: 0 !important;
    right: 0 !important;
  }

  .toaster li {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ticket-body {
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
  }

  .slide-card-header>img:first-child {
    display: none;
  }

  body.page-template-page-instalment .entry-title {
    margin-bottom: 15px !important;
  }

  body.page-template-page-instalment .career-feature-card-title {
    font-size: 16px !important;
  }

  .section-inst-banner .section-cover>img:first-child {
    display: none;
  }

  .inst-step-list>li,
  .inst-branch-card-title,
  .inst-feature-card-title,
  .inst-target-card-title {
    font-size: 18px;
  }

  .file-card-footer {
    margin-top: 12px;
  }

  .reseller-card-header {
    flex-direction: column;
  }

  .page-header-option {
    background: #fff;
    position: fixed;
    width: 100vw;
    height: 100dvh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  .page-header-option.active {
    opacity: 1;
    visibility: visible;
    display: flex;
  }

  .range-slider-label {
    flex-direction: column;
    align-items: unset;
    gap: 8px;
  }

  .range-slider-label>span {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 768px) {
  #navigation {
    line-height: 1;
  }

  #navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #navigation li>a {
    text-transform: capitalize;
    display: flex;
    align-items: center;
  }

  #navigation>ul {
    display: flex;
    align-items: center;
    column-gap: clamp(10px, 0.95vw + 6.29px, 20px);
  }

  #navigation>ul>li>a {
    color: #000;
    font-size: 16px;
    font-weight: normal;
    height: 92px;
  }

  #navigation ul>li:hover>a,
  #navigation ul>li.current-menu-item>a {
    color: rgb(var(--color-primary));
  }

  #navigation .sub-menu-level-1 {
    min-width: 20%;
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }

  #navigation .sub-menu-level-1::before,
  #navigation .sub-menu-level-1::after {
    border-top: var(--border);
    border-bottom: var(--border);
    background: #fff;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    content: "";
    z-index: -1;
  }

  #navigation .sub-menu-level-1::before {
    left: 50%;
  }

  #navigation .sub-menu-level-1::after {
    right: 50%;
  }

  #navigation .sub-menu-level-1>li:first-child::after {
    border-left: var(--border);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    content: "";
  }

  #navigation .sub-menu-level-1>li>a {
    font-size: 20px;
    font-weight: 550;
    height: 60px;
    padding: 0 0 0 10px;
    color: #000;
    position: relative;
  }

  #navigation .sub-menu-level-1>li>a>img {
    width: 32px;
    height: 32px;
    margin-left: 12px;
  }

  #navigation .sub-menu-level-1>li.active>a>img {
    filter: var(--filter-primary);
  }

  #navigation .sub-menu-level-1>li>a::after {
    width: 100vw;
    border-bottom: var(--border);
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
  }

  #navigation .sub-menu-level-1>li:last-child>a {
    margin-bottom: 100px;
  }

  #navigation .sub-menu-level-3>li>a,
  #navigation .sub-menu-level-2>li>a {
    font-weight: 550;
    font-size: 16px;
    color: #000000;
    padding: 4px 24px;
    height: 37px;
    white-space: nowrap;
  }

  #navigation .sub-menu-level-3>li.active>a,
  #navigation .sub-menu-level-2>li.active>a {
    background: rgba(178, 34, 34, 0.1);
    color: rgb(var(--color-primary));
  }

  #navigation .sub-menu-level-4 {
    width: 100vw;
    background: rgba(242, 242, 241, 0.5) !important;
    padding: 0 0 15px;
    column-gap: 30px;
    row-gap: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
  }

  #navigation .sub-menu-level-4>li {
    width: fit-content;
    padding: 0 15px;
  }

  #navigation .sub-menu-level-4>li>a {
    font-weight: 550;
    font-size: 16px;
    line-height: 29px;
    color: #000000;
  }

  #navigation .sub-menu-level-5>li>a {
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: #737169;
  }

  #navigation .sub-menu-level-5>li:hover>a {
    color: rgb(var(--color-primary));
  }

  #navigation .sub-menu-level-4,
  #navigation .sub-menu-level-3,
  #navigation .sub-menu-level-2 {
    height: calc(100% - 1px);
    border-left: var(--border);
    min-width: 222px;
    position: absolute;
    right: calc(100% + 0.5px);
    top: 0.5px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
  }

  #navigation .sub-menu-level-4::before,
  #navigation .sub-menu-level-3::before,
  #navigation .sub-menu-level-2::before {
    content: attr(data-parent-title);
    font-size: 20px;
    font-weight: 550;
    white-space: nowrap;
    width: 100%;
    min-height: 60px;
    max-height: 60px;
    padding: 0 32px;
    color: #000;
    border-bottom: var(--border);
    display: flex;
    align-items: center;
  }

  #navigation>ul>li.active>ul,
  #navigation .sub-menu-level-1>li.active>ul,
  #navigation .sub-menu-level-2>li.active>ul,
  #navigation .sub-menu-level-3>li.active>ul,
  #navigation .sub-menu-level-4>li.active>ul {
    opacity: 1;
    visibility: visible;
  }

  #navigation li.ltr>a {
    direction: ltr;
    justify-content: end;
  }

  body.nav-opened .body-overlay {
    z-index: -1;
    box-shadow: inset 0 150px 0 0 rgb(255, 255, 255);
  }

  .header-inner {
    padding: 0;
  }

  .user-nav>li.btn-support,
  .user-nav>li.btn-nav {
    display: none;
  }

  .blog-card {
    display: flex;
  }

  .blog-card-reverse {
    flex-direction: row-reverse;
  }

  .blog-card-large .blog-card-header {
    flex: 0 0 66.6666666%;
    max-width: 66.6666666%;
  }

  .blog-card-large .blog-card-body {
    flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
  }

  .blog-card-medium .blog-card-header,
  .blog-card-medium .blog-card-body {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .blog-card-medium .blog-card-header {
    aspect-ratio: 1/1;
  }

  .blog-card-featured .blog-card-header {
    display: none;
  }

  .blog-card-featured .blog-card-desc {
    display: none;
  }

  .footer-bottom>div>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo>img:nth-child(2) {
    display: none;
  }

  body.page-template-page-career:not(.nav-opened) #navigation>ul>li>a,
  body.page-template-page-job:not(.nav-opened) #navigation>ul>li>a {
    color: #fff;
  }

  body.page-template-page-career:not(.nav-opened) #navigation>ul>li:hover>a,
  body.page-template-page-career:not(.nav-opened) #navigation>ul>li.current-menu-item>a,
  body.page-template-page-job:not(.nav-opened) #navigation>ul>li:hover>a,
  body.page-template-page-job:not(.nav-opened) #navigation>ul>li.current-menu-item>a {
    color: rgb(var(--color-primary));
  }

  .job-card-inner,
  .job-card-body {
    width: calc(100% + 0.5px);
    min-width: calc(100% + 0.5px);
    max-width: calc(100% + 0.5px);
    height: 100%;
    position: relative;
  }

  .job-card-inner::after,
  .job-card-body::after {
    background: url(../img/icon-more.svg) no-repeat center/cover;
    transform: scaleX(-1);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    content: "";
  }

  .job-card:hover .job-card-inner::after {
    opacity: 0;
    visibility: hidden;
  }

  .job-card .job-card-body::after {
    filter: brightness(0) invert(1);
  }

  .job-card:hover .job-card-body::after {
    opacity: 1;
    visibility: visible;
  }

  .product-footer {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
  }

  .dashboard-titlebar {
    padding: 50px 40px 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dashboard-header-logo {
    padding-right: 40px;
    padding-left: 12px;
  }

  .dashboard-header {
    grid-area: dashboard-header;
    padding: 60px 0 32px;
    border-bottom: var(--border);
  }

  .dashboard-titlebar {
    grid-area: dashboard-titlebar;
    border-bottom: var(--border);
  }

  .dashboard-sidebar {
    grid-area: dashboard-sidebar;
    min-height: calc(100svh - 268px);
  }

  .dashboard-mainbar {
    grid-area: dashboard-mainbar;
    padding: 32px 40px 88px 60px;
  }

  .dashboard-wrapper {
    min-height: 100svh;
    display: grid;
    grid-template-areas:
      "dashboard-header dashboard-titlebar"
      "dashboard-sidebar dashboard-mainbar"
      "dashboard-footer dashboard-mainbar";
  }

  .dashboard-titlebar,
  .dashboard-mainbar {
    min-width: 82.6388889vw;
    max-width: 82.6388889vw;
  }

  .dashboard-header,
  .dashboard-sidebar,
  .dashboard-footer {
    width: 250px;
    min-width: 17.3611111vw;
    max-width: 17.3611111vw;
    border-left: var(--border);
    position: sticky;
    right: 0;
    z-index: 1;
  }

  .dashboard-footer {
    grid-area: dashboard-footer;
    padding: 52px 40px 60px 24px;
    margin-top: auto;
    z-index: 0;
  }

  .dashboard-footer::before {
    width: calc(100% + 0.5px);
    height: 100vh;
    background: inherit;
    border: inherit;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    content: "";
  }

  .dashboard-nav,
  .dashboard-nav>ul {
    height: 100%;
  }

  .dashboard-nav>ul {
    display: flex;
    flex-direction: column;
  }

  .dashboard-nav>ul>li:last-child {
    margin-top: auto;
    border-top: var(--border);
  }

  .dashboard-btn-nav {
    display: none;
  }

  .button:not(.button-block)+.button:not(.button-block) {
    margin-right: 8px;
  }

  .job-cell-grid-small {
    display: none;
  }

  .job-cell {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .job-cell-large {
    width: 400%;
  }

  .job-cell-small {
    width: 300%;
  }

  .about-cell-grid-small {
    display: none;
  }

  .about-cell {
    flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
    aspect-ratio: 2/1;
    aspect-ratio: unset;
  }

  .about-cell-grid>div:nth-child(1),
  .about-cell-grid>div:nth-child(2),
  .about-cell-grid>div:nth-child(3),
  .about-cell-grid>div:nth-last-child(1),
  .about-cell-grid>div:nth-last-child(2),
  .about-cell-grid>div:nth-last-child(3) {
    aspect-ratio: 2/0.5;
  }

  .about-cell-large {
    width: 200%;
  }

  .section-about-intro .square-corner>li:nth-child(1),
  .section-about-intro .square-corner>li:nth-child(2) {
    transform: translateY(calc(-50% - 88px));
  }

  .section-about-company .section-header>.square-corner>li:nth-child(1),
  .section-about-company .section-header>.square-corner>li:nth-child(2) {
    transform: translateY(calc(-50% - 88px));
  }

  .section-about-award .section-header {
    padding-left: 30px;
  }

  .about-cell-inner .section-icon {
    height: 40px;
    margin-right: auto;
    margin-bottom: auto;
  }

  .section-contact-hero .section-desc {
    margin-top: auto;
    margin-left: auto;
  }

  .contact-cell-grid-small {
    display: none;
  }

  .contact-cell {
    flex: 0 0 20%;
    max-width: 20%;
    aspect-ratio: 1/1;
  }

  .contact-cell-large {
    width: 300%;
    height: 200%;
  }

  .feature-grid-small {
    display: none;
  }

  .feature-grid.feature-grid-large>div {
    flex: 0 0 16.6666667%;
    max-width: 16.6666667%;
  }

  .container-fluid {
    max-width: calc(100vw - 11.1111111vw);
  }

  .contact-info-grid>div:first-child {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .contact-info-grid>div:last-child {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .account-wrapper {
    display: flex;
  }

  .account-wrapper>div {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: 100%;
  }

  .woocommerce-account #page-body .woocommerce {
    display: flex;
  }

  body.woocommerce-checkout #page-body .woocommerce {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    margin: 0 auto;
  }

  .shop_table td.actions button[name="clear_cart"],
  .shop_table td.actions button[name="update_cart"] {
    float: left;
    margin-right: 10px;
  }

  .cart_totals {
    width: 50%;
    margin-right: auto;
    padding-right: 15px;
  }

  #customer_details {
    display: flex;
    flex-flow: column nowrap;
    float: right;
    width: 50%;
    padding-left: 15px;
  }

  #customer_details .col-2 {
    width: 100%;
    margin-top: 20px;
  }

  #order_review,
  #order_review_heading {
    width: 50%;
    padding-right: 15px;
    float: left;
    clear: none;
  }

  .faq-tab-nav {
    position: sticky;
    top: 0;
    margin-top: 100px;
  }

  .faq-tab-nav>li:last-child {
    border-bottom: none;
  }

  .cart-items-total>th {
    text-align: end;
  }

  .career-card-meta>li:nth-child(1) {
    width: calc(50% - 40px);
  }

  .career-card-meta>li:nth-child(2),
  .career-card-meta>li:nth-child(3) {
    width: 25%;
  }

  #apply-form .form-action {
    justify-content: end;
  }

  div+.ass-list {
    margin-top: 40px;
  }

  .ass-list {
    margin-left: -40px;
    margin-right: -40px;
  }

  .product-inner {
    border-right: var(--border);
  }

  .comment-info {
    position: sticky;
    top: 0;
  }

  .contact-info-grid>div:nth-child(1) {
    padding-bottom: 100px;
  }

  #contact-map {
    border-bottom: var(--border);
  }

  .contact-info-grid>div:nth-child(2) {
    border-right: var(--border);
  }

  .page-header-filter {
    justify-content: space-between;
    align-items: start;
  }

  .page-header-filter>.page-filter-range {
    margin-left: auto;
  }

  .page-filter-range {
    width: 35%;
  }

  .ttable-action {
    white-space: nowrap;
    width: 1%;
  }

  .slide-card-header>img:last-child {
    display: none;
  }

  .section-inst-banner .section-cover>img:last-child {
    display: none;
  }

  .inst-step-list>li:nth-child(1) {
    margin-left: auto;
  }

  .inst-step-list>li:nth-child(2) {
    margin-right: auto;
  }

  .inst-step-list>li:nth-child(3) {
    margin-left: auto;
    margin-right: auto;
  }

  .inst-step-list>li:nth-child(4) {
    margin-left: auto;
  }

  .inst-step-list>li:nth-child(5) {
    margin-right: auto;
  }

  .section-inst-targets .section-body {
    margin-right: -6px;
    margin-left: -6px;
  }

  .inst-target-card {
    margin: 0 6px;
  }

  .file-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  body:not(.filter-opened) .page-header-option-header,
  body:not(.filter-opened) .page-header-option-footer,
  .page-header-helper {
    display: none;
  }
}

@media (max-width: 991.98px) {

  #navigation .sub-menu-level-4,
  #navigation .sub-menu-level-3,
  #navigation .sub-menu-level-2 {
    min-width: fit-content;
  }

  .feature-grid.feature-grid-large>div>div {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .blog-card {
    display: flex;
  }

  .blog-masonry>div:nth-child(odd)>.blog-card {
    flex-direction: row !important;
  }

  .blog-masonry>div:nth-child(even)>.blog-card {
    flex-direction: row-reverse !important;
  }

  .blog-masonry .blog-card .blog-card-header,
  .blog-masonry .blog-card .blog-card-body {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .compare-card {
    justify-content: center;
    gap: 0;
  }

  .compare-card-body {
    display: none;
  }
}

@media (min-width: 992px) {

  .blog-card-small .blog-card-header {
    display: none;
  }

  body.blog .headerbar>.row>div:first-child>.page-header-box {
    aspect-ratio: 1/1;
  }
}