:root {
  --red-main: #db0032;
  --white-main: #ffffff;
  --black-main: #333032;
  --green-main: #1a3b3a;
  --yellow-main: #FFEB3B;
  --gray-main: #f8f8f8;
  --wf-dark: #485460;
  --red-10: #fbe5ea;
  --red-error-bg: #FFF5F5;
  --red-20: #f8ccd6;
  --red-30: #f4b2c1;
  --red-40: #f199ad;
  --red-50: #ed8098;
  --red-60: #e96684;
  --red-70: #e64d70;
  --red-80: #e2335b;
  --red-90: #df1a47;
  --red-100: #c2002c;
  --black-10: #e5e5e5;
  --black-20: #cccccc;
  --black-30: #b2b2b2;
  --black-40: #999999;
  --black-50: #808080;
  --black-60: #666666;
  --black-70: #4d4d4d;
  --black-80: #333333;
  --black-90: #1a1a1a;
  --green-10: #e8ebeb;
  --green-20: #d1d8d8;
  --green-30: #bac4c4;
  --green-40: #a3b1b0;
  --green-50: #8c9d9c;
  --green-60: #768989;
  --green-70: #5f7675;
  --green-80: #486261;
  --green-90: #314f4e;
  --transparent-bgc: #ffffff33;
  --transparent-header: #1010100d;
  --transparent-line: #ffffff80;
  --grey-10: #ffffff80;
  --grey-20: #f8f8f84d;
  --grey-30: #5C595B;
  --grey-40: #5A5A5A;
  --grey-50: #D9D9D933;
  --grey-60: #333032;
  --grey-bg: #fbfbfb;
  --grey-line: #d9d9d9;
  --sdg-teal-dark: #284447;
  --sdg-teal: #4a7b7b;
  --sdg-blue-light: #afd3f7;
  --sdg-blue-lighter: #a8c7f0;
  --sdg-green: #90baa4;
  --sdg-green-light: #cce4d7;
  --sdg-peach: #fdede5;
  --sdg-gold: #ddab65;
}

@font-face {
  font-family: Nexa;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../../../global/assets/font/nexa/Nexa-Black.otf") format("opentype");
}
@font-face {
  font-family: Nexa;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../../../global/assets/font/nexa/Nexa-Heavy.otf") format("opentype");
}
@font-face {
  font-family: "Simpler";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../../../global/assets/font/simpler/Simpler-Black.otf") format("opentype");
}
@font-face {
  font-family: "Simpler";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../../global/assets/font/simpler/Simpler-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Simpler";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../../global/assets/font/simpler/Simpler-Regular.otf") format("opentype");
}
:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.flex {
  display: flex;
}
.flex.column {
  flex-direction: column;
}
.flex.justify-center {
  justify-content: center;
}
.flex.align-center {
  align-items: center;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.space-around {
  justify-content: space-around;
}
.flex.auto-center {
  justify-content: center;
  align-items: center;
}
.flex > *.full-grow {
  flex-grow: 1;
}

.inline-flex {
  display: inline-flex;
}
.inline-flex.justify-center {
  justify-content: center;
}
.inline-flex.align-center {
  align-items: center;
}
.inline-flex.space-between {
  justify-content: space-between;
}

.grid {
  display: grid;
}
.grid.column {
  grid-auto-flow: column;
}
.grid.justify-center {
  justify-items: center;
}
.grid.align-center {
  align-content: center;
}

.hidden {
  display: none !important;
}

@media (width > 768px) {
  .hidden-desktop {
    display: none !important;
  }
}

@media (width <= 768px) {
  .hidden-mobile {
    display: none !important;
  }
}

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

.bold {
  font-weight: 700;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.visibility-hidden {
  position: absolute;
  height: 0px;
  width: 0px;
  overflow: hidden;
  opacity: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (width > 768px) {
  .font-weight {
    position: relative;
    transition: 0.1s ease;
    display: inline-block;
    color: transparent !important;
  }
  .font-weight::after {
    content: attr(data-hover);
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.1s ease;
    width: -moz-max-content;
    width: max-content;
    color: var(--black-main);
  }
  .font-weight:hover::after, .font-weight.active::after {
    font-weight: 900;
  }
  .font-weight.red-main:hover::after, .font-weight.red-main.active::after {
    color: var(--red-main);
  }
}

.gap-10 {
  gap: 1rem;
}

html:lang(en) .flip-english {
  scale: -1 1;
}

:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

@keyframes appear {
  from {
    display: none;
    opacity: 0;
  }
  to {
    display: grid;
    opacity: 1;
  }
}
@keyframes vanish {
  from {
    display: grid;
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
  }
}
@keyframes appear-block {
  from {
    display: none;
    opacity: 0;
  }
  to {
    display: block;
    opacity: 1;
  }
}
@keyframes vanish-block {
  from {
    display: block;
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
}
button:hover {
  cursor: pointer;
}

input {
  font-family: inherit;
  text-align: inherit;
}

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

li {
  margin: 0;
  padding: 0;
}

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

input[type=number] {
  -moz-appearance: textfield;
}

:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.skip-links {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  top: -10rem;
  right: 1.6rem;
  background: var(--red-main, #db0032);
  color: #fff;
  padding: 1.2rem 2rem;
  font-family: Simpler, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 0.4rem 0.4rem;
  white-space: nowrap;
  z-index: 9999;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

html {
  box-sizing: border-box;
  font-size: 62.5%; /* Now 10px = 1rem! */
}
@media (1700px <= width) {
  html {
    font-size: 75%;
  }
}
@media (1000px <= width < 1200px) {
  html {
    font-size: 50%;
  }
}
@media (850px <= width < 1000px) {
  html {
    font-size: 40%;
  }
}
@media (768px <= width < 850px) {
  html {
    font-size: 40%;
  }
}

body {
  font-family: "Simpler", sans-serif;
  color: var(--black-main);
  direction: rtl;
}

html:lang(en) body {
  direction: ltr;
}

button {
  font-family: "Simpler", sans-serif;
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

.wp-block-video video {
  width: 100%;
  background: transparent;
}

:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

h1 {
  -webkit-text-stroke-width: 0.8549999595;
  font-size: 4rem;
  font-weight: 900;
  line-height: 96%;
}
@media (width > 1440px) {
  h1 {
    -webkit-text-stroke-width: 0.8549999595;
    font-size: 7.2rem;
  }
}

h2 {
  color: var(--red-main);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 110%;
}
@media (width > 768px) {
  h2 {
    font-size: 4.4rem;
    line-height: 96%;
  }
}
h2.small {
  font-size: 3.5rem;
  line-height: 100%;
}

h3 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 120%;
}

h4 {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 150%;
}
@media (width > 768px) {
  h4 {
    line-height: 2.8rem;
    font-size: 2.4rem;
  }
}

p {
  line-height: 130%;
  font-size: 1.7rem;
}
p.small {
  font-size: 1.6rem;
  line-height: 120%;
}
p.extra-small {
  font-size: 1.2rem;
  line-height: 130%;
}
@media (width > 768px) {
  p {
    font-size: 1.8rem;
  }
}

span {
  font-family: "Simpler", sans-serif;
}

a {
  font-size: 1.4rem;
  line-height: 150%;
}

.wpml-ls-statics-footer,
.otgs-development-site-front-end {
  display: none;
}

:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.main-layout {
  display: grid;
  grid-template-columns: 3.6rem 1fr 3.6rem;
}
@media (width > 768px) {
  .main-layout {
    grid-template-columns: 10rem 1fr 10rem;
    --hue-cell: calc((100vw - 20rem) / 7);
  }
}
@media (width > 1440px) {
  .main-layout {
    grid-template-columns: 1fr 124rem 1fr;
    --hue-cell: calc(124rem / 7);
  }
}
.main-layout > * {
  grid-column: 2;
}
.main-layout > .full {
  grid-column: 1/-1;
}

@media (width > 768px) {
  .main-layout-desktop {
    display: grid;
    grid-template-columns: 10rem 1fr 10rem;
    --hue-cell: calc((100vw - 20rem) / 7);
  }
}
@media (width > 768px) and (width > 1440px) {
  .main-layout-desktop {
    grid-template-columns: 1fr 124rem 1fr;
    --hue-cell: calc(124rem / 7);
  }
}
@media (width > 768px) {
  .main-layout-desktop > *:not(.border) {
    grid-column: 2;
  }
  .main-layout-desktop > .full {
    grid-column: 1/-1;
  }
}

.hue-lobby-breadcrumbs,
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--black-main);
  text-transform: uppercase;
  font-size: 1.4rem;
  margin: 0;
  padding-top: 0;
}
@media (width > 768px) {
  .hue-lobby-breadcrumbs,
  .breadcrumbs {
    font-size: 1.4rem;
  }
}
.hue-lobby-breadcrumbs a,
.breadcrumbs a {
  color: var(--black-main);
  font-weight: 400;
  font-size: 1.2rem;
  text-decoration: none;
  margin: 0;
}
@media (width > 768px) {
  .hue-lobby-breadcrumbs a,
  .breadcrumbs a {
    font-size: 1.4rem;
  }
}
.hue-lobby-breadcrumbs > *:first-child,
.breadcrumbs > *:first-child {
  margin-left: 0.6rem;
}
.hue-lobby-breadcrumbs > *:not(:first-child),
.breadcrumbs > *:not(:first-child) {
  margin-right: 0.6rem;
}
.hue-lobby-breadcrumbs span,
.breadcrumbs span {
  margin: 0;
  color: var(--black-main);
}
.hue-lobby-breadcrumbs .breadcrumb-separator,
.breadcrumbs .breadcrumb-separator {
  color: var(--black-main);
}
.hue-lobby-breadcrumbs .breadcrumb-current,
.breadcrumbs .breadcrumb-current {
  color: var(--black-main);
  font-weight: 900;
  font-size: 1.4rem;
  margin: 0;
}
@media (width > 768px) {
  .hue-lobby-breadcrumbs .breadcrumb-current,
  .breadcrumbs .breadcrumb-current {
    font-size: 1.4rem;
  }
}
.hue-lobby-breadcrumbs .yoast-breadcrumbs,
.breadcrumbs .yoast-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--black-main);
  text-transform: inherit;
  margin: 0;
}
.hue-lobby-breadcrumbs .yoast-breadcrumbs a,
.breadcrumbs .yoast-breadcrumbs a {
  color: var(--black-main);
  font-weight: 400;
  font-size: 1.2rem;
  text-decoration: none;
  margin: 0;
}
@media (width > 768px) {
  .hue-lobby-breadcrumbs .yoast-breadcrumbs a,
  .breadcrumbs .yoast-breadcrumbs a {
    font-size: 1.4rem;
  }
}
.hue-lobby-breadcrumbs .yoast-breadcrumbs span:not(.breadcrumb_last),
.breadcrumbs .yoast-breadcrumbs span:not(.breadcrumb_last) {
  color: var(--black-main);
}
.hue-lobby-breadcrumbs .yoast-breadcrumbs > *:not(:first-child),
.breadcrumbs .yoast-breadcrumbs > *:not(:first-child) {
  margin-inline: 0.6rem;
}
.hue-lobby-breadcrumbs .yoast-breadcrumbs .breadcrumb_last,
.breadcrumbs .yoast-breadcrumbs .breadcrumb_last {
  color: var(--black-main);
  font-weight: 900;
  font-size: 1.4rem;
  margin: 0;
}
@media (width > 768px) {
  .hue-lobby-breadcrumbs .yoast-breadcrumbs .breadcrumb_last,
  .breadcrumbs .yoast-breadcrumbs .breadcrumb_last {
    font-size: 1.4rem;
  }
}

.yoast-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--black-main);
  text-transform: uppercase;
  margin: 0;
}
.yoast-breadcrumbs span {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}
.yoast-breadcrumbs a {
  color: var(--black-main);
  font-weight: 400;
  font-size: 1.2rem;
  text-decoration: none;
  margin: 0;
}
@media (width > 768px) {
  .yoast-breadcrumbs a {
    font-size: 1.4rem;
  }
}
.yoast-breadcrumbs span:not(.breadcrumb_last) {
  color: var(--black-main);
}
.yoast-breadcrumbs > *:not(:first-child) {
  margin-inline: 0.6rem;
}
.yoast-breadcrumbs .breadcrumb_last {
  color: var(--black-main);
  font-weight: 900;
  font-size: 1.4rem;
  margin: 0;
}
@media (width > 768px) {
  .yoast-breadcrumbs .breadcrumb_last {
    font-size: 1.4rem;
  }
}

