
html {
    font-family: #WebisteFont#;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    
}

@-ms-viewport {
    width: device-width;
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: left;
    background-color: rgb(6,17,56);
    
}

    body.device-app {
        background-color: #000;
    }


*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, a:visited, a:active {
    color: rgba(35,66,129, 1);
    text-decoration: none;
}

    a:hover {
        color: rgba(35,66,129, 1);
        text-decoration: underline;
    }


svg:not(:root) {
    overflow: hidden;
}

h1 {
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
}


.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1486px) {
    .container {
        max-width: 1486px;
    }
}

body.device-app .container {
    max-width: 100%;
}


body.device-tv .container {
    max-width: calc(100% - 80px);
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    -webkit-clip-path: none;
    clip-path: none;
}

.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26' width='26' height='26'%3E%3Cline x1='2' x2='24' y1='2' y2='24'  stroke='%23234281' stroke-width='5'/%3E%3Cline x1='2' x2='24' y1='24' y2='2' stroke='%23234281' stroke-width='5'/%3E%3C/svg%3E");
}

.slick-list,
.slick-track {
    height: 100%;
}

.slick-slide > div {
    height: 100%;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
    bottom: -45px;
}

    .slick-dots li {
        margin: 0 0.25rem;
    }

        .slick-dots li button:before {
            content: none;
        }

    .slick-dots li {
        width: unset;
        height: unset;
    }

        .slick-dots li button {
            display: block;
            width: 17px;
            height: 7px;
            padding: 0;
            border: none;
            border-radius: 0px;
            background-color: #fff;
            text-indent: -9999px;
            opacity: 0.2;
        }

        .slick-dots li.slick-active button {
            background-color: rgb(35,66,129);
            width: 51px;
            height: 7px;
            opacity: 1;
        }
/* buttons */
.btn {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 12px 32px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

@media only screen and (max-width:768px) {
    .btn {
        font-size: 14px;
        padding: 9px 26px;
    }
}

.btn-primary, .btn-primary:visited {
    color: rgb(255,255,255);
    background-color: rgba(35,66,129, 1);
    border-color: rgba(35,66,129, 1);
}

    .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
        color: rgb(10,25,82);
        background-color: rgba(191,222,246, 0.8);
        border-color: rgba(191,222,246, 0.8);
    }



.btn-secondary {
    color: #fff;
    background-color: rgba(35,66,129, 0.25);
    border-color: rgba(35,66,129, 0.25);
}

    .btn-secondary:hover, .btn-secondary:active, .btn-secondary:visited, .btn-secondary:focus {
        color: #fff;
        background-color: rgba(35,66,129, 0.8);
        border-color: rgba(35,66,129, 0.8);
    }

.btn-link:hover, .btn-link:active, .btn-link:visited, .btn-link:focus {
    color: #fff;
}


/*coming soon banner temp*/

#window-launching-soon {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(6,17,56);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

    #window-launching-soon .logo {
        width: 400px;
    }

    #window-launching-soon .close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 26px;
        height: 26px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 26' width='26' height='26'%3E%3Cline x1='2' x2='24' y1='2' y2='24'  stroke='%23234281' stroke-width='5'/%3E%3Cline x1='2' x2='24' y1='24' y2='2' stroke='%23234281' stroke-width='5'/%3E%3C/svg%3E");
        cursor: pointer;
    }

    #window-launching-soon .contents {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        max-width: 400px;
    }

    #window-launching-soon .logo {
        text-align: center;
        width: 240px;
        margin-bottom: 20px;
    }

    #window-launching-soon h2 {
        border-bottom: 3px solid rgb(35,66,129);
        width: auto;
        display: inline-block;
    }

    #window-launching-soon #window-launching-soon-form-error {
        color: red;
        font-weight: bold;
    }

    #window-launching-soon #window-launching-soon-form form > div {
        margin-bottom: 18px;
    }

#window-launching-soon-form input {
    width: 100%;
    font-size: 16px;
    border: none;
    padding: 8px;
    text-align: center;
}

@media only screen and (max-width:768px) {
    #window-launching-soon .logo {
        width: 300px;
    }


    #window-launching-soon .contents {
        width: 100%;
        padding: 20px;
        font-size: 14px;
    }
}


.slick-list > div {
    margin-left: 0;
}


.slick-center .slick-list > div {
    margin-left: auto;
    margin-right:auto;
}

/* Generic forms */


.form-group {
    margin-bottom: 1rem;
}

    .form-group label {
        margin-bottom: 0.25rem;
        display: inline-block;
        opacity: 0.8;
        font-size: 14px;
    }

