{# intro panel #}
.ncq__intro {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    background-image: linear-gradient(175deg, #60b0e2 0%, #1468a1 100%);
    z-index: 100;

    transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.ncq__intro.hide {
    opacity: 0;
    visibility: hidden;
}
.ncq__intro-wrapper {
    width: 100%;
    max-width: 85vw;
    color: #fff;
}
.ncq__intro-wrapper h1,
.ncq__intro-wrapper h2,
.ncq__intro-wrapper h3,
.ncq__intro-wrapper h4,
.ncq__intro-wrapper h5,
.ncq__intro-wrapper h6 {
    color: inherit;
}
.ncq__intro-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    text-align: center;
}
.ncq__intro-wrapper .hs-button {
    border: 0 none;
    background: transparent;
    font-size: 1.5rem;
    color: #ffffff;
    width: fit-content !important;
    border: none;
    border-radius: 1rem;
    background: transparent;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.6rem 1rem;
    display: block;
    text-align: center;
    font-family: "museo-sans-rounded", sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.125s ease-in-out;
}
.ncq__intro-wrapper .hs-button:hover {
    background: rgba(255, 255, 255, 0.1);
}


{# wizard styles #}
.ncq__wizard {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 5;
}
.ncq__progress {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.2);
    height: 10px;
}
.ncq__progress > .ncq__progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: calc(var(--current) / var(--total) * 100%);
	background-color: #ef8a32;
	background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1.25rem 1.25rem;

    transition: width 0.25s ease-in-out;
}
.ncq__panel {
    position: fixed;
    width: 100vw;
    height: 100vh;

    display: flex;

    visibility: hidden;
    opacity: 0;

    transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.ncq__sidebar {
    width: 400px;
    background-color: #22518b;
    color: #fff;
    padding: 3rem 2rem 2rem;

    display: flex;
    flex-direction: column;
}
.ncq__sidebar h1,
.ncq__sidebar h2,
.ncq__sidebar h3,
.ncq__sidebar h4,
.ncq__sidebar h5,
.ncq__sidebar h6 {
    color: inherit;
}
.ncq__sidebar--list {
    padding: 0;
    margin: 0;
    list-style-type: none;

    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    margin-bottom: 2rem;
}
.ncq__sidebar--list li {
    font-size: 1.125rem;
    opacity: 0.55;
}
.ncq__sidebar--list li.active {
    opacity: 1;
}
.ncq__sidebar--blurb {
    margin-top: auto;
    border: 1px solid #fff;
    border-radius: 1rem;
    padding: 1rem;
}


.ncq__main {
    position: relative;
    width: calc(100vw - 400px);
    overflow: scroll;
    background-image: linear-gradient(175deg, #60b0e2, #1468a1);
    padding: 2rem 6rem 4rem 10rem;
    color: #fff;
}
.ncq__main h1,
.ncq__main h2,
.ncq__main h3,
.ncq__main h4,
.ncq__main h5,
.ncq__main h6 {
    color: inherit;
}
.ncq__form {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}
.ncq__form form ::placeholder {
    color: rgba(255, 255, 255, 0.67);
}
.ncq__curve {
    position: fixed;
    top: 0;
    left: 400px;
    height: 100vh;
    z-index: 15;
    fill: #22518b;
    transform: translateX(-1px);
}
.ncq__panel {
    z-index: var(--bz-index);
}
.ncq__panel.active {
    visibility: visible;
    opacity: 1;
}


@media (max-width: 1199.9px) {
    .ncq__sidebar {
        display: none;
    }
    .ncq__curve {
        display: none
    }
    .ncq__main {
        width: 100vw;
        padding: 3rem 2rem 2rem;
    }
}
@media (min-width: 1200px) {
    .ncq__intro-wrapper {
        max-width: 600px;
    }
    .ncq__sidebar {
        width: 400px;
        padding: 3rem 2rem 2rem;
    }
    .ncq__curve {
        left: 400px;
    }
    .ncq__main {
        width: calc(100vw - 400px);
        padding: 2rem 6rem 4rem 10rem;
    }
}