html {
  font-size: unset !important;
}

:root {
  --primary-color-0: #ee8080;
  --primary-color-1: #b82525;
  --primary-color-2: #971c1c;
  --light-color-0: #fff;
  --light-color-1: #f4f4f4;
  --light-color-2: #e1e1e1;
  --dark-color-0: #000;
  --dark-color-1: #222;
  --dark-color-2: #333;
  --max-width-md: 1260px;
  --max-width-lg: 1360px;
  --app-shadow-3: 0 0.5rem 1.5rem rgba(32, 32, 32, 0.2);
  --app-shadow-2: 0.2rem 0.2rem 0.5rem rgba(32, 32, 32, 0.2);
  --app-shadow-1: 0.1rem 0.1rem 0.3rem 0.1rem rgba(32, 32, 32, 0.2);
}

body {
  margin: 0;
  font-family: "Inter" !important;
  font-size: unset !important;
  line-height: unset !important;
  overflow-x: hidden !important;
  max-width: 100vw;
}

body.rtl {
  font-family: "Tajawal";
}

h2 {
  margin: 2em 0 -0.5em 0.5em;
  border-left: 0.5em solid #ed2424 !important;
  padding-left: 0.5em !important;
  color: #5e5e5e !important;
  font-family: "Inter" !important;
}

.rtl h2 {
  border-left: unset;
  padding-left: unset;
  border-right: 0.5em solid #ed2424;
  padding-right: 0.5em;
  font-family: "Tajawal";
}

h2.swal2-title {
  border: none;
}

a {
  color: #ed2424;
}

.main-container {
  margin: 0 2em;
  margin-top: -30px;
}

.joker-btn {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  border: none;
  padding: 0.7em;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  width: 100%;
  position: relative;
  background-color: #ed2424;
  font-family: "Inter";
}

.joker-btn.joker-btn-disabled {
  cursor: default;
  color: lightgray;
  background-color: #f4f4f4;
}

.rtl .joker-btn {
  gap: 0.5em;
  letter-spacing: 1px;
  font-family: "Tajawal";
}

.joker-btn i {
  font-size: 13px;
  line-height: 1.2;
}

.joker-btn .overlay {
  border-radius: unset;
}

.joker-btn .overlay .spinner {
  width: 20px;
  height: 20px;
}

.flex {
  display: flex;
}

.flex-direction-column {
  flex-direction: column;
}

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

.main-frame-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding: 1em;
  background-color: #efefef;
  margin: auto;
  margin-top: 2em;
  margin-bottom: 5em;
  width: fit-content;
  border-radius: 10px;
  box-shadow: 0 0 20px 3px #e2e2e27a;
  font-size: 13px;
}

.tool-tip {
  cursor: pointer;
}

.tool-tip::after {
  background-color: #000000ba;
  backdrop-filter: blur(1.5px);
  border-radius: 10px;
  color: #efefef;
  content: attr(data-tooltip-title) " ";
  font-weight: normal;
  min-width: 250px;
  padding: 5px 8px;
  text-align: center;
}

.tool-tip::before {
  width: 0;
  height: 0;
  content: "";
}

.tool-tip::before,
.tool-tip::after {
  position: absolute;
  transition: opacity 250ms ease 0ms, transform 250ms ease 0ms;
  transform-style: preserve-3d;
  opacity: 0;
  z-index: -1;
}

.tool-tip[data-tooltip-position="top"]::after,
.tool-tip[data-tooltip-position="bottom"]::after {
  left: 50%;
}

.tool-tip[data-tooltip-position="top"]::after {
  transform: translate3d(-50%, 10px, 0);
}

.tool-tip[data-tooltip-position="bottom"]::after {
  transform: translate3d(-50%, -10px, 0);
}

.tool-tip[data-tooltip-position="top"]::after {
  bottom: calc(100% + 10px);
}

.tool-tip[data-tooltip-position="bottom"]::after {
  top: calc(100% + 10px);
}

.tool-tip[data-tooltip-position="left"]::after,
.tool-tip[data-tooltip-position="right"]::after {
  top: 50%;
}

.tool-tip[data-tooltip-position="left"]::after {
  transform: translate3d(10px, -50%, 0);
}

.tool-tip[data-tooltip-position="right"]::after {
  transform: translate3d(-10px, -50%, 0);
}

.tool-tip[data-tooltip-position="left"]::after {
  right: calc(100% + 10px);
}

.tool-tip[data-tooltip-position="right"]::after {
  left: calc(100% + 10px);
}

/* Pointers */

.tool-tip[data-tooltip-position="top"]::before,
.tool-tip[data-tooltip-position="bottom"]::before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  left: 50%;
}

.tool-tip[data-tooltip-position="top"]::before {
  transform: translate3d(-50%, 10px, 0);
}

.tool-tip[data-tooltip-position="bottom"]::before {
  transform: translate3d(-50%, -10px, 0);
}

.tool-tip[data-tooltip-position="top"]::before {
  border-top: 8px solid #000000ba;
  bottom: calc(100% + 3px);
}

.tool-tip[data-tooltip-position="bottom"]::before {
  border-bottom: 7px solid #000000ba;
  top: calc(100% + 3px);
}

.tool-tip[data-tooltip-position="left"]::before,
.tool-tip[data-tooltip-position="right"]::before {
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  top: 50%;
}

.tool-tip[data-tooltip-position="left"]::before {
  transform: translate3d(10px, -50%, 0);
}

.tool-tip[data-tooltip-position="right"]::before {
  transform: translate3d(-10px, -50%, 0);
  border-right: 7px solid #000000ba;
  left: calc(100% + 3px);
}

.tool-tip[data-tooltip-position="left"]::before {
  border-left: 7px solid #000000ba;
  right: calc(100% + 3px);
}

.tool-tip:hover::before,
.tool-tip:hover::after {
  opacity: 1;
  z-index: 100;
}

.tool-tip[data-tooltip-position="top"]:hover::before,
.tool-tip[data-tooltip-position="bottom"]:hover::before,
.tool-tip[data-tooltip-position="top"]:hover::after,
.tool-tip[data-tooltip-position="bottom"]:hover::after {
  transform: translate3d(-50%, 0px, 0);
}

.tool-tip[data-tooltip-position="left"]:hover::before,
.tool-tip[data-tooltip-position="right"]:hover::before,
.tool-tip[data-tooltip-position="left"]:hover::after,
.tool-tip[data-tooltip-position="right"]:hover::after {
  transform: translate3d(0px, -50%, 0);
}

.cards-cont {
  margin: 2em 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 4fr));
  grid-gap: 1.5rem;
  place-items: center;
}

.cards-cont .card-item {
  position: relative;
  display: flex;
  gap: 2em;
  flex-flow: column;
  width: 240px;
  height: 480px;
  box-shadow: 0px 0px 10px 0px #00000040;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.5em;
  padding: 2.25rem;
  padding-top: 0;
}

.cards-cont .card-item .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: 1em;
  margin-bottom: -2em;
}

.card-item .card-tag {
  top: 1.125rem;
  left: 1.125rem;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  z-index: 100;
  padding: 0.125rem 1rem 0.125rem 1rem;
  border-radius: 1rem;
}

.card-item .card-tag[type="pre-order"] {
  background-color: gray;
}

.card-item .card-tag[type="popular"] {
  background-color: #0cff70;
}

