:root {
    --color_bg_primary: #f4f0ea;
    --color_fg_primary: #454546;
    --color_highlight_on_light: #007777;  
    /* Dark splash box with Neon color for heading and links */
    --color_bg_splash: #292929;
    --color_highlight_on_dark: #84E4EE;
    --color_text_splash: #F0ECE7;    
    --color_button_splash: #fc65fd;
    --color_gradient_button:linear-gradient(321deg, #f5ec00,#ff6a00,#ff6251,#e63b7a);
    --color_bg_utility: #000834;
    --color_text_utility: #fffffe;
    --color_link_utility: #84E4Ef;
    --color_button_utility: #ac1400;
    --color_bg_data: #eae5d9;
    --border: 1px solid #c2c2c2;
    --rte-outset-md: 10rem;
    --dark_shadow: 8px 8px rgba(0,0,0,0.4);
    --fs-0: 0.8rem;
    --fs-1: 1rem;
    --fs-2: 1.2rem;
    --fs-3: 1.4rem;
    --fs-4: 1.6rem;
    --fs-5: 2.0rem;
    --s-0: 0;
    --s-1: 0.25rem;
    --s-2: 0.5rem;
    --s-3: 1rem;
    --s-4: 1.5rem;
    --s-5: 2rem;
    --s-6: 2.5rem;
}

.fs-0 {
    font-size: var(--fs-0);
}
.fs-1 {
    font-size: var(--fs-1);
}
.fs-2 {
    font-size: var(--fs-2);
}
.fs-3 {
    font-size: var(--fs-3);
}
.fs-4 {
    font-size: var(--fs-4);
}
.fs-5 {
    font-size: var(--fs-5);
}

.m-auto {
    margin: 0 auto;    
}
.m-0 {
    margin: 0;    
}
.mt-3 {
    margin: 1rem;    
}
.mw-100 {
    max-width: 100%;    
}

.bg-image {
    width: 100%;
    height:  10em;
    background-image: url(/assets/cradle-stripes.svg);
    background-size:100% 100%;
    -o-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    background-size:cover;
    display: flex;
    align-items: flex-end;
    margin-top: -8em;
}

html {
  font-family: "Hiragino Maru Gothic ProN", sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    background-color: var(--color_bg_primary);
}



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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}

dfn {
  font-style: italic;
}
h1,
.h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
  line-height: 1;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
  text-wrap: wrap;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 0.8em;
}
  
form {
    max-width: 500px;
    margin: 0 auto;   
}

#contact-form {
    background-color: rgba(0,0,0,0.04);
    padding: 1em;
    outline: 1px solid lightgrey;
}

label {
  display: block;
  margin-bottom: 2px;
  font-weight: normal;
  font-size:  0.8em;
  text-align: left;
  padding-left: 0.5em;
}

#contact-form label {
    padding:0;
    }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  -moz-appearamce: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.code-row {
  display: flex;
  align-items: center;
}

.code-row button {
    background:transparent;
    border: 1px #fffcf7 solid;
    border-left: none;
    border-radius: 0 2px 2px 0;
}

.icon {
  --icon-size: 20px;
  --icon-color: currentColor;
  line-height: 1em;
  display: inline-block;
  align-self: center;    
}

.icon img {
    max-width: 100%;    
}

.icon svg {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  height: var(--icon-size);
  width: var(--icon-size);    
}

.l-icon {
    height: 3em;
    width: 3em;
    }

pre {
    position: relative;
}
.copy {
    position: absolute;
    right:0;
    top:0;
    cursor: pointer;
}
pre:hover .copy {
    display:block;
}
.copy:hover {
    background-color: rgba(255,255,255,0.2);
}
.sm {
    font-size: 0.6em;
}
.md {
    font-size: 0.8em;
}

.outlined {
    outline: 1px solid;
    padding: 0px 2px 0px 2px;
    border-radius: 2px;
}

.fixed {
    position: fixed;
}


input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0;
  padding: 0.35em 0.625em 0.75em;
  background-color: rgba(0,0,0,0.04);
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}

summary {
  font-weight: bold;
  margin: -0.5em -0.5em 0;
    margin-bottom: 0px;
  padding: 0.5em;
  cursor: pointer;    
}

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

.grid:after,
.grid--rev:after,
.grid--full:after,
.grid-uniform:after {
  content: "";
  display: table;
  clear: both;
}
.grid-item.clear {
  clear: both;
}
.grid,
.grid--rev,
.grid--full,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -15px;
}
.grid-item {
  float: left;
  min-height: 1px;
  padding-left: 15px;
  vertical-align: top;
  width: 100%;
}

.content-page .grid-item:first-child {
    padding-left: 0;
}

