/* frontend-v2/helpers/toast.css */
.ToastContainer {
  font-size: 0px;
  overflow: hidden;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 4;
}
.ToastContainer .Toast {
  animation: fadeIn 0.4s ease 0s;
  box-sizing: border-box;
  font-size: 14px;
  padding: 10px;
  width: 100%;
  min-height: 44px;
  position: relative;
  z-index: 1;
}
.ToastContainer .Toast.is-primary {
  background-color: var(--primary-color);
  color: white;
}
.ToastContainer .Toast.is-error {
  background-color: var(--error-color);
  color: white;
}
.ToastContainer .Toast.is-expired {
  animation: fadeOut 0.4s ease 0s;
  animation-fill-mode: forwards;
  z-index: 0;
}
@keyframes fadeIn {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes fadeOut {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@media (max-width: 1179px) {
  .ToastContainer {
    top: 50px;
  }
}

/* frontend-v2/components/icon/Icon.css */
.rtl .RightChevron.Icon,
.rtl .Right.Icon,
.rtl .Right2x.Icon,
.rtl .Left.Icon,
.rtl .Left2x.Icon,
.rtl .LeftArrow.Icon,
.rtl .SpeedTruck.Icon,
.rtl .Truck.Icon {
  transform: scaleX(-1);
}

/* frontend-v2/components/dialog/Dialog.css */
.Dialog {
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.Dialog-content {
  background-color: white;
  box-sizing: border-box;
  max-height: 90%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 15px;
  position: relative;
}
.Dialog-closeButton.hidden {
  display: none;
}
.Dialog-closeButton {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}
.Dialog-closeButton.hidden {
  display: none;
}
.Dialog-closeButton .Cross.Icon {
  width: 20px;
  height: 20px;
}

/* frontend-v2/components/breadcrumb-list/BreadcrumbList.css */
.BreadcrumbList {
  padding: 8px 0;
  display: flex;
  position: relative;
}
.BreadcrumbList::before {
  content: "";
  background-color: #f4f4f4;
  margin-left: -50vw;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.BreadcrumbList li {
  display: flex;
  align-items: center;
}
.BreadcrumbList-breadcrumbLink {
  color: #9b9b9b;
  display: block;
  font-size: 12px;
}
.BreadcrumbList-breadcrumbLink.is-selected {
  color: #4a4a4a;
  font-weight: bold;
}
.BreadcrumbList-breadcrumbLink.is-selected:hover > span,
.BreadcrumbList-breadcrumbLink:not(.is-selected) > span {
  text-decoration: underline;
}
.BreadcrumbList .RightChevron.Icon {
  color: #7d7d7d;
  margin: 0px 8px;
  width: 8px;
  height: 8px;
}
@media (max-width: 1179px) {
  .BreadcrumbList {
    background-color: #2d2d2d;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0px 4px;
    width: 100%;
  }
  .BreadcrumbList::before {
    background-color: #2d2d2d;
  }
  .BreadcrumbList li .RightChevron.Icon {
    display: none;
  }
  .BreadcrumbList-breadcrumbLink {
    font-size: 14px;
    padding: 0px 11px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
    height: 48px;
  }
  .BreadcrumbList li:not(:last-child) .BreadcrumbList-breadcrumbLink::after {
    content: "/";
    text-decoration: none;
    position: absolute;
    right: 0px;
  }
  .BreadcrumbList-breadcrumbLink,
  .BreadcrumbList-breadcrumbLink.is-selected {
    color: white;
  }
}
[data-designer-theme=chanel] .BreadcrumbList {
  font-family: Arial, sans-serif;
}

/* frontend-v2/components/country-select/CountrySelect.css */
.CountrySelect {
  font-size: 10px;
  display: block;
  position: relative;
}
.CountrySelect-trigger {
  color: white;
  height: 40px;
  font-size: 10px;
  padding: 0 15px;
  display: flex;
  align-items: center;
}
.CountrySelect-trigger:focus {
  outline: none;
  text-decoration: underline;
}
.CountrySelect-trigger > picture {
  width: 16px;
  height: 16px;
}
.CountrySelect-trigger > span:first-of-type {
  margin: 0 12px;
}
.CountrySelect-menu {
  background-color: white;
  box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: max-content;
  min-width: 150px;
  z-index: 1;
}
.CountrySelect.is-expanded .CountrySelect-menu {
  display: block;
}
.CountrySelect-option {
  color: black;
  font-size: 10px;
  padding: 10px 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.CountrySelect-optionFlag {
  margin-right: 12px;
}
.CountrySelect-option.is-highlighted {
  background-color: rgb(0 0 0 / 10%);
}
.DownArrowIcon {
  width: 0;
  height: 0;
  border-color: #fff transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0;
}

/* frontend-v2/components/spinner/Spinner.css */
.Spinner {
  width: 20px;
  height: 20px;
}
.Spinner-svgRect {
  width: 1px;
  height: 5px;
  fill: black;
}

/* frontend-v2/components/tab-view/TabView.css */
.TabList h2 {
  font-size: inherit;
  font-weight: inherit;
}

/* frontend-v2/components/badge/Badge.css */
.Badge {
  background-color: white;
  border: 1px solid black;
  color: #2d2d2d;
  font-size: 10px;
  font-weight: bold;
  padding: 3px 5px 2px;
  text-transform: uppercase;
  display: inline-block;
}
@media (max-width: 1179px) {
  .Badge {
    padding: 3px 7px;
  }
}

/* frontend-v2/components/mini-carousel/MiniCarousel.css */
.MiniCarousel {
  display: flex;
  align-items: center;
}
.MiniCarousel:not(.is-scrollable) {
  justify-content: center;
}
.MiniCarousel-prevButton,
.MiniCarousel-nextButton {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.MiniCarousel-prevButton:disabled,
.MiniCarousel-nextButton:disabled {
  opacity: 0.2;
}
.MiniCarousel-prevButton .Icon,
.MiniCarousel-nextButton .Icon {
  width: 12px;
  height: 12px;
}
.MiniCarousel ul {
  display: flex;
  align-items: center;
  position: relative;
}
.MiniCarousel-list {
  overflow: hidden;
}
.MiniCarousel ul li:not(:last-child) {
  margin-right: 15px;
}

/* frontend-v2/components/style-color-list-item/StyleColorListItem.css */
.StyleColorListItem {
  position: relative;
  display: inline-block;
}
.StyleColorListItem-priorityLabel {
  background-color: #e7ded6;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #2e2e2e;
  padding: 4px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 1;
}
.StyleColorListItem-priorityLabel:hover .StyleColorListItem-priorityLabelText {
  width: 45px;
}
body.rtl .StyleColorListItem-priorityLabel:hover .StyleColorListItem-priorityLabelText {
  width: 25px;
}
.StyleColorListItem-priorityLabel .Icon.SpeedTruck {
  width: 14px;
  height: 14px;
}
.StyleColorListItem-priorityLabelText {
  box-sizing: border-box;
  font-size: 9px;
  font-weight: bold;
  margin-left: 4px;
  overflow: hidden;
  transition: width 0.4s 0s ease;
  width: 0px;
}
.StyleColorListItem-wishlistToggle {
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 48px;
  height: 48px;
  z-index: 1;
}
.StyleColorListItem-wishlistToggle:hover {
  transform: scale(1.2);
}
.StyleColorListItem-wishlistToggle .Icon {
  color: black;
  margin-bottom: 5px;
  width: 20px;
  height: 20px;
}
.StyleColorListItem-wishlistToggle span {
  line-height: 1;
}
.StyleColorListItem-wishlistToggle .HeartFilled.Icon {
  color: var(--primary-color);
}
.StyleColorListItem > a {
  color: black;
  font-size: 14px;
  text-decoration: none;
}
.StyleColorListItem a > span.StyleColorItem-imageContainer {
  background-color: var(--skeleton-color);
  overflow: visible;
  display: block;
  position: relative;
}
.StyleColorListItem-thumbnail,
.StyleColorListItem-hoverImage {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.StyleColorListItem-imageErr {
  background-color: var(--skeleton-color);
  box-sizing: border-box;
  padding: 0 20px;
  font-size: 11px;
  white-space: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.StyleColorListItem-thumbnail {
  display: block;
}
.StyleColorListItem-hoverImage {
  display: none;
}
.StyleColorListItem.is-hoverable:hover .StyleColorListItem-hoverImage {
  display: block;
}
.StyleColorListItem.is-hoverable:hover .StyleColorListItem-thumbnail {
  display: none;
}
.StyleColorListItem-contentContainer {
  padding-top: 20px;
  display: block;
  position: relative;
}
.StyleColorListItem-badgeContainer {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0px;
  top: -10px;
  width: 100%;
}
.StyleColorListItem-contentContainer > span {
  display: block;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.StyleColorListItem-contentContainer > span:not(:last-child) {
  margin-bottom: 5px;
}
.StyleColorListItem-designer {
  color: #2d2d2d;
  font-family: var(--secondary-font);
  font-weight: bold;
  text-transform: uppercase;
}
.StyleColorListItem-name {
  color: #2d2d2d;
}
.StyleColorListItem-price {
  color: var(--primary-color);
  margin-right: 5px;
}
.StyleColorListItem-slashedPrice {
  color: #2d2d2d;
  font-size: 12px;
  text-decoration: line-through;
  margin-right: 5px;
}
.StyleColorListItem-discountPercent {
  color: #2d2d2d;
  font-size: 11px;
}
.StyleColorListItem-swatches {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  line-height: 16px;
}
.StyleColorListItem-swatch {
  border: 1px solid var(--skeleton-color);
  border-radius: 8px;
  display: inline-block;
  width: 8px;
  height: 8px;
}
.StyleColorListItem-swatch:not(:last-child) {
  margin-right: 4px;
}
.StyleColorListItem-hiddenSwatchCount {
  font-size: 11px;
}
.StyleColorListItem-overlay {
  background-color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.StyleColorListItem-overlay .StyleColorListItem-swatches {
  display: none;
}
.StyleColorListItem.is-loading .Icon,
.StyleColorListItem.is-loading .StyleColorListItem-contentContainer * {
  background-color: var(--skeleton-color);
  border-color: transparent;
  color: var(--skeleton-color);
  stroke: var(--skeleton-color);
}
.MiniColorCarousel-link {
  border: 1px solid transparent;
  display: inline-block;
  width: 40px;
  height: 60px;
}
.MiniColorCarousel-link:hover {
  border-color: black;
}
.MiniColorCarousel-link > img {
  width: 40px;
  height: 60px;
}
.MiniSizeCarousel-button {
  color: #7a7a7a;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 32px;
}
@keyframes pop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  40% {
    transform: scale(1.5);
    opacity: 1;
  }
}
[data-designer-theme=chanel] .StyleColorListItem:not(.is-loading) .StyleColorListItem-designer,
[data-designer-theme=chanel] .StyleColorListItem:not(.is-loading) .StyleColorListItem-designerPlusSubClass,
[data-designer-theme=chanel] .StyleColorListItem:not(.is-loading) .StyleColorListItem-name,
[data-designer-theme=chanel] .StyleColorListItem:not(.is-loading) .StyleColorListItem-price {
  color: black;
  font-family: Arial, sans-serif;
}
[data-designer-theme=chanel] .StyleColorListItem-wishlistToggle {
  visibility: hidden;
}

/* frontend-v2/components/quick-search/QuickSearch.css */
.QuickSearch {
  max-width: 280px;
  overflow: visible;
}
.QuickSearch-textField,
.QuickSearch-resultBox {
  transition: width 0.2s 0s ease;
  width: 280px;
}
.QuickSearch.is-active .QuickSearch-textField,
.QuickSearch.is-active .QuickSearch-resultBox {
  width: 380px;
}
.QuickSearch-textField {
  border-bottom: 1px solid black;
  display: flex;
  align-items: center;
  height: 44px;
}
.QuickSearch-textField .Search.Icon {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}
.QuickSearch-textField form {
  flex-grow: 1;
}
.QuickSearch-textField form input[type=text] {
  border: none;
  font-size: 16px;
  outline: none;
  width: 100%;
}
.QuickSearch-closeButton .Icon {
  width: 16px;
  height: 16px;
}
.QuickSearch-cancelButton {
  display: none;
}
.QuickSearch-resultBox {
  background-color: white;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
  margin-top: 10px;
  padding: 2px;
  position: absolute;
  z-index: 3;
}
.QuickSearch-whiteCover {
  content: "";
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#departments-tab-list {
  display: flex;
}
[role=tab][id*=departments-tab] {
  flex: 1;
  background: #f2f2f2;
  height: 40px;
}
[role=tab][id*=departments-tab]:hover {
  text-decoration: underline;
}
[role=tab][id*=departments-tab][aria-selected=true] {
  background: white;
}
[role=tabpanel][id*=departments-tab-panel] {
  padding: 20px;
  position: relative;
}
[role=tabpanel][id*=departments-tab-panel] > .Search.Icon {
  display: block;
  margin: 15px auto 30px auto;
  width: 80px;
  height: 80px;
}
.QuickSearch-emptyText {
  text-align: center;
  margin: 0 0 40px 0;
}
.QuickSearch-resultBox h4 {
  color: #2d2d2d;
  font-size: 12px;
  text-transform: uppercase;
}
.QuickSearch-recentlySearchedHeader {
  margin-bottom: 20px;
}
.QuickSearch-clearAllButton {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: bold;
  height: min-content;
  text-decoration: underline;
}
.QuickSearch-deleteButton .Icon {
  width: 12px;
  height: 12px;
}
.QuickSearch-resultBox [role=tabpanel][id*=departments-tab-panel] > h4 {
  margin-bottom: 15px;
}
.QuickSearch-resultBox ul:not(:last-child) {
  margin-bottom: 20px;
}
.QuickSearch-suggestionList li {
  display: flex;
  align-items: center;
  min-height: 50px;
}
.QuickSearch-suggestionList li > .Icon {
  flex-shrink: 0;
  margin-right: 15px;
  width: 16px;
  height: 16px;
}
.QuickSearch-suggestionList li a {
  flex-grow: 1;
  border-bottom: 1px solid #e4e4e4;
  color: #2d2d2d;
  font-size: 14px;
  height: 100%;
  display: inline-block;
  padding: 5px 0;
}
.QuickSearch-suggestionList li a:hover {
  text-decoration: underline;
}
.QuickSearch-suggestionList li a.QuickSearch-cta,
a.QuickSearch-cta {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: bold;
}
.QuickSearch-productListHeader {
  margin-bottom: 20px;
}
.QuickSearch-productListHeader,
.QuickSearch-recentlySearchedHeader {
  display: flex;
  justify-content: space-between;
}
.QuickSearch-productListHeader a.QuickSearch-cta,
.QuickSearch-recentlySearchedHeader a.QuickSearch-cta {
  text-decoration: underline;
}
.QuickSearch .StyleColorListItem:not(:last-child) {
  margin-right: 20px;
}
.QuickSearch-productList {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}
@media (max-width: 1179px) {
  .QuickSearch {
    background-color: #f2f6f9;
    max-width: 100%;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .QuickSearch.is-active {
    visibility: visible;
  }
  .QuickSearch-textField {
    background-color: white;
    border-bottom: none;
    box-sizing: border-box;
    padding: 0 20px;
    width: 100%;
  }
  .QuickSearch.is-active .QuickSearch-textField,
  .QuickSearch.is-active .QuickSearch-resultBox {
    width: 100%;
  }
  .QuickSearch-textField .Search.Icon {
    width: 18px;
    height: 18px;
  }
  .QuickSearch-closeButton {
    height: 14px;
  }
  .QuickSearch-closeButton .Icon {
    color: #7a7a7a;
    width: 14px;
    height: 14px;
  }
  .QuickSearch-cancelButton {
    border-left: 1px solid #7a7a7a;
    font-size: 12px;
    margin-left: 15px;
    padding-left: 15px;
    display: flex;
    align-items: center;
    height: 14px;
  }
  .QuickSearch-resultBox {
    box-shadow: none;
    margin: 0;
    width: 100%;
    height: calc(100% - 44px);
  }
  .QuickSearch-resultBox {
    background-color: transparent;
    padding: 0;
  }
  .QuickSearch-resultBox [role=tabpanel][id*=departments-tab-panel] > h4 {
    background-color: white;
    padding: 20px;
    margin: 0;
  }
  #departments-tab-list {
    box-shadow: 0 5px 8px 0 rgb(0 0 0 / 5%);
    position: relative;
    z-index: 1;
  }
  [role=tab][id*=departments-tab] {
    background-color: white;
    outline: none;
  }
  [role=tab][id*=departments-tab][aria-selected=true] {
    border-bottom: 2px solid black;
  }
  [role=tabpanel][id*=departments-tab-panel] {
    padding: 0px;
    max-height: calc(100% - 40px);
    overflow-y: auto;
  }
  .QuickSearch-recentlySearchedHeader {
    background-color: white;
    margin-bottom: 0;
    padding: 20px;
  }
  .QuickSearch-resultBox ul {
    padding: 0 20px;
  }
  .QuickSearch-resultBox ul:last-child {
    margin-bottom: 100px;
  }
  .QuickSearch-suggestionList {
    background-color: white;
  }
  .QuickSearch-productListHeader {
    margin-bottom: 0;
    padding: 20px;
  }
  .QuickSearch-productList .StyleColorListItem {
    background-color: white;
  }
  .QuickSearch-productList .StyleColorListItem a > span:not(:first-child) {
    box-sizing: border-box;
    padding: 0 20px;
  }
}

/* frontend-v2/components/tooltip/Tooltip.css */
.Tooltip {
  position: relative;
  font-size: 0;
}
.Tooltip-content {
  background-color: white;
  border: 1px solid #9b9b9b;
  color: black;
  font-size: 12px;
  padding: 10px;
  transform: translateX(calc(-50% + 10px));
  white-space: pre;
  position: absolute;
  left: 0px;
  top: 35px;
  z-index: 2;
}
.Tooltip-content:after,
.Tooltip-content:before {
  content: "";
  border: solid;
  margin-left: -8px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 0;
  height: 0;
}
.Tooltip-content:after {
  border-color: transparent transparent #fff transparent;
  border-width: 6px;
  left: calc(50% + 2px);
}
.Tooltip-content:before {
  border-color: transparent transparent #9b9b9b transparent;
  border-width: 8px;
}
.Tooltip-trigger:hover {
  outline: none;
}

/* frontend-v2/components/button/Button.css */
.Button {
  border-radius: 2px;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 44px;
}
.Button.primary {
  background-color: var(--primary-color);
  color: white;
}
.Button.secondary {
  background-color: #2d2d2d;
  color: white;
}
.Button.tertiary {
  background-color: white;
  border: 1px solid black;
  color: black;
}
.Button.priority {
  background-color: #e7ded6;
  color: #2d2d2d;
}
.Button.is-blocked {
  background-color: #dcdcdc;
  border: none;
  color: #9b9b9b;
}
.Button.is-loading::after {
  content: "";
  position: absolute;
  background-color: black;
  opacity: 0.08;
  top: 0;
  left: 0;
  bottom: 0;
  animation-name: progress;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.Button.secondary.is-loading::after {
  background-color: white;
}
.Button:not(.is-loading)[disabled] {
  opacity: 0.5;
}
@keyframes progress {
  0% {
    width: 0;
  }
  5% {
    width: 20%;
  }
  10% {
    width: 40%;
  }
  15% {
    width: 60%;
  }
  20% {
    width: 80%;
  }
  25% {
    width: 82%;
  }
  30% {
    width: 84%;
  }
  35% {
    width: 86%;
  }
  60% {
    width: 88%;
  }
  65% {
    width: 90%;
  }
  70% {
    width: 92%;
  }
  75% {
    width: 94%;
  }
  80% {
    width: 96%;
  }
  85% {
    width: 97%;
  }
  95% {
    width: 98%;
  }
  100% {
    width: 100%;
  }
}

/* frontend-v2/components/sign-in-form/SignInForm.css */
.SignInForm {
  text-align: center;
}
.SignInForm-title {
  font-family: var(--secondary-font);
  font-size: 28px;
  font-weight: normal;
}
.SignInForm-title + p {
  font-size: 16px;
  margin: 0;
}
.SignInForm-continueWithAppleButton {
  margin: 15px 0 10px 0;
}
.SignInForm-continueWithAmberButton {
  margin: 0 0 15px 0;
}
.SignInForm-continueWithAppleButton .Apple.Icon,
.SignInForm-continueWithAmberButton .Amber.Icon {
  position: absolute;
}
.SignInForm-continueWithAppleButton .Apple.Icon {
  left: 15px;
  width: 18px;
  height: 18px;
}
.SignInForm-continueWithAmberButton .Amber.Icon {
  color: transparent;
  left: 15px;
  width: 55px;
  height: 35px;
}
.SignInForm-orLoginWithYourEmailText {
  font-size: 11px;
  font-weight: bold;
  margin: 0 0 15px 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.SignInForm-orLoginWithYourEmailText::before,
.SignInForm-orLoginWithYourEmailText::after {
  content: "";
  background-color: #dcdcdc;
  width: 100%;
  height: 1px;
}
.SignInForm-orLoginWithYourEmailText::before {
  margin-right: 15px;
}
.SignInForm-orLoginWithYourEmailText::after {
  margin-left: 15px;
}
.SignInForm form {
  margin-bottom: 15px;
}
.SignInForm form label {
  color: #4a4a4a;
  display: block;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}
.SignInForm form label input {
  appearance: none;
  border: 1px solid #bbb;
  box-sizing: border-box;
  display: block;
  margin-top: 5px;
  padding: 0 15px;
  width: 100%;
  height: 40px;
}
.SignInForm-errorText {
  color: var(--error-color);
  font-size: 11px;
  margin: 0 0 10px 0;
  text-align: left;
  display: block;
}
.SignInForm form label.is-red {
  color: var(--error-color);
}
.SignInForm form label.is-red input {
  border-color: var(--error-color);
}
.SignInForm-forgotPasswordButton {
  color: #4a4a4a;
  font-size: 11px;
  font-weight: bold;
  text-decoration: underline;
}
.SignInForm hr {
  border: none;
  border-top: 1px solid #dcdcdc;
  margin: 15px -15px;
}
.SignInForm-whyCreateAccountText {
  font-size: 12px;
  margin: 0 0 10px 0;
}
.SignInForm-createAccountLink {
  background-color: #2d2d2d;
  color: white;
}

/* frontend-v2/components/password-reset-form/PasswordResetForm.css */
.PasswordResetForm h4 {
  font-family: var(--secondary-font);
  font-size: 30px;
  font-weight: normal;
  margin: 0 0 20px 0;
  text-align: center;
}
.PasswordResetForm p {
  font-size: 12px;
  margin: 0 0 20px 0;
  white-space: pre-wrap;
}
.PasswordResetForm form label {
  color: #4a4a4a;
  display: block;
  font-size: 11px;
  font-weight: normal;
  margin-bottom: 10px;
  text-align: left;
}
.PasswordResetForm form label.is-red {
  color: var(--error-color);
}
.PasswordResetForm form label input {
  appearance: none;
  border: 1px solid #bbb;
  box-sizing: border-box;
  display: block;
  margin-top: 5px;
  padding: 0 15px;
  width: 100%;
  height: 40px;
}
.PasswordResetForm form label.is-red input {
  border-color: var(--error-color);
}
.PasswordResetForm-errorText {
  color: var(--error-color);
  font-size: 11px;
  margin: 0 0 10px 0;
  text-align: left;
  display: block;
}
.PasswordResetForm-errorText {
  color: var(--error-color);
  font-size: 11px;
  margin: 0 0 10px 0;
  text-align: left;
  display: block;
}
.PasswordResetForm-successText {
  border: 1px solid #69bc63;
  font-weight: bold;
  padding: 5px 10px;
}
.PasswordResetForm-tickIconContainer {
  background-color: #69bc63;
  border-radius: 20px;
  color: white;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.PasswordResetForm-successText .Tick.Icon {
  width: 10px;
  height: 10px;
}

/* frontend-v2/components/sign-in-dialog/SignInDialog.css */
.SignInDialog {
  color: #2d2d2d;
}
.SignInDialog .Dialog-content {
  width: 380px;
}
.SignInDialog-backButton {
  position: absolute;
}
.SignInDialog-backButton .LeftArrow.Icon {
  width: 26px;
  height: 19px;
}

/* frontend-v2/components/mini-cart/MiniCart.css */
.MiniCart-title {
  border-bottom: 1px solid #e4e4e4;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
  color: #2d2d2d;
  font-size: 14px;
  margin: 0 -10px 0 -10px;
  padding: 0 10px 10px 10px;
}
.MiniCart-itemList {
  display: flex;
  flex-direction: column;
  max-height: 300px;
  padding: 15px 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.MiniCartItem a {
  display: grid;
  grid-template-columns: 63px 1fr;
  grid-column-gap: 10px;
}
.MiniCartItem:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.MiniCartItem figure {
  grid-row: span 1000;
  margin: 0;
}
.MiniCartItem-thumbnail {
  width: 63px;
  height: 93px;
}
.MiniCartItem-designerCategoryName {
  font-family: var(--secondary-font);
  font-size: 12px;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}
.MiniCartItem-badge {
  border: 1px solid rgb(45, 45, 45);
  box-sizing: border-box;
  color: rgb(45, 45, 45);
  display: inline-block;
  max-width: 100%;
  padding: 5px 5px 3px;
  font-family: "";
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.MiniCartItem-name {
  font-size: 12px;
  font-weight: normal;
  margin: 0 0 10px 0;
}
.MiniCartItem dl {
  margin: 0;
  padding: 0;
}
.MiniCartItem dl div {
  margin-bottom: 2px;
}
.MiniCartItem-propertyName,
.MiniCartItem-propertyValue {
  color: #7a7a7a;
  display: inline-block;
  font-size: 12px;
}
.MiniCartItem-propertyName {
  margin-right: 5px;
}
.MiniCartItem-propertyName:after {
  content: ": ";
}
.MiniCartItem-propertyValue {
  font-weight: bold;
  margin: 0;
}
.MiniCartItem-price {
  color: var(--primary-color);
}
.MiniCartItem-slashedPrice {
  color: #9b9b9b;
  margin-right: 5px;
  text-decoration: line-through;
}
.MiniCartItem-slashedPrice + .MiniCartItem-price {
  color: var(--error-color);
}
.MiniCartItem-stockUrgencyText {
  color: var(--error-color);
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  display: flex;
  align-items: center;
}
.MiniCartItem-stockUrgencyText .Clock.Icon {
  stroke: var(--error-color);
  margin-right: 4px;
  width: 12px;
  height: 12px;
}
.MiniCart-total {
  box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.04);
  margin: 0 -10px 10px -10px;
  padding: 10px 10px 0 10px;
  display: flex;
  justify-content: space-between;
}
.MiniCart-totalText {
  font-size: 16px;
  margin: 0 5px 0 0;
}
.MiniCart-inclVATText {
  color: #7b7b7b;
  font-size: 12px;
}
.MiniCart-totalDue {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.MiniCartItem div {
  display: grid;
  grid-template-columns: 63px 1fr;
  grid-column-gap: 10px;
}

/* frontend-v2/components/header/Header.css */
.Header {
  margin-bottom: 15px;
}
.Header-top {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}
.Header-top::before {
  content: "";
  background-color: #2d2d2d;
  margin-left: -50vw;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.GenderNav {
  flex-grow: 1;
}
.GenderNav-link {
  color: white;
  font-size: 13px;
  font-family: var(--secondary-font);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 80px;
}
.GenderNav-link.is-selected {
  background-color: white;
  color: #2d2d2d;
}
.GenderNav-link:hover {
  text-decoration: underline;
}
.Header-countryLanguageSeparator {
  background-color: white;
  margin: 0 15px 0 0;
  width: 1px;
  height: 15px;
}
.Header-changeLanguageLink {
  color: white;
  font-size: 10px;
  text-decoration: none;
}
.Header-changeLanguageLink:hover {
  text-decoration: underline;
}
.Header-middle {
  display: grid;
  grid-template-columns: auto 1fr repeat(3, auto);
  grid-gap: 15px;
}
.Header-logoLink {
  color: black;
  font-family: var(--secondary-font);
  font-size: 9px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  left: 50%;
  width: 186px;
  transform: translateX(-50%);
  letter-spacing: .85px;
}
.Header-logoLink .OunassLogo.Icon,
.Header-logoLink .OunassLogoAr.Icon {
  display: block;
  margin-bottom: 16px;
  width: 186px;
  height: 36px;
}
.Header-middle {
  margin-bottom: 15px;
}
.Header-middle .QuickSearch,
.Header-middle .Tooltip {
  position: relative;
  top: 10px;
}
.Header-middle .Tooltip-trigger {
  color: #4a4a4a;
  font-size: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.Header-middle .Tooltip-trigger:focus {
  outline: none;
  text-decoration: underline;
}
.Header-middle .Tooltip-trigger .Icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}
.Header-middle .Tooltip-content {
  color: black;
  transform: translateX(calc(-50% + 8px));
  white-space: normal;
  width: 280px;
}
.CustomerTooltip .MoreInfo.Icon,
.CustomerTooltip .Package.Icon {
  width: 16px;
  height: 16px;
}
.CustomerTooltip .RightChevron.Icon {
  width: 12px;
  height: 12px;
}
#customer-tooltip-content {
  padding: 0;
}
.CustomerTooltip-guestActions {
  padding: 20px;
}
.CustomerTooltip-loginButton,
.CustomerTooltip-registerLink,
#cart-tooltip-content a,
#wishlist-tooltip-content a {
  font-size: 14px;
}
.CustomerTooltip-whyCreateAccountText {
  white-space: pre;
}
#customer-tooltip-content nav a {
  border-top: 1px solid #f0f0f0;
  color: black;
  font-size: 12px;
  padding: 10px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.CustomerTooltip.is-loggedIn .Tooltip-content nav a:first-child {
  border-top: none;
}
.CustomerTooltip.is-loggedIn .Tooltip-content nav a {
  font-weight: bold;
}
#customer-tooltip-content nav a:hover {
  background-color: #f0f0f0;
}
#customer-tooltip-content nav a .Icon:first-child {
  margin-right: 10px;
}
#customer-tooltip-content nav a span {
  flex-grow: 1;
}
#wishlist-tooltip-trigger,
#cart-tooltip-trigger {
  color: black;
}
.WishlistTooltip.is-empty #wishlist-tooltip-trigger > span,
.CartTooltip.is-empty #cart-tooltip-trigger > span {
  color: black;
}
#wishlist-tooltip-trigger > span,
#cart-tooltip-trigger > span {
  color: var(--primary-color);
}
#wishlist-tooltip-content p:last-of-type {
  font-size: 12px;
  margin: 0 20px 20px;
}
#wishlist-tooltip-content,
.CartTooltip.is-empty .Tooltip-content {
  padding: 20px;
  text-align: center;
}
#wishlist-tooltip-content .Heart.Icon,
.CartTooltip.is-empty .Tooltip-content .Bag.Icon {
  width: 36px;
  height: 42px;
}
#wishlist-tooltip-content p:first-of-type,
.CartTooltip.is-empty .Tooltip-content p:first-of-type {
  font-size: 14px;
  font-weight: bold;
  margin: 25px;
}
#wishlist-tooltip-content p:last-of-type {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 28px;
}
#wishlist-tooltip-content .HeartIcon-large .HeartEmpty {
  height: 36px;
  width: 36px;
  margin-top: 20px;
}
#wishlist-tooltip-content .HeartIcon-small {
  vertical-align: middle;
}
#wishlist-tooltip-content .HeartIcon-small .HeartEmpty {
  margin-left: 4px;
  height: 11px;
  width: 11px;
}
#cart-tooltip-content {
  transform: translateX(calc(-70% + 8px));
}
#cart-tooltip-content::before {
  left: 70%;
}
#cart-tooltip-content::after {
  left: calc(70% + 2px);
}
#cart-tooltip-content {
  box-sizing: border-box;
  width: 380px;
}