.card-item .card-tag[type="new"] {
  background-color: #ff0c0c;
}

.cards-cont .card-item .points-reward-cont {
  position: absolute;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  color: white;
  width: 46px;
  height: 56px;
  top: 0px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards-cont .card-item .points-reward-cont span {
  font-size: 14px;
  font-family: "circular";
  margin-bottom: 1.4em;
}

.cards-cont .card-item .card-clickable {
  color: black;
  text-decoration: none;
}

.cards-cont .card-item .card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 242px;
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  margin-top: 2.5rem;
}

.cards-cont .card-item .card-header > * {
  filter: blur(3px);
}

.cards-cont .card-item .card-header div {
  width: 100%;
  height: 175px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cards-cont .card-item .card-header img {
  height: 100%;
  max-width: 320px;
  max-height: 242px;
  position: absolute;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.3));
}

.cards-cont .card-item .card-body {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 0.5em;
}

.cards-cont .card-item .card-body .item-title {
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin-bottom: 0.6em;
}

.cards-cont .card-item .card-body .item-price {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.cards-cont .card-item .card-body .item-price label {
  color: #e94e18;
  font-weight: 600;
}

label.old-price {
  font-size: 15px;
  position: relative;
}

label.old-price .old-price-stroke {
  position: absolute;
  top: 8px;
  height: 2px;
  width: 100%;
  transform: rotate(357deg);
  background: #e94e18;
}

.cards-cont .card-item .card-body .item-price label.new-price {
  font-size: 17px;
}

.cards-cont .card-item .card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1em;
  padding: 1em 2em;
  margin-bottom: 0.5em;
  position: absolute;
  width: 80%;
  bottom: 0;
  left: 0;
}

.cards-cont .card-item .card-footer .buy-now-form {
  flex-grow: 1;
}

.cards-cont .card-item .card-footer .add-to-cart-form {
  height: 100%;
}

.cards-cont .card-item .card-footer .buy-now-form button {
  padding-block: 8px !important;
}

.cards-cont .card-item .card-footer button {
  white-space: nowrap;
}

.cards-cont .card-item .card-footer h4 {
  text-align: center;
}

.cards-cont .card-item .joker-btn.add-to-cart {
  background-color: #272727;
}

.cards-cont .card-item .joker-btn.add-to-cart {
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid #00000080;
  height: 100%;
  transition: all 0.25s;
}

.cards-cont .card-item .joker-btn.add-to-cart i {
  color: #1e293b;
  transition: all 0.25s;
}

.cards-cont .card-item .joker-btn.add-to-cart:hover {
  background-color: #ff0c0c;
  border: 1px solid #ff0c0c;
}

.cards-cont .card-item .joker-btn.add-to-cart:hover i {
  color: #ffffff;
}

.cards-cont .card-item .joker-btn.buy-now {
  background-color: #ff0c0c;
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgb(0, 0, 0);
  opacity: 0;
  visibility: hidden;
  z-index: 10013;
  transition-delay: 0s, 0s;
  -moz-transition: opacity 0.25s ease 0s, visibility 0.35s linear;
  -o-transition: opacity 0.25s ease 0s, visibility 0.35s linear;
  -webkit-transition: opacity 0.25s ease, visibility 0.35s linear;
  -webkit-transition-delay: 0s, 0s;
  transition: opacity 0.25s ease 0s, visibility 0.35s linear;
}

.modal-overlay.state-show {
  opacity: 0.8;
  visibility: visible;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transition-duration: 0.2s, 0s;
  -o-transition-duration: 0.2s, 0s;
  -webkit-transition-duration: 0.2s, 0s;
  transition-duration: 0.2s, 0s;
}

.modal-frame {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 10014;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-box-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  width: 100%;
  max-width: 80vw;
  text-align: center;
  visibility: hidden;
}

.modal-frame.state-appear {
  visibility: visible;
}

.modal-frame.state-appear .modal-inset {
  -moz-animation: modalComeIn 0.25s ease;
  -webkit-animation: modalComeIn 0.25s ease;
  animation: modalComeIn 0.25s ease;
  visibility: visible;
}

.modal-frame.state-appear .modal-body-cont {
  overflow: hidden;
  border-radius: 10px;
}

.modal-frame.state-appear .modal-body-cont .modal-body {
  padding: 0 1.5em 1em 1.5em;
  opacity: 1;
  -moz-transform: translateY(0) scale(1, 1);
  -ms-transform: translateY(0) scale(1, 1);
  -webkit-transform: translateY(0) scale(1, 1);
  transform: translateY(0) scale(1, 1);
}

.modal-frame.state-leave {
  visibility: visible;
}

.modal-frame.state-leave .modal-inset {
  -moz-animation: modalHeadOut 0.35s ease 0.1s;
  -webkit-animation: modalHeadOut 0.35s ease 0.1s;
  animation: modalHeadOut 0.35s ease 0.1s;
  visibility: visible;
}

.modal-frame.state-leave .modal-body {
  opacity: 0;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -moz-transform: translateY(25px);
  -ms-transform: translateY(25px);
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
}

@-moz-document url-prefix() {
  .modal-frame {
    height: calc(100% - 55px);
  }
}

.modal {
  display: block !important;
  text-align: center !important;
  position: relative !important;
  overflow: unset !important;
  overflow-y: unset !important;
  z-index: unset !important;
  outline: unset !important;
  max-width: 90vw;
}

.overlay {
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: white;
  opacity: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-inset {
  display: flex;
  flex-flow: column;
  position: relative;
  padding: 2em;
  padding-top: 3em;
  background-color: white;
  min-width: min(650px, 75vw);
  /* min-height: 550px; */
  margin: auto;
  visibility: hidden;
  border-radius: 20px;
  -moz-box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.modal-inset .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  height: 45px;
}

.modal-inset .modal-header h2 {
  font-weight: 400;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .modal-inset .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    height: auto;
  }
}

.modal-inset .close-modal {
  display: block;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 0px;
  padding: 10px;
  opacity: 1;
}

.rtl .modal-inset .close-modal {
  right: unset;
  left: 10px;
}

.modal-inset .close-modal:hover {
  opacity: 0.7;
}

.modal-body {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  opacity: 0;
  -moz-transform: translateY(0) scale(0.8, 0.8);
  -ms-transform: translateY(0) scale(0.8, 0.8);
  -webkit-transform: translateY(0) scale(0.8, 0.8);
  transform: translateY(0) scale(0.8, 0.8);
  -moz-transition-property: opacity, -moz-transform;
  -o-transition-property: opacity, -o-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  -moz-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.modal-body h3 {
  font-weight: 700;
  padding-bottom: 22px;
  display: block;
  color: #f2594b;
  text-align: center;
}

.modal-body p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 20px;
}

.modal-body p.sub-p {
  text-align: left;
  margin-top: -1px;
  margin-bottom: 0.5em;
  font-size: 16px;
  color: #313131;
  font-weight: 500;
}

.rtl .modal-body p.sub-p {
  text-align: right;
}

.modal-body .ps {
  font-size: 12px;
  opacity: 0.3;
}

.modal-body form {
  display: flex;
  flex-flow: column;
  width: 100%;
  gap: 1em;
  text-align: left;
}

.rtl .modal-body form {
  text-align: right;
}

