﻿@font-face {
  font-family: "FiraMonoRegular";
  src: url("/font/FiraMono-Medium.ttf") format("truetype");
}
.shine {
  overflow: hidden;
  position: relative;
}

.no-shine {
  overflow: hidden;
  position: relative;
}

.shine:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  animation: shine 6.66s infinite linear;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.card-fullscreen-gradient {
  transition: background-color 333ms ease, background-image 333ms ease-in-out;
  cursor: pointer;
}
.card-fullscreen-gradient:hover {
  background-color: #922845;
  background-image: linear-gradient(15deg, #922845 0%, #e42853 100%);
}
.card-fullscreen-gradient:hover h3, .card-fullscreen-gradient:hover dd {
  color: white;
}
.card-fullscreen-gradient:hover img {
  content: url("../../../icons/fullscreen-fill-white.svg");
}

.card-five-licenses-gradient {
  transition: background-color 333ms ease, background-image 333ms ease-in-out;
  cursor: pointer;
}
.card-five-licenses-gradient:hover {
  background-color: #922845;
  background-image: linear-gradient(15deg, #922845 0%, #e42853 100%);
}
.card-five-licenses-gradient:hover h3, .card-five-licenses-gradient:hover dd {
  color: white;
}
.card-five-licenses-gradient:hover img {
  content: url(../../../icons/team-line-white.svg);
}

.card-conf-sync-gradient {
  transition: background-color 333ms ease, background-image 333ms ease-in-out;
  cursor: pointer;
}
.card-conf-sync-gradient:hover {
  background-color: #922845;
  background-image: linear-gradient(15deg, #922845 0%, #e42853 100%);
}
.card-conf-sync-gradient:hover h3, .card-conf-sync-gradient:hover dd {
  color: white;
}
.card-conf-sync-gradient:hover img {
  content: url("../../../icons/share-2-line-white.svg");
}

.card-cross-cdl-gradient {
  transition: background-color 333ms ease, background-image 333ms ease-in-out;
  cursor: pointer;
}
.card-cross-cdl-gradient:hover {
  background-color: #922845;
  background-image: linear-gradient(15deg, #922845 0%, #e42853 100%);
}
.card-cross-cdl-gradient:hover h3, .card-cross-cdl-gradient:hover dd {
  color: white;
}
.card-cross-cdl-gradient:hover img {
  content: url("../../../icons/pantone-line-white.svg");
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-\[20\%\] {
  border-radius: 20%;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow {
  -moz-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
@media screen and (min-width: 1536px) {
  .container {
    max-width: 50dvw;
  }
}
.container.wide {
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

.fit-content {
  width: fit-content;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-none {
  flex: none;
}

.flex-grow {
  flex-grow: 1;
}

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

.flex-row-reverse {
  flex-direction: row-reverse;
}

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

.flex-col-reverse {
  flex-direction: column-reverse;
}

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

.items-start {
  align-items: flex-start;
}

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

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

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

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

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 900px) {
  .grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media screen and (max-width: 400px) {
  .grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-x-1 {
  -moz-column-gap: 0.25rem;
  column-gap: 0.25rem;
}

.gap-x-2 {
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.gap-x-3 {
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}

.gap-x-4 {
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

.gap-x-6 {
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

.gap-x-8 {
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}

.gap-x-12 {
  -moz-column-gap: 3rem;
  column-gap: 3rem;
}

.gap-x-16 {
  -moz-column-gap: 4rem;
  column-gap: 4rem;
}

.gap-y-1 {
  -moz-column-gap: 0.25rem;
  column-gap: 0.25rem;
}

.gap-y-2 {
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.gap-y-3 {
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}

.gap-y-4 {
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

.gap-y-6 {
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

.gap-y-8 {
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}

.gap-y-12 {
  -moz-column-gap: 3rem;
  column-gap: 3rem;
}

.gap-y-16 {
  -moz-column-gap: 4rem;
  column-gap: 4rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-12 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-16 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-24 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.mx-32 {
  margin-left: 8rem;
  margin-right: 8rem;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.my-24 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.my-32 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.my-36 {
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-8 {
  margin: 2rem;
}

.m-10 {
  margin: 2.5rem;
}

.m-12 {
  margin: 3rem;
}

.m-16 {
  margin: 4rem;
}

.m-24 {
  margin: 6rem;
}

.m-36 {
  margin: 9rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

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

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-24 {
  margin-top: 6rem;
}

.mt-36 {
  margin-top: 9rem;
}

.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mr-12 {
  margin-right: 3rem;
}

.mr-16 {
  margin-right: 4rem;
}

.mr-24 {
  margin-right: 6rem;
}

.mr-36 {
  margin-right: 9rem;
}

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

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

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 400px) {
  .mb-4 {
    margin-bottom: 0.5rem;
  }
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .mb-12 {
    margin-bottom: 2.25rem;
  }
}
@media screen and (max-width: 400px) {
  .mb-12 {
    margin-bottom: 1.5rem;
  }
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.mb-36 {
  margin-bottom: 9rem;
}
@media screen and (max-width: 900px) {
  .mb-36 {
    margin-bottom: 6rem;
  }
}

.mb-42 {
  margin-bottom: 10.5rem;
}
@media screen and (max-width: 900px) {
  .mb-42 {
    margin-bottom: 6rem;
  }
}

.ml-0 {
  margin-left: 0;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.ml-8 {
  margin-left: 2rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.ml-12 {
  margin-left: 3rem;
}

.ml-16 {
  margin-left: 4rem;
}

.ml-24 {
  margin-left: 6rem;
}

.ml-36 {
  margin-left: 9rem;
}

.video-home-landing {
  margin-top: 6rem;
  width: 420px;
  height: 420px;
}
@media screen and (max-width: 420px) {
  .video-home-landing {
    width: 80dvw;
    height: auto;
  }
}

.inline-icon {
  width: 20px;
  height: 20px;
  margin: 0 0.33rem 0 0;
  padding: 0;
  top: 3px;
  position: relative;
}

.dl-logo {
  height: auto;
  width: 220px;
}

.dl-logo-inline {
  height: auto;
  width: 220px;
  display: inline;
}

.logo {
  width: 3rem;
  height: 3rem;
  display: inline;
  margin-right: 0.5rem;
}
.logo .main-stop {
  stop-color: #922845;
}
.logo .alt-stop {
  stop-color: #e42853;
}

.logo-bot > span {
  display: inline;
  position: relative;
  top: 0.33rem;
  font-size: 2rem !important;
}
.logo-bot .logo {
  position: relative;
  top: -2px;
}

.disabled {
  pointer-events: none;
  cursor: not-allowed;
}

.vignette {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  background-color: transparent;
  box-shadow: inset 0 -1.75em 4em 1.75em rgba(0, 0, 0, 0.4666666667);
}
@media screen and (max-width: 900px) {
  .vignette {
    box-shadow: inset 0 -1em 2.5em 1em rgba(0, 0, 0, 0.4666666667);
  }
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.cursor-pointer {
  cursor: pointer;
}

.noise1 {
  background-color: #161616;
  background-image: url("/images/noise.png");
}

.noise2 {
  background-color: #222222;
  background-image: url(/images/noise2.png);
  -moz-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
}

.no-text-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.px-32 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-12 {
  padding: 3rem;
}

.p-16 {
  padding: 4rem;
}

.p-24 {
  padding: 6rem;
}

.p-36 {
  padding: 9rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pt-36 {
  padding-top: 9rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pr-16 {
  padding-right: 4rem;
}

.pr-24 {
  padding-right: 6rem;
}

.pr-36 {
  padding-right: 9rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pb-36 {
  padding-bottom: 9rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pl-16 {
  padding-left: 4rem;
}

.pl-24 {
  padding-left: 6rem;
}

.pl-36 {
  padding-left: 9rem;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.right-0 {
  right: 0px;
}

.top-0 {
  top: 0px;
}

.top-4 {
  top: 1rem;
}

.top-8 {
  top: 2rem;
}

.top-12 {
  top: 3rem;
}

.top-16 {
  top: 4rem;
}

.top-20 {
  top: 5rem;
}

.top-24 {
  top: 6rem;
}

.left-0 {
  left: 0px;
}

.left-4 {
  left: 1rem;
}

label {
  margin-bottom: 0.25rem;
}

.min-content {
  width: min-content;
}
@media screen and (max-width: 400px) {
  .min-content {
    width: max-content;
    width: 100%;
  }
}

.max-content {
  width: max-content;
}

.w-parent {
  width: inherit;
}

.w-full {
  width: 100%;
}

.min-h-50 {
  min-height: 50dvh;
}

.min-h-70 {
  min-height: 70dvh;
}

.min-h-75 {
  min-height: 75dvh;
}

.min-h-80 {
  min-height: 80dvh;
}

.min-h-90 {
  min-height: 90dvh;
}

.min-h-full {
  min-height: 100%;
}

.min-w-20 {
  min-width: 20dvw;
}

.min-w-40 {
  min-width: 40dvw;
}

.min-w-50 {
  min-width: 50dvw;
}

.min-w-60 {
  min-width: 60dvw;
}

.min-w-80 {
  min-width: 80dvw;
}

.max-w-10 {
  max-width: 10dvw;
}
@media screen and (max-width: 900px) {
  .max-w-10 {
    max-width: 25dvw;
  }
}
@media screen and (max-width: 400px) {
  .max-w-10 {
    max-width: 100dvw;
  }
}

.max-w-12-5 {
  max-width: 12.5dvw;
}
@media screen and (max-width: 900px) {
  .max-w-12-5 {
    max-width: 25dvw;
  }
}
@media screen and (max-width: 400px) {
  .max-w-12-5 {
    max-width: 100dvw;
  }
}

.max-w-13 {
  max-width: 13dvw;
}
@media screen and (max-width: 900px) {
  .max-w-13 {
    max-width: 25dvw;
  }
}
@media screen and (max-width: 400px) {
  .max-w-13 {
    max-width: 100dvw;
  }
}

.max-w-14 {
  max-width: 14dvw;
}
@media screen and (max-width: 900px) {
  .max-w-14 {
    max-width: 25dvw;
  }
}
@media screen and (max-width: 400px) {
  .max-w-14 {
    max-width: 100dvw;
  }
}

.max-w-15 {
  max-width: 15dvw;
}
@media screen and (max-width: 900px) {
  .max-w-15 {
    max-width: 33dvw;
  }
}
@media screen and (max-width: 400px) {
  .max-w-15 {
    max-width: 100dvw;
  }
}

.max-w-20 {
  max-width: 20dvw;
}

.max-w-25 {
  max-width: 25dvw;
}

.max-w-30 {
  max-width: 30dvw;
}

.max-w-40 {
  max-width: 40dvw;
}

.max-w-50 {
  max-width: 50dvw;
}

.max-w-60 {
  max-width: 60dvw;
}

.max-w-80 {
  max-width: 80dvw;
}

.ol {
  padding-left: 1.75rem;
}

.bold {
  font-weight: 800;
}

.italic {
  font-style: italic;
}

.unterline {
  text-decoration: underline;
}

.no-deco {
  text-decoration: none;
}

.text-link[href^="mailto:"],
.text-link {
  text-decoration: none;
  color: #a5a5a5;
  /* visited link */
  /* mouse over link */
  /* selected link */
}
.text-link[href^="mailto:"]:link,
.text-link:link {
  color: #a5a5a5;
}
.text-link[href^="mailto:"]:visited,
.text-link:visited {
  color: rgba(233, 73, 111, 0.627);
}
.text-link[href^="mailto:"]:hover,
.text-link:hover {
  color: #e42853;
}
.text-link[href^="mailto:"]:active,
.text-link:active {
  color: #922845;
}

.text-dim {
  color: #676767;
}

.text-normal {
  color: #a5a5a5;
}

.text-bright {
  color: #e3e3e3;
}

.text-primary {
  color: #922845;
}

.text-primary-bright {
  color: #e42853;
}

.text-danger {
  color: #922845;
}

.text-underline-primary {
  text-decoration: underline;
  text-decoration-color: #922845;
}

.text-accent {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 400px) {
  .text-accent {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.text-title {
  margin-top: 0;
  font-size: 3.75rem;
  line-height: 3.75rem;
  color: #e3e3e3;
}
@media screen and (max-width: 900px) {
  .text-title {
    font-size: 2.75rem;
    line-height: 3rem;
    word-break: break-all;
    overflow-wrap: break-word;
  }
}
@media screen and (max-width: 400px) {
  .text-title {
    font-size: 1.75rem;
    line-height: 2.25rem;
    word-break: break-all;
    overflow-wrap: break-word;
  }
}

.text-muted {
  color: #676767;
}

.text-highlight {
  font-style: italic;
  font-weight: 700;
  color: rgba(233, 73, 111, 0.627);
}

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

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

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media screen and (max-width: 400px) {
  .text-sm {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
@media screen and (max-width: 400px) {
  .text-lg {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
@media screen and (max-width: 400px) {
  .text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.text-2xl {
  font-size: 1.75rem;
  line-height: 2.25rem;
}
@media screen and (max-width: 400px) {
  .text-2xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.text-3xl {
  font-size: 1.75rem;
  line-height: 2.25rem;
}

.text-red {
  color: #e43329;
}

.text-green {
  color: #6ae429;
}

.text-blue {
  color: #2928e5;
}

.button {
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  border-radius: 0.25rem;
  border: none;
  background-color: rgb(82, 82, 82);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.7rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, scale;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  text-decoration: none;
}
.button.button-small {
  padding: 0.125rem 0.33rem;
}
.button.button-icon {
  line-height: 1rem;
  padding: 0.25rem;
  background: none;
}
.button.button-icon:hover {
  background-color: rgb(82, 82, 82);
}
.button.button-icon img {
  margin: 0;
  padding: 0;
  width: 1.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
}
.button.loading {
  background-image: url(../../scss/images/noise.png);
  opacity: 0.8;
}
.button.loading .loader {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  line-height: 0.125rem;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-0.25rem);
  box-shadow: 1rem 0 #fff, 1rem 0 #fff, -1rem 0 #fff, -1rem 0 #fff;
  position: relative;
  animation: flash 0.75s ease-out infinite alternate;
}
@keyframes flash {
  0% {
    background-color: rgba(255, 255, 255, 0.1333333333);
    box-shadow: 2.4rem 0 rgba(255, 255, 255, 0.1333333333), 1.2rem 0 rgba(255, 255, 255, 0.1333333333), -1.2rem 0 rgba(255, 255, 255, 0.1333333333), -2.4rem 0 #ffffff;
  }
  25% {
    background-color: rgba(255, 255, 255, 0.1333333333);
    box-shadow: 2.4rem 0 rgba(255, 255, 255, 0.1333333333), 1.2rem 0 rgba(255, 255, 255, 0.1333333333), -1.2rem 0 #ffffff, -2.4rem 0 rgba(255, 255, 255, 0.1333333333);
  }
  50% {
    background-color: #ffffff;
    box-shadow: 2.4rem 0 rgba(255, 255, 255, 0.1333333333), 1.2rem 0 rgba(255, 255, 255, 0.1333333333), -1.2rem 0 rgba(255, 255, 255, 0.1333333333), -2.4rem 0 rgba(255, 255, 255, 0.1333333333);
  }
  75% {
    background-color: rgba(255, 255, 255, 0.1333333333);
    box-shadow: 2.4rem 0 rgba(255, 255, 255, 0.1333333333), 1.2rem 0 #ffffff, -1.2rem 0 rgba(255, 255, 255, 0.1333333333), -2.4rem 0 rgba(255, 255, 255, 0.1333333333);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.1333333333);
    box-shadow: 2.4rem 0 #ffffff, 1.2rem 0 rgba(255, 255, 255, 0.1333333333), -1.2rem 0 rgba(255, 255, 255, 0.1333333333), -2.4rem 0 rgba(255, 255, 255, 0.1333333333);
  }
}

.button-primary {
  color: #e3e3e3;
  transition-property: scale, background-color;
  transition-timing-function: linear;
  transition-duration: 100ms;
}
.button-primary:hover .button-primary :not(.loading) {
  --tw-bg-opacity: 1;
  background-color: #922845;
  scale: 1.05;
}

.buttom-small {
  max-height: 1.5rem;
  line-height: 0.8rem;
  font-size: 0.75rem;
}

.button-fixed-h-1-75rem {
  max-height: 1.75rem;
  line-height: 1.2rem;
}

.button-fixed-h-2rem {
  line-height: 0.66rem;
  max-height: 2rem;
}

.button-fixed-h-2-5rem {
  line-height: 0.8125rem;
  max-height: 2.5rem;
}

.button-outline {
  border: 2px solid #a5a5a5;
  background: transparent;
  color: #a5a5a5;
  padding: 0.25rem 0.5rem;
  transition: border 150ms ease, color 200ms ease;
}
.button-outline:hover {
  border: 2px solid #e42853;
  color: #e42853;
}

.button-text {
  border: none;
  background: transparent;
  text-decoration: none;
  color: #e42853;
  /* visited link */
  /* mouse over link */
  /* selected link */
}
.button-text:link {
  color: #a5a5a5;
}
.button-text:visited {
  color: rgba(233, 73, 111, 0.627);
}
.button-text:hover {
  color: #e42853;
}
.button-text:active {
  color: #922845;
}

.button-outline-primary {
  border: 2px solid #e42853;
  background: transparent;
  color: #e42853;
  padding: 0.25rem 0.5rem;
}

.primary-gradient {
  background-color: #922845;
  background-image: linear-gradient(15deg, #922845 0%, #e42853 100%);
}

.disabled {
  background-color: #676767 !important;
  background-image: none !important;
}
.disabled::before {
  content: "" !important;
  background-image: none !important;
}

.card {
  background-color: #f7f7f7;
  padding: 20px 25px 30px;
  -moz-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.3);
  display: block;
  background-color: #222222;
  background-image: url(/images/noise2.png);
}
.card .button {
  font-size: 1.125rem;
}
.card .card-title img {
  display: inline;
  height: 36px;
  width: 36px;
}
.card .card-title h3 {
  display: inline;
  margin-left: 0.75rem;
  position: relative;
  top: -9px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: white;
}
@media screen and (max-width: 400px) {
  .card .card-title h3 {
    font-size: 1rem;
    line-height: 1rem;
    word-break: break-all;
    overflow-wrap: break-word;
    font-weight: 700;
  }
}
.card dd {
  margin: 0;
  margin-top: 0.75rem;
}
@media screen and (max-width: 400px) {
  .card dd {
    font-size: 1rem;
    line-height: 1rem;
    word-break: break-all;
    overflow-wrap: break-word;
    font-weight: 100;
  }
}

.price-card {
  display: block;
  padding: 1.5rem;
  min-width: 25dvw;
}
@media screen and (min-width: 1536px) {
  .price-card {
    min-width: 18dvw;
    max-width: 18dvw;
  }
}
.price-card dt h3 {
  margin: 0;
}
.price-card dt h4 {
  margin: 1rem 0 0.5rem 0;
  font-size: 2rem;
  line-height: 2.5rem;
}
.price-card dt h4 span {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.price-card dt p {
  margin: 0;
}
.price-card dd {
  margin: 0;
}
.price-card dd a {
  display: block;
  margin: 2.5rem 0 2.5rem 0;
}
.price-card dd ul {
  padding: 0;
}
.price-card dd ul li {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0.75rem 0 0.75rem 0;
}
.price-card dd ul li img {
  position: relative;
  top: 2px;
  margin-right: 0.5rem;
  width: 20px;
  height: 20px;
}

.faq-entry {
  position: relative;
}
.faq-entry input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
}
.faq-entry h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 20px 0 0;
  cursor: pointer;
}
.faq-entry h2:hover {
  color: #e3e3e3;
}
.faq-entry label {
  cursor: pointer;
  position: relative;
  display: block;
  padding-left: 1rem;
}
.faq-entry input[type=checkbox]:checked ~ h2 label {
  color: #e3e3e3;
}
.faq-entry label::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 0px;
  border-left: 6px solid #a5a5a5;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-top: -6px;
}
.faq-entry input[type=checkbox]:checked ~ h2 label::before {
  border-left: 6px solid transparent;
  border-top: 6px solid #e3e3e3;
  border-right: 6px solid transparent;
  margin-left: -4px;
  margin-top: -4px;
}
.faq-entry p {
  max-height: 0;
  overflow: hidden;
  padding-left: 30px;
  transition: max-height 0.4s ease;
}
.faq-entry input[type=checkbox]:checked ~ h2 ~ p {
  max-height: 80px;
}
@media screen and (max-width: 900px) {
  .faq-entry input[type=checkbox]:checked ~ h2 ~ p {
    max-height: 15rem;
  }
}

.footer {
  position: relative;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 4rem;
}
.footer .flexx {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer .flexx .left-box {
  display: flex;
  flex-flow: column;
  gap: 0.75rem;
}
@media screen and (max-width: 900px) {
  .footer .flexx .left-box {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 900px) {
  .footer .flexx .left-box > * {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer .flexx .right-box {
  margin-left: auto;
  display: flex;
  flex-flow: row;
  gap: 0.75rem;
}
@media screen and (max-width: 900px) {
  .footer .flexx .right-box {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .footer .flexx .right-box ul > * {
    text-align: center;
    padding: 0;
  }
}
@media screen and (max-width: 400px) {
  .footer .flexx {
    flex-flow: column-reverse;
    gap: 1rem;
  }
}
.footer .logo {
  display: inline-block;
  margin-top: 4px;
  max-height: 32px;
  width: auto;
}
@media screen and (max-width: 400px) {
  .footer .logo {
    display: none;
    font-size: 1.5rem;
  }
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin: 0.25rem 0 0.25rem 0;
}
.footer ul li:first-child {
  margin-bottom: 0.75rem;
}
.footer a {
  text-decoration: none;
  color: #a5a5a5;
}
.footer a:hover {
  color: #e42853;
}
@media screen and (max-width: 900px) {
  .footer {
    margin-left: auto;
    margin-right: auto;
    max-width: 100dvw;
    padding-bottom: 0rem;
  }
}

header {
  height: 90px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-width: 1px;
  border-color: transparent;
  background-color: transparent;
}
@media screen and (max-width: 400px) {
  header .container {
    margin-left: 0;
  }
}
header.scrolled {
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 1ms;
  height: 80px;
  background-color: #161616;
  background-image: url("/images/noise.png");
  filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.6666666667));
}
header:not(.scrolled) {
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 1ms;
  height: 90px;
  background: transparent;
  border: none;
}
header .logo {
  transform: translateY(-0.3rem);
}
header .menu-right {
  padding-top: 0px;
}
header .menu-right form {
  display: inline-block;
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  transition-property: color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
header .menu-right form > button, header .menu-right form input[type=submit], header .menu-right form input[type=reset] {
  display: inline-block;
  background: none;
  color: #a5a5a5;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  text-decoration: none;
  display: inline;
  cursor: pointer;
  transition-property: color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
header .menu-right form > button:hover, header .menu-right form input[type=submit]:hover, header .menu-right form input[type=reset]:hover {
  color: #e42853;
}
header .menu-right > a,
header .menu-right p {
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-style: normal;
  color: #a5a5a5;
  text-decoration: none;
  display: inline;
  cursor: pointer;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 222ms;
}
header .menu-right > a:hover,
header .menu-right p:hover {
  color: #e42853;
}
header .menu-left .home {
  font-size: 2rem;
  font-style: normal;
  color: #e3e3e3;
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  header .menu-left .home {
    display: none;
    font-size: 1.5rem;
  }
}
header .menu-left .home img {
  display: inline-block;
  margin-top: 4px;
  max-height: 32px;
  width: auto;
  pointer-events: none;
  cursor: pointer;
}
header .menu-left ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1rem;
  display: flex;
}
header .menu-left ul li {
  padding-top: 0.5rem;
}
header .menu-left ul li a {
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-style: normal;
  color: #a5a5a5;
  text-decoration: none;
}
header .menu-left ul li a:hover {
  color: #e42853;
}
header .items-center {
  align-items: center;
}
header .justify-between {
  justify-content: space-between;
}
header .flex {
  display: flex;
}
header .ml-auto {
  margin-left: auto;
}
header .md-block {
  display: block;
}

select,
input,
textarea,
.input {
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  appearance: none;
  outline: none;
  max-width: 100%;
  border-radius: 0.25rem;
  border-width: 0px;
  background-color: #222222;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  color: #e3e3e3;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition: box-shadow 120ms ease;
  outline: none !important;
  box-shadow: none;
}
select:focus,
input:focus,
textarea:focus,
.input:focus {
  box-shadow: 0 0 3px 1px #922845;
}

input[type=checkbox] {
  -webkit-appearance: auto;
  -moz-appearance: checkbox;
  appearance: auto;
}

select {
  /*webkit browsers */
  -webkit-appearance: auto;
  /* modern browsers */
  appearance: auto;
}

option {
  font-family: "FiraMonoRegular";
}

@media screen and (min-width: 1536px) {
  .login-container {
    max-width: 20dvw;
  }
}

.modal-container {
  width: 100dvw;
  height: 100dvh;
  float: left;
  z-index: 600;
  left: 0;
  top: 0;
  display: block;
  position: fixed;
  visibility: hidden;
}
.modal-container.fade-in {
  animation: fade-in 333ms;
}
.modal-container.fade-out {
  animation: fade-out 333ms;
}
.modal-container.toggled {
  visibility: visible;
}
.modal-container.toggled .backdrop {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5333333333);
}
.modal-container .modal {
  position: fixed;
  top: 0;
  max-width: 80dvw;
  max-height: 80dvh;
  margin-top: 10dvh;
  margin-left: 10dvw;
  margin-right: 10dvw;
  visibility: hidden;
}
.modal-container .modal .modal-inner {
  margin: 2rem;
  height: 100%;
}
.modal-container .modal .modal-inner .modal-header h1 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 3rem;
}
.modal-container .modal.toggled {
  visibility: visible;
}
.modal-container .modal.fade-out {
  animation: fade-out 333ms;
}
.modal-container .modal.fade-in {
  animation: fade-in 333ms;
}
@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.table-container table {
  border-collapse: collapse;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.table-container table th {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid #dddddd;
  border-radius: 1rem;
  text-align: left;
  padding: 8px;
  font-weight: 600;
}
.table-container table tr {
  transition: background-color ease 250ms;
  font-weight: 200;
}
.table-container table tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.15);
}
.table-container table tr:not(:first-child):hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.table-container table td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}
.validation-errors {
  padding: 0;
  margin: 0;
  list-style: none;
}
.validation-errors li {
  margin: 0.5rem 0;
}

.account-container {
  padding-top: 5rem;
}
@media screen and (max-width: 400px) {
  .account-container {
    padding-top: 1rem;
  }
}
.account-container .warning-hint {
  background: rgba(255, 255, 255, 0.0196078431);
  padding: 0.25rem 1rem;
}
.account-container .warning-hint h3 {
  color: #e3e3e3;
  font-weight: 200;
}

.account-side-menu-container {
  margin-top: 1rem;
  padding-right: 3rem;
  width: auto;
  margin-bottom: 8rem;
}
@media screen and (max-width: 400px) {
  .account-side-menu-container {
    text-align: center;
    align-content: center;
    align-self: center;
    margin-bottom: 0rem;
  }
}
.account-side-menu-container h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.account-side-menu-container .menu-title:not(:first-child) {
  margin-top: 2.5rem;
}
.account-side-menu-container .menu-item {
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition-property: color, background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  text-decoration: none;
  display: block;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.account-side-menu-container .menu-item:link {
  color: #a5a5a5;
}
.account-side-menu-container .menu-item:visited {
  color: #a5a5a5;
}
.account-side-menu-container .menu-item:hover {
  color: #e3e3e3;
}
.account-side-menu-container .menu-item:hover {
  color: #e3e3e3;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.0196078431);
}
.account-side-menu-container .menu-item:active {
  color: #e3e3e3;
}
.account-side-menu-container .menu-item img {
  width: 1.1rem;
  height: 1.1rem;
  top: 0.125rem;
  display: inline-block;
  position: relative;
}
.account-side-menu-container .menu-item.selected {
  color: #e3e3e3;
  background-color: rgba(255, 255, 255, 0.0666666667);
}

.licenses-container .license-info-container {
  padding: 0.25rem 1rem 0.25rem 1rem;
}
.licenses-container .license-info-container .license-type {
  float: right;
  top: 0.5rem;
  position: relative;
}
.licenses-container .license-info-container:not(:last-child) {
  margin-bottom: 1rem;
}

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

.chromate-trailer-container {
  overflow: hidden;
}
@media screen and (max-width: 400px) {
  .chromate-trailer-container {
    padding: 1rem 0.5rem 1rem 0.5rem;
  }
}
.chromate-trailer-container .video-chromate-trailer {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 720px) {
  .chromate-trailer-container .video-chromate-trailer {
    width: 120dvw;
    max-width: 120dvw;
    height: auto;
    transform: translateX(-32dvw);
  }
}

.register-trial-modal .modal {
  height: 45dvh;
  margin-top: 25dvh;
  margin-left: 30dvw;
  margin-right: 30dvw;
}
.register-trial-modal .modal #form_register_trial {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  left: 2rem;
}
.register-trial-modal .modal #btn_submit_register_trial {
  bottom: 0;
  position: relative;
}

.container .sticky-filter {
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
}
.container .sticky-filter .formulas-reset {
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
.container .help-icon {
  width: 1.25rem;
  height: 1.25rem;
  float: right;
  transition: 150ms transform linear;
}
.container .help-icon:hover {
  transform: scale(1.2);
  cursor: pointer;
}
.container .sub-header {
  min-height: 2.5rem;
}

.formula-container {
  transition: transform 150ms ease;
  cursor: pointer;
}
.formula-container .formula-header {
  padding-top: 1rem;
}
.formula-container > div .formula-name {
  transition: color 200ms ease;
}
.formula-container:hover {
  transform: scale(1.01);
}
.formula-container:hover > div .formula-name {
  color: #e42853;
}
.formula-container .hotkey {
  border: 2px solid #676767;
  border-radius: 0.25rem;
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  font-size: 0.875rem;
  padding: 0.25rem;
  text-align: center;
  display: inline-block;
  /*        
  width: 100%;*/
}
.formula-container .toggle {
  content: url("/icons/arrow-down-s-line.svg");
  width: 24px;
  height: 24px;
  padding-left: 0.5rem;
  padding-top: 0.25rem;
  transform-origin: calc(12px + 0.5rem) calc(12px + 0.25rem);
  transition: transform 200ms ease-out;
  z-index: 999;
}
.formula-container .toggle.toggled {
  /*content: url("/icons/arrow-up-s-line.svg");*/
  transform: rotate(180deg);
}
.formula-container .formula-script {
  white-space: pre-wrap;
  cursor: default;
}
@media screen and (max-width: 400px) {
  .formula-container .formula-script {
    overflow: hidden;
  }
}
.formula-container .formula-script:not(.toggled) {
  height: 0;
  display: none;
}

.product-release-new-container {
  margin-bottom: 1rem;
}
.product-release-new-container .add-new-container.toggled {
  visibility: hidden;
  max-height: 0;
}
.product-release-new-container .add-new-container .add-changelog {
  resize: vertical;
}
.product-release-new-container .add-new-container .add-preview-changelog {
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  visibility: hidden;
  float: left;
}

.product-release-list-container .product-release-list {
  border-collapse: collapse;
  width: 100%;
}
.product-release-list-container .product-release-list th {
  border-radius: 1rem;
  text-align: left;
  padding: 8px;
}
.product-release-list-container .product-release-list td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.bb-indent {
  display: block;
  padding-left: 1.25rem;
}

.bb-ul {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}

/*highlight.js fixes*/
.hljs {
  background: transparent !important;
}

::-moz-selection {
  /* Code for Firefox */
  background: rgba(233, 73, 111, 0.627);
  opacity: 1;
}

::selection {
  background: rgba(233, 73, 111, 0.627);
}

* {
  font-family: "FiraMonoRegular";
  font-size: 1rem;
}

html {
  height: 100%;
}
body {
  /*height: 100%;*/
  /*width: 100dvw;*/
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0;
  color: #a5a5a5;
  background-color: #161616;
  background-image: url("/images/noise.png");
}

.nav-scroll-target {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
}

.content {
  margin-top: 90px;
}

.mobile-only {
  display: none;
}
@media screen and (max-width: 900px) {
  .mobile-only {
    display: block;
  }
}

@media screen and (max-width: 900px) {
  .video {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}

.block {
  display: block;
}

.language-separator {
  width: 2px;
  background-color: #a5a5a5;
  margin-left: 1rem;
  margin-right: 1rem;
  height: 1.125rem;
  transform: translateY(0.25rem);
  display: inline-block;
}

label {
  display: block;
  margin-top: 10px;
}

.card-container.card {
  max-width: 400px !important;
  padding: 40px 40px;
}

.profile-img-card {
  width: 96px;
  height: 96px;
  margin: 0 auto 10px;
  display: block;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