.hue-lobby-breadcrumbs {
  display: none;
}
@media (width > 768px) {
  .hue-lobby-breadcrumbs {
    display: block;
    display: flex;
    align-items: center;
    margin-bottom: var(--breadcrumbs-margin, 8rem);
    padding-top: 1.4rem;
  }
}
.hue-lobby-title-container .hue-lobby-breadcrumbs {
  display: none;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1.4rem;
}
@media (width > 768px) {
  .hue-lobby-title-container .hue-lobby-breadcrumbs {
    display: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 1.8rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 1.8rem;
    font-size: 1.4rem;
  }
}

@media (width > 768px) {
  .breadcrumbs {
    margin-bottom: 2rem;
  }
}

@media (width <= 768px) {
  .single-blog-breadcrumbs.breadcrumbs,
  .single-academy-breadcrumbs.breadcrumbs {
    border-bottom: 1px solid var(--red-30);
  }
}
.btn-clear {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
}

#videoModal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
}
#videoModal.active {
  display: flex !important;
}
#videoModal .video-modal-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(128, 128, 128, 0.8) !important;
  cursor: pointer !important;
  z-index: 1 !important;
}
#videoModal .video-modal-content {
  position: relative !important;
  width: min(95vw, 1280px) !important;
  max-width: 1280px !important;
  max-height: 90vh !important;
  z-index: 2 !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}
@media (width > 768px) {
  #videoModal .video-modal-content {
    width: min(92vw, 1280px) !important;
  }
}
#videoModal .video-modal-close {
  position: absolute !important;
  top: -5rem !important;
  right: 0 !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0.5rem !important;
  z-index: 3 !important;
  transition: transform 0.3s ease !important;
}
#videoModal .video-modal-close svg {
  width: 2.4rem;
  height: 2.4rem;
}
#videoModal .video-modal-close:hover {
  transform: scale(1.2) !important;
}
#videoModal .video-modal-iframe-wrapper {
  position: relative !important;
  width: 100% !important;
  max-height: min(82vh, 53.4375vw) !important;
  aspect-ratio: 16/9 !important;
  height: auto !important;
  padding-bottom: 0 !important;
  background: #000 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
  flex-shrink: 1 !important;
  min-height: 0 !important;
}
#videoModal .video-modal-iframe-wrapper iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}

body.video-modal-open {
  overflow: hidden !important;
}

.border-container {
  position: relative;
}