.grid--rev {
  direction: rtl;
  text-align: left;
}
.grid--rev > .grid-item {
  direction: ltr;
  text-align: left;
  float: right;
}
.grid--full {
  margin-left: 0;
}
.grid--full > .grid-item {
  padding-left: 0;
}
.one-whole {
  width: 100%;
}
.one-half,
.two-quarters,
.three-sixths,
.four-eighths,
.five-tenths,
.six-twelfths {
  width: 50%;
}
.one-third,
.two-sixths,
.four-twelfths {
  width: 33.333%;
}
.two-thirds,
.four-sixths,
.eight-twelfths {
  width: 66.666%;
}
.one-quarter,
.two-eighths,
.three-twelfths {
  width: 25%;
}
.three-quarters,
.six-eighths,
.nine-twelfths {
  width: 75%;
}
.one-fifth,
.two-tenths {
  width: 20%;
}
.two-fifths,
.four-tenths {
  width: 40%;
}
.three-fifths,
.six-tenths {
  width: 60%;
}
.four-fifths,
.eight-tenths {
  width: 80%;
}
.one-sixth,
.two-twelfths {
  width: 16.666%;
}
.five-sixths,
.ten-twelfths {
  width: 83.333%;
}
.one-eighth {
  width: 12.5%;
}
.three-eighths {
  width: 37.5%;
}
.five-eighths {
  width: 62.5%;
}
.seven-eighths {
  width: 87.5%;
}
.one-tenth {
  width: 10%;
}
.three-tenths {
  width: 30%;
}
.seven-tenths {
  width: 70%;
}
.nine-tenths {
  width: 90%;
}
.one-twelfth {
  width: 8.333%;
}
.five-twelfths {
  width: 41.666%;
}
.seven-twelfths {
  width: 58.333%;
}
.eleven-twelfths {
  width: 91.666%;
}
.show {
  display: block !important;
}
.hide {
  display: none !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-top {
  vertical-align: top;
}
.text-bottom {
  vertical-align: bottom;
}
.left {
  float: left !important;
}
.right {
  float: right !important;
  right: 0;
}
@media only screen and (max-width: 700px) {
  .small--one-whole {
    width: 100%;
  }
  .small--one-half,
  .small--two-quarters,
  .small--three-sixths,
  .small--four-eighths,
  .small--five-tenths,
  .small--six-twelfths {
    width: 50%;
  }
  .small--one-third,
  .small--two-sixths,
  .small--four-twelfths {
    width: 33.333%;
  }
  .small--two-thirds,
  .small--four-sixths,
  .small--eight-twelfths {
    width: 66.666%;
  }
  .small--one-quarter,
  .small--two-eighths,
  .small--three-twelfths {
    width: 25%;
  }
  .small--three-quarters,
  .small--six-eighths,
  .small--nine-twelfths {
    width: 75%;
  }
  .small--one-fifth,
  .small--two-tenths {
    width: 20%;
  }
  .small--two-fifths,
  .small--four-tenths {
    width: 40%;
  }
  .small--three-fifths,
  .small--six-tenths {
    width: 60%;
  }
  .small--four-fifths,
  .small--eight-tenths {
    width: 80%;
  }
  .small--one-sixth,
  .small--two-twelfths {
    width: 16.666%;
  }
  .small--five-sixths,
  .small--ten-twelfths {
    width: 83.333%;
  }
  .small--one-eighth {
    width: 12.5%;
  }
  .small--three-eighths {
    width: 37.5%;
  }
  .small--five-eighths {
    width: 62.5%;
  }
  .small--seven-eighths {
    width: 87.5%;
  }
  .small--one-tenth {
    width: 10%;
  }
  .small--three-tenths {
    width: 30%;
  }
  .small--seven-tenths {
    width: 70%;
  }
  .small--nine-tenths {
    width: 90%;
  }
  .small--one-twelfth {
    width: 8.333%;
  }
  .small--five-twelfths {
    width: 41.666%;
  }
  .small--seven-twelfths {
    width: 58.333%;
  }
  .small--eleven-twelfths {
    width: 91.666%;
  }
  .small--show {
    display: block !important;
  }
  .small--hide {
    display: none !important;
  }
  .small--text-left {
    text-align: left !important;
  }
  .small--text-right {
    text-align: right !important;
  }
  .small--text-center {
    text-align: center !important;
  }
  .small--left {
    float: left !important;
  }
  .small--right {
    float: right !important;
  }
  .grid-uniform .small--one-half:nth-child(2n + 1),
  .grid-uniform .small--two-quarters:nth-child(2n + 1),
  .grid-uniform .small--three-sixths:nth-child(2n + 1),
  .grid-uniform .small--four-eighths:nth-child(2n + 1),
  .grid-uniform .small--five-tenths:nth-child(2n + 1),
  .grid-uniform .small--six-twelfths:nth-child(2n + 1),
  .grid-uniform .small--one-third:nth-child(3n + 1),
  .grid-uniform .small--two-sixths:nth-child(3n + 1),
  .grid-uniform .small--four-twelfths:nth-child(3n + 1),
  .grid-uniform .small--one-quarter:nth-child(4n + 1),
  .grid-uniform .small--two-eighths:nth-child(4n + 1),
  .grid-uniform .small--three-twelfths:nth-child(4n + 1),
  .grid-uniform .small--one-fifth:nth-child(5n + 1),
  .grid-uniform .small--two-tenths:nth-child(5n + 1),
  .grid-uniform .small--one-sixth:nth-child(6n + 1),
  .grid-uniform .small--two-twelfths:nth-child(6n + 1),
  .grid-uniform .small--one-twelfth:nth-child(12n + 1) {
    clear: both;
  }
}
@media only screen and (min-width: 701px) and (max-width: 989px) {
  .medium--one-whole {
    width: 100%;
  }
  .medium--one-half,
  .medium--two-quarters,
  .medium--three-sixths,
  .medium--four-eighths,
  .medium--five-tenths,
  .medium--six-twelfths {
    width: 50%;
  }
  .medium--one-third,
  .medium--two-sixths,
  .medium--four-twelfths {
    width: 33.333%;
  }
  .medium--two-thirds,
  .medium--four-sixths,
  .medium--eight-twelfths {
    width: 66.666%;
  }
  .medium--one-quarter,
  .medium--two-eighths,
  .medium--three-twelfths {
    width: 25%;
  }
  .medium--three-quarters,
  .medium--six-eighths,
  .medium--nine-twelfths {
    width: 75%;
  }
  .medium--one-fifth,
  .medium--two-tenths {
    width: 20%;
  }
  .medium--two-fifths,
  .medium--four-tenths {
    width: 40%;
  }
  .medium--three-fifths,
  .medium--six-tenths {
    width: 60%;
  }
  .medium--four-fifths,
  .medium--eight-tenths {
    width: 80%;
  }
  .medium--one-sixth,
  .medium--two-twelfths {
    width: 16.666%;
  }
  .medium--five-sixths,
  .medium--ten-twelfths {
    width: 83.333%;
  }
  .medium--one-eighth {
    width: 12.5%;
  }
  .medium--three-eighths {
    width: 37.5%;
  }
  .medium--five-eighths {
    width: 62.5%;
  }
  .medium--seven-eighths {
    width: 87.5%;
  }
  .medium--one-tenth {
    width: 10%;
  }
  .medium--three-tenths {
    width: 30%;
  }
  .medium--seven-tenths {
    width: 70%;
  }
  .medium--nine-tenths {
    width: 90%;
  }
  .medium--one-twelfth {
    width: 8.333%;
  }
  .medium--five-twelfths {
    width: 41.666%;
  }
  .medium--seven-twelfths {
    width: 58.333%;
  }
  .medium--eleven-twelfths {
    width: 91.666%;
  }
  .medium--show {
    display: block !important;
  }
  .medium--hide {
    display: none !important;
  }
  .medium--text-left {
    text-align: left !important;
  }
  .medium--text-right {
    text-align: right !important;
  }
  .medium--text-center {
    text-align: center !important;
  }
  .medium--left {
    float: left !important;
  }
  .medium--right {
    float: right !important;
  }
}
@media only screen and (max-width: 989px) {
  .medium-down--one-whole {
    width: 100%;
  }
  .medium-down--one-half,
  .medium-down--two-quarters,
  .medium-down--three-sixths,
  .medium-down--four-eighths,
  .medium-down--five-tenths,
  .medium-down--six-twelfths {
    width: 50%;
  }
  .medium-down--one-third,
  .medium-down--two-sixths,
  .medium-down--four-twelfths {
    width: 33.333%;
  }
  .medium-down--two-thirds,
  .medium-down--four-sixths,
  .medium-down--eight-twelfths {
    width: 66.666%;
  }
  .medium-down--one-quarter,
  .medium-down--two-eighths,
  .medium-down--three-twelfths {
    width: 25%;
  }
  .medium-down--three-quarters,
  .medium-down--six-eighths,
  .medium-down--nine-twelfths {
    width: 75%;
  }
  .medium-down--one-fifth,
  .medium-down--two-tenths {
    width: 20%;
  }
  .medium-down--two-fifths,
  .medium-down--four-tenths {
    width: 40%;
  }
  .medium-down--three-fifths,
  .medium-down--six-tenths {
    width: 60%;
  }
  .medium-down--four-fifths,
  .medium-down--eight-tenths {
    width: 80%;
  }
  .medium-down--one-sixth,
  .medium-down--two-twelfths {
    width: 16.666%;
  }
  .medium-down--five-sixths,
  .medium-down--ten-twelfths {
    width: 83.333%;
  }
  .medium-down--one-eighth {
    width: 12.5%;
  }
  .medium-down--three-eighths {
    width: 37.5%;
  }
  .medium-down--five-eighths {
    width: 62.5%;
  }
  .medium-down--seven-eighths {
    width: 87.5%;
  }
  .medium-down--one-tenth {
    width: 10%;
  }
  .medium-down--three-tenths {
    width: 30%;
  }
  .medium-down--seven-tenths {
    width: 70%;
  }
  .medium-down--nine-tenths {
    width: 90%;
  }
  .medium-down--one-twelfth {
    width: 8.333%;
  }
  .medium-down--five-twelfths {
    width: 41.666%;
  }
  .medium-down--seven-twelfths {
    width: 58.333%;
  }
  .medium-down--eleven-twelfths {
    width: 91.666%;
  }
  .medium-down--show {
    display: block !important;
  }
  .medium-down--hide {
    display: none !important;
  }
  .medium-down--text-left {
    text-align: left !important;
  }
  .medium-down--text-right {
    text-align: right !important;
  }
  .medium-down--text-center {
    text-align: center !important;
  }
  .medium-down--left {
    float: left !important;
  }
  .medium-down--right {
    float: right !important;
  }
}
@media only screen and (min-width: 990px) {
  .large--one-whole {
    width: 100%;
  }
  .large--one-half,
  .large--two-quarters,
  .large--three-sixths,
  .large--four-eighths,
  .large--five-tenths,
  .large--six-twelfths {
    width: 50%;
  }
  .large--one-third,
  .large--two-sixths,
  .large--four-twelfths {
    width: 33.333%;
  }
  .large--two-thirds,
  .large--four-sixths,
  .large--eight-twelfths {
    width: 66.666%;
  }
  .large--one-quarter,
  .large--two-eighths,
  .large--three-twelfths {
    width: 25%;
  }
  .large--three-quarters,
  .large--six-eighths,
  .large--nine-twelfths {
    width: 75%;
  }
  .large--one-fifth,
  .large--two-tenths {
    width: 20%;
  }
  .large--two-fifths,
  .large--four-tenths {
    width: 40%;
  }
  .large--three-fifths,
  .large--six-tenths {
    width: 60%;
  }
  .large--four-fifths,
  .large--eight-tenths {
    width: 80%;
  }
  .large--one-sixth,
  .large--two-twelfths {
    width: 16.666%;
  }
  .large--five-sixths,
  .large--ten-twelfths {
    width: 83.333%;
  }
  .large--one-eighth {
    width: 12.5%;
  }
  .large--three-eighths {
    width: 37.5%;
  }
  .large--five-eighths {
    width: 62.5%;
  }
  .large--seven-eighths {
    width: 87.5%;
  }
  .large--one-tenth {
    width: 10%;
  }
  .large--three-tenths {
    width: 30%;
  }
  .large--seven-tenths {
    width: 70%;
  }
  .large--nine-tenths {
    width: 90%;
  }
  .large--one-twelfth {
    width: 8.333%;
  }
  .large--five-twelfths {
    width: 41.666%;
  }
  .large--seven-twelfths {
    width: 58.333%;
  }
  .large--eleven-twelfths {
    width: 91.666%;
  }
  .large--show {
    display: block !important;
  }
  .large--hide {
    display: none !important;
  }
  .large--text-left {
    text-align: left !important;
  }
  .large--text-right {
    text-align: right !important;
  }
  .large--text-center {
    text-align: center !important;
  }
  .large--left {
    float: left !important;
  }
  .large--right {
    float: right !important;
  }
}
[class*="push--"] {
  position: relative;
}
.push--one-whole {
  left: 100%;
}
.push--one-half,
.push--two-quarters,
.push--three-sixths,
.push--four-eighths,
.push--five-tenths,
.push--six-twelfths {
  left: 50%;
}
.push--one-third,
.push--two-sixths,
.push--four-twelfths {
  left: 33.333%;
}
.push--two-thirds,
.push--four-sixths,
.push--eight-twelfths {
  left: 66.666%;
}
.push--one-quarter,
.push--two-eighths,
.push--three-twelfths {
  left: 25%;
}
.push--three-quarters,
.push--six-eighths,
.push--nine-twelfths {
  left: 75%;
}
.push--one-fifth,
.push--two-tenths {
  left: 20%;
}
.push--two-fifths,
.push--four-tenths {
  left: 40%;
}
.push--three-fifths,
.push--six-tenths {
  left: 60%;
}
.push--four-fifths,
.push--eight-tenths {
  left: 80%;
}
.push--one-sixth,
.push--two-twelfths {
  left: 16.666%;
}
.push--five-sixths,
.push--ten-twelfths {
  left: 83.333%;
}
.push--one-eighth {
  left: 12.5%;
}
.push--three-eighths {
  left: 37.5%;
}
.push--five-eighths {
  left: 62.5%;
}
.push--seven-eighths {
  left: 87.5%;
}
.push--one-tenth {
  left: 10%;
}
.push--three-tenths {
  left: 30%;
}
.push--seven-tenths {
  left: 70%;
}
.push--nine-tenths {
  left: 90%;
}
.push--one-twelfth {
  left: 8.333%;
}
.push--five-twelfths {
  left: 41.666%;
}
.push--seven-twelfths {
  left: 58.333%;
}
.push--eleven-twelfths {
  left: 91.666%;
}
@media only screen and (min-width: 701px) and (max-width: 989px) {
  .push--medium--one-whole {
    left: 100%;
  }
  .push--medium--one-half,
  .push--medium--two-quarters,
  .push--medium--three-sixths,
  .push--medium--four-eighths,
  .push--medium--five-tenths,
  .push--medium--six-twelfths {
    left: 50%;
  }
  .push--medium--one-third,
  .push--medium--two-sixths,
  .push--medium--four-twelfths {
    left: 33.333%;
  }
  .push--medium--two-thirds,
  .push--medium--four-sixths,
  .push--medium--eight-twelfths {
    left: 66.666%;
  }
  .push--medium--one-quarter,
  .push--medium--two-eighths,
  .push--medium--three-twelfths {
    left: 25%;
  }
  .push--medium--three-quarters,
  .push--medium--six-eighths,
  .push--medium--nine-twelfths {
    left: 75%;
  }
  .push--medium--one-fifth,
  .push--medium--two-tenths {
    left: 20%;
  }
  .push--medium--two-fifths,
  .push--medium--four-tenths {
    left: 40%;
  }
  .push--medium--three-fifths,
  .push--medium--six-tenths {
    left: 60%;
  }
  .push--medium--four-fifths,
  .push--medium--eight-tenths {
    left: 80%;
  }
  .push--medium--one-sixth,
  .push--medium--two-twelfths {
    left: 16.666%;
  }
  .push--medium--five-sixths,
  .push--medium--ten-twelfths {
    left: 83.333%;
  }
  .push--medium--one-eighth {
    left: 12.5%;
  }
  .push--medium--three-eighths {
    left: 37.5%;
  }
  .push--medium--five-eighths {
    left: 62.5%;
  }
  .push--medium--seven-eighths {
    left: 87.5%;
  }
  .push--medium--one-tenth {
    left: 10%;
  }
  .push--medium--three-tenths {
    left: 30%;
  }
  .push--medium--seven-tenths {
    left: 70%;
  }
  .push--medium--nine-tenths {
    left: 90%;
  }
  .push--medium--one-twelfth {
    left: 8.333%;
  }
  .push--medium--five-twelfths {
    left: 41.666%;
  }
  .push--medium--seven-twelfths {
    left: 58.333%;
  }
  .push--medium--eleven-twelfths {
    left: 91.666%;
  }
}
@media only screen and (max-width: 989px) {
  .push--medium-down--one-whole {
    left: 100%;
  }
  .push--medium-down--one-half,
  .push--medium-down--two-quarters,
  .push--medium-down--three-sixths,
  .push--medium-down--four-eighths,
  .push--medium-down--five-tenths,
  .push--medium-down--six-twelfths {
    left: 50%;
  }
  .push--medium-down--one-third,
  .push--medium-down--two-sixths,
  .push--medium-down--four-twelfths {
    left: 33.333%;
  }
  .push--medium-down--two-thirds,
  .push--medium-down--four-sixths,
  .push--medium-down--eight-twelfths {
    left: 66.666%;
  }
  .push--medium-down--one-quarter,
  .push--medium-down--two-eighths,
  .push--medium-down--three-twelfths {
    left: 25%;
  }
  .push--medium-down--three-quarters,
  .push--medium-down--six-eighths,
  .push--medium-down--nine-twelfths {
    left: 75%;
  }
  .push--medium-down--one-fifth,
  .push--medium-down--two-tenths {
    left: 20%;
  }
  .push--medium-down--two-fifths,
  .push--medium-down--four-tenths {
    left: 40%;
  }
  .push--medium-down--three-fifths,
  .push--medium-down--six-tenths {
    left: 60%;
  }
  .push--medium-down--four-fifths,
  .push--medium-down--eight-tenths {
    left: 80%;
  }
  .push--medium-down--one-sixth,
  .push--medium-down--two-twelfths {
    left: 16.666%;
  }
  .push--medium-down--five-sixths,
  .push--medium-down--ten-twelfths {
    left: 83.333%;
  }
  .push--medium-down--one-eighth {
    left: 12.5%;
  }
  .push--medium-down--three-eighths {
    left: 37.5%;
  }
  .push--medium-down--five-eighths {
    left: 62.5%;
  }
  .push--medium-down--seven-eighths {
    left: 87.5%;
  }
  .push--medium-down--one-tenth {
    left: 10%;
  }
  .push--medium-down--three-tenths {
    left: 30%;
  }
  .push--medium-down--seven-tenths {
    left: 70%;
  }
  .push--medium-down--nine-tenths {
    left: 90%;
  }
  .push--medium-down--one-twelfth {
    left: 8.333%;
  }
  .push--medium-down--five-twelfths {
    left: 41.666%;
  }
  .push--medium-down--seven-twelfths {
    left: 58.333%;
  }
  .push--medium-down--eleven-twelfths {
    left: 91.666%;
  }
}
@media only screen and (min-width: 990px) {
  .push--large--one-whole {
    left: 100%;
  }
  .push--large--one-half,
  .push--large--two-quarters,
  .push--large--three-sixths,
  .push--large--four-eighths,
  .push--large--five-tenths,
  .push--large--six-twelfths {
    left: 50%;
  }
  .push--large--one-third,
  .push--large--two-sixths,
  .push--large--four-twelfths {
    left: 33.333%;
  }
  .push--large--two-thirds,
  .push--large--four-sixths,
  .push--large--eight-twelfths {
    left: 66.666%;
  }
  .push--large--one-quarter,
  .push--large--two-eighths,
  .push--large--three-twelfths {
    left: 25%;
  }
  .push--large--three-quarters,
  .push--large--six-eighths,
  .push--large--nine-twelfths {
    left: 75%;
  }
  .push--large--one-fifth,
  .push--large--two-tenths {
    left: 20%;
  }
  .push--large--two-fifths,
  .push--large--four-tenths {
    left: 40%;
  }
  .push--large--three-fifths,
  .push--large--six-tenths {
    left: 60%;
  }
  .push--large--four-fifths,
  .push--large--eight-tenths {
    left: 80%;
  }
  .push--large--one-sixth,
  .push--large--two-twelfths {
    left: 16.666%;
  }
  .push--large--five-sixths,
  .push--large--ten-twelfths {
    left: 83.333%;
  }
  .push--large--one-eighth {
    left: 12.5%;
  }
  .push--large--three-eighths {
    left: 37.5%;
  }
  .push--large--five-eighths {
    left: 62.5%;
  }
  .push--large--seven-eighths {
    left: 87.5%;
  }
  .push--large--one-tenth {
    left: 10%;
  }
  .push--large--three-tenths {
    left: 30%;
  }
  .push--large--seven-tenths {
    left: 70%;
  }
  .push--large--nine-tenths {
    left: 90%;
  }
  .push--large--one-twelfth {
    left: 8.333%;
  }
  .push--large--five-twelfths {
    left: 41.666%;
  }
  .push--large--seven-twelfths {
    left: 58.333%;
  }
  .push--large--eleven-twelfths {
    left: 91.666%;
  }
}

.wrapper {
  *zoom: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 12px;
}

/* navigation */
#navigation {
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  z-index: 99999999;
  background-color: var(--color_bg_splash);
  transform: translate3d(0px, 0, 0);
  transition: all 350ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  color: var(--color_text_splash);
}
#navigation.is-visible {
  transform: translate3d(-300px, 0, 0);
}
.no-csstransforms3d #navigation.is-visible {
  right: 0px;
}
#navigation .modal--close {
  position: absolute;
  cursor: pointer;
  right: 1.25em;
  top: 1em;
  font-size: 0.75em;
}
#navigation .navigation-menu {
  padding: 24px;
  padding-top: 0;
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#navigation a {
  color: var(--color_highlight_on_dark);
}
#navigation .site-nav-main {
  font-size: 0.9em;
}
#navigation .site-nav-main a {
  display: block;
  padding: 12px 0px;
  text-decoration: none;
  font-weight: normal;
}
#navigation .navigation-menu a:hover,
#navigation .navigation-menu a:active,
#navigation .navigation-menu a:focus {
  color: var(--color_text_splash);
}
#navigation .site-nav-main .site-nav-main--dropdown {
  margin-bottom: 24px;
  display: none;
}
#navigation .site-nav-main .site-nav-main--dropdown a {
  font-weight: normal;
  font-size: 0.8em;
  padding: 4px;
}
#navigation .site-nav-main .site-nav-main--dropdown a:hover,
#navigation .site-nav-main .site-nav-main--dropdown a:active,
#navigation .site-nav-main .site-nav-main--dropdown a:focus {
  color: var(--color_text_splash);
}
#navigation .site-nav-main .open .site-nav-main--dropdown {
  display: block;
}
#navigation .site-nav-footer {
  font-size: 0.7em;
  margin: 24px 0;
}
#navigation .site-nav-footer a {
  text-decoration: none;
  display: block;
  padding: 8px 0;
}    
/* navigation*/