@-webkit-keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  65.5% {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-moz-keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  65.5% {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  65.5% {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: translateY(35px) scale(0.97, 0.97);
    -ms-transform: translateY(35px) scale(0.97, 0.97);
    -webkit-transform: translateY(35px) scale(0.97, 0.97);
    transform: translateY(35px) scale(0.97, 0.97);
  }
}

@-moz-keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: translateY(35px) scale(0.97, 0.97);
    -ms-transform: translateY(35px) scale(0.97, 0.97);
    -webkit-transform: translateY(35px) scale(0.97, 0.97);
    transform: translateY(35px) scale(0.97, 0.97);
  }
}

@keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: translateY(35px) scale(0.97, 0.97);
    -ms-transform: translateY(35px) scale(0.97, 0.97);
    -webkit-transform: translateY(35px) scale(0.97, 0.97);
    transform: translateY(35px) scale(0.97, 0.97);
  }
}

.group {
  position: relative;
  margin: 10px 0;
  margin-top: 1em;
  display: flex;
  width: 100%;
  flex-direction: column;
}

.group.textarea {
  margin-top: 2em;
}

.group textarea {
  resize: none;
}

.group input:not(input[type="radio"]),
.group textarea {
  background: none;
  color: #626262;
  font-size: 16px;
  padding: 10px 0;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #626262;
  font-family: "Inter";
}

.group textarea::placeholder {
  color: #c6c6c6;
  opacity: 1;
}

.rtl .group input:not(input[type="radio"]),
.rtl .group textarea {
  text-align: right;
}

.group select {
  display: none;
}

.group input:focus,
.group textarea:focus,
.group select:focus {
  outline: none;
}

.group input:focus ~ label,
.group input:valid ~ label,
.group input:read-only ~ label,
.group textarea:focus ~ label,
.group textarea:valid ~ label,
.group textarea:read-only ~ label,
.group select:focus ~ label,
.group select:valid ~ label,
.group select:read-only ~ label {
  top: -14px;
  font-size: 12px;
  color: #ed2424;
}

.group input:focus ~ .bar:before,
.group textarea:focus ~ .bar:before,
.group select:focus ~ .bar:before,
.group .select-selected.select-arrow-active ~ .bar:before {
  width: 105%;
}

.group .bar {
  position: relative;
  display: block;
  width: 95%;
}

.rtl .group .bar {
  width: 100%;
}

.group .bar:before {
  content: "";
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #ed2424;
  transition: 300ms ease all;
  left: 0%;
}

.group input[type="password"] {
  letter-spacing: 0.3em;
}

.group label {
  color: #c6c6c6;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 300ms ease all;
}

.rtl .group label {
  left: unset;
  right: 5px;
}

.group .error {
  text-align: left;
  margin-top: 5px;
  color: red;
  font-size: 13px;
}

.rtl .group .error {
  text-align: right;
}

form .btn {
  background: #fff;
  color: #959595;
  border: none;
  padding: 10px 20px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  box-shadow: 0 1px 3px #0000001f, 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

form .btn:hover {
  color: #8b8b8b;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
}

form .btn.btn-link {
  background: #ed2424;
  color: #fdd3d3;
}

form .btn.btn-link:hover {
  background: #c81c1c;
  color: #fddede;
}

form .btn.btn-submit {
  background: #ed2424;
  color: #fbbcbc;
}

form .btn.btn-submit:hover {
  background: #c81c1c;
  color: #fddede;
}

form .btn.btn-cancel {
  background: #eee;
}

form .btn.btn-cancel:hover {
  background: #e1e1e1;
  color: #8b8b8b;
}

form .btn-box {
  text-align: center;
  margin: 50px 0;
}

input[type="radio"] {
  background-color: #fff;
  margin: 0;
  cursor: pointer;
  color: currentColor;
  width: 23px;
  height: 23px;
  border: 0.15em solid currentColor;
  border-radius: 50%;
  display: grid;
  place-content: center;
  transform: translateY(-0.075em);
  appearance: none;
  -webkit-appearance: none;
}

input[type="radio"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background: #ed2424;
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

.iti--allow-dropdown {
  width: 100%;
}

.rtl .iti--allow-dropdown .iti__flag-container .iti__selected-flag {
  flex-direction: row-reverse;
}

.rtl .iti--allow-dropdown .iti__flag-container .iti__country-list {
  left: 0;
  text-align: right;
}

.iti--allow-dropdown #mobile_input_placeholder {
  left: 50px;
}

.rtl .iti--allow-dropdown #mobile_input_placeholder {
  text-align: right;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input#mobile_input {
  padding-right: 6px;
  padding-left: 52px;
  width: calc(100% - 59px);
}

.checkmark-cont {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.rtl .checkmark-cont {
  padding-left: unset;
  padding-right: 35px;
  text-align: right;
}

.checkmark-cont input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark-cont .checkmark {
  position: absolute;
  top: -5px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #d7d7d7;
  border-radius: 4px;
}

.rtl .checkmark-cont .checkmark {
  left: unset;
  right: 0;
}

.checkmark-cont:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkmark-cont input:checked ~ .checkmark {
  background-color: #ed2424;
  border-radius: 4px;
}

.auth-model {
  display: flex;
  flex-direction: row;
  gap: 18px;
  max-height: 80vh;
  overflow-y: auto;
  margin-top: 1em;
}

.auth-model .login-section {
  width: 66.66%;
}

.auth-model .register-section {
  width: 33.33%;
  padding: 0 1.6em;
}

.auth-model .divider {
  background-color: #000000;
  width: 1px;
  padding-block: 30px;
}

.auth-model .divider {
  display: block;
}

.auth-model .login-remember-me-forgot-pass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2em;
}

.auth-model .login-remember-me-forgot-pass a {
  color: #ed2424;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 500;
}

.auth-model .login-remember-me-forgot-pass a {
  font-size: 11px;
}

.auth-model .sign-in-btn {
  margin-top: 2.5rem;
}

.Which-gaming-platform {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
}

.used_platform-check {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-inline-end: 1.5rem;
}

.used_platform-check label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
}

.small-screen-auth {
  display: none;
}

@media only screen and (max-width: 720px) {
  .small-screen-auth {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
  }
  .auth-model {
    display: none;
    flex-direction: column-reverse;
    gap: 18px;
  }

  .auth-model .divider {
    width: 100%;
    height: 1px;
    margin-block: 30px;
    padding: 0.25px;
  }

  .auth-model .login-section,
  .auth-model .register-section {
    width: 100%;
    padding: unset;
  }

  .Which-gaming-platform {
    flex-direction: column;
  }

  .name-cont, .email-cont, .pass-cont {
    width: 100%;
  }
}

@media only screen and (max-width: 512px) {
  .used_platform-check {
    justify-content: flex-start;
    gap: 0.5rem;
    padding-inline-end: 0;
  }
}

