
body {
--font-body: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
--body-weight: 400;
--bold-weight: 600;
--font-mono: ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,"Liberation Mono",monospace !important;

--text-size-80: 0.882rem;
--text-size-90: 0.939rem;
--text-size-100: 1rem;
--text-size-200: 1.065rem;
--text-size-300: 1.134rem;
--text-size-400: 1.208rem;
--text-size-500: 1.286rem;
--text-size-600: 1.37rem;
--text-size-700: 1.459rem;

--ws-scale: 1.5;
--ws-100: 1rem;
--ws-90: calc(var(--ws-100) / var(--ws-scale));
--ws-80: calc(var(--ws-90) / var(--ws-scale));
--ws-200: calc(var(--ws-100) * var(--ws-scale));
--ws-300: calc(var(--ws-200) * var(--ws-scale));
--ws-400: calc(var(--ws-300) * var(--ws-scale));
--ws-500: calc(var(--ws-400) * var(--ws-scale));
--ws-600: calc(var(--ws-500) * var(--ws-scale));
--ws-700: calc(var(--ws-600) * var(--ws-scale));
--ws-800: calc(var(--ws-700) * var(--ws-scale));
--ws-900: calc(var(--ws-800) * var(--ws-scale));

--btn-radius: 100px; /*7*/

--app-padding: 1.18rem;


--white: #fff;
--black: #000;

--gray-50: #f8fafc;
--gray-100: #f1f5f9;
--gray-200: #e2e8f0;
--gray-300: #cbd5e1;
--gray-400: #94a3b8;
--gray-500: #64748b;
--gray-600: #475569;
--gray-700: #334155;
--gray-800: #1e293b;
--gray-900: #0f172a;
--gray-950: #020617;

--red-500: #ec096f;

--blue-500: #00b0f0;

--blue1-red1-500: #765db0;
--blue2-red1-500: #4f78c5;

/* DARK MODE */
/*--white: #000;
--black: #fff;
--gray-50: #030712;
--gray-100: #111827;
--gray-200: #1f2937;
--gray-300: #374151;
--gray-400: #4b5563;
--gray-500: #6b7280;
--gray-600: #9ca3af;
--gray-700: #d1d5db;
--gray-800: #e5e7eb;
--gray-900: #f3f4f6;
--gray-950: #f9fafb;*/
}

html {
  box-sizing: border-box;
  height: 100%;
  font-size: 106.3%;
}

@media screen and (min-width: 767px) {
  html {
    font-size: 93.8%;
  }
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--gray-100);
}

.app_header_logo {
  grid-area: header-logo;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--app-padding);
/*  border-right: 1px solid var(--gray-200);*/
/*  background: var(--gray-100);*/
}

.app_header {
  grid-area: header;
  display: grid;
  grid-auto-flow: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
/*  border-bottom: 1px solid var(--gray-200);*/
/*  background: var(--gray-100);*/
  /*padding: 1.5rem;
  font-size: var(--text-size-80);*/
}

.app_header_actions, .app_header_menu {
  display: flex;
/*  grid-auto-flow: column;*/
  gap: 0.6rem;
  align-items: center;
  padding: var(--app-padding);
  font-size: var(--text-size-90);
  white-space: nowrap;
}

.app_header h1 {
  margin: 0;
}

@media screen and (max-width: 766px) {
  .app_sidebar {
    position: fixed;
    z-index: 500;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-100);
  }
}
.app_sidebar {
  grid-area: sidebar;
  display: flex;
  flex-direction: column;
  /*padding: 1rem var(--app-padding) var(--app-padding);
  padding: 1rem;*/
  padding: var(--app-padding);
/*  border-right: 1px solid var(--gray-200);*/
/*  background: var(--gray-100);*/
}

.app_main {
  grid-area: main;
}

body:not(.single-board, .home) .app_main {
  /* padding: 2.25rem 2.5rem;*/
  padding: var(--app-padding);
}
/*body:not(.single-board) .app_main::-webkit-scrollbar {
  width: 100px;
}*/