/* site header */
.headroom {
  -webkit-will-change: transform;
  -moz-will-change: transform;
  -ms-will-change: transform;
  -o-will-change: transform;
  will-change: transform;
  -webkit-transition: transform 200ms linear;
  -moz-transition: transform 200ms linear;
  -ms-transition: transform 200ms linear;
  -o-transition: transform 200ms linear;
  transition: transform 200ms linear;
  position: fixed;
  -webkit-backface-visibility: hidden;
  top: 0;
  left: 0;
}
.headroom--pinned {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.headroom--unpinned {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color:transparent!important;
}
.template-index .headroom--not-top {
  background-color: rgba(0,8,48,0.9)!important;
}
.template-index .site-header {
  background-color: transparent;
}

.site-header {
  z-index: 100;
  color: #f4f9f4;
  width: 100%;
  padding: 0;
  background-color: rgba(0,8,48,0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.site-header .heading {
    margin-top: 0.25em;
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
}
.site-header .heading .navigation {
    display: inline-block;
    padding-left:1em;
    vertical-align: top;
}
.site-header .navigation ul {
    margin:0;
    line-height: 40px;
}
.site-header a {
  color: #f4f9f4;
  text-decoration: none;
  display: inline-block;
  padding: 0;
  padding-top: 0.25em;
}
.site-header a.top-logo {
  vertical-align:middle;
  padding-top: 0.5em;
  padding-left: 1em;
}
.site-header .top-logo img {
  max-width: 150px;
}
.site-header .mobile-logo {
    padding-top: 0;
    height: 0;
    padding-left: 0.75em;
    padding-right: 1em;
    width: 100%;
}
.site-header .mobile-logo img {
    max-height: 55px;
    max-width: 150px;
    padding-top:8px;
}
.navigation li {
  display: inline-block;
  font-weight: 200;
  padding-right: 1em;
}
.site-header a.link-title {
    font-size: 0.9em;
}
.site-header a.link-title:hover {
    text-decoration: underline;
}
#menuToggle {
    position: absolute;
    top: 0.4em;
    right: 0.75em;
}
.site-header .menu-icon {
    height:0;
    font-size: 2em;
    line-height: 0.5;
    font-weight: 100;
    border-radius: 50%;
    z-index: 2;
    display: block;
    text-align: center;
   
    font-family: system, 'system-ui';
}
.site-header .menu-icon:hover {
  background-color: rgba(0, 0, 0, 0.025);
}

.bg {
  width: 100%;
  background-size: 300% 300%;
  background-image: linear-gradient( -40deg, 
    rgb(40, 37, 161) 0%, 
    rgb(115, 44, 141) 25%, 
    rgb(152, 68, 183) 51%, 
    rgb(255, 53, 81) 100% );  
  animation: AnimateBG 45s ease infinite;
}

.bg h1,
.bg .h1,
.bg h2,
.bg .h2,
.bg h3,
.bg .h3,
.bg h4,
.bg .h4,
.bg h5,
.bg .h5,
.bg h6,
.bg .h6 {
  color: #fdfdfd;
  font-family: 'Orbitron', sans-serif;
}

@font-face {
    font-family: 'Orbitron';
    src: url("/assets/orbitron-regular-webfont.woff2") format('woff2'),
         url("/assets/orbitron-regular-webfont.woff") format('woff'),
         url('/assets/Orbitron-regular.ttf')  format('truetype');
    font-weight: normal;
    font-style: normal;
} 
/* site headers */

.template-article article {
  width: 100%;
  max-width: 71rem;
  margin: 0 auto;
  padding: 1em;
}

.product-body {
    margin: 0 auto;
    padding: 1em var(--s-2);
    max-width: 900px;    
}


.article-body {
    max-width: 900px;    
}

.article-body > p:first-child,
.article-body h2 + p
{
    font-size: 1.2em;
    margin-bottom: 1em;
}

.template-index .main-content {
    background-color: var(--color_bg_splash);
}

.wrapper:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (min-width: 480px) {
  .wrapper {
    padding: 0 24px;
  }
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
}
.main-content {
  position: relative;
  background-color: var(--color_bg_primary);
  margin: 0;
  z-index: 20;
  padding: 0;
  display: block;
}
.gutter {
  padding-top: 4em;
  padding-bottom: 2em;
}

.section-gutter {
  padding: 2em 0;
}

.left {
  float: left;
}
.right {
  float: right;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.hidden {
  display: none;
}
.relative {
  position: relative;
}
.full-height {
  height: 100%;
}
.display-table {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.display-table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none;
}
.self-center {
  align-self: center;
}
@media screen and (min-width: 990px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none;
  }
}
body,
input,
textarea,
button,
select {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #444444;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  /*font-family: "Hiragino Maru Gothic ProN", sans-serif;*/
  font-family: sans-serif;
  margin: 0 0 0.5em;
  line-height: 1.2;
  color: #666464;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.main-content h1, .main-content .h1 {
    line-height: 1.2;
    font-size: 1.8em;
    font-weight:300;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  text-decoration: none;
  font-weight: inherit;
}
h1,
.h1 {
  font-size: 1.5em;
}
h1 b, .h1 b {
  font-weight:400;
}
h2,
.h2 {
  font-size: 2em;
}
h3,
.h3 {
  font-size: 1.6em;
}
h4,
.h4 {
  font-size: 1.4em;
  font-weight: 400;
}
h5,
.h5 {
  font-size: 1em;
  font-weight: 400;
}
h6,
.h6 {
  font-size: 0.8em;
  font-weight: 400;
}
p {
  margin: 0 0 12px 0;
}
p img {
  margin: 0;
}
em {
  font-style: italic;
}
b,
strong {
  letter-spacing: 0.04em;
}

sup,
sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.5em;
}
blockquote {
  margin: 0 0 1em 0;
  padding: 1em;
  border-left: 1px solid #e5e5e5;
  border-radius: 2px;
}
.rte blockquote p {
  margin-bottom: 0;
}
blockquote p + cite {
  margin-top: 12px;
}
blockquote cite {
  display: block;
  font-size: 0.75em;
}
blockquote cite:before {
  content: "\2014 \0020";
}
code,
pre {
  font-family: Consolas, monospace;
  border: 0 none;
  height: fit-content;
  tab-size: 2;
}

code {
  background-color: #fff8ed;
  color: #31b619;
  border-radius: 2px;
  font-size: 0.9em;
  padding: 0 4px;
}
.dark-splash code {
    color: #198e03;
}

pre code {
  background-color: #3b3b3b;
  color: #64f580;
  padding: 0;
  border-radius: 2px;
}

pre code a {
  color: #64f580;
  text-decoration: none;
}

pre {
  background-color: #3b3b3b;
  color: #64f580;
  overflow: auto;
  padding: 12px;
  margin: 0 0 24px;
  font-size: 0.8em;

}

.rte aside, 
.rte blockquote {
  font-family: monospace;
  font-size: 0.85em;
  background-color: var(--color_bg_data);
  padding: 1em;
  border-left: 4px solid #fa700a;
  border-radius: 2px 4px 4px 2px;
}

.rte aside {
  float: right;
  width: 40%;
  border: none;
  padding: 1rem;
  margin: 0 0 0.5rem 1rem;
}

.rte aside > * {
    margin-bottom: 0.5em;    
}

.rte aside p {
    margin-bottom: 0;    
}

.rte :nth-child(even of aside) {
  float: left;
  margin: 0 1rem 0.5rem 0;
}

hr {
  clear: both;
  border-top: solid #bfbfbf;
  border-width: 1px 0 0;
  margin: 24px 0;
  height: 0;
}
hr.hr--small {
  margin: 12px 0;
}
hr.hr--clear {
  border-top-color: transparent;
}
.collection-view {
  display: inline-block;
  border: 1px solid #e5e5e5;
  border-radius: 0px;
  padding: 11px;
  height: 37px;
}
@media screen and (min-width: 990px) {
  .collection-view {
    display: inline-block;
  }
}
.collection-view a {
  display: block;
  float: left;
  opacity: 0.7;
  cursor: pointer;
}
.collection-view a + a {
  margin-left: 10px;
}
.collection-view a.collection-view--active {
  opacity: 1;
  cursor: default;
}
.collection-view img {
  display: block;
  opacity: inherit;
}
.rte {
  margin-bottom: 12px;
  background-color: var(--color_bg_primary);
}

.rte-size {
    margin: 0 auto;
    max-width: 800px;
}

.rte-data {
    border: 1px solid black; 
    border-bottom: 2px solid black; 
    border-right: 2px solid black;
    margin-top: 2em; 
    margin-bottom: 0.5em; 
    padding: 1em;
    background: rgba(255,255,255,0.7);
    font-size: 0.8em;   
    font-family: monospace, sans-serif;
}
.rte-data h3 {
    font-size: 1.2em;   
    font-family: monospace, sans-serif;    
}
.data-post {
    border: 1px solid black; 
    border-bottom: 2px solid black; 
    border-right: 2px solid black;
    padding: 1em;
    background: rgba(255,255,255,0.5);
    font-size: 0.8em;   
    font-family: monospace, sans-serif;    
}
.data-post h3 {
    font-size: 1.2em;   
    font-family: monospace, sans-serif;    
    font-weight: bold;
}
.rte pre {
    margin-bottom: 24px;
    border-radius: 2px;
}
.rte pre + pre {
    font-size: 0.7em;
    margin-top: -32px;
    border-radius: 0 0 2px 2px;
}
.rte h1,
.rte .h1,
.rte h2,
.rte .h2,
.rte h3,
.rte .h3,
.rte h4,
.rte .h4,
.rte h5,
.rte .h5,
.rte h6,
.rte .h6 {
  margin-top: 1em;
  margin-bottom: 0.25em;
  font-weight: 300;
}
.rte h1:first-child,
.rte .h1:first-child,
.rte h2:first-child,
.rte .h2:first-child {
  margin-top: 1em;
}
.rte h1,
.rte .h1 {
  margin-bottom: 1em;
  font-size: 2.6em;
}
@media screen and (max-width: 989px) { 
    .rte h1,
    .rte .h1 {
      font-size: 2.2em;
    }
}
.rte h2,
.rte .h2 {
  font-size: 2.2rem;
  clear: both;
}

.rte h4,
.rte .h4 {
  margin-bottom: 0;
  font-weight: 500;
}

.rte p, 
.rte blockquote {
    margin-bottom: 12px;
}

.rte > div {
  margin-bottom: 12px;
}
.rte ul,
.rte ol {
  padding-left: 1em;
}
.rte li {
  margin-bottom: 0.4em;
}

.rte figure {
  padding: 1em;
  width: 100%;
  margin: 0;
}

.rte figure img {
    display: block;
    margin: 0 auto;
}

.rte figure figcaption {
    padding-top: 0.25em;
    padding-left: 0.5em;
    font-size: 0.9em;
    text-align: center;
}

.rte figure figcaption:before {
    content: "Fig. ";
}

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

.rte video {
    border-radius: 2px;
}
.rte figure video {
    display: block;
    margin:0 auto;
    max-width: 100%;
}

.rte hr {
  margin: 0.25em auto;
  margin-bottom: 0.5em;
  padding: 0px;
  box-sizing: inherit;
  width: 25%;
  height: 0.125em;
  border-style: none;
}
.rte-header {
  margin-bottom: 0;
}

.rte details {
  border: 1px solid #aaa;
  border-radius: 2px;
  padding: 0.5em 0.5em 0;
  margin-bottom: 1em;
}

.rte summary {
  font-weight: bold;
  margin: -0.5em -0.5em 0;
  padding: 0.5em;
  cursor:pointer;
}

.rte details[open] {
  padding: 0.5em;
}

.rte details[open] summary {
  border-bottom: 1px solid #aaa;
  margin-bottom: 0.5em;
}

.no-margin {
    margin:0;
}
.center {
    margin: 0 auto;
}

a {
    color: var(--color_fg_primary);
}

p a,
li a
{
  color: var(--color_highlight_on_light);
  background: transparent;
}
p a:hover,
p a:focus,
.button:hover,
.button:focus {
  color: color-mix(in srgb, var(--color_highlight_on_light), white 30%);
}
button {
  overflow: visible;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
.btn, 
input[type="submit"] {
  display: inline-block;
  padding: 8px 1em;
  margin: 0;
  text-transform: uppercase;
  font-size: 0.8em;
  line-height: 1.42;
  letter-spacing: 0.15em;
  font-weight: 200;
  font-smooth: auto;
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  user-select: none;
  background-color: var(--color_bg_utility);
  color: #fff;
}
.btn.btn--small,
input[type="submit"].btn--small {
  padding: 6px 6px 4px 6px;
  font-size: 0.6em;
  height: 2.5em;
}
.btn.btn--large,
input[type="submit"].btn--large {
  padding: 12px 24px;
  font-size: 0.8em;
  margin-top: 1em;
}
.btn.btn--full,
input[type="submit"].btn--full {
  width: 100%;
}
.btn:hover {
  background-color: #000;
}
.btn:active,
input[type="submit"]:active,
.btn:focus,
input[type="submit"]:focus {
  background-color: #000;
}
.btn[disabled],
input[type="submit"][disabled],
.btn.disabled,
input[type="submit"].disabled {
  cursor:  not-allowed;
  background-color: #333;
}
.btn.blue,
input[type="submit"].blue {
  background-color: transparent;
  color: #65c7fd;
  border: 1px solid #65c7fd;
}
.btn.gradient {
    background: var(--color_gradient_button);
    box-shadow: 4px 4px;
    color: #343434;
}

.btn.clear,
input[type="submit"].clear {
  background-color: transparent;
  color: var(--color_fg_primary);
  border: 1px solid var(--color_fg_primary);
}

.btn.blue:hover,
input[type="submit"].blue:hover,
.btn.clear:hover,
input[type="submit"].clear:hover{
  text-decoration: underline;
}

.btn.white,
input[type="submit"].white {
    background-color: transparent;
    color: #666464;
    border: 2px solid #666464;
    border-radius: 2px;
    box-shadow: 2px 2px;
}
.btn.white:hover,
input[type="submit"].white:hover {
  box-shadow:none;
}
.btn.orange {
    background-color: #f8870e;
    color: #f9f6f6;
    font-weight: 700;
    box-shadow: 0 0 120px rgba(0,200,255,0.7);
}
.text-link {
  display: inline !important;
  color: #65c7fd !important;
  border: 0 none !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.text-link:hover {
  color: #b1e2fe !important;
}
ul,
ol {
  margin: 0 0 24px;
  padding: 0;
}
ul {
  list-style: none outside;
}
ol {
  list-style: decimal;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 4px 0 5px 20px;
}
li {
  margin-bottom: 0.25em;
}
ol,
ul.square,
ul.disc {
  margin-left: 20px;
}
ul.square {
  list-style: square outside;
}
ul.disc,
.rte ul {
  list-style: disc outside;
}
ol.alpha {
  list-style: lower-alpha outside;
}
.inline-list li {
  display: inline-block;
  margin-bottom: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.rte table {
    width: 100%;
    background-color: rgb(255,255,255,0.8);
    margin: 2em 0;
}

.rte table caption {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0.25em;
}

.rte table tr td p {
    margin:0;    
}

table.full {
  width: 100%;
  margin-bottom: 1em;
}
th {
  font-weight: bold;
}
th,
td {
  text-align: left;
  vertical-align: text-top;
  padding: 12px;
  border: 1px solid #e5e5e5;
}
img {
  border: 0 none;
}
svg:not(:root) {
  overflow: hidden;
}
img.auto,
.grid-item img,
.grid-item iframe {
  max-width: 100%;
}
.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

button,
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}
input,
textarea,
select,
fieldset {
  max-width: 100%;
}
input.input-full,
textarea.input-full,
select.input-full,
fieldset.input-full {
  width: 100%;
}
input,
select,
textarea {
  padding: 8px 10px;
  line-height: 1.42;
}
fieldset {
  border: none;
  outline: 1px solid lightgrey;
  padding: 1em;
}
legend {
  border: 0;
  padding: 0;
}
optgroup {
  font-weight: bold;
}
input {
  display: inline-block;
  width: auto;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="number"],
input[type="tel"],
textarea,
select {
  border: 1px solid #bfbfbf;
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 0 1em;
  font-size: 0.8em;
}
input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #ccc;
}
input[type="text"][disabled],
input[type="search"][disabled],
input[type="password"][disabled],
input[type="email"][disabled],
input[type="file"][disabled],
input[type="number"][disabled],
input[type="tel"][disabled],
textarea[disabled],
select[disabled],
input[type="text"].disabled,
input[type="search"].disabled,
input[type="password"].disabled,
input[type="email"].disabled,
input[type="file"].disabled,
input[type="number"].disabled,
input[type="tel"].disabled,
textarea.disabled,
select.disabled {
  cursor: default;
  background-color: #f6f6f6;
  border-color: #b6b6b6;
}
textarea {
  min-height: 100px;
}
input[type="checkbox"],
input[type="radio"] {
  display: inline;
  margin: 0;
  padding: 0;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iNy43cHgiIGhlaWdodD0iNC4zcHgiIHZpZXdCb3g9IjAgMCA3LjcgNC4zIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA3LjcgNC4zIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiM5OTk5OTkiIGQ9Ik03LjEsMC4xQzYuNywwLjUsMy45LDMuMiwzLjksMy4yUzEsMC41LDAuNiwwLjFTMCwwLjcsMCwwLjdsMy45LDMuNmwzLjgtMy42QzcuNywwLjcsNy41LTAuMyw3LjEsMC4xeiIvPg0KPC9zdmc+DQo=");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: white;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: "";
  cursor: pointer;
}
.ie9 select,
.lt-ie9 select {
  padding-right: 10px;
  background-image: none;
}
select::-ms-expand {
  display: none;
}

legend {
  display: block;
  margin-bottom: 2px;
  font-weight: bold;
}
label.inline,
legend.inline {
  display: inline;
}
.form-horizontal label.hidden-label,
.form-horizontal legend.hidden-label,
label.hidden-label,
legend.hidden-label {
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.ie9 .form-horizontal label.hidden-label,
.ie9 .form-horizontal legend.hidden-label,
.ie9 label.hidden-label,
.ie9 legend.hidden-label,
.lt-ie9 .form-horizontal label.hidden-label,
.lt-ie9 .form-horizontal legend.hidden-label,
.lt-ie9 label.hidden-label,
.lt-ie9 legend.hidden-label {
  height: auto;
  margin-bottom: 2px;
  overflow: visible;
  width: auto;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  font-weight: normal;
}
label[for] {
  cursor: pointer;
}
.label-hint {
  color: #999;
}
form.form-horizontal,
.form-horizontal {
  margin-bottom: 0;
}
form.form-horizontal input[type="text"],
.form-horizontal input[type="text"],
form.form-horizontal input[type="search"],
.form-horizontal input[type="search"],
form.form-horizontal input[type="password"],
.form-horizontal input[type="password"],
form.form-horizontal input[type="email"],
.form-horizontal input[type="email"],
form.form-horizontal input[type="file"],
.form-horizontal input[type="file"],
form.form-horizontal input[type="number"],
.form-horizontal input[type="number"],
form.form-horizontal input[type="tel"],
.form-horizontal input[type="tel"],
form.form-horizontal textarea,
.form-horizontal textarea,
form.form-horizontal select,
.form-horizontal select,
form.form-horizontal label,
.form-horizontal label {
  display: inline-block;
  margin-bottom: 0;
  width: auto;
}
input[type="text"].error,
input[type="search"].error,
input[type="password"].error,
input[type="email"].error,
input[type="file"].error,
input[type="number"].error,
input[type="tel"].error,
textarea.error {
  border-color: #dc0000;
  background-color: #fff6f6;
  color: #dc0000;
}
label.error {
  color: #dc0000;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group .input-group-field:first-child,
.input-group .input-group-btn:first-child,
.input-group .input-group-btn:first-child > .btn,
.input-group .input-group-btn:first-child > input[type="submit"],
.input-group input[type="hidden"]:first-child + .input-group-field,
.input-group input[type="hidden"]:first-child + .input-group-btn > .btn,
.input-group
  input[type="hidden"]:first-child
  + .input-group-btn
  > input[type="submit"] {
  border-radius: 0px 0 0 0px;
}
.input-group .input-group-field:last-child,
.input-group .input-group-btn:last-child > .btn,
.input-group .input-group-btn:last-child > input[type="submit"] {
  border-radius: 0 0px 0px 0;
}
.input-group input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin-top: -1px;
  margin-bottom: -1px;
}
.input-group-field,
.input-group-btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
}
.input-group .btn,
.input-group input[type="submit"],
.input-group .input-group-field {
}
.input-group .input-group-field {
  width: 100%;
  margin-bottom: 0;
}
.input-group-btn {
  position: relative;
  white-space: nowrap;
  width: 1%;
  padding: 0;
}
.form-spacer {
  margin: 0 12px;
}
.flex-order-row {
    display: flex;
    justify-content: space-between;
    min-height: 1.4em;
    gap:1em;
}

@media screen and (max-width: 989px) { 
    .flex-order-row {
        flex-wrap: wrap; 
    }
}

.payment-icons {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
}
.payment-icons i {
  margin: 0 6px 6px;
  cursor: default;
  font-size: 1em;
  line-height: 50px;
}
.social-icons a {
  margin: 0 6px 6px;
  vertical-align: middle;
}
@media screen and (min-width: 481px) {
  .social-icons a {
    margin-left: 0;
  }
}
.social-icons a span {
  font-size: 42px;
  line-height: 45px;
}

.site-nav,
.site-nav--dropdown {
  position: absolute;
  top: 0;
  width: 100%;
  font-size: 0.8em;
  cursor: default;
  -webkit-transform: translate3d(0, 0px, 0);
  -moz-transform: translate3d(0, 0px, 0);
  -ms-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  -webkit-transition: all 250ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -moz-transition: all 250ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -ms-transition: all 250ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  -o-transition: all 250ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  transition: all 250ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
}
.site-nav.open,
.site-nav--dropdown.open {
  -webkit-transform: translate3d(0, -55px, 0);
  -moz-transform: translate3d(0, -55px, 0);
  -ms-transform: translate3d(0, -55px, 0);
  -o-transform: translate3d(0, -55px, 0);
  transform: translate3d(0, -55px, 0);
}
.site-nav li,
.site-nav--dropdown li {
  margin: 0;
}
.site-nav > li,
.site-nav--dropdown > li {
  position: relative;
  display: inline-block;
}
.site-nav.scrollable:before,
.site-nav--dropdown.scrollable:before {
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #fff),
    -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #fff);
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #fff),
    -moz-linear-gradient(left, rgba(255, 255, 255, 0), #fff);
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #fff),
    -ms-linear-gradient(left, rgba(255, 255, 255, 0), #fff);
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #fff),
    -o-linear-gradient(left, rgba(255, 255, 255, 0), #fff);
  content: " ";
  height: 100%;
  position: fixed;
  right: 0px;
  top: 0;
  width: 70px;
  z-index: 50;
  pointer-events: none;
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -ms-transform: translate3d(0px, 0, 0);
  -o-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.site-nav.scrolled:after,
.site-nav--dropdown.scrolled:after {
  background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0), #fff),
    -webkit-linear-gradient(right, rgba(255, 255, 255, 0), #fff);
  background-image: -moz-linear-gradient(right, rgba(255, 255, 255, 0), #fff),
    -moz-linear-gradient(right, rgba(255, 255, 255, 0), #fff);
  background-image: -ms-linear-gradient(right, rgba(255, 255, 255, 0), #fff),
    -ms-linear-gradient(right, rgba(255, 255, 255, 0), #fff);
  background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0), #fff),
    -o-linear-gradient(right, rgba(255, 255, 255, 0), #fff);
  background-size: 100%;
  content: " ";
  height: 100%;
  left: 0px;
  position: fixed;
  top: 0;
  width: 70px;
  z-index: 50;
  pointer-events: none;
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -ms-transform: translate3d(0px, 0, 0);
  -o-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.site-nav a,
.site-nav--dropdown a {
  line-height: 55px;
  display: block;
  text-decoration: none;
  padding: 0px 12px;
  white-space: nowrap;
}
@media screen and (max-width: 989px) {
  .site-nav,
  .site-nav--dropdown {
    margin: 0 auto;
    text-align: center;
  }
}
.site-nav .site-nav--active > a,
.site-nav--dropdown .site-nav--active > a {
  color: #65c7fd;
}
.site-nav .site-nav--active > a:after,
.site-nav--dropdown .site-nav--active > a:after {
  background: #65c7fd none repeat scroll 0 0;
  content: "";
  display: block;
  height: 2px;
  left: 10px;
  position: absolute;
  bottom: 0;
  right: 10px;
}
.no-csstransforms3d .site-nav.open {
  top: -55px;
}
.no-csstransforms3d .site-nav--dropdown.open {
  top: 0px;
}
.site-nav--dropdown {
  top: 55px;
}
.nav-search {
  position: relative;
  padding: 7px 0;
}
@media screen and (max-width: 989px) {
  .nav-search {
    padding: 0 0 12px;
    margin: 0 auto;
    text-align: center;
  }
}
.nav-search .input-group,
.nav-search .input-group-field {
  margin-bottom: 0;
}
.highlight {
  background-color: #e1e900;
}

.breadcrumb {
  margin-bottom: 24px;
}
.breadcrumb a,
.breadcrumb span {
  display: inline-block;
  padding: 12px 7px 12px 0;
  margin-right: 7px;
}
.breadcrumb a:first-child,
.breadcrumb span:first-child {
  padding-left: 0;
}
.product-variants {
  display: none;
}
.no-js .product-variants {
  display: block;
}
.rating-wrapper {
  font-size: 1em;
}
.rating-wrapper .active:before {
  color: #65c7fd;
}

.key-features{
    margin-top: 0.5em;    
}

.key-features li:before {
  content: "✓";
  margin-right: 10px;
}
.key-features li {
  font-size: 0.8em;
  list-style-type:none;
}

ul.features-list {
  padding: 1.5em 1.5em 1.5em 2em;
  margin-top: 1em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 0.5em 1em;
  background-color: var(--color_bg_data);
}

.features-list li {
  font-size: 1rem;
  list-style-type: none;
  margin-bottom: 1em;
}

.post-list {
    padding: 1.5em 1.5em 1.5em 2em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 25rem), 1fr));
    gap: 1em;
    background-color: var(--color_bg_data); 
    }
.post-list li {
    font-size: 1rem;
    list-style-type: none;
    margin-bottom: 1em;
}

.note,
.errors {
  border-radius: 0px;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid transparent;
}
.note ul,
.errors ul,
.note ol,
.errors ol {
  margin-top: 0;
  margin-bottom: 0;
}
.note li:last-child,
.errors li:last-child {
  margin-bottom: 0;
}
.note p,
.errors p {
  margin-bottom: 0;
}
.note {
  border-color: #e5e5e5;
}
.errors ul {
  list-style: disc outside;
  margin-left: 20px;
}
.form-success {
  color: #0a942a;
  background-color: #ecfef0;
  border-color: #0a942a;
}
.form-error,
.errors {
  color: #dc0000;
  background-color: #fff6f6;
  border-color: #dc0000;
}
.social-sharing {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 12px 0;
}
.social-sharing a {
  display: inline-block;
  border: 1px solid #ececec;
  padding: 10px;
  margin: 0 10px 10px 0;
  text-decoration: none;
  font-weight: normal;
}
.social-sharing span {
  display: inline-block;
  vertical-align: top;
  font-size: 0.7em;
}
.social-sharing i {
  padding: 0 5px 0 10px;
  font-size: 0.8em;
}
.share-title {
  font-weight: 900;
  font-size: 12px;
  padding-right: 10px;
}
.share-count {
  position: relative;
  background-color: #fff;
  padding: 0 8px;
  margin-right: -2px;
  font-size: 14px;
  color: #333;
  border-radius: 0;
  border: 1px solid #ececec;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.share-count.is-loaded {
  opacity: 1;
}
.share-count:before,
.share-count:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid;
}
.share-count:before {
  left: -6px;
  border-right-color: #ececec;
}
.share-count:after {
  left: -5px;
  border-right-color: #fff;
}
a:hover .share-count {
  background-color: #f5f5f5;
}
a:hover .share-count:after {
  border-right-color: #f5f5f5;
}
#checkout_payment_methods li {
  margin: 12px 0px;
}
#checkout_payment_methods li img {
  vertical-align: middle;
}
#checkout .price_summary {
  display: block;
  line-height: 1.25em;
  text-align: right;
}
#checkout .price_summary strong {
  font-size: 0.7em;
}
#checkout .price_summary span {
  float: left;
  font-size: 0.7em;
  color: #a6a6a6;
}
#checkout .price_summary.price_grandtotal {
  font-size: 0.9em;
}
#checkout fieldset {
  margin-bottom: 24px;
}
#pay-btn {
  font-size: 1.1em;
  color: #fff;
  background-color: #0a942a;
  border-color: #07641c;
}
body.modal--visible {
  overflow: hidden;
}
.modal {
  position: absolute;
  background-color: #fff;
  top: 170px;
  left: -200%;
  margin-left: -500px;
  width: 100%;
  max-width: 760px;
  height: auto;
  z-index: 99999999;
  visibility: hidden;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  transition: left 0s linear 700ms,
    box-shadow 600ms cubic-bezier(0.47, 0.5, 0, 0.95) 400ms,
    margin-top 200ms ease-in-out;
}
@media only screen and (max-height: 645px) {
  .modal {
    top: 70px;
  }
}
@media screen and (max-width: 989px) {
  .modal {
    max-width: 90%;
  }
}
.modal .modal--close {
  position: absolute;
  cursor: pointer;
  right: 24px;
  top: 24px;
  font-size: 0.9em;
}
@media screen and (max-width: 480px) {
  .modal {
    position: fixed;
    top: 0;
    bottom: 0;
    margin: 0 !important;
    max-height: none;
    max-width: none;
  }
  .modal .modal--close {
    display: block;
    text-align: right;
    position: relative;
    right: auto;
    left: 0;
    top: 0;
  }
}
.modal .modal--content {
  position: relative;
  padding: 24px;
  max-height: 80vh;
}
@media screen and (max-width: 989px) {
  .modal .modal--content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 480px) {
  .modal .modal--content {
    padding-bottom: 60px;
    min-height: 100%;
  }
}
.modal.is-visible {
  visibility: visible;
  left: 50%;
  transition: left 0s linear,
    box-shadow 600ms cubic-bezier(0.47, 0.5, 0, 0.95) 400ms,
    margin-top 200ms ease-in-out, opacity 400ms cubic-bezier(0.47, 0.5, 0, 0.95),
    transform 600ms cubic-bezier(0.47, 0.5, 0, 0.95);
}
@media screen and (min-width: 990px) {
  .modal.is-visible {
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.25);
  }
}
@media screen and (max-width: 480px) {
  .modal.is-visible {
    left: 0;
  }
}
.modal.no-transforms {
  border: 1px solid #e5e5e5;
}
#modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 99999998;
  opacity: 0;
  cursor: pointer;
  transition: all 450ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  background-color: #333;
}
.modal--visible #modal-overlay {
  visibility: visible;
  transition: all 650ms cubic-bezier(0.57, 0.06, 0.05, 0.95);
  opacity: 0.5;
}
.lt-ie9 .modal--visible #modal-overlay {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}
.modal {
  display: none;
  transform: scale(0.9);
  opacity: 0;
}
.modal.is-visible {
  transform: scale(1);
  opacity: 1;
}
.newsletter-form {
  margin: 0 auto;
  max-width: 500px;
}
.frontpage-wrapper {
  position: relative;
  height: 100%;
  padding: 0 1em;
}
.frontpage-wrapper .frontpage-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/assets/clean-white-polygon.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.6;
  z-index: 0;
  overflow: hidden;
}
.frontpage-wrapper .content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
}
.fadein {
  animation: fadein 0.6s ease-out;
}
@keyframes fadein {
  from {
    opacity: 0.25;
  }
  to {
    opacity: 1;
  }
}

