@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/InterVariable.woff2") format("woff2");
}

:root {
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --ui-font-size-sm: 12px;
  --ui-font-size-base: 14px;
  --ui-font-size-md: 15px;
  --ui-font-size-lg: 16px;
  --ui-font-size-xl: 18px;
  --ui-font-size-2xl: 20px;
  --ui-font-weight-medium: 500;
  --ui-font-weight-bold: 700;
  --ui-radius-xs: 2px;
  --ui-radius-sm: 4px;
  --ui-radius-md: 5px;
  --ui-radius-lg: 6px;
  --ui-radius-xl: 8px;
  --ui-radius-pill: 70px;
  --ui-transition-fast: all 0.1s ease-in-out;
  --ui-transition-base: all 0.15s ease-in-out;
  --ui-transition-slow: all 0.2s ease-in-out;
  --ui-transition-collapse: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ui-header-height: 60px;
  --ui-navbar-height: 40px;
  --ui-sidebar-width: 316px;
  --ui-z-overlay: 9999;
  --ui-z-popover: 10000;
  --ui-z-mobile-nav: 99999;
}

/* ==========================================================================
   01. Tokens & Base
   ========================================================================== */

body {
  position: relative;
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: var(--ui-font-size-base);
  font-weight: 400;
  line-height: 1.5;
  background: var(--ftt-body-color);
  text-align: left;
  color: var(--ftt-font-color);
}

.clear {
  clear: both;
}

input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input:focus,
textarea:focus,
select:focus {
  transition: var(--ui-transition-base);
  background: var(--ftt-nav-hover-color) !important;
  border-color: var(--ftt-nav-border-color) !important;
  color: var(--ftt-nav-hover-font-color) !important;
  font-family: inherit !important;
}

input,
textarea {
  background: var(--ftt-nav-hover-color) !important;
  border-color: var(--ftt-nav-border-color) !important;
  color: var(--ftt-nav-hover-font-color) !important;
}

a {
  color: var(--ftt-link-color);
}

a:hover {
  color: var(--ftt-hover-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: var(--ui-font-size-2xl);
  font-weight: var(--ui-font-weight-bold);
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  line-height: 45px;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
}

a {
  background-color: transparent;
  text-decoration: none;
  transition: var(--ui-transition-fast);
  outline: 0;
}

a:hover {
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

.wp-caption {
  font-size: inherit;
}

.wp-caption-text {
  font-size: inherit;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  margin-right: auto;
}

button {
  font-weight: var(--ui-font-weight-bold);
  font-size: var(--ui-font-size-base);
}

button:focus {
  outline: 0;
}

.btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-weight: var(--ui-font-weight-bold);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ftt-main-font-color);
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: var(--ftt-main-color);
  border: 1px solid var(--ftt-main-color);
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  text-decoration: none;
  filter: brightness(110%);
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 102, 0.25);
}

.btn:disabled,
.btn.disabled {
  opacity: 0.65;
}

a.btn.disabled {
  pointer-events: none;
}

.btn-primary {
  padding: 0.7rem 1rem;
  color: var(--ftt-main-font-color);
  background-color: var(--ftt-main-color);
  border: none;
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: var(--ftt-main-font-color);
  background-color: var(--ftt-hover-color);
  animation: none !important;
}

.btn-primary:focus,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-primary:disabled,
.btn-primary.disabled {
  color: var(--ftt-main-font-color);
  background-color: var(--ftt-main-color);
}

.input-group .btn-primary {
  padding: 0 1rem;
}

.form-field {
  margin: 20px 0;
  position: relative;
}

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

article,
aside,
footer,
header,
main,
nav,
section {
  display: block;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: var(--ui-font-weight-bold);
}

blockquote {
  margin: 0 0 1rem;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "— ";
}

b,
strong {
  font-weight: bolder;
}