.single-board .app_main, .home .app_main {
  padding: 0 !important;
}

.app_footer {
  grid-area: footer;
  padding: var(--app-padding);
  text-align: right;
  display: none;
}

/*.app_container > *, .app_main-inner {
  padding: 1.5rem;
}*/

@media screen and (min-width: 767px) {
  .app_container {
    height: 100%;
    display: grid;
    grid-template-columns: max-content auto;
    /*grid-template-rows: max-content auto max-content;
    grid-template-areas:
      "header-logo header"
      "sidebar main"
      "sidebar footer";*/
    grid-template-rows: max-content auto;
    grid-template-areas:
      "header-logo header"
      "sidebar main";
  }
}

.app_branding a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  /*font-family: 'Satoshi', sans-serif;
  font-weight: 700;*/
  font-family: 'Gabarito', sans-serif;
  font-weight: 500;
  font-size: 21px; /*25*/
  line-height: 1;
/*  letter-spacing: 0.005em;*/
}

.app_branding img {
/*  display: inline-block;*/
  height: 21px;
}

img.avatar {
  display: block;
  border-radius: 100%;
  outline: 1px solid transparent;
  box-shadow: 0 1px 1px 1px rgba(0,0,0,0.05);
/*  transition: outline 100ms;*/
}
a.avatar:hover img.avatar {
  outline: 0.4em solid var(--gray-200);
}

#app_sidebar_menu {
  all: unset;
}
#app_sidebar_menu li {
  list-style: none;
}

/*#app_sidebar_menu li {
  display: block;
  margin: 2px 0;
}*/

#app_sidebar_menu a {
  position: relative;
  display: block;
  margin: 2px 0;
/*  padding: 0.7rem 0.75rem 0.7rem 2.6rem;*/
/*  padding: 0.5em 0.85em;*/
/*  padding: 0.5em 0.85em 0.5em 2.6em;*/
  padding: 0.65em 1.5em 0.65em 0.75em;
/*  color: var(--gray-500);*/
  color: var(--gray-500);
  font-size: var(--text-size-90);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
}
/*#app_sidebar_menu a:after {
  content: 'Pro';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  padding: 0.1em 0.3em;
  background: var(--red-500);
  color: var(--white);
  font-size: 0.8em;
  font-weight: bold;
  border-radius: 100px;
}*/

#app_sidebar_menu a:hover {
  z-index: 10;
/*  border: 1px solid var(--gray-200);*/
  /*background: var(--white);
  border-color: var(--gray-200);*/
/*  background: var(--gray-200);*/
  background: var(--white);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  color: var(--gray-950);
}

#app_sidebar_menu .current-menu-item a {
/*  border: 1px solid var(--gray-200);*/
  background: var(--gray-200);
/*  border-color: var(--gray-300);*/
  color: var(--gray-950);
  box-shadow: none;
}

/*#app_sidebar_menu a:before {
  font: var(--fa-font-light);
  display: none;
}*/
#app_sidebar_menu a svg, #app_sidebar_menu img.fa_icon {
/*  position: absolute;*/
/*  top: 0.6rem;
  left: 0.7rem;*/
/*  top: 0.45em;*/
/*  left: 0.7em;*/
/*  height: 1.4em;*/
/*  opacity: 0.45;*/
  aspect-ratio: 1;
  margin-right: 0.3em;
  font-size: 1.286rem; /*var(--text-size-500);*/
/*  color: var(--gray-500);*/
}
/*.app_sidebar_menu_new_board a:before {
  content: '\f0fe';
  content: '\f055';
}
.app_sidebar_menu_my_boards a:before {
  content: '\e196';
}
.app_sidebar_menu_favs a:before {
  content: '\f004';
  content: '\f005';
  content: '\f02e';
}
.app_sidebar_menu_likes a:before {
  content: '\f005';
  content: '\f004';
}
.app_sidebar_menu_explore a:before {
  content: '\f14e';
}*/