.spinner {
  border-bottom: 0.15em solid rgba(255, 255, 255, 0.3);
  border-left: 0.15em solid rgba(255, 255, 255, 0.3);
  border-right: 0.15em solid rgba(255, 255, 255, 0.3);
  border-top: 0.15em solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 1em;
  width: 1em;
  animation: spin 0.6s infinite linear;
}
.spinner.center {
  margin: 0 auto;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.carousel li {
  margin-right: 5px;
}

.tagged-as {
  display: block;
  vertical-align: top;
}
.tagged-as .tag {
  display: inline-block;
  margin: 0 0.25em;
  font-size: 0.5em;
  background-color: #4a90e2;
  padding: 0.125em 0.5em;
  border-radius: 5px;
  color: #fff;
}
.show {
  opacity: 1 !important;
}
.hide {
  opacity: 0;
}

.navbar.navbar-top {
  display: none !important;
}

.register iframe {
  height: 320px;
  width: 100%;
  border: none;
  background-color: transparent !important;
  border-radius: 2px;
}

#rfpModal {
  top: 24px;
}

#contact {
    background: transparent;
    background-color: transparent;
    
}

@keyframes AnimateBG { 
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.triangle {
width: 0px;
height: 0px;
border-right: 0px solid transparent;
border-left: 100px solid transparent;
border-top: 100px solid #575555;
position: fixed;
z-index: 1;
top: 0;
right: 0;
}

picture.picture > * {
    border-radius: 6px;
    box-shadow: 0 0 24px rgba(0,0,0,0.5);
}   

.signup {
    max-width: 650px;
    min-height: 190px;
    height: fit-content;
    margin: 0 auto;
    margin-bottom: 1em;
    background: var(--color_gradient_button);
    box-shadow: 8px 8px darkred;
    color: #343434;
}
.signup h1, .signup h2, .signup h3 {
    color: #343434; 
    font-family: 'Orbitron', sans-serif;    
}

.signup p {
    color: #343434;  
    font-family: "Hiragino Maru Gothic ProN", sans-serif;
}

@media screen and (max-width: 700px) {
    .signup {
        padding: 1em;
    }
    
    .input-group .btn {
        width: 100%;
        margin-top: 0.5em;
    }
    
    .input-group {
        display: inline-block;
        width: 100%;
    }

}

@media screen and (min-width: 651px) {
    .signup {
        padding: 2em;
    }
    
    .input-group .btn {
        width: auto;
        margin-top: 0;
    }
    
    .input-group {
        display: table;
    }    
}

.flex {
    display: flex;
    gap: 1em;    
}

@media screen and (max-width: 700px) {
    .flex {
        flex-direction: column;
    }
}

.flex-parent {
    display: flex;
    gap: 1em;
}

.flex-parent > * {
    flex: 1 1 auto;
}

@media screen and (max-width: 700px) {
    .flex-parent {
        flex-wrap: wrap;
    }
}

.flex-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flex-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: 3em 2em;
}