small,
.small {
  font-size: 80%;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

[type="button"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: var(--ftt-website-width) !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col,
.col-6,
.col-12,
.col-lg-3,
.col-lg-6,
.col-md,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-6,
.col-md-8,
.col-xl-3,
.col-xl-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

@media (min-width: 576px) {
  .order-sm-1 {
    order: 1;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }
}

@media (min-width: 1200px) {
  .order-xl-1 {
    order: 1;
  }
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

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

.screen-reader-text,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

a.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
}

.w-100 {
  width: 100% !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.text-center {
  text-align: center !important;
}

@media print {
  *,
  ::before,
  ::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  pre {
    white-space: pre-wrap !important;
  }

  blockquote,
  pre {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  img,
  tr {
    page-break-inside: avoid;
  }

  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }

  body,
  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }
}

/* ==========================================================================
   02. Header / Navbar / Search
   ========================================================================== */

/* Navigation framework merged from theme.min.css */

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:focus,
.nav-link:hover {
  text-decoration: none;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: var(--ui-navbar-height);
  max-height: var(--ui-navbar-height);
  padding: 0.5rem 1rem;
  border-top: 1px solid var(--ftt-nav-border-color);
}

.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .navbar-collapse.collapsing {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: var(--ui-z-mobile-nav);
  }

  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

.navbar-light .navbar-brand,
.navbar-light .navbar-brand a {
  color: var(--ftt-nav-font-color);
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand a:focus,
.navbar-light .navbar-brand a:hover {
  color: var(--ftt-nav-hover-font-color);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--ftt-nav-font-color);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--ftt-nav-hover-font-color);
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: var(--ftt-nav-hover-font-color);
}

.navbar-light .navbar-toggler {
  color: var(--ftt-nav-font-color);
  border-color: var(--ftt-nav-border-color);
}

.navbar h1 {
  font-weight: 400;
}

.logo-search {
  height: var(--ui-header-height);
  line-height: var(--ui-header-height);
}

#wrapper-navbar {
  position: relative;
  background: var(--ftt-nav-color);
}

.hamburger {
  display: none;
  border-right: 1px solid var(--ftt-nav-border-color);
}

ul.navbar-nav {
  margin: 0 !important;
}

.navbar li.active a {
  border-bottom-color: var(--ftt-main-color) !important;
}

.navbar-expand-md .navbar-nav .nav-link {
  font-weight: var(--ui-font-weight-bold);
  padding: 0.5rem 2.5rem;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  color: var(--ftt-nav-font-color);
  font-size: 13px;
  text-transform: uppercase;
  transition: var(--ui-transition-fast);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}

.navbar-expand-md .navbar-nav .nav-link:hover {
  background: var(--ftt-nav-hover-color);
  color: var(--ftt-nav-hover-font-color);
  border-left: 1px solid var(--ftt-nav-border-color);
  border-right: 1px solid var(--ftt-nav-border-color);
}

@media (min-width: 767.98px) and (max-width: 879.98px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding: 0.5rem 1.25rem;
  }
}

@media (min-width: 880px) and (max-width: 970px) {
  .navbar-expand-md .navbar-nav .nav-link {
    padding: 0.5rem 1.875rem;
  }
}

.logo-search h1,
.logo-search .navbar-brand {
  font-weight: var(--ui-font-weight-bold);
  font-size: 1.75rem;
  letter-spacing: -0.5px;
  line-height: 0;
  padding: 0 1rem !important;
}

.logo-search h1 a:hover {
  text-decoration: none;
}

.logo-word-1 {
  color: var(--ftt-font-color);
}

.logo-word-2 {
  padding: 2px 4px;
  border-radius: var(--ui-radius-sm);
  color: var(--ftt-main-font-color);
  background-color: var(--ftt-main-color);
}