.form-control {
    display: block;
    width: 100%;
    background-color: rgba(255,255,255,0.1);
    border: solid 1px rgba(255,255,255,0.1);
    padding: 18px;
    font-size: 16px;
    border-radius: 0;
    color: #fff;
    flex: 1 1 auto;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


    .form-control:focus {
        outline: none;
        border: solid 1px rgba(255,255,255,0.8);
    }

    .form-control.input-validation-error {
        border: solid 1px rgba(255,0,0,0.8);
    }

.field-validation-error {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}



.small-print {
    font-size: 12px;
    opacity: 0.85;
}

/* heading wuth tabs */
.container heading .logo img {
    height: 45px;
    width: auto;
    margin: 28px 0;
}

.container heading {
    margin-bottom: 24px;
}

    .container heading ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }


    .container heading li {
        float: left;
        margin-right: 16px;
    }

        .container heading li:last-child {
            margin-right: 0;
        }

        .container heading li a, .container heading li a:hover, .container heading li a:visited, .container heading li a:active {
            display: block;
            text-decoration: none;
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            opacity: 0.3;
            border-bottom: solid 3px transparent;
            text-transform: uppercase;
            text-decoration: none;
            line-height: 1em;
            padding-bottom: 5px;
        }

            .container heading li a:hover {
                opacity: 1;
            }

        .container heading li.active a, .container heading li.active a:hover, .container heading li.active a:visited, .container heading li.active a:active {
            opacity: 1;
            color: rgba(35,66,129, 1);
            border-bottom: solid 3px rgba(35,66,129, 1);
        }