.border {
  position: absolute;
  background-color: var(--red-30);
}
.border.dark {
  background-color: var(--red-main);
}
.border.light {
  background-color: var(--grey-10);
}
.border.white {
  background-color: var(--white-main);
}
.border.red {
  background-color: var(--red-30);
}
.border.black {
  background-color: var(--black-main, #333032);
}
.border.transparent {
  background-color: rgba(255, 255, 255, 0.2);
}
.border.black.transparent {
  background-color: rgba(51, 48, 50, 0.2);
}
.border.white.transparent {
  background-color: rgba(255, 255, 255, 0.2);
}
.border.gray {
  background: rgba(51, 48, 50, 0.2);
}

.border.top {
  top: 0;
  left: 0;
}
[lang=en] .border.top {
  right: 0;
  left: auto;
}
.border.top {
  height: 1px;
  width: 0;
}

.border.top-fullwidth {
  top: 0;
  width: 200vw;
  left: -100vw;
}

.border.horizontal-fullwidth {
  height: 1px;
  width: 200vw;
  right: -100vw;
}

.border.bottom-fullwidth {
  bottom: 0;
  height: 1px;
  width: 200vw;
  left: -100vw;
}

.border.top.active-stroke {
  animation: drawBorderTop 1s forwards;
}

.border.right {
  top: 0;
  right: 0;
}
[lang=en] .border.right {
  left: 0;
  right: auto;
}
.border.right {
  width: 1px;
  height: 0;
}

.border.right.active-stroke {
  animation: drawBorderRight 1s forwards;
}

.border.bottom {
  bottom: 0;
  left: 0;
}
[lang=en] .border.bottom {
  right: 0;
  left: auto;
}
.border.bottom {
  height: 1px;
  width: 0;
}

.border.bottom.active-stroke {
  animation: drawBorderBottom 1s forwards;
}

.border.left {
  top: 0;
  left: 0;
}
[lang=en] .border.left {
  right: 0;
  left: auto;
}
.border.left {
  width: 1px;
  height: 0;
}

.border.left.active-stroke {
  animation: drawBorderLeft 1s forwards;
}

@keyframes drawBorderTop {
  to {
    width: 100%;
  }
}
@keyframes drawBorderRight {
  to {
    height: 100%;
  }
}
@keyframes drawBorderBottom {
  to {
    width: 100%;
  }
}
@keyframes drawBorderLeft {
  to {
    height: 100%;
  }
}
.border.left.one-six {
  left: 16.667%;
}
[lang=en] .border.left.one-six {
  right: 16.667%;
  left: auto;
}
.border.left.one-three {
  left: 33.333%;
}
[lang=en] .border.left.one-three {
  right: 33.333%;
  left: auto;
}
.border.left.one-two {
  left: 50%;
}
[lang=en] .border.left.one-two {
  right: 50%;
  left: auto;
}
.border.left.two-three {
  left: 66.667%;
}
[lang=en] .border.left.two-three {
  right: 66.667%;
  left: auto;
}
.border.left.two-three-vertical {
  left: 33.23%;
}
[lang=en] .border.left.two-three-vertical {
  right: 33.23%;
  left: auto;
}
.border.left.five-six {
  left: 83.333%;
}
[lang=en] .border.left.five-six {
  right: 83.333%;
  left: auto;
}

.border.top.one-six {
  top: 16.667%;
}
.border.top.one-four {
  top: 25%;
}
.border.top.twenty-nine {
  top: 28.4%;
}
.border.top.one-three {
  top: 33.333%;
}
.border.top.two-three {
  top: 66.667%;
}
.border.top.one-two {
  top: 50%;
}
.border.top.sixty-five {
  top: 64.2%;
}
.border.top.three-four {
  top: 75%;
}

.timeline-wrapper.year-active .border.top.one-two {
  top: 24%;
}
.timeline-wrapper.year-active .border.top.three-four {
  top: 85%;
}

.grid-line-container {
  position: relative;
}

.grid-line {
  position: absolute;
  background-color: var(--white-main);
}
@media (width > 768px) {
  .grid-line {
    background-color: var(--transparent-bgc);
  }
}
.grid-line.white {
  background-color: var(--white-main);
}
.grid-line.black {
  background-color: var(--black-main, #333032);
}
.grid-line.transparent:not(.black):not(.white) {
  background-color: rgba(255, 255, 255, 0.2);
}
.grid-line.black.transparent {
  background-color: rgba(51, 48, 50, 0.2) !important;
}
@media (width > 768px) {
  .grid-line.black.transparent {
    background-color: rgba(51, 48, 50, 0.2) !important;
  }
}
.grid-line.white.transparent {
  background-color: rgba(255, 255, 255, 0.2) !important;
}
@media (width > 768px) {
  .grid-line.white.transparent {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
}
.grid-line.fixed {
  position: fixed;
}
.grid-line.left {
  top: 0;
  left: 0;
}
[lang=en] .grid-line.left {
  right: 0;
  left: auto;
}
.grid-line.left {
  width: 1px;
  height: 100%;
}
.grid-line.left.one-seven {
  left: 14.2857%;
}
[lang=en] .grid-line.left.one-seven {
  right: 14.2857%;
  left: auto;
}
.grid-line.left.one-six {
  left: 16.667%;
}
[lang=en] .grid-line.left.one-six {
  right: 16.667%;
  left: auto;
}
.grid-line.left.two-seven {
  left: 28.5714%;
}
[lang=en] .grid-line.left.two-seven {
  right: 28.5714%;
  left: auto;
}
.grid-line.left.one-three {
  left: 33.333%;
}
[lang=en] .grid-line.left.one-three {
  right: 33.333%;
  left: auto;
}
.grid-line.left.three-seven {
  left: 42.857%;
}
[lang=en] .grid-line.left.three-seven {
  right: 42.857%;
  left: auto;
}
.grid-line.left.one-two {
  left: 50%;
}
[lang=en] .grid-line.left.one-two {
  right: 50%;
  left: auto;
}
.grid-line.left.two-three {
  left: 66.667%;
}
[lang=en] .grid-line.left.two-three {
  right: 66.667%;
  left: auto;
}
.grid-line.left.five-six {
  left: 83.333%;
}
[lang=en] .grid-line.left.five-six {
  right: 83.333%;
  left: auto;
}
.grid-line.right {
  top: 0;
  right: 0;
}
[lang=en] .grid-line.right {
  left: 0;
  right: auto;
}
.grid-line.right {
  width: 1px;
  height: 100%;
}
.grid-line.right.one-seven {
  right: 14.2857%;
}
[lang=en] .grid-line.right.one-seven {
  left: 14.2857%;
  right: auto;
}
.grid-line.right.one-six {
  right: 16.667%;
}
[lang=en] .grid-line.right.one-six {
  left: 16.667%;
  right: auto;
}
.grid-line.right.two-seven {
  right: 28.5714%;
}
[lang=en] .grid-line.right.two-seven {
  left: 28.5714%;
  right: auto;
}
.grid-line.right.one-three {
  right: 33.333%;
}
[lang=en] .grid-line.right.one-three {
  left: 33.333%;
  right: auto;
}
.grid-line.right.three-seven {
  right: 42.857%;
}
[lang=en] .grid-line.right.three-seven {
  left: 42.857%;
  right: auto;
}
.grid-line.right.one-two {
  right: 50%;
}
[lang=en] .grid-line.right.one-two {
  left: 50%;
  right: auto;
}
.grid-line.right.two-three {
  right: 66.667%;
}
[lang=en] .grid-line.right.two-three {
  left: 66.667%;
  right: auto;
}
.grid-line.right.five-six {
  right: 83.333%;
}
[lang=en] .grid-line.right.five-six {
  left: 83.333%;
  right: auto;
}
.grid-line.top {
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.grid-line.top.one-six {
  top: 16.667%;
}
.grid-line.top.one-four {
  top: 25%;
}
.grid-line.top.one-three {
  top: 33.333%;
}
.grid-line.top.one-two {
  top: 50%;
}
.grid-line.top.two-three {
  top: 66.666%;
}
.grid-line.top.three-four {
  top: 75%;
}
.grid-line.bottom {
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  bottom: 4.2rem;
  right: 1.2rem;
  z-index: 9999;
  width: 5.2rem;
  height: 5.2rem;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
@media (width > 768px) {
  .whatsapp-float {
    bottom: 4.4rem;
    right: 4.4rem;
    width: 6.4rem;
    height: 6.4rem;
    padding: 1.2rem;
  }
}
.whatsapp-float--hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: scale(0.8);
}
.whatsapp-float:hover {
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.25);
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}

:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.share-popup {
  margin: 15rem 15rem 0rem 0rem;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.share-popup .share-popup-content {
  direction: ltr;
  background: white;
  border-radius: 0.6rem;
  padding: 2.2rem;
  position: relative;
  width: 40rem;
  box-shadow: 0 0 1.1586rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width > 768px) {
  .share-popup .share-popup-content {
    width: 90%;
    max-width: 40rem;
  }
}
.share-popup .share-popup-content .close-popup {
  position: absolute;
  top: 2.2rem;
  left: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black-main);
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.2s ease;
}
.share-popup .share-popup-content .close-popup svg {
  width: 100%;
  height: 100%;
}
.share-popup .share-popup-content .close-popup:hover {
  opacity: 0.7;
}
.share-popup .share-popup-content .popup-header {
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.share-popup .share-popup-content .popup-header svg {
  width: 2.0726rem;
  height: 2.1364rem;
  flex-shrink: 0;
}
.share-popup .share-popup-content .popup-header h3 {
  color: var(--neutral-800, #333032);
  text-align: right;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
}
.share-popup .share-popup-content .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
.share-popup .share-popup-content .popup-content .link-section {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: flex-end;
  width: 100%;
}
.share-popup .share-popup-content .popup-content .link-section .link-label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--neutral-800);
  text-align: right;
  margin: 0;
}
.share-popup .share-popup-content .popup-content .link-section .link-container {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 0.4rem;
  padding: 0.8rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
.share-popup .share-popup-content .popup-content .link-section .link-container .link-url {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(51, 48, 50, 0.5);
  text-transform: uppercase;
  margin: 0;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.share-popup .share-popup-content .popup-content .link-section .link-container .copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-800);
  transition: opacity 0.2s ease;
}
.share-popup .share-popup-content .popup-content .link-section .link-container .copy-btn svg {
  width: 100%;
  height: 100%;
}
.share-popup .share-popup-content .popup-content .link-section .link-container .copy-btn:hover {
  opacity: 0.7;
}
.share-popup .share-popup-content .popup-content .divider {
  width: 100%;
  height: 0.1rem;
  background: var(--neutral-200, #E5E5E5);
}
.share-popup .share-popup-content .popup-content .platform-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.share-popup .share-popup-content .popup-content .platform-section .platform-icons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.share-popup .share-popup-content .popup-content .platform-section .platform-icons .platform-icon {
  border: none;
  border-radius: 0.4rem;
  width: 3.2818rem;
  height: 3.2818rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.share-popup .share-popup-content .popup-content .platform-section .platform-icons .platform-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.share-popup .share-popup-content .popup-content .platform-section .platform-label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--neutral-800, #333032);
  text-align: right;
  margin: 0;
  white-space: nowrap;
}

body.share-popup-open {
  overflow: hidden;
}

:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.border-container {
  position: relative;
}

.border {
  position: absolute;
  background-color: var(--red-30);
}
.border.dark {
  background-color: var(--red-main);
}
.border.light {
  background-color: var(--grey-10);
}
.border.white {
  background-color: var(--white-main);
}
.border.red {
  background-color: var(--red-30);
}
.border.black {
  background-color: var(--black-main, #333032);
}
.border.transparent {
  background-color: rgba(255, 255, 255, 0.2);
}
.border.black.transparent {
  background-color: rgba(51, 48, 50, 0.2);
}
.border.white.transparent {
  background-color: rgba(255, 255, 255, 0.2);
}
.border.gray {
  background: rgba(51, 48, 50, 0.2);
}

.border.top {
  top: 0;
  left: 0;
}
[lang=en] .border.top {
  right: 0;
  left: auto;
}
.border.top {
  height: 1px;
  width: 0;
}

.border.top-fullwidth {
  top: 0;
  width: 200vw;
  left: -100vw;
}

.border.horizontal-fullwidth {
  height: 1px;
  width: 200vw;
  right: -100vw;
}

.border.bottom-fullwidth {
  bottom: 0;
  height: 1px;
  width: 200vw;
  left: -100vw;
}

.border.top.active-stroke {
  animation: drawBorderTop 1s forwards;
}

.border.right {
  top: 0;
  right: 0;
}
[lang=en] .border.right {
  left: 0;
  right: auto;
}
.border.right {
  width: 1px;
  height: 0;
}

.border.right.active-stroke {
  animation: drawBorderRight 1s forwards;
}

.border.bottom {
  bottom: 0;
  left: 0;
}
[lang=en] .border.bottom {
  right: 0;
  left: auto;
}
.border.bottom {
  height: 1px;
  width: 0;
}

.border.bottom.active-stroke {
  animation: drawBorderBottom 1s forwards;
}

.border.left {
  top: 0;
  left: 0;
}
[lang=en] .border.left {
  right: 0;
  left: auto;
}
.border.left {
  width: 1px;
  height: 0;
}

.border.left.active-stroke {
  animation: drawBorderLeft 1s forwards;
}

@keyframes drawBorderTop {
  to {
    width: 100%;
  }
}
@keyframes drawBorderRight {
  to {
    height: 100%;
  }
}
@keyframes drawBorderBottom {
  to {
    width: 100%;
  }
}
@keyframes drawBorderLeft {
  to {
    height: 100%;
  }
}
.border.left.one-six {
  left: 16.667%;
}
[lang=en] .border.left.one-six {
  right: 16.667%;
  left: auto;
}
.border.left.one-three {
  left: 33.333%;
}
[lang=en] .border.left.one-three {
  right: 33.333%;
  left: auto;
}
.border.left.one-two {
  left: 50%;
}
[lang=en] .border.left.one-two {
  right: 50%;
  left: auto;
}
.border.left.two-three {
  left: 66.667%;
}
[lang=en] .border.left.two-three {
  right: 66.667%;
  left: auto;
}
.border.left.two-three-vertical {
  left: 33.23%;
}
[lang=en] .border.left.two-three-vertical {
  right: 33.23%;
  left: auto;
}
.border.left.five-six {
  left: 83.333%;
}
[lang=en] .border.left.five-six {
  right: 83.333%;
  left: auto;
}

.border.top.one-six {
  top: 16.667%;
}
.border.top.one-four {
  top: 25%;
}
.border.top.twenty-nine {
  top: 28.4%;
}
.border.top.one-three {
  top: 33.333%;
}
.border.top.two-three {
  top: 66.667%;
}
.border.top.one-two {
  top: 50%;
}
.border.top.sixty-five {
  top: 64.2%;
}
.border.top.three-four {
  top: 75%;
}

.timeline-wrapper.year-active .border.top.one-two {
  top: 24%;
}
.timeline-wrapper.year-active .border.top.three-four {
  top: 85%;
}

:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.main-layout {
  display: grid;
  grid-template-columns: 3.6rem 1fr 3.6rem;
}
@media (width > 768px) {
  .main-layout {
    grid-template-columns: 10rem 1fr 10rem;
    --hue-cell: calc((100vw - 20rem) / 7);
  }
}
@media (width > 1440px) {
  .main-layout {
    grid-template-columns: 1fr 124rem 1fr;
    --hue-cell: calc(124rem / 7);
  }
}
.main-layout > * {
  grid-column: 2;
}
.main-layout > .full {
  grid-column: 1/-1;
}

@media (width > 768px) {
  .main-layout-desktop {
    display: grid;
    grid-template-columns: 10rem 1fr 10rem;
    --hue-cell: calc((100vw - 20rem) / 7);
  }
}
@media (width > 768px) and (width > 1440px) {
  .main-layout-desktop {
    grid-template-columns: 1fr 124rem 1fr;
    --hue-cell: calc(124rem / 7);
  }
}
@media (width > 768px) {
  .main-layout-desktop > *:not(.border) {
    grid-column: 2;
  }
  .main-layout-desktop > .full {
    grid-column: 1/-1;
  }
}

.single-blog-breadcrumbs.breadcrumbs {
  padding: 1.6rem 0;
}

.single-blog-page {
  padding-top: 3rem;
  max-width: 100%;
  direction: rtl;
  text-align: right;
  overflow: hidden;
}
@media (width > 768px) {
  .single-blog-page {
    padding-top: var(--header-height);
  }
}

.content-layout {
  grid-column: 2;
}

/* ------------------------------
   BLOG META (Label + Hue)
------------------------------ */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0 3.6rem 2.2rem;
  flex-wrap: wrap;
}
@media (width > 768px) {
  .blog-meta {
    max-width: 124rem;
    margin: 0 2.6rem 2.2rem;
  }
}

/* ------------------------------
   BLOG LABELS (multiple categories)
------------------------------ */
.blog-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 3.8rem;
}
@media (width > 768px) {
  .blog-labels {
    margin-top: 0;
    padding-top: 4.1rem;
  }
}
.blog-labels .blog-label {
  font-family: "Simpler", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0.6rem 1.2rem;
  background-color: rgba(217, 217, 217, 0.2);
  color: var(--red-main);
  border-radius: 0.4rem;
  border: 1px solid rgba(217, 217, 217, 0.2);
  white-space: nowrap;
}

/* ------------------------------
   BLOG HEADER (Title + Share)
------------------------------ */
.blog-header {
  max-width: 23.7rem;
  margin: 0 2.6rem 3.2rem;
  position: relative;
}
@media (width > 768px) {
  .blog-header {
    max-width: 124rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
  }
}

.blog-title {
  font-family: "Simpler", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--red-main);
  margin-bottom: 1.6rem;
  max-width: 23.7rem;
}
@media (width > 768px) {
  .blog-title {
    font-size: 4.4rem;
    max-width: 52.1rem;
    flex: 1;
    margin-bottom: 0;
  }
}

.share {
  display: flex;
  align-items: center;
  width: 7.1rem;
  height: 2.4rem;
  flex-shrink: 0;
  gap: 0.4rem;
  padding: 0rem;
  margin-left: 3.8rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media (width > 768px) {
  .share {
    margin-left: 0;
    margin-top: 0;
  }
}
.share:hover {
  opacity: 0.7;
}
.share a {
  color: var(--Main-Black, #000);
  text-align: right;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.016rem;
  text-decoration: none;
}
.share img {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

/* ------------------------------
   BLOG FEATURED IMAGE WITH GRID
------------------------------ */
.blog-image-container {
  position: relative;
  width: 100%;
  height: 25.2rem;
  margin-bottom: 3.2rem;
  overflow: hidden;
}
@media (width > 768px) {
  .blog-image-container {
    height: 35.2rem;
    margin-bottom: 0;
  }
}
.blog-image-container .blog-featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.blog-image-container .blog-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.blog-image-container .blog-grid-overlay .grid-hue-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 33.3333333333%;
  height: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 1.1rem;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-hue-item {
    width: 14.2857142857%;
    height: 50%;
  }
}
.blog-image-container .blog-grid-overlay .grid-hue-item .hue-grid-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  color: white;
  width: 100%;
  max-width: 5rem;
  padding-left: 1.1rem;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-hue-item .hue-grid-text {
    max-width: 6.9rem;
  }
}
.blog-image-container .blog-grid-overlay .grid-hue-item .hue-grid-text .hue-name-line {
  font-family: Nexa, Simpler;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 0.06em;
  color: white;
  text-align: left;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-hue-item .hue-grid-text .hue-name-line {
    font-size: 1.7rem;
  }
}
.blog-image-container .blog-grid-overlay .grid-hue-item .hue-grid-text .hue-code-line {
  font-family: Nexa, Simpler;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  color: white;
  text-align: left;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-hue-item .hue-grid-text .hue-code-line {
    font-size: 1.4rem;
  }
}
.blog-image-container .blog-grid-overlay .grid-blur-item-3 {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.3333333333%;
  height: 50%;
  background: var(--White-Grid, rgba(255, 255, 255, 0.3));
  backdrop-filter: blur(20px);
  z-index: 1;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-blur-item-3 {
    left: 14.2857142857%;
    right: auto;
    width: 14.2857142857%;
    height: 50%;
  }
}
.blog-image-container .blog-grid-overlay .grid-line {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
}
.blog-image-container .blog-grid-overlay .grid-line.left {
  width: 1px;
  height: 100%;
  top: 0;
}
.blog-image-container .blog-grid-overlay .grid-line.left.one-three {
  left: 33.3333333333%;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.one-three {
    left: 14.2857142857%;
  }
}
.blog-image-container .blog-grid-overlay .grid-line.left.two-three {
  left: 66.6666666667%;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.two-three {
    left: 28.5714285714%;
  }
}
.blog-image-container .blog-grid-overlay .grid-line.left.three-seven, .blog-image-container .blog-grid-overlay .grid-line.left.four-seven, .blog-image-container .blog-grid-overlay .grid-line.left.five-seven, .blog-image-container .blog-grid-overlay .grid-line.left.six-seven {
  display: none;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.three-seven, .blog-image-container .blog-grid-overlay .grid-line.left.four-seven, .blog-image-container .blog-grid-overlay .grid-line.left.five-seven, .blog-image-container .blog-grid-overlay .grid-line.left.six-seven {
    display: block;
  }
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.three-seven {
    left: 42.8571428571%;
  }
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.four-seven {
    left: 57.1428571429%;
  }
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.five-seven {
    left: 71.4285714286%;
  }
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.six-seven {
    left: 85.7142857143%;
  }
}
.blog-image-container .blog-grid-overlay .grid-line.top {
  height: 1px;
  width: 100%;
  left: 0;
}
.blog-image-container .blog-grid-overlay .grid-line.top.one-two {
  top: 50%;
}

/* ------------------------------
   HUE COLOR SQUARE
------------------------------ */
.blog-hue-square {
  width: 100%;
  margin-bottom: 3.2rem;
  padding: 0 3.6rem;
}
.blog-hue-square .hue-square-content {
  width: 100%;
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-hue-square .hue-square-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  color: white;
}
.blog-hue-square .hue-square-text .hue-name-line {
  font-family: Nexa, Simpler;
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 0.06em;
}
.blog-hue-square .hue-square-text .hue-code-line {
  font-family: Nexa, Simpler;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (width > 768px) {
  .blog-hue-square {
    padding: 0;
    max-width: 120rem;
    margin: 0 auto 3.2rem;
  }
}

/* ------------------------------
   LEARN SECTION
------------------------------ */
.blog-learn-section {
  margin: 6rem 0;
  padding: 0 3.6rem;
  background-color: var(--white-main);
  border-top: 1px solid rgba(219, 0, 50, 0.2);
}
@media (width > 768px) {
  .blog-learn-section {
    padding: 0;
    margin: 6rem auto;
    max-width: 124rem;
  }
}
.blog-learn-section .learn-content {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (width > 768px) {
  .blog-learn-section .learn-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 6.4rem 10rem;
  }
}
.blog-learn-section .learn-content-text {
  flex: 1;
}
.blog-learn-section .learn-content-text .learn-title {
  font-family: "Simpler", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--red-main);
  margin-bottom: 2.4rem;
}
@media (width > 768px) {
  .blog-learn-section .learn-content-text .learn-title {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
  }
}
.blog-learn-section .learn-content-text .learn-description {
  font-family: "Simpler", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-main);
  text-align: right;
}
@media (width > 768px) {
  .blog-learn-section .learn-content-text .learn-description {
    font-size: 1.8rem;
  }
}
.blog-learn-section .learn-content-button {
  display: flex;
  justify-content: flex-start;
}
@media (width > 768px) {
  .blog-learn-section {
    justify-content: flex-start;
    flex-shrink: 0;
  }
}

/* ------------------------------
   MAIN DESCRIPTION
------------------------------ */
.blog-description {
  max-width: 30.9rem;
  margin: 0 3.6rem 3.2rem;
}
.blog-description p {
  font-family: "Simpler", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--black-main);
  margin-bottom: 1.8rem;
  max-width: 30.9rem;
}
@media (width > 768px) {
  .blog-description {
    max-width: 120rem;
    margin: 0 auto 3.2rem;
    padding: 0 10rem;
  }
}

/* ------------------------------
   COLOR PALETTE
------------------------------ */
.blog-color-palette {
  max-width: 30.9rem;
  margin: 4rem auto;
  padding: 0 3.6rem;
}
.blog-color-palette h3 {
  font-family: "Simpler", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black-main);
  margin-bottom: 2.4rem;
  text-align: right;
  max-width: 30.9rem;
}
@media (width > 768px) {
  .blog-color-palette h3 {
    max-width: 100%;
  }
}
.blog-color-palette .color-palette-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
  padding: 1.6rem;
  background-color: #f9f9f9;
  border-radius: 0.8rem;
}
@media (width > 768px) {
  .blog-color-palette {
    max-width: 124rem;
    margin: 4rem auto;
    padding: 0 10rem;
  }
}

