html {
    height: 100%;
}

*{
	--main-blue: #1473ee;
}

* {
    --outcrossed-gray: #EEEEEE;
    --outcrossed-highlight: #2649AB;
    --outcrossed-highlight-transparent: #2649ab12;--outcrossed-secondary: #6273E7;
    --outcrossed-tertiary: #4F95FF;
    --outcrossed-purple: #6273E7;--outcrossed-green: #1e7d1e;--outcrossed-red: #7b0f0f;--outcrossed-black: #353535;
    --outcrossed-white: #f8f8f8;
--outcrossed-dark-gray: #646464;
--outcrossed-light-gray: #cdcdcd;
--outcrossed-cheery-red: #e64f4f;
}

*.demon-gradient{
	background: rgb(72, 136, 255);
	background: linear-gradient(45deg, rgb(72, 146, 255) 0%, rgb(58, 74, 255) 100%);
}

.flex{
    display:flex;
}

.flex-vertical {
    display:flex;
    flex-direction:column;
}

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



body {
	background-color: #181818 !important;
	color:#3b3b3b;
	font-family: Camphor,Open Sans,Segoe UI,sans-serif;
}

input:not([type='radio']) {
    border-radius: 3px;
    border: none;
    box-shadow: 0 0 2px #00000073;
    width: 230px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    -webkit-appearance: none;
}

.button {
    white-space: nowrap;
    cursor: pointer;
    width: auto;
    width: -moz-fit-content;
    height: fit-content;
    background-color: var(--main-blue);
    color: white;
    border-radius: 5px;
    text-align: center;
    transition: all 100ms;
    padding: 0.5em 2em;
    display: flex;
    align-items: center;
    text-align: center;
}

.header {
    text-align: center;
    padding-top: 18px;
    font-weight: bold;
    color: #494949;
    display: flex;
    justify-content: center;
}

.load-throbber {
    left: 50%;
    top: 44%;
    transform: translateX(-50%) translateY(-50%);
    position: fixed;
    z-index: 30000;
    font-size: 26px;
    height: 60px;
    width: 60px;
}

.throbber {
    height: calc(100% - .4em);
    width: calc(100% - .4em);
    background-color: transparent;
    border-radius: 50%;
    border: .2em solid #ffffff00;
    border-top: .2em solid #303030;
    transition:100ms ease-in-out;
    animation: spin .7s ease-in-out infinite;
    position: relative;
    margin-top: 0em;
}

.relative.load-throbber {
    transform-origin: 50% 50%;
    transform: scale(.5,.5);
    left: unset;
    position: relative;
    top: unset;
}

.relative>.throbber {
    border-top-color: var(--outcrossed-black) !important;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); border-size:8px; }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.logo {
    cursor: pointer;
    margin-right: 25px;
    margin-left: 25px;
    padding: 5px;
}

.topbar .logo img {
    height: 20px;
}

.topbar.main-topbar .item.search, .topbar.main-topbar>*:nth-child(3) {
}

.topbar .item, .detail-down .item, .topbar .display-item {
    color: white;
    font-size: 17px;
    font-weight: 100;
    position: relative;
    cursor: pointer;
    transition: all 200ms;
    transform: translateY(-6%);
    padding: 5px 15px 5px 15px;
    margin-top: 2px;
}