.logo-img img {
  max-height: 38px;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: var(--ui-transition-collapse);
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapse:not(.show) {
  display: none;
}

.navbar-light .navbar-brand,
.navbar-light .navbar-nav,
.navbar-light .navbar-nav .nav-link {
  z-index: 1;
}

.navbar-brand img {
  width: auto;
  max-height: 35px;
}

.input-group .btn-primary {
  padding: 0 1rem;
}

@media (max-width: 767.98px) {
  .hamburger {
    width: var(--ui-header-height);
    height: var(--ui-header-height);
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }

  .hamburger-box {
    width: 32px;
    height: 24px;
    display: inline-block;
    position: relative;
  }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }

  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 32px;
    height: 4px;
    background-color: var(--ftt-main-color);
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }

  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    display: block;
  }

  .hamburger-inner::before {
    top: -10px;
  }

  .hamburger-inner::after {
    bottom: -10px;
  }

  .hamburger--slider .hamburger-inner {
    top: 2px;
  }

  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
  }

  .hamburger--slider .hamburger-inner::after {
    top: 20px;
  }

  .hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg);
  }

  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
  }

  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg);
  }

  .header-search-mobile i {
    font-size: 30px;
    color: var(--ftt-nav-font-color);
  }

  .navbar-toggler {
    padding: 7px 0;
  }

  .logo-search h1,
  .logo-search .navbar-brand {
    font-size: 1.5rem;
  }

  .logo-search .container {
    padding: 0;
  }

  .header-search-mobile {
    width: var(--ui-header-height);
    text-align: center;
    height: var(--ui-header-height);
    line-height: var(--ui-header-height);
    padding-top: 5px;
  }

  .navbar {
    height: 0;
    padding: 0 15px;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: var(--ui-z-mobile-nav);
  }

  .navbar-light .navbar-collapse ul.navbar-nav {
    background: var(--ftt-nav-color);
    padding-bottom: 5px;
  }

  .navbar a.navbar-brand,
  .navbar h1 {
    font-size: 1.25rem;
    width: 60%;
  }

  .navbar-light .navbar-collapse .nav-link {
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    border-bottom: none;
    border-top: 1px solid var(--ftt-nav-border-color);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
  }

  .navbar-light .navbar-toggler {
    border: none;
    padding: 0;
  }

  .navbar-light .navbar-toggler:focus {
    outline: 0;
  }

  .header-search {
    display: none;
    width: 100%;
    overflow: hidden;
  }

  .header-search.is-open,
  .header-search.header-search-collapsing {
    display: block !important;
  }

  .header-search.header-search-collapsing {
    transition: var(--ui-transition-collapse);
  }

  .header-search input {
    width: 85%;
    padding: 15px;
    font-size: var(--ui-font-size-lg);
    height: 62px;
    line-height: 62px;
    float: left;
    outline: 0;
    border: none;
  }

  .header-search button[type="submit"] {
    width: 15%;
    padding: 0;
    height: 62px;
    font-size: var(--ui-font-size-2xl);
    background-color: var(--ftt-main-color);
    border: none;
    margin: 0;
    color: #fff;
  }
}

@media (min-width: 768px) {
  .header-search-mobile {
    display: none;
  }

  .header-search {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: block !important;
    margin-left: auto;
    transition: var(--ui-transition-slow);
  }

  .header-search input {
    width: calc(100% - 60px);
    height: 30px;
    padding: 2px 5px;
    float: left;
    border: none;
    font-size: var(--ui-font-size-base);
    outline: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: var(--ui-transition-slow);
  }

  .header-search input,
  .header-search input:focus {
    background: var(--ftt-nav-hover-color) !important;
    color: var(--ftt-nav-hover-font-color) !important;
    border: 1px solid var(--ftt-nav-hover-color) !important;
  }

  .header-search #searchsubmit {
    width: 60px;
    font-size: 22px;
    height: 30px;
    line-height: 30px;
    background-color: var(--ftt-main-color);
    padding: 0;
    margin: 0;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header-search #searchsubmit:hover {
    filter: brightness(110%);
  }

  .header-search #searchsubmit i {
    font-size: 80%;
    color: var(--ftt-main-font-color);
    position: relative;
    top: -1px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .header-search {
    width: 42%;
	margin-right: 16px;
  }
}

@media (min-width: 1200px) {
  .header-search {
    width: 44%;
  }
}

.mh800 {
  min-height: 800px;
}

.wrapper {
  padding: 0;
}

.hero {
  padding: 20px 0;
  text-align: center;
}

.hero-text h1,
.hero-text h2 {
  font-size: var(--ui-font-size-2xl);
  font-weight: var(--ui-font-weight-bold);
  color: var(--ftt-font-color);
  line-height: 36px;
  margin: 0 0 10px;
}

.hero-text p {
  color: var(--ftt-datas-color);
  line-height: 18px;
  max-width: 90%;
  margin: 0 auto;
}

/* ==========================================================================
   03. Video Grid / Video Block
   ========================================================================== */

.video-block-happy {
  position: relative;
  height: calc(200% - 0.5rem);
  margin: 0.25rem;
}

.video-block-happy-absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem;
}

.video-block-happy-absolute > img,
.video-block-happy-absolute > iframe {
  max-width: 100%;
  height: 100%;
}

