﻿/*
    CSS Created by jdfrosti --- Made to look like IOP styling, without all of the confusing class names and extension difficulties
        Place base styling (desktop) in the top portion
        Do not add media queries (the needed media queries already exist, add size specific styles to them)
        Media queries are setup with the max-width property
            This means that you should apply specific styles for mobile/tablet to the largest possible query size
                Ex. If something looks bad when shrunk to tablet/mobile, fix it with the tablet media query (991.98px)
                    and it will automatically apply to mobile as well unless you add in another class for mobile
*/
:root {
    --white: white;
    --black: black;
    --lt-gray: #f6f6f6;
    --med-gray: #EFEFEF;
    --drk-gray: #d9d9d9;
    --bmv-red: #cf152d;
    --bmv-blue: #3d7aa9;
    --lt-blue: #6183e9;
    --drk-blue: #183eaf;
    --alert-red: #be0f11;
    --bold: 700;
    --semi: 600;
    --reg: 400;
}

body {
    margin: 0px !important;
    padding: 0px !important;
    font-size: 16px;
    font-weight: var(--reg);
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--black);
    background: var(--med-gray) !important;
}



.bg-light{
    background-color: var(--med-gray) !important;
}

.bg-lt-gray {
    background-color: var(--lt-gray) !important;
}

.bg-bmv-blue{
    background-color: var(--bmv-blue) !important;
}

form{
    max-width:unset;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}
    a:hover, a:focus {
        color: #23527c;
    }
.hide{
    display: none !important;
}

.my-float {
    margin-top: 15px;
}

.logout {
    border-radius: 0px !important;
    background-color: transparent !important
}

    .logout:hover {
        font-weight: bold;
    }

.dropdownMenu {
    position: relative;
    display: inline-block;
}

.dropdownMenu-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
    right: 0px;
}

.dropdownMenu:hover .dropdownMenu-content {
    display: inline-block;
}

.dropdownMenu-content li {
    height: 28px !important;
    max-width: 100% !important;
}

.submenu {
    width: 100% !important;
    background-color: transparent !important;
    border-radius: unset !important;
    justify-content: start !important;
}

#skip a {
    display: block;
    position: absolute;
    left: -999px;
    top: -999px;
}

    #skip a:focus {
        left: 0;
        top: 0;
        padding: 6px;
        background: #fff;
        border: 1px solid #990000;
    }

.chat-icon {
    position: fixed;
    display:flex;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 40px;
    background-color: #0C9;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    vertical-align: central;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
}
.chat-icon:hover > i{
    color: var(--lt-gray);
}

.chat-menu-icon {
    background-color: #0C9 !important;
    color: #FFF !important;
}

.chat-menu-icon:hover > i {
    color: var(--lt-gray) !important;
}

small{
    font-size: 80%;
}

input[type="checkbox"] {
    align-self: start;
    margin-top: 10px;
    min-width: 20px;
}


/*#region Page Loading Spinner*/
.page-loading {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.8);
    z-index: 99999;
    font-size: 40px;
}

.page-loading-content {
    display: table;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.page-loading-spinner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    font-size: larger;
    padding-top: 80px;
}

/*#endregion*/

/*#region Radio Wrapper*/
.radio-wrapper {
    margin-right: 15px;
    display: flex;
    flex: 1;
    flex-direction: row;
    padding: 0px;
    align-items: center;
    align-content: center;
    max-width: fit-content;
    border-radius: 8px;
}

.step-wrapper.force-stack > .radio-wrapper {
    max-width: none;
    flex: 0 100%;
}

.step-wrapper.force-stack > .fieldwrapper {
    max-width: none;
    flex: 0 100%;
}

.radio-wrapper label {
    padding: 4px 20px 4px 35px;
    margin-left: -25px;
    border-radius: 8px;
    z-index: 199;
    position: relative;
    cursor: pointer;
    height: auto;
}

.radio-wrapper input[type="radio"]:checked + label {
    background: #fff;
}

.radio-wrapper input[type="radio"] {
    margin-right: 0;
    margin-left: 8px;
    min-width:20px;
    z-index: 200;
    position: relative;
    cursor: pointer;
}

.radio-header {
    font-weight: var(--bold);
    display: flex;
    flex: 1 100%;
}
/*#endregion*/

/*#region Card*/
.card{
    border-radius: 16px 16px 10px 10px !important;
}

.card-header{
    border-radius: 16px 16px 0 0 !important;
}

.card-body{
    border-radius: 0 0 10px 10px;
    padding: 15px 30px;
}

.card-header {
    background-color: var(--bmv-blue);
    color: var(--white);
    font-weight: var(--semi);
    font-size: 18px;
    padding-left: 30px;
    height: 50px;
    display: flex;
    align-items:center;
}
.card-header::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bmv-red);
}
.card-body.bg-light {
    background-color: var(--med-gray) !important;
    border-radius: 8px;
}
.card.bg-light .card-header {
    background-color: var(--drk-gray);
    color: var(--black);
    font-weight: bold;
}
.card.bg-light .card-header::before {
    display: none;
}

.card-light{
    border: none;
}
.card-light .card-header{
    background-color: var(--drk-gray);
    color: var(--black);
}
    .card-light .card-header::before{
        content: none;
    }
.card-light .card-body{
    background-color: var(--lt-gray);
}

.gray-body {
    display: flex;
    flex-direction: row;
    margin-top: 13px;
    border-radius: 10px;
    padding: 30px 20px;
    background: var(--drk-gray);
}
/*#endregion*/

/*#region Buttons*/
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 0;
    text-decoration: none;
    color: white;
    border-radius: 25px;
    background-color: var(--bmv-blue);
    min-width: 262px;
    max-width: 400px;
    position: relative;
}
    .btn:hover {
        color: white;
        background-color: var(--bmv-blue);
        border-color: var(--bmv-blue);
    }
    .btn:hover::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f111";
        font-size: 12px;
        display: flex;
        position: absolute;
        right: 10px;
        color: white;
    }

    .btn-disable-hover:hover::after{
        display: none;
    }

.btn-outline{
    color: var(--bmv-blue);
    background-color: white;
    border-color: var(--bmv-blue);
    border-width: 3px;
}
.btn-outline:hover{
    color: var(--bmv-blue);
}
    .btn-outline:hover::after {
        color: var(--bmv-blue);
    }