.article-group {
    background: linear-gradient(178deg, transparent 10%, #5c5c5c 10.1%);
    padding: 4rem 1rem;
    padding-top: 10rem;
}
.tech-articles {
    display: grid;
    margin:0 auto;
    width: 100%;
    max-width: 1500px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 23rem), 1fr));
    grid-auto-rows: 180px;
    gap: 1rem;
}
.tech-articles a {
    background-color:  var(--color_bg_primary);    
    padding: 1em;
    font-size: 0.8em;
}
.tech-articles h4{
    margin-bottom: 0.4em;
    font-size: 1.4em;
}

@media screen and (max-width: 650px) {
    .tech-articles > div {
        flex-basis:100%;
    } 
}

.tech-articles .button-row {
    text-align: right;
    font-size: 1em;
    margin-top: 0.5em;
}

.tech-articles .button-row .btn--small{
    height: 3em;
}

.dark-splash {
    background-color: var(--color_bg_splash);
    color: var(--color_text_splash);    
}


.content-banner {
    display: flex;
    align-items: center;
    background-color: var(--color_bg_splash);
    color: var(--color_text_splash);
    font-size: 1.2em;
    margin: 3em auto;
    padding: 1em;
    letter-spacing: 0.03em;
    box-shadow: var(--dark_shadow);
}