/* ------------------------------
   GUTENBERG CONTENT
------------------------------ */
@media (width > 768px) {
  .blog-content {
    max-width: 124rem;
    margin-top: 8.5rem;
    padding: 0;
  }
}
.blog-content {
  max-width: 124rem;
}
.blog-content a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}
.blog-content p {
  font-family: "Simpler", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--black-main);
  margin-bottom: 1.6rem;
  max-width: 30.9rem;
  margin: 0 3.6rem;
  padding-top: 1.2rem;
  padding-bottom: 3.2rem;
}
@media (width > 768px) {
  .blog-content p {
    max-width: 67.3rem;
    margin: 0 auto;
    font-size: 2.2rem;
    letter-spacing: 0rem;
    margin-right: 32.7%;
  }
}
.blog-content img {
  width: 100%;
  height: 25.3rem;
  display: block;
  margin: 1.2rem 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width > 768px) {
  .blog-content img {
    height: auto;
    max-height: 60rem;
    margin-right: 32.7%;
    max-width: 77.9rem;
  }
}
.blog-content iframe,
.blog-content .wp-block-embed iframe,
.blog-content video {
  display: block;
  margin: 1.2rem 0;
  width: 100%;
}
@media (width > 768px) {
  .blog-content iframe,
  .blog-content .wp-block-embed iframe,
  .blog-content video {
    margin-right: 32.7%;
    max-width: 77.9rem;
  }
}
.blog-content h2 {
  font-family: "Simpler", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--red-main);
  text-align: right;
  max-width: 30.9rem;
  margin-top: 2.4rem;
  margin: auto 3.6rem;
  padding-bottom: 1.2rem;
}
@media (width > 768px) {
  .blog-content h2 {
    font-size: 3.5rem;
    max-width: 42rem;
    margin: 0 auto;
    letter-spacing: 0rem;
    margin-right: 32.7%;
    padding-top: 2rem;
  }
}
.blog-content h3 {
  font-family: "Simpler", sans-serif;
  font-weight: 700;
  color: var(--red-main);
  margin-top: 3rem;
  margin-bottom: 1.4rem;
}
@media (width > 768px) {
  .blog-content h3 {
    max-width: 120rem;
    margin-right: 32.7%;
  }
}
.blog-content h4 {
  line-height: 2.8rem;
  font-size: 2.4rem;
  margin: 0 3.6rem;
}
@media (width > 768px) {
  .blog-content h4 {
    margin-right: 32.7%;
  }
}
.blog-content ul,
.blog-content ol {
  font-family: "Simpler", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black-main);
  margin: 0 3.6rem;
  padding-top: 1.2rem;
  padding-bottom: 3.2rem;
  padding-inline-start: 2rem;
}
@media (width > 768px) {
  .blog-content ul,
  .blog-content ol {
    max-width: 67.3rem;
    margin: 0 auto;
    font-size: 2.2rem;
    margin-right: 32.7%;
    padding-bottom: 0;
  }
}
.blog-content ul {
  list-style-type: disc;
}
.blog-content ol {
  list-style-type: decimal;
}
.blog-content li {
  list-style: inherit;
  margin-bottom: 0.8rem;
  padding-inline-start: 0.4rem;
}
.blog-content li a {
  font-size: inherit;
}

