:root {
  --c-white: #fff;
  --c-black: #000;
  --c-dark: #23283a;
  --c-blue-dark: #223c52;
  --c-light: #f5f5f5;
  --c-green: #d4ffac;
  --c-aqua: #d0ffe9;
  --c-blue: #cdf9ff;
  --gr: linear-gradient(102deg, #91c83e -0.54%, #1fbbd8 97.47%),
    var(--Black, #23283a);
  --font-sans-serif: "Inter", sans-serif;
  --font-sans-serif-header: "GRIFTER", sans-serif;
  --font-serif: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --base-bg: var(--c-white);
  --base-ff: var(--font-sans-serif);
  --base-fz: 2rem;
  --base-lh: 1.2;
  --base-tc: var(--c-dark);
  --base-lc: inherit;
  --base-mw: 320px;
  --base-ts: 0.2s;
  --base-rd: 1.8rem;
  --gap: 15px;
  --btn-fz: 2rem;
  --btn-ff: var(--font-sans-serif);
  --btn-pd: 0.6em 1em;
  --btn-height: 2.4em;
  --btn-rd: 0.4em;
  --btn-bg: var(--c-dark);
  --btn-color: var(--c-white);
  --h-sized: 4.6rem;
  --h-s-h1: 4.2rem;
  --h-s-h2: 3.8rem;
  --h-s-h3: 3rem;
  --h-s-h4: 2.4rem;
  --h-s-h5: 2rem;
  --h-s-h6: 1.8rem;
  --container: calc(1240px + var(--gap) * 2);
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
*,
:after,
:before {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  position: relative;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--base-tc);
  background: var(--base-bg);
  font: var(--base-fz) / var(--base-lh) var(--base-ff);
  min-width: var(--base-mw);
  font-weight: 400;
  overflow-anchor: none;
}
.lity-active {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
.gm-style img {
  max-width: none;
}
* {
  text-decoration-thickness: 1px !important;
}
@font-face {
  font-family: Avenir Next;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/AvenirNext-Regular-08.ttf) format("truetype");
}
@font-face {
  font-family: Avenir Next Medium;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/AvenirNext-Medium-06.ttf) format("truetype");
}
@font-face {
  font-family: Avenir Next Demi Bold;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/AvenirNext-DemiBold-03.ttf) format("truetype");
}
@font-face {
  font-family: GRIFTER;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/grifterbold.otf) format("opentype");
}
.h,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 700;
  font-family: var(--font-sans-serif-header);
}
.h1:not(:last-child),
.h2:not(:last-child),
.h3:not(:last-child),
.h4:not(:last-child),
.h5:not(:last-child),
.h6:not(:last-child),
.h:not(:last-child),
h1:not(:last-child),
h2:not(:last-child),
h3:not(:last-child),
h4:not(:last-child),
h5:not(:last-child),
h6:not(:last-child) {
  margin-bottom: 3rem;
}
.h1,
h1 {
  font-size: var(--h-s-h1);
}
.h1:not(:last-child),
h1:not(:last-child) {
  margin-bottom: 1.5rem;
}
.h2,
h2 {
  font-size: var(--h-s-h2);
}
.h3,
h3 {
  font-size: var(--h-s-h3);
}
.h4,
h4 {
  font-size: var(--h-s-h4);
}
.h5,
h5 {
  font-size: var(--h-s-h5);
}
.h6,
h6 {
  font-size: var(--h-s-h6);
}
p {
  margin: 0;
}
p:not(:last-child) {
  margin-bottom: 2rem;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul {
  padding-left: 1.25em;
}
strong {
  font-weight: 600;
}
.lt {
  font-weight: 300 !important;
}
.rg {
  font-weight: 400 !important;
}
.md {
  font-weight: 500 !important;
}
.sbd {
  font-weight: 600 !important;
}
.bd {
  font-weight: 700 !important;
}
.under {
  text-decoration: underline;
}
.ttu {
  text-transform: uppercase;
}
.tar {
  text-align: right;
}
.tal {
  text-align: left;
}
.tac {
  text-align: center;
}
.c-blue {
  color: var(--c-blue) !important;
}
.g-txt {
  background: linear-gradient(124deg, #78ae26 0.61%, #07c1e4 97.73%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.icon {
  --i-size: 2rem;
  fill: currentColor;
  stroke: currentColor;
  color: inherit;
  min-width: var(--i-size);
  width: var(--i-size);
  height: var(--i-size);
  display: inline-block;
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
  -webkit-mask-image: none;
  mask-image: none;
}
.icon-facebook {
  -webkit-mask-image: url(../images/icons/facebook.svg);
  mask-image: url(../images/icons/facebook.svg);
}
.icon-linkedin {
  -webkit-mask-image: url(../images/icons/linkedin.svg);
  mask-image: url(../images/icons/linkedin.svg);
}
.icon-twitter {
  -webkit-mask-image: url(../images/icons/twitter.svg);
  mask-image: url(../images/icons/twitter.svg);
}
.icon-instagram {
  -webkit-mask-image: url(../images/icons/instagram.svg);
  mask-image: url(../images/icons/instagram.svg);
}
.icon-account {
  -webkit-mask-image: url(../images/icons/account.svg);
  mask-image: url(../images/icons/account.svg);
}
.icon-marketplace {
  -webkit-mask-image: url(../images/icons/marketplace.svg);
  mask-image: url(../images/icons/marketplace.svg);
}
.icon-logout {
  -webkit-mask-image: url(../images/icons/logout.svg);
  mask-image: url(../images/icons/logout.svg);
}
.icon-orders {
  -webkit-mask-image: url(../images/icons/orders.svg);
  mask-image: url(../images/icons/orders.svg);
}
.icon-dashboard {
  -webkit-mask-image: url(../images/icons/dashboard.svg);
  mask-image: url(../images/icons/dashboard.svg);
}
.icon-downloads {
  -webkit-mask-image: url(../images/icons/downloads.svg);
  mask-image: url(../images/icons/downloads.svg);
}
.logo {
  transition: all var(--base-ts) ease-in-out;
  color: inherit;
  max-width: 14.5rem;
}
.logo,
.logo picture {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: inherit;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100%;
}
.logo picture {
  height: 100%;
}
.logo img {
  width: 100%;
  height: auto;
  pointer-events: none;
}
.image,
.image picture {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
}
.image picture {
  align-items: center;
  align-content: center;
  justify-content: inherit;
  flex-wrap: nowrap;
  flex-direction: row;
  min-height: 100%;
  z-index: 1;
}
.image img {
  width: 100%;
}
.image--block-title picture {
  justify-content: flex-start;
}
.image--block-title img {
  object-fit: contain;
  width: auto;
  max-height: 11.5rem;
}
.image--cover {
  min-height: 100%;
  height: auto;
}
.image--cover img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image--1-1 picture {
  padding-top: 100%;
}
.image--3-2 picture {
  padding-top: 66.66%;
}
.image--3-4 picture {
  padding-top: 75%;
}
.image--4-5 picture {
  padding-top: 120%;
}
.image--16-9 picture {
  padding-top: 56.25%;
}
.wrapper {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: calc(var(--vh, 1vh) * 100);
}
.content {
  display: flex;
  flex-direction: column;
  flex: 1;
  z-index: 0;
}
.container {
  position: relative;
  margin: 0 auto;
  z-index: 1;
}
.container,
.container-fluid {
  padding: 0 var(--gap);
}
.row {
  margin: 0 calc(var(--gap) * -1);
}
.row > div {
  position: relative;
  padding: 0 var(--gap);
}
.bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  bottom: 0;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.bg .image {
  mix-blend-mode: multiply;
}
.bg .image-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 111rem;
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
}
.bg .image-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.bg .image-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 111rem;
  background-size: 100% 100%;
  background-position: bottom;
  background-repeat: no-repeat;
}
.bg .image-footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.sc {
  --sc-pd: 2rem;
  --sc-mg: 2rem;
  --c-bg: var(--c-light);
  position: relative;
  width: 100%;
  padding: 0;
  margin: var(--sc-mg) 0;
  background: transparent;
  z-index: 1;
}
.sc img {
  pointer-events: none;
}
.sc_text {
  position: relative;
}
.sc_text:not(:last-child) {
  margin-bottom: 3rem;
}
.sc_buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: -0.8rem;
}
.sc_buttons .btn {
  margin: 0.8rem;
}
.sc_bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
.sc_content {
  position: relative;
  border-radius: var(--base-rd);
  background: var(--c-bg);
  overflow: hidden;
}
.hero {
  --h-s-h2: var(--h-sized);
  --sc-pd: 11.7rem;
  --c-bg: var(--c-green);
}
.hero .sc_text-side {
  padding: var(--sc-pd) var(--gap) 9rem var(--gap);
}
.hero .sc_text p {
  max-width: 39.3rem;
}
.hero .sc_buttons {
  justify-content: flex-start;
}
.hero .sc_buttons:not(:last-child) {
  margin-bottom: 3.5rem;
}
.hero .with {
  position: relative;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
}
.hero .with small {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  margin-right: 3.2rem;
}
.hero .with .image {
  flex: 1;
  max-width: 22.5rem;
}
.hero .image-side {
  padding: 14.5rem var(--gap) 9rem var(--gap);
}
.hero .image-side .image {
  height: 36rem;
  margin-left: 4rem;
  border-radius: 0.8rem 0 0 0.8rem;
  overflow: hidden;
}
.hero .image-side .image img {
  height: 100%;
  width: auto;
  max-width: inherit;
}
.hero .logo {
  max-width: 8rem;
  margin-bottom: 5.2rem;
  margin-left: auto;
}
.hero .decor-line {
  --h: 11.4rem;
  top: -0.4rem;
  left: calc(var(--gap) + 4rem);
}
.hero .row {
  margin-bottom: -3rem;
}
.hero .row > div {
  margin-bottom: 3rem;
}
.tib {
  --sc-pd: 10rem;
}
.tib .sc_text {
  font-size: 1.8rem;
}
.tib .sc_text-side {
  padding: var(--sc-pd) var(--gap);
}
.tib .sc_text ul li:not(:last-child) {
  margin-bottom: 1.3rem;
}
.tib .row {
  margin-bottom: -3rem;
}
.tib .row > div {
  margin-bottom: 3rem;
}
.tib .image-side .image {
  position: absolute;
  height: 100%;
  width: 100%;
}
.tib .image-side .image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.contact {
  --h-s-h2: var(--h-sized);
  --sc-pd: 18.36rem;
  --c-bg: var(--c-green);
  margin-bottom: 4rem;
}
.contact .sc_text {
  padding: var(--sc-pd) 0;
}
.contact .sc_buttons {
  justify-content: flex-end;
}
.contact .sc_bg .row {
  position: absolute;
  bottom: 0;
  min-width: 100%;
}
.contact .sc_bg .image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  max-width: 78.6rem;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: calc(var(--container) / 12);
  opacity: 0.8;
}
.contact .logo {
  max-width: 8rem;
  margin-bottom: 5.2rem;
  margin-left: auto;
}
.contact .decor-line {
  bottom: -0.4rem;
  left: var(--gap);
  transform: scaleX(-1);
}
.contact .row {
  align-items: center;
  align-content: center;
  margin-bottom: -3rem;
}
.contact .row > div {
  margin-bottom: 3rem;
}
.about {
  --sc-pd: 20.8rem;
  --sc-mg: 4rem;
}
.about .sc_content {
  padding-top: var(--sc-pd);
  padding-bottom: calc(var(--sc-pd) / 2);
}
.about .sc_text-side:first-child {
  margin-bottom: 6.5rem;
}
.about .decor-line {
  top: -0.4rem;
  left: calc(var(--gap));
}
.about .image {
  border-radius: var(--base-rd);
  overflow: hidden;
  min-height: 100%;
}
.about .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .row {
  margin-bottom: -3rem;
}
.about .row > div {
  margin-bottom: 3rem;
}
.log {
  --sc-pd: 20.8rem;
  --sc-mg: 4rem;
}
.log .sc_content {
  padding-top: var(--sc-pd);
  padding-bottom: calc(var(--sc-pd) / 2);
}
.log .sc_text-side:first-child {
  margin-bottom: 4.5rem;
}
.log .decor-line {
  top: -0.4rem;
  left: calc(var(--gap));
}
.log .logo {
  max-width: calc(var(--container) / 12 * 2 - var(--gap) * 2);
}
.log .logo-side {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-end;
  padding-right: calc(var(--container) / 12 * 2 - var(--gap) * 2);
}
.log .sc_form {
  max-width: calc(var(--container) / 12 * 4 - var(--gap) * 2);
}
.log .row {
  margin-bottom: -3rem;
}
.log .row > div {
  margin-bottom: 3rem;
}
.log-contact .sc_form {
  max-width: calc(var(--container) / 12 * 8);
}
.account {
  flex: 1;
  display: flex;
}
.account .container {
  flex: 1;
}
.account .container,
.account .row {
  min-height: 100%;
}
.account_menu {
  flex: 1;
  border-radius: var(--base-rd);
  background: var(--c-dark);
  color: var(--c-white);
  padding: 7rem 3rem;
}
.account_menu-side {
  display: flex;
}
.account_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.account_menu ul li:not(:last-child) {
  margin-bottom: 1.4rem;
}
.account_menu ul a {
  position: relative;
  padding: 0.9rem 2.6rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  align-content: center;
  font-weight: 500;
  text-decoration: none;
}
.account_menu ul a.active {
  background: linear-gradient(101deg, #91c83e -4.28%, #1fbbd8 101.52%), #d9d9d9;
}
.account_menu ul a:hover:not(.active) {
  color: var(--c-green);
}
.account .sc_text h1:not(:last-child) {
  margin-bottom: 4.5rem;
}
.account_content {
  position: relative;
  min-height: 100%;
  background: var(--c-light);
  border-radius: var(--base-rd);
  padding: 7rem calc(var(--container) / 12);
}
.account_content-side {
  display: flex;
}
.account_content p a {
  text-decoration: underline;
}
.btn {
  --sub-bg: var(--c-white);
  padding: var(--btn-pd);
  height: var(--btn-height);
  font-size: var(--btn-fz);
  background: var(--btn-bg);
  color: var(--btn-color);
  border: none;
  text-transform: none;
  text-decoration: none !important;
  border-radius: var(--btn-rd);
  border: 1px solid var(--btn-bg);
  transition: all var(--base-ts) ease-in-out;
  line-height: normal;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
}
.btn,
.btn > * {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.btn > * {
  line-height: inherit;
  z-index: 1;
}
.btn .icon {
  transition: transform 0.2s ease;
}
.btn > :not(:last-child) {
  margin-right: 1rem;
}
.btn.bordered {
  background: transparent;
  color: var(--btn-bg);
}
.btn.bordered:hover {
  background: var(--btn-bg);
  color: var(--btn-color);
}
.btn-white {
  --btn-color: var(--c-black);
  --btn-bg: var(--c-white);
}
.btn-black {
  --btn-bg: var(--c-black);
}
.btn-black,
.btn-gr {
  --btn-color: var(--c-white);
}
.btn-gr {
  --btn-bg: var(--gr);
}
.btn:hover .icon:last-child {
  transform: translateX(1rem);
}
.btn:hover:not(.bordered):not(.btn-gr) {
  background: transparent;
  color: var(--btn-bg);
}
.menu {
  position: relative;
  list-style: none;
  margin: 0 -1.9rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  padding: 0;
  font-size: 1.8rem;
  min-width: max-content;
}
.menu_item {
  position: relative;
  text-align: center;
  padding: 0 1.9rem;
}
.menu_item-open {
  overflow: hidden;
}
.menu_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all var(--base-ts) ease;
  color: inherit;
}
.menu_link.active {
  color: var(--c-green);
}
.menu-button {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  background: none;
  padding: 0;
  outline: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: none;
  color: var(--c-pink);
}
.menu-button span {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 0.3rem;
  min-height: 0.3rem;
  border-radius: 0.4rem;
  background: currentColor;
  transition: all var(--base-ts) ease-in-out;
}
.menu-button span:first-child {
  transform: translateY(-0.7rem);
}
.menu-button span:nth-child(3) {
  transform: translateY(0.7rem);
}
.menu-button.active {
  color: var(--c-white);
}
.menu-button.active span:first-child {
  transform: translateY(0) rotate(45deg);
}
.menu-button.active span:nth-child(2) {
  transform: scale(0);
}
.menu-button.active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}
.submenu {
  position: absolute;
  width: 25.2rem;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 1rem);
  padding: 0.6rem;
  background: var(--c-dark);
  border: 1px solid var(--c-pink);
  box-shadow: 0 0 30px rgba(255, 51, 158, 0.6);
  border-radius: 1.2rem;
  color: var(--c-white);
  width: 24rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  font-size: 1.4rem;
}
.submenu:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1rem;
  height: 1rem;
}
.submenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.submenu li {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
}
.submenu li:not(:last-child) {
  margin-bottom: 0.2rem;
}
.submenu a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  padding: 1rem;
  border-radius: 0.8rem;
  text-decoration: none;
  text-align: left;
}
.submenu a.active,
.submenu a:hover {
  background: rgba(255, 51, 158, 0.2);
  color: var(--c-white);
}
.submenu .icn {
  width: 2rem;
  min-width: 2rem;
  margin-right: 1rem;
}
.submenu .icn,
.submenu .icn picture {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.submenu .icn picture {
  width: 100%;
  height: auto;
}
.submenu .text {
  flex: 1;
}
.form {
  position: relative;
  padding: 0;
  --gap: 1.5rem;
}
.form .row {
  margin-bottom: -2.5rem;
  margin-left: calc(var(--gap) * -1) !important;
  margin-right: calc(var(--gap) * -1) !important;
}
.form .row > div {
  margin-bottom: 2.5rem;
}
.form .label,
.form_field,
.form label {
  position: relative;
  display: block;
}
.form .label,
.form label {
  font-size: 1.8rem;
  color: var(--c-blue-dark);
}
.form .label:not(:last-child),
.form label:not(:last-child) {
  margin-bottom: 0.8rem;
}
.form .label small,
.form label small {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  max-width: 28rem;
}
.form input[type="email"],
.form input[type="password"],
.form input[type="text"] {
  position: relative;
  width: 100%;
  border-radius: 0.8rem;
  background: hsla(0, 0%, 100%, 0.8);
  border: none;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.8);
  padding: 1.5rem 2rem;
  color: var(--c-dark);
  min-height: 5.4rem;
  font-size: 1.8rem;
  outline: none;
}
.form input[type="email"]::-webkit-input-placeholder,
.form input[type="password"]::-webkit-input-placeholder,
.form input[type="text"]::-webkit-input-placeholder {
  opacity: 0.5;
  color: var(--c-blue-dark);
}
.form input[type="email"]::-moz-placeholder,
.form input[type="password"]::-moz-placeholder,
.form input[type="text"]::-moz-placeholder {
  opacity: 1;
  opacity: 0.5;
  color: var(--c-blue-dark);
}
.form input[type="email"]:-moz-placeholder,
.form input[type="password"]:-moz-placeholder,
.form input[type="text"]:-moz-placeholder {
  opacity: 0.5;
  color: var(--c-blue-dark);
}
.form input[type="email"]:-ms-input-placeholder,
.form input[type="password"]:-ms-input-placeholder,
.form input[type="text"]:-ms-input-placeholder {
  opacity: 0.5;
  color: var(--c-blue-dark);
}
.form input[type="email"].placeholder,
.form input[type="password"].placeholder,
.form input[type="text"].placeholder {
  opacity: 0.5;
  color: var(--c-blue-dark);
}
.form textarea {
  position: relative;
  width: 100%;
  border-radius: 0.8rem;
  background: hsla(0, 0%, 100%, 0.8);
  border: none;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.8);
  padding: 1.5rem 2rem;
  color: var(--c-dark);
  min-height: 13.6rem;
  font-size: 1.8rem;
  outline: none;
  resize: none;
}
.form textarea::-webkit-input-placeholder {
  opacity: 0.5;
  color: var(--c-blue-dark);
}
.form textarea::-moz-placeholder {
  opacity: 1;
  opacity: 0.5;
  color: var(--c-blue-dark);
}
.form textarea:-moz-placeholder {
  opacity: 0.5;
  color: var(--c-blue-dark);
}
.form textarea:-ms-input-placeholder {
  opacity: 0.5;
  color: var(--c-blue-dark);
}
.form textarea.placeholder {
  opacity: 0.5;
  color: var(--c-blue-dark);
}
.form-btns {
  display: flex;
  align-items: center;
  align-content: center;
}
.form-btns > * {
  flex: 1;
}
.form-btns a {
  font-weight: 500;
  font-size: 1.8rem;
}
.form-btns p a {
  text-decoration: underline;
}
.checkbox {
  position: relative;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  z-index: 1;
  width: 1.8rem;
  height: 1.8rem;
  left: 0;
  top: 0;
  cursor: pointer;
}
.checkbox input:checked ~ .checkbox_content:before {
  -webkit-mask-image: url(../images/icons/check--true.svg);
  mask-image: url(../images/icons/check--true.svg);
}
.checkbox_content {
  position: relative;
  vertical-align: middle;
  min-height: 1.8rem;
  padding-left: 2.6rem;
  line-height: 1.1;
}
.checkbox_content a {
  text-decoration: underline;
}
.checkbox_content:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.8rem;
  height: 1.8rem;
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  background: var(--c-blue-dark);
  -webkit-mask-image: url(../images/icons/check--false.svg);
  mask-image: url(../images/icons/check--false.svg);
}
.header {
  --h-pos: sticky;
  --h-pd: 3rem;
  --h-bg: transparent;
  --h-color: var(--c-white);
  position: var(--h-pos);
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
  color: var(--h-color);
}
.header .row {
  align-items: center;
  align-content: center;
}
.header .btn {
  --btn-fz: 1.4rem;
  --btn-height: 2.857142857em;
  --btn-pd: 0.8571428571em 1.428571429em;
}
.header_content {
  border-radius: 0 0 var(--base-rd) var(--base-rd);
  background: var(--c-dark);
  padding: var(--h-pd) 4rem;
}
.header_logo {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  z-index: 1;
  min-width: 25rem;
}
.header_nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header_nav-extra {
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: center;
  margin-top: 4rem;
}
.header_nav-extra > :not(:last-child) {
  margin-bottom: 2rem;
}
.header_actions {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
  z-index: 1;
  margin-left: auto;
  min-width: 25rem;
}
.header_actions > :not(:last-child) {
  margin-right: 2.2rem;
}
.header-alt .header_block-top .header-container:after {
  display: none;
}
.header-alt .header_nav {
  padding-right: 3.5rem;
}
.header-alt .menu_link {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.header-alt .menu_link:after {
  top: auto;
  bottom: 0;
}
.menu-transition .header_nav {
  transition: all calc(var(--base-ts) * 2) ease-in-out;
}
.menu-open {
  overflow: hidden;
}
.menu-open .header_nav {
  right: 0;
}
.footer {
  position: relative;
  width: 100%;
  display: block;
  height: auto;
  padding: 0;
  overflow: hidden;
  background: none;
  color: var(--c-white);
}
.footer_block {
  position: relative;
}
.footer_block:not(:last-child) {
  padding-bottom: 3.2rem;
  margin-bottom: 3.2rem;
  border-bottom: 1px solid var(--c-white);
}
.footer_block:last-child {
  font-size: 1.4rem;
}
.footer a {
  transition: color 0.2s ease;
  text-decoration: none;
}
.footer a:hover {
  color: var(--c-green) !important;
}
.footer .logo {
  max-width: 4rem;
}
.footer .socials_items {
  justify-content: flex-end;
}
.footer .links ul {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: -1.9rem;
  font-size: 1.4rem;
}
.footer .links ul li {
  padding: 1.9rem;
}
.footer .row {
  align-items: center;
  align-content: center;
  margin-bottom: -2rem;
}
.footer .row > div {
  margin-bottom: 2rem;
}
.footer_content {
  border-radius: var(--base-rd) var(--base-rd) 0 0;
  background: var(--c-dark);
  padding: 5.4rem 4rem 3.2rem;
}
.footer-menu ul {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: -1.9rem;
  font-size: 1.8rem;
}
.footer-menu ul li {
  padding: 1.9rem;
}
.socials {
  position: relative;
}
.socials_items {
  display: flex;
  flex-wrap: wrap;
  margin: -1.2rem;
}
.socials .social,
.socials_items {
  position: relative;
  align-items: center;
  align-content: center;
}
.socials .social {
  display: inline-flex;
  margin: 1.2rem;
  transition: color 0.2s ease-in-out;
}
.socials .social .icon {
  --i-size: 2.1rem;
}
.decor-line {
  --h: 12.2rem;
  --w: calc(var(--h) * 2.31148);
  position: absolute;
  width: var(--w);
  height: var(--h);
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
  -webkit-mask-image: url(../images/decor/line.svg);
  mask-image: url(../images/decor/line.svg);
}
.bg--light {
  --c-bg: var(--c-light);
  color: var(--c-dark);
}
.bg--blue {
  --c-bg: var(--c-blue);
  color: var(--c-dark);
}
.bg--aqua {
  --c-bg: var(--c-aqua);
  color: var(--c-dark);
}
.bg--green {
  --c-bg: var(--c-green);
  color: var(--c-dark);
}
.bg--dark {
  --c-bg: var(--c-dark);
  color: var(--c-white);
}
@media (max-width: 1399px) {
  :root {
    --container: calc(1240px + var(--gap) * 2);
  }
}
@media (max-width: 1199px) {
  :root {
    --container: 960px;
    --h-sized: 3.6rem;
    --h-s-h1: 3.6rem;
    --h-s-h2: 3.2rem;
    --h-s-h3: 2.6rem;
  }
  .account_menu {
    padding: 4rem 3rem;
  }
  .account_content {
    padding: 4rem;
  }
  .menu {
    flex-direction: column;
    margin: 0;
    flex: 1;
    justify-content: center;
    max-height: calc(100% - 17rem);
    overflow: auto;
    min-width: 100%;
  }
  .menu:not(:last-child) {
    margin-bottom: 4rem;
  }
  .menu_item {
    padding: 0;
  }
  .menu_item:not(:last-child) {
    margin-bottom: 2rem;
  }
  .menu_link {
    text-align: center;
    justify-content: center;
    height: auto;
    width: 100%;
  }
  .menu_item {
    text-align: center;
    width: 100%;
  }
  .submenu {
    position: relative;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: none;
    display: none;
    width: 100%;
    top: 0;
    text-align: left;
  }
  .submenu .icn {
    display: none !important;
  }
  .header_content {
    padding: var(--h-pd) 3rem;
  }
  .header_nav-extra {
    margin-top: auto;
  }
  .header_nav-extra > * {
    width: 100%;
  }
  .header_nav {
    --w: 27.2rem;
    position: fixed;
    right: 0;
    top: 0;
    width: var(--w);
    height: calc(var(--vh, 1vh) * 100);
    background: rgba(14, 15, 36, 0.8);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 10rem var(--gap) 2rem var(--gap);
    overflow: auto;
    right: calc(var(--w) * -1);
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .header_actions {
    margin-left: auto;
    max-width: inherit;
  }
  .footer {
    padding-top: 0;
  }
  .footer_content {
    padding: 5.4rem 3rem 3.2rem;
  }
}
@media (max-width: 991px) {
  :root {
    --container: 750px;
  }
  .image--block-title img {
    max-height: 7rem;
  }
  .hero .sc_text-side {
    padding: var(--sc-pd) var(--gap) 3rem var(--gap);
    text-align: center;
  }
  .hero .sc_text p {
    max-width: 100%;
  }
  .hero .sc_buttons {
    justify-content: center;
  }
  .hero .with {
    flex-direction: column;
    align-items: center;
    align-content: center;
  }
  .hero .with small {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .hero .image-side {
    padding: 0 var(--gap) var(--gap) var(--gap);
  }
  .hero .image-side .image {
    height: auto;
    width: 100%;
    border-radius: 0.8rem;
    margin-left: 0;
  }
  .hero .image-side .image img {
    width: 100%;
    height: auto;
  }
  .hero .decor-line {
    left: var(--gap);
  }
  .hero .row {
    margin-left: 0;
    margin-right: 0;
  }
  .tib .sc_text-side {
    padding: var(--sc-pd) var(--gap) 3rem var(--gap);
    order: 1;
  }
  .tib .row {
    margin-left: 0;
    margin-right: 0;
  }
  .tib .image-side {
    min-height: 36rem;
    order: 2;
  }
  .tib .image-side:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5rem;
    z-index: 2;
    background: linear-gradient(180deg, var(--c-bg), hsla(0, 0%, 100%, 0));
  }
  .contact {
    --sc-pd: 14rem;
  }
  .contact .sc_text {
    text-align: center;
    padding: var(--sc-pd) 0 3rem 0;
  }
  .contact .sc_buttons {
    justify-content: center;
  }
  .contact .sc_buttons-side {
    padding-bottom: var(--sc-pd);
  }
  .contact .sc_bg .row {
    bottom: auto;
    top: 0;
  }
  .contact .logo {
    margin-right: auto;
  }
  .contact .decor-line {
    transform: none;
    bottom: auto;
    top: -0.4rem;
  }
  .contact .row {
    margin-left: 0;
    margin-right: 0;
  }
  .about {
    --sc-pd: 14rem;
  }
  .about .sc_content {
    padding-bottom: var(--gap);
  }
  .about .row {
    margin-left: 0;
    margin-right: 0;
  }
  .log {
    --sc-pd: 14rem;
  }
  .log .sc_form {
    max-width: 50%;
  }
  .log .row {
    margin-left: 0;
    margin-right: 0;
  }
  .log-contact .sc_form {
    max-width: 100%;
  }
  .account {
    align-items: flex-start;
    align-content: flex-start;
  }
  .account_menu-side {
    margin-bottom: 2rem;
  }
  .account_menu {
    flex: none;
    width: 100%;
    padding: 3rem;
  }
  .account_menu ul li {
    text-align: center;
  }
  .account_menu ul a {
    padding: 0.9rem 1rem;
  }
  .account_menu ul a .text {
    margin-left: 1.2rem;
  }
  .account .sc_text h1:not(:last-child) {
    margin-bottom: 3rem;
  }
  .header_logo-side {
    order: 1;
  }
  .header_nav-side {
    order: 3;
  }
  .header_actions-side {
    order: 2;
  }
  .footer .socials_items {
    justify-content: flex-start;
  }
  .footer .links ul {
    justify-content: flex-start;
  }
  .footer-menu ul {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  :root {
    --container: 540px;
    --base-fz: 1.6rem;
    --h-sized: 3.2rem;
    --h-s-h1: 3.2rem;
    --h-s-h2: 2.6rem;
    --h-s-h3: 2.4rem;
  }
  .account_menu {
    padding: 3rem var(--gap);
  }
  .account_content {
    padding: 3rem var(--gap);
  }
  .header_logo {
    min-width: inherit;
  }
  .header_nav {
    --w: 100%;
    right: -100%;
  }
  .header_actions {
    width: auto;
    min-width: inherit;
  }
}
@media (max-width: 575px) {
  :root {
    --container: 100%;
  }
}
@media (min-width: 992px) {
  .account_menu ul a .icon {
    display: none;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: var(--container);
  }
  .menu_link:hover {
    color: var(--c-green);
  }
  .menu-button {
    display: none !important;
  }
  .header_actions .btn:nth-last-child(2) {
    margin-right: 0;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: var(--container);
  }
}
table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > th.sorting_asc,
table.dataTable thead > tr > th.sorting_desc,
table.dataTable thead > tr > th.sorting_asc_disabled,
table.dataTable thead > tr > th.sorting_desc_disabled,
table.dataTable thead > tr > td.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting_asc_disabled,
table.dataTable thead > tr > td.sorting_desc_disabled {
  padding-right: 4rem !important;
}
table.dataTable thead > tr > th.sorting:after,
table.dataTable thead > tr > th.sorting_asc:after,
table.dataTable thead > tr > th.sorting_desc:after,
table.dataTable thead > tr > th.sorting_asc_disabled:after,
table.dataTable thead > tr > th.sorting_desc_disabled:after,
table.dataTable thead > tr > td.sorting:after,
table.dataTable thead > tr > td.sorting_asc:after,
table.dataTable thead > tr > td.sorting_desc:after,
table.dataTable thead > tr > td.sorting_asc_disabled:after,
table.dataTable thead > tr > td.sorting_desc_disabled:after {
  width: 1.375rem;
  height: 1.75rem;
  background-image: url("../images/sort.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 0 !important;
  bottom: 0 !important;
  margin: auto 0;
  content: "" !important;
  opacity: 1 !important;
}
table.dataTable thead > tr > th.sorting:before,
table.dataTable thead > tr > th.sorting_asc:before,
table.dataTable thead > tr > th.sorting_desc:before,
table.dataTable thead > tr > th.sorting_asc_disabled:before,
table.dataTable thead > tr > th.sorting_desc_disabled:before,
table.dataTable thead > tr > td.sorting:before,
table.dataTable thead > tr > td.sorting_asc:before,
table.dataTable thead > tr > td.sorting_desc:before,
table.dataTable thead > tr > td.sorting_asc_disabled:before,
table.dataTable thead > tr > td.sorting_desc_disabled:before {
  display: none !important;
}

table.dataTable.no-footer {
  border: none !important;
}
table.dataTable > thead > tr > th,
table.dataTable tbody th {
  font-size: 1.4rem !important;
  padding: 1.5rem 1.2rem !important;
  /* box-sizing: border-box; */
  border: none !important;
}
table#DataTables_Table_0 > thead > tr > th {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
table.dataTable > thead > tr > td,
table.dataTable tbody td {
  font-size: 1.6rem !important;
  padding: 1.5rem 1.2rem !important;
  /* box-sizing: border-box; */
  border: none !important;
}
.marketplace_table {
  border-spacing: 0 0.4rem !important;
}
.marketplace_table tr {
  background-color: #fff !important;
}
table.dataTable .add_to_cart {
  height: 4.2rem;
  background: rgba(246, 69, 30, 1);
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-decoration: none;
  padding: 1.25rem 2.25rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

th .ttl {
  position: relative;
  display: inline-block;
  min-width: max-content;
  min-height: 1.75rem;
  vertical-align: middle;
}
.dataTables_scrollHead {
  border-radius: 2.4rem 2.4rem 0 0;
}
.txt-cat {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 0.8rem;
  padding: 0.4rem 1.6rem;
  font-size: 1.4rem;
  background: rgba(245, 245, 245, 1);
}
.txt-url {
  font-size: 1.6rem;
  font-weight: 600;
}
th.th_cat,
td.td_cat {
  text-align: center !important;
}
.dataTables_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.dataTables_scroll {
  margin-top: 2rem;
  margin-bottom: 3rem;
  grid-column: -1 / 1;
}
.dataTables_length,
.dataTables_filter {
  position: relative;
  float: none !important;
}
.dataTables_length label {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  font-size: 1.6rem;
}
.dataTables_length label select {
  margin: 0 1.6rem;
  height: 4.8rem;
  padding: 0 2rem !important ;
  border-radius: 0.8rem !important;
  background: url("../images/sort-down.png") #fff !important;
  background-repeat: no-repeat !important;
  background-size: 1rem 0.5rem !important;
  background-position: center right 2rem !important;
  border: none !important;
  font-size: 1.4rem;
  min-width: 8.5rem;
  outline: none;
  appearance: none;
  font-size: 1.4rem !important;
}

.dataTables_filter label {
  width: auto;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
}
.dataTables_filter label input {
  margin-left: 1.6rem !important;
  padding: 1.5rem !important;
  border-radius: 0.8rem !important;
  border: none !important;
  background: #fff !important;
  height: 4.8rem;
}
.dataTables_info {
  font-size: 1.6rem;
}
.dataTables_paginate {
  font-size: 1.6rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  border: none !important;
  background: none !important;
  padding: 0;
  border-radius: 0.8rem !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover:hover {
  color: var(--c-dark) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  border: 1px solid var(--c-dark) !important;
}
#filters_form input[type="number"],
#filters_form select {
  min-height: 4.8rem !important;
}
#filters_form input[type="number"],
#filters_form select,
.filter_el.filter_checkbox label {
  font-size: 1.4rem !important;
}
.filter_el .btn {
  height: 4.8rem;
}
.filter_el select {
  min-height: 4.8rem !important;
  height: 4.8rem !important;
  padding: 0 2rem !important ;
  padding-right: 5.8rem !important;
  border-radius: 0.8rem !important;
  background: url("../images/sort-arr.png") #fff !important;
  background-repeat: no-repeat !important;
  background-size: 1.8rem 1.2rem !important;
  background-position: center right 2rem !important;
  border: none !important;
  font-size: 1.4rem;
  min-width: 8.5rem;
  outline: none;
  appearance: none;
  font-size: 1.4rem !important;
}
#filters_form input[type="number"],
#filters_form select {
  max-width: 24rem;
}

.td_adr,
.td_amb {
  min-width: 19rem !important;
}
.td_langcode {
  min-width: 12rem !important;  
}
.td_ok,
.td_ot {
  min-width: 14rem !important;
}

.marketplace_table * {
  scrollbar-width: thin;
  scrollbar-y-position: 1rem;
}
.dataTables_scrollHead::-webkit-scrollbar,
.dataTables_scrollBody::-webkit-scrollbar {
  width: 0.5rem;
  height: 1rem;
  background: #fff;
}
.dataTables_scrollHead::-webkit-scrollbar-track,
.dataTables_scrollBody::-webkit-scrollbar-track {
  border-radius: 1rem;
}
.dataTables_scrollHead::-webkit-scrollbar-thumb,
.dataTables_scrollBody::-webkit-scrollbar-thumb {
  background: var(--c-dark);
  border-radius: 1rem;
}
.dataTables_scrollHead::-webkit-scrollbar-thumb:hover,
.dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
  background: var(--c-dark);
}
@media (max-width: 1199px) {
  .dataTables_info {
    margin-bottom: 2rem;
  }
  .dataTables_info,
  .dataTables_paginate {
    grid-column: -1 / 1;
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .filters_block,
  .products_block {
    padding: var(--gap) !important;
  }
  .filter_el {
    width: 100%;
  }
  .filter_el:nth-child(2),
  .filter_el:nth-child(3) {
    width: calc(50% - 1rem);
  }
  .filter_el select {
    width: 100%;
  }
  .dataTables_length {
    margin-bottom: 2rem;
  }
  .dataTables_length,
  .dataTables_filter {
    grid-column: -1 / 1;
  }
  #filters_form input[type="number"],
  #filters_form select {
    max-width: 100%;
  }
}


.page-id-50 {
  --container: 100%;
}
.page-id-50 .container {
  max-width: 180rem;
}
.page-id-50 .header_nav {
  justify-content: flex-start;
}

.woocommerce-orders-table,
.woocommerce-table--order-details {
  width: 100%;
  border-spacing: 0 0.4rem !important;
  border-radius: 2.4rem;
  overflow: hidden
}
.woocommerce-orders-table th,
.woocommerce-orders-table td,
.woocommerce-table--order-details th,
.woocommerce-table--order-details td{
padding: 1.5rem 1.2rem;
font-size: 1.6rem;
text-align: left;
background: #fff
}
.woocommerce-orders-table th:first-child,
.woocommerce-orders-table td:first-child,
.woocommerce-table--order-details tfoot tr th:first-child,
.woocommerce-table--order-details tfoot tr td:first-child {
  padding-left: 2.4rem;
}
.woocommerce-orders-table th:last-child,
.woocommerce-orders-table td:last-child,
.woocommerce-table--order-details tfoot tr th:last-child,
.woocommerce-table--order-details tfoot tr td:last-child {
  padding-right: 2.4rem;
}
.woocommerce-orders-table td,
.woocommerce-table--order-details td {
  font-size: 1.4rem;
  font-weight: 400;
}
.woocommerce-orders .sc_text {
  overflow: auto;
}
.woocommerce-order-details:not(:last-child) {
  margin-bottom: 4rem;
}