.content-banner > div {
    flex: 1 1 auto;
    padding: 1em;
}

.banner {
    position: relative;
    max-width: 960px;
    display: flex;
    background-color: var(--color_bg_splash);
    color: var(--color_text_splash);
    font-size: 1.2em;
    margin: 0 auto;
    margin-bottom: 2em;
    padding: 2em;
    letter-spacing: 0.03em;
    box-shadow: var(--dark_shadow);
}

.banner [data-block="layout"] {
    margin: 0;   
    gap: 2em;
}

.banner p {
    line-height: 1.5em;
}

.banner h1, .banner h2, .banner h3, .banner h4,
.content-banner h1, .content-banner h2, .content-banner h3,
.dark-splash h1, .dark-splash h2, .dark-splash h3, .dark-splash h4{
    color:var(--color_highlight_on_dark);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.03em;
    margin-top: 0;
}

.banner ul,
.content-banner ul {
    list-style-type: none;
    padding-left: 2em;
}

.banner .ticked li::before,
.content-banner li::before {
    content: "✓";
    display: inline-block;
    margin-right: 10px;
    margin-left: -1.5em;    
}

.banner a,
.content-banner a {
    color:var(--color_highlight_on_dark);
    text-decoration: underline;
}

.banner video,
.content-banner video {
    max-width: 100%;
}
.banner figure,
.content-banner figure {
    margin: 0;
    display: grid;
    place-content: center;
    height: 100%;
}