.cards_preview {
  display: grid;
/*  grid-template-columns: repeat(4, 1fr);*/
  grid-template-columns: repeat(auto-fill, minmax(345px, 1fr)); /* 360? 325?? */
/*  grid-template-columns: repeat(2,minmax(0,1fr));*/
/*  gap: 4vw; */
}
@media screen and (min-width: 767px) {
  .cards_preview {
    gap: 3rem 2rem;
  }
}

/*@media (min-width: 1600px) {
  .cards_preview {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}*/

.cards_preview_card {
  display: block;
/*  overflow: hidden;*/
  text-decoration: none;
/*  border: 1px solid var(--gray-200);*/
/*  border-radius: 8px;*/
/*  background: var(--white);*/
/*  box-shadow: 0px 3px 10px rgba(0,0,0,0.07);*/
}

.card_image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 535/300;
/*  border: 8px solid var(--gray-200);*/
  border-radius: 20px;
  background: var(--gray-200);
/*  box-shadow: 0px 3px 10px rgba(0,0,0,0.07);*/
}

.card_image img {
  /*object-fit: cover;
  width: 100%;
  height: 100%;*/
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: none;
  image-rendering: pixelated;
  mix-blend-mode: multiply;
}

.cards_preview_card header {
  display: flex;
/*  grid-auto-flow: column;*/
  align-items: center;
/*  justify-content: start;*/
  gap: 0.7rem;
  padding: 0.5rem 0;
/*  border-top: 1px solid var(--gray-200);*/
}

.preview_card_title {
  flex: 1;
  margin: 0;
/*  width: 80%;*/
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
/*  font-size: var(--text-size-100);*/
}

.preview_card_title h2 {
   margin: 0;
/*  width: 80%;*/
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--text-size-200);
}

@media screen and (min-width: 767px) {
  .panels_container {
    display: grid;
    grid-template-columns: 1fr;
    height: 100%;
    transition: grid-template-columns 0.25s;
  }
  .panels_container_true {
    grid-template-columns: 17rem 1fr;
  }
}

.panels_container:not(.panels_container_true) .board_settings {
  display: none;
}

.panels_container > * {
/*  position: relative;*/
/*  border-top: 1px solid var(--gray-200);*/
/*  border-right: none;*/
  border-bottom: 1px solid var(--gray-200);
/*  border-left: none;*/
}

.board_settings {
  overflow-y: auto;
  padding: 0.75rem; /*var(--app-padding)*/
/*  border-right: 1px solid var(--gray-200);*/
  font-size: var(--text-size-90);
}
.field_suffix {
  position: relative;
}
.field_suffix:after {
  content: attr(data-suffix);
  position: absolute;
  top: calc(0.5em + 1px);
  right: 30px;
  color: var(--gray-400);
  font-weight: var(--bold-weight);
}
.board_settings_desktop .field_mobile :is(input, select), .board_settings_mobile .field_desktop :is(input, select) {
/*  background: var(--gray-100);*/
/*  border-color: var(--gray-200);*/
  color: var(--gray-400);
  border: 1px dashed var(--gray-400);
}
.board_settings_desktop .field_mobile label, .board_settings_mobile .field_desktop label {
  color: var(--gray-500);
}
/*.board_settings_desktop .field_desktop input, .board_settings_mobile .field_mobile input {
  border-color: var(--gray-400);
  outline: 1px solid var(--gray-400);
}*/
.js_scale_input_container {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.fields_pro :is(h2, div) {
  opacity: 0.55;
}

@media screen and (min-width: 767px) {
  .panels_resize {
    /*display: grid;
    grid-auto-flow: row;*/
    display: flex;
    flex-direction: row;
    gap: 2px;
    background: var(--gray-200);
  }
}

.panels_vertical {
  flex-direction: row;
}

.panels_horizontal {
  flex-direction: column;
}

.panel_preview {
/*  border-left: 3px solid var(--gray-200);*/
}

@media screen and (max-width: 766px) {
  .panel {
    height: 75vh;
  }
}
.panel {
  flex-basis: 0;
  flex-grow: 1;
  display: flex;
/*  flex*/
  flex-direction: column;
/*  width: 50%;*/
  border: 1px solid var(--gray-200);
  border-top: none;
  transition: flex 0.2s;
}

.collapse_panel {
  flex-grow: 0;
  flex-basis: 8rem; /*10%*/
  display: none;
}

.iframe_scale, .iframe_preview {
  width: 100%;
  height: 100%;
  border: none;
}

.panel_actions {
/*  opacity: 0;*/
  /*transition: opacity 0.3s;
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;*/
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-100);
  font-size: var(--text-size-90);
}