.topbar{
  width: 100%;
  min-width: 800px;
  height: 80px;
  top: 0px;
  left: 0px;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  background-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

body{
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  margin: unset;
  position: relative;
}

.splash {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #2196f3;
    z-index: 1000;
    display: flex;
    display:none;
    width: 100%;
    height: 100%;
    position: fixed;
    background: linear-gradient(45deg, #ff4c4c, #ff684e);
    display: flex;
    z-index: 100;
    font-weight: bold;
}

.splash img, .splash svg, .splash object {
    width: 36%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    position: relative;
    margin: auto;
    transform: translateY(-55px);
}

.page {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    outline: unset;
    position: absolute;
    -webkit-margin-collapse: discard;
}

.page {
    overflow-y: scroll;
    overflow-x: hidden;
    height: calc(100% - 60px);
    position: relative;
    z-index: 1;
    transition: all 300ms;
}

.modal {
    background-color: white;
    z-index: 8;
    box-shadow: 0 0 9px #0000002e;
    position: fixed;
    border-radius: 4px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    overflow: hidden;
    overflow-y: scroll;
}

.flex-v {
    display: flex;
    flex-direction: column;
    width: -webkit-fill-available;
}

.flex-h {
    display: flex;
    flex-direction: row;
}

.page.extend {
    height: 100%;
}

h1 {
    font-size: 70px;
    color: #ffffff;
    margin-top: 20px;
}

.body-gradient {
  background: hsla(208, 92%, 58%, 1);

background: linear-gradient(45deg, hsla(208, 92%, 58%, 1) 5%, hsla(233, 81%, 57%, 1) 98%);

background: -moz-linear-gradient(45deg, hsla(208, 92%, 58%, 1) 5%, hsla(233, 81%, 57%, 1) 98%);

background: -webkit-linear-gradient(45deg, hsla(208, 92%, 58%, 1) 5%, hsla(233, 81%, 57%, 1) 98%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#339BF6", endColorstr="#3A4EEA", GradientType=1 );
}

*.demon-gradient{
	background: rgb(72, 136, 255);
	background: linear-gradient(45deg, rgb(72, 146, 255) 0%, rgb(58, 74, 255) 100%);
}

.left-range-select button:not(:last-child) {margin-right: 1px;}

button:hover {background-color: rgb(252, 252, 252);box-shadow: background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(60, 66, 87, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 66, 87, 0.08) 0px 3px 9px 0px, rgba(60, 66, 87, 0.08) 0px 2px 5px 0px;}

.button-bar>button:first-child, .button-bar>a:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.button-bar>button:last-child, .button-bar>a:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.button-bar button:after, .button-bar button:before{
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 1px;
    background: #0000000a;
    content: "";
}

.button-bar button:first-child:before, .button-bar button:last-child:after{
    display:none;
}


.button-bar button:after {
    right: -1px;
}

.button-bar button:before {
    left: -1px;
}

i.fa.fa-calendar {}

button i.fa.fa-calendar {
    margin-right: 10px;
}

button:focus {
    box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(58 151 212 / 36%) 0px 0px 0px 4px, rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 8%) 0px 2px 5px 0px;
    z-index: 2;
}

.button-bar select {
    appearance: none;
    position: relative;
    z-index: 1;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin: 0;
    text-decoration: none;
    vertical-align: middle;
    word-break: normal;
    background: transparent;
    border: 0;
    outline: 0;
    transition: color .24s;
    -webkit-appearance: none;
    appearance: none;
    -webkit-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    padding-left: 20px;
    padding-right: 35px;
    height: 30px;
}

.button-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: fit-content;
    height: -moz-fit-content;
    border-radius: 5px;
    border: 1px solid #d6d6d6;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
}

.button-bar .fa.fa-arrows-alt-v {
    margin-right: 10px;
    position: absolute;
    right: 5px;
}

.button-bar button {}

.button-bar button i.fa.fa-cog {
  margin-right: 5px;
}

button {
    appearance: none;
    border: unset;
    background-color: unset;
    font-size: 13px;
    padding: 0.6em 1.1em;
    color: #3b3b3b;
    font-weight: lighter;
    transition: all 200ms;
    cursor: pointer;
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    height: fit-content;margin-left: unset;margin-right: unset;
}

button.blue {
   background-color:#4892fe;
   color:white;
}

.flex-h {}

.flex-h.top-names>svg {
    margin: 20px;
}

.flex-v.section {
    width: 100%;
}

h5.section-title {
    color: #219af3;
}

h2.section-desc-1 {
    font-size: 35px;
    max-width: 500px;
    margin-top: 0px;
    margin-left: unset;
}

p.section-desc-2 {
    font-size: 17px;

    color: #3b3b3b;
}

.demon-large-item {
    width: auto;
    max-width: 770px;
    min-height: 200px;
    margin: 0px 65px;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    box-shadow: 0 0 6px #00000029;
    border-radius: 5px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.demon-large-item h1 {
    top: 80px;
    margin-right: 50px;
}

p {
}

p.explanation {
    margin-left: 30px;
    color: #7b7b7b;
    max-width: 90%;
}

h2 {
    font-size: 20px;
    font-weight: lighter;
    color: #3b3b3b;
    margin-left: 30px;
    margin-top: 20;
    margin-top: 20px;
}

.logo-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 30px;
    padding: 20px;
    width: 143px;
}

.logo-div span {
    margin-left: 16px;
    color: #3b3b3be6;
}

.logo-div img {
    height: 35px;
}

.flex-h.get-started-page {
    width: 80%;
    margin: auto;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    padding-top: 100px;
    height: 100%;
    justify-content: space-between;
}

.join-perk {
    display: flex;
    align-items: center;
    margin-top: 26px;
}

.join-perk i.fa.fa-check {}

.join-perk i.fa.fa-check-circle, .join-perk i.fa {
    color: #4892fe;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.get-started-page .logo-div {
    margin-bottom: 30px;
}

.topbar .logo-div {
    width: 168px;
    padding-left: unset;
}

.bold-perk-head {font-size: 18px;}

.join-perk-description {
    margin-left: 30px;
    margin-top: 10px;
}

.information-form {
    width: 100%;
    box-shadow: 0 0 12px 0 #0000003d;
    border-radius: 5px;
    max-width: 430px;
    margin-left: auto;
}

.information-form>.flex-v {padding: 40px;padding-left: 70px;padding-right: 70px;}

.information-form h2 {
    margin-left: unset;
}

.information-form input {
    width: -webkit-fill-available;
    margin-bottom: 30px;
}

input {}

i.fa.fa-question-circle {}

.information-form .button-bar {
    margin-top: auto;
}

button.blue[disabled] {
    background-color: #565656;
}
input.error,.error {background-color: #e83c3c2b !important;}


.notifications {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 240px;
    height: auto;
    transition: all 200ms;
    z-index: 1301;
}

.notification {
    float: right;
    width: fit-content;
    padding-right: 30px;
    min-width: 100%;
    height: 50px;
    right: 0px;
    position: relative;
    background-color: #703af7;
    background: linear-gradient(45deg, #703af7, #187cd9);
    border-radius: 10px;
    display: flex;
    color: white;
    margin-top: 10px;
    transition: all 200ms;
    justify-content: left;
    align-items: center;
    box-shadow: 0 0 6px #0000003d;
}



.notifications .notification i.fa {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 15px;
}

.notification>* {
    line-height: 49px !important;
    font-size: 12px;
    white-space: nowrap;
}


.notification.error {
    /* background-color: red; */
    background: linear-gradient(45deg, rgb(129, 38, 38), #a64c4c);
}

.notification::after {content: " ";width: 100%;height: 2px;position: absolute;bottom: 0px;}

.flex-h.complete-page {
    justify-content: center;
    margin-top: 100px;
}

.complete-page .logo-div {
    margin: auto;
}

.complete-page i.fa.fa-check-circle {
    font-size: 30px;
    color: #59b559;
}

.complete-line {
    display: flex;
}

.flex-v.complete-page {
    margin: auto;
    margin-top: 200px;
}

.flex-h.navi {
    max-width: 60%;
    margin: auto;
    color: #3b3b3b;
    justify-content: space-between;
}

.flex-h.navi>* {
    cursor: pointer;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: 500;
    color: #ffffff;
}

.flex-h.navi>*:hover {
    color: gray;
}

.topbar .logo-div img {
    height: 43px;
    border-radius: 5px;
    filter: hue-rotate(140deg);
}

.topbar .logo-div span {
    font-size: 19px;
    margin-left: 17px;
    text-decoration: none;
    text-decoration-thickness: 0px;
    font-weight: bold;
}

a {
    text-decoration: none;
}

body {
    font-weight: lighter;
}

.flex-v.pricing-box {
    width: 390px;
    height: 429px;
    box-shadow: 0 0 7px 0 #00000052;
    border-radius: 5px;
    padding-top: 20px !important;
}

.flex-h.pricing-boxes {
    justify-content: center;
    margin-bottom: 30px;
}

.join-perk {}

.pricing-box .join-perk {
    margin-top: 21px;
}

.flex-h.videos {
    flex-wrap: wrap;
    justify-content: center;
}

.flex-h.videos iframe {
    margin: 20px;
}

.button-bar>a {
    overflow: hidden;
}

.advanced-search.modal.tall {
    height: 101%;
}

.demon-animated {
    background: linear-gradient(220deg, #2d9fd4, #2e7dd9, #a363fb, #eaa532);
    background-size: 800% 800%;

    -webkit-animation: demon 23s ease infinite;
    -moz-animation: demon 23s ease infinite;
    animation: demon 23s ease infinite;
}

@-webkit-keyframes demon {
    0%{background-position:0% 10%}
    50%{background-position:100% 91%}
    100%{background-position:0% 10%}
}
@-moz-keyframes demon {
    0%{background-position:0% 10%}
    50%{background-position:100% 91%}
    100%{background-position:0% 10%}
}
@keyframes demon {
    0%{background-position:0% 10%}
    50%{background-position:100% 91%}
    100%{background-position:0% 10%}
}

.padded-content {
    padding: 50px;
    padding-top: 70px;
}

.warning-triangle{
	vertical-align: middle !important;
	color: #f08100;
	font-size: 22px !important;
	margin-left: 20px;
	vertical-align: -webkit-baseline-middle !important;
}

.success-check{
	vertical-align: middle !important;
	color: #029800;
	font-size: 22px !important;
	margin-left: 30px;
	vertical-align: -webkit-baseline-middle !important;
}


.padded-content h1 {
    margin-left: unset;
    margin-bottom: 8px;
    margin-top: unset;
}

.padded-content ul[list] li:not(ul[list] ul[list] li) {
    padding-left: unset;
    padding-right: unset;
}

.padded-content ul[list] .category:not(ul[list] ul[list] .category) {
    padding-left: unset;
    padding-right: unset;
}

.padded-content ul[list] ul[list] {
    margin-left: unset;
    margin-right: unset !important;
    width: 100%;
}

.padded-content ul[list] li {
    padding-right: unset;
}

ul {
    font-weight: lighter;
}

li, li[openable]>.open {}

.popover ul li:hover {outline: 1px solid #e8e8e8;}

ul[list] li {
    display: flex;
    justify-content: space-between;
    padding: 0.83em 30px;
    align-items: center;
    border-bottom: 1px solid #ececec8f;
    position: relative;
    align-items: center;

}

ul[list] li:last-of-type {
    border-bottom: unset;
}

li[openable], li[category] {display: block !important;cursor: pointer;user-select: none;padding: 0px 0px !important;}

li[openable]>ul, li[category]>ul {border-left: 1px dashed #666666;width: calc(100% - 21px);margin-left: 20px;transform: unset;}

li[openable]>.open, li[category]>.category {left: 0;top: 0;position: relative;display: flex;justify-content: space-between;align-items: center;padding: .8em 30px;}

li[openable] .open:hover {
    background-color: #f3f3f3;
    cursor: pointer;
}

li[openable][open]>.open>.fa-angle-right {
    transform: translate(-2px, 0px) rotate(90deg);
    transition: all 200ms;
}

li[openable]>.open>.fa-angle-right {
    transform: translate(-2px, 0) rotate(0);
    transition: all 200ms;
}

li[openable][open] {
    height: fit-content;
}

li[openable]:not([open])>ul {
    display: none;
}

li[category][hidden]>ul {
    display: none;
}

li[openable]>ul>li:first-of-type, li[category]>ul>li:first-of-type {
    border-top: 1px solid #00000008;
}

.popover li>i {
    margin-left: 20px;
    width: 20px;
    text-align: center;
}

ul[list] li[selectable][selected] {
    background-color: #cce2ff;
}

ul[list] li[selectable][selected]::after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 800;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.searchable i.fa.fa-keyboard {
    padding-right: 10px;
    height: 30px;
    top: -5px;
    position: relative;
    line-height: 30px;
    left: -16px;
    width: 30px;
    padding-left: 10px;
    box-shadow: 4px 0px 11px 3px #00000012;
}

button.searchable:hover {
    box-shadow: unset;
    cursor: text;
}

button.searchable:hover span.text {
    color: #5c5c5c;
}

button.searchable {
    overflow: hidden;
}

button.searchable span.text {height: 30px;top: -5px;position: relative;margin-left: auto;line-height: 30px;margin-left: 15px;padding-right: 20px;}

button.searchable {
    min-width: 150px;
    position: relative;
    display: flex;
}

button.searchable:focus {
    box-shadow: unset;
}

.modal.select-searchable {
    width: 600px;
    height: 400px;
}

.select-searchable .button-bar {
    border-radius: unset;
    border: unset;
    box-shadow: 0px 4px 6px 0 #00000033;
    z-index: 2;
    position: sticky;
    top: 0;
}

.searchable input.text {
    border: unset;
    outline: unset;
    box-shadow: unset;
    height: 30px;
    padding: unset;
    top: -5px;
    position: relative;
    width: -webkit-fill-available;
    height: 50px;
    font-size: 18px;
    color: #2c2c2c;
    padding-left: 15px;
}

.select-searchable button.searchable {
    width: 100%;
    height: 50px;
    position: relative;
    border: unset;
}

.select-searchable i.fa.fa-keyboard {
    width: 80px;
    height: 50px;
    line-height: 50px;
}

button.searchable.selecting {
    background-color: #5895fd;
    color: white;
}
.button-bar button:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.button-bar button:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.button-bar button:after, .button-bar button:before{
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 1px;
    background: #0000000a;
    content: "";
}

.button-bar button:first-child:before, .button-bar button:last-child:after{
    display:none;
}


.button-bar button:after {
    right: -1px;
}

.button-bar button:before {
    left: -1px;
}

i.fa.fa-calendar {}

button i.fa.fa-calendar {
    margin-right: 10px;
}

button:focus {
    box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(58 151 212 / 36%) 0px 0px 0px 4px, rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 8%) 0px 2px 5px 0px;
    z-index: 2;
}

.button-bar select {
    appearance: none;
    position: relative;
    z-index: 1;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin: 0;
    text-decoration: none;
    vertical-align: middle;
    word-break: normal;
    background: transparent;
    border: 0;
    outline: 0;
    transition: color .24s;
    -webkit-appearance: none;
    appearance: none;
    -webkit-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    padding-left: 20px;
    padding-right: 35px;
    height: 30px;
}

.button-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: fit-content;
    height: -moz-fit-content;
    border-radius: 5px;
    border: unset;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    background-color: white;
}

.button-bar .fa.fa-arrows-alt-v {
    margin-right: 10px;
    position: absolute;
    right: 5px;
}

.button-bar button {
}

.button-bar button i.fa.fa-cog {
  margin-right: 5px;
}


button:hover {box-shadow: background-color: rgb(255, 255, 255);box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgba(60, 66, 87, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 66, 87, 0.08) 0px 3px 9px 0px, rgba(60, 66, 87, 0.08) 0px 2px 5px 0px;}

.button-bar button:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.button-bar button:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.button-bar button:after, .button-bar button:before{
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 1px;
    background: #0000000a;
    content: "";
}

.button-bar button:first-child:before, .button-bar button:last-child:after{
    display:none;
}


.button-bar button:after {
    right: -1px;
}

.button-bar button:before {
    left: -1px;
}

i.fa.fa-calendar {}

button i.fa.fa-calendar {
    margin-right: 10px;
}

button:focus {
    box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(58 151 212 / 36%) 0px 0px 0px 4px, rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 8%) 0px 2px 5px 0px;
    z-index: 2;
}

button {
    appearance: none;
    border: unset;
    background-color: unset;
    font-size: 13px;
    padding: 5px;
    padding-left: 15px;
    color: #3b3b3b;
    font-weight: lighter;
    padding-right: 15px;
    transition: all 200ms;
    cursor: pointer;
    position: relative;
    height: 30px;
}

.next {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #2c88f0;
    border-radius: 100%;
    color: white !important;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    user-select: none;
    transition: background-color 200ms;
}

.next i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

input.error,.error {background-color: #e83c3c2b !important;}

.modal.create-installation {
    aspect-ratio: 800 / 650;
    background-color: white;
    height: 790px;
    width: 970px;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 8.5/11;
}

.padded-content {
    padding: 40px;
}

.create-installation h2 {
    font-size: 30px;
    color: #3b3b3b;
    margin-top: 0px;
    font-weight: normal;
    margin-left: unset;
    margin-bottom: 20px;
}

.modal.modal-presentation {
    width: 100%;
    height: 100%;
    background-color: #3b3b3b1a;
    border-radius: 0;
    box-shadow: unset;
    background-color: #00000087;
    z-index: 1300;
    overflow: hidden;
}

.confirm.modal p {
    margin-top: 40px;
}

.popover {
    position: absolute;
    background-color: white;
    z-index: 5;
    box-shadow: 0 0 7px #00000059;
    padding: 15px 15px;
    border-radius: 5px;
    width: fit-content !important;
    width: -moz-fit-content !important;
}

.popover:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 20px;
    top: 50%;
    left: 0px;
    background-color: white;
    transform: translateY(-50%);
}
.popover:before {
    content: unset;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: -6px;
    background-color: white;
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 0 3px #00000052;
}

ul {
    list-style: none;
    padding-left: unset;
    margin-top: unset;
    margin-bottom: unset;
}

.popover ul li {
    padding: 7px 11px;
}

.popover ul li:last-of-type {
    border-bottom: unset;
}

.popover ul {
    margin-bottom: 0px;
    margin-top: 0px;
}

.popover ul li {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popover.top-center-arrow:after {
    left: 50%;
    transform: translate(-50%, 0%);
    top: 0;
    width: 20px;
    height: 13px;
}

.popover.top-center-arrow:before {
    top: 2px;
    right: 50%;
    transform: translateY(-50%) translateX(50%) rotate(45deg);
    left: unset;
    border-radius: 3px;
}

.popover.bottom-center-arrow:after {
    left: 50%;
    transform: translate(-50%, 0%);
    bottom: 0px;
    width: 20px;
    height: 10px;
    top: unset;
}

.popover.bottom-center-arrow:before {
    top: 100%;
    right: 50%;
    transform: translateY(-50%) translateX(50%) rotate(45deg);
    left: unset;
}

.popover.right-center-arrow:after {
    right: 0px;
    left: unset;
}

.popover.right-center-arrow:before {
    left: unset;
    right: 0px;
    transform: translate(50%, -50%) rotate(45deg);
}

.select-searchable .body i.fa.fa-check {
    color: white;
}

.select-searchable li.selected {
    background-color: #a1e0a1;
}

.dm-cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(10px);
    z-index: -1
}

.topbar-content {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: auto;
    max-width: 1670px;
}

.create-installation .padded-content li>p {
    font-weight: 600;
    font-weight: 400;
}

.sidebar {
    position: absolute;
    left: 0px;
    width: 250px;
    transition: all 300ms;
    height: calc(100%);
    box-shadow: 2px -1px 6px #00000030;
    z-index: 3;
    background-color: white;
    overflow-y: scroll;
display: flex;flex-direction: column;}

.sidebar .item {
    text-align: left;
    padding-top: 10px;
    padding-left: 20px;
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
    transition: all 100ms;
}

.sidebar .item:nth-child(2) {
    margin-top: 27px;
}

.sidebar .item:hover {
    background-color: #e9e9e9;
}

.sidebar .item.open {
    background-color: #56a6fd;
    color: white;
}

.sidebar .item i.fa.fa-angle-right {
    opacity: 0;
    transition: opacity 100ms;
    right: 8px;
    position: absolute;
    top: 50%;
    color: white;
    transform: translateY(-50%);
}

.sidebar .item.open i.fa-angle-right {
    opacity: 1;
}

.checklist {
}

.path-vertical .checklist {
    text-align: left;
    padding-top: 13px;
    padding-bottom: 13px;
    margin-left: 40px;
    position: relative;
    transition: all 100ms;
    display: flex;
    align-items: center;
    user-select: none;
}

.flow-bubble {
    width: 30px;
    height: 30px;
    background-color: #353535;
    border-radius: 100%;
    position: relative;
    transform: translate(-50%, 0px);
    z-index: 2;
    margin-right: 10px;
    box-shadow: 0 0 18px 2px #0000003b;
    transition: all 100ms;
    flex-grow: 0;
    flex-shrink: 0;
}

.flow-line {
    position: absolute;
    width: 17px;
    background-color: #adc8ff;
    left: 0px;
    top: 50%;
    height: 100%;
    transform: translate(-50%, 0px);
    box-shadow: 0 0 6px 0 #00000030;
    transition: all 100ms;
}

.checklist:not(.open):not(.active) .flow-line-top {
}

.checklist.open .flow-line, .checklist:not(.open):not(.active) .flow-line {
    background-color: #f2f2f2;
    outline: 2px dotted;
    outline-offset: -2px;
}

.active .flow-bubble {
    background-color: #adc8ff;
}

h3 {}

.checklist h3 {
    margin: unset;
}

.checklist i.fa.fa-lock {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #cccccc;
    font-size: 12px;
}

.checklist.open .flow-bubble {
    background-color: #558dff;
}

.checklist.open .fa, .checklist.active .fa {
    display: none;
}

.checklist.active .fa {}

.checklist.locked {
    cursor: not-allowed;
}

.checklist {
    cursor: pointer;
    position: relative;
}

.checklist:not(.locked):hover .flow-bubble{
    background-color: #75a2ff;
}

.checklist.locked:hover .flow-bubble .fa{
    color: white;
}

.checklist.locked:hover .flow-bubble{
    background-color: #262626;
}

.checklist.outline-hover-path .flow-line {
    outline: 2px solid #adc8ff !important;
    background-color: #adc8ff !important;
}

.checklist.outline-hover .flow-bubble {
    background-color: #adc8ff;
}

.checklist.outline-hover-path .flow-bubble{
    background-color: #adc8ff;
}

.checklist.outline-hover-exclude .flow-line, .checklist.outline-hover .flow-line {
    filter: opacity(.6);
    /*outline: 2px dotted;
    outline-offset:-2px;*/
}

.checklist.outline-hover-exclude .flow-bubble {
    background-color:#353535;
}

.checklist.outline-unreachable {
    cursor: not-allowed !important;
}

.checklist.outline-unreachable:hover .flow-bubble {
    background-color: #353535;
}

.sidebar-retracted i.fa.fa-arrow-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 10000%;
    text-align: right;
    cursor: pointer;
    transform: translate(0px, 0px);
}

.sidebar.sidebar-retractable:not(.sidebar-retracted) i.fa.fa-arrow-right {
    display: none;
}

.sidebar-retracted .fa-arrow-right::before {
    position: relative;
    top: 20px;
    right: 18px;
}

.sidebar-retracted i.fa.fa-arrow-right:hover {
    background-color: #00000008;
}

[path-set='fulfill-path'] .itemlist {
    width: 70%;
    margin: auto;
    margin-top: 60px;
}

.path {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    margin-top: 20px;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.path .checklist .flow-line {
    height: 17px;
    width: 100%;
    left: 15px;
    transform: translate(0%, -50%);
}

.path .checklist {
    padding-right: 40px;
    align-items: center;
    display: flex;
}

.path .flow-bubble {
    margin-right: unset;
    transform: translate(0px);
}

.path .checklist:last-of-type {
    padding-right: unset;
    width: 30px;
}

.path .checklist h3 {
    position: relative;
    transform: translate(calc(-50% + -15px), 30px);
    white-space: nowrap;
}

.checklist.list-in .flow-line {
    transform: rotate(-17deg);
}

.checklist.list-out .flow-line {
    transform: rotate(17deg) translate(-100%, 0);
}

.sidebar .checklist:hover {
    border-right: 3px solid #75a2ff;
}

.sidebar .checklist.locked:hover {
    border-right: none;
}

.queue-select .page>.itemlist {
    width: 70%;
    margin: auto;
    margin-top: 105px;
}

.checklist.list-tabbed {
    margin-left: 57px;
}

.sidebar-page {
    width: calc(100% - 250px) !important;
    left: 250px;
    height: 100%;
    position: absolute;
    transition: all 300ms;
    z-index: 1;
    overflow-x: hidden;
}

.sidebar-retractable.sidebar-retracted {
    transform: translateX(-80%);
}

.sidebar-page.sidebar-retracted-page {
    left: calc(250px * .2);
    width: calc(100% - (250px * .2)) !important;
}

.sidebar.sidebar-retractable.sidebar-retracted i.fa.fa-mouse {
    position: absolute;
    right: calc(50px / 2 - 7px);
    top: 15px;
}

.sidebar:not(.sidebar-retracted) i.fa.fa-mouse {
    display:none;
}

.sidebar.sidebar-retracted i[lock] {
    display:none;
}

.sidebar.sidebar-retracted i[lock] {
    display:none;
}

h2,h3,h4,h5,h6 {
    font-weight: lighter;
    color: #3b3b3b;
    margin-left: 30px;
}

.sidebar h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.next.disabled {
    background-color: #bdbdbd;
}

.button.disabled {
    background-color: #bdbdbd;
}


.content {
    width: 100%;
    height: 100%;
    transition: all 400ms;
    position: absolute;
    overflow-y: scroll;
    overflow-x: hidden;
    top: 0px;
    left: 0px;
    transform: translate(0,0);
}

.content.left {
    transform: translate(-100%);
}

.content.right {
    transform: translateX(100%);
}

.create-installation .padded-content>p {
    margin-top: 0px;
    margin-bottom: 40px;
    padding-right: 100px;
}

.create-installation img {
    opacity: 1;
    position: absolute;
    height: 56px;
    top: 35px;
    right: 40px;
}


.confirm {
    background-color: white;
    width: 483px;
    height: 221px;
    position: absolute;
    top: 46%;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    border-radius: 3px;
    z-index: 15 !important;
    padding: 10px 20px;
}

.confirm .description {
    text-align: center;
    margin-top: 30px;
}

.confirm .button.confirm-button {
    bottom: 30px;
    position: absolute;
}

.confirm .button.confirm-button.cancel {
    left: 50px;
}

.button.confirm-button.continue {
    right: 50px;
}

input#subdomain {
    min-width: 133px;
    width: min-content;
}

span#subdomain {
    display: inline-block;
    font-weight: 500;
    min-width: 15px;
    border-radius: 5px;
    text-align: center;
    background-color: #f4f4f4;
    color: #3b3b3b;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 2px;
    margin-right: 2px;
}

span#subdomain:focus {
    padding-left: 5px;
    padding-right: 5px;
}


.success {
    background-color: #59a359 !important;
    color: white !important;
}

.create-installation [path-page-index='2'] .button-bar {
    position:absolute;
    bottom: 100px;
    margin:auto;
    left:50%;
    transform:translateX(-50%);
}

.flex-h.main-section {
    margin-top: 80px;
}

.flex-v.left-section {
    width: 720px;
    margin-left: 0%;
    flex-shrink: 0;
}

h1.headline {
    font-size: 79px;
    max-width: 720px;
}

p.subheadline {
    font-size: 21px;
    margin-top: 70px;
    color: #ffffff;
    text-align: justify;
}

.button-bar.join-button-bar {
    margin-top: 40px;
    width: fit-content;
    width: -moz-fit-content;
    height: 50px;
    position: relative;
}

.button-bar.join-button-bar button:first-child {
    background: linear-gradient(45deg, #ff4c4c, #ff684e);
    font-size: 15px;
    height: 50px;
    padding: 0px 50px 0px 50px;
}

.flex-h.right-section {
    flex-wrap: wrap;
    margin-left: 50px;
    margin-right: 50px;
    justify-content: center;
    height: 700px;
}

.right-section img {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 13px 0px;
    border-radius: 5px;
    height: 450px;
    margin: 20px;
}

body>.page>.padded-content {
    padding: 80px;
    max-width: 1670px;
    margin: auto;
}

.in-flex {
    display: flex;
    align-items: center;
}

.select-searchable i.fa.fa-times {
    display: none;
}

.create-installation .path-vertical .fa-times{
  display:none;
}

.flex-v.section.body-section {
    width: 100%;
    margin-top: 0;
}

.flex-h.body-content-section {
    margin-left: 0;
    width: 100%;
    padding-bottom:80px;
}

.flex-v.body-left-section {
    width: 600px;
    flex-shrink: 0;
}

.flex-h.brand-images {
    margin-top: 40px;
    align-items: center;
}

h5.section-title {
    margin-left: unset;
}

.typing-here {
    height: calc(1.4em);
    white-space: nowrap;
    mix-blend-mode: soft-light;
    background-color: #3a84ff;
    background: linear-gradient(45deg, #3a84ff, #68a1ff);
    width: fit-content;
    color: white;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: -10px;
    border-radius: 6px;
    margin-top: 10px;
    user-select: none;
    box-shadow: 0 0 10px 1px #00000042;
}

td .image-wrapper img {
    border-radius: unset;
}

.image-wrapper img.image.shadow, .video-wrapper video.shadow {
    filter: drop-shadow(2px 4px 9px #00000024);
    background-color: #00000024;
}

.image-wrapper, .video-wrapper {
    padding-top: 30px;
    text-align: center;
    max-width: 800px;
}

.image-wrapper p, .video-wrapper p {
    font-size: 12px;
    color: #585858;
}


.image-wrapper img, .video-wrapper video {
    border-radius: 10px;
}

.warning-triangle{
	vertical-align: middle !important;
	color: #f08100;
	font-size: 22px !important;
	margin-left: 20px;
	vertical-align: -webkit-baseline-middle !important;
}

.in-flex {
    display: flex;
    align-items: center;
}