.banner .button,
.dark-splash .button,
.content-banner .button,
.button
{
    display: inline-block;
    min-width: 10em;
    border: 2px solid var(--color_button_splash);
    color: var(--color_highlight_on_dark);
    background-color: transparent;
    font-size: 0.6em;
    text-transform: uppercase;
    padding: 9px 32px 7px 32px;
    text-decoration: none;
}

.banner .cta,
.dark-splash .button.cta
{
    background-color: var(--color_button_splash);    
    color: var(--color_bg_splash);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8em;
}


/* ARTICLE PROMO BOX */
.promo {
    padding: 1em;   
    text-align: center;
}

.promo .shiny-cta {
    font-size: 1rem;
    padding: 1rem;
    display:block;
    text-align: center;
    max-width: 160px;
}

/* ARTICLE PROMO BOX ENDS */

.section {
    padding: 4em 0.5em 3em 0.5em;
    margin: 0 auto;
    margin-bottom: 2em;
}

.section h2 {
    margin-bottom: 1em;   
    font-size: 2.4em;
}

.index-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 12px;     
    padding-bottom: 50px;
}

.guide-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1rem;
    
    img {
        max-width: 100%;
        padding:0.5rem;
    }
}

.feature-header {
    color: color-mix(in srgb, var(--color_highlight_on_dark), black 20%);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.04em;    
}
.feature-header h2 {
    margin-bottom: 0;
}
.feature-header p {
   font-size: 2.4em;
}
.feature-box {
    display: flex;
    gap:1em;
}
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));   
    gap: 0;
}
.feature-box-image {
    place-content: center;    
}
.feature-box-image img {
    max-width: 100%;
}
.feature {
    display: flex;
    gap: 1em;
    padding: 1em;
    margin-bottom: 1em;
}
.feature .icon svg {
    width: 2.5rem;
    height: 2.5rem;    
    color: #da0cf0;
}
.feature h3 {
    color: #D7D3CE;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 100;
    letter-spacing: 2px;
}
.feature p {
    margin-bottom: 0;
}

@media only screen and (max-width: 989px) { 
    .feature-box {
        flex-direction: column-reverse;
    }
    .feature {
        flex-direction: column;
        text-align: center;
        gap:0;
    }
    .feature-box-image img {
        max-width: 100%;
    }
}
.dark-plate, 
.light-plate {
    border-radius: 1px;
    padding: 2em;
    box-shadow: var(--dark_shadow);
    margin-bottom: 1em;
}
.dark-plate {
    background-color: color-mix(in srgb, var(--color_bg_splash), white 10%);
    color: var(--color_text_splash);
    margin-bottom: 2em;
}
.light-plate {
    background: rgba(255,255,255,0.7);
}
.dark-plate figure, 
.light-plate figure {
    background-color: transparent;    
}
.dark-plate img, 
.light-plate img {
    width: 40px;
    height: 40px;
}
.dark-plate h3, 
.light-plate h3 {
    margin-top: 0;  
    font-family: 'Orbitron', sans-serif;
}

.light-plate h3 {
    font-size: 1em;
}

.dark-plate ul, 
.light-plate ul {
    list-style: none;
    padding-left: 0;
}

.clip-lt {
    clip-path: polygon(calc(0% + 2rem) 0, 120% 0%, 120% 120%, 0 120%, 0 calc(0% + 2rem));   
    margin-right: 1.5rem;
}
.clip-lb {
    margin-right: 1.5rem;
    clip-path: polygon(0 0,120% 0,100% 120%,6rem 120%,0 calc(100% - 2rem));    
}
.clip-rt {
    clip-path: polygon(0 0,calc(100% - 2rem) 0,110% 6rem,100% 110%,0 110%);   
    margin-left: 1.5rem;
}

.gradient-l-r {
    border: 2px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: linear-gradient(225deg, rgba(0, 0, 0, 0),var(--color_highlight_on_dark) 2%, rgba(0, 0, 0, 0) 40%);
    border-left: none;
    border-top: none;     
    padding-right: 1em;
    padding-bottom: 1em;
}

.gradient-l-l {
    border: 2px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: linear-gradient(130deg, rgba(0, 0, 0, 0),var(--color_highlight_on_dark) 2%, rgba(0, 0, 0, 0) 40%);
    border-right: none;
    border-top: none;     
    padding-left: 1em;
    padding-bottom: 1em;
}

.video-grid {
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}
.video-grid .video-card{
    height: 100%;
    margin-top: 1em;
}
.video-card figure{
    margin: 0;        
}
.video-card video{
    max-width: 100%;
}

@media only screen and (max-width: 800px) {
    .video-grid {
        display: flex;
        align-items: start;
        text-align: start;
        justify-content: flex-start;
        margin: 0;
        overflow: auto;
    }
    .video-grid .video-card{
        max-width: 80vw;
        min-width: 80vw;
    }    
}    

.landing-card {
  background-color: var(--color_bg_primary);
  color: var(--color_fg_primary);
  padding: 1em;
  margin: 0.5em;
  border-radius: 1px;
}

.landing-card a {
    color: var(--color_fg_primary);    
    text-decoration: none;
}

.landing-card .header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;    
}

.landing-card .footer {
    text-align: left;
}

.landing-card hr {
    width: 100%;
    height: 1px;
    background-color: var(--color_fg_primary);
}

.icon img {
  padding: 1em;
  height: 100px;
  width: auto;    
}

.icon-row {
  display: flex;
  gap: 1em;    
  justify-content: center;
}

.dark-splash .border {
    border: 2px solid var(--color_highlight_on_dark);
    padding: 1em;
    border-radius: 1em;
}

.dark-splash .quote {
    background-color: color-mix(in srgb, var(--color_bg_splash), white 10%);
    font-family: monospace, sans-serif;
    border-left: solid 4px darkcyan;
    border-radius: 2px;
    letter-spacing: 2px;
    padding: 2em;
}

.line {
    height: 80%;
    width: 2px;
    background: #84E4EE;
    z-index: 1;
    position: absolute;
    left: 70px;
}

  .circle .wrap {
    width: 100px;
    height: 100px;
    border: 2px solid #84E4EE;
    border-radius: 7%;
    position: relative;
    text-align: center;
    background-color: #1c1c1c;
    z-index: 2;

  /* Rotate */
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
   -o-transform: rotate(-45deg);
   transform: rotate(-45deg);
  }
  
  .circle .wrap h3 {
    line-height: 100px;
    font-size: 0.8em;

  /* Rotate */
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   -o-transform: rotate(45deg);
   transform: rotate(45deg);
      
  }
  


.image-banner {
    text-align: center;
}

.image-banner img {
    background-color: #f9f9f9;
    padding: 1em;
    max-width: 500px;
}

.image-shadow {
    box-shadow: 5px 5px 10px #aaa;
    border-radius: 2px;
}

@media screen and (max-width: 650px) {
    .content-banner {
        padding: 1em;
    }
}

