@import '../abstract/_all';
.c-primary {
  color: $c-primary;
}
.c-black {
  color: $c-black;
}
.c-dark-grey {
  color: $c-dark-grey;
}
.c-middle-grey {
  color: $c-middle-grey;
}
.c-light-grey {
  color: $c-light-grey;
}
.c-white {
  color: $c-white;
}
.second-color {
  color: $c-dark-grey;
}
.is-info {
  color: $c-info;
}
.c-error {
  color: $c-error;
}
.c-sale {
  color: $c-sale;
}
.c-info {
  color: $c-info;
}
.c-success {
  color: $c-success;
}
.c-valid {
  color: $c-valid;
}
.c-warning {
  color: $c-warning;
}
.c-notice {
  color: $c-notice;
}
.c-feel {
  color: $c-feel;
}
.c-feel-dark {
  color: $c-feel-dark;
}
.c-feel-light {
  color: $c-feel-light;
}
.c-tier-silver {
  color: $c-tier-silver;
}
.c-tier-platinum {
  color: $c-tier-platinum;
}
.c-tier-gold {
  color: $c-tier-gold;
}
.c-limited {
  color: $c-limited;
}
.bg-clear {
  background-color: $c-white;
}
.bg-light {
  background-color: $bg-light;
  color: $c-primary;
}
.bg-cream {
  background-color: $c-light-grey;
}
.bg-feel-light {
  background-color: $c-feel-light;
}
.bg-feel-dark {
  background-color: $c-feel-dark;
}
.bg-dark-grey {
  background-color: $c-dark-grey;
}
.bg-middle-grey {
  background-color: $c-middle-grey;
}
.bg-light-grey {
  background-color: $c-light-grey;
}
.bg-primary {
  background-color: $c-primary;
}
.bg-secondary {
  background-color: $c-secondary;
}
.bg-accent {
  background-color: $c-accent;
}
.bg-white {
  background-color: $c-white;
}
.bg-black {
  background-color: $c-black;
}
.bg-sale {
  background-color: $c-sale;
}
.bg-error {
  background-color: $c-error;
}
.bg-info {
  background-color: $c-info;
  color: $c-white;
}
.bg-success {
  background-color: $c-success;
  color: $c-white;
}
.bg-feel {
  background-color: $c-feel;
  color: $c-white;
}
.bg-warning {
  background-color: $c-warning;
}

.bg-notice {
  background-color: $c-notice;
}
.bg-alert {
  background-color: $c-alert;
}