.btn-secondary{
    background-color: var(--bmv-red);
    border-color: var(--bmv-red);
}
.btn-secondary:hover{
    background-color: var(--bmv-red);
}

    .btn-secondary.btn-outline {
        color: var(--bmv-red);
        border-color: var(--bmv-red);
    }
    .btn-secondary.btn-outline:hover {
        color: var(--bmv-red);
        border-color: var(--bmv-red);
    }
        .btn-secondary.btn-outline:hover::after {
            color: var(--bmv-red);
            border-color: var(--bmv-red);
        }


.btn-sm {
    min-width: 100px;
}


.btn-arrow-left::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f104";
    font-size: 22px;
    display: flex;
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: all .2s ease-in-out;
}

.btn-arrow-left:hover::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f104";
    font-size: 22px;
    display: flex;
    position: absolute;
    left: 10px;
    opacity: 1;
}
.btn-arrow-right::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    font-size: 22px;
    display: flex;
    position: absolute;
    right: 15px;
    opacity: 0;
    transition: all .2s ease-in-out;
}

.btn-arrow-right:hover::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    font-size: 22px;
    display: flex;
    position: absolute;
    right: 10px;
    opacity: 1;
}



.badge-secondary{
    background-color: var(--bmv-red);
}
/*#endregion*/