.price {
    margin: 2em 0 0 0;
    background: var(--color_gradient_button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.utility {
    background: var(--color_bg_utility);
    color: var(--color_text_utility);
}

.utility h4 {
    color: var(--color_text_utility);
}

.utility a {
    color: var(--color_link_utility);
}

.utility button {
    color: var(--color_button_utility);
}

/* 3 image slider */
.imagewrap{
  width: 785px;
  height: 530px;
  max-height:100vh;
  max-width:100%;
  position: relative;
  overflow:hidden;
}
.imagewrap .slideimg {
    max-width: 785px;
}
.imagewrap .bottom,
.imagewrap .middle,
.imagewrap .top {
  width:100%;
  height:100%;
  background-repeat:no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top:0;
  left:0;
  pointer-events:none;
  overflow: hidden;
}
.imagewrap .top{
  width:125px;
}
.imagewrap .scroller{
  width: 50px;
  height:50px;
  position: absolute;
  left:100px;
  top:50%;
  transform:translateY(-50%);
  border-radius:50%;
  background-color: #fff;
  opacity:0.9;
  transition: opacity 0.12s ease-in-out;
  pointer-events:auto;
  cursor: pointer;
  box-shadow: 3.5px 0px 7px rgba(100, 100, 100, 0.2);
}
.imagewrap .scroller-middle{
  margin-top:25px;
}
.imagewrap .scroller-top{
  margin-top:-25px;
}
.imagewrap .scroller:hover{
  opacity:1;
}
.imagewrap .scrolling{
  pointer-events:none;
  opacity:1;
  // z-index: 1;
}
.imagewrap .scroller__thumb{
  width:100%;
  height:100%;
  border-radius:50%;
  padding: 7px;
}
.imagewrap .scroller:before,
.imagewrap .scroller:after{
  content:" ";
  display: block;
  width: 4px;
  height: 9999px;
  position: absolute;
  left: 50%;
  margin-left: -2px;
  z-index: 30;
  transition:0.1s;
  box-shadow: 3.5px 0px 7px rgba(100, 100, 100, 0.2);
}
.imagewrap .scroller:before{
  top:49px;
}
.imagewrap .scroller:after{
  bottom:49px;
}
.imagewrap .scroller-middle>.scroller__thumb{
  border: 5px solid darkcyan;
}
.imagewrap .scroller-middle:before,
.imagewrap .scroller-middle:after{
  background: darkcyan;
}

.imagewrap .scroller-top>.scroller__thumb{
  border: 5px solid darkcyan;
}
.imagewrap .scroller-top:before,
.imagewrap .scroller-top:after{
  background: darkcyan;
}    
/* 3 image slider ENDS */

.cookie-banner {
  background-color: var(--color_bg_utility);
  bottom: 0;
  color: var(--color_text_utility);
  display: none;
  font-size: 16px;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 9999;
}  

.cookie-banner .cookie-container {
    display: flex;
    justify-content: space-between;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    width: 100%;
}

.cookie-banner a {
    color: var(--color_link_utility);
}

.cookie-banner .cookie-message-close {
    margin-left: 30px;
  }
  
.cookie-banner .close-cookie-consent {
    background-color: #AD0000;
    border-radius: 3px;
    color: #fff;
    display: block;
    padding: 6px 30px;
    text-decoration: none;
  }
  
  @media screen and (max-width: 650px) {
    .cookie-banner .cookie-container {
        flex-wrap: wrap;
    }
    
    .cookie-banner .cookie-message-close {
        margin-left: 0;
        margin-top: 30px;
    }
}

footer.main-footer {
  background: url(/assets/noise.svg), #000834;
  color: #fdfdfd;
}
footer.main-footer h4 {
  color: #fdfdfd;  
  font-size: 1.2em;
}
footer.main-footer .links a {
    color: #65c7fd;
    text-decoration: none;
    padding: 0.5em 0;
}

footer.main-footer .content {
  display: flex;
  gap: 3em;
  padding: 3em 2em 3em 2em;
  max-width: 1500px;
  margin: 0 auto;
  flex-wrap: wrap;
}
footer.main-footer .content .blocks {
  align-items: start;
  justify-content: space-between;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 1rem), 1fr));
  gap:2em;
  min-width: 50%;
  flex-grow: 2;
  text-align: center;
}

/* FAQ */

.faq-section {
  max-width: 960px;
  margin: 0 auto;
}

.faq {
  border: 1px solid #aaa;
  padding: 0.5em 0.5em 0;
  margin-bottom: 1em;
  border-radius: none;
  border-bottom: 2px solid darkslategray;
  border-right: 2px solid darkslategray;
  background-color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.faq summary {
  font-weight: bold;
  margin: -0.5em -0.5em 0;
  padding: 0.5em;
  cursor:pointer;
}
.faq details[open] {
  padding: 0.5em;
}
.faq details[open] summary {
  border-bottom: 1px solid #aaa;
  margin-bottom: 0.5em;
}

.header-group {
    margin-top: 4em;
    margin-bottom: 3em;
}
    
.header-group p, 
.header-group h1,
.header-group h2 {
        margin: 0.5rem;    
    } 
.topic {
  padding: 0.3em 0.4em 0.3em 0.5em;
  font-size: 0.8em;
  font-family: Orbitron;
  text-align: right;
  border: 1px solid;
  border-left: none;
  border-right: none;
  letter-spacing: 2px;
}

/* RTE styles */
[data-block="layout"] {
    display: flex;
    flex-direction: row;
    gap: 1em;
    margin-top: 1em;
    margin-bottom: 1em; 
    flex-grow:1;
}
@media (max-width: 640px) {
    [data-block=layout] {
       flex-direction: column;
    }
}

.wrap-center {
  text-align: center;
}
.wrap-center img {
  margin-left: auto;
  margin-right: auto;
}
.wrap-center figcaption {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.float-left {
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
  max-width: 200px;
}
.float-right {
  float: right;
  margin-left: 1em;
  margin-bottom: 1em;
  max-width: 200px;
}

@media (min-width: 641px) {
    .outset-both {
      position: relative;
      width: calc(100% + var(--rte-outset-md) + var(--rte-outset-md));
      transform: translateX(-50%) translate3d(0, 0, 0);
      left: 50%;
      max-width: 96vw;
    }
}
@media (min-width: 1100px) {
    .outset-right {
      position: relative;
      width: calc(100% + var(--rte-outset-md));
      transform: translateX(var(--rte-outset-md)) translate3d(0, 0, 0);
      left: calc(var(--rte-outset-md) * -1);
    }
    .outset-left {
      width: calc(100% + var(--rte-outset-md));
      transform: translateX(calc(var(--rte-outset-md) * -1)) translate3d(0, 0, 0);
    }
}

.embed-responsive {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.embed-responsive::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* RTE styles END */

.template-product .main-content {
    background:  var(--color_bg_primary);
}


.otf {
    background: linear-gradient(185deg, rgba(0, 0, 0, 0.1) 80%, var(--color_bg_primary) 80%);
    padding: 7em 1em 1em 1em;
}    
.otf-product.flex-parent {
    margin: 0;
    gap:0;
}

.buy-box {
    padding: 2em 1.5em 1.5em 2em;
    width: 30em;
    max-width: 100%;
}

.buy-box .h1{
    font-size: 3em;
}
.buy-box .h4{
    font-family: 'Orbitron';
    font-size: 1.5em;
}
.buy-box h4 {
  margin:0;
}
.buy-box ul {
    padding-left: 0.5em;
}
.buy-box .btn {
    font-size:0.8em;
}
.buy-box #product-price {
    margin-top: 2em;
}

.techspecs .wrapper {
    padding:0;
}

.pp-section {
    padding: 2em 1em;
}


@media only screen and (max-width: 650px) {
    .banner figure {
        text-align: center;
    }
    .buy-box {
        width:100%;
    }
    .buy-box .h1 {
        font-size: 2em;
    }
    
    .pp-section {
        padding: 2em 1em;
    }
}


/* INDEX ADMIN IMAGE DSPLAY BOX */

.admin-image-box {
    display: flex;
    flex-direction: row;
}

.admin-image-box .desc-list, 
.admin-image-box .image-box {
    flex: 0 1 auto; 
}

.admin-image-box .desc-list {
    width: 30%;
    min-width: 20rem;
}

.admin-image-box input[type="radio"] {
    display: none;
}

.admin-image-box input[type="radio"]:checked+label {
    background: rgba(255,255,255,0.1);
}

.admin-image-box label {
    padding: 1rem;
    font-size: 1rem;
}

.admin-image-box label:hover {
    background: rgba(255,255,255,0.05);
}

.admin-image-box label p {
    margin-bottom: 0;
}

.admin-image-box label h3 {
    font-size: 1.1rem;
    font-weight: 100;
    letter-spacing: 2px;
    margin-top: 0.5rem;  
}

.admin-image-box .image-box img {
    max-width: 100%;
}

@media only screen and (max-width: 960px) {
    .admin-image-box {
        flex-direction: column-reverse;
    }
    .admin-image-box .desc-list {
        width: auto;
        display: flex;
        flex-direction: row;
        overflow-y: scroll;
        gap: 0.5rem;
    }
    
    .admin-image-box .desc-list label {
        width: 20rem;
        max-width: 100%;
        flex: 0 0 auto;
        background: rgba(200,200,200,0.05);
    }
}

/* INDEX ADMIN IMAGE DSPLAY BOX ENDS */

/* shiny CTA */

:root {
  --shiny-cta-bg: #000000;
  --shiny-cta-bg-subtle: #1a1818;
  --shiny-cta-fg: #ffffff;
  --shiny-cta-highlight: magenta;
  --shiny-cta-highlight-subtle: #8484ff;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}

@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}

.shiny-cta:hover {
    color: #ffffff;
}

.shiny-cta {
  --animation: gradient-angle linear infinite;
  --duration: 3s;
  --shadow-size: 2px;
  isolation: isolate;
  margin: 1em;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 1.25rem 2.5rem;
  font-family: inherit;
  font-size: 1.125rem;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 1px;
  color: var(--shiny-cta-fg);
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg))
      padding-box,
    conic-gradient(
        from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
        transparent,
        var(--shiny-cta-highlight) var(--gradient-percent),
        var(--gradient-shine) calc(var(--gradient-percent) * 2),
        var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
        transparent calc(var(--gradient-percent) * 4)
      )
      border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);

  &::before,
  &::after,
  span::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    z-index: -1;
  }

  &:active {
    translate: 0 1px;
  }
}

/* Dots pattern */
.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
      circle at var(--position) var(--position),
      white calc(var(--position) / 4),
      transparent 0
    )
    padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
  border-radius: inherit;
  opacity: 0.4;
  z-index: -1;
}

/* Inner shimmer */
.shiny-cta::after {
  --animation: shimmer linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(
    -50deg,
    transparent,
    var(--shiny-cta-highlight),
    transparent
  );
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}

.shiny-cta span {
  z-index: 1;

  &::before {
    --size: calc(100% + 1rem);
    width: var(--size);
    height: var(--size);
    box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
    opacity: 0;
  }
}

/* Animate */
.shiny-cta {
  --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: var(--transition);
  transition-property: --gradient-angle-offset, --gradient-percent,
    --gradient-shine;

  &,
  &::before,
  &::after {
    animation: var(--animation) var(--duration),
      var(--animation) calc(var(--duration) / 0.4) reverse paused;
    animation-composition: add;
  }

  span::before {
    transition: opacity var(--transition);
    animation: calc(var(--duration) * 1.5) breathe linear infinite;
  }
}

.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);

  &,
  &::before,
  &::after {
    animation-play-state: running;
  }

  span::before {
    opacity: 1;
  }
}

@keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}

@keyframes shimmer {
  to {
    rotate: 360deg;
  }
}

@keyframes breathe {
  from,
  to {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
}

/* shiny CTA ends */