/* 


.section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #f4f4f4;
  padding: 20px;
}

.section .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.section .menu li {
  position: relative;
}

.section .menu li a {
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
}

.section .menu li a:hover {
  background-color: red;
  color: white;
}

.section .menu li .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f4f4f4;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  z-index: 20000;
}

.section .menu li:hover .submenu {
  display: block;
}

.section .menu li .submenu li {
  position: relative;
}

.section .menu li .submenu li .submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #f4f4f4;
  border: 1px solid #ccc;
}

.section .menu li .submenu li:hover .submenu {
  display: block;
}

.section .buttons {
  display: flex;
  gap: 10px;
}

.section .buttons button {
  padding: 10px 20px;
  background-color: #555;
  color: white;
  border: none;
  cursor: pointer;
}

.section .buttons button:hover {
  background-color: red;
}

@media (max-width: 768px) {
  .section {
      flex-direction: column;
      align-items: flex-start;
  }

  .section .menu {
      flex-direction: column;
      width: 100%;
  }

  .section .menu li {
      width: 100%;
  }

  .section .menu li .submenu {
      position: static;
  }

  .section .buttons {
      width: 100%;
      justify-content: space-between;
      margin-top: 10px;
  }

  .section .buttons button {
      width: 48%;
  }
} */

/* General Reset */
.navbar * {
  margin: 0;
  box-sizing: border-box;
  z-index: 900;
}

/* Navbar Styling */
.navbar {
  background-color: #fff;
  color: #231f20;
  border-bottom: 1px solid #00000024;
  font-weight: 700;
  font-family: Arial, sans-serif;
  padding: 0 0 4px 0;
  position: relative;
  z-index: 10012;
}

.navbar > ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 100vw;
  list-style-type: none; /* Hide list decoration points */
  padding-inline-start: 0;
}

.navbar ul li {
  position: relative;
  white-space: nowrap;
  list-style-type: none; /* Hide list decoration points */
}

.navbar ul ul {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #00000024;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
  list-style-type: none; /* Hide list decoration points */
}

.navbar > ul > li ul {
  top: 100%;
  left: 0;
}

.navbar > ul > li ul ul {
  top: 0;
  left: 100%;
}

.navbar > ul > li:hover > ul,
.navbar > ul > li li:hover > ul {
  display: block;
  opacity: 1;
  transform: translateY(0);
  padding: 0;
  width: inherit;
}

/* Main Menu Items */
.navbar > ul > li > a {
  position: relative;
  display: inline-block;
  padding: 1rem;
  color: #231f20;
  text-decoration: none;
  border-bottom: 5px solid transparent;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.navbar > ul > li > a.active {
  color: #ff0c0c;
}
.navbar > ul > li > a:hover {
  color: #ff0c0c;
  border-bottom: 5px solid #ff0c0c;
}

.navbar > ul > li > form > button {
  background: none;
  border: none;
  padding: 1rem;
  color: #231f20;
  text-decoration: none;
  border-bottom: 5px solid transparent;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  width: 100%;
  text-align: left;
}

.navbar > ul > li > form > button:hover {
  color: #ff0c0c;
  border-bottom: 5px solid #ff0c0c;
}

/* Submenu Items */
.navbar ul ul li a {
  padding: 0.75rem 1rem;
  display: block;
  color: #231f20;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar ul ul li a:hover,
.navbar ul ul li button:hover {
  background-color: #ff0c0c;
  color: #fff;
}

/* Arrow Icons */
.navbar a:not(:only-child)::after {
  content: none; /* Remove the old ">" */
}

.navbar li:hover > a {
  transform: rotate(0deg); /* Point arrow downward on hover */
}

.navbar a:not(:only-child) i {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  transform: rotate(-90deg); /* Point arrow to the right by default */
}

.navbar li:hover > a > i {
  transform: rotate(0deg); /* Point arrow downward on hover */
}

.navbar ul li button {
  background: none;
  border: none;
  padding: 0.75rem 1rem;
  padding-bottom: 0.5em;
  color: #231f20;
  text-decoration: none;
  border-bottom: 5px solid transparent;
  font-weight: 700;
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0;
}

/* Smooth Transitions */
.navbar ul,
.navbar ul li,
.navbar ul li a,
.navbar ul li button,
.navbar ul ul {
  transition: all 0.3s ease;
}

.top-nav {
  background-color: #373737;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1000;
  box-shadow: 0px 3px 6px 0px #0000006e;
}

.top-nav p {
  margin: 0;
  color: #fafafa;
  padding-block: 1.5rem;
  font-size: 1.7vw;
}

@media (max-width: 800px) {
  .top-nav p {
    font-size: 2vw;
  }
}

@media (max-width: 480px) {
  .top-nav p {
    font-size: 2.2vw;
  }
}

.top-nav p span {
  color: #ff0c0c;
  font-weight: 800;
}

.top-nav .divider {
  margin-inline: 2rem;
  background-color: #fafafa;
  width: 1px;
  height: 2rem;
}

.checkmark-cont .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkmark-cont input ~ .checkmark:after {
  display: block;
}

.checkmark-cont .checkmark:after {
  left: 9px;
  top: 6px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkmark-cont a {
  text-decoration: none;
  color: #ed2424;
  font-weight: 600;
}

.register-btn {
  background-color: #ed2424;
  font-size: 18px;
  font-family: "Inter";
  font-weight: 600;
}

.register-btn {
  font-family: "Tajawal";
}

.register-btn:disabled {
  background-color: #ddd;
  cursor: default;
}

.group input:focus ~ label#mobile_input_placeholder,
.group input:valid ~ label#mobile_input_placeholder,
.group textarea:focus ~ label#mobile_input_placeholder,
.group textarea:valid ~ label#mobile_input_placeholder {
  left: 0;
}

.modal-inset form#register_form .name-cont,
.modal-inset form#register_form .email-cont,
.modal-inset form#register_form .store-mail-list-cont {
  display: flex;
  gap: 2em;
  width: 100%;
}

.modal-inset form#register_form .name-cont .group,
.modal-inset form#register_form .email-cont .group,
.modal-inset form#register_form .store-mail-list-cont .group {
  width: 100%;
}

.modal-inset form#register_form .pass-cont {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}

.modal-inset form#register_form .pass-cont .group {
  width: 100%;
}

.modal-inset form#register_form .store-mail-list-cont .mail-list-cont {
  width: 100%;
  margin-top: -2.9em;
  text-align: left;
}

.rtl .modal-inset form#register_form .store-mail-list-cont .mail-list-cont {
  text-align: right;
}

.modal-inset form#register_form .store-mail-list-cont .mail-list-cont p {
  margin-top: 0;
}

.rtl .modal-inset form#register_form .store-mail-list-cont .mail-list-cont p {
  text-align: right;
}

.modal-inset
  form#register_form
  .store-mail-list-cont
  .mail-list-cont
  .mail-list-check {
  display: flex;
  gap: 1.5em;
  margin-top: 0.8em;
  margin-bottom: 5px;
}

.modal-inset
  form#register_form
  .store-mail-list-cont
  .mail-list-cont
  .mail-list-check
  label {
  display: flex;
  gap: 0.5em;
  cursor: pointer;
  font-size: 17px;
}

.modal-inset form#register_form .agreement-cont {
  margin: 1.5em 0;
}

.spinner {
  -webkit-animation: rotator 1.4s linear infinite;
  animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite,
    colors 5.6s ease-in-out infinite;
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
  0% {
    stroke: #4285f4;
  }
  25% {
    stroke: #de3e35;
  }
  50% {
    stroke: #f7c223;
  }
  75% {
    stroke: #1b9a59;
  }
  100% {
    stroke: #4285f4;
  }
}