/* frontend-v2/components/need-help-mobile/NeedHelpMobile.css */
.NeedHelpMobile header {
  display: flex;
  align-items: center;
}
.NeedHelpMobile .Icon {
  width: 20px;
  height: 20px;
}
.NeedHelpMobile header .WhatsApp.Icon {
  margin-right: 5px;
  width: 22px;
  height: 22px;
}
.NeedHelpMobile header h3 {
  font-size: 22px;
  font-family: var(--secondary-font);
  font-weight: normal;
}
.NeedHelpMobile p {
  font-size: 14px;
  margin: 15px 0;
}
.NeedHelpMobile ul {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.NeedHelpMobile ul li {
  flex-basis: 33.33%;
}
.NeedHelpMobile ul li:not(:last-child) {
  margin-right: 20px;
}
.NeedHelpMobile ul li a {
  border: 1px solid black;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.NeedHelpMobile nav a {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

/* frontend-v2/components/lazy-image/LazyImage.css */
.LazyImage {
  background-color: var(--skeleton-color);
}
.LazyImage > div {
  position: relative;
}
.LazyImage > div > p,
.LazyImage > div > img {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
}
.LazyImage > div > p {
  box-sizing: border-box;
  font-family: var(--primary-font);
  font-size: 12px;
  margin: 0;
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* frontend-v2/components/burger-menu/BurgerMenu.css */
.BurgerMenu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  box-shadow: 10vh 0 0 0 rgb(0 0 0 / 40%);
  display: grid;
  grid-template-columns: auto 1fr;
}
.BurgerMenu.isBurgerMenuInvisible {
  visibility: hidden;
}
.BurgerMenu-shadow {
  background-color: rgba(0, 0, 0, .4);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 200px;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.BurgerMenu-content {
  background-color: #f2f6f9;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 200px;
  width: 85vw;
  height: 100%;
  z-index: 1;
  transform: translateX(-100%);
  transition: all .35s;
}
.BurgerMenu.open .BurgerMenu-content {
  transform: translateX(0);
}
.BurgerMenu .CloseButton {
  position: fixed;
  right: 15px;
  top: 30px;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  font-size: 15px;
  background: #fff;
  line-height: 35px;
}
.BurgerMenu .CloseButton .Icon {
  height: 14px;
  width: 14px;
}
.BurgerMenu .Icon {
  width: 18px;
  height: 18px;
}
.BurgerMenu .SiteLink {
  background-color: white;
  font-size: 13px;
  margin-bottom: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
}
.BurgerMenu .SiteLink .Icon:first-of-type {
  margin-right: 15px;
}
.BurgerMenu .SiteLink > div {
  flex-grow: 1;
}
.BurgerMenu .SiteLink h5 {
  font-size: 13px;
  margin-bottom: 5px;
}
.BurgerMenu .SiteLink.LoginLink {
  color: #2d2d2d;
}
.BurgerMenu .SiteLink.LoginLink .Person.Icon {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}
.BurgerMenu .SiteLink.LoginLink h5 {
  margin-bottom: 0px;
}
.BurgerMenu .SiteLink > div > div {
  font-size: 11px;
}
.BurgerMenu .Customer {
  box-sizing: border-box;
  background-color: #fff;
  margin-bottom: 15px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 90px;
}
.BurgerMenu .Customer i {
  background: #000;
  box-sizing: border-box;
  border-radius: 50%;
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 28px;
  font-style: normal;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}
.BurgerMenu .Customer > div {
  flex-grow: 1;
}
.BurgerMenu .Customer-name {
  color: #2d2d2d;
  font-family: var(--secondary-font);
  font-size: 22px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 5px;
}
.BurgerMenu .Customer-email {
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.BurgerMenu .DepartmentTabs {
  background-color: white;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.BurgerMenu .DepartmentTabs.is-loading::after {
  content: "";
  width: 85vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, .6);
  display: block;
  position: absolute;
  z-index: 1;
  top: 50px;
}
.BurgerMenu .DepartmentLink {
  border-bottom: 2px solid transparent;
  flex-grow: 1;
  font-size: 14px;
  padding: 15px 0;
  text-align: center;
}
.BurgerMenu .DepartmentLink.is-selected {
  border-bottom: 2px solid black;
  font-weight: bold;
}
.BurgerMenu .L1Category {
  text-transform: capitalize;
  height: 100px;
}
.BurgerMenu .L1Category,
.BurgerMenu .L2Category {
  background-color: white;
  box-sizing: border-box;
  color: #2d2d2d;
  font-family: var(--secondary-font);
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  width: 100%;
}
.BurgerMenu .L1Category .RightChevron.Icon,
.BurgerMenu .L2Category .DownChevron.Icon {
  color: #2d2d2d;
  margin-left: 7px;
  width: 10px;
  height: 10px;
}
.BurgerMenu details[open] .L2Category .DownChevron.Icon {
  rotate: -180deg;
}
.BurgerMenu .L2Category .LazyImage {
  margin-left: auto;
  height: 100px;
  overflow: hidden;
}
.BurgerMenu .L3Nav {
  margin-bottom: 3px;
}
.BurgerMenu details {
  max-height: 102px;
  transition: max-height 0.5s;
  overflow-y: auto;
  position: relative;
}
.BurgerMenu details[open] {
  max-height: 369px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.05)) no-repeat 0 336px / 100% 10%;
}
.BurgerMenu-loadingMegaNav {
  background-color: white;
  padding: 15px;
  text-align: center;
}
.BurgerMenu .L3Link {
  font-size: 13px;
  padding: 15px;
  display: block;
}
.BurgerMenu details summary {
  height: 102px;
  position: sticky;
  top: 0;
}
.BurgerMenu .CountryToggle {
  background-color: white;
  margin-bottom: 15px;
  padding: 15px;
  text-align: left;
  display: flex;
  align-items: center;
}
.BurgerMenu .CountryToggle img {
  margin-right: 15px;
}
.BurgerMenu .CountryToggle > span {
  flex-grow: 1;
  font-size: 13px;
}
.BurgerMenu .CountryToggle > span::first-line {
  font-weight: bold;
  line-height: 23px;
}
.BurgerMenu details[open] .CountryToggle > .Icon.DownChevron {
  rotate: -180deg;
}
.BurgerMenu .CountryNav {
  border-top: 1px solid #e4e4e4;
  margin-top: -15px;
  margin-bottom: 15px;
}
.BurgerMenu .CountryLink {
  background-color: white;
  font-size: 13px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  position: relative;
}
.BurgerMenu .CountryLink-flag {
  margin-right: 15px;
}
.BurgerMenu .CountryLink-name {
  flex-grow: 1;
  padding: 20px 0px;
  position: relative;
}
.BurgerMenu .CountryLink .Tick.Icon {
  background-color: var(--primary-color);
  border-radius: 18px;
  box-sizing: border-box;
  color: white;
  padding: 4px;
  position: absolute;
  right: 15px;
}
.BurgerMenu .CountryLink:not(:last-child) .CountryLink-name {
  border-bottom: 1px solid #e4e4e4;
}
.BurgerMenu .CountryLink-name .Tick.Icon {
  background-color: var(--primary-color);
  border-radius: 18px;
  box-sizing: border-box;
  color: white;
  padding: 4px;
  position: absolute;
  right: 15px;
}
.BurgerMenu .NeedHelpMobile {
  background-color: white;
  box-sizing: border-box;
  padding: 15px;
}
.BurgerMenu .NeedHelpMobile header .WhatsApp.Icon {
  margin-right: 15px;
  width: 18px;
  height: 18px;
}
.BurgerMenu .NeedHelpMobile h3 {
  font-size: 13px;
  font-family: var(--primary-font);
  font-weight: bold;
}
.BurgerMenu .NeedHelpMobile p {
  font-size: 13px;
  margin-top: 5px;
  margin-left: 33px;
}
.BurgerMenu .NeedHelpMobile nav a {
  font-weight: bold;
}

/* frontend-v2/components/header-mobile/HeaderMobile.css */
.HeaderMobile {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 10px #00000008;
  display: flex;
  align-items: center;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 50px;
  z-index: 2;
}
.HeaderMobile > a > .Icon,
.HeaderMobile > button > .Icon {
  width: 20px;
  height: 20px;
}
.HeaderMobile .Icon.Burger {
  width: 26px;
  height: 26px;
}
.HeaderMobile-homeLink {
  flex-grow: 1;
  text-align: center;
}
.HeaderMobile .OunassLogo.Icon {
  width: 103px;
  height: 20px;
}
.HeaderMobile .OunassLogoAr.Icon {
  width: 87px;
  height: 30px;
}
.HeaderMobile-prevPageLink,
.HeaderMobile-searchButton,
.HeaderMobile-burgerButton,
.HeaderMobile-wishlistLink,
.HeaderMobile-cartLink {
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 44px;
  height: 44px;
}
.HeaderMobile-burgerButton {
  width: 52px;
}
.HeaderMobile-badge {
  border-radius: 40px;
  background: #dd3434;
  color: #fff;
  font-family: var(--primary-en-font);
  font-size: 8px;
  font-weight: bold;
  padding: 2px 5px;
  position: absolute;
  top: 4px;
  right: 4px;
}

/* frontend-v2/contentful/flyout-banner/FlyoutBanner.css */
.FlyoutBanner {
  margin-left: auto;
  width: 420px;
}
.FlyoutBanner > h4 {
  font-size: 11px;
  margin: 0 0 25px 0;
  text-transform: uppercase;
}
.FlyoutBanner > a {
  color: black;
}
.FlyoutBanner-description {
  font-size: 12px;
  margin: 6px 0 12px 0;
}
.FlyoutBanner-cta {
  background-color: #2d2d2d;
  border-radius: 2px;
  color: white;
  cursor: pointer;
  padding: 0 20px;
  transition: background-color 0.4s 0s ease;
  display: inline-flex;
  align-items: center;
  height: 44px;
}
.FlyoutBanner-cta:hover {
  background-color: #4a4a4a;
}

/* frontend-v2/components/mega-nav/MegaNav.css */
.MegaNav {
  line-height: 16px;
  padding: 15px 0;
}
[role=menubar] {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
[role=menubar]::after,
[role=menubar]::before {
  content: "";
  flex-grow: 2;
}
[role=menubar] > div {
  flex-grow: 1;
  text-align: center;
}
[role=menuitem][aria-haspopup=true] {
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
  color: black;
  font-family: var(--secondary-font);
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
}
[role=menuitem][aria-haspopup=true][aria-expanded=true],
[role=menuitem][aria-haspopup=true].is-selected {
  border-color: var(--primary-color);
  text-shadow: 0 0 0.65px;
  outline: none;
}
[role=menu] {
  background-color: white;
  box-sizing: border-box;
  opacity: 0;
  padding-top: 20px;
  text-align: left;
  visibility: hidden;
  display: flex;
  align-items: flex-start;
  position: absolute;
  left: 0px;
  width: 100%;
  height: 0px;
  z-index: 2;
}
[role=menu].is-delayed {
  transition: all 0.1s linear;
  transition-delay: 0.3s;
}
[role=menu].is-open {
  opacity: 1;
  visibility: visible;
  height: 450px;
}
[role=menu]::before {
  content: "";
  background-color: white;
  margin-left: -50vw;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
[role=menu]:after {
  background-color: rgba(0, 0, 0, 0.3);
  margin-left: -50vw;
  pointer-events: none;
  transition: opacity .1s linear 0s;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100vw;
  height: 100vh;
}
[role=menu] > div:not(.FlyoutBanner) {
  flex-basis: 14%;
}
[role=menu] [role=menuitem],
.MegaNav-skeleton {
  color: black;
  font-size: 13px;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 5px 0px;
}
[role=menu] .MegaNav-column > strong {
  font-size: 11px;
  text-transform: uppercase;
}
[role=menu] [role=menuitem]:focus,
[role=menu] [role=menuitem]:hover {
  outline: none;
  text-decoration: underline;
}
.MegaNav-banner {
  margin-left: auto;
}
.MegaNav-banner > h4 {
  font-size: 11px;
  margin: 0 0 25px 0;
  padding: 5px 0;
  text-transform: uppercase;
}
.MegaNav-banner > a {
  color: black;
}
.MegaNav-banner > a > img {
  width: 480px;
  height: 260px;
}
.MegaNav-banner > a > p {
  font-size: 12px;
  margin: 0 0 12px 0;
}
.MegaNav-banner > a > span {
  background-color: #2d2d2d;
  border-radius: 2px;
  color: white;
  cursor: pointer;
  padding: 0 20px;
  transition: background-color 0.4s 0s ease;
  display: inline-flex;
  align-items: center;
  height: 44px;
}
.MegaNav-banner > a > span:hover {
  background-color: #4a4a4a;
}
.MegaNav-skeleton {
  width: 210px;
  height: 15px;
  margin-bottom: 15px;
  background-color: #f4f4f4;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, 0) 60%) #f4f4f4;
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 1s loading ease-in-out infinite;
}
@keyframes loading {
  to {
    background-position-x: -20%;
  }
}

/* frontend-v2/components/follow-us/FollowUs.css */
.FollowUs {
  margin-bottom: 24px;
}
.FollowUs h4 {
  font-size: 11px;
  text-transform: uppercase;
}
.FollowUs-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.FollowUs-links a {
  margin-left: 40px;
  opacity: 0.8;
}
.FollowUs-links a:first-child {
  margin-left: 0;
}
.FollowUs-links a:hover {
  opacity: 1;
}
.FollowUs-links svg {
  color: white;
  width: 36px;
  height: 30px;
}
@media (max-width: 1179px) {
  .FollowUs h4 {
    font-size: 13px;
    margin: 0 0 15px;
  }
}
@media (min-width: 1180px) {
  .FollowUs {
    margin-right: 37px;
  }
  .FollowUs h4 {
    margin: 0 0 25px;
  }
  .FollowUs-links {
    justify-content: flex-start;
  }
  .FollowUs-links svg {
    width: 24px;
    height: 20px;
  }
}

/* frontend-v2/components/ounass-apps/OunassApps.css */
.OunassApps {
  margin-top: 27px;
}
.OunassApps h4 {
  text-transform: uppercase;
}
.OunassApps-links {
  display: flex;
  justify-content: center;
}
.OunassApps-links img,
.OunassApps-links svg {
  display: block;
}
.OunassApps-links .AppleAppStore,
.OunassApps-links .AppleAppStoreAr {
  margin-right: 5px;
  width: 102px;
  height: 34px;
}
.OunassApps-links .GooglePlayStoreIcon {
  width: 116px;
  height: 34px;
  margin-right: 5px;
}
.OunassApps-links .AppDownloadIcon {
  display: flex;
}
.FooterMobile .OunassApps-links {
  margin: 0 auto;
}
@media (max-width: 1179px) {
  .OunassApps {
    margin-bottom: 25px;
  }
  .OunassApps h4 {
    font-size: 13px;
    margin-bottom: 9px;
  }
}
@media (min-width: 1180px) {
  .OunassApps h4 {
    font-size: 11px;
    margin-top: 30px;
    margin-bottom: 19px;
  }
}

/* frontend-v2/components/subscription-form/SubscriptionForm.css */
.SubscriptionForm {
  box-sizing: border-box;
  width: 100%;
  max-width: 570px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 27px;
}
.SubscriptionForm h4 {
  flex-basis: 100%;
  font-size: 11px;
  margin: 0 0 15px;
  text-transform: uppercase;
}
.SubscriptionForm input {
  box-sizing: border-box;
  display: block;
  width: calc(100% - 100px);
  background-color: rgba(255, 255, 255, 0.137);
  font-size: 13px;
  color: white;
  outline: none;
  padding: 0 15px;
  border: 1px solid #404043;
}
.SubscriptionForm input:focus {
  border-color: #fff;
}
.SubscriptionForm button[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  background-color: white;
  font-size: 13px;
  text-transform: uppercase;
  color: black;
  padding: 0 10px;
}
.SubscriptionForm input,
.SubscriptionForm button[type=submit] {
  height: 40px;
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  12% {
    transform: translateX(3px);
  }
  25% {
    transform: translateX(-5px);
  }
  37% {
    transform: translateX(8px);
  }
  50% {
    transform: translateX(-8px);
  }
  62% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-3px);
  }
  87% {
    transform: translateX(0);
  }
}
.SubscriptionForm button[type=submit].is-red {
  animation: shake 0.5s ease-in;
  background-color: var(--error-color);
}
.SubscriptionForm button[type=submit] .Cross.Icon {
  width: 16px;
  height: 16px;
  color: white;
}
.SubscriptionForm button[type=submit] .image-check-circle {
  background-image: url(/build/sprite/sprite@2x.png);
  background-size: 389px 216px;
  background-position: -230px -132px;
  display: inline-block;
  width: 24px;
  height: 14px;
}
.SubscriptionForm p {
  font-size: 12px;
  font-weight: bold;
  color: #e4e4e4;
  margin: 20px 0 0;
}
@media (max-width: 1179px) {
  .SubscriptionForm h4 {
    font-size: 13px;
  }
  .SubscriptionForm {
    padding: 0 20px;
  }
}

/* frontend-v2/contentful/category-link/CategoryLink.css */
.CategoryLink {
  font-size: 13px;
  display: flex;
  align-items: center;
}
.CategoryLink .LazyImage {
  background-color: transparent;
  margin-right: 10px;
  width: 25px;
}

/* frontend-v2/contentful/footer-column/FooterColumn.css */
.FooterColumn {
  background-color: #000;
  text-align: left;
  color: #fff;
}
.FooterColumn-title {
  text-transform: uppercase;
}
.FooterColumn a {
  color: inherit;
}
@media (max-width: 1179px) {
  .FooterColumn {
    border-bottom: 1px solid #404043;
  }
  .FooterColumn:first-child {
    border-top: 1px solid #404043;
  }
  .FooterColumn summary > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2d2d2d;
    padding: 14px;
  }
  .FooterColumn summary svg {
    width: 14px;
    height: 14px;
  }
  .FooterColumn[open] summary svg {
    transform: rotate(-180deg);
  }
  .FooterColumn-title {
    font-size: 13px;
    font-weight: normal;
  }
  .FooterColumn a {
    margin: 28px 14px;
  }
}
@media (min-width: 1180px) {
  .FooterColumn h4 {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  .FooterColumn h4:not(.head) {
    margin-top: 30px;
  }
  .FooterColumn h4.head {
    break-before: column;
  }
  .FooterColumn a {
    margin-top: 14px;
  }
}

/* frontend-v2/contentful/footer-column-list/FooterColumnList.css */
.FooterColumnList {
  background-color: #000;
}

/* frontend-v2/components/footer/Footer.css */
.Footer {
  color: #e4e4e4;
  position: relative;
}
.Footer::before {
  content: "";
  background-color: black;
  background-image: radial-gradient(circle at 100% 0, #1c1c1e, #000);
  margin-left: -50vw;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.Footer .CategoryLink {
  font-size: 14px;
  color: inherit;
}
.Footer-top {
  border-bottom: 1px solid #404043;
  margin: 0 0 41px 0;
  padding: 38px 0 13px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.Footer-bottom .OunassMonogram {
  width: 61px;
  height: 61px;
}
.Footer-bottom {
  font-size: 13px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  border-top: 1px solid #404043;
  margin-top: 35px;
}
.Footer-logoAndSlogan {
  border-right: 1px solid #404043;
  margin-right: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
}
.Footer-logoAndSlogan .OunassMonogram {
  margin-right: 5px;
}
.Footer-callCustomerCare {
  margin-bottom: 10px;
}
.Footer-contactNumber {
  color: var(--primary-color);
  margin-left: 5px;
  display: inline-block;
}
.Footer-copyRight {
  flex-grow: 1;
  display: flex;
}
.Footer-copyRight:not(.is-ksa) {
  flex-direction: row-reverse;
  align-items: flex-end;
}
.Footer-copyRight:not(.is-ksa) .AltayerLogo {
  margin: 0 0 0 15px;
}
.Footer-copyRight.is-ksa {
  flex-direction: column;
  align-items: flex-end;
}
.Footer-copyRight.is-ksa .AltayerLogo {
  margin: 0 0 10px 0;
}
.Footer-copyRight .AltayerLogo {
  width: 159px;
  height: 28px;
}
.Footer .FooterColumn,
.Footer .FooterColumnList {
  background: transparent;
}

/* frontend-v2/components/footer-mobile/FooterMobile.css */
.FooterMobile {
  background-color: black;
  background-image: radial-gradient(circle at 100% 0, #1c1c1e, #000);
  box-sizing: border-box;
  color: white;
  padding-top: 27px;
  padding-bottom: 40px;
  text-align: center;
}
.FooterMobile-needHelpMediumsTitle {
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 7px;
  margin-top: 27px;
}
.FooterMobile-needHelpMediums {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.FooterMobile-needHelpMediums a {
  flex-basis: calc(33% - 5px);
  background-color: #2d2d2d;
  color: #fff;
  padding: 10px 0;
  border-radius: 5px;
}
.FooterMobile-needHelpMediums a .Icon {
  width: 30px;
  height: 30px;
}
.FooterMobile-needHelpMediums a span {
  display: block;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}
.FooterMobile .OunassMonogram {
  margin-bottom: 10px;
  width: 60px;
  height: 60px;
}
.FooterMobile-sloganText {
  font-family: var(--secondary-font);
  font-size: 12px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}
.FooterMobile-copyRightText {
  font-size: 13px;
  margin: 0 0 20px 0;
}
.FooterMobile .AltayerLogo {
  display: block;
  width: 159px;
  height: 28px;
  margin: 0 auto;
}
.FooterMobile .FooterColumnList {
  background: transparent;
}

/* frontend-v2/contentful/info-banner/InfoBanner.css */
.InfoBanner {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
}
.InfoBanner::before {
  content: "";
  background-color: inherit;
  margin-left: -50vw;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.InfoBanner-content {
  text-align: center;
}
.InfoBanner-ctaText {
  cursor: pointer;
  margin-left: 7px;
  text-decoration: underline;
}
.InfoBanner ~ .Header {
  margin-top: 40px;
}
@media (max-width: 1179px) {
  .InfoBanner {
    height: 50px;
  }
  .InfoBanner-ctaText {
    display: block;
  }
  .InfoBanner ~ .HeaderMobile {
    margin-top: 50px;
  }
  .InfoBanner ~ .HeaderMobile + nav.BreadcrumbNav,
  .InfoBanner ~ .HeaderMobile + main {
    margin-top: 100px;
  }
}

/* frontend-v2/contentful/promo-popup/PromoPopup.css */
.Dialog.PromoPopup .Dialog-content {
  max-width: 800px;
  text-align: center;
}
.Dialog.PromoPopup img {
  max-width: 100%;
}
.PromoPopup-content {
  padding: 20px;
  row-gap: 15px;
}
.PromoPopup-title {
  font-size: 24px;
  font-family: var(--secondary-font);
  font-weight: bold;
  margin: 15px 0;
}
.PromoPopup-subtitle {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: normal;
  margin: 15px 0;
}
.PromoPopup-logo {
  margin-bottom: 15px;
}
.PromoPopup-copy {
  font-size: 14px;
  white-space: pre-wrap;
  margin: 0 0 15px;
}
.PromoPopup-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}
.PromoPopup-smallCopy {
  font-size: 11px;
  white-space: pre-wrap;
  margin: 15px 0;
}
.PromoPopup-cta .Button.primary {
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* frontend-v2/pages/pdp-desktop/components/ImageGallery.css */
.ImageGallery {
  display: flex;
  align-items: flex-start;
}
.ImageGallery-singleImageButton {
  position: relative;
}
.ImageGallery-singleImageButton .Icon {
  position: absolute;
  top: 0;
  left: 0;
}
.ImageGallery-thumbnails {
  max-height: 720px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  width: 81px;
}
.ImageGallery-thumbnailButton {
  background-color: var(--skeleton-color);
  border: 1px solid transparent;
  font-size: 0;
  margin-bottom: 10px;
  width: 81px;
}
.ImageGallery-thumbnailButton.is-selected {
  border-color: #aaa;
}
.ImageGallery-thumbnail {
  width: 79px;
  height: 118px;
}
.ImageGallery-content {
  position: relative;
}
.ImageGallery-imageButton {
  cursor: zoom-in;
}
.ImageGallery-image {
  width: 480px;
  height: 720px;
}
.ImageGallery-nextButton,
.ImageGallery-previousButton {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ImageGallery:not(.is-fullscreen) .ImageGallery-nextButton,
.ImageGallery:not(.is-fullscreen) .ImageGallery-previousButton {
  background-color: #fff;
  border-radius: 44px;
  position: absolute;
  top: calc(50% - 44px);
  width: 44px;
  height: 44px;
}
.ImageGallery-nextButton .Right.Icon,
.ImageGallery-previousButton .Left.Icon {
  width: 24px;
  height: 24px;
}
.ImageGallery-nextButton .Right2x.Icon,
.ImageGallery-previousButton .Left2x.Icon {
  color: #2d2d2d;
  width: 60px;
  height: 60px;
}
.ImageGallery-collapseButton {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 1;
}
.ImageGallery-collapseButton .Cross.Icon {
  width: 30px;
  height: 30px;
}
.ImageGallery-selectedImageDescription {
  width: 0px;
  height: 0px;
  overflow: hidden;
}
.ImageGallery.is-fullscreen {
  background-color: #fafafa;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.ImageGallery.is-fullscreen .ImageGallery-thumbnails {
  max-height: calc(100vh - 100px);
  margin: 50px 0 0 20px;
}
.ImageGallery.is-fullscreen .ImageGallery-thumbnail {
  width: 66px;
  height: 99px;
}
.ImageGallery.is-fullscreen .ImageGallery-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ImageGallery.is-fullscreen .ImageGallery-imageButton {
  cursor: zoom-out;
}
.ImageGallery.is-fullscreen .ImageGallery-image {
  aspect-ratio: 2 / 3;
  margin: 0 30px;
  width: auto;
  height: 100vh;
}
.ImageGallery:not(.is-fullscreen) .ImageGallery-nextButton {
  right: 20px;
}
.ImageGallery:not(.is-fullscreen) .ImageGallery-previousButton {
  left: 20px;
}
.ImageGallery.is-fullscreen .ImageGallery-nextButton,
.ImageGallery.is-fullscreen .ImageGallery-previousButton {
  width: 60px;
  height: 60px;
}

/* frontend-v2/pages/pdp-mobile/components/ImageGalleryMobile.css */
.ImageGalleryMobile {
  background-color: #fafafa;
  position: relative;
}
.ImageGalleryMobile-singleImageButton {
  position: relative;
}
.ImageGalleryMobile-singleImageButton .Icon {
  position: absolute;
  top: 0;
  left: 0;
}
.ImageGalleryMobile-slides {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  display: flex;
  flex-wrap: nowrap;
}
.ImageGalleryMobile-slide {
  scroll-snap-align: start;
}
.ImageGalleryMobile-imageButton {
  width: 100vw;
  height: 390px;
}
.ImageGalleryMobile-imageButton > img {
  width: 260px;
  height: 390px;
}
.ImageGalleryMobile-imageButton .LazyImage {
  background-color: transparent;
  margin: auto;
}
.ImageGalleryMobile-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  width: 100vw;
  height: 20px;
}
.ImageGalleryMobile-dot {
  background-color: #333;
  border-radius: 10px;
  margin: 0 4px;
  opacity: 0.6;
  width: 10px;
  height: 10px;
}
.ImageGalleryMobile.is-fullscreen {
  background-color: #000c;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: grid;
  grid-template-rows: 1fr 70% 1fr;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.ImageGalleryMobile.is-fullscreen .ImageGalleryMobile-crossButton {
  align-self: center;
  justify-self: flex-end;
  background-color: white;
  border-radius: 44px;
  color: black;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.ImageGalleryMobile.is-fullscreen .ImageGalleryMobile-crossButton .Icon {
  width: 20px;
  height: 20px;
}
.ImageGalleryMobile.is-fullscreen .ImageGalleryMobile-slide {
  height: 100%;
}
.ImageGalleryMobile.is-fullscreen .ImageGalleryMobile-imageButton {
  height: 100%;
}
.ImageGalleryMobile.is-fullscreen .ImageGalleryMobile-slide:not(:last-child) .ImageGalleryMobile-imageButton {
}
.ImageGalleryMobile.is-fullscreen .ImageGalleryMobile-imageButton img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.ImageGalleryMobile.is-fullscreen .ImageGalleryMobile-dots {
  align-self: center;
  justify-self: center;
}
.ImageGalleryMobile.is-fullscreen .ImageGalleryMobile-dot {
  background-color: white;
}
[data-designer-theme=chanel] .ImageGalleryMobile:not(.is-fullscreen),
[data-designer-theme=chanel] .ImageGalleryMobile.is-fullscreen .ImageGalleryMobile-imageButton {
  background-color: white;
}

/* frontend-v2/contentful/packaging-options/PackagingOptions.css */
.PackagingOption {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 15px;
  position: relative;
}
.Wrapper-isDesktop .PackagingOption:not(:last-child) {
  border-right: 1px solid #e4e4e4;
}
.Wrapper-isMobile .PackagingOption:not(:last-child) {
  border-bottom: 1px solid #e4e4e4;
}
.PackagingOption input {
  appearance: none;
  background-color: white;
  border-radius: 50%;
  border-width: 0;
  cursor: pointer;
  outline: none;
  padding: 3px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px white, 0 0 0 4px grey;
}
.PackagingOption input:checked,
.PackagingOption input:hover:not(:disabled) {
  background-color: black;
  box-shadow: 0 0 0 3px white, 0 0 0 4px black;
}
.PackagingOption input:focus {
  box-shadow:
    0 0 0 3px white,
    0 0 0 4px black,
    0 0 0 5px rgba(0, 0, 0, 0.5);
}
.PackagingOption-border {
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  transition: border-color 0.2s;
  will-change: border-color;
}
.PackagingOption input:checked + .PackagingOption-border {
  border-color: black;
}
.PackagingOption input:focus-visible + .PackagingOption-border {
  outline: 2px solid -webkit-focus-ring-color;
  outline-offset: -1px;
}
.PackagingOption-details {
  flex-grow: 1;
}
.PackagingOption-details h4 {
  font-weight: bold;
  font-size: 14px;
  margin: 0 0 4px;
}
.PackagingOption-details p {
  font-size: 12px;
  color: #2d2d2d;
  margin: 0;
}

/* frontend-v2/contentful/value-proposition/ValueProposition.css */
.ValuePropositionWrapper {
  display: flex;
}
.ValuePropositionWrapper li {
  flex: 1;
}
.ValuePropositionWrapper li:not(:first-child) {
  border-left: 1px solid white;
}
.ValueProposition {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  height: 40px;
}
.ValueProposition .LazyImage {
  background-color: transparent;
  display: inline-block;
  margin-right: 5px;
  width: 16px;
}
@media (max-width: 1179px) {
  .ValuePropositionWrapper {
    display: block;
  }
  .ValuePropositionWrapper li:not(:last-child) {
    margin-bottom: 20px;
  }
  .ValueProposition {
    text-transform: uppercase;
    justify-content: flex-start;
    height: auto;
  }
}

/* frontend-v2/contentful/cart-announcements/CartAnnouncements.css */
.CartAnnouncements {
  display: flex;
  align-items: center;
}
.CartAnnouncements .LazyImage {
  width: 30px;
  margin-right: 15px;
}

/* frontend-v2/contentful/wrapper/Wrapper.css */
.Wrapper-packagingOptions {
  justify-content: space-evenly;
  border: 1px solid #e4e4e4;
}
.Wrapper-packagingOptions.Wrapper-desktop {
  display: flex;
}

/* frontend-v2/contentful/hero-banner/HeroBanner.css */
.HeroBanner {
  text-align: center;
  position: relative;
}
.HeroBanner .LazyImage {
  margin-bottom: 20px;
  width: 100%;
}
.HeroBanner-content h3 {
  color: #2d2d2d;
  font-family: var(--secondary-font);
  font-size: 22px;
  font-weight: normal;
  margin: 0 0 7px 0;
  text-transform: uppercase;
  line-height: 24px;
}
.HeroBanner-content p {
  color: #2d2d2d;
  font-size: 14px;
  line-height: 18px;
  margin: 0 30px 12px 30px;
  line-height: 19px;
}
.HeroBanner-content div {
  background-color: #2d2d2d;
  color: white;
  font-size: 14px;
  font-weight: bold;
  margin: 20px auto;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 44px;
}
.HeroBanner.center .LazyImage {
  margin-bottom: 0px;
}
.HeroBanner.center .HeroBanner-content {
  translate: -50% -50%;
  position: absolute;
  left: 50%;
  top: 50%;
}
.rtl .HeroBanner.center .HeroBanner-content {
  right: 50%;
  left: auto;
}
.HeroBanner.center .HeroBanner-content h3 {
  color: white;
  font-size: 46px;
}
.HeroBanner.center .HeroBanner-content p {
  color: white;
}
.HeroBanner.center .HeroBanner-content div {
  background-color: white;
  color: black;
}

/* frontend-v2/contentful/app-download/AppDownload.css */
.AppDownload {
  text-align: center;
}
.AppDownload .LazyImage {
  background-color: transparent;
}
.AppDownload h3 {
  font-family: var(--secondary-font);
  font-weight: normal;
  line-height: 30px;
}
.AppDownload .AppleAppStore.Icon,
.AppDownload .AppleAppStoreAr.Icon {
  width: 108px;
  height: 36px;
}
.AppDownload .GooglePlayStoreIcon {
  width: 120px;
  height: 40px;
}
@media (max-width: 1179px) {
  .AppDownload h3 {
    font-size: 18px;
    margin: 0 auto 7px auto;
    max-width: 180px;
  }
  .AppDownload p {
    font-size: 13px;
    margin: 0 auto 20px auto;
  }
  .AppDownload a {
    display: block;
    margin-bottom: 20px;
  }
  .AppDownload .LazyImage {
    margin: 0 auto;
    width: 220px;
  }
}
@media (min-width: 1180px) {
  .AppDownload {
    border: 1px solid #e4e4e4;
  }
  .AppDownload .LazyImage {
    align-self: end;
  }
  .AppDownload {
    display: grid;
    align-items: center;
  }
  .AppDownload.col-md-6 {
    padding: 0px 15px;
    grid-template-columns: 290px 1fr;
  }
  .AppDownload.col-md-6 h3 {
    font-size: 18px;
    margin: 0px auto 10px auto;
    max-width: 180px;
  }
  .AppDownload.col-md-6 p {
    font-size: 14px;
    margin: 0px auto 10px auto;
  }
  .AppDownload.col-md-6 a {
    display: block;
    font-size: 0;
    margin: 0 auto;
  }
  .AppDownload.col-md-6 a:first-of-type {
    margin-bottom: 7px;
  }
  .AppDownload.col-md-12 {
    padding: 40px 100px 0px 100px;
    grid-template-columns: 220px 1fr 220px;
  }
  .AppDownload.col-md-12 h3 {
    font-size: 24px;
    margin: 0px auto 8px auto;
    max-width: 200px;
  }
  .AppDownload.col-md-12 p {
    font-size: 16px;
    margin: 0px auto 10px auto;
  }
  .AppDownload.col-md-12 a {
    display: inline-block;
    vertical-align: middle;
  }
  .AppDownload.col-md-12 a:first-of-type {
    margin-right: 14px;
  }
}

/* frontend-v2/contentful/usp-banner/USPBanner.css */
@media (max-width: 1179px) {
  .USPBanner {
    display: flex;
    flex-flow: row nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .USPBanner::-webkit-scrollbar {
    display: none;
  }
  .USPBanner .CategoryLink {
    cursor: pointer;
    box-sizing: border-box;
    flex-shrink: 0;
    justify-content: center;
    width: 90%;
    background-color: #383838;
    font-size: 11px;
    color: #fff;
    scroll-snap-align: start;
    padding: 10px;
    border-radius: 5px;
    margin-right: 5px;
    overflow: hidden;
    position: relative;
  }
  .USPBanner .CategoryLink::before {
    content: "";
    height: 290%;
    width: 95%;
    background-color: #424242;
    border-radius: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-47%, -40%) rotate(25deg);
    transform-origin: center;
  }
  .USPBanner .CategoryLink::after {
    content: "";
    height: 30%;
    width: 10%;
    background-color: #2d2d2d;
    position: absolute;
    top: -18%;
    right: -1.5%;
    transform: rotate(22deg);
  }
  .USPBanner .CategoryLink:first-child {
    margin-left: 0;
  }
  .USPBanner .LazyImage {
    position: relative;
  }
  .USPBanner .LazyImage img {
    filter: invert(1);
  }
  .USPBanner .LazyImage + span {
    flex-grow: 1;
    text-align: center;
    position: relative;
  }
}
@media (min-width: 1180px) {
  .USPBanner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .USPBanner .CategoryLink {
    font-size: 11px;
  }
}

/* frontend-v2/contentful/gender-landing-page/GenderLandingPage.css */
.GenderLandingPage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
  margin-top: 30px;
}
.GenderLandingPage > * {
  grid-column: span 12;
}
@media (max-width: 1179px) {
  .GenderLandingPage {
    grid-column-gap: 5px;
  }
  .GenderLandingPage .USPBanner {
    margin: 0 15px;
  }
  .MultiCTABanner {
    position: relative;
  }
  .MultiCTABanner-ctas {
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 50%;
  }
  .MultiCTABanner-ctas > a {
    background-color: white;
    color: black;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 40px;
  }
  .MultiCTABanner-ctas > a:not(:last-child) {
    margin-bottom: 30px;
  }
}

/* frontend-v2/contentful/read-and-shop/ReadAndShop.css */
.ReadAndShop {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
}
.ReadAndShop > * {
  grid-column: span 12;
}
.ReadAndShop video {
  width: 100%;
}
.ReadAndShop h3 {
  font-family: var(--secondary-font);
  font-size: 28px;
  font-weight: normal;
  line-height: 32px;
}
.ReadAndShop p {
  color: #2d2d2d;
  font-size: 14px;
  line-height: 28px;
  margin: 25px 0 0 0;
  white-space: pre-wrap;
}
.ReadAndShop .Button {
  display: inline-flex;
  margin-top: 35px;
  padding: 0px 30px;
  width: auto;
}
@media (max-width: 1179px) {
  .ReadAndShop {
    margin-bottom: 25px;
  }
}
@media (min-width: 1180px) {
  .ReadAndShop {
    margin-bottom: 40px;
  }
}

/* frontend-v2/contentful/hero-banner-slider/HeroBannerSlider.css */
.HeroBannerSlider.HeroBanner.center .HeroBanner-content {
  translate: -50% 0%;
  top: auto;
  bottom: 30px;
}
.HeroBannerSlider.HeroBanner.center .HeroBanner-content > div {
  background-color: #2d2d2d;
  color: white;
}

/* frontend-v2/contentful/promo-strip/PromoStrip.css */
.PromoStrip {
  display: block;
  position: relative;
}
.PromoStrip-headline {
  font-family: var(--secondary-font);
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  position: absolute;
  left: 0px;
  bottom: 20px;
  width: 100%;
  z-index: 1;
}
.PromoStrip-container {
  position: relative;
}
.PromoStrip-disabled {
  pointer-events: none;
}
@media (max-width: 1179px) {
  .PromoStrip-headline {
    font-family: var(--primary-font);
    font-size: 13px;
    bottom: 5px;
  }
}

/* frontend-v2/contentful/vertical-promo-wrapper/VerticalPromoWrapper.css */
.VerticalPromoWrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
}
.VerticalPromoWrapper > * {
  grid-column: span 12;
}
.VerticalPromoWrapper-title {
  font-family: var(--secondary-font);
  font-size: 30px;
  font-weight: normal;
  width: 100%;
}

/* frontend-v2/contentful/image-text-banner/ImageTextBanner.css */
.ImageTextBanner .LazyImage {
  margin-bottom: 17px;
}
.ImageTextBanner h5 {
  font-size: 12px;
  line-height: 18px;
  margin: 0 auto;
  max-width: 120px;
  text-align: center;
  text-transform: uppercase;
}

/* frontend-v2/contentful/box-slider/BoxSlider.css */
.BoxSlider {
  position: relative;
}
.BoxSlider::before {
  content: "";
  background-color: #f1f1f1;
  background-image: url(https://en-saudi.ounass.com/static/images/ounass/BoxSlider-bg.jpg);
  background-size: auto 100%;
  background-repeat: repeat;
  margin-left: -50vw;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.BoxSlider header {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.BoxSlider header a {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: bold;
  text-decoration: underline;
}
.BoxSlider h3 {
  font-family: var(--secondary-font);
  font-size: 30px;
  font-weight: normal;
}
.BoxSlider ul {
  overflow-x: auto;
  font-size: 0;
  display: flex;
  gap: 20px;
}
.BoxSlider ul li {
  box-sizing: border-box;
  display: inline-block;
  font-size: 16px;
  scroll-snap-align: end;
  flex: 1 0;
}
.BoxSlider .LazyImage {
  background-color: #e0e0e0;
}
@media (max-width: 1179px) {
  .BoxSlider {
    padding: 30px 0;
  }
  .BoxSlider ul {
    margin-right: -10px;
  }
  .BoxSlider ul li {
    min-width: 150px;
  }
}
@media (min-width: 1180px) {
  .BoxSlider {
    padding: 60px 0;
  }
}

/* frontend-v2/components/carousel/Carousel.css */
.Carousel {
  position: relative;
}
.Carousel header {
  margin: 0 0 20px 0;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.Carousel header h2 {
  flex-grow: 1;
  font-family: var(--secondary-font);
  font-size: 30px;
  font-weight: normal;
  margin: 0;
}
.Carousel header h2 a:hover {
  text-decoration: underline;
}
.Carousel-seeAllLink {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: bold;
  text-decoration: underline;
  line-height: 22px;
  white-space: nowrap;
  margin-left: 30px;
}
.Carousel-designerCategoryLink:hover {
  text-decoration: underline;
}
.Carousel-nextButton,
.Carousel-previousButton {
  position: absolute;
  top: calc(50% - 32px);
}
.Carousel-nextButton[disabled],
.Carousel-previousButton[disabled] {
  opacity: 0.2;
}
.Carousel-nextButton {
  right: -44px;
}
.Carousel-previousButton {
  left: -44px;
}
.Carousel-nextButton .Right.Icon,
.Carousel-previousButton .Left.Icon {
  width: 32px;
  height: 32px;
}
.Carousel ul {
  max-width: 1180px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.Carousel ul::-webkit-scrollbar {
  display: none;
}
.Carousel ul li {
  vertical-align: top;
}
.Carousel.is-loading header h2,
.Carousel.is-loading header h2 a,
.Carousel.is-loading .Icon,
.Carousel.is-loading .Carousel-seeAllLink {
  background-color: #f4f4f4;
  border-color: transparent;
  color: #f4f4f4;
  stroke: #f4f4f4;
}
[data-designer-theme=chanel] .Carousel:not(.is-loading) header a {
  color: black;
}
[data-designer-theme=chanel] .Carousel header h2 {
  font-family: Arial;
  text-transform: uppercase;
}
@media (max-width: 1179px) {
  .Carousel header h2 {
    font-size: 24px;
  }
  .Carousel-nextButton,
  .Carousel-previousButton {
    display: none;
  }
}
@media (min-width: 1180px) {
  [data-designer-theme=chanel] .Carousel header h2 {
    text-align: center;
  }
}

/* frontend-v2/contentful/product-slider/ProductSlider.css */
.ProductSlider.is-static ul {
  display: grid;
}
.ProductSlider.is-static h2 {
  font-family: var(--secondary-font);
  font-weight: normal;
  text-align: center;
  text-transform: capitalize;
}
.ProductSlider.is-chanel {
  --secondary-font: Arial;
}
.ProductSlider.is-chanel.Carousel header h2 {
  text-align: center;
  text-transform: uppercase;
}
.ProductSlider.is-chanel.Carousel header a,
.ProductSlider.is-chanel .StyleColorListItem-designer,
.ProductSlider.is-chanel .StyleColorListItem-designerPlusSubClass,
.ProductSlider.is-chanel .StyleColorListItem-name,
.ProductSlider.is-chanel .StyleColorListItem-price {
  color: black;
}
.ProductSlider.is-chanel .StyleColorListItem-wishlistToggle {
  visibility: hidden;
}
@media (max-width: 1179px) {
  .ProductSlider.is-static h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .ProductSlider.is-static ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 15px;
  }
  .ProductSlider:not(.is-static) .StyleColorListItem:not(:last-child) {
    margin-right: 15px;
  }
}
@media (min-width: 1180px) {
  .ProductSlider.is-static h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .ProductSlider.is-static ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-gap: 30px;
  }
  .ProductSlider:not(.is-static) .StyleColorListItem:not(:last-child) {
    margin-right: 30px;
  }
}

/* frontend-v2/contentful/quote/Quote.css */
.Quote {
  font-family: var(--secondary-font);
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 1179px) {
  .Quote {
    font-size: 24px;
    line-height: 40px;
    padding: 0 30px;
  }
}
@media (min-width: 1180px) {
  .Quote {
    font-size: 28px;
    line-height: 44px;
    white-space: pre-wrap;
  }
}

/* frontend-v2/contentful/amber-program/AmberProgram.css */
.AmberProgram {
  border: 1px solid #e4e4e4;
}
.AmberProgram-contentContainer h3 {
  font-family: var(--secondary-font);
  font-size: 18px;
  font-weight: normal;
  line-height: 30px;
  margin: 0 auto 10px auto;
  max-width: 200px;
  text-align: center;
}
@media (max-width: 1179px) {
  .AmberProgram {
    padding: 15px;
  }
  .AmberProgram .LazyImage {
    background-color: transparent;
    margin: 0 auto 30px auto;
    width: 120px;
  }
}
@media (min-width: 1180px) {
  .AmberProgram {
    display: flex;
    align-items: center;
  }
  .AmberProgram .LazyImage {
    flex-basis: 50%;
  }
  .AmberProgram-contentContainer {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
  }
  .AmberProgram-contentContainer .Button {
    margin: 0 auto;
    padding: 0 15px;
    width: auto;
  }
}

/* frontend-v2/contentful/designer-slider/DesignerSlider.css */
.DesignerSlider h3 {
  margin-bottom: 30px;
}
.DesignerSlider-slides {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
  width: 100%;
  overflow: hidden;
}
.DesignerSlider-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 12;
  margin-bottom: 10px;
}
.DesignerSlider-slide span {
  display: block;
  text-align: center;
}

/* frontend-v2/contentful/static-text-block/StaticTextBlock.css */
.StaticTextBlock {
  border: 1px solid #ccc;
  border-radius: 5px;
}
.StaticTextBlock summary {
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
}
.StaticTextBlock summary:hover,
.StaticTextBlock[open] summary {
  background-color: #eee;
}
.StaticTextBlock p {
  padding: 15px;
  margin: 0;
}

/* frontend-v2/contentful/home-page/HomePage.css */
.HomePage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
}
.HomePage > * {
  grid-column: span 12;
}
@media (max-width: 1179px) {
  .HomePage {
    grid-column-gap: 5px;
  }
}

/* frontend-v2/pages/home-desktop/HomeDesktop.css */
#root-mobile {
  display: none;
}
body {
  margin: 0 auto;
  width: 1180px;
}
.HomePage {
  margin-bottom: 70px;
}
.MegaNav {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 15px;
}