@media (max-width: 991.98px) {
  .video-block-happy {
    margin: 0 auto;
    width: 100%;
    height: 100%;
  }

  .video-block-happy-absolute {
    position: relative;
    padding: 0;
  }

  .index-happy {
    padding: 8px 4px 14px;
  }

  .anu-happy {
    padding: 8px 4px 6px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .video-block-happy {
    height: calc(200% - 0.5rem);
    margin: 0.25rem;
    width: 100%;
  }

  .video-block-happy-absolute {
    height: auto;
  }
}

@media (min-width: 1200px) {
  .video-block-happy {
    height: calc(200% - 1.7rem);
    margin: 0 4rem;
    width: 100%;
  }

  .video-block-happy-absolute {
    height: auto;
  }
}

.video-block {
  margin: 0.25rem 0.25rem 1.15rem;
}

.video-block.widget-video-block {
  margin: 0 0 0.8rem;
}

.video-block a {
  display: block;
}

.video-block a.thumb {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.video-block .no-thumb,
.video-block .video-img {
  display: block;
  position: absolute;
}

.video-block .no-thumb {
  background-color: #111;
  background-image: url("../img/no-thumb.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 100%;
}

.video-block a.infos {
  margin-top: 6px;
}

.video-block a.infos:hover,
.video-widget-info a.infos:hover {
  text-decoration: none;
}

.video-block a.infos span.title,
.video-widget-info a.infos span.title {
  line-height: 17px;
  display: block;
  font-weight: var(--ui-font-weight-medium);
  color: var(--ftt-link-color);
  overflow: hidden;
  text-decoration: none;
}

.video-block a.infos span.title {
  font-size: var(--ui-font-size-md);
  max-height: 34px;
  margin-bottom: 3px;
}

.video-block a.infos span.title:hover {
  color: var(--ftt-hover-color);
}

.video-block.video-block-cat a.infos span.title {
  font-size: var(--ui-font-size-sm);
  float: left;
  font-weight: var(--ui-font-weight-bold);
  padding: 5px;
  height: 35px;
}

.video-widget-info a.infos span.title {
  font-size: var(--ui-font-size-base);
  max-height: 51px;
  margin-bottom: 5px;
}

.video-block .video-datas,
.video-widget-info .video-datas {
  font-size: var(--ui-font-size-sm);
  color: var(--ftt-datas-color);
  position: relative;
  top: -1px;
  margin-left: 0;
  margin-right: 0;
  display: inline-block;
}

.video-block .video-datas {
  padding: 5px 0;
}

.video-block .video-datas i,
.video-widget-info .video-datas i {
  font-size: 100%;
  color: var(--ftt-datas-color);
  margin-right: 2px;
  position: relative;
  margin-left: 2px;
}

.video-block .rating,
.video-widget-info .rating {
  font-weight: var(--ui-font-weight-medium);
  margin: 0 5px;
}

.video-block .duration,
.video-block .duration-widget {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: var(--ui-z-overlay);
  border-radius: var(--ui-radius-xs);
  font-weight: var(--ui-font-weight-medium);
  color: #fff;
}

.video-block .duration {
  bottom: 5px;
  right: 5px;
  padding: 2px 5px;
  font-size: var(--ui-font-size-sm);
}

.video-block .duration-widget {
  bottom: 3px;
  right: 3px;
  padding: 1px 2px;
  font-size: 10px;
}

.video-block .video-img {
  z-index: 50;
  border: 0;
  opacity: 0;
  min-height: 1px;
  min-width: 100%;
}

.video-block .video-img:not(.initial) {
  transition: opacity 0.3s ease-in-out;
}

.video-block .video-img.initial,
.video-block .video-img.loaded,
.video-block .video-img.error {
  opacity: 1;
}

.video-block .video-img:not([src]) {
  visibility: hidden;
}

.widget-videos-block {
  position: relative;
}

.video-widget-info {
  flex: 1;
  padding: 2px 0 2px 4px;
}

.video-block .views-number {
  color: var(--ftt-datas-color);
}

.more-videos {
  position: absolute;
  top: 0;
  right: 0;
  font-size: var(--ui-font-size-base);
  font-weight: var(--ui-font-weight-bold);
  height: 30px;
  text-decoration: none;
  margin-left: 10px;
  border: 1px solid transparent;
  cursor: pointer;
}

.more-videos:hover {
  border: 1px solid #fff;
  color: #cacaca;
}

/* ==========================================================================
   04. Single Video Components
   ========================================================================== */

.msg-alert {
  display: none;
  position: relative;
  padding: 12px 20px;
  font-size: var(--ui-font-size-md);
  line-height: 20px;
  background: var(--ftt-nav-color);
  border: 1px solid var(--ftt-nav-border-color);
}

.msg-alert.is-closing {
  overflow: hidden;
  transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.24s ease,
    padding 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    margin 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.msg-alert p {
  margin: 0;
}

.msg-alert.index {
  margin: 4px 4px 12px;
}

.msg-alert.video {
  margin: 0 0 16px;
}

.msg-alert.all,
.msg-alert.separate {
  margin-right: 4px;
  margin-bottom: 16px;
  margin-left: 4px;
}

.msg-alert.all {
  margin-top: 4px;
}

.msg-alert.separate {
  margin-top: 8px;
}

@media (max-width: 991.98px) {
  .msg-alert.all,
  .msg-alert.separate {
    margin-right: 4px;
    margin-bottom: 12px;
    margin-left: 4px;
  }

  .msg-alert.all {
    margin-top: 12px;
  }

  .msg-alert.separate {
    margin-top: 14px;
  }
}

#close-alert {
  position: absolute;
  top: -8px;
  right: -8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

#close-alert {
  z-index: 2;
}

#close-alert svg {
  display: block;
  width: 24px;
  height: 24px;
}

.instant-message {
  width: auto;
  height: auto;
  max-width: 100%;
  position: fixed;
  bottom: 0;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  z-index: var(--ui-z-overlay);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.instant-message:not(.show) {
  transform: translateX(-50%) translateY(140%);
  opacity: 0;
}

#close-message {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px;
  width: 25px;
  height: 25px;
  z-index: var(--ui-z-popover);
}

#close-message svg {
  display: block;
  width: 100%;
  height: 100%;
}

#close-message .close-icon-bg,
#close-alert .close-icon-bg {
  fill: var(--ftt-main-color);
}