@keyframes colors {
  0% {
    stroke: #4285f4;
  }
  25% {
    stroke: #de3e35;
  }
  50% {
    stroke: #f7c223;
  }
  75% {
    stroke: #1b9a59;
  }
  100% {
    stroke: #4285f4;
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}

.cd-nugget-info {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 50px;
  line-height: 50px;
  top: 0;
  left: 0;
}

.cd-nugget-info a {
  position: relative;
  font-size: 14px;
  color: #ed2424;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.no-touch .cd-nugget-info a:hover {
  opacity: 0.8;
}

.cd-nugget-info span {
  vertical-align: middle;
  display: inline-block;
}

.cd-nugget-info span svg {
  display: block;
}

.cd-nugget-info .cd-nugget-info-arrow {
  fill: #ed2424;
}

/* -------------------------------- 

Basic Style

-------------------------------- */
.cd-breadcrumb,
.cd-multi-steps {
  display: flex;
  padding: 0.5em 4em;
  margin: 2em auto;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 20px 0 #ededed;
  border: 1px solid #efefef;
}

.cd-breadcrumb::after,
.cd-multi-steps::after {
  clear: both;
  content: "";
  display: table;
}

.cd-breadcrumb li,
.cd-multi-steps li {
  display: flex;
  align-items: center;
  justify-content: revert;
  float: left;
  margin: 0.5em 0;
}

.cd-breadcrumb li::after,
.cd-multi-steps li::after {
  /* this is the separator between items */
  display: inline-block;
  content: "\00bb";
  margin: 0 0.6em;
  color: #959fa5;
}

.cd-breadcrumb li:last-of-type::after,
.cd-multi-steps li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}

.cd-breadcrumb li > *,
.cd-multi-steps li > * {
  /* single step */
  display: inline-block;
  font-size: 0.6em;
  text-decoration: none;
  color: #2c3f4c;
}

.cd-breadcrumb li.current > *,
.cd-multi-steps li.current > * {
  /* selected step */
  color: #fd2f2f;
  font-weight: 600;
  font-style: unset;
}

.no-touch .cd-breadcrumb a:hover,
.no-touch .cd-multi-steps a:hover {
  /* steps already visited */
  color: #ed2424;
}

.cd-breadcrumb.custom-separator li::after,
.cd-multi-steps.custom-separator li::after {
  /* replace the default separator with a custom icon */
  content: "";
  height: 16px;
  width: 16px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-separator.svg)
    no-repeat center center;
  vertical-align: middle;
}

.rtl .cd-breadcrumb.custom-separator li::after {
  transform: rotateZ(180deg);
}