/*.panel:hover .panel_actions {
  opacity: 1;
}*/
img.fa_icon {
  height: 1.15em;
/*  aspect-ratio: 1;*/
/*  object-fit: contain;*/
  vertical-align: -0.26em;
}
/*button {
  border: 1px solid !important;
}*/
img.fa_lg {
  height: 19px;
/*  font-size: 1.5em;*/
/*  vertical-align: -0.26em;*/
}
img {
  max-width: 100%;
  height: auto;
  text-decoration: none;
}

hr {
  padding: 0;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  border: none;
  border-top: 1px solid var(--gray-200);
}

/* Step 1: Common Properties: All required to make icons render reliably - we did this above but it's included here for the full demo */
.icon:before {
  display: none;
}

/*h1, h2, h3, h4, h5, h6 {
  margin: 1.38rem 0;
  font-weight: 600;
  line-height: 1.3;
}

h1 {font-size: 1.383rem;}

h2 {font-size: 1.296rem;}

h3 {font-size: 1.215rem;}

h4 {font-size: 1.138rem;}

h5, h6 {font-size: 1.067rem;}

small, .text_small {font-size: var(--text-size-90);}*/
P, ul, ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 600;
  line-height: 1.15;
/*  letter-spacing: -0.012em;*/
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
small, .text_small {
  font-size: var(--text-size-90);
}
h6, .h6 {
  font-size: var(--text-size-200);
}
h5, .h5 {
  font-size: var(--text-size-300);
}
h4, .h4 {
  font-size: var(--text-size-400);
}
h3, .h3 {
  font-size: var(--text-size-500);
}
h2, .h2 {
  font-size: var(--text-size-600);
}
h1, .h1 {
  font-size: var(--text-size-700);
}
.text-size-80 { font-size: var(--text-size-80); }
.text-size-90 { font-size: var(--text-size-90); }
.text-size-100 { font-size: var(--text-size-100); }
.text-size-200 { font-size: var(--text-size-200); }
.text-size-300 { font-size: var(--text-size-300); }
.text-size-400 { font-size: var(--text-size-400); }
.text-size-500 { font-size: var(--text-size-500); }
.text-size-600 { font-size: var(--text-size-600); }
.text-size-700 { font-size: var(--text-size-700); }

.small_caps {
  text-transform: uppercase;
  font-size: var(--text-size-80);
  letter-spacing: 0.03em;
}

.text_mono {
  font-family: var(--font-mono);
}
.text_right {
  text-align: right;
}
.field {
  display: grid;
  grid-template-columns: 1fr 2fr; /* auto 1fr;*/
  gap: 1rem;
  align-items: center;
  margin: 0.5rem 0;
}

label {
  white-space: nowrap;
  user-select: none;
}

input:not([type='submit'], [type='checkbox'], [type='radio']), textarea, select, .select2-container--default .select2-selection--single {
  width: 100%;
/*  max-width: 30em;*/
  border: 1px solid var(--gray-300);
  border-radius: 6px; /*8px;*/
  outline: none;
  padding: 0.5em;
  background: var(--white);
/*  box-shadow: 0px 3px 10px rgba(0,0,0,0.07);*/
  box-shadow: 0px 3px 8px rgba(0,0,0,0.04);
  color: var(--black);
  font-size: inherit;
  font-family: inherit;
  font-weight: 600;
  text-overflow: ellipsis;
}
/* WOOCOMMERCE */
.select2-container--default .select2-selection--single {
  padding: 0;
  height: fit-content;
}
/* WOOCOMMERCE */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  line-height: normal;
}
/* WOOCOMMERCE */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

