@charset "UTF-8";
:root {
  --text: ;
  --text-alt: ;
  --border: rgba(0,0,0,.1);
  --bg: #ffffff;
  --bg-alt: #f7f9fa;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #ffffff;
    --text-alt: #8899a6;
    --border: rgba(255,255,255,.1);
    --bg: #15202b;
    --bg-alt: #192734;
  }
}
[data-theme=Default] {
  --text: #0f1419;
  --text-alt: #5b7083;
  --border: rgba(0,0,0,.1);
  --bg: #ffffff;
  --bg-alt: #f7f9fa;
}

[data-theme=Dim] {
  --text: #ffffff;
  --text-alt: #8899a6;
  --border: rgba(255,255,255,.1);
  --bg: #15202b;
  --bg-alt: #192734;
}

[data-theme="Light Out"] {
  --text: #ffffff;
  --text-alt: #ffffff;
  --border: rgba(225,225,225,.1);
  --bg: #000000;
  --bg-alt: #15181c;
}

@page {
  size: A4;
}
@page :left {
  margin-left: 2cm;
}
@page :right {
  margin-left: 2cm;
}
@media print {
  * {
    color: #000;
  }

  header, footer {
    display: none;
  }

  .header-artwork {
    display: none;
  }

  h2 {
    margin-bottom: 0.5cm;
  }

  h1 {
    page-break-before: always;
  }
}
/*------------------------------------*  #BOX-SIZING
\*------------------------------------*/
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box;
}

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

html, body {
  height: 100%;
}

/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/*------------------------------------*  #SHARED
\*------------------------------------*/
/**
 * Shared declarations for certain elements.
 */
/**
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
input,
textarea,
button {
  font-family: inherit;
}

textarea {
  resize: none;
}

/*------------------------------------*  #PAGE
\*------------------------------------*/
/**
 * Page-level styling (e.g. HTML and BODY elements).
 */
:root {
  --normal:400;
  --semi:500;
  --bold:600;
  --font:Gibson,sans-serif;
  --font-size: 15px;
  --alpha: 100%;
  --primary: 203, 89%, 53%;
  --primary-color: hsla(var(--primary), 100%);
  --primary-color-alt: hsla(var(--primary), 30%);
}

html {
  font-family: var(--font);
  font-weight: var(--normal);
  color: var(--text);
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  line-height: 1.4;
  letter-spacing: 0.011em;
}

html.active {
  overflow: hidden;
  overscroll-behavior-y: none;
}

body {
  background-color: var(--bg);
}

#main {
  margin-top: var(--top-margin);
}

:focus {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
}

/*------------------------------------*  #HEADINGS
\*------------------------------------*/
/**
 * Simple default styles for headings 1 through 6.
 */
h1, h2, h3, h4, h5, h6 {
  font-family: Gibson;
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  color: var(--text);
}

.h1 {
  font-size: 22px;
}

.h2 {
  font-size: 21px;
}

.h3 {
  font-size: 20px;
}

.h4 {
  font-size: 19px;
}

.h5 {
  font-size: 18px;
}

.h6 {
  font-size: 17px;
}

h1 {
  margin-bottom: 1em;
}

h2 {
  margin-bottom: 0.9em;
}

h3 {
  margin-bottom: 0.8em;
}

h4 {
  margin-bottom: 0.7em;
}

h5 {
  margin-bottom: 0.6em;
}

.h5 {
  line-height: 1.5;
  font-weight: normal;
}

h6 {
  line-height: 1.5;
  font-weight: normal;
  margin-bottom: 0.5em;
}

/*------------------------------------*  #PARAGRAPHS
\*------------------------------------*/
/**
 * Basic styling for paragraphs.
 */
p {
  line-height: 1.4;
  max-width: 50em;
  margin-bottom: 1.5em;
  font-size: var(--font-size);
}

p.margin-btm-reset {
  margin-bottom: 0px;
}

/*------------------------------------*  #LINKS
\*------------------------------------*/
/**
 * Default styles for simple hyperlinks.
 */
a {
  text-decoration: none;
  color: var(--primary-color);
  text-shadow: 0px 0px var(--border);
}

button {
  background: transparent;
  cursor: pointer;
  border: 0;
}

/*------------------------------------*  #LISTS
\*------------------------------------*/
/**
 * Remove trailing margins from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Visually offset definition titles from their definitions.
 */
dt {
  font-weight: 700;
}

/*------------------------------------*    #IMAGES
\*------------------------------------*/
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */
}

/**
 * 1. If a `width` and/or `height` attribute have been explicitly defined, let’s
 *    not make the image fluid.
 */
