:root {
    --darkBrand: #00243D;
    --lightBrand: #42B0D5;
    --lightestBrand: #FFFFFF;
    --linkBrand: #0073AB;
    --functionalLightGrey: #F7F7F7;
    --borderColor: #DBDBDB;
    --textColor: #141414;
}

/* MAERSK FONTS */

@font-face {
    font-family: "MaerskHeadline-Regular";
    src: url('../../Content/fonts/MaerskHeadline-Regular.woff') format('woff');
}

@font-face {
    font-family: "MaerskHeadline-Light";
    src: url('../../Content/fonts/MaerskHeadline-Light.woff') format('woff');
}

@font-face {
    font-family: "MaerskText-Bold";
    src: url('../../Content/fonts/MaerskText-Bold.woff') format('woff');
}

@font-face {
    font-family: "MaerskText-Regular";
    src: url('../../Content/fonts//MaerskText-Regular.woff') format('woff');
}

h1 {
    font-family: "MaerskHeadline-Light", Arial, Helvetica, sans-serif;
    font-size: 50px;
}

h2 {
    font-family: "MaerskHeadline-Light", Arial, Helvetica, sans-serif;
    font-size: 40px;
}

h3 {
    font-family: "MaerskHeadline-Regular", Arial, Helvetica, sans-serif;
    font-size: 26px;
}

h4 {
    font-family: "MaerskHeadline-Regular", Arial, Helvetica, sans-serif;
    font-size: 20px;
}

h5 {
    font-family: "MaerskText-Bold", Arial, Helvetica, sans-serif;
    font-size: 16px;
}

p {
    font-family: "MaerskText-Regular", Arial, Helvetica, sans-serif;
    font-size: 16px;
}
/* END MAERSK TYPE RAMP */
body {
    padding: 0;
    margin: 0;
    font-family: 'MaerskText-Regular', Arial, Helvetica, sans-serif;
    color: var(--textColor);
}

.content-header {
    width: 100vw;
    padding: 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--borderColor);
}

    .content-header h1 {
        margin-left: 8px;
    }

.featured {
    padding: 12px 24px;
    border-bottom: 1px solid var(--borderColor);
}

.help-page a {
    color: var(--linkBrand);
    text-decoration: none;
    font-family: 'MaerskText-Regular', Arial, Helvetica, sans-serif;
}

.help-page--NavigationBack a {
    color: var(--textColor);
}

    .help-page--NavigationBack a:hover {
        text-decoration: underline;
        color: var(--linkBrand);
    }

.main-content {
    padding: 24px;
}

.help-page-control {
    font-size: 1rem;
}

.help-page th {
    font-family: 'MaerskText-Bold', Arial, Helvetica, sans-serif;
}

.help-page table,
.help-page table * p {
    font-family: 'MaerskText-Regular', Arial, Helvetica, sans-serif;
    font-size: .875rem;
}

.help-page pre.wrapped {
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
}

.help-page .warning-message-container {
    margin-top: 20px;
    padding: 0 10px;
    color: #525252;
    background: var(--functionalLightGrey);
    border: 1px solid var(--borderColor);
}

    .help-page .warning-message-container::before {
        position: absolute;
        top: 0;
        left: -4px;
        width: 4px;
        height: 100%;
        content: " ";
        background-color: var(--functionalLightGrey);
    }

.help-page .sample-header {
    box-sizing: border-box;
    background: var(--functionalLightGrey);
    padding: 8px 16px;
    display: inline-block;
    margin: 12px 0px 0px 0px;
    box-shadow: 0 -4px 0 var(--lightBrand);
}

.help-page .sample-content {
    display: block;
    border-width: 0;
    padding: 15px 20px;
    background: var(--lightestBrand);
    border: 1px solid var(--borderColor);
    margin: 0px 0px 10px 0px;
    line-height: 1.5;
}

.table .api-name {
    width: 40%;
}

.table .api-documentation {
    width: 60%;
}

.table .parameter-name {
    width: 20%;
}

.table .parameter-documentation {
    width: 40%;
}

.table .parameter-type {
    width: 20%;
}

.table .parameter-annotations {
    width: 20%;
}