/*??????*/
input:not([type='submit'], [type='checkbox'], [type='radio']):focus, textarea:focus, select:focus, .select2-container--default .select2-selection--single:focus {
  border-color: var(--gray-500);
}

select {
  -webkit-appearance: menulist;
  padding-top: calc(0.5em - 1px);
  padding-bottom: calc(0.5em - 1px);
}
input[type='color'] {
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 100%;
  box-sizing: border-box;
  padding: 3px;
  border-radius: 0 6px 6px 0;
}
input[type='color']::-webkit-color-swatch-wrapper {
  padding: 0;
}
input[type='color']::-webkit-color-swatch {
  border: none;
  border-radius: 0 6px 6px 0;
}
input[type='submit'], button {
  cursor: pointer;
}

input[type='submit']:disabled, button:disabled, .submit_disabled {
  opacity: 0.5;
  cursor: default;
/*  pointer-events: none; DON'T USE */
/*  background: red !important;*/
}
.submit_disabled {
  pointer-events: none;
}

a {
  color: var(--black);
  text-underline-offset: 0.12em;
}
a.link_remove_underline {
  text-decoration: none;
}
a.link_remove_underline:hover {
  text-decoration: underline;
}
.btn_cta {
/*  background: #F72585;*/
  background: var(--red-500);
  padding: 0.9em 1.4em;
  color: var(--white);
  text-decoration: none;
  border: none;
  border-radius: var(--btn-radius);
/*  border-radius: 6px;*/
  font-size: inherit;
  font-family: inherit;
  font-weight: 600;
  line-height: inherit;
  cursor: pointer;
}

/*.btn, input[type='submit'], button {
  background: #D9E9FC;
  padding: 0.5em 0.85em;
  color: #126ACE;
  text-decoration: none;
  border: 1px solid #D9E9FC;
  border-radius: 6px;
  font-size: inherit;
  font-family: inherit;
  font-weight: 600;
  line-height: inherit;
  cursor: pointer;
}

.btn_primary.btn_primary {
  background: #4895ef;
  border-color: #4895ef;
  color: var(--gray-50);
}*/
.btn, .btn_link, .btn_primary, .gform_button, .woocommerce button.button, #place_order {
  background: var(--gray-200);
/*  padding: 0.5em 0.85em;*/
  padding: 0.5em 0.9em;
/*  color: #0c7797;*/
  text-decoration: none;
  border: 1px solid var(--gray-200);
  border-radius: var(--btn-radius); /*6px*/
  font-size: inherit;
  font-family: inherit;
  font-weight: 600;
  line-height: inherit;
  text-align: center;
  cursor: pointer;
}

/*.btn svg, .btn_link svg, .btn_primary svg {
  margin-right: 0.15em;
}*/

.btn_link {
  padding: 0.5em;
  background: var(--gray-100);
/*  border-color: var(--gray-300);*/
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--gray-500);
}
.btn_link:hover {
/*  background: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);*/
  border-color: var(--gray-300);
}

.btn_primary, .gform_button, .woocommerce button.button, #place_order {
  background: var(--gray-700); /* #11a3d0;*/
  border-color: var(--gray-700); /* #11a3d0;*/
  color: var(--gray-50);
}
.btn_primary:hover, .gform_button:hover, .woocommerce button.button:hover, #place_order:hover {
  background: var(--gray-500);
  border-color: var(--gray-500);
  color: var(--gray-50);
}

.btn_icon {
  display: inline-block;
  box-sizing: content-box;
  min-width: 18px;
  padding: 0.5em;
  background: var(--gray-100);
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--gray-500);
  line-height: inherit;
/*  line-height: 18px;*/
  vertical-align: middle;
  text-align: center;
}