#close-message:hover .close-icon-bg,
#close-alert:hover .close-icon-bg {
  fill: var(--ftt-hover-color);
}

#close-message .close-icon-mark,
#close-alert .close-icon-mark {
  fill: var(--ftt-main-font-color);
}

#close-message:hover .close-icon-mark,
#close-alert:hover .close-icon-mark {
  fill: var(--ftt-main-font-color);
}

@media (min-width: 768px) {
  .instant-message {
    left: auto;
    right: 10px;
    bottom: 10px;
    transform: none;
  }

  .instant-message:not(.show) {
    transform: translateY(140%);
  }
}

.grid-ads,
.foot-ads,
.head-ads,
.head-ads-index,
.head-separate,
.ads-mob,
.ads-desk,
.ads-desk-1,
.ads-desk-2 {
  text-align: center;
}

.grid-ads,
.foot-ads,
.head-ads,
.head-ads-index,
.head-separate,
.ads-mob,
.ads-desk {
  width: 100%;
}

.grid-ads {
  padding: 0 4px;
  padding-bottom: 15px;
  margin-top: -10px;
}

.foot-ads {
  padding: 0;
}

.head-ads {
  padding: 8px 0 6px;
}

.head-ads-index {
  padding: 8px 0 16px;
}

.head-separate {
  padding: 20px 0 4px;
}

.ads-mob img,
.ads-desk img,
.ads-desk-1 img,
.ads-desk-2 img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.ads-mob,
.ads-desk {
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
}

.ads-desk-1,
.ads-desk-2 {
  display: inline-block;
  width: calc(50% - 10px);
  vertical-align: top;
  box-sizing: border-box;
  overflow: hidden;
}

.happy-player-beside {
  text-align: center;
  padding-bottom: 4px;
}

.happy-player-beside .zone-1,
.happy-player-beside .zone-2 {
  margin-bottom: 7px;
}

@media (max-width: 991.98px) {
  .happy-player-beside {
    display: block;
    margin: 0 auto;
    padding: 4px 0 11px;
  }

 .happy-player-beside .zone-2 {
    display: var(--ftt-beside-zone-two-display, block);
  }
}

@media (max-width: 600px) {
  .ads-desk-1 {
    width: 100%;
    margin: 0 auto;
  }

  .ads-desk-2 {
    padding-top: 4px;
    width: 100%;
  }

  #wpadminbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--ui-z-overlay);
  }
}

@media (min-width: 992px) {
  .head-ads {
    padding: 8px 0 12px;
  }
}

#rating {
  width: 50%;
  float: left;
  padding-right: 8px;
}

#rating span.like {
  margin-right: 3px;
}

#rating a {
  font-size: var(--ui-font-size-xl);
}

#rating a:hover {
  text-decoration: none;
}

#rating i {
  font-size: 23px;
}

#video-rate {
  text-align: center;
  margin: 15px 0 7px;
}

.video-loop {
  padding-top: 0.5rem;
  overflow: hidden;
  margin: 0.25rem -0.25rem;
}

.video-loop.video-loop-padding {
  padding: 0.5rem;
}

.video-loop.video-loop-index-alert,
.video-loop.video-loop-alert-visible {
  overflow: visible;
}

#single-wrapper.wrapper {
  padding: 0;
}

.tags-list h3 {
  margin-bottom: 10px;
}

.tags-list a {
  display: inline-block;
  padding: 4px 8px;
  border-radius: var(--ui-radius-md);
  margin: 0 10px 10px 0;
  font-size: var(--ui-font-size-base);
  transition: var(--ui-transition-base);
}