.cd-breadcrumb.custom-icons li > *::before,
.cd-multi-steps.custom-icons li > *::before {
  /* add a custom icon before each item */
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 0.4em;
  margin-top: -2px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-icons-01.svg)
    no-repeat 0 0;
  vertical-align: middle;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(2) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(2) > *::before {
  /* change custom icon using image sprites */
  background-position: -20px 0;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(3) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(3) > *::before {
  background-position: -40px 0;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(4) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(4) > *::before {
  background-position: -60px 0;
}

.cd-breadcrumb.custom-icons li.current:first-of-type > *::before,
.cd-multi-steps.custom-icons li.current:first-of-type > *::before {
  /* change custom icon for the current item */
  background-position: 0 -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(2) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(2) > *::before {
  background-position: -20px -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(3) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(3) > *::before {
  background-position: -40px -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(4) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(4) > *::before {
  background-position: -60px -20px;
}

.checkbox-cont {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.checkbox-cont .checkbox {
  width: 25px;
  height: 25px;
  position: relative;
}

.checkbox-cont .checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  opacity: 0;
  font-size: 14px;
  user-select: none;
}

.checkbox-cont .checkbox input[type="checkbox"]:checked + label svg path {
  stroke-dashoffset: 0;
}

.checkbox-cont .checkbox [type="checkbox"] + label {
  --d: 18px;
  display: block;
  border: 3px solid #898989;
  width: var(--d);
  height: var(--d);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.checkbox-cont .checkbox [type="checkbox"] + label:active {
  transform: scale(1.05);
  border-radius: 30px;
}

.checkbox-cont .checkbox [type="checkbox"] + label svg {
  pointer-events: none;
  padding: 3px;
}

.checkbox-cont .checkbox [type="checkbox"] + label svg path {
  fill: none;
  stroke: #333;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 101;
  transition: all 350ms cubic-bezier(1, 0, 0.37, 0.91);
}

.checkbox-cont label {
  cursor: pointer;
}

.search-cont input {
  border: none;
  padding: 0.7em 1em;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  font-family: "Inter";
  color: black;
  box-shadow: 0px 0px 6px 0px #00000050;
}

.rtl .search-cont input {
  font-family: "Tajawal";
  text-align: right;
}

.search-cont input:focus-visible {
  outline: none;
}

.search-cont form {
  display: flex;
  gap: 0;
  height: 37px;
}

.rtl .search-cont form {
  flex-direction: row-reverse;
}

.search-cont i {
  padding: 0.3em 1.1em;
  background-color: #ed2424;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  font-size: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 28.5px;
}

.search-cont button[type="submit"] {
  padding: 0;
  background: none;
  display: flex;
  color: white;
  border: none;
  margin-left: -3px;
}

.rtl .search-cont button[type="submit"] {
  margin-left: unset;
  margin-right: -3px;
}

.modal-frame[data-modal-path="product_var_options"] .modal-inset {
  min-width: unset;
  min-height: unset;
}

.modal-frame[data-modal-path="product_var_options"].state-appear
  .modal-inset
  .modal-body-cont
  .modal-body {
  width: 300px;
  height: unset;
}

.modal-frame[data-modal-path="product_var_options"].state-appear
  .modal-inset
  .modal-body-cont
  .modal-body
  .variable-product-select-cont {
  width: 100%;
}

.modal-frame[data-modal-path="product_var_options"].state-appear
  .modal-inset
  .modal-footer
  button {
  margin-top: 1em;
}

.variable-product-select-option-form .form-check-label {
  margin-top: 1em;
  display: block;
  font-size: 17px;
  font-weight: 500;
}

.variable-product-select-option-form .form-check {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.8em;
}

.variable-product-select-option-form .form-check .form-check-option {
  position: relative;
}

.modal-frame[data-modal-path="product_var_options"]
  .variable-product-select-option-form
  .form-check
  .form-check-option {
  width: 100%;
}

.variable-product-select-option-form
  .form-check
  .form-check-option
  .form-check-input {
  background-color: #fff;
  margin: 0;
  cursor: pointer;
  color: currentColor;
  width: 180px;
  height: 50px;
  border: 3px solid #787878;
  border-radius: 10px;
  display: grid;
  place-content: center;
  transform: unset;
  appearance: none;
  -webkit-appearance: none;
}

.modal-frame[data-modal-path="product_var_options"]
  .variable-product-select-option-form
  .form-check
  .form-check-option
  .form-check-input {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.variable-product-select-option-form
  .form-check
  .form-check-option
  .form-check-input::before {
  transform: scale(0);
  width: 175px;
  height: 46px;
  border-radius: 7px;
}

.modal-frame[data-modal-path="product_var_options"]
  .variable-product-select-option-form
  .form-check
  .form-check-option
  .form-check-input::before {
  width: 100%;
}

.variable-product-select-option-form
  .form-check
  .form-check-option
  .form-check-input:checked::before {
  transform: scale(1);
}

.variable-product-select-option-form .form-check .form-check-option label {
  position: absolute;
  color: black;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  cursor: pointer;
}

.variable-product-select-option-form
  .form-check
  .form-check-option
  .form-check-input:checked
  ~ label {
  color: white;
}

.variable-option-input-cont {
  margin-top: 1em;
  display: flex;
  align-items: center;
  border: 2px solid #b0b0b0;
  border-radius: 8px;
  overflow: hidden;
}

.variable-option-input-cont input {
  width: 100%;
  padding: 1em;
  border: none;
  font-family: "FontAwesome";
  letter-spacing: 5px;
}

.variable-option-input-cont #currency_container {
  font-weight: bold;
  color: #757575;
  padding: 0 1em;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -500px;
  width: 400px;
  height: 100%;
  background-color: #ffffff;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 10013 !important;
  border-right: 2px solid #000000;
  box-shadow: 2px -1px 10px rgb(0 0 0 / 42%);
  overflow: scroll;
  scrollbar-width: thin;
  scrollbar-color: white black;
}

.sidebar.open {
  left: 0;
}

.sidebar a {
  border: none;
  text-decoration: none;
}

.sidebar .logo {
  width: 100%;
  margin-bottom: 20px;
}

.sidebar .logo img {
  max-width: 120px;
}

.sidebar .search {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #dbdbdb;
  box-shadow: 0 0 10px 0px #dbdbdb;
  border-radius: 7px;
  padding: 0.5em 1em;
  width: 90%;
  gap: 5px;
}

.sidebar .search i {
  color: black;
}

.sidebar .search input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-size: medium;
  border: none;
  outline: none;
}

.sidebar .menu-item {
  width: 95%;
  margin: 20px 0 20px;
  margin-left: 5%;
  background-color: #ffffff;
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #5e5e5e;
  cursor: pointer;
  position: relative;
}

.sidebar .menu-item .menu-item-icon {
  height: 65px;
  width: 65px;
  background-color: #ffffff;
  box-shadow: 0px 4px 10px 0px #00000033;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.sidebar .menu-item .menu-item-icon img {
  width: 30px;
}

.sidebar .menu-item .menu-item-text {
  font-weight: 700;
  font-size: 20px;
  color: #5e5e5e;
}

.sidebar .menu-item:hover .menu-item-text,
.sidebar .menu-item.selected .menu-item-text {
  color: white;
}
.sidebar .menu-item:hover .menu-item-icon,
.sidebar .menu-item.selected .menu-item-icon {
  background-color: #ff0c0c;
}
.sidebar .menu-item:hover .menu-item-icon img,
.sidebar .menu-item.selected .menu-item-icon img {
  filter: invert(1);
}

.sidebar .menu-item:hover,
.sidebar .menu-item.selected {
  background-color: #000000;
}

.sidebar .menu-item:hover::after,
.sidebar .menu-item.selected::after {
  content: "";
  background-color: #000000;
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
}

.sidebar .menu-item .extra-shape1 {
  background-color: transparent;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -20px;
  right: -20px;
  width: 20px;
  height: 20px;
}

.sidebar .menu-item .extra-shape1 .semi-circle1 {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 50%;
  display: none;
}

.sidebar .menu-item:hover .extra-shape1,
.sidebar .menu-item.selected .extra-shape1,
.sidebar .menu-item:hover .extra-shape2,
.sidebar .menu-item.selected .extra-shape2 {
  background-color: #000000;
}

.sidebar .menu-item .extra-shape2 {
  background-color: transparent;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -20px;
  right: -20px;
  width: 20px;
  height: 20px;
}

.sidebar .menu-item .extra-shape2 .semi-circle2 {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  border-top-right-radius: 50%;
  display: none;
}

.sidebar .menu-item:hover .extra-shape1 .semi-circle1,
.sidebar .menu-item.selected .extra-shape1 .semi-circle1,
.sidebar .menu-item:hover .extra-shape2 .semi-circle2,
.sidebar .menu-item.selected .extra-shape2 .semi-circle2 {
  display: block;
}

.toggle-btn {
  height: 50px;
  width: 50px;
  position: relative;
  top: 30px;
  left: 20px;
  background-color: #ff0c0c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10011 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  filter: opacity(1);
  box-shadow: 3px 3px 10px 1px #00000073;
}

.toggle-btn.open {
  left: 520px;
  filter: opacity(0);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: red;
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center;
  font-family: ui-monospace;
  justify-content: center;
  cursor: pointer;
  font-size: 32px;
  font-weight: bold;
}
.sidebar.open .close-btn {
  display: flex;
}

.sidebar .menu-item.collapsible {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-direction: column;
}

.sidebar .menu-item.collapsible .arrow-icon {
  margin-left: auto;
  padding-inline: 8px;
  margin-top: 5px;
}
.sidebar .menu-item.collapsible .arrow-icon img {
  width: 20px;
  filter: invert(1);
  transition: all 0.3s ease-in-out;
}
.sidebar .menu-item.collapsible:hover .arrow-icon img,
.sidebar .menu-item.collapsible.selected .arrow-icon img {
  filter: invert(0);
}

/* .sidebar .menu-item.collapsible:hover > .submenu,
.sidebar .menu-item.collapsible.selected > .submenu {
  height: 100%;
  transition: height 0.3s ease-in-out, padding 0.3s ease-in-out;
} */

.collapsible.open .arrow-icon img {
  transform: rotate(-180deg);
}

.collapsible .menu-item-header {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}

.collapsible .submenu {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease-in-out, padding 0.3s ease-in-out;
  padding-left: 20px;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}

.menu-item.collapsible:hover .submenu,
.menu-item.collapsible.selected .submenu {
  background-color: #000000;
}

.collapsible.open .submenu {
  height: auto;
  padding-left: 10px;
  padding-top: 15px;
}

.collapsible .submenu-item {
  padding: 10px 20px;
  font-size: 18px;
  color: #5e5e5e;
  cursor: pointer;
}

.menu-item.collapsible:hover .submenu-item,
.menu-item.collapsible.selected .submenu-item {
  color: #ffffff;
}

.collapsible .submenu-item:hover {
  color: #ff0c0c !important;
  font-weight: bold;
}

@media screen and (max-width: 1060px) {
  .main-container {
    margin: 2em;
    margin-top: -50px;
  }

  .search-cont form {
    height: 33px;
  }

  .search-cont input {
    font-size: 11px;
    width: 100px;
  }

  .search-cont i {
    height: 25px;
  }
}

@media screen and (max-width: 850px) {
  .search-cont form {
    height: 33px;
  }

  .search-cont input {
    font-size: 11px;
    width: 100px;
  }

  .search-cont i {
    height: 24.5px;
  }
}

@media only screen and (min-width: 768px) {
  .cd-multi-steps {
    padding: 0 4em;
  }

  .cd-breadcrumb li,
  .cd-multi-steps li {
    margin: 1.2em 0;
  }

  .cd-breadcrumb li::after,
  .cd-multi-steps li::after {
    margin: 0 1em;
  }

  .cd-breadcrumb li > *,
  .cd-multi-steps li > * {
    font-size: 0.7em;
  }
}

/* -------------------------------- 

Triangle breadcrumb

-------------------------------- */
@media only screen and (min-width: 768px) {
  .cd-breadcrumb.triangle {
    /* reset basic style */
    background-color: transparent;
    padding: 0;
  }

  .cd-breadcrumb.triangle li {
    position: relative;
    padding: 0;
    margin: 4px 4px 4px 0;
  }

  .cd-breadcrumb.triangle li:last-of-type {
    margin-right: 0;
  }

  .cd-breadcrumb.triangle li > * {
    position: relative;
    padding: 1em 0.8em 1em 2.5em;
    color: #2c3f4c;
    background-color: #edeff0;
    /* the border color is used to style its ::after pseudo-element */
    border-color: #edeff0;
  }

  .cd-breadcrumb.triangle li.current > * {
    /* selected step */
    color: #ffffff;
    background-color: #ed2424;
    border-color: #ed2424;
  }

  .cd-breadcrumb.triangle li:first-of-type > * {
    padding-left: 1.6em;
    border-radius: 0.25em 0 0 0.25em;
  }

  .cd-breadcrumb.triangle li:last-of-type > * {
    padding-right: 1.6em;
    border-radius: 0 0.25em 0.25em 0;
  }

  .no-touch .cd-breadcrumb.triangle a:hover {
    /* steps already visited */
    color: #ffffff;
    background-color: #2c3f4c;
    border-color: #2c3f4c;
  }

  .cd-breadcrumb.triangle li::after,
  .cd-breadcrumb.triangle li > *::after {
    /* 
    	li > *::after is the colored triangle after each item
    	li::after is the white separator between two items
    */
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    content: "";
    height: 0;
    width: 0;
    /* 48px is the height of the <a> element */
    border: 24px solid transparent;
    border-right-width: 0;
    border-left-width: 20px;
  }

  .cd-breadcrumb.triangle li::after {
    /* this is the white separator between two items */
    z-index: 1;
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
    border-left-color: #ffffff;
    /* reset style */
    margin: 0;
  }

  .cd-breadcrumb.triangle li > *::after {
    /* this is the colored triangle after each element */
    z-index: 2;
    border-left-color: inherit;
  }

  .cd-breadcrumb.triangle li:last-of-type::after,
  .cd-breadcrumb.triangle li:last-of-type > *::after {
    /* hide the triangle after the last step */
    display: none;
  }

  .cd-breadcrumb.triangle.custom-separator li::after {
    /* reset style */
    background-image: none;
  }

  .cd-breadcrumb.triangle.custom-icons li::after,
  .cd-breadcrumb.triangle.custom-icons li > *::after {
    /* 50px is the height of the <a> element */
    border-top-width: 25px;
    border-bottom-width: 25px;
  }

  @-moz-document url-prefix() {
    .cd-breadcrumb.triangle li::after,
    .cd-breadcrumb.triangle li > *::after {
      /* fix a bug on Firefix - tooth edge on css triangle */
      border-left-style: dashed;
    }
  }
}
/* -------------------------------- 

Custom icons hover effects - breadcrumb and multi-steps

-------------------------------- */
@media only screen and (min-width: 768px) {
  .no-touch
    .cd-breadcrumb.triangle.custom-icons
    li:first-of-type
    a:hover::before,
  .cd-breadcrumb.triangle.custom-icons li.current:first-of-type em::before,
  .no-touch
    .cd-multi-steps.text-center.custom-icons
    li:first-of-type
    a:hover::before,
  .cd-multi-steps.text-center.custom-icons li.current:first-of-type em::before {
    /* change custom icon using image sprites - hover effect or current item */
    background-position: 0 -40px;
  }

  .no-touch
    .cd-breadcrumb.triangle.custom-icons
    li:nth-of-type(2)
    a:hover::before,
  .cd-breadcrumb.triangle.custom-icons li.current:nth-of-type(2) em::before,
  .no-touch
    .cd-multi-steps.text-center.custom-icons
    li:nth-of-type(2)
    a:hover::before,
  .cd-multi-steps.text-center.custom-icons
    li.current:nth-of-type(2)
    em::before {
    background-position: -20px -40px;
  }

  .no-touch
    .cd-breadcrumb.triangle.custom-icons
    li:nth-of-type(3)
    a:hover::before,
  .cd-breadcrumb.triangle.custom-icons li.current:nth-of-type(3) em::before,
  .no-touch
    .cd-multi-steps.text-center.custom-icons
    li:nth-of-type(3)
    a:hover::before,
  .cd-multi-steps.text-center.custom-icons
    li.current:nth-of-type(3)
    em::before {
    background-position: -40px -40px;
  }

  .no-touch
    .cd-breadcrumb.triangle.custom-icons
    li:nth-of-type(4)
    a:hover::before,
  .cd-breadcrumb.triangle.custom-icons li.current:nth-of-type(4) em::before,
  .no-touch
    .cd-multi-steps.text-center.custom-icons
    li:nth-of-type(4)
    a:hover::before,
  .cd-multi-steps.text-center.custom-icons
    li.current:nth-of-type(4)
    em::before {
    background-position: -60px -40px;
  }
}
/* -------------------------------- 

Multi steps indicator 

-------------------------------- */
@media only screen and (min-width: 768px) {
  .cd-multi-steps {
    /* reset style */
    background-color: transparent;
    padding: 0;
    text-align: center;
  }

  .cd-multi-steps li {
    position: relative;
    float: none;
    margin: 0.4em 40px 0.4em 0;
  }

  .cd-multi-steps li:last-of-type {
    margin-right: 0;
  }

  .cd-multi-steps li::after {
    /* this is the line connecting 2 adjacent items */
    position: absolute;
    content: "";
    height: 4px;
    background: #edeff0;
    /* reset style */
    margin: 0;
  }

  .cd-multi-steps li.visited::after {
    background-color: #ed2424;
  }

  .cd-multi-steps li > *,
  .cd-multi-steps li.current > * {
    position: relative;
    color: #2c3f4c;
  }

  .cd-multi-steps.custom-separator li::after {
    /* reset style */
    height: 4px;
    background: #edeff0;
  }

  .cd-multi-steps.text-center li::after {
    width: 100%;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%) translateX(-1px);
    -moz-transform: translateY(-50%) translateX(-1px);
    -ms-transform: translateY(-50%) translateX(-1px);
    -o-transform: translateY(-50%) translateX(-1px);
    transform: translateY(-50%) translateX(-1px);
  }

  .cd-multi-steps.text-center li > * {
    z-index: 1;
    padding: 0.6em 1em;
    border-radius: 0.25em;
    background-color: #edeff0;
  }

  .no-touch .cd-multi-steps.text-center a:hover {
    background-color: #2c3f4c;
  }

  .cd-multi-steps.text-center li.current > *,
  .cd-multi-steps.text-center li.visited > * {
    color: #ffffff;
    background-color: #ed2424;
  }

  .cd-multi-steps.text-center.custom-icons li.visited a::before {
    /* change the custom icon for the visited item - check icon */
    background-position: 0 -60px;
  }

  .cd-multi-steps.text-top li,
  .cd-multi-steps.text-bottom li {
    width: 80px;
    text-align: center;
  }

  .cd-multi-steps.text-top li::after,
  .cd-multi-steps.text-bottom li::after {
    /* this is the line connecting 2 adjacent items */
    position: absolute;
    left: 50%;
    /* 40px is the <li> right margin value */
    width: calc(100% + 40px);
  }

  .cd-multi-steps.text-top li > *::before,
  .cd-multi-steps.text-bottom li > *::before {
    /* this is the spot indicator */
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: #edeff0;
  }

  .cd-multi-steps.text-top li.visited > *::before,
  .cd-multi-steps.text-top li.current > *::before,
  .cd-multi-steps.text-bottom li.visited > *::before,
  .cd-multi-steps.text-bottom li.current > *::before {
    background-color: #ed2424;
  }

  .no-touch .cd-multi-steps.text-top a:hover,
  .no-touch .cd-multi-steps.text-bottom a:hover {
    color: #ed2424;
  }

  .no-touch .cd-multi-steps.text-top a:hover::before,
  .no-touch .cd-multi-steps.text-bottom a:hover::before {
    box-shadow: 0 0 0 3px rgba(150, 192, 61, 0.3);
  }

  .cd-multi-steps.text-top li::after {
    /* this is the line connecting 2 adjacent items */
    bottom: 4px;
  }

  .cd-multi-steps.text-top li > * {
    padding-bottom: 20px;
  }

  .cd-multi-steps.text-top li > *::before {
    /* this is the spot indicator */
    bottom: 0;
  }

  .cd-multi-steps.text-bottom li::after {
    /* this is the line connecting 2 adjacent items */
    top: 3px;
  }

  .cd-multi-steps.text-bottom li > * {
    padding-top: 20px;
  }

  .cd-multi-steps.text-bottom li > *::before {
    /* this is the spot indicator */
    top: 0;
  }
}
/* -------------------------------- 

Add a counter to the multi-steps indicator 

-------------------------------- */
.cd-multi-steps.count li {
  counter-increment: steps;
}

.cd-multi-steps.count li > *::before {
  content: counter(steps) " - ";
}

@media only screen and (min-width: 768px) {
  .cd-multi-steps.text-top.count li > *::before,
  .cd-multi-steps.text-bottom.count li > *::before {
    /* this is the spot indicator */
    content: counter(steps);
    height: 26px;
    width: 26px;
    line-height: 26px;
    font-size: 1rem;
    color: #ffffff;
  }

  .cd-multi-steps.text-top.count li:not(.current) em::before,
  .cd-multi-steps.text-bottom.count li:not(.current) em::before {
    /* steps not visited yet - counter color */
    color: #2c3f4c;
  }

  .cd-multi-steps.text-top.count li::after {
    bottom: 11px;
  }

  .cd-multi-steps.text-top.count li > * {
    padding-bottom: 34px;
  }

  .cd-multi-steps.text-bottom.count li::after {
    top: 11px;
  }

  .cd-multi-steps.text-bottom.count li > * {
    padding-top: 34px;
  }
}

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: "Inter";
}

.rtl .custom-select {
  font-family: "Tajawal";
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: rgb(0, 0, 0) transparent transparent transparent;
}

.rtl .select-selected:after {
  right: unset;
  left: 10px;
  top: 25px;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent rgb(0, 0, 0) transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
  color: #626262;
  text-align: left;
  padding: 10px 10px 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1em;
}

.rtl .select-items div,
.rtl .select-selected {
  text-align: right;
}

.select-selected {
  border-bottom: 1px solid #626262;
}

.select-items div img,
.select-selected img {
  width: 40px;
  height: 23px;
  border-radius: 3px;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: white;
  top: -200px;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0px 0px 14px 0px #00000040;
  border: 1px solid #e7e7e7;
  height: 200px;
  overflow-y: auto;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.modal-frame[data-modal-path="language_country"] .modal-inset {
  min-width: 400px;
  min-height: unset;
}

.modal-frame[data-modal-path="language_country"] .modal-inset .modal-body {
  height: unset;
}

.modal-frame[data-modal-path="language_country"] .modal-inset .modal-footer {
  margin-top: 2em;
}

#language_country_form .custom-select select {
  display: none;
}

#language_country_form .language-list-cont,
#language_country_form .store-list-cont {
  width: 100%;
}

#language_country_form .language-list-cont,
#language_country_form .store-list-cont #displayed_and_purchased_gift_cards {
  text-align: initial;
  margin-top: -1px;
  margin-bottom: 0.5em;
  font-size: 13px;
  color: #4b4b4b;
}

#language_country_form .language-list-cont .select-items {
  top: 100%;
  height: unset;
}