.btn_icon img.fa_icon, .btn_icon svg {
/*  display: block;*/
/*  width: 18px;*/
  height: 18px;
}
.btn_icon:hover {
/*  background: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);*/
  border-color: var(--gray-300);
}
.btn_icon.current {
  background: var(--gray-200);
  box-shadow: none;
  border-color: transparent;
}
@media screen and (max-width: 766px) {
  .btn_100 {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.btn_100 {
/*  box-sizing: border-box;*/
  width: 100%;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  margin-top: var(--ws-400);
  margin-bottom: var(--ws-400);
}
.page-numbers {
  padding: var(--ws-80) var(--ws-90);
  font-size: var(--text-size-90);
  font-weight: var(--bold-weight);
  color: var(--gray-600);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
  line-height: 1;
}
/*.page-numbers.prev, .page-numbers.next {
  border: 1px solid var(--gray-300);
}*/
.page-numbers:hover {
/*  border-color: var(--gray-700);*/
  background: var(--gray-200);
  color: var(--gray-900);
}
.page-numbers.current {
  background: var(--gray-200);
  border-color: var(--gray-200);
  color: var(--gray-600);
}
span.page-numbers, .page-numbers.current {
  cursor: default;
  pointer-events: none;
}
.modal {
  display: none;
  position: absolute;
  z-index: 500;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
  width: calc(100vw - 16px);
  height: fit-content;
/*  max-height: 60vh;*/
/*  max-width: ;*/
  overflow: hidden;
  padding: 1.5rem;
  background: var(--white);
/*  border: 1px solid var(--gray-200);*/
  border-radius: 20px;
  outline: 8px solid rgba(0,0,0,0.17);
  box-shadow: 0px 8px 30px 8px rgba(0,0,0,0.3);
}
@media screen and (min-width: 767px) {
  .modal {
    width: 35vw;
  }
}

.modal_inner {
  display: grid;
  grid-auto-flow: row;
/*  grid-auto-rows: max-content;*/
/*  align-items: start;*/
  width: 100%;
  height: 100%;
}

.btn_modal_close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  padding: 0;
/*  aspect-ratio: 1;*/
  background: transparent;
  border: none;
/*  border-radius: 100px;*/
  color: var(--gray-300);
}

.modal_background {
  display: none;
  position: fixed;
  z-index: 499;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}

.modal_code {
  overflow-x: hidden;
  overflow-y: auto;
  height: 35vh;
  padding: 1rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  font-size: var(--text-size-90);
}

.modal_code pre {
  margin: 0;
}

.flash_message {
  position: absolute;
  z-index: 500;
  top: 0;
/*  top: 1.5rem;*/
  left: 50%;
  transform: translate(-50%, -100%);
/*  opacity: 1;*/
  padding: 0.4rem 0.65rem;
  border: none;
  border-radius: 6px;
/*  box-shadow: 0px 4px 15px 2px rgba(62, 66, 66, 0.4);*/
  background: var(--gray-800);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-size-90);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1;
  transition: transform 200ms cubic-bezier(0.175, 0.885, 0.370, 1.505), opacity 500ms;
}
.flash_message_show {
  transform: translate(-50%, 1.5rem);
}
.flash_message_hide {
  opacity: 0;
}

.tooltip {
  position: relative;
}

.tooltip:after, .tooltip:before, .js_copy_success, .js_copy_success:before {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 500;
}

.tooltip:after, .js_copy_success {
  width: max-content;
  max-width: 15rem;
  overflow: hidden;
  white-space: wrap;
  padding: 0.35rem 0.65rem;
  border: none;
  border-radius: 6px;
/*  box-shadow: 0px 4px 15px 2px rgba(62, 66, 66, 0.4);*/
  background: var(--gray-700); /*rgba(0, 0, 0, 0.7);*/
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-size-80);
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.tooltip_bottomright:after {
  left: unset;
  bottom: unset;
  right: 0;
  top: calc(100% + 6px);
  transform: translate(0, 0);
}

.tooltip_bottomleft:after {
  left: 0;
  bottom: unset;
  right: unset;
  top: calc(100% + 6px);
  transform: translate(0, 0);
}
.tooltip_center:after {
  bottom: 50%;
  transform: translate(-50%, 50%);
}