.bg-dark {
  background-color: $bg-black;
  color: $c-bg-dark;
}
.bg-tier-silver {
  background-color: $c-tier-silver;
}
.bg-tier-platinum {
  background-color: $c-tier-platinum;
}
.bg-tier-gold {
  background-color: $c-tier-gold;
}
.bg-cover {
  background-position: center center;
  background-size: cover;
}
.bold {
  @include font-bold;
}
.semibold {
  @include font-semibold;
}
b {
  color: $c-secondary;
}
.ttc {
  text-transform: capitalize;
}
.margin-auto {
  margin: 0 auto;
}
.fl-left {
  float: left;
}
.fl-right {
  float: right;
}
.relative {
  position: relative;
}
.p-relative {
  position: relative;
}
.p-absolute {
  position: absolute;
}
.t-0 {
  top: 0;
}
.banner-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  padding: 16px;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-transform-none {
  text-transform: none;
}
.text-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.has-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: top;
  width: 100%;
}
.has-ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.max-ellipsis {
  max-width: 250px;
  @media (min-width: $break-sm) {
    max-width: 500px;
  }
}
.video-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.img-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  img {
    max-width: initial;
  }
}
.center-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
hr {
  width: 100%;
  margin: 0;
  border-top: var(--line-width) solid $c-primary;
  border-bottom: var(--line-width) solid transparent;
  border-left: var(--line-width) solid transparent;
  border-right: var(--line-width) solid transparent;
}
.only-mobile {
  display: inline-block;
  @media (min-width: $break-sm) {
    display: none;
  }
}
.only-desktop {
  @media (max-width: #{$break-sm - 1}) {
    display: none !important;
  }
}
.ico-r svg {
  position: relative;
  left: 8px;
  display: inline-block;
  vertical-align: text-top;
}
.ico {
  &.ico-l {
    display: flex;
    align-items: center;
    svg-icon,
    svg-icon2,
    md-icon {
      margin-right: 16px;
    }
  }
}
.hg-status {
  position: relative;
  padding-left: 16px;
  &::before {
    position: absolute;
    content: '';
    border-radius: 50%;
    overflow: hidden;
    top: 5px;
    left: 0;
    width: 8px;
    height: 8px;
  }
}
.hg-status-a {
  color: $c-error;
  &::before {
    background-color: $c-error;
  }
}
.hg-status-b {
  color: $c-info;
  &::before {
    background-color: $c-info;
  }
}
.hg-status-c {
  color: $c-error;
  &::before {
    background-color: $c-error;
  }
}
.hg-status-d {
  color: $c-dark-grey;
  &::before {
    background-color: $c-dark-grey;
  }
}
.block-right {
  margin-left: auto;
}
.block-left {
  margin-right: auto;
}
.sm\:hidden {
  @media (max-width: #{$break-sm - 1}) {
    display: none !important;
  }
}
.md\:hidden {
  @media (max-width: #{$break-md - 1}) {
    display: none !important;
  }
}
.lg\:hidden {
  @media (max-width: #{$break-lg - 1}) {
    display: none !important;
  }
}
.xl\:hidden {
  @media (max-width: #{$break-xl - 1}) {
    display: none !important;
  }
}
.sm\:visible {
  @media (min-width: $break-sm) {
    display: none !important;
  }
}
.md\:visible {
  @media (min-width: $break-md) {
    display: none !important;
  }
}
.lg\:visible {
  @media (min-width: $break-lg) {
    display: none !important;
  }
}
.xl\:visible {
  @media (min-width: $break-xl) {
    display: none !important;
  }
}
.sm\:order-last {
  @media (min-width: $break-sm) {
    order: 3;
  }
}
.md\:order-last {
  @media (min-width: $break-md) {
    order: 3;
  }
}
.lg\:order-last {
  @media (min-width: $break-lg) {
    order: 3;
  }
}
.reverse {
  flex-wrap: wrap-reverse;
}
.smmax\:reverse {
  @media (max-width: #{$break-sm - 1}) {
    flex-wrap: wrap-reverse;
  }
}
.mdmax\:reverse {
  @media (max-width: #{$break-md - 1}) {
    flex-wrap: wrap-reverse;
  }
}
.lgmax\:reverse {
  @media (max-width: #{$break-lg - 1}) {
    flex-wrap: wrap-reverse;
  }
}
.mdmax\:px-48 {
  @media (max-width: #{$break-md - 1}) {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.text-12-l {
  font-family: $font-family-a-m;
  font-size: 12px;
}
strong {
  color: $c-primary;
  font-family: $font-family-a-b;
}
.bb-line {
  border-bottom: var(--line-width) solid $c-middle-grey;
}
.border-1 {
  border: var(--line-width) solid $c-primary;
}
.border-1-grey {
  border: var(--line-width) solid $c-middle-grey;
}
.border-1-light {
  border: var(--line-width) solid $c-light-grey;
}
.border-t {
  border-top: var(--line-width) solid $c-primary;
}
.border-r {
  border-right: var(--line-width) solid $c-primary;
}
.border-b {
  border-bottom: var(--line-width) solid $c-primary;
}
.border-b-grey {
  border-bottom: var(--line-width) solid $c-light-grey;
}
.border-l {
  border-left: var(--line-width) solid $c-primary;
}
.border-b2 {
  border-top: none;
  border-bottom: var(--line-width) solid $c-primary;
}
.border-t2 {
  border-top: var(--line-width) solid $c-primary;
}
.border-15 {
  border: var(--line-width) solid $c-primary-15;
}
.border-b-15 {
  border-bottom: var(--line-width) solid $c-primary-15;
}
.border-r2 {
  border-right: var(--line-width) solid $c-primary;
}
.flex-vcenter {
  display: flex;
  align-items: center;
  [type='checkbox']:checked + label .icon,
  [type='checkbox']:not(:checked) + label .icon {
    position: absolute;
    top: 50%;
    margin-top: -9px;
  }
}
.only-mobile-flex {
  display: flex;
  @media (min-width: $break-sm) {
    display: flex;
  }
  @media (min-width: $break-md) {
    display: none;
  }
  @media (min-width: $break-lg) {
    display: none;
  }
}
.only-desktop-flex {
  display: none;
  @media (min-width: $break-sm) {
    display: none;
  }
  @media (min-width: $break-md) {
    display: flex;
  }
  @media (min-width: $break-lg) {
    display: flex;
  }
}
.p-view {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.p-view\:sm {
  @media (max-width: #{$break-sm - 1}) {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
}
.smmax\:p-view {
  @media (max-width: #{$break-sm - 1}) {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
  }
}
.text-faded {
  opacity: 0.5;
}
.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.cursor-pointer {
  cursor: pointer;
}
.ov-scroll {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.scrollbar::-webkit-scrollbar {
  background-color: $c-white;
  width: 16px;
}
.ov-custom {
  &::-webkit-scrollbar-track {
    background-color: rgba($c-light-grey, 10%);
  }
  &::-webkit-scrollbar-track:hover {
    background-color: rgba($c-light-grey, 10%);
  }
  &::-webkit-scrollbar-thumb {
    background-color: rgba($c-dark-grey, 60%);
    border-radius: 16px;
    border: 3px solid $c-white;
  }
  &::-webkit-scrollbar-thumb:hover {
    background-color: rgba($c-dark-grey, 60%);
    border: 2px solid $c-light-grey;
  }
  &::-webkit-scrollbar-button {
    display: none;
  }
}
.svg-iflex {
  display: flex;
  align-content: center;
  align-items: center;
  margin: 4px;
}
.svg-inline {
  display: inline-block;
  vertical-align: middle;
  margin: 4px;
}
.ttu,
.btn-primary,
.btn--full,
.btn-secondary,
.form-input-label-2 label {
  text-transform: uppercase;
}
.product-fadein {
  animation-delay: 1s;
  animation-duration: 3s;
  animation-name: fadein;
}
.vert-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.video-wrap {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.p-wrap {
  position: relative;
  width: 100%;
}
.charging {
  position: relative;
  height: 100%;
}
.arrow-right {
  float: right;
}
.w-100 {
  width: 100%;
}
.mw-sm {
  max-width: $container-4;
}
.mw-md {
  max-width: $container-6;
}
.col-lg-4 > .mw-md {
  max-width: $container-6;
}
.mw-lg {
  max-width: $container-9;
}
.w-max {
  width: max-content;
}
.hidden {
  display: none !important;
}

.d-block {
  display: block;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-auto {
  flex: 1 1 auto;
}
.flex-initial {
  flex: 0 1 auto;
}
.flex-none {
  flex: none;
}
.has-light {
  color: $c-white;
  hr {
    border-top: 1px solid $c-white;
  }
}
.smmax\:flex {
  @media (max-width: #{$break-sm - 1}) {
    display: flex;
  }
}
.mdmax\:flex {
  @media (max-width: #{$break-md - 1}) {
    display: flex;
  }
}
.lgmax\:flex {
  @media (max-width: #{$break-lg - 1}) {
    display: flex;
  }
}
.sm\:flex {
  @media (min-width: $break-sm) {
    display: flex;
  }
}
.md\:flex {
  @media (min-width: $break-md) {
    display: flex;
  }
}
.lg\:flex {
  @media (min-width: $break-lg) {
    display: flex;
  }
}
.pe-none {
  pointer-events: none;
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-all {
  pointer-events: all;
}

.font-l {
  font-family: $font-family-a-l;
}
.font-r {
  font-family: $font-family-a-r;
}
.font-m {
  font-family: $font-family-a-m;
}
.font-b {
  font-family: $font-family-a-b;
}
.font-sb {
  font-family: $font-family-a-sb;
}
.absolute-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.free-product {
  color: $c-warning;
}
.is-invert {
  filter: invert(1);
}
.p-stick {
  position: sticky;
  top: 0;
  z-index: 100;
}
.m-0 {
  margin: 0;
}
.o-hidden {
  overflow: hidden;
}
.max-vw-35 {
  max-width: 35vw;
}
.reset-body {
  margin-left: -20px;
  margin-right: -20px;
  @media (min-width: $break-md) {
    margin-left: -40px;
    margin-right: -40px;
  }
}
.mdmax\:reset-body {
  @media (max-width: #{$break-md - 1}) {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.smmax\:reset-body {
  @media (max-width: #{$break-sm - 1}) {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.sm\:grid-4 {
  @media (max-width: #{$break-sm - 1}) {
    grid-template-columns: repeat(2, 1fr);
  }
}
.scrollcustom {
  overflow: auto;
  &::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  &::-webkit-scrollbar-track {
    background-color: rgba($c-black, 10%);
    border-radius: 10px;
  }
  &::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba($c-black, 60%);
  }
}
.min-scrollcustom-y {
  overflow: auto;
  &::-webkit-scrollbar {
    width: 1px;
    height: 1px;
  }
  &::-webkit-scrollbar-track {
    background-color: rgba($c-black, 10%);
    border-radius: 0;
  }
  &::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: rgba($c-black, 60%);
  }
}
.min-scrollcustom-hover {
  overflow: auto;
  &::-webkit-scrollbar {
    width: 0;
  }
  &::-webkit-scrollbar-track {
    background-color: rgba($c-black, 10%);
    border-radius: 0;
  }
  &::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba($c-black, 60%);
  }
}
.min-scrollcustom-x {
  overflow: auto;
  &::-webkit-scrollbar {
    height: 5px;
  }
  &::-webkit-scrollbar-track {
    background: $c-white;
    border-radius: 0;
  }
  &::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: $c-middle-grey;
  }
}
.min-scrollcustom-x.has-dark {
  overflow: auto;
  &::-webkit-scrollbar {
    height: 5px;
  }
  &::-webkit-scrollbar-track {
    background: $c-middle-grey;
    border-radius: 0;
  }
  &::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: $c-primary;
  }
}
.leading-1 {
  line-height: 1;
}
.tag-product {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}
.m--1 {
  margin-top: -1px;
}
.btn-group-bleed {
  .btn-group {
    margin-top: -1px;
  }
}
.is-active.btn-secondary {
  background-color: $c-primary;
  color: $c-white;
  border: 1px solid $c-primary;
}
.fixed-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.sidebar-overflow {
  height: 100vh;
  overflow: auto;
}
.is-through {
  text-decoration: line-through;
}
.gap-16 {
  gap: 16px;
}
.bg-primary-3 {
  background-color: $c-primary-3;
}
.bg-primary-15 {
  background-color: $c-primary-15;
}
.bg-primary-30 {
  background-color: $c-primary-30;
}
.bg-primary-60 {
  background-color: $c-primary-60;
}
.bg-primary-97 {
  background-color: $c-primary-97;
}
.bg-secondary-3 {
  background-color: $c-secondary-3;
}
.bg-secondary-15 {
  background-color: $c-secondary-15;
}
.bg-secondary-30 {
  background-color: $c-secondary-30;
}
.bg-secondary-60 {
  background-color: $c-secondary-60;
}
.bg-secondary-97 {
  background-color: $c-secondary-97;
}
.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

[lang^="de"],
//aleman
[lang^="zh"],
//chino
[lang^="zo"],
[lang^="eu"],
//euskera
[lang^="el"],
//griego
[lang^="tr"],
// turco
[lang^="ru"],
//ruso
[lang^="sr"],
//serbio
[lang^="uk"],
//ukraniano
[lang^="bg"],
//bulgaro
[lang^="ar"],
//arab emirates, egipto ,jordania, israel ,qatar , bahrain ,arabia saudi
[lang^="nl"] {
  body {
    font-family: Helvetica, Arial, sans-serif !important;
  }
  .ttu,
  .btn-primary,
  .btn--full,
  .btn-secondary,
  .form-input-label-2 label {
    text-transform: none;
  }
}
[lang^="zh"],
//chino
[lang^="zn"],
//chino
[lang^="ko"],
//coreano ko-KR
[lang^="vi"],
[lang^="el"],
//griego
[lang^="tr"],
// turco
[lang^="ru"],
//ruso
[lang^="sr"],
//serbio
[lang^="uk"],
//ukraniano
[lang^="bg"],
//bulgaro
[lang^="ar"] //arab emirates, egipto ,jordania, israel ,qatar , bahrain ,arabia saudi
{
  body {
    font-family: Helvetica, Arial, sans-serif !important;
  }
}
.no-scroll-x {
  overflow-x: hidden;
}
.no-scroll-y {
  overflow-y: hidden;
}
.has-scroll {
  overflow-y: auto;
}
.max-200 {
  max-width: 200px;
}
.sm\:max-0 {
  @media (min-width: $break-sm) {
    max-width: initial;
  }
}
.col-responsive {
  .col {
    box-sizing: border-box;
    min-width: 300px;
  }
}
.separator {
  border-bottom: 1px solid $c-white;
}

.blend-mode {
  color: white;
  mix-blend-mode: difference;
  background-blend-mode: difference;
}

.border-c-middle {
  border-color: $c-middle-grey;
}
.flex-grow-0 {
  flex-grow: 0;
}
.grow {
  flex-grow: 1;
}
.flex-grow {
  flex-grow: 1;
  overflow-y: auto;
}

.grow-0 {
  flex-grow: 0;
}

.no-cursor {
  cursor: default;
}

.no-relative {
  position: inherit;
}