/*#region Navbar*/
nav.topnav {
    height: 60px;
    background: var(--white);
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 0 30px;
}

    nav.topnav ul {
        padding: 0px;
        margin: 0px;
        padding-left: 0px;
        padding-inline-start: 0px;
    }

    nav.topnav a:hover, nav.topnav a:focus {
        text-decoration: none;
        color: var(--black);
    }

    nav.topnav a.logo {
        display: flex;
        flex: 0 142px;
    }

    nav.topnav a.logo img {
        max-height: 45px;
    }

    nav.topnav .navblock {
        display: flex;
        flex: 0 calc(100% - 262px);
        justify-content: center;
        align-items: center;
    }

    nav.topnav li {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex: 0 20%;
        font-size: 1em;
        height: 60px;
        padding: 0px;
        margin-left: 15px;
        margin-right: 15px;
        border-bottom: 3px solid white;
        max-width: fit-content;
    }
    @media (min-width: 991px) and (max-width: 1080px) {
        nav.topnav li {
            margin-left: 10px;
            margin-right: 10px;
        }
    }

    nav.topnav .navblock li.mnavclose {
        display: none;
    }

    nav.topnav .navblock .item a {
        color: var(--black);
        height: 100%;
        width: 100%;
        padding: 0 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

        nav.topnav .navblock .item a::after {
            content: "fiber_manual_record";
            font-family: "Material Icons";
            font-size: 12px;
            position: absolute;
            bottom: -2px;
            opacity: 0;
            color: var(--bmv-red);
            transition: all .2s;
        }

        nav.topnav .navblock .item a:hover::after {
            content: "fiber_manual_record";
            font-family: "Material Icons";
            font-size: 12px;
            position: absolute;
            bottom: 0;
            opacity: 1;
            color: var(--bmv-red);
            transition: all .2s ease-in-out;
        }

    nav.topnav .rightblock {
        display: flex;
        flex: 0 120px;
    }

        nav.topnav .rightblock li.item {
            height: 44px;
            display: flex;
            flex: 0 44px;
            justify-content: center;
            align-items: center;
            color: var(--black);
            min-width: 44px;
            margin: 0px;
        }

            nav.topnav .rightblock li.item a {
                display: flex;
                color: #000;
                justify-content: center;
                align-items: center;
                height: 44px;
                width: 44px;
                background: #ffffff;
                border-radius: 22px;
                transition: all .2s ease-in-out;
            }

            @media (max-width: 480px) {
                nav.topnav .rightblock li.item a {
                    height: 34px;
                    width: 34px;
                }
            }

                nav.topnav .rightblock li.item a:hover {
                    background: var(--lt-gray);
                    border-radius: 22px;
                    color: #000;
                }

    .logo-link-box {
        display: flex;
        align-items: center;
        flex-basis: 30%;
        height: 100%
    }

    .online-services-home {
        display: flex;
        vertical-align: middle;
        font-size: 22px;
        line-height: 20px;
        padding-left: 15px;
        color: #700017;
        font-weight: 600;
    }

        .online-services-home > span:hover {
            color: #D3263D;
        }

    nav.topnav .rightblock {
        flex-basis: 30%;
    }

        nav.topnav .rightblock li.item:first-child {
            margin-left: auto;
        }

    .online-services-mobile-home {
        display: none;
    }

    .vertical-line {
        border-left: 2px solid darkgrey;
        height: 75%;
        margin-left: 15px;
    }

    button.mnavtrigger {
        display: none;
        flex: 1;
        border: none !important;
        background: none !important;
        font-size: .875em;
        color: #000;
    }

    .Developmentenv {
        background: #c239b3;
    }

    .Testenv {
        background: #f7630c;
    }

    .Stagingenv {
        background: #10880b;
    }

    .Productionenv {
        background: #000000;
    }
    /*#endregion */
    /*#region Fieldwrapper*/
    .step-wrapper .fieldwrapper {
        margin-right: 20px;
        background: #fff;
        flex: 1;
        width:100%;
        margin-bottom: 10px;
    }

    .fieldwrapper.dropdown {
        position: relative;
        overflow: hidden;
    }

        .fieldwrapper.dropdown label.text {
            font-size: .875em;
            line-height: 20px;
            max-height: 20px;
            margin-top: 5px;
            color: var(--black);
        }

    .fieldwrapper select {
        padding-left: 10px;
        padding-right: 10px;
        border: none;
        height: 55px;
        padding-top: 25px;
        padding-bottom: 5px;
        margin-top: -25px;
        background: none;
        border-bottom: 3px solid #000;
        position: relative;
        width: 105%;
    }

    .fieldwrapper.dropdown:before {
        position: absolute;
        right: 1px;
        content: "expand_more";
        font-family: "Material Icons";
        color: #000;
        font-size: 1em;
        top: 17px;
        display: block;
        width: 20px;
        height: 15px;
        background: inherit;
    }

    .fieldwrapper.dropdown:focus-within label {
        animation: unset !important;
    }

    .fieldwrapper.dropdown:focus-within::after {
        font-size: 1em;
    }

    .fieldwrapper.dropdown label {
        pointer-events: none;
    }

    .fieldwrapper.hint {
        margin-bottom: 30px;
    }

    .fieldwrapper .field-hint {
        font-size: .875em;
        color: var(--bmv-blue);
    }

        .fieldwrapper .field-hint::before {
            font-family: "Material Icons";
            content: "fiber_manual_record";
            font-size: .5em;
        }

    form.white .fieldwrapper {
        background: var(--lt-gray);
    }

    form.gray .fieldwrapper {
        background: var(--white);
    }

    .fieldwrapper {
        display: flex;
        flex: 1 100%;
        max-width: 400px;
        justify-content: flex-start;
        flex-direction: column;
        height: 55px;
        margin-bottom: 20px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        background: var(--lt-gray);
    }

    .step-wrapper .fieldwrapper.textarea {
        height: fit-content;
        flex: 1 100%;
        max-width: 800px;
    }

    .fieldwrapper:focus-within label.text, .fieldwrapper.focus label.text {
        animation-duration: .5s;
        animation-name: focuslabel;
        font-size: .875em;
        line-height: 20px;
        max-height: 20px;
        margin-top: 5px;
        color: var(--bmv-blue);
        z-index: 200;
    }

    .fieldwrapper input.text:focus, .fieldwrapper textarea.text:focus, .fieldwrapper.focus input.text, .fieldwrapper.focus textarea.text {
        outline: none;
        animation-duration: .5s;
        animation-name: focusfield;
        margin-top: -25px;
        border-bottom-color: var(--bmv-blue);
    }

    form .fieldwrapper.fielderror {
        border-radius: 5px;
        margin-top: -5px;
    }

        form .fieldwrapper.fielderror label {
            color: var(--black);
        }

        form .fieldwrapper.fielderror input {
            border-bottom-color: var(--alert-red);
            border-radius: 0px;
        }

    .fieldwrapper.dropdown label.text {
        font-size: .875em;
        line-height: 20px;
        max-height: 20px;
        margin-top: 5px;
        color: var(--black);
    }

    form .text {
        padding-bottom: 20px;
    }

    input.text, textarea.text {
        background: none;
        color: var(--black);
        border-left: 0px;
        border-right: 0px;
        border-top: 0px;
        border-bottom: 3px solid black;
        height: 55px;
        padding-top: 25px;
        border-radius: 0px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 5px;
        flex: 1;
        width: 100%;
        margin: 0px;
        margin-top: -50px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    label.text {
        flex: 1;
        width: 100%;
        font-size: 1em;
        padding-left: 15px;
        padding-right: 15px;
        max-height: 50px;
        line-height: 50px;
        margin: 0px;
    }

    textarea.text {
        height: auto;
        max-height: none;
        min-height: 200px;
    }

    .textarea label.text {
        background: #fff;
    }

    .fieldwrapper:focus-within label.text, .fieldwrapper.focus label.text {
        animation-duration: .5s;
        animation-name: focuslabel;
        font-size: .875em;
        line-height: 20px;
        max-height: 20px;
        margin-top: 5px;
        color: var(--bmv-blue);
        z-index: 200;
    }

    .fieldwrapper input.text:focus, .fieldwrapper textarea.text:focus, .fieldwrapper.focus input.text, .fieldwrapper.focus textarea.text {
        outline: none;
        animation-duration: .5s;
        animation-name: focusfield;
        margin-top: -25px;
        border-bottom-color: var(--bmv-blue);
    }

    .form-control:focus {
        color: inherit;
        background-color: inherit;
        border-color: var(--bmv-blue);
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
    }

    .bg-light .fieldwrapper {
        background-color: var(--white);
    }
    /*#endregion*/

    /*#region Stepper*/
    /* Stepper */
    .product section article {
        align-items: stretch !important;
    }

    .product.no-steps .stepper-content {
        padding-top: 40px;
    }

    .stepper {
        display: flex;
        background: var(--bmv-blue);
        flex: 1 30%;
        flex-wrap: wrap;
        padding: 30px;
        padding-top: 50px;
        padding-bottom: 60px;
        position: relative;
        align-content: flex-start;
        align-items: flex-start;
        border-top-left-radius: 16px;
        border-bottom-left-radius: 16px;
    }

        .stepper .back {
            position: absolute;
            top: 22px;
            left: 14px;
            border-radius: 16px;
            color: #fff;
            padding: 8px 15px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
            /*
.stepper .back:hover {
  background:#142881;
}*/
            .stepper .back i {
                font-size: 20px;
                margin-right: 10px;
            }

    .stepper-content {
        display: flex;
        flex: 1 70%;
        padding: 80px 45px;
        padding-top: 80px;
        position: relative;
        align-items: flex-start;
        flex-wrap: wrap;
        flex-direction: row;
        align-content: flex-start;
        padding-bottom: 70px;
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
        background-color: var(--white);
        border: 1px solid rgba(0,0,0,.125);
        border-left-width: 0;
    }

        .stepper-content h1 {
            display: flex;
            position: relative;
            margin-bottom: 0px;
            margin-top: 0px;
            flex: 0 100%;
        }

        .stepper-content .step-description {
            display: flex;
            flex: 1 100%;
            max-width: 720px;
            margin-top: 0px;
            margin-bottom: 20px;
            color: #000;
            font-size: 1em;
        }

        .stepper-content p {
            margin-top: 0px;
            margin-bottom: 20px;
        }

        .stepper-content .step-wrapper p {
            margin-top: 10px;
            margin-bottom: 10px;
        }


        .stepper-content .action-bar {
            display: flex;
            position: absolute;
            bottom: 0px;
            right: 0px;
            width: 100%;
            height: 60px;
            padding: 20px 45px;
            margin-bottom: 15px;
            justify-content: flex-start;
            align-items: center;
            background: #ffffff;
            border-bottom-right-radius: 16px;
        }

    .stepper h1 {
        color: #fff;
        font-size: 1.5em;
        line-height: 1.1em;
        font-weight: var(--semi);
        flex: 1 100%;
        padding-right: 0px;
        padding-left: 20px;
        margin: 0px;
        margin-bottom: 27px;
        margin-top: 30px;
        position: relative;
    }

    .stepper ol {
        flex: 1 100%;
        list-style: none;
        padding-left: 20px;
        display: flex;
        flex-direction: column;
    }

        .stepper ol li {
            position: relative;
            display: flex;
            flex: 1;
            margin-left: 12px;
            padding-left: 0px;
            justify-content: flex-start;
            align-items: center;
            color: #fff;
            font-size: 1.15em;
            margin-bottom: 30px;
        }

            .stepper ol li .wrapper {
                display: flex;
                position: relative;
                left: -15px;
                height: 56px;
                max-width: 56px;
                min-width: 56px;
                flex: 1;
                font-size: 1.15em;
                font-weight: var(--semi);
                color: #fff;
                background: var(--bmv-blue);
                border-radius: 30px;
                justify-content: center;
                align-items: center;
                border: 3px solid #fff;
            }

            .stepper ol li.active .wrapper {
                height: 56px;
                width: 56px;
                left: -15px;
                border: 0 solid #fff;
                background: var(--bmv-red);
                color: #fff;
                display: flex;
            }

            .stepper ol li.complete .wrapper .stepno {
                display: none;
            }

            .stepper ol li.complete .wrapper::after {
                position: absolute;
                width: 100%;
                text-align: center;
                margin-left: auto;
                margin-right: auto;
                left: 0px;
                right: 0px;
                font-family: "Material Icons";
                content: 'done';
            }

            .stepper ol li.complete .wrapper {
                background: #fff;
                border: 0;
                color: var(--bmv-blue);
            }

            .stepper ol li.last {
                border-left: none !important;
            }

    .stepper-content h2 {
        color: #000;
        padding-top: 0px;
        padding-right: 0px;
        margin: 0px;
        display: flex;
        flex-direction: row;
        flex: 1 100%;
        font-size: 1.5em;
        font-weight: var(--semi);
        align-items: center;
        position: relative;
        line-height: 1.2em;
    }

        .stepper-content h2 .step-number {
            background: var(--bmv-red);
            display: flex;
            flex: 1 40px;
            height: 60px;
            color: #fff;
            border-top-right-radius: 40px;
            border-bottom-right-radius: 40px;
            border-left: 1px solid #fff;
            font-size: 1.5em;
            max-width: 40px;
            margin-left: -30px;
            justify-content: center;
            align-items: center;
            padding-right: 5px;
            padding-bottom: 5px;
            margin-right: 15px;
        }

    .stepper {
        flex: 1 24%;
    }

    .stepper-content {
        flex: 1 65%;
    }

    .stepper-fixed-top {
        position: fixed;
        top: 70px;
    }

    .page-wrapper {
        width: 100%;
        left: 0px;
        right: 0px;
        height: auto;
    }

    .product {
        display: flex;
        flex: 1;
        position: relative;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        flex-direction: row;
    }

        .product section {
            display: flex;
            flex: 1 100%;
            max-width: 1260px;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
        }

            .product section article {
                background: none;
                display: flex;
                flex: 1;
                margin-top: 0;
                max-width: 1260px;
                /*box-shadow:0px 0px 32px 6px rgba(0,0,0,.05);*/
                flex-wrap: wrap;
                flex-direction: row;
                align-items: flex-start;
            }

                .product section article header {
                    display: flex;
                    flex: 1 100%;
                    flex-direction: row;
                    flex-wrap: wrap;
                    justify-content: flex-start;
                    align-items: center;
                    max-height: fit-content;
                    background: var(--bmv-blue);
                    min-height: 60px;
                    padding: 20px 20px 10px 20px;
                    border-top-left-radius: 16px;
                    border-top-right-radius: 16px;
                }

                    .product section article header h1 {
                        color: #fff;
                        padding: 0px;
                        margin: 0px;
                        display: flex;
                        max-height: fit-content;
                        flex: 1;
                        font-size: 1.5em;
                        font-weight: var(--semi);
                        position: relative;
                    }

                        .product section article header h1:before {
                            content: '';
                            position: absolute;
                            left: -10px;
                            top: 0px;
                            width: 24px;
                            height: 24px;
                            clip-path: ellipse(16% 16% at 19% 24%);
                            background: var(--bmv-red);
                            z-index: 0;
                        }

                .product section article .content {
                    display: flex;
                    flex: 1 100%;
                    padding: 0px 30px 20px;
                    align-items: flex-start;
                    flex-direction: row;
                    flex-wrap: wrap;
                }

                    .product section article .content .note {
                        color: #757575;
                    }

        .product .footer {
            display: flex;
            flex: 1 100%;
            background: #fff;
            padding: 10px;
            padding-left: 20px;
            padding-right: 20px;
            border-bottom-left-radius: 16px;
            border-bottom-right-radius: 16px;
            align-items: flex-end;
        }

            .product .footer .cost {
                flex: 0 30%;
                font-size: 1.5em;
                color: #000;
                font-weight: var(--bold);
            }

            .product .footer a.btn-primary {
                margin-top: 0px;
                max-width: none;
                flex: 0 60%;
                margin-left: auto;
                margin-right: 0px;
            }

    .pull-circle:before {
        content: '';
        position: absolute;
        margin-left: -10px;
        top: -5px;
        width: 24px;
        height: 24px;
        clip-path: ellipse(16% 16% at 19% 24%);
        background: var(--bmv-red);
        z-index: 0;
    }

    /*#endregion*/

    /*#region Offcanvas*/
    .offcanvas {
        z-index: 99999;
    }

    .offcanvas-50,
    .offcanvas.offcanvas-50 {
        width: 50%;
    }

    .offcanvas-75,
    .offcanvas.offcanvas-75 {
        width: 75%;
    }

    .offcanvas .offcanvas-header {
        padding: 10px 30px;
        background-color: var(--bmv-blue);
        color: var(--white);
    }

    .offcanvas-title {
        font-weight: bold;
    }

        .offcanvas-title:before {
            content: '';
            position: absolute;
            margin-left: -10px;
            top: 10px;
            width: 24px;
            height: 24px;
            clip-path: ellipse(16% 16% at 19% 24%);
            background: var(--bmv-red);
            z-index: 0;
        }

    .offcanvas-close {
        display: flex;
        flex: 1;
        max-width: fit-content;
        justify-content: flex-end;
        padding-left: 10px;
        padding-right: 5px;
        background: #eaeaea;
        color: #000;
        height: 24px;
        border-radius: 12px;
        align-items: center;
        margin-right: 0px;
        margin-left: auto;
        border: none;
    }

        .offcanvas-close::after {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            content: "\f057";
            width: 16px;
            height: 16px;
            margin-bottom: 6px;
            margin-left: 5px;
            z-index: 1;
        }
    /*#endregion*/

    /*#region Home*/

    .homepage-banner {
        position: relative;
        display: flex;
        width: 100%;
        max-height: 420px;
        overflow: hidden;
        margin-top: -10px;
    }

    .banner-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 500px;
        margin: 30px 0 0 40px;
    }

    .banner-title {
        position: relative;
        font-size: 48px;
        line-height: 51px;
        font-weight: 400;
        color: white;
        margin-bottom: 30px;
    }

        .banner-title::after {
            content: '';
            position: absolute;
            left: -26px;
            top: -14px;
            width: 45px;
            height: 45px;
            clip-path: ellipse(16% 16% at 19% 24%);
            background: var(--bmv-red);
            z-index: 0;
        }

        .banner-title > span {
            font-weight: 700;
        }

    .banner-subtitle {
        font-size: 20px;
        font-weight: 400;
        color: white;
    }

    .home-search {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .home-search > .search-container {
            position: relative;
            z-index: 0;
        }

    input.search-field {
        width: 340px;
        height: 40px;
        padding: 0 20px 0 50px;
        border: 0;
        border-radius: 30px;
        margin: 10px 5px 0 0;
        outline: none;
    }
    .offcanvas .home-search,
    .offcanvas .search-container,
    .offcanvas input.search-field {
        width: 100%;
    }

    .home-search > .search-container::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f002";
        position: absolute;
        top: 18px;
        left: 18px;
        width: 16px;
        height: 16px;
        z-index: 1;
    }

    .home-search > .search-container-offcanvas::after {
        top: 8px;
        left: 45px;
    }

    input.search-field::placeholder {
        font-size: 16px;
    }

    .search-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 130px;
        height: 40px;
        border-radius: 28px;
        color: white;
        font-size: 18px;
        font-weight: 400;
        margin: 10px 10px 0 0;
        background: var(--bmv-red);
    }

    .clip-mask {
        display: flex;
        align-items: flex-start;
        width: 100%;
        height: 300px;
        clip-path: ellipse(83% 103% at 41% -9%);
        background-color: var(--bmv-blue);
        background-repeat: no-repeat;
        background-image: url(../img/header-photo-dk.jpg);
        background-position: 100% 0%;
        z-index: 1;
    }

    .red-swoosh {
        position: absolute;
        right: 0;
        width: 95%;
        height: 300px;
        clip-path: ellipse(76% 62% at 52% 32%);
        background: var(--bmv-red);
        z-index: 0;
    }

    .mask {
        float: right;
        width: 100%;
        max-height: 522px;
        -webkit-clip-path: url(#shape);
        clip-path: url(#shape);
        position: relative;
        -webkit-transform: translateZ(1px)
    }

    .register-ribbon {
        display: flex;
        align-items: center;
        padding: 5px 50px;
    }

    .reg-img-box {
        position: relative;
        width: 178px;
        height: 145px;
        z-index: 0;
    }

    .reg-text-box {
        width: 240px;
        font-weight: 700;
        font-size: 30px;
        line-height: 28px;
        margin: 0 50px;
    }

        .reg-text-box > span {
            font-weight: 600;
            font-size: 22px;
            line-height: 30px;
        }

    .reg-img-box::before {
        content: '';
        position: absolute;
        top: 7px;
        left: 28px;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        background: var(--med-gray);
        box-shadow: 0px 0px 60px 0px rgba(0,0,0, 0.2);
        z-index: 0;
    }

    .reg-img {
        position: absolute;
        z-index: 2;
    }

    a.reg-btn-outline, a.reg-btn-outline:hover {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 44px;
        padding: 0 20px;
        margin: 0 10px;
        border-radius: 24px;
        border: 4px solid var(--bmv-red);
        color: var(--bmv-red);
        font-weight: 600;
    }

    a.reg-btn-solid, a.reg-btn-solid:hover {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 44px;
        padding: 0 20px;
        margin: 0 10px;
        border-radius: 24px;
        font-weight: 600;
        color: white;
        background: var(--bmv-red);
    }

    .title-lrg {
        font-size: 34px;
        font-weight: 700;
        margin: 40px 40px 20px;
        line-height: 36px;
    }

    .content-band-full {
        width: 100%;
        margin: 0;
        background: var(--med-gray);
    }

    /*#endregion*/

    /*#region Tiles*/
    a.tile, button.tile {
        display: block;
        position: relative;
        width: 32%;
        min-height: 230px;
        padding: 30px;
        margin: 20px;
        border-radius: 4px;
        background: white;
        overflow: hidden;
        transition: all .3s ease-in-out;
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: 30%;
        border: 1px solid var(--med-gray);
        text-align: left;
    }

        a.tile::after, button.tile::after {
            content: '';
            position: absolute;
            top: -8px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--bmv-blue);
            transition: all .25s ease-in-out;
        }

        a.tile:hover::after, button.tile:hover::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--bmv-blue);
        }

        a.tile:hover, button.tile:hover {
            text-decoration: none;
            box-shadow: 0px 0px 30px 0px rgba(0,0,0, 0.05);
        }

    .tile-icon {
        position: absolute;
        top: 32px;
        right: 26px;
    }

    a.tile > .title, button.tile > .title {
        max-width: 230px;
        font-size: 24px;
        color: black;
        font-weight: 700;
        line-height: 28px;
        padding: 0 0 15px 0;
    }

        a.tile > .title::after, button.tile > .title::after {
            content: '';
            position: absolute;
            top: 30px;
            left: 10px;
            width: 8px;
            height: 8px;
            border-radius: 100%;
            background: var(--bmv-red);
            opacity: 0;
            transition: all .25s ease-in-out;
        }

    .tile-desciption {
        color: black;
    }

    .tile-row {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    /*#endregion*/

    /*#region Tabs*/

    .tab-content {
        background-color: var(--white);
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        padding: 20px;
    }

    .nav-tabs {
        border-bottom: none;
    }

        .nav-tabs .nav-link {
            margin-bottom: -1px;
            background: 0 0;
            border: 1px solid transparent;
            border-top-left-radius: .25rem;
            border-top-right-radius: .25rem;
        }

            .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
                border-color: #e9ecef #e9ecef #dee2e6;
                isolation: unset;
            }

    .nav-link {
        color: black;
        min-height: 45px;
        width: 140px;
        line-height: 16px;
        min-height: 60px;
        max-width: 120px;
    }

    .nav-item {
        position: relative;
        background-color: white;
        border: var(--med-gray) solid 2px;
        align-content: center;
    }

    .nav-link.active:before {
        content: ' ';
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 3px;
        background: var(--bmv-blue);
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

    .tab-pane {
        display: flex;
    }
    /*#endregion*/

    /*#region myBMV*/
    section.profile {
        display: flex;
        flex-direction: column;
        margin-top: -13px;
        padding: 30px 20px 40px;
        border-radius: 16px 16px 0 0;
        background: white;
    }

        section.profile > .info-tile {
            background: var(--lt-gray);
        }

    .info-tile {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        margin: 15px 0;
        border-radius: 10px
    }

    .status-box {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .status {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        height: 36px;
        width: 100px;
        margin-right: 10px;
        padding: 0 0 0 5px;
        border-radius: 20px;
        background: white;
    }

    .status-info {
        line-height: 0;
        padding: 0 5px;
    }


    .status-icon {
        display: inline-block;
        margin: 0px 6px 0 8px;
    }

    .license-btn-box {
        display: flex;
        justify-content: space-between;
    }

        .license-btn-box > div:nth-child(1) {
            margin-left: 0;
        }

        .license-btn-box > div:nth-child(2) {
            margin-right: 0;
        }

    .license-edit-btn {
        position: relative;
        width: 50%;
        height: 73px;
        margin: 0 8px;
        border-radius: 10px;
        background: #f6f6f6;
        color: var(--bmv-blue);
    }

        .license-edit-btn > div:nth-child(1) {
            padding: 10px 0 0px 20px;
        }

        .license-edit-btn > div:nth-child(2) {
            padding: 0 0 0 20px;
            font-size: 22px;
            font-weight: 600;
        }

        .license-edit-btn::after {
            content: '';
            position: absolute;
            top: 10px;
            right: 10px;
            width: 24px;
            height: 24px;
            /*background: url(../img/SVG/edit-icon.svg) no-repeat;*/
        }

    .btn-box {
        display: flex;
        flex: 1 20%;
        flex-direction: column;
    }
    /*#endregion*/

    /*#region Large Devices*/
    /* Large devices (desktops, less than 1200px) */
    @media (max-width: 1399.98px) {
        a.tile {
            flex-basis: 35%;
            flex-grow: 2;
        }
    }
    /*#endregion*/

    /*#region Medium Devices*/
    /* Medium devices (tablets, less than 992px) */
    @media (max-width: 991.98px) {

        nav.topnav {
            justify-content: flex-start;
            padding-left: 30px;
            padding-right: 30px;
        }

            nav.topnav button.mnavtrigger {
                display: flex;
                position: absolute;
                left: 10px;
                flex: 0 44px;
                justify-content: center;
                align-items: center;
                margin-right: 44px;
                color: var(--black);
            }

            nav.topnav .navblock {
                z-index: 1999;
                display: flex;
                position: fixed;
                top: 0px;
                left: 0px;
                background: var(--white);
                flex: 1;
                height: 100%;
                min-width: 50%;
                max-width: 80%;
                justify-content: flex-start;
                align-items: flex-start;
                flex-wrap: wrap;
                flex-direction: column;
                box-shadow: 1px 1px 2px rgba(0,0,0,.2);
            }

                nav.topnav .navblock.shownav {
                    left: 0px;
                }

                nav.topnav .navblock li.mnavclose {
                    display: flex;
                    height: 44px;
                    flex: 0 44px;
                    margin-top: 20px;
                    justify-content: flex-start;
                    align-items: center;
                    color: var(--black);
                    margin-left: 30px;
                }

                    nav.topnav .navblock li.mnavclose a, nav.topnav .navblock li.mnavclose a:hover {
                        color: #000;
                    }

                nav.topnav .navblock li.item {
                    display: flex;
                    justify-content: flex-start;
                    flex: 1;
                    font-size: 1.125em;
                    margin-left: 60px;
                    margin-right: 60px;
                    padding: 0px;
                    min-width: calc(100% - 140px);
                    align-items: center;
                    max-height: 44px;
                    background: none;
                    border-radius: 22px;
                    padding-left: 20px;
                }

                    nav.topnav .navblock li.item a {
                        justify-content: flex-start;
                    }

                        nav.topnav .navblock li.item a:hover::after {
                            display: none;
                        }

            nav.topnav a.logo {
                display: flex;
                flex: 1 calc(100% - 196px);
                margin-left: 88px;
                justify-content: center;
                align-items: center;
                padding-top: 5px;
                padding-bottom: 5px;
            }

            nav.topnav .rightblock {
                display: flex;
                flex: 0 25%;
                justify-content: space-around;
            }

                nav.topnav .rightblock li.item {
                    flex: 0 44px;
                    height: 44px;
                    min-width: 44px;
                    margin: 0px;
                }

                    nav.topnav .rightblock li.item a:hover {
                        background: none;
                    }

        @keyframes shownav {
            from {
                display: none;
                left: -100vw;
            }

            to {
                display: flex;
                left: 0px;
            }
        }

        @keyframes hidenav {
            from {
                opacity: 1;
                left: 0px;
            }

            to {
                opacity: 0;
                left: -100vw;
            }
        }

        .shownav {
            animation: shownav .5s;
            display: flex !important;
        }

        .hidenav {
            animation: hidenav .5s;
        }

        .hideme {
            display: none !important;
        }

        nav.topnav .navblock {
            width: 100%;
        }

        nav.topnav .rightblock li.item {
            margin: 0px;
        }

        .logo-link-box {
            margin-left: auto;
            margin-right: auto;
        }

        .online-services-home, .logo-divider {
            display: none;
        }

        .online-services-mobile-home {
            display: flex;
            background-color: white;
            width: 100%;
            justify-content: center;
            height: 24px;
            position: fixed;
            top: 0px;
            /*z-index: 9999;*/
            z-index: 997;
            color: #700017;
            font-size: 20px;
        }

        nav.topnav {
            height: 50px;
            padding: 0;
        }

        .logo {
            padding-bottom: 5px;
        }

        .header-fixed + * {
            margin-top: 75px; /*141px;  91px;  49px;*/
        }

        .online-services-mobile-home + * {
            /* This needs to be the combined height of header-fixed and online-services-mobile-home*/
            margin-top: 99px; /*74px;*/
        }

        nav.topnav button.mnavtrigger {
            position: unset;
            margin-left: 10px;
            margin-right: unset;
            flex-basis: 15%;
        }

            nav.topnav button.mnavtrigger .material-icons {
                margin-right: auto;
            }

        nav.topnav a.logo {
            display: flex;
            flex: 1 calc(100% - 196px);
            margin-left: auto;
            margin-right: auto;
            justify-content: center;
            align-items: center;
        }

        a.tile {
            display: block;
            position: relative;
            width: 32%;
            min-height: 210px;
            padding: 30px;
            margin: 10px;
            text-decoration: none;
            border-radius: 4px;
            background: white;
            overflow: hidden;
            transition: all .3s ease-in-out;
            flex-grow: 2;
            flex-shrink: 0;
            flex-basis: 50%;
        }

        .tab-content {
            width: 100%;
        }

        /*#region Offcanvas*/
        .offcanvas-50,
        .offcanvas.offcanvas-50 {
            width: 100%;
        }

        .offcanvas-75,
        .offcanvas.offcanvas-75 {
            width: 100%;
        }
        /*#endregion*/
    }
    /*#endregion*/

    /*#region Small Devices*/
    /* Small devices (landscape phones, less than 768px) */
    @media (max-width: 767.98px) {
        /*#region Home Page*/
        a.tile {
            display: block;
            position: relative;
            width: 32%;
            min-height: 210px;
            padding: 30px;
            margin: 10px;
            text-decoration: none;
            border-radius: 4px;
            background: white;
            overflow: hidden;
            transition: all .3s ease-in-out;
            flex-grow: 2;
            flex-shrink: 0;
            flex-basis: 50%;
        }

        .tile-icon {
            position: absolute;
            top: 26px;
            right: 20px;
            transform: scale(0.8);
        }


        .homepage-banner {
            position: relative;
            display: flex;
            width: 100%;
            max-height: 375px;
            overflow: hidden;
        }

        .clip-mask {
            display: flex;
            align-items: flex-start;
            width: 100%;
            height: 400px;
            clip-path: ellipse(106% 98% at 36% -7%);
            background-color: var(--bmv-blue);
            background-repeat: no-repeat;
            background-image: url(../img/header-photo-dk.jpg);
            background-position: 100% 25%;
            z-index: 1;
        }

        .red-swoosh {
            position: absolute;
            right: 0;
            width: 95%;
            height: 460px;
            clip-path: ellipse(107% 48% at 55% 32%);
            background: var(--bmv-red);
            z-index: 0;
        }

        .register-ribbon {
            padding-left: 0px;
            padding-right: 0px;
            justify-content: center;
        }

        .reg-img-box {
            flex: 1 calc(50% - 154px);
            width: inherit;
            max-width: 178px;
        }

        .reg-text-box {
            flex: 1 calc(50% - 154px);
            width: inherit;
            margin: 0px;
            margin-left: 15px;
            font-size: 24px;
            max-width: 204px;
        }

        a.reg-btn-outline {
            flex: 1;
            max-width: 154px;
            min-width: 154px;
        }
        /*#endregion*/

        /*#region Card*/
        .container, .container-lg {
            padding: 0;
        }

        .card-header {
            border-radius: 0 !important;
            height: 60px;
        }

        .card-body {
            padding: 10px 20px;
        }

        /*#endregion*/
        /*#region Stepper*/
        .product {
            padding: 0px;
            margin: 0px;
        }

            .product section article {
                align-items: center;
            }

        .stepper {
            flex: 1 100%;
            border-radius: 0 !important;
            padding-bottom: 0px;
            padding-left: 15px;
            padding-right: 15px;
            justify-content: center;
            position: relative;
        }

        .stepper-content {
            flex: 1;
            padding: 30px 20px 120px 20px;
            margin: 0 auto;
        }

        .stepper ol {
            flex-direction: row;
            padding-bottom: 0px;
            margin-top: 30px;
            margin-bottom: 0px;
            padding-left: 0px;
            padding-right: 0px;
            flex: 0 90%;
            justify-content: center;
        }

        .stepper .stepname {
            display: none;
        }

        .stepper ol li {
            flex: 1;
            display: flex;
            padding: 0px;
            padding-bottom: 0px;
            border-left: none;
            justify-content: flex-start;
            flex-direction: row;
            margin-left: 0px;
            margin-top: 0px;
            margin-right: 0px;
            padding-top: 0px;
            border-top: 3px solid var(--lt-blue);
        }

            .stepper ol li.complete {
                border-color: #b8c7f5;
            }

            .stepper ol li:last-child {
                max-width: 24px;
            }

            .stepper ol li span {
                margin: 0px;
                display: flex;
                flex: 1;
            }

        .stepper h1 {
            font-size: 28px;
            padding: 0 20px;
            margin-bottom: 0px;
        }

        .stepper ol li .wrapper {
            display: flex;
            border-radius: 13px;
            max-width: 24px;
            min-width: unset;
            max-height: 24px;
            left: auto;
            font-size: 1.25em;
            border: 5px solid var(--lt-blue);
            margin-top: -12px;
            background: var(--bmv-blue);
        }

        .stepper .wrapper .stepno {
            display: none;
        }

        .stepper ol li.complete .wrapper:after {
            font-size: 16px;
        }

        .stepper ol li.active .wrapper {
            display: flex;
            border-radius: 13px;
            max-width: 24px;
            max-height: 24px;
            left: auto;
            color: #fff;
            font-weight: var(--bold);
            border: 5px solid var(--lt-blue);
            background: white;
            font-size: 1.25em;
        }

        .stepper .expander {
            display: block;
            width: 100%;
            height: 20px;
            position: relative;
            margin-left: auto;
            margin-right: auto;
            align-items: center;
            align-content: center;
            justify-content: center;
        }

        .stepper ol.expanded .expander {
            display: flex;
            border: none;
            height: fit-content;
        }

        .stepper .expander .wrapper {
            background: var(--lt-blue);
            color: #fff;
            border: 0;
            left: 0;
            right: 0;
            display: flex;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            align-content: center;
            width: 40px;
            height: 40px;
            margin: 0 auto;
            position: relative;
            z-index: 300;
        }

            .stepper .expander .wrapper:after {
                display: flex;
                flex: 1;
                font-family: "Material Icons";
                content: "expand_more";
                position: absolute;
            }

        .stepper .expander.twist .wrapper:after {
            content: "expand_less";
        }

        .stepper-content h2 {
            padding: 0 10px;
        }

        .stepper-content .step-description {
            padding: 0 10px;
        }

        .stepper-content h2 .step-number {
            display: none;
        }

        .stepper-content .action-bar {
            position: fixed;
            border-radius: 0px;
            left: 0px;
            bottom: 0px;
            margin-bottom: 0;
            width: 100%;
            z-index: 1800;
            padding: 5px 30px;
            height: fit-content;
            align-items: flex-start;
            align-content: flex-start;
            flex-wrap: wrap;
            flex-direction: row;
        }

            .stepper-content .action-bar a {
                flex: 1 100%;
                flex-basis: 40%;
                display: flex;
                max-width: none;
            }

        .stepper ol.expanded {
            flex-wrap: wrap;
            flex-direction: column;
        }

            .stepper ol.expanded li {
                display: flex;
                flex: 1 100%;
                justify-content: flex-start;
                border: none;
            }

                .stepper ol.expanded li .wrapper .stepno {
                    display: flex;
                    justify-content: center;
                }

                .stepper ol.expanded li .stepname {
                    display: flex;
                    flex: 1 100%;
                }

                .stepper ol.expanded li:last-child {
                    max-width: none;
                }

        .stepper ol.expanded {
            padding-left: 10px;
            padding-right: 10px;
        }

            .stepper ol.expanded li {
                position: relative;
                display: flex;
                flex: 1;
                margin-left: 12px;
                padding-left: 36px;
                justify-content: flex-start;
                align-items: center;
                align-content: center;
                color: #fff;
                padding-bottom: 10px;
                flex-direction: row;
            }

                .stepper ol.expanded li .wrapper {
                    display: flex;
                    position: absolute;
                    left: -16px;
                    height: 35px;
                    width: 35px;
                    flex: 1;
                    /* border:3px solid #fff; */
                    border-radius: 18px;
                    justify-content: center;
                    align-items: center;
                    max-width: none;
                    max-height: none;
                    margin-top: 0px;
                    font-size: 1em;
                }

                .stepper ol.expanded li .stepno {
                    display: flex;
                    flex: 1 100%;
                    justify-content: center;
                }

                .stepper ol.expanded li.active .wrapper {
                    height: 35px;
                    width: 35px;
                    left: -18px;
                    border: 0px solid #fff;
                    background: var(--bmv-red);
                    color: #fff;
                    display: flex;
                }

                .stepper ol.expanded li.complete .stepno {
                    display: none;
                }

        /* End Product Stepper */
        /*#endregion*/
    }


    /*#endregion*/

    /*#region X-Small Devices*/
    /* X-Small devices (portrait phones, less than 576px) */
    @media (max-width: 575.98px) {
        /*#region Home Page*/
        .homepage-banner {
            position: relative;
            display: flex;
            width: 100%;
            max-height: 365px;
            margin-bottom: 0px;
            overflow: hidden;
        }

        .banner-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 100%;
            height: 275px;
            margin: 40px 0 0 0;
            text-align: center;
        }

        .banner-title {
            position: relative;
            font-size: 36px;
            line-height: 36px;
            font-weight: 400;
            color: white;
            margin-bottom: 10px;
        }

            .banner-title::before {
                content: '';
                position: absolute;
                left: 0px;
                top: -10px;
                width: 35px;
                height: 35px;
                clip-path: ellipse(16% 16% at 19% 24%);
                background: var(--bmv-red);
                z-index: 0;
            }

            .banner-title::after {
                display: none;
            }

        .license-edit-btn {
            height: unset
        }

        .home-search {
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: flex-start;
        }

        input.search-field {
            width: 300px;
            height: 40px;
            padding: 0 20px 0 50px;
            border: 0;
            border-radius: 30px;
            margin: 10px 5px 0 0;
            outline: none;
        }
        .offcanvas .home-search,
        .offcanvas .search-container,
        .offcanvas input.search-field {
            width: 100%;
        }

        .search-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 115px;
            height: 40px;
            border-radius: 28px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin: 20px 10px 0 0;
            background: var(--bmv-red);
        }

        .clip-mask {
            display: flex;
            align-items: flex-start;
            width: 100%;
            height: 400px;
            clip-path: ellipse(116% 87% at 46% -9%);
            background: var(--bmv-blue);
            z-index: 1;
        }

        .red-swoosh {
            position: absolute;
            right: 0;
            width: 100%;
            height: 396px;
            clip-path: ellipse(111% 60% at 26% 23%);
            background: var(--bmv-red);
            z-index: 0;
        }

        .title-lrg {
            font-size: 32px;
            font-weight: 700;
            margin: 40px 30px 20px;
            line-height: 32px;
        }

        a.tile {
            display: block;
            position: relative;
            width: 40%;
            min-height: 210px;
            padding: 30px;
            margin: 10px 0;
            border-radius: 4px;
            background: white;
            overflow: hidden;
            transition: all .3s ease-in-out;
            flex-grow: 2;
            flex-shrink: 0;
            flex-basis: 60%;
        }

        .content-band-full {
            width: calc(100% - 40px);
            margin: 30px 20px;
        }

        .register-ribbon {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 30px 0;
        }

        .reg-img-box {
            position: relative;
            width: 178px;
            height: 145px;
            z-index: 0;
            flex: none;
        }

        .reg-text-box {
            width: 240px;
            font-weight: 700;
            font-size: 24px;
            line-height: 23px;
            margin: 12px 0px;
            text-align: center;
        }

            .reg-text-box > span {
                font-size: 19px;
                line-height: 27px;
            }

        a.reg-btn-outline, a.reg-btn-outline:hover {
            width: auto;
            flex: 1 44px;
        }
        /*#endregion*/
    }
    /*#endregion*/

    @media (max-width: 480px) {
        nav.topnav .rightblock li.item {
            height: 34px;
            flex: 0 34px;
            min-width: 34px;
        }
    }

.button-body {
    justify-content: space-between;
    gap: .5rem;
    display: flex;
}

@media(max-width: 767.98px){
    .button-body {
        justify-content: center;
        gap: .5rem;
        display: grid;
    }
}