.tags-list .list {
  display: block;
  margin: 15px 0;
}

.tags-list .list i {
  font-size: 90%;
  margin: 0 2px;
}

/* ==========================================================================
   05. Page / Archive / Tags / Post Content
   ========================================================================== */

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.pagination .page-link {
  position: relative;
  display: block;
  padding: 0.75rem 1.5rem;
  margin: 0 8px;
  font-size: 1.25rem;
  font-weight: var(--ui-font-weight-bold);
  line-height: 1.5;
  color: var(--ftt-nav-hover-font-color);
  background-color: var(--ftt-nav-hover-color);
  border: 1px solid var(--ftt-border-color);
  border-radius: var(--ui-radius-sm);
}

.pagination .page-link:hover {
  z-index: 2;
  text-decoration: none;
  color: var(--ftt-main-font-color);
  background-color: var(--ftt-main-color);
  border-color: var(--ftt-main-color);
}

.pagination .page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: none;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  border: 2px solid var(--ftt-main-color) !important;
  color: var(--ftt-font-color);
  background: var(--ftt-nav-color);
}

.pagination .page-item.active .page-link {
  z-index: 1;
  background-color: var(--ftt-main-color) !important;
  color: var(--ftt-main-font-color) !important;
  border-color: var(--ftt-hover-color);
}

.page-header {
  position: relative;
}

#page-wrapper {
  padding: 16px;
}

#content {
  padding: 0 16px;
}

article.page {
  display: block;
}

article.page p {
  color: var(--ftt-datas-color);
}

.entry-content {
  margin: 0 0 20px;
  padding: 0 0 7px;
  position: relative;
  border: 1px solid var(--ftt-border-color);
}

.entry-content h1 {
  font-weight: var(--ui-font-weight-bold);
  height: 37px;
  padding: 0 10px;
  margin-bottom: 1rem;
  text-transform: none;
  font-size: var(--ui-font-size-xl);
  color: var(--ftt-nav-font-color);
  background: var(--ftt-nav-color);
  line-height: 1.8;
}

.content-wrapper {
  font-weight: 400;
  font-size: var(--ui-font-size-md);
  padding: 0 10px;
}

.site-main {
  padding: 0 8px;
}

.archive-tags-list {
  padding: 16px;
}

.tags-letter-block {
  margin: 0 0 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--ftt-border-color);
}

.tags-letter-block .tag-letter {
  float: left;
  padding-top: 3px;
  padding-left: 8px;
  font-size: var(--ui-font-size-xl);
  line-height: 32px;
  font-weight: var(--ui-font-weight-bold);
  text-transform: uppercase;
}

.tags-letter-block .tag-items {
  margin: 0 0 0 105px;
  -webkit-column-count: 5;
  -moz-column-count: 5;
  column-count: 5;
  -moz-column-gap: 10px;
  -webkit-column-gap: 10px;
  column-gap: 10px;
}

.tags-letter-block .tag-items .tag-item {
  font-size: var(--ui-font-size-md);
  font-weight: var(--ui-font-weight-medium);
  display: block;
  list-style: none;
  text-overflow: ellipsis;
}

.tags-letter-block .tag-items .tag-item a {
  color: var(--ftt-font-color);
  padding: 8px;
  display: inline-block;
  outline: 0;
  text-decoration: none;
}

.tags-letter-block .tag-items .tag-item a:hover {
  color: var(--ftt-hover-color);
}

.tags-letter-block .tag-items .tag-item a .count {
  display: inline-block;
  min-width: 10px;
  padding: 3px 4px;
  font-size: 9px;
  font-weight: var(--ui-font-weight-bold);
  color: var(--ftt-datas-color);
  background: var(--ftt-nav-hover-color);
  line-height: 1;
  position: relative;
  top: -1px;
  white-space: nowrap;
  text-align: center;
  border-radius: var(--ui-radius-xl);
}

.entry-header .entry-meta {
  margin-bottom: 15px;
}

.entry-footer span.edit-link {
  display: none;
}

ul#menu-footer-menu li a:hover {
  color: var(--ftt-hover-color);
}

/* ==========================================================================
   06. Widget / Sidebar
   ========================================================================== */

.widget-title,
.tags-title {
  font-size: var(--ui-font-size-2xl);
  line-height: 20px;
  text-transform: capitalize;
}

.widget-title {
  margin: 4px 4px 12px;
}

.widget-area {
  width: 200px;
}