/**
 * Order Details Page Styles
 */
:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.woocommerce-order-details-page {
  padding: 0 3.6rem;
  padding-top: var(--header-height);
}
@media (width > 768px) {
  .woocommerce-order-details-page {
    padding: unset;
    padding-bottom: 8.6rem;
    width: 100%;
  }
}
.woocommerce-order-details-page .order-details-back-link {
  display: none;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-back-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 5rem;
    margin-top: 2rem;
    text-decoration: none;
    color: var(--black-main, #333032);
    font-family: "Simpler", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.2;
    transition: opacity 0.2s ease;
  }
}
.woocommerce-order-details-page .order-details-back-link:hover {
  opacity: 0.7;
}
.woocommerce-order-details-page .order-details-back-link svg {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  transform: rotate(-90deg);
}
.woocommerce-order-details-page .order-details-back-link span {
  color: var(--black-main, #333032);
}
.woocommerce-order-details-page .order-details-divider {
  height: 0;
  width: 100%;
  border-top: 1px solid var(--grey-line, #D9D9D9);
  margin: 1.6rem 0;
}
.woocommerce-order-details-page .order-details-divider.order-details-divider-vertical {
  display: none;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-divider.order-details-divider-vertical {
    display: block;
    width: 0;
    height: auto;
    border-top: none;
    border-right: 1px solid var(--grey-line, #D9D9D9);
    margin: 0;
    align-self: stretch;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 11rem;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left {
  flex: 1;
  min-width: 0;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details {
  background-color: #F8F8F8;
  padding: 1.6rem;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details {
    padding: 3.5rem 4rem 2.2rem 4rem;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .woocommerce-order-details__title {
  font-family: "Simpler", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #000;
  margin: 0 0 1.6rem 0;
  text-align: right;
  border-bottom: 1px solid var(--grey-line);
  padding-bottom: 2.4rem;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .woocommerce-order-details__title {
    font-size: 2.2rem;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details h2 {
  font-family: "Simpler", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #000;
  margin: 0 0 1.6rem 0;
  text-align: right;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details h2 {
    font-size: 2.2rem;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid var(--grey-line);
  margin-bottom: 1.6rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-wrapper {
  display: flex !important;
  gap: 0.8rem;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--grey-line);
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-wrapper:last-child {
  border-bottom: none;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-wrapper {
    gap: 1.2rem;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-left {
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
  min-width: 5.3rem;
  padding-left: 0.3rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-price {
  font-family: "Simpler", sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.4rem !important;
  line-height: 1.2 !important;
  color: #000 !important;
  text-align: left;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-content-wrapper {
  display: flex !important;
  gap: 1.2rem;
  align-items: center;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-center {
  flex: 1;
  display: flex !important;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  padding-right: 0;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-header-info {
  display: flex !important;
  gap: 0.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-name {
  font-family: Nexa, Simpler !important;
  font-size: 1.4rem !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  color: #000 !important;
  text-transform: uppercase !important;
  text-align: right;
  margin: 0 !important;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-name {
    font-size: 1.6rem !important;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-variant-info {
  display: flex !important;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-sample-icon {
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-sample-icon svg {
  width: 100%;
  height: 100%;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-sample-text {
  font-family: "Simpler", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-sample-text {
    font-size: 1.6rem;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-separator {
  font-family: "Simpler", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-variant-text {
  font-family: "Simpler", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-variant-text {
    font-size: 1.6rem;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-description {
  font-family: "Simpler", sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #000 !important;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-code {
  font-family: "Simpler", sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #000 !important;
  text-align: right;
  margin: 0 !important;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-code {
    font-size: 1.4rem !important;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-right {
  flex-shrink: 0;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-swatch-wrapper {
  position: relative;
  width: 8.5rem;
  height: 8.5rem;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-swatch-wrapper {
    width: 6.6rem;
    height: 6.6rem;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-swatch {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-items-list .order-item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-summary {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 5rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-summary .order-summary-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-summary .order-summary-row:first-child {
  padding-top: 1.6rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-summary .order-summary-row .order-summary-label {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #000;
  text-align: right;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-summary .order-summary-row .order-summary-value {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #000;
  text-align: left;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-summary .order-summary-row.order-summary-total .order-summary-label,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-summary .order-summary-row.order-summary-total .order-summary-value {
  font-weight: 900;
  font-size: 1.8rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-left .woocommerce-order-details .order-summary .order-summary-vat-note {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #000;
  text-align: right;
  margin-top: 0.2rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right {
  width: 100%;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper .order-details-right {
    width: 50%;
    flex-shrink: 0;
    padding-bottom: 8.5rem;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-details-header {
  margin-bottom: 0;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-details-header .order-header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-details-header .order-header-content .order-number {
  font-family: "Simpler", sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 2.8rem;
  color: #000;
  margin: 0;
  text-align: right;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-details-header .order-header-content .order-date {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #000;
  margin: 0;
  text-align: right;
  width: 30rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-status-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-status-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-status-header .order-tracking-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: flex-start;
}
@media (width > 768px) {
  .woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-status-header .order-tracking-link {
    justify-content: flex-end;
  }
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-status-header .order-tracking-link svg {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-status-header .order-tracking-link span {
  font-family: "Simpler", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-status-header .order-status-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-status-header .order-status-info .order-status-title {
  font-family: "Simpler", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #000;
  margin: 0;
  text-align: right;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-status-header .order-status-info .order-estimated-arrival {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
  margin: 0;
  text-align: right;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-progress-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  max-width: 62.4rem;
  margin-top: 1.6rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-progress-container .order-progress-bar {
  display: flex;
  align-items: center;
  height: 1.2rem;
  width: 100%;
  max-width: 60rem;
  position: relative;
  background: transparent;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-progress-container .order-progress-bar .progress-tick {
  width: 1px;
  height: 1.2rem;
  background: var(--red-main, #DB0032);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-progress-container .order-progress-bar .progress-segment {
  flex: 1 0 0;
  height: 0.6rem;
  background: transparent;
  border-top: 1px solid var(--red-main, #DB0032);
  border-bottom: 1px solid var(--red-main, #DB0032);
  min-width: 0;
  min-height: 1px;
  position: relative;
  z-index: 1;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-progress-container .order-progress-bar .progress-segment.filled {
  background: var(--red-main, #DB0032);
  border-top: none;
  border-bottom: none;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-progress-container .order-progress-labels {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  width: 100%;
  max-width: 60rem;
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.12;
  text-align: center;
  margin-top: 0.8rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-progress-container .order-progress-labels .progress-label {
  color: var(--black-50, #808080);
  text-align: center;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-progress-container .order-progress-labels .progress-label:nth-child(1) {
  grid-column: 1;
  text-align: left;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-progress-container .order-progress-labels .progress-label:nth-child(2) {
  grid-column: 3;
  text-align: center;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-progress-container .order-progress-labels .progress-label:nth-child(3) {
  grid-column: 5;
  text-align: center;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-progress-container .order-progress-labels .progress-label:nth-child(4) {
  grid-column: 7;
  text-align: right;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .order-status-section .order-progress-container .order-progress-labels .progress-label.active {
  color: var(--black-main, #333032);
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .customer-details-section,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .shipping-details-section,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .payment-details-section {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .customer-details-section .section-title,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .shipping-details-section .section-title,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .payment-details-section .section-title {
  font-family: "Simpler", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #000;
  margin: 0;
  text-align: right;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .customer-details-section .customer-details-content,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .shipping-details-section .customer-details-content,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .payment-details-section .customer-details-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--black---click, #0f0f0f);
  text-align: right;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .customer-details-section .customer-details-content p,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .shipping-details-section .customer-details-content p,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .payment-details-section .customer-details-content p {
  margin: 0;
  white-space: pre-wrap;
  font-size: 1.4rem;
  line-height: 2.8rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .customer-details-section .shipping-details-content,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .shipping-details-section .shipping-details-content,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .payment-details-section .shipping-details-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .customer-details-section .shipping-details-content .detail-row,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .shipping-details-section .shipping-details-content .detail-row,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .payment-details-section .shipping-details-content .detail-row {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  width: 100%;
  max-width: 35rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .customer-details-section .shipping-details-content .detail-row .detail-label,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .shipping-details-section .shipping-details-content .detail-row .detail-label,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .payment-details-section .shipping-details-content .detail-row .detail-label {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #000;
  text-align: right;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .customer-details-section .shipping-details-content .detail-row .detail-value,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .shipping-details-section .shipping-details-content .detail-row .detail-value,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .payment-details-section .shipping-details-content .detail-row .detail-value {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #000;
  text-align: right;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .customer-details-section .payment-details-content,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .shipping-details-section .payment-details-content,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .payment-details-section .payment-details-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .customer-details-section .payment-details-content p,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .shipping-details-section .payment-details-content p,
.woocommerce-order-details-page .order-details-content-wrapper .order-details-right .payment-details-section .payment-details-content p {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #000;
  text-align: right;
  margin: 0;
  width: 100%;
}

/**
 * Orders List Page Styles
 */
:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.orders-list-section {
  width: 100%;
}
.orders-list-section .orders-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.orders-list-section .order-item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 0;
}
.orders-list-section .order-item-wrapper:last-child .order-status-section {
  border-bottom: 1px solid var(--red-20, #F8CCD6);
}
.orders-list-section .order-status-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 2rem 3.6rem;
  gap: 1.6rem;
  border-top: 1px solid var(--red-20, #F8CCD6);
}
@media (width > 768px) {
  .orders-list-section .order-status-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 3.2rem;
    gap: 2rem;
  }
}
.orders-list-section .order-status-section .order-mobile-group-1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.4rem;
}
@media (width > 768px) {
  .orders-list-section .order-status-section .order-mobile-group-1 {
    display: none;
  }
}
.orders-list-section .order-status-section .order-mobile-group-2 {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 1.2rem;
}
@media (width > 768px) {
  .orders-list-section .order-status-section .order-mobile-group-2 {
    display: none;
  }
}
.orders-list-section .order-status-section .order-price-swatches-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex-shrink: 0;
  align-items: center;
}
.orders-list-section .order-status-section .order-header-info-desktop {
  display: none;
}
@media (width > 768px) {
  .orders-list-section .order-status-section .order-header-info-desktop {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    flex-shrink: 0;
    flex-grow: 0;
    gap: 0.8rem;
  }
}
.orders-list-section .order-status-section .order-header-info-desktop .order-number {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
}
.orders-list-section .order-status-section .order-header-info-desktop .order-date-text {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
  margin: 0;
}
.orders-list-section .order-status-section .order-price-info-desktop {
  display: none;
}
@media (width > 768px) {
  .orders-list-section .order-status-section .order-price-info-desktop {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    flex-shrink: 0;
    flex-grow: 0;
    gap: 0.4rem;
  }
}
.orders-list-section .order-status-section .order-price-info-desktop .order-price {
  font-family: "Simpler", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
  margin: 0;
}
.orders-list-section .order-status-section .order-price-info-desktop .order-samples-count {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
  margin: 0;
}
.orders-list-section .order-status-section .order-colors-desktop {
  display: none;
}
@media (width > 768px) {
  .orders-list-section .order-status-section .order-colors-desktop {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    opacity: 0.8;
    position: relative;
    height: 3.2rem;
    width: 8.533rem;
    flex-shrink: 0;
    flex-grow: 0;
    min-width: 3.2rem;
  }
  .orders-list-section .order-status-section .order-colors-desktop .color-swatch {
    position: absolute;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.533rem;
    border: 0.267rem solid white;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  .orders-list-section .order-status-section .order-colors-desktop .color-swatch:nth-child(1) {
    left: 0;
    z-index: 3;
  }
  .orders-list-section .order-status-section .order-colors-desktop .color-swatch:nth-child(2) {
    left: 2.667rem;
    z-index: 2;
  }
  .orders-list-section .order-status-section .order-colors-desktop .color-swatch:nth-child(3) {
    left: 5.334rem;
    z-index: 1;
  }
  .orders-list-section .order-status-section .order-colors-desktop--single {
    width: 3.2rem;
  }
  .orders-list-section .order-status-section .order-colors-desktop--double {
    width: 5.867rem;
  }
  .orders-list-section .order-status-section .order-colors-desktop--triple {
    width: 8.533rem;
  }
}
.orders-list-section .order-status-section .order-status-content-desktop {
  display: none;
}
@media (width > 768px) {
  .orders-list-section .order-status-section .order-status-content-desktop {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex-shrink: 1;
  }
}
.orders-list-section .order-status-section .order-status-content-desktop .order-status-title {
  font-family: "Simpler", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
  margin: 0 0 0.4rem 0;
}
.orders-list-section .order-status-section .order-status-content-desktop .order-estimated-arrival {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
  margin: 0 0 1.6rem 0;
}
.orders-list-section .order-status-section .order-status-content-desktop .order-progress-container {
  margin-top: 0;
}
.orders-list-section .order-status-section .order-details-link-desktop {
  display: none;
}
@media (width > 768px) {
  .orders-list-section .order-status-section .order-details-link-desktop {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--black-main, #333032);
    font-family: "Simpler", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.2;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    flex-grow: 0;
    align-self: flex-end;
  }
}
.orders-list-section .order-status-section .order-details-link-desktop:hover {
  opacity: 0.7;
}
.orders-list-section .order-status-section .order-details-link-desktop svg {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}
.orders-list-section .order-status-section .order-details-link-desktop path {
  stroke: var(--red-main, #db0032);
}
.orders-list-section .order-status-section .order-header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  width: 100%;
}
.orders-list-section .order-status-section .order-header-info .order-number {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
}
.orders-list-section .order-status-section .order-header-info .order-date-text {
  display: none;
}
.orders-list-section .order-status-section .order-status-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.orders-list-section .order-status-section .order-status-content .order-status-title {
  font-family: "Simpler", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
}
.orders-list-section .order-status-section .order-status-content .order-estimated-arrival {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
  margin: 0 0 1.6rem 0;
}
.orders-list-section .order-status-section .order-status-content .order-progress-container {
  margin-top: 0;
}
.orders-list-section .order-status-section .order-price-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: right;
  flex-shrink: 0;
  gap: 0.8rem;
}
@media (width > 768px) {
  .orders-list-section .order-status-section .order-price-info {
    gap: 0;
  }
}
.orders-list-section .order-status-section .order-price-info .order-price {
  font-family: "Simpler", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
  margin: 0;
}
.orders-list-section .order-status-section .order-price-info .order-samples-count {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--black-main, #333032);
  margin: 0;
}
@media (width > 768px) {
  .orders-list-section .order-status-section .order-price-info .order-samples-count::before {
    content: " - ";
    color: var(--black-main, #333032);
    margin: 0 0.4rem;
  }
}
.orders-list-section .order-status-section .order-colors {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  opacity: 0.8;
  position: relative;
  height: 4rem;
  flex-shrink: 0;
}
.orders-list-section .order-status-section .order-colors .color-swatch {
  position: absolute;
  width: 4rem;
  height: 4rem;
  border-radius: 0.533rem;
  border: 0.267rem solid white;
  box-sizing: border-box;
  flex-shrink: 0;
}
.orders-list-section .order-status-section .order-colors .color-swatch:nth-child(1) {
  left: 0;
  z-index: 3;
}
.orders-list-section .order-status-section .order-colors .color-swatch:nth-child(2) {
  left: 2.667rem;
  z-index: 2;
}
.orders-list-section .order-status-section .order-colors .color-swatch:nth-child(3) {
  left: 5.334rem;
  z-index: 1;
}
.orders-list-section .order-status-section .order-details-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--black-main, #333032);
  font-family: "Simpler", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}
.orders-list-section .order-status-section .order-details-link:hover {
  opacity: 0.7;
}
.orders-list-section .order-status-section .order-details-link svg {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}
.orders-list-section .order-status-section .order-details-link path {
  stroke: var(--red-main, #db0032);
}
.orders-list-section .no-orders-message {
  text-align: center;
  padding: 4rem 2rem;
}
.orders-list-section .no-orders-message p {
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--black-50, #808080);
  margin: 0;
}

/**
 * Order Progress Bar Component Styles
 */
:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.order-progress-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.order-progress-container--medium {
  max-width: 62.4rem;
  margin-top: 1.6rem;
}
.order-progress-container--small {
  max-width: 100%;
  margin-top: 0.8rem;
  gap: 0.4rem;
}
.order-progress-container--large {
  max-width: 62.4rem;
  margin-top: 1.6rem;
}

.order-progress-bar {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  background: transparent;
}
.order-progress-bar--medium {
  height: 1.2rem;
  max-width: 60rem;
}
.order-progress-bar--small {
  height: 0.8rem;
  max-width: 100%;
  align-items: center;
}
.order-progress-bar--large {
  height: 1.2rem;
  max-width: 60rem;
}
.order-progress-bar .progress-tick {
  width: 1px;
  height: 1.2rem;
  background: var(--red-main, #DB0032);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  display: block;
}
.order-progress-bar .progress-segment {
  flex: 1 0 0;
  height: 0.6rem;
  background: transparent;
  border-top: 1px solid var(--red-main, #DB0032);
  border-bottom: 1px solid var(--red-main, #DB0032);
  min-width: 0;
  position: relative;
  z-index: 1;
  display: block;
}
.order-progress-bar .progress-segment.filled {
  background: var(--red-main, #DB0032);
  border-top: none;
  border-bottom: none;
}
.order-progress-bar--small .progress-tick {
  height: 1.6rem;
  width: 1.5px;
  min-width: 1.5px;
  background: var(--red-main, #DB0032);
}
.order-progress-bar--small .progress-segment {
  height: 0.8rem;
  min-height: 0.4rem;
  border-top: 1px solid var(--red-main, #DB0032);
  border-bottom: 1px solid var(--red-main, #DB0032);
}
.order-progress-bar--small .progress-segment.filled {
  background: var(--red-main, #DB0032);
  border-top: none;
  border-bottom: none;
}
.order-progress-bar--medium .progress-tick {
  height: 1.2rem;
  width: 1px;
}
.order-progress-bar--medium .progress-segment {
  height: 0.6rem;
  min-height: 0.6rem;
}
.order-progress-bar--large .progress-tick {
  height: 1.2rem;
  width: 1px;
}
.order-progress-bar--large .progress-segment {
  height: 0.6rem;
  min-height: 0.6rem;
}

.order-progress-labels {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  width: 100%;
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  text-align: center;
}
.order-progress-labels--medium {
  max-width: 60rem;
  font-size: 1.2rem;
  line-height: 1.12;
  margin-top: 0.8rem;
}
.order-progress-labels--small {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 0.4rem;
}
.order-progress-labels--large {
  max-width: 60rem;
  font-size: 1.2rem;
  line-height: 1.12;
  margin-top: 0.8rem;
}
.order-progress-labels .progress-label {
  color: var(--black-50, #808080);
  text-align: center;
}
.order-progress-labels .progress-label:nth-child(1) {
  grid-column: 1;
  text-align: left;
}
.order-progress-labels .progress-label:nth-child(2) {
  grid-column: 3;
  text-align: center;
}
.order-progress-labels .progress-label:nth-child(3) {
  grid-column: 5;
  text-align: center;
}
.order-progress-labels .progress-label:nth-child(4) {
  grid-column: 7;
  text-align: right;
}
.order-progress-labels .progress-label.active {
  color: var(--black-main, #333032);
}

.order-progress-cancelled {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 1.6rem;
}
.order-progress-cancelled--small {
  margin-top: 0.8rem;
}
.order-progress-cancelled--large {
  margin-top: 1.6rem;
}
.order-progress-cancelled__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--red-main, #DB0032);
  border: 1px solid var(--red-main, #DB0032);
  border-radius: 0.4rem;
  padding: 0.4rem 1rem;
}
.order-progress-cancelled--small .order-progress-cancelled__badge {
  font-size: 1.2rem;
  padding: 0.3rem 0.8rem;
}

:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.error-404-page {
  background: var(--white-main);
}

/* container MUST be relative for borders */
.error-404-container {
  position: relative;
  overflow: hidden;
}

/* =========================
   Layout
========================= */
.error-404-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  position: relative;
  padding-bottom: 4.7rem;
}
@media (width > 768px) {
  .error-404-content {
    padding-top: var(--header-height);
  }
}

.error-404-main {
  position: relative;
  width: 100%;
}

/* =========================
   Image
========================= */
.error-404-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.error-404-image {
  position: relative;
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}
:lang(en) .error-404-image {
  transform: scaleX(-1);
}
@media (width > 768px) {
  .error-404-image {
    right: 10rem;
  }
  :lang(en) .error-404-image {
    right: auto;
    left: 10rem;
  }
}

/* =========================
   Text
========================= */
.error-404-bottom-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.error-404-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  position: relative;
  margin-top: -2rem;
  z-index: 2;
}
@media (width > 768px) {
  .error-404-content-wrapper {
    margin-top: 8.6rem;
  }
}

.error-404-number {
  color: var(--red-main);
  font-size: 3rem;
  font-weight: 900;
  padding: 0.8rem 1.6rem;
  border-radius: 1.2rem;
  line-height: 1;
}
@media (width > 768px) {
  .error-404-number {
    font-size: 4.4rem;
  }
}

.error-404-message {
  font-family: Simpler;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--black-main, #333032);
  margin: 0;
}

.error-404-button {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: var(--red-main, #db0032);
  color: var(--white-main, #FFF);
  text-decoration: none;
  font-family: Simpler;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1.6rem 3.2rem;
  border-radius: 0.8rem;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.error-404-button .error-404-button-icon {
  display: inline-flex;
  align-items: center;
  color: var(--white-main, #FFF);
}
[lang=en] .error-404-button .error-404-button-icon {
  transform: rotate(-90deg);
}
.error-404-button .error-404-button-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

/* =========================
   MOBILE BORDERS
========================= */
.error-404-container .border.left {
  left: 4rem;
}
@media (width > 768px) {
  .error-404-container .border.left {
    left: 10rem;
  }
}

@media (width > 768px) {
  .error-404-container .border.right {
    right: 10rem;
  }
}

.error-404-container .border.bottom {
  bottom: 4.5rem;
}

@media (width > 768px) {
  .error-404-container .border.top.one-three {
    top: 44.2%;
  }
}

@media (width > 768px) {
  .error-404-container .border.top.two-three {
    top: 80%;
  }
}

/* =========================
   DESKTOP 
========================= */
@media (width > 768px) {
  .error-404-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: right;
  }
  .error-404-text-wrapper {
    align-items: flex-start;
  }
}
