:root {
    --dark-navy: #040025;
    --navy: #180d70;
    --turquoise: #00d5ff;
    --purple: #6e00ff;
    --magenta: #ff00e6;
}

.slider-row {
    display: grid;
    grid-template-areas: "slider slider-label"
                         "slider-sub slider-label-sub";
    color: white;
    column-gap: 1rem;
}

.slider {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    grid-area: slider;

    input[type=range] {
        -webkit-appearance: none;
        margin: 18px 0;
        width: 100%;
        background: transparent;
    }
    input[type=range]:focus {
        outline: none;
    }
    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 4px;
        cursor: pointer;
        background: linear-gradient(135deg, var(--mn-purple), var(--mn-magenta));
        border-radius: 999px;
        border: 0;
    }
    input[type=range]::-webkit-slider-thumb {
        box-shadow: 0 0 10px 0 var(--mn-magenta);
        border: 0;
        height: 14px;
        width: 14px;
        border-radius: 999px;
        background: var(--mn-magenta);
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -5px;
    }
    input[type=range]:focus::-webkit-slider-runnable-track {
        background: var(--mn-purple);
    }
    input[type=range]::-moz-range-track {
        width: 100%;
        height: 4px;
        cursor: pointer;
        background: linear-gradient(135deg, var(--mn-purple), var(--mn-magenta));
        border-radius: 999px;
        border: 0;
    }
    input[type=range]::-moz-range-thumb {
        box-shadow: 0 0 10px 0 var(--mn-magenta);
        border: 0;
        height: 14px;
        width: 14px;
        border-radius: 999px;
        background: var(--mn-magenta);
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -5px;
    }
}

.ticks {
    display: flex;
    justify-content: space-between;
    margin-top: -12px;
    margin-bottom: 8px;
    padding-left: 5px;
    padding-right: 6px;
    width: 100%;

    .tick {
        background: #510aeb;
        height: 5px;
        width: 1px;
    }
}

.slider-label {
    display: flex;
    align-items: center;
    grid-area: slider-label;
    justify-content: flex-end;
    font-weight: 500;
}

.summary, .input-row {
    color: white;
    font-weight: 500;
    text-align: center;
}

.slider-sub {
    grid-area: slider-sub;
}

.slider-label-sub {
    grid-area: slider-label-sub;
}

.slider-label-sub, .slider-sub {
    font-size: 0.85rem;
}

.slider-label, .slider-label-sub {
    text-align: right;
}

.section-footer {
    padding-bottom: 3rem;
}

#Register-Form input:not([type='submit']).error-state,
#Register-Form select.error-state {
    border: 2px solid red;
    color: red;
}

.input-error-message {
    color: red;
    font-size: 12px;
    padding-left: 10px;
    margin-top: -3px;
}

.w-form-fail {
    display: none;
    background-color: transparent;
    text-align: center;
    color: red;
}

.w-form-done {
    display: none;
    background-color: transparent;
    text-align: center;
    color: white;
}

.ticker-text {
    color: #00d5ff;
    text-align: right;
    letter-spacing: 2px;
    text-transform: uppercase;
    min-width: 5ch;
    font-family: sans-serif;
    font-size: .875rem;
    font-weight: 500
}

.ticker-text.text-color_white {
    color: #fff;
    position: relative
}

.ticker_content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    white-space: nowrap;
    background-color: #040025;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    position: relative
}

.ticker {
    z-index: 8000;
    background-color: var(--dark-navy);
    width: 100%;
    display: flex;
    position: fixed;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
    overflow: hidden;
    box-shadow: 0 0 0 1px #fff
}

.ticker-divider {
    background-color: #fff;
    width: 1px;
    height: 2.5rem
}

.ticker-container {
    grid-column-gap: .5ch;
    grid-row-gap: .5ch;
    justify-content: flex-end;
    align-items: center;
    min-width: 6ch;
    display: flex;
}

.mins_wrapper {
    z-index: 100;
    background-color: var(--purple);
    flex: none;
    min-width: 2rem;
    height: 3rem;
    position: relative;
}

.mins_wrapper.text {
    grid-column-gap: 1ch;
    grid-row-gap: 1ch;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: center;
    align-items: center;
    padding: 1rem;
    font-family: sans-serif;
    font-size: .875rem;
    line-height: 1;
    display: flex;
}

.mins_icon {
    z-index: 100;
    background-color: #6e00ff;
    height: 3rem;
    padding: 8px;
    position: relative;
}

.copyright-text {
    color: #fff;
    z-index: 10;
    background-color: #040025;
    border-left: 2rem solid #040025;
    align-items: center;
    padding-right: 1rem;
    font-family: sans-serif;
    font-size: .875rem;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: auto;
    right: 0%;
}

.ticker_content {
    animation: tickerAnimation 40s linear infinite
}

.dropdown-icon.flipped {
    margin-bottom: 1px;
    transform: rotate(180deg);
}

.dropdown-icon {
    height: .5625rem;
}

@media (max-width: 766px) {
    .ticker_content {
        animation-duration: 15s
    }
}

@keyframes tickerAnimation {
    0% {
        left: 0%;
    }

    100% {
        left: -100%;
    }
}

@media screen and (max-width: 767px) {
    .mins_icon {
        border-right-width: 1rem;
    }

    .copyright-text {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .mins_wrapper.text, .ticker_livetime {
        display: none;
    }
}

@media (min-width: 240px) {
    html {
        font-size: calc(10.29px + 5.71 * ((100vw - 240px) / 527))
    }
}

@media (min-width: 768px) {
    html {
        font-size: calc(12.92px + 3.08 * ((100vw - 768px) / 223))
    }
}

@media (min-width: 992px) {
    html {
        font-size: calc(10.4px + 5.6 * ((100vw - 992px) / 448))
    }
}

@media (min-width: 1440px) {
    html {
        font-size: 16px
    }
}

.sales-progress-bar-increase {
    animation: ease-in-out progress 2s infinite;
    box-sizing: content-box;
}

@keyframes progress {
    0% {
        padding-left: 0;
    }
    50% {
        padding-left: 5px;
    }
    100% {
        padding-left: 0;
    }
}

.jq-toast-wrap {
    display: block;
    position: fixed;
    width: 30em;
    pointer-events: none !important;
    margin: 0;
    padding: 0;
    letter-spacing: normal;
    z-index: 9000 !important;
    bottom: 20px;
    right: 40px;
}

.jq-toast-wrap * {
    margin: 0;
    padding: 0;
}

.jq-toast-single {
    display: block;
    width: 100%;
    padding: 0.25em 1em;
    margin-top: 0.5em;
    border-radius: 8px;
    position: relative;
    pointer-events: all !important;
    background-color: white;
    color: black;
}

.close-jq-toast-single {
    position: absolute;
    top: 3px;
    right: 7px;
    font-size: 14px;
    cursor: pointer;
}

.jq-toast-inner-wrap {
    display: flex;
    flex-direction: row;
    gap: 1em;
    margin-top: 1em;
}

.jq-toast-col1 > img, .jq-toast-col3 > img {
    width: 5em;
}

.jq-toast-col2 {
    margin-top: 0.6em;
}

.jq-toast-col2 > p {
    margin-bottom: 0.5em;
}

@media screen and (max-width: 767px) {
    .jq-toast-wrap {
        width: 100%;
        bottom: 0;
        right: 0;
    }
    .jq-toast-single {
        border-radius: 0;
    }
    .jq-toast-col1 > img, .jq-toast-col3 > img {
        margin-top: 1em;
    }
}