.widget-area h3 {
  font-size: 1.1rem;
  padding: 15px 20px 0;
  margin: 0 0 14px;
}

.widget p {
  padding-left: 20px;
}

.col-md-3.five-per-row {
  flex: 0 0 20%;
  max-width: 20%;
}

.video-sidebar {
  padding-left: 10px !important;
}

.video-sidebar .col-6 {
  max-width: 100%;
  flex: 0 0 100%;
}

.video-sidebar .col-md-3,
.video-sidebar .col-lg-3,
.video-sidebar .col-xl-3 {
  max-width: 50%;
  flex: 0 0 50%;
}

.video-sidebar .more-videos {
  position: relative;
  top: inherit;
  right: inherit;
  font-size: var(--ui-font-size-lg);
  text-transform: capitalize;
  font-weight: 400;
  background: var(--ftt-nav-hover-color);
  border: 1px solid var(--ftt-border-color);
  color: var(--ftt-nav-hover-font-color);
  height: 45px;
  line-height: 43px;
  padding: 0 15px;
  margin-left: 0;
  text-decoration: none;
  cursor: pointer;
  display: block;
  margin: 0;
  text-align: center;
}

.video-sidebar .more-videos:hover {
  background: var(--ftt-main-color);
  color: var(--ftt-main-font-color);
  border: 1px solid var(--ftt-main-color);
}

.video-sidebar .widget {
  padding: 0 0 7px 7px;
}

.video-sidebar .video-loop {
  padding: 0;
}

.widget-videos {
  display: flex;
  align-items: flex-start;
}

.widget-videos .thumb-widget-videos {
  flex: 0 0 30%;
  width: 140px;
  height: auto;
}

@media (max-width: 991.98px) {
  .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .video-sidebar {
    order: -1;
    width: 100%;
    margin: 0 auto;
    padding: 0 !important;
  }

  .sidebar-bedside {
    display: none;
  }

  .widget-title {
    margin: 10px 3px 8px;
  }
}

@media (max-width: 767.98px) {
  .widget-area {
    display: none;
  }

  .more-videos {
    display: none;
  }
}

@media (min-width: 992px) {
  .col-md-4.sidebar-fixed {
    flex: 0 0 var(--ui-sidebar-width);
    max-width: var(--ui-sidebar-width);
  }

  .col-md-8 {
    flex: 0 0 calc(100% - var(--ui-sidebar-width));
    max-width: calc(100% - var(--ui-sidebar-width));
  }

  .archive .video-sidebar.sidebar-fixed .archive-sidebar-sticky {
    position: sticky;
    top: 16px;
  }

  .page .video-sidebar.sidebar-fixed .page-sidebar-sticky {
    position: sticky;
    top: 16px;
  }

  .archive-tags-list
    .video-sidebar.sidebar-fixed
    .template-tags-sidebar-sticky {
    position: sticky;
    top: 16px;
  }
}

/* ==========================================================================
   07. Footer
   ========================================================================== */

#wrapper-footer-full {
  background-color: var(--ftt-nav-color);
}

#wrapper-footer {
  position: relative;
  padding: 20px 0 30px;
}

.site-info {
  color: var(--ftt-datas-color);
}

.site-info p {
  margin: 0 auto;
  line-height: 1.5;
}

.menu-footer-menu-container {
  height: var(--ui-header-height);
  line-height: var(--ui-header-height);
}

.site-footer ul {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  float: left;
  margin: 0 10px;
  font-weight: 600;
}

/* ==========================================================================
   08. Responsive Overrides
   ========================================================================== */

@media (max-width: 620px) {
  .head.ads-desk-2 {
    display: var(--ftt-desk-head-display, inline-block);
  }

  .grid.ads-desk-2 {
    display: var(--ftt-desk-grid-display, inline-block);
  }

  .foot.ads-desk-2 {
    display: var(--ftt-desk-foot-display, inline-block);
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 22px;
    line-height: 36px;
  }

  .hero h1,
  .hero h2 {
    font-size: 28px;
  }

  h2 {
    font-size: 1.5rem;
    line-height: 35px;
  }

  .menu-footer-menu-container {
    height: auto;
  }

  .menu-footer-menu-container ul {
    margin-bottom: 30px;
  }

  .menu-footer-menu-container ul li {
    float: none !important;
    line-height: 35px;
  }

  .tags-list .list {
    text-align: center;
  }

  .tags-letter-block .tag-items {
    column-gap: unset;
    column-count: unset;
  }

  .tags-letter-block .tag-items .tag-item,
  .tags-letter-block .tag-items .tag-item a {
    display: block;
  }

  #content {
    padding: 0 8px;
  }

  .col-m-12 {
    max-width: var(--ftt-thumb-mob-max-width, 50%);
  }

  #page-wrapper,
  .archive-tags-list {
    padding: 16px 8px;
  }
}