#language_country_form .language-list-cont.only-lang .select-items {
  top: -65px;
}

@media screen and (max-width: 720px) {
  h2 {
    font-size: 20px;
  }

  .modal-frame[data-modal-path="register"] .modal-inset {
    min-width: 300px;
    padding: 1em;
  }

  .modal-frame[data-modal-path="register"] .modal-inset .modal-header h2 {
    font-size: 18px;
  }

  .modal-frame[data-modal-path="register"] .modal-inset .close-modal {
    top: 3px;
    right: 3px;
  }

  .modal-frame[data-modal-path="register"] .modal-inset .close-modal img {
    width: 30px;
    height: 30px;
  }

  .modal-frame[data-modal-path="register"] .modal-body p {
    font-size: 17px;
  }

  .modal-frame[data-modal-path="register"] .modal-body p.sub-p {
    font-size: 11px;
  }
}

@media screen and (max-width: 567px) {
  .cd-breadcrumb,
  .cd-multi-steps {
    padding: 0.5em 1.5em;
  }
}

@media screen and (max-width: 550px) {
  h2 {
    font-size: 18px;
  }

  .modal-frame[data-modal-path="register"] .modal-inset {
    margin: 0 1em;
  }

  .modal-frame[data-modal-path="register"]
    .modal-inset
    form#register_form
    .name-cont,
  .modal-frame[data-modal-path="register"]
    .modal-inset
    form#register_form
    .email-cont,
  .modal-frame[data-modal-path="register"]
    .modal-inset
    form#register_form
    .store-mail-list-cont {
    flex-flow: column;
    gap: unset;
  }

  .modal-frame[data-modal-path="register"]
    .modal-inset
    form#register_form
    .store-mail-list-cont
    .mail-list-cont {
    margin-top: 1em;
  }
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 16px;
  }

  .main-container {
    margin: 0 1em;
    margin-top: -70px;
  }
}

@media screen and (max-width: 480px) {
  .modal-frame[data-modal-path="product_var_options"].state-appear
    .modal-inset
    .modal-body-cont
    .modal-body {
    width: 225px;
  }
}

@media screen and (max-width: 450px) {
  .modal-frame[data-modal-path="language_country"] .modal-inset {
    min-width: 300px;
    padding: 1em;
  }

  .modal-frame[data-modal-path="language_country"]
    .modal-inset
    .modal-header
    h2 {
    font-size: 18px;
  }

  .modal-frame[data-modal-path="language_country"] .modal-inset .close-modal {
    top: 3px;
    right: 3px;
  }

  .modal-frame[data-modal-path="language_country"]
    .modal-inset
    .close-modal
    img {
    width: 30px;
  }

  .modal-frame[data-modal-path="language_country"] .modal-inset .modal-body {
    overflow: auto;
    height: 60vh;
    font-size: 14px;
    padding: 0;
  }

  .modal-frame[data-modal-path="language_country"] .modal-body p {
    font-size: 14px;
  }

  .modal-frame[data-modal-path="language_country"] .register-btn {
    font-size: 14px;
  }
}
