:root {
    /* Type */
    --type-primary: #323130;
    --type-secondary: #605E5C;
    --type-disabled: #A19F9D;
    /* Dividers & Borders */
    --body-divider: #EDEBE9;
    --input-border: #8A8886;
    --input-hover-border: #323130;
    /* Theme */
    --theme-primary: #0078D4;
    --theme-lighter-alt: #EFF6FC;
    --theme-lighter: #DEECF9;
    --theme-light: #C7E0F4;
    --theme-tertiary: #2B88D8;
    --theme-dark-alt: #106EBE;
    --theme-dark: #005A9E;
    --theme-darker: #004578;
    --theme-30dtli-light: #D59DFF;
    --theme-30dtli-dark: #3B2E59;
    /*    Errors & Status*/
    --status-error: #A80000;
    --status-success: #107C10;
    /* Overlays */
    --overlay-light: #FFFFFF66;
    --overlay-dark: #00000066;
    /* Greys */
    --white: #ffffff;
    --grey10: #FAF9F8;
    --grey20: #F3F2F1;
    --grey30: #EDEBE9;
    --grey40: #E1DFDD;
    --grey50: #D2D0CE;
    --grey60: #C8C6C4;
    --grey90: #A19F9D;
    --grey110: #8A8886;
    --grey130: #605E5C;
    --grey150: #3B3A39;
    --grey160: #323130;
    --grey190: #201F1E;
    /* Card Box Shadows */
    --depth-4: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
    --depth-8: 0px 0.6px 1.8px rgba(0, 0, 0, 0.1), 0px 3.2px 7.2px rgba(0, 0, 0, 0.13);
    --depth-16: 0px 1.2px 3.6px rgba(0, 0, 0, 0.1), 0px 6.4px 14.4px rgba(0, 0, 0, 0.13);
    --depth-64: 0px 4.8px 14.4px rgba(0, 0, 0, 0.18), 0px 25.6px 57.6px rgba(0, 0, 0, 0.22);
    /* Font Stack */
    --segoe-ui: Segoe UI,SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* A11y contrast pass = primary over white or theme-dark-alt over grey20  */

/* HTML & Body */

html {
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    
}

body {
    background: white;
    font-family: Segoe UI,SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    line-height: 1.5rem;
    color: var(--type-primary);
    font-size: 1rem;
    overflow-x: hidden;
}

.body-bg-top {
    background-image: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/bg-home-top.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.body-bg-bottom {
    background-image: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/bg-home-bottom-v2.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-grey {
    background-color: var(--grey10);
}

.bg-light-grey {
    background-color: var(--grey10);
}



.bg-grey-home {
    background-color: #eeeeee;
}

.bg-blue-light-alt {
    background-color: var(--theme-lighter-alt);
}

.bg-blue-light {
    background-color: var(--theme-dark);
}

.bg-blue-darker {
    background-color: var(--theme-darker);
}

.status-error {
    color: var(--status-error);
}

.bg-blogs-events {
    background-color: var(--grey10);
}

/* Type */

p {
    /* font-size: 1rem; */
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6, .hero-title, .greeting-title, .page-title, .pane-header, .header, .subject-title {
    margin: 0 0 1rem 0;
    font-family: Segoe UI,SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 2.625rem;
    line-height: 3.25rem;
}

h2 {
    font-size: 2rem;
    line-height: 2.5rem;
}

h3 {
    font-size: 1.75rem;
    line-height: 2.25rem;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

h5 {
    font-size: 1.125rem;
    line-height: 1.5rem;
}

h6 {
    font-size: 1rem;
    line-height: 1.375rem;
}

.hero-title {
    font-size: 2.625rem;
    line-height: 3.25rem;
}

.greeting-title {
    font-size: 2rem;
    line-height: 2.5rem;
}

.page-title {
    font-size: 1.75rem;
    line-height: 2.25rem;
}

.pane-header {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.header {
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.subject-title {
    font-size: 1rem;
    line-height: 1.375rem;
}

small, .text_small {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-caps {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: .175rem;
    text-transform: uppercase;
}

.fw-600 {
    font-weight:600;
}

/* Links */
a {
    color: var(--theme-dark-alt);
    transition: all 200ms ease-in-out;
    text-decoration: underline;
    font-weight: 600;
}

    a:hover {
        color: var(--theme-dark-alt);
    }

    a:visited {
        color: var(--theme-dark-alt);
    }

.hero a:visited {
    color: white;
}

a.cardLink {
    color: var(--type-primary);
    text-decoration:none;
    font-weight:400;
}

a.card-title {
    color: var(--theme-primary);
    transition: all 200ms ease-in-out;
    text-decoration: none;
    font-weight: 600;
}

    a.card-title:hover {
        color: var(--theme-dark-alt);
        text-decoration: underline;
    }

    a.card-title:visited {
        color: var(--theme-primary);
    }

/* Hero */

.hero {
    background-color: transparent;
    min-height: 449px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .25s linear;
}

.hero-code-to-cloud {
    background-image: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/hero-code-to-cloud-v2.jpg");
    background-position: left center;
    background-size: cover;
}

.hero-dev-home {
    background-image: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/hero-dev-home.png");
    background-position: center top;
    background-size: cover;
}

.hero-events {
    background-image: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/hero-events-v3.jpg");
    background-position: center center;
    background-size: cover;
    min-height:330px;
}

.hero-blogs {
    background-image: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/hero-blogs-v3.jpg");
    background-position: center center;
    background-size: cover;
    min-height: 330px;
}


/* Cards */

    .card {
    background: white;
    box-shadow: var(--depth-4);
    border-radius: 12px;
    border: 0;
    transition: all 200ms ease-in-out;
}

    .card:hover {
        box-shadow: var(--depth-16);
        border: 0;
    }

.card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 0px solid rgba(0, 0, 0, 0);
}

    .card-header:first-child {
        border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
    }

.card-body {
    padding: 1.5rem;
}

.card-footer, .card-footer:last-child {
    padding: 1.5rem;
    color: var(--bs-card-cap-color);
    background-color: var(--white);
    border-top: 0;
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}

.card-img-top {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card-img-bottom {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.border-radius-24 {
    border-radius:24px;
}

.card-bg-grey {
    background-color: #f2f2f2;
}

.scrolling-wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}

/* Card Images */

.learn-card.lazyloaded {
    background-image: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/card-learn-bg.png");
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

.tools-card.lazyloaded {
    background-image: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/card-tools-bg.png");
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

.resources-card.lazyloaded {
    background-image: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/card-resources-bg.png");
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.build-card.lazyloaded {
    background-image: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/hero-build.jpg");
    background-position: 15% center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 24px;
    background-color: var(--grey190);
}

.home-three-column-card-height {
    min-height: 242px;
    transition: all 200ms ease-in-out;
}

/* Buttons */

.btn:focus {
    box-shadow: 0 0 0 0px rgb(0 0 0);
}

.btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 200ms ease-in-out;
}

    .btn:hover {
        text-decoration: underline;
    }

.btn-primary {
    color: white;
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    padding: 8px 20px;
    position: relative;
    border: 2px solid transparent;
    outline: 1px solid transparent;
    outline-offset: -3px;
    max-width: fit-content;
    display: inline-flex;
    overflow: hidden;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: 0 4px 8px 0 transparent;
}

    .btn-primary:hover, .btn-primary:active {
        color: white;
        background-color: var(--theme-dark);
        border-color: var(--theme-dark);
        text-decoration: none;
    }

    .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        color: white;
        background-color: var(--theme-dark);
        border-color: var(--theme-dark);
        box-shadow: 0 0 0 0px rgb(0 0 0);
    }

    .btn-primary:focus, .btn-primary:active:focus {
        color: white;
        background-color: var(--theme-dark);
        border-color: var(--theme-dark);
        box-shadow: 0 0 0 0px rgb(0 0 0);
        outline: 0.1875rem dotted;
        outline-offset: -0.375rem;
    }

    .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
        box-shadow: 0 0 0 0rem rgb(38 143 255 / 50%);
    }

    .btn-primary:visited {
        color: white;
    }

.btn-link {
    border-radius: 0;
    padding: 8px 0;
    color: var(--theme-dark-alt);
    text-decoration: none;
    max-width: fit-content;
    display: inline-flex;
    text-align: left;
}

    .btn-link:after {
        content: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/chevron-blue.svg");
        margin-left: .5rem;
        margin-right: .5rem;
        transition: all 200ms ease-in-out;
    }

    .btn-link:hover {
        color: var(--theme-dark-alt);
    }

        .btn-link:hover::after {
            content: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/chevron-blue.svg");
            margin-left: .75rem;
        }

    .btn-link:focus {
        outline: 0.1875rem dotted currentColor;
    }

.btn-link-hero {
    border-radius: 0;
    padding: 8px 0;
    color: #ffffff;
    text-decoration: none;
}

    .btn-link-hero:after {
        content: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/css/img/chevron-white.svg");
        margin-left: .5rem;
        transition: all 200ms ease-in-out;
    }


    .btn-link-hero:hover {
        color: #ffffff;
    }

        .btn-link-hero:hover::after {
            content: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://app-30dtli-pubdev.azurewebsites.net/offers/img/chevron-white.svg");
            margin-left: .75rem;
        }

    .btn-link-hero:focus {
        /* box-shadow: 0 0 0 2px #ffffff;
        background-color: #2A2140; */
        outline: 0.1875rem dotted currentColor;
    }

.btn-next {
    color: white;
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    padding: 8px 20px;
    position: relative;
    border: 2px solid transparent;
    outline: 1px solid transparent;
    outline-offset: -3px;
    max-width: 100%;
    display: inline-flex;
    overflow: hidden;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: 0 4px 8px 0 transparent;
}

    .btn-next:after {
        content: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/css/img/chevron-white.svg");
        margin-left: 1rem;
    }

    .btn-next:hover, .btn-next:active {
        color: white;
        background-color: var(--theme-dark);
        border-color: var(--theme-dark);
        text-decoration: none;
    }

    .btn-next:not(:disabled):not(.disabled).active, .btn-next:not(:disabled):not(.disabled):active, .show > .btn-next.dropdown-toggle {
        color: white;
        background-color: var(--theme-dark);
        border-color: var(--theme-dark);
        box-shadow: 0 0 0 0px rgb(0 0 0);
    }

    .btn-next:focus, .btn-next:active:focus {
        color: white;
        background-color: var(--theme-dark);
        border-color: var(--theme-dark);
        box-shadow: 0 0 0 0px rgb(0 0 0);
        outline: 0.1875rem dotted;
        outline-offset: -0.375rem;
    }

    .btn-next:not(:disabled):not(.disabled).active:focus, .btn-next:not(:disabled):not(.disabled):active:focus, .show > .btn-next.dropdown-toggle:focus {
        box-shadow: 0 0 0 0rem rgb(38 143 255 / 50%);
    }

    .btn-next:visited {
        color: white;
    }

.btn-back {
    color: var(--theme-primary);
    background-color: white;
    border-color: white;
    padding: 9px 20px;
    position: relative;
    border: 1px solid var(--theme-primary);
    outline: 1px solid transparent;
    outline-offset: -3px;
    max-width: 100%;
    display: inline-flex;
    overflow: hidden;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: 0 4px 8px 0 transparent;
}

    .btn-back:hover, .btn-back:active {
        color: var(--theme-primary);
        background-color: var(--grey20);
        border-color: var(--theme-dark);
        text-decoration: none;
    }

    .btn-back:not(:disabled):not(.disabled).active, .btn-back:not(:disabled):not(.disabled):active, .show > .btn-back.dropdown-toggle {
        color: var(--theme-primary);
        background-color: var(--grey10);
        border-color: var(--theme-dark);
        box-shadow: 0 0 0 0px rgb(0 0 0);
    }

    .btn-back:focus, .btn-back:active:focus {
        color: var(--theme-primary);
        background-color: var(--grey20);
        border-color: var(--theme-dark);
        box-shadow: 0 0 0 0px rgb(0 0 0);
        outline: 0.1875rem dotted;
        outline-offset: -0.375rem;
    }

    .btn-back:not(:disabled):not(.disabled).active:focus, .btn-back:not(:disabled):not(.disabled):active:focus, .show > .btn-back.dropdown-toggle:focus {
        box-shadow: 0 0 0 0rem rgb(38 143 255 / 50%);
    }

    .btn-back:visited {
        color: var(--theme-primary);
    }

/* Form */

label {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: .5rem;
}

legend {
    margin-bottom: 0rem;
    font-size: 1rem;
    font-weight: 600;
}

.danger {
    color: var(--status-error);
}

.required-label {
    color: var(--status-error);
    font-size: 1.125rem;
    font-weight: 600;
}

.required-field {
    color: var(--type-primary);
}

    .required-field::after {
        content: '*';
        color: var(--status-error);
        margin-left: .25rem;
        font-size: 1.125rem;
    }

input.req + span::after,
select.req + span::after {
    display: inline-block;
    content: "*";
    color: var(--type-primary);
    font-size: 19px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
}

.form-control {
    font-size: 1rem;
    color: var(--grey190);
    background-color: #fff;
    border: 1px solid var(--grey110);
    transition: all 200ms ease-in-out;
}

    .form-control:hover {
        color: var(--grey190);
        background-color: #fff;
        border: 1px solid var(--grey160);
        box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
    }

    .form-control:focus {
        color: var(--grey190);
        background-color: #fff;
        border: 1px solid var(--theme-primary);
        box-shadow: 0 0 0 1px var(--theme-primary);
    }

    .form-control:invalid {
        color: var(--grey190);
        background-color: #fff;
        border: 2px solid var(--status-error);
        box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
    }

.form-control-lg {
    padding: 1rem;
}

.form-text {
    color: var(--type-primary);
}

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid var(--grey190);
    transition: all 200ms ease-out;
    margin-right: 1rem;
    position: relative;
    background-color: white;
}

    input[type="radio"]:checked {
        border: 1px solid var(--theme-primary);
        background-color: var(--theme-primary);
        outline: 3.5px solid white;
        outline-offset: -4.5px;
    }

    input[type="radio"]:hover {
        border: 1px solid var(--grey190);
        background-color: var(--grey190);
        outline: 3.5px solid white;
        outline-offset: -4.5px;
    }

    input[type="radio"]:focus {
        border: 1px solid var(--grey190);
        background-color: var(--grey190);
        outline: 3.5px solid white;
        outline-offset: -4.5px;
    }

        input[type="radio"]:focus::after {
            content: '';
            position: absolute;
            outline: 2px dotted var(--input-border);
            width: 24px;
            height: 24px;
            left: -3.25px;
            top: -3px;
            border-radius: 50%;
        }


.form-check-input {
    margin-top: 0;
}

    .form-check-input:checked[type=radio] {
        background-image: none;
    }

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 10%;
    min-width: 1.25rem;
    height: 1.25rem;
    border: 1px solid var(--grey190);
    transition: all 200ms ease-out;
    margin-right: 1rem;
    background-color: white;
    position: relative;
}

    input[type="checkbox"]:checked {
        border: 1px solid var(--theme-primary);
        background-color: var(--theme-primary);
        outline: 3.5px solid white;
        outline-offset: -4.5px;
    }

.form-check-input:checked[type=checkbox] {
    background-image: none;
}

input[type="checkbox"]:hover {
    border: 1px solid var(--grey190);
    background-color: var(--grey190);
    outline: 3.5px solid white;
    outline-offset: -4.5px;
}


.form-check-input:focus {
    box-shadow: 0 0 0 0rem rgb(13 110 253 / 0%);
    margin-top: 0;
    filter: brightness(100%);
    outline: 3.5px solid white;
    outline-offset: -4.5px;
}

input[type="checkbox"]:focus::after {
    content: '';
    position: absolute;
    outline: 2px dotted var(--input-border);
    width: 1.5rem;
    height: 1.5rem;
    left: -0.140625rem;
    top: -0.171875rem;
    border-radius: 10%;
}

.input-validation-error {
    color: var(--grey190);
    background-color: #fff;
    border: 2px solid var(--status-error);
    box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
}

.field-validation-error {
    padding-top: .5rem;
}



.container {
    max-width: 1390px;
}

.break {
    opacity: 1;
}

    .break::after {
        content: '\a';
        white-space: pre;
    }


/*Accordions*/

.accordion-button {
    font-size: 1.25rem;
    color: var(--type-primary);
    font-weight: 600;

}

    .accordion-button:focus {
        z-index: 3;
        border-color: var(--bs-accordion-btn-focus-border-color);
        outline: 0;
    }

    .accordion-button:not(.collapsed) {
        color: var(--theme-primary);
        background-color: transparent;
    }

/*Cards*/

.blog-description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.event-description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* UHF */
.c-uhff {
    margin-top: 0px !important;
}

.c-uhf-menu button:after {
    padding-top: 0px !important;
}

.context-uhf a:link, .context-uhf a:focus, .context-uhf a:hover, .context-uhf a:active, .context-uhf a:visited {
    font-weight: 400!important;
}

/* Pagination */

.skip-link {
    /* not including a focus style for this */ 
    white-space: nowrap;
    margin: 1em auto;
    top: 0;
    position: fixed;
    left: 50%;
    margin-left: -72px;
    opacity: 0;
}

.pagination {
    --bs-pagination-border-width: 0px;
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.25rem;
    cursor: pointer;
}

.page-link {
    font-size: 1rem;
    font-weight:400;
    color: var(--type-primary);
    text-decoration: none;
    background-color: transparent;
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .page-link:hover {
        color: var(--theme-primary);
        background-color: transparent;
        border-color: transparent;
        text-decoration: underline;
    }

    .page-link:focus {
        background-color: transparent;
        box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
        border: 0;
        border-radius: 8px;
        outline: 0.1875rem dotted;
        outline-offset: -0.25rem;
    }

    .active > .page-link, .page-link.active {
        z-index: 3;
        color: white;
        background-color: var(--theme-primary);
        border-color: var(--theme-primary);
        border-radius:8px;
    }


    .page-item:first-child .page-link {
        color: var(--theme-primary);
        text-decoration: none;
        border-radius: 8px;
    }

.page-item:last-child .page-link {
    color: var(--theme-primary);
    text-decoration: none;
    border-radius: 8px;
}

/*404*/

.four-o-four {
    background-color: #f2f2f2;
    min-height: calc(100vh - 126px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-grey-light {
    background-color: #f2f2f2;
}

/* Video */

.background-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.video-hero {
    position: relative;
    overflow: hidden;
    min-height: 449px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    transition: all .25s linear;
    z-index: 2;
}

    .video-hero::after {
        content: "";
        position: absolute;
        bottom: 0;
        background: rgb(238,238,238);
        background: linear-gradient(180deg, rgba(238,238,238,0) 70%, rgba(238,238,238,1) 100%);
        width:100%;
        height:100%;
        z-index: 1;
    }

.background-video-content {
    position: relative;
    z-index: 1;
}

video[poster] {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Misc Adjustments */

.azure-static-icon-height {
    margin-top: 14px;
    transition: all 200ms ease-in-out;
}

.locale-page-height {
    min-height: calc(100vh - 126px);
}

/* Media Queries */

@media (max-width: 576px) {
    .home-hero-mobile {
        padding-top: 5rem;
    }
    .padding-x-collapse {
        padding-left: 0px;
        padding-right: 0px;
    }
    .padding-end-collapse {
        padding-right: 0px;
    }
    .border-radius-collapse {
        border-radius: 0px !important;
    }
    .scroll-row {
        flex-wrap: unset;
        overflow-x: scroll;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        padding-bottom: 1rem;
    }
    .body, html {
        overflow-x:hidden;
    }
    .home-three-column-card-height {
        min-height: 0;
    }
    .build-card.lazyloaded {
        background-image: url("/p/aHR0cHM6Ly93ZWIuYXJjaGl2ZS5vcmc/web/20230606184240im_/https://developer.microsoft.com/_devcom/images/hero-build-mobile.jpg");
        background-position: center center;
        min-height: 570px;
    }
    .build-card-mobile {
        justify-content: start;
    }
    .azure-static-icon-height {
        margin-top:0px;
    }
    .video-hero {
        justify-content: end;
    }
}

/* High Contrast Mode Accessibility fixes */
/* Only works on IE10, IE11 and Edge browsers */
@media screen and (-ms-high-contrast: active) {
    li.active > a.page-link:focus, li.active > a.page-link { /*  pagination - focus on active page link  */
        outline: 3px solid transparent;
    }

    svg {
        fill: currentColor;
    }

    .accordion-button {
        --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
}
/*
     FILE ARCHIVED ON 18:42:40 Jun 06, 2023 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 14:28:45 Aug 03, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.606
  exclusion.robots: 0.063
  exclusion.robots.policy: 0.05
  esindex: 0.012
  cdx.remote: 9.844
  LoadShardBlock: 192.91 (3)
  PetaboxLoader3.datanode: 124.639 (4)
  PetaboxLoader3.resolve: 361.523 (2)
  load_resource: 316.267
*/