@media (min-width: 1200px) {
  .col-xl-3 {
    max-width: 20%;
    flex: 0 0 20%;
  }

  .col-xl-6 {
    max-width: 40%;
    flex: 0 0 40%;
  }
}

/* ==========================================================================
   09. SVG Icon
   ========================================================================== */

.fa-search,
.fa-eye,
.fa-thumbs-up,
.fa-plus,
.fa-angle-left,
.fa-angle-right {
  font-size: inherit;
  line-height: 1;
}

.fa-search::before,
.fa-eye::before,
.fa-thumbs-up::before,
.fa-plus::before,
.fa-angle-left::before,
.fa-angle-right::before {
  display: inline-block;
  content: "";
  vertical-align: -0.125em;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 1em 1em;
  mask-size: 1em 1em;
}

.fa-search::before {
  --fa-search-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3cpath d='M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z'/%3e%3c/svg%3e");
  -webkit-mask-image: var(--fa-search-mask);
  mask-image: var(--fa-search-mask);
}

.fa-eye::before {
  --fa-eye-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3e%3cpath d='M320 96C239.2 96 174.5 132.8 127.4 176.6C80.6 220.1 49.3 272 34.4 307.7C31.1 315.6 31.1 324.4 34.4 332.3C49.3 368 80.6 420 127.4 463.4C174.5 507.1 239.2 544 320 544C400.8 544 465.5 507.2 512.6 463.4C559.4 419.9 590.7 368 605.6 332.3C608.9 324.4 608.9 315.6 605.6 307.7C590.7 272 559.4 220 512.6 176.6C465.5 132.9 400.8 96 320 96zM176 320C176 240.5 240.5 176 320 176C399.5 176 464 240.5 464 320C464 399.5 399.5 464 320 464C240.5 464 176 399.5 176 320zM320 256C320 291.3 291.3 320 256 320C244.5 320 233.7 317 224.3 311.6C223.3 322.5 224.2 333.7 227.2 344.8C240.9 396 293.6 426.4 344.8 412.7C396 399 426.4 346.3 412.7 295.1C400.5 249.4 357.2 220.3 311.6 224.3C316.9 233.6 320 244.4 320 256z'/%3e%3c/svg%3e");
  -webkit-mask-image: var(--fa-eye-mask);
  mask-image: var(--fa-eye-mask);
}

.fa-thumbs-up::before {
  --fa-thumbs-up-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3e%3cpath d='M144 224C161.7 224 176 238.3 176 256L176 512C176 529.7 161.7 544 144 544L96 544C78.3 544 64 529.7 64 512L64 256C64 238.3 78.3 224 96 224L144 224zM334.6 80C361.9 80 384 102.1 384 129.4L384 133.6C384 140.4 382.7 147.2 380.2 153.5L352 224L512 224C538.5 224 560 245.5 560 272C560 291.7 548.1 308.6 531.1 316C548.1 323.4 560 340.3 560 360C560 383.4 543.2 402.9 521 407.1C525.4 414.4 528 422.9 528 432C528 454.2 513 472.8 492.6 478.3C494.8 483.8 496 489.8 496 496C496 522.5 474.5 544 448 544L360.1 544C323.8 544 288.5 531.6 260.2 508.9L248 499.2C232.8 487.1 224 468.7 224 449.2L224 262.6C224 247.7 227.5 233 234.1 219.7L290.3 107.3C298.7 90.6 315.8 80 334.6 80z'/%3e%3c/svg%3e");
  -webkit-mask-image: var(--fa-thumbs-up-mask);
  mask-image: var(--fa-thumbs-up-mask);
}

.fa-plus::before {
  --fa-plus-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3cpath d='M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z'/%3e%3c/svg%3e");
  -webkit-mask-image: var(--fa-plus-mask);
  mask-image: var(--fa-plus-mask);
}

.fa-angle-left::before {
  --fa-angle-left-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3e%3cpath d='M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z'/%3e%3c/svg%3e");
  -webkit-mask-image: var(--fa-angle-left-mask);
  mask-image: var(--fa-angle-left-mask);
}

.fa-angle-right::before {
  --fa-angle-right-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3e%3cpath d='M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z'/%3e%3c/svg%3e");
  -webkit-mask-image: var(--fa-angle-right-mask);
  mask-image: var(--fa-angle-right-mask);
}