@media only screen and (max-width: 768px) {
    .container heading {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .container heading li a, .container heading li a:hover, .container heading li a:visited, .container heading li a:active {
            font-size: 16px;
            padding-bottom: 3px;
        }
        /*
    h1 {
        text-align: center;
    }
            */
}

/* subheading wuth tabs */

.container subheading {
    margin-bottom: 24px;
    margin-top: 24px;
}

    .container subheading ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .container subheading li {
        float: left;
        margin-right: 16px;
    }

        .container subheading li:last-child {
            margin-right: 0;
        }

        .container subheading li a, .container subheading li a:hover, .container subheading li a:visited, .container subheading li a:active {
            display: block;
            text-decoration: none;
            font-size: 24px;
            font-weight: bold;
            color: #fff;
            opacity: 0.3;
            border-bottom: solid 3px transparent;
            text-transform: uppercase;
            text-decoration: none;
            line-height: 1em;
            padding-bottom: 5px;
        }

            .container subheading li a:hover {
                opacity: 1;
            }

        .container subheading li.active a, .container subheading li.active a:hover, .container subheading li.active a:visited, .container subheading li.active a:active {
            opacity: 1;
            color: rgba(35,66,129, 1);
            border-bottom: solid 3px rgba(35,66,129, 1);
        }

@media only screen and (max-width: 768px) {
    .container subheading {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .container subheading li a, .container subheading li a:hover, .container subheading li a:visited, .container subheading li a:active {
            font-size: 16px;
            padding-bottom: 3px;
        }

    /*h1 {
        text-align: center;
    }*/
}

/* PWA Login prompt for ios */

.pwaPromptOverlay {
    background-color: rgba(0, 0, 0, 0.8);
    left: 0;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.2s ease-in;
    width: 100vw;
    z-index: 999999;
}

    .pwaPromptOverlay.visible {
        opacity: 1;
        display: block;
    }

    .pwaPromptOverlay.hidden {
        pointer-events: none;
        touch-action: none;
    }

@media (prefers-color-scheme: dark) {
    .pwaPromptOverlay.modern {
        background: rgba(10, 10, 10, 0.5);
        color: rgba(235, 235, 245, 0.6);
    }
}

.pwaPrompt {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(250, 250, 250, 0.8);
    border-radius: 10px;
    bottom: 0;
    color: black;
    filter: brightness(1.1);
    left: 0;
    margin: 0 8px 10px;
    overflow: hidden;
    position: fixed;
    transform: translateY(calc(100% + 10px));
    transition: transform 0.4s cubic-bezier(0.4, 0.24, 0.3, 1);
    width: calc(100vw - 16px);
    z-index: 999999;
}

    .pwaPrompt.visible {
        transform: translateY(0);
        display: block;
    }

    .pwaPrompt.hidden {
        pointer-events: none;
        touch-action: none;
    }

    .pwaPrompt.modern {
        background: rgba(255, 255, 255, 0.6);
        filter: brightness(1.6);
    }

@media (prefers-color-scheme: dark) {
    .pwaPrompt.modern {
        background: rgba(65, 65, 65, 0.7);
        filter: brightness(1.1);
    }
}

.pwaPromptHeader {
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-width: 0.5px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 13px 16px;
}

.modern .pwaPromptHeader {
    border-color: rgba(60, 60, 67, 0.29);
}

@media (prefers-color-scheme: dark) {
    .modern .pwaPromptHeader {
        border-color: rgba(140, 140, 140, 0.7);
    }
}

.pwaPromptHeader .pwaPromptTitle {
    color: #333;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.125;
    margin: 0;
    padding: 0;
}

.modern .pwaPromptHeader .pwaPromptTitle {
    color: rgba(0, 0, 0, 1);
}

@media (prefers-color-scheme: dark) {
    .modern .pwaPromptHeader .pwaPromptTitle {
        color: rgba(255, 255, 255, 1);
    }
}

.pwaPromptHeader .pwaPromptCancel {
    color: #2d7cf6;
    font-size: 16px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
}

.modern .pwaPromptHeader .pwaPromptCancel {
    color: rgba(0, 85, 179, 1);
}

@media (prefers-color-scheme: dark) {
    .modern .pwaPromptHeader .pwaPromptCancel {
        color: rgba(9, 132, 255, 1);
    }
}

.pwaPromptBody {
    display: flex;
    width: 100%;
}

    .pwaPromptBody .pwaPromptDescription {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-top: 0px;
        border-left: 0px;
        border-right: 0px;
        border-width: 0.5px;
        color: inherit;
        margin: 0 16px;
        padding: 16px;
        width: 100%;
    }

.modern .pwaPromptBody .pwaPromptDescription {
    border-color: rgba(60, 60, 67, 0.29);
}

@media (prefers-color-scheme: dark) {
    .modern .pwaPromptBody .pwaPromptDescription {
        border-color: rgba(140, 140, 140, 0.7);
    }
}

.pwaPromptCopy {
    color: #7b7b7a;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    line-height: 17px;
    margin: 0;
    padding: 0;
}

    .pwaPromptCopy.bold {
        font-weight: 600;
    }

.modern .pwaPromptCopy {
    color: rgba(60, 60, 67, 0.6);
}

@media (prefers-color-scheme: dark) {
    .modern .pwaPromptCopy {
        border-color: rgba(235, 235, 245, 0.6);
        color: rgba(235, 235, 245, 0.6);
    }
}

.pwaPromptInstruction {
    color: inherit;
    margin: 0 16px;
    padding: 16px;
}

    .pwaPromptInstruction .pwaPromptInstructionStep {
        align-items: center;
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        text-align: left;
        margin-bottom: 16px;
    }

        .pwaPromptInstruction .pwaPromptInstructionStep:last-of-type {
            margin-bottom: 0;
        }

    .pwaPromptInstruction .pwaPromptShareIcon, .pwaPromptInstruction .pwaPromptHomeIcon {
        flex: 0 0 auto;
        height: 30px;
        margin-right: 32px;
        width: 25px;
    }

    .pwaPromptInstruction .pwaPromptHomeIcon {
        color: #2d7cf6;
    }

.modern .pwaPromptInstruction .pwaPromptHomeIcon {
    color: black;
    fill: black;
}

@media (prefers-color-scheme: dark) {
    .modern .pwaPromptInstruction .pwaPromptHomeIcon {
        color: white;
        fill: white;
    }
}

.pwaPromptInstruction .pwaPromptShareIcon {
    color: #2d7cf6;
    fill: #2d7cf6;
}

.modern .pwaPromptInstruction .pwaPromptShareIcon {
    color: rgba(0, 85, 179, 1);
    fill: rgba(0, 85, 179, 1);
}

@media (prefers-color-scheme: dark) {
    .modern .pwaPromptInstruction .pwaPromptShareIcon {
        color: rgba(9, 132, 255, 1);
        fill: rgba(9, 132, 255, 1);
    }
}
/* */

.iOSPWA-container {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(215,215,215,0.8);
    border-radius: 10px;
    color: black;
    filter: brightness(1.1);
    margin: 0 8px 10px;
    overflow: hidden;
    width: calc(100vw - 16px);
    z-index: 999999;
    position: fixed;
    left: 0;
    bottom: 0;
}


.iOSPWA-header {
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-width: 0.5px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 13px 16px;
}

.iOSPWA-title {
    color: #333;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.125;
    margin: 0;
    padding: 0;
}

.iOSPWA-cancel {
    color: #2d7cf6;
    font-size: 16px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
}



.iOSPWA-description {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-width: 0.5px;
    color: inherit;
    margin: 0 16px;
    padding: 16px;
    width: 100%;
}

.iOSPWA-description-copy {
    color: #7b7b7a;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-size: 13px;
    line-height: 17px;
    margin: 0;
    padding: 0;
}

.iOSPWA-steps {
    color: inherit;
    margin: 0 16px;
    padding: 16px;
}


.iOSPWA-step1, .iOSPWA-step2 {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 16px;
}

.iOSPWA-step1-icon, .iOSPWA-step2-icon {
    flex: 0 0 auto;
    height: 30px;
    margin-right: 32px;
    width: 25px;
}

.iOSPWA-step1-icon, .iOSPWA-step2-icon {
    color: #2d7cf6;
    fill: #2d7cf6;
}


.iOSPWA-step1-copy, .iOSPWA-step2-copy {
    color: #7b7b7a;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 17px;
    margin: 0;
    padding: 0;
}