img[width],
img[height] {
  /* [1] */
  max-width: none;
}

svg {
  fill: currentColor;
  vertical-align: middle;
}

/*------------------------------------*  #QUOTES
\*------------------------------------*/
/**
 * Basic styling for quoted text.
 */
q {
  quotes: "‘" "’";
}

q:before {
  content: open-quote;
}

q:after {
  content: close-quote;
}

blockquote {
  quotes: "“" "”";
}

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

.container {
  width: 87%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* flex */
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* links */
.link {
  color: var(--text);
  border-bottom: 1px solid var(--text);
  display: inline-block;
  color: currentColor;
}

/* titles */
.page-title__heading {
  max-width: 100%;
  font-size: 48px;
  line-height: 52px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: var(--bold);
}

@media (min-width: 768px) {
  .page-title__heading {
    margin-top: 40px;
    font-size: 64px;
    line-height: 68px;
  }
}
.page-title__heading--sub {
  font-size: var(--font-size);
  font-weight: var(--normal);
  line-height: 27px;
  color: var(--text);
  margin-bottom: 48px;
}

.title {
  font-size: 14px;
  color: var(--text);
  font-weight: var(--semi);
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .title {
    margin-bottom: 32px;
  }
}
/* position */
.fixed {
  position: var(--position);
}

.fixed__right {
  top: 0;
  right: 0;
}

.fixed__top {
  top: 0;
  left: 0;
  width: 100%;
}

/* texts */
.text--center {
  text-align: center;
}

.text--left {
  text-align: left;
}

.text--compact {
  max-width: 30em;
}

.img-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 1.2em auto 1.5em auto;
  cursor: pointer;
}
.img-overlay:hover:after {
  background-color: var(--primary-color-alt);
}
.img-overlay:hover:before {
  border-color: var(--primary-color-alt);
}
.img-overlay::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 90%;
  height: 90%;
  top: -10%;
  left: 20%;
  background-color: var(--primary-color);
  opacity: 0.2em;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.img-overlay::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 40%;
  height: 40%;
  top: 65%;
  left: -5%;
  background-color: transparent;
  border-color: var(--primary-color);
  border-width: 2px;
  border-left-style: solid;
  border-bottom-style: solid;
}
.img-overlay img {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 601px) {
  .img-overlay img {
    max-width: 18em;
  }
}
/* colors */
.color-primary {
  color: var(--primary);
}

@media screen and (min-width: 46.875em) {
  .display--mobile {
    display: none !important;
  }
}
@media screen and (max-width: 46.8125em) {
  .hide--mobile {
    display: none !important;
  }
}
.header {
  background-color: var(--bg);
  color: var(--text);
  z-index: 800;
}

.header__inner {
  height: 80px;
}

.header__logo {
  font-weight: var(--semi);
  font-size: 24px;
  line-height: 20px;
  cursor: pointer;
  color: var(--text);
}

.header__logo--avatar {
  display: block;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
}

.header__icon {
  color: var(--text);
  padding: 0.6em;
}

/* navigation */
div.nav__overlay {
  position: fixed;
  width: 320px;
  height: 100vh;
  overflow-y: auto;
  background-color: var(--bg-alt);
  z-index: 900;
  color: var(--text);
  right: -9999px;
  box-shadow: 1px 0px 2px 0 rgba(60, 64, 67, 0.3), 2px 0 6px 2px rgba(60, 64, 67, 0.15);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.nav__overlay.active {
  right: 0%;
}
.nav__overlay.active::after {
  content: "";
  position: fixed;
  z-index: -20;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--overlay);
}

@media (max-width: 320px) {
  .nav__overlay {
    width: 100%;
  }
}
.nav {
  padding: 30px;
  height: 100%;
  overflow-y: auto;
}
.nav .nav__header {
  margin-bottom: 54px;
}
.nav .nav__header .nav__icon, .nav .nav__header .header__logo {
  color: var(--text);
}

.link__items {
  padding: 16px;
  list-style: disc;
}

.link__items--list, .link__items--list button {
  margin-bottom: 24px;
  font-size: 18px;
}

.footer {
  padding: 40px 0;
}
.footer .link__items {
  padding: 0;
  list-style-type: none;
}
.footer .link__items--list {
  margin-bottom: 16px;
  font-size: 18px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer__links {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer__logo {
  margin-bottom: 24px;
}

.footer__intro {
  margin-bottom: 32px;
  min-width: 37%;
}

@media (min-width: 768px) {
  .footer__inner {
    display: flex;
    flex-wrap: nowrap;
  }

  .footer__intro {
    max-width: 480px;
    margin-bottom: 0;
  }
}
.footer__links--col {
  margin: 0;
}

@media (min-width: 768px) {
  .footer__links > *:nth-child(1) {
    margin: 0 64px;
  }
}
.bg-overlay.active {
  z-index: 0;
  bottom: 0px;
  left: 0px;
  position: fixed;
  right: 0px;
  top: 0px;
  background-color: rgba(91, 112, 131, 0.4);
  z-index: 1000;
}

.c-theme__title, .c-theme__title--sub {
  font-weight: bold;
  margin-bottom: 0.1em;
  color: var(--text-bg);
}

.c-theme__title {
  font-size: 1.3em;
}

.c-theme__title {
  margin-bottom: 0em;
}

.c-theme {
  position: fixed;
  z-index: 2000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg);
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  border: 2px solid var(--border);
  display: none;
  flex: 1 1 auto;
}

.c-theme.active {
  display: flex;
}

.c-theme__head {
  margin-top: 32px;
}

@media (max-width: 600px) {
  .c-theme {
    top: 0px;
    left: 0px;
    right: 0px;
    min-height: 100vh;
    transform: translate(0px, 0px);
    border-radius: 0px;
    border: none;
  }

  .c-theme__head {
    min-height: 53px;
    margin-top: 0px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0em 1.5em;
    text-overflow: ellipsis;
  }
  .c-theme__head button {
    margin-right: 2em;
  }
  .c-theme__head p {
    text-overflow: ellipsis;
  }

  .c-theme__close {
    display: block;
    color: var(--primary-color);
  }
}
.c-theme__wrapper {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.c-theme__body {
  overflow-y: auto;
  flex: 1 1 auto;
  outline: none;
}

.c-theme__body--inner {
  padding: 0em 32px 32px 32px;
}

/* theme card */
.c-theme__card {
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
}

.c-theme__card--img {
  margin-right: 12px;
}
.c-theme__card--img img {
  border-radius: 50%;
}

/* block */
.block {
  background-color: var(--bg-alt);
  border-radius: 16px;
  border-radius: 11px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.c-theme__block--title {
  margin-bottom: 4px;
  display: block;
  font-size: var(--font-size);
  color: var(--text-alt);
}

.block__inner {
  display: flex;
  justify-content: space-around;
}

.block__inner.c-theme__button-pad {
  padding: 16px;
}

@media (max-width: 480px) {
  .block__inner {
    flex-wrap: wrap;
  }

  .c-theme__bg {
    min-width: 100%;
  }
}
/* theme font buttons */
.c-theme__button--fonts {
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  border-radius: 2px;
}

.c-theme__button--font {
  background-color: var(--primary-color-alt);
  width: calc(90%);
  height: 4px;
  position: relative;
  outline-width: 0px;
}
.c-theme__button--font:last-child {
  width: 3%;
}
.c-theme__button--font:first-child {
  width: calc(90% + 3%);
}
.c-theme__button--font::after, .c-theme__button--font::before {
  content: "";
  display: block;
  background-color: var(--primary-color);
  opacity: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  left: 85%;
  box-shadow: rgba(101, 119, 134, 0.2) 0px 0px 7px, rgba(101, 119, 134, 0.15) 0px 1px 3px 1px;
}
.c-theme__button--font:first-child::after, .c-theme__button--font:first-child::before {
  left: calc(80%-3%);
}
.c-theme__button--font:hover::after {
  background-color: var(--primary-color-alt);
  transform: scale(2);
  top: -100%;
}

.c-theme__button--font.active::after, .c-theme__button--font.active::before {
  width: 16px;
  height: 16px;
}
.c-theme__button--font.active:hover::after {
  top: -150%;
}

.c-theme__button--font.active ~ *, .c-theme__button--font.active {
  background-color: var(--primary-color);
}

/* theme color  */
.c-theme__color--label {
  display: flex;
  width: 33.3333%;
  padding-bottom: 4px;
  padding-top: 4px;
  flex-basis: auto;
  flex-direction: column;
  align-items: center;
}

.c-theme__color {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  margin-bottom: 4px;
  outline-style: none;
}
.c-theme__color:hover {
  box-shadow: 1px 2px 4px var(--primary-color-alt);
}
.c-theme__color svg {
  display: none;
}

.c-theme__color.active svg {
  display: inline;
}

/* theme background button */
.c-theme__bg {
  margin: 4px;
  padding: 1em 20px;
  border-width: 2px;
  min-height: 64px;
  width: calc(100% / 3 - 6px);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}
.c-theme__bg:hover .button-check::after {
  background-color: var(--primary-color-alt);
}
.c-theme__bg .button-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 16px;
  position: relative;
}
.c-theme__bg .button-check svg {
  display: none;
}
.c-theme__bg .button-check::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.c-theme__bg.active {
  border-color: var(--primary-color);
}
.c-theme__bg.active .button-check svg {
  display: inline;
}

.c-theme__done {
  margin-top: 16px;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border-radius: 2px;
  color: inherit;
}
.btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.btn--small {
  padding: 1em;
}

.btn--tiny {
  padding: 0.5em 1em;
}

.btn--large {
  padding: 1em 2em;
}

.btn--tab {
  padding: 1.2em 1em;
  font-size: 16px;
}

.btn--tab.active {
  border-bottom: 2px solid var(--primary-color);
}

.btn--toggle {
  padding: 0.5em 2em;
}

.btn--primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn--rounded {
  border-radius: 40em;
}

.btn--border {
  border: 2px solid var(--text);
}

.btn--wrapper {
  margin-top: 1em;
}

.section {
  background-color: var(--bg);
}

.section__hero {
  border-bottom: 1px solid var(--border);
  padding: 0em 0 0em 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--pad {
  padding-top: 2em;
  padding-bottom: 1.6em;
}

.section--pad__btm {
  padding-bottom: 1rem;
}

.section__inner {
  padding: 1em;
}

.section--full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 600px) {
  .section__inner {
    flex-wrap: wrap;
  }
}
@media (min-width: 601px) {
  .about.section__inner p {
    text-align: left;
    max-width: 20em;
    margin-right: 1.5em;
  }

  .home.section__inner {
    text-align: center;
  }
}
@media (min-width: 567px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}
.article__wrapper {
  padding: 1em 0;
}

.article__list {
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5em;
  padding: 0.9em 0;
}
.article__list:hover {
  background-color: var(bg-alt);
  border-radius: 11px;
}

.article__out {
  display: none;
}

.article__tag {
  margin-bottom: 4px;
  font-size: 16px;
  color: var(--text);
}

.post__list--title {
  margin-bottom: 8px;
}

.post__list--title .link {
  border-bottom: none;
}

@media (min-width: 900px) {
  .article__list {
    display: flex;
  }

  .article__out {
    display: block;
    margin-right: 0.4em;
    order: 2;
  }
  .article__out .link__items {
    list-style: none;
  }
}
/* article read */
.article__meta span {
  display: inline-block;
}

.article__meta-category {
  margin-right: 1rem;
}

.article__heading {
  margin-bottom: 0.4rem;
  margin-top: 0.6rem;
}

.article__heading {
  font-size: 2em;
  max-width: 16em;
}

.article__hero-image {
  width: 100%;
  max-height: 566px;
  object-fit: cover;
  object-position: center;
}

.article__body figure {
  background: transparent;
  border: 0;
  margin-top: 16px;
  margin-bottom: 1em;
}
.article__body figure img, .article__body figure video {
  display: block;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.article__body figure img:hover, .article__body figure video:hover {
  -webkit-filter: none;
  filter: none;
}
.article__body figure figcaption {
  padding-top: 8px;
  color: #737373;
  text-align: center;
}
.article__body ol,
.article__body ul {
  padding: 0;
  margin: 1em 0;
  max-width: 100%;
}
.article__body ol {
  list-style: none;
  counter-reset: listCounter;
}
.article__body ol > li {
  padding-left: 1.75em;
  padding-left: calc(1.65em + .7vw);
  position: relative;
  counter-increment: listCounter;
  margin-bottom: 1em;
}
.article__body ol > li::before {
  content: counter(listCounter, decimal-leading-zero);
  font-size: 0.7em;
  font-weight: 700;
  color: var(--primary-color);
  left: 0.8em;
  position: absolute;
  font-family: Product Sans, AvenirNext, Avenir, -apple-system, BlinkMacSystemFont, Roboto Slab, Droid Serif, Segoe UI, Oxygen-Sans, Ubuntu, Cantarell, Georgia, serif;
}
.article__body ol ol > li {
  padding-left: 2.25em;
  padding-left: calc(1.35em + .7vw);
}
.article__body ol ol ol > li {
  padding-left: 3em;
  padding-left: calc(2.4em + 1.4vw);
}
.article__body ol[start="0"] {
  counter-reset: listCounter -1;
}
.article__body ol ul li:before {
  content: "";
}
.article__body ol ol {
  margin-left: 1em;
  margin-top: 0;
  margin-bottom: 0;
}
.article__body ol ol > li::before {
  content: counters(listCounter, ".", decimal-leading-zero) " ";
  left: -1.5em;
}
.article__body p {
  font-weight: 400;
  font-size: var(--font-size);
  line-height: 1.7777777778;
}
.article__body .codetitle {
  padding: 0.25em 0 0.25em 0.5em;
  border-radius: 0.25em 0.25em 0 0;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  font-size: 0.75em;
}

.media {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.media__title {
  font-weight: 500;
}

.media__copy {
  margin-top: -0.5rem;
}

.feedback {
  border-bottom: 0.1rem solid var(--border);
  border-top: 0.1rem solid var(--border);
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  position: relative;
}

.feedback__form--appear {
  overflow: hidden;
  position: relative;
  -webkit-transition: height 0.2s cubic-bezier(1, 0.5, 0.8, 1);
  transition: height 0.2s cubic-bezier(1, 0.5, 0.8, 1);
}

.feedback__vote {
  background-color: transparent;
  border-radius: 50%;
  border: 0;
  display: inline-block;
  margin: 0.5rem;
  padding: 0;
}

.feedback__vote svg {
  pointer-events: none;
}

.feedback__vote svg circle,
.feedback__vote svg g path {
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.feedback__vote:focus,
.feedback__vote:hover {
  cursor: pointer;
  outline: 0;
}

.feedback__vote:disabled svg circle {
  fill: var(--border);
}

.feedback__vote:disabled svg g path {
  stroke: #555b5e;
}

.feedback__vote:disabled {
  cursor: not-allowed;
}

.feedback__vote.is-inactive {
  pointer-events: none;
}

.feedback__vote--upvote:focus svg circle,
.feedback__vote--upvote:hover svg circle {
  fill: rgba(15, 123, 114, 0.2);
}

.feedback__vote--downvote:focus svg circle,
.feedback__vote--downvote:hover svg circle {
  fill: rgba(129, 47, 43, 0.25);
}

/* mark text */
.mark-text {
  display: inline;
  background: linear-gradient(180deg, rgba(225, 225, 225, 0) 50%, #00bb00 50%);
}

/* add lines to both side */
.lines {
  text-align: center;
  background-image: linear-gradient(#ddd, #ddd);
  background-size: 100% 0.1em;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 2em 0;
  margin-top: 2em;
}

.lines .btn {
  display: inline-block;
  box-shadow: 0 0 0 1em #fff;
}

/* css wavy line */
.wavy-line {
  position: relative;
  width: 100vw;
  height: 50px;
}

.wavy-line::before, .wavy-line::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  /*same width as container*/
  height: 26px;
}

.wavy-line::after {
  background: linear-gradient(45deg, transparent, transparent 49%, green 49%, transparent 51%);
}

.wavy-line::before {
  background: linear-gradient(-45deg, transparent, transparent 49%, green 49%, transparent 51%);
}

.wavy-line::before, .wavy-line::after {
  background-size: 50px 50px;
}

/* animate line */
.line-animate {
  display: inline-block;
  text-decoration: none;
  font-size: 26px;
  color: green;
  position: relative;
}

.line-animate:hover.line-animate::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 100%;
  background-image: linear-gradient(#ddd, #ddd);
  background-size: 100% 0.1em;
  animation: animate 0.5s linear;
}

@keyframes animate {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  0% {
    width: 0;
  }
}
/* line before */
.line-before__inner {
  position: relative;
  display: block;
  width: 100%;
  color: #333;
  background-position: center 72%;
  font-size: 1em;
  z-index: 2;
  padding-left: calc(100px + 1em);
}

.line-before__inner::before {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 1px;
  background-color: currentColor;
  left: 0;
  top: 50%;
}

@font-face {
  font-family: "Gibson";
  src: url("../assets/fonts/");
  src: url("../assets/fonts/?#iefix") format("embedded-opentype"), url("../assets/fonts/Gibson-Bold.woff2") format("woff2"), url("../assets/fonts/Gibson-Bold.woff") format("woff"), url("../assets/fonts/Gibson-Bold.ttf") format("truetype"), url("../assets/fonts/Gibson-Bold.svg#Gibson-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gibson";
  src: url("../assets/fonts/Gibson-Regular.eot");
  src: url("../assets/fonts/Gibson-Regular.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/Gibson-Regular.woff2") format("woff2"), url("../assets/fonts/Gibson-Regular.woff") format("woff"), url("../assets/fonts/Gibson-Regular.ttf") format("truetype"), url("../assets/fonts/Gibson-Regular.svg#Gibson-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*# sourceMappingURL=style.css.map */