.tooltip_bottom:after, .js_copy_success {
  bottom: unset;
  /*left: unset;
  right: 0;*/
  top: calc(100% + 6px);
/*  transform: translate(0, 0);*/
}
.js_copy_success {
  z-index: 700;
}

.tooltip:after {
  content: attr(aria-label) attr(aria-description);
}

/*.tooltip:before, .js_copy_success:before {
  content: '';
  transform: translate(-6px, 0);
  width: 0;
  height: 0;
  border-width: 6px 6px 0 6px;
  border-color: var(--gray-800) transparent transparent transparent;
  border-style: solid;
}*/

/*.js_copy_success:before {
  top: 100%;
}*/

.tooltip:after, .tooltip:before {
  opacity: 0;
  pointer-events: none;
  transition: opacity 100ms;
/*  transition-delay: 0.4s;*/
}

.tooltip:hover:before, .tooltip:hover:after, .tooltip_test:after, .tooltip_test:before {
  opacity: 1;
  transition: opacity 300ms 800ms;
}

/*.js_copy_success {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 7px;
  padding: 8px;
  background: var(--gray-700);
  color: var(--gray-50);
  text-decoration: none;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  white-space: nowrap;
}*/

.site-main {
  max-width: 80rem;
  margin: 0 auto;
  margin-bottom: var(--ws-600);
  line-height: 1.6;
}
.site-main :is(p, ul, ol) {
  margin-top: var(--ws-100);
  margin-bottom: var(--ws-100);
}
.site-main :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
  margin-top: var(--ws-200);
  margin-bottom: var(--ws-100);
}

.entry-header {
  margin-bottom: 2rem;
}
/*.entry-header h1 {
  text-transform: capitalize;
}*/

/*.woocommerce-lost-password .site-main, */

/*.site-main:has(.woocommerce) {
  max-width: 80rem;
}*/
.table_index {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.table_index tr > * {
  border-bottom: 1px solid var(--gray-300);
  padding: var(--ws-90);
}
.table_index tr:hover td {
  background: var(--gray-200);
}
.table_index td {
  vertical-align: top;
}
.gform_wrapper {
  max-width: 50rem;
}
/*.gfield {
  margin-top: var(--ws-200);
  margin-bottom: var(--ws-200);
}*/
.gform_required_legend {
  display: none;
}
/*.gfield--width-half {
  float: left;
  width: 50%;
}
.gfield--width-half {
  padding-right: var(--ws-200);
}
.gfield--width-half + .gfield--width-half {
  padding-right: 0;
  padding-left: var(--ws-200);
}
.gfield_label {
  display: inline-block;
  margin-top: var(--ws-80);
  margin-bottom: var(--ws-80);
}
.gfield_description {
  margin-bottom: var(--ws-80);
  font-size: var(--text-size-90);
}*/
.woocommerce-account:has(form.login) .site-main, body.woocommerce-lost-password .site-main {
  max-width: 27rem;
}
.woocommerce-account:has(form.login) .entry-header {
  display: none;
}
.woocommerce-account:has(form.login) h2 {
  font-size: var(--text-size-700);
}
.woocommerce form.login, .woocommerce form.register {
  border: none;
  padding: 0;
}
p.lost_password {
  margin-top: 2rem;
}
form.lost_reset_password p {
  width: 100% !important;
}
/*.woocommerce-info, .woocommerce-message {
  display: none;
}*/
.woocommerce-customer-details--email {
  position: relative;
}

form.woocommerce-checkout {
  overflow: hidden;
}
body.woocommerce-checkout .woocommerce-form-login-toggle {
  display: none;
}
.woocommerce-checkout .col2-set {
  margin-bottom: var(--ws-300);
}
@media screen and (min-width: 767px) {
  .woocommerce-checkout .col2-set {
    float: left;
    width: 50%;
    padding-right: 2rem;
  }
  /*, .woocommerce-page .col2-set .col-1*/
  .woocommerce-checkout .col2-set .col-1 {
    float: none;
    width: 100%;
  }
  #order_review_heading, #order_review {
    float: right;
    width: 50%;
    padding-left: 2rem;
  }
}
.woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.1rem 2rem;
}

#billing_email_field, #billing_address_1_field {
  grid-column: span 2;
}

label .required {
  color: var(--gray-400) !important;
}

.woocommerce-additional-fields h3 {
  display: none;
}

.woocommerce table.shop_table {
  border: none;
  border-collapse: collapse;
}
.woocommerce table.shop_table .product-name {
  white-space: nowrap;
}
/*table.shop_table thead, .product-quantity, .subscription-price, .cart-subtotal:not(.recurring-total), .order-total:not(.recurring-total), .recurring-totals {
  display: none;
}*/

.shop_table thead, .cart-subtotal, .recurring-totals {
  display: none;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background: var(--gray-200);
}

#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  background: var(--gray-300);
}

#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: var(--gray-300);
}

.wc_payment_methods fieldset {
  border: none;
}

#place_order {
  width: 100%;
/*  background: var(--red-500);*/
}

fieldset {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 6px;
}

/*.woocommerce-account .entry-header {
  display: none;
}*/

@media screen and (max-width: 766px) {
  .woocommerce-MyAccount-navigation {
    overflow-x: scroll;
    white-space: nowrap;
  }
}
.woocommerce-MyAccount-navigation {
  float: none !important;
  width: auto !important;
  margin-bottom: 3rem;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}

.woocommerce-MyAccount-navigation a, .woocommerce a.button {
  display: inline-block;
  margin: 5px 0;
  padding: 0.35em 1em;
  background: transparent;
  color: var(--black);
  border-radius: var(--btn-radius);
  border: 1px solid var(--gray-300);
  font-weight: var(--bold-weight);
  line-height: inherit;
  text-decoration: none;
}
a.button + a.button {
  margin-left: var(--ws-90);
}
.woocommerce-MyAccount-navigation a:hover, .woocommerce a.button:hover {
  background: var(--gray-200);
  color: var(--black);
}

.woocommerce-MyAccount-navigation .is-active a {
  background: var(--gray-200);
  border-color: var(--gray-200);
}

.woocommerce-MyAccount-content {
  float: none !important;
}

.woocommerce-account fieldset {
  margin-top: 4rem;
  padding: 0;
/*  padding-top: 2rem;*/
  border: none;
/*  border-top: 1px solid var(--gray-200);*/
}

.woocommerce-account fieldset legend {
  font-weight: bold;
}



.color_gray, .color_gray a {
  color: var(--gray-500);
}
.color_red_500 {
  color: var(--red-500);
}

.color_blue_500 {
  color: var(--blue-500);
}




.hide, .hidden, .screen-reader-text {
  display: none;
}
@media screen and (max-width: 766px) {
  .ms_hide, .js_ms_hide {
    display: none;
  }
}
@media screen and (min-width: 767px) {
  .ml_hide {
    display: none;
  }
}




.twitter-typeahead {
  width: 100%;
}

.tt-query {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
  color: var(--gray-700);
}

.tt-menu {
  right: 0;
  margin: 0.25rem 0;
  padding: 0.4em 0;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
/*  border-radius: var(--FIX);*/
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.tt-suggestion {
  position: relative;
  padding: 0.4em;
/*  line-height: var(--FIX);*/
/*  font-weight: var(--FIX); */
}
/*@media screen and (min-width: var(--FIX)) {
  .tt-suggestion {
    padding-left: 2.25em;
  }
}*/
.tt-suggestion .tt-highlight {
/*  font-weight: var(--FIX);*/
/*  color: var(--FIX); */
}
.tt-suggestion:hover {
  cursor: pointer;
/*  color: var(--white);*/
  background-color: var(--gray-200);
}
.tt-suggestion.tt-cursor {
/*  color: var(--white);*/
  background-color: var(--gray-200);
}
/*.tt-suggestion.tt-cursor .tt-highlight {
  background: rgba(255, 255, 255, 0.4);
}*/
.tt-suggestion p {
  margin: 0;
}
