@use 'sass:math';
@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@700&display=swap');

@font-face {
    font-family: 'icomoon';
    src: url('../static/fonts/icomoon.eot?n6vlxb');
    src: url('../static/fonts/icomoon.eot?n6vlxb#iefix') format('embedded-opentype'), url('../static/fonts/icomoon.ttf?n6vlxb') format('truetype'), url('../static/fonts/icomoon.woff?n6vlxb') format('woff'), url('../static/fonts/icomoon.svg?n6vlxb#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

* {
    font-family: "Work Sans", sans-serif;
}

body {
    font-size: 16px;
}

.layout-container header {
    width: 100%;
    height: 50px;
    background: var(--neutrals-white, #fff);
    box-shadow: 0px 2px 6px 0px rgba(67, 54, 76, .05);
}

    .layout-container header .nav-pills {
        display: none;
        justify-content: end;
        padding-right: 48.5px;
        background: var(--neutrals-white, #fff);
        height: 50px;
        align-items: center;
    }

        .layout-container header .nav-pills .nav-link {
            color: var(--neutrals-slate, #52516b);
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 14px;
            letter-spacing: 0.12px;
            padding: 0;
            display: flex;
            flex-wrap: wrap-reverse;
            background: none;
            border: 0;
            border-radius: var(--bs-nav-pills-border-radius);
        }

            .layout-container header .nav-pills .nav-link .icon-chevron-down.icon {
                width: 12px;
                height: 12px;
                display: inline-flex;
                margin-left: 5px;
            }

                .layout-container header .nav-pills .nav-link .icon-chevron-down.icon::before {
                    width: 12px;
                    height: 12px;
                    display: inline-flex;
                }

        .layout-container header .nav-pills .dropdown-item {
            display: block;
            width: 100%;
            padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
            clear: both;
            font-weight: 400;
            color: var(--bs-dropdown-link-color);
            text-align: inherit;
            text-decoration: none;
            white-space: nowrap;
            background-color: rgba(0, 0, 0, 0);
            border: 0;
        }

.reset-password-page {
    background: #f7f7f8;
    text-align: center;
}

    .reset-password-page .reset-password-content {
        padding: 30px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        background: #f7f7f8;
    }

        .reset-password-page .reset-password-content .reset-content-title {
            display: flex;
            padding: 0px 0px 10px 0px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .reset-password-page .reset-password-content .reset-content-title h3 {
                color: #43364c;
                text-align: center;
                font-family: "Work Sans", sans-serif;
                font-size: 48px;
                font-style: normal;
                font-weight: 700;
                line-height: 48px;
                margin-top: 0;
                margin-bottom: 0.5rem;
            }

            .reset-password-page .reset-password-content .reset-content-title p {
                display: flex;
                width: 432px;
                flex-direction: column;
                color: #52516b;
                text-align: center;
                font-family: "Work Sans", sans-serif;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 24px;
                letter-spacing: 0.16px;
                margin-top: 0;
                margin-bottom: 0;
            }

        .reset-password-page .reset-password-content .password-reset-form {
            text-align: center;
            display: flex;
            flex-direction: column;
        }

            .reset-password-page .reset-password-content .password-reset-form .captcha-area {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                gap: 4px;
            }

            .reset-password-page .reset-password-content .password-reset-form .form-element p.invalid-error-msg {
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 21px;
                letter-spacing: 0.14px;
                color: #b10101;
                text-align: left;
                display: none;
                padding: 10px 0px;
            }

            .reset-password-page .reset-password-content .password-reset-form .form-element.invalid-input .form-group {
                border-bottom: 2px solid #b10101;
            }

                .reset-password-page .reset-password-content .password-reset-form .form-element.invalid-input .form-group input {
                    color: #52516b;
                }

                .reset-password-page .reset-password-content .password-reset-form .form-element.invalid-input .form-group label {
                    color: #b10101 !important;
                }

                .reset-password-page .reset-password-content .password-reset-form .form-element.invalid-input .form-group:before {
                    content: "\e91e";
                    color: #b10101;
                    font-family: 'icomoon' !important;
                    font-style: normal;
                    font-weight: normal;
                    font-variant: normal;
                    text-transform: none;
                    line-height: 1;
                    font-size: 20px;
                    height: 20px;
                    position: absolute;
                    right: 28px;
                    top: 50%;
                    transform: translate(0, -50%);
                }

            .reset-password-page .reset-password-content .password-reset-form .form-element.success-input .form-group {
                border-bottom: 2px solid #127856;
                position: relative;
            }

                .reset-password-page .reset-password-content .password-reset-form .form-element.success-input .form-group input {
                    color: #127856;
                }

                .reset-password-page .reset-password-content .password-reset-form .form-element.success-input .form-group:before {
                    content: '\e958';
                    font-family: 'icomoon' !important;
                    font-style: normal;
                    font-weight: normal;
                    font-variant: normal;
                    text-transform: none;
                    line-height: 1;
                    font-size: 20px;
                    height: 20px;
                    position: absolute;
                    right: 28px;
                    top: 50%;
                    transform: translate(0, -50%);
                    color: #127856;
                }

            .reset-password-page .reset-password-content .password-reset-form .form-element .form-group {
                position: relative;
                width: 432px;
                height: 75px;
                padding: 15px 20px 15px 20px;
                border-bottom: 1px solid var(--neutrals-slate, #52516b);
                background: var(--neutrals-white, #fff);
                margin-bottom: 0px;
            }

                .reset-password-page .reset-password-content .password-reset-form .form-element .form-group label {
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 24px;
                    letter-spacing: 0.16px;
                    color: #52516b;
                    position: relative;
                    top: 11px;
                    float: left;
                    transition: all 0.3s ease-in-out;
                }

                    .reset-password-page .reset-password-content .password-reset-form .form-element .form-group label.active {
                        top: 0;
                        font-size: 14px;
                        line-height: 21px;
                    }

                .reset-password-page .reset-password-content .password-reset-form .form-element .form-group input {
                    width: 100%;
                    color: var(--neutrals-plum, #43364c);
                    font-family: Work Sans;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 24px;
                    letter-spacing: 0.16px;
                    background: none;
                    outline: none;
                    display: block;
                    padding-bottom: 10px;
                    max-width: 85%;
                    display: -webkit-box;
                    -webkit-line-clamp: 1;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    -webkit-box-orient: vertical;
                }

                    .reset-password-page .reset-password-content .password-reset-form .form-element .form-group input:focus {
                        box-shadow: none;
                    }

                    .reset-password-page .reset-password-content .password-reset-form .form-element .form-group input.hasError {
                        border-color: #b10101;
                    }

                .reset-password-page .reset-password-content .password-reset-form .form-element .form-group .form-text {
                    color: #52516b;
                    font-family: "Work Sans", sans-serif;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 24px;
                    letter-spacing: 0.16px;
                    margin-top: 0.25rem;
                    width: 400px;
                    margin: 0;
                    padding: 0;
                    border: none;
                    position: absolute;
                    top: 0;
                    bottom: 0;
                    left: 30px;
                }

            .reset-password-page .reset-password-content .password-reset-form .form-actions {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }

                .reset-password-page .reset-password-content .password-reset-form .form-actions .button {
                    width: 100%;
                    padding: 10px 30px;
                    border: solid rgba(0, 0, 0, 0);
                    border-radius: 50px;
                    background: #ed6e0c;
                    color: #2b2133;
                    text-align: center;
                    font-family: "Work Sans", sans-serif;
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 27px;
                    letter-spacing: 0.18px;
                    cursor: pointer;
                }

                    .reset-password-page .reset-password-content .password-reset-form .form-actions .button:hover {
                        color: var(--radiant-orange-wv-radiant-orange-wv, #ed6e0c);
                        background: var(--neutrals-eggplant, #2b2133);
                        text-decoration: none;
                    }

.need-help-block {
    display: flex;
    padding: 50px 0px;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    background: var(--neutrals-white, #fff);
}

    .need-help-block h4 {
        color: var(--neutrals-plum, #43364c);
        text-align: center;
        font-family: "Work Sans", sans-serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 500;
        line-height: 38px;
        margin-bottom: 3px;
    }

    .need-help-block .help-desc {
        width: 448px;
        color: var(--neutrals-slate, #52516b);
        text-align: center;
        font-family: "Work Sans", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.16px;
        margin-bottom: 5px;
    }

    .need-help-block .contact-info span {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

        .need-help-block .contact-info span .icon-phone, .need-help-block .contact-info span .icon-email {
            width: 20px;
            height: 20px;
            font-size: 1.25rem;
        }

            .need-help-block .contact-info span .icon-phone.small:before, .need-help-block .contact-info span .icon-email.small:before {
                font-size: 1.25rem;
                width: 20px;
                height: 20px;
                display: inline-flex;
            }

        .need-help-block .contact-info span p {
            color: var(--neutrals-plum, #43364c);
            font-family: "Work Sans", sans-serif;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 24px;
            letter-spacing: 0.16px;
            margin-bottom: 0px;
        }

            .need-help-block .contact-info span p a {
                color: var(--a-11-y-orange-a-11-y-orange, #c6430c);
            }

    .need-help-block .contact-info .email-info a {
        color: var(--a-11-y-orange-a-11-y-orange, #c6430c);
        text-decoration-line: underline;
    }

        .need-help-block .contact-info .email-info a:hover {
            text-decoration-line: none;
        }

    .need-help-block .contact-us-cta {
        display: flex;
        padding: 10px 0px;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        gap: 10px;
    }

        .need-help-block .contact-us-cta .secondary-button.btn {
            display: flex;
            padding: 10px 0px;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            gap: 10px;
            cursor: pointer;
            border: none;
            background: none;
            box-shadow: none;
            color: var(--neutrals-plum, #43364c);
            text-align: center;
            font-family: "Work Sans", sans-serif;
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 27px;
            letter-spacing: 0.18px;
            padding: 0px;
        }

            .need-help-block .contact-us-cta .secondary-button.btn .icon {
                border-radius: 50%;
                background-color: #ed6e0c;
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .need-help-block .contact-us-cta .secondary-button.btn .icon:before {
                    font-size: 11px;
                    width: 11px;
                    height: 11px;
                    font-weight: bold;
                }

                .need-help-block .contact-us-cta .secondary-button.btn .icon.large {
                    width: 22px;
                    height: 22px;
                    position: relative;
                }

                    .need-help-block .contact-us-cta .secondary-button.btn .icon.large:before {
                        font-size: 11px;
                        width: 11px;
                        height: 11px;
                        position: absolute;
                        left: calc(50% + 1px);
                        top: 50%;
                        transform: translate(-50%, -50%);
                    }

            .need-help-block .contact-us-cta .secondary-button.btn:hover .icon {
                color: #ed6e0c;
                background: #2b2133;
            }

            .need-help-block .contact-us-cta .secondary-button.btn:active {
                border: none;
            }

                .need-help-block .contact-us-cta .secondary-button.btn:active .icon {
                    color: #43364c;
                    color: #000;
                    background: #ed6e0c;
                    border: 2px solid #c6430c;
                }

            .need-help-block .contact-us-cta .secondary-button.btn:focus {
                box-shadow: none;
            }

                .need-help-block .contact-us-cta .secondary-button.btn:focus .icon {
                    color: #43364c;
                    color: #000;
                    background: #ed6e0c;
                    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #c6430c;
                }

            .need-help-block .contact-us-cta .secondary-button.btn[disabled="true"] {
                cursor: default;
                pointer-events: none;
            }

                .need-help-block .contact-us-cta .secondary-button.btn[disabled="true"] .icon {
                    color: #c6430c;
                    background: #f8eae1;
                    border: 1px solid #c6430c;
                }

                    .need-help-block .contact-us-cta .secondary-button.btn[disabled="true"] .icon:before {
                        color: #7c7384;
                    }

            .need-help-block .contact-us-cta .secondary-button.btn.large {
                font-size: 18px;
                line-height: 27px;
            }

@-moz-document url-prefix() {
    @media (min-width: 1024px) {
        .secondary-button.btn .icon.large:before {
            line-height: 10px;
        }
    }
}

input.form_input {
    display: flex;
    padding: 15px 20px 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

input.captcha_input {
    display: flex;
    padding: 15px 20px 15px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.captcha-img > img {
    float: left;
}

@media (min-width: 1024px) {
    .reset-password-page {
        padding: 50px 0px 26px 0px;
    }

        .reset-password-page .reset-password-content {
            display: inline-flex;
            padding: 30px;
        }

            .reset-password-page .reset-password-content .reset-content-title {
                gap: 16px;
                padding-bottom: 25px;
            }

            .reset-password-page .reset-password-content .password-reset-form {
                gap: 16px;
            }

                .reset-password-page .reset-password-content .password-reset-form .form-actions {
                    padding: 28px 0px 50px 0px;
                }

    .need-help-block .contact-info {
        display: flex;
        justify-content: space-around;
        gap: 22px;
    }

    .need-help-block .secondary-button.btn .icon.large :before {
        font-size: 11px;
        width: 11px;
        height: 11px;
    }
}

@media (max-width: 1024px) {
    .layout-container header .nav-pills {
        padding-right: 24.5px;
    }

    /*.layout-container footer ul li a {
        padding: 0 20px;
    }*/

    .reset-password-page {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

        .reset-password-page .reset-password-content {
            display: flex;
            padding: 30px 25px 42px 25px;
            margin-bottom: 23px;
        }

            .reset-password-page .reset-password-content .reset-content-title {
                gap: 20px;
            }

                .reset-password-page .reset-password-content .reset-content-title h3 {
                    font-size: 32px;
                    line-height: 38px;
                }

                .reset-password-page .reset-password-content .reset-content-title p {
                    width: 315px;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 21px;
                    letter-spacing: 0.14px;
                }

            .reset-password-page .reset-password-content .form-wrapper .password-reset-form {
                gap: 20px;
            }

                .reset-password-page .reset-password-content .form-wrapper .password-reset-form .form-element .form-group {
                    width: 325px;
                }

                    .reset-password-page .reset-password-content .form-wrapper .password-reset-form .form-element .form-group input {
                        width: 325px;
                        border-radius: 0;
                    }

                .reset-password-page .reset-password-content .form-wrapper .password-reset-form .form-actions {
                    gap: 10px;
                }

                    .reset-password-page .reset-password-content .form-wrapper .password-reset-form .form-actions .button {
                        width: 325px;
                        font-size: 16px;
                        line-height: 24px;
                        letter-spacing: 0.16px;
                    }

    .need-help-block {
        display: flex;
        width: 100%;
        padding: 50px 30px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        background: var(--neutrals-white, #fff);
    }

        .need-help-block h4 {
            font-size: 24px;
            font-weight: 500;
            line-height: 28px;
        }

        .need-help-block .help-desc {
            width: 315px;
            font-size: 14px;
            font-weight: 400;
            line-height: 21px;
            letter-spacing: 0.14px;
        }

        .need-help-block .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

    @-moz-document url-prefix() {
        .need-help-block .secondary-button.btn .icon.large:before {
            width: 8px;
            height: 8px;
        }
    }
}
