h2, h3 {
    margin-top: 2.6em;
}
hr {
    margin: 1.07em 0;
    border: 0;
    border-bottom: 1px solid #B3C2D8;
}
li {
    line-height: 1.4em;
    margin-bottom: 4px;
}
hr:last-child {
    display: none;
}

b {
    font-weight: bold;
}

pre {
    line-height: 2;
    padding: 0.75em;
    background: #F2F4F6;
    display: block;
    position: relative;
    font-family: "Roboto Mono" , "Consolas", monospace;
    word-wrap: break-word;
    word-break: break-all;
    white-space: pre-wrap; /* css-3 */
    white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    border-radius: 4px;
}

pre a {
    color: #3E4853!important;
    font-family: "Roboto Mono", "Consolas", monospace;
    text-decoration: none;
    border-bottom: 1px dotted;
}

pre.codehilite code {
  font-size: 0.98em;
}

blockquote {
    position: relative;
}
blockquote:before {
    position: absolute;
    content: '';
    height: 100%;
    top: 0;
    left: -24px;
    width: 4px;
    background: #ededed;
}
.labeled-pre {
    padding-left: 5em;
}

a,
a:link {
    color: #189cd8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

select,
textarea,
input {
    margin: 0;
    font-size: 1.3em !important;
    padding: 0.81em 1.07em;
    width: 100%;
    font-weight: 300;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border: 1px solid #DDD;
    border-radius: 0;
    background: #fafafa 98% center no-repeat;
}

select {
    box-sizing: content-box;
    padding: 0.81em 0;
    text-indent: 0.5em;
}

button,
input[type="submit"] {
    background: #0896ff;
    padding: 0.5em 0;
    color: #fff;
    display: inline-block;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: background 0.1s ease;
            transition: background 0.1s ease;
    font-weight: 300;
    font-size: 1em;
    text-decoration: none;
    box-sizing: content-box;
    border: 1px solid #0896ff;
}

textarea:focus,
select:focus,
input:focus {
    outline: 0;
    background-color: #f2f4f6;
    border-color: #72c5f0;
    box-shadow: 0 0 3px 2px rgba(8,150,254,0.3);
}

input[type="submit"]:hover,
input[type="submit"]:focus {
    background: #3071a9;
    box-shadow: 0 0 0;
    border-color: #3071a9;
}

.accent {
    color: #E00F3C;
}

.fixed-width {
    margin: 0 auto;
    position: relative;
    width: 980px;
}

.main-inner {
    margin: 0;
    max-width: 980px;
}

/* Navigation CSS */

.navigation {
    background-color: #003580;
    height: 30px;
    padding: 10px 20px;
}

.navigation__signin {
    background-color: #0896ff;
    border-radius: 3px;
    cursor: pointer;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
    line-height: 1;
    border: 1px solid #2d6ca2;
    padding: 0.5em 1.07em;
    font-size: 1.07em;
    display: inline-block;
    float: right;
    color: #fff;
    -webkit-transition: box-shadow .15s;
            transition: box-shadow .15s;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#428bca),to(#3071a9));
    background-image: -webkit-linear-gradient(top,#428bca 0,#3071a9 100%);
    background-image: -webkit-linear-gradient(top, #428bca 0, #3071a9 100%);
    background-image: linear-gradient(to bottom,#428bca 0,#3071a9 100%);
    box-shadow: inset 0 15px 9px rgba(255,255,255,0);
}

.navigation__signin .bicon-closedlock {
    margin-right: 0.54em;
}

.navigation__signin:hover {
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(40%,#428bca),to(#3071a9));
    background-image: -webkit-linear-gradient(top,#428bca 40%,#3071a9 100%);
    background-image: -webkit-linear-gradient(top, #428bca 40%, #3071a9 100%);
    background-image: linear-gradient(to bottom,#428bca 40%,#3071a9 100%);
    box-shadow: inset 0 15px 9px rgba(255,225,210,0.15);
}

.logo {
    float: left;
    line-height: 30px;
}

.logo_secondary {
    float: right;
    line-height: 30px;
}

.logo__img {
    vertical-align: middle;
}

.logo__img__product {

}

/* TABLE CSS */
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 2em;
    background: #F9FAFB;
    border-radius: 4px;
    overflow: hidden;
}

/* table code {
    hyphens: auto;
} */

.first-td,
.first-th {
    max-width: 150px;
    width: 29%;
    padding-left: 1.07em;
}

.middle-td,
.middle-th {
    max-width: 100px;
    width: 15%;
}

caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

td, th {
    padding: 0.61em 0.5em;
    vertical-align: top;
    min-width: 4.29em;
}

.text-center {
    text-align: center;
}

th {
    text-transform: uppercase;
    font-size: 0.9em;
}

tr {
    border-bottom: 1px solid #E5E9ED;
}

tbody tr:nth-child(even) {
    background-color: #ffffff;
  }

thead {
    background: #EEF0F4;
}

.first-td {
    font-family: "Roboto Mono", "Consolas", monospace;
}

.last-td,
.last_th {
    padding-right: 1.07em;
}

tbody {
    font-size: .95em;
}


/* Function Page CSS*/

.function__summary {
    font-size: 1.14em;
}

.function__caching {
    font-size: 1.14em;
    margin: 2em 0 0 0;
}

.function__caching strong {
    color: #002861;
    font-size: 1.2em;
}

.function-example--hidden {
    display: none;
}

#main_FCR {
    display: none;
}

.function__subheading {
    font-size: 1.86em;
    margin: 2em 0 1em 0;
}

.function__subsubheading,
.main-subsection__heading,
.secondary-subsection__heading  {
    font-size: 1.28em;
    margin-bottom: 0.5em;
}

.function__subsubdescription {
    margin-bottom: 1em;
    line-height: 1.75;
}

.function__transport-type {
    width: 3.5em;
    text-align: center;
    display: inline-block;
    font-size: 0.7em;
    margin-bottom: 2px;
    padding: 0 0.5em;
    border-radius: 3px;
    color: #fafafa;
    margin-right: 0.5em;
    background: #3E4853;
    position: absolute;
    left: 1.4em;
    top: 1.4em;
    line-height: 2.25;
}

.code {
    border-radius: 4px;
    font-family: "Roboto Mono", "Consolas", monospace;
    line-height: 1.2;
    background-color: #F2F4F6;
    overflow: hidden;
    font-size: 0.7em;
}

/* Inner Pages CSS */

.heading {
    font-size: 2.14em;
    margin-bottom: 1em;
}

.heading--iconed {
    padding-left: 2em;
    position: relative;
}

.heading__icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.2em;
    width: 1.6em;
    font-size: 1.25em;
    text-align: center;
    line-height: 1.25!important;
}

.secondary-section__description,
#questions .secondary-subsection__date {
    position: absolute;
    top: 0.5em;
    right: 0;
    color: #B3C2D8;
}

#questions .secondary-subsection__date {
    font-size: 0.9em;
}

.secondary-section__description {
    font-size: 1.14em;
}

.main-section {
    background: #F2F4F6;
    padding: 1.43em;
    position: relative;
    margin-bottom: 2em;
    border-radius: 4px;
    font-size: 1.14em;
}

.secondary-section__heading,
.main-section__heading {
    font-size: 1.86em;
    margin-bottom: 0.5em;
}
.main-section__content {
    margin-bottom: 1.5em;
}

.help-search {
    margin: 0 1.21em;
}

.help-search__input, .help-search__input:focus {
    background: #fff!important;
    margin-left: -1.21em;
}

.secondary-section__content {
    padding-top: 1.43em;
}

.secondary-subsection,
.secondary-section {
    position: relative;
}

.half .secondary-section__content {
    padding-top: 0;
}

.row .secondary-section,
.main-subsection {
    padding: 0 1.07em;
}

.main-section__description {
    padding-bottom: 1.43em;
    margin-bottom: 1.43em;
    border-bottom: 1px solid #c4cfdf;
}

.main-section-hint {
    position: absolute;
    background-color: #FFFCCD;
    padding: 0.5em;
    width: 30%;
    font-size: 0.9em;
    top: 0.7em;
    right: 0.7em;
    padding-left: 3.5em;
}

.main-section-hint__icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 2em;
    width: 2em;
    font-size: 1.7em;
    text-align: center;
    line-height: 2!important;
}

/* sidebar css */

.sidebar-item,
.sidebar-item:link {
    font-size: 1em;
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
    padding: 1em;
    text-align: center;
}

.sidebar-item__icon {
    font-size: 1.6em;
    text-align: center;
    line-height: 1!important;
    display: block;
    margin-bottom: 0.3em;
}

.sidebar-item__tag {    /* Put class on separate <span>, not on .sidebar-item <span>! */
  color: #FFF;
  background: #e21111;
  font-size: 11px;
  padding: 2px 4px;
  border-radius: 4px;
  position: absolute;
  top: 5px;
  right: 8px;
}

.sidebar-item__tag_2 {    /* Put class on separate <span>, not on .sidebar-item <span>! */
    color: #FFF;
    background: #e2a011;
    font-size: 11px;
    padding: 2px 4px;
    border-radius: 4px;
    position: absolute;
    top: 5px;
    right: 8px;
  }

.sidebar-item:hover {
    background: #123C7B;
}

.current.sidebar-item {
    background-color: #011c44;
}

.secondary-sidebar .sidebar-item {
    display: none;
}

.sidebar,
.secondary-sidebar,
.content {
    overflow: auto;
    position: absolute;
    top: 0px;
    padding-bottom: 0px;
    bottom: 0em;
}

.content {
    right: 0;
    left: 9em;
    background-color: white;
    padding: 2.14em;
    padding-bottom: 10em;
}

/* Ljanssens: I changed the max-width to accommodate bigger and longer screens. It also improves overall readability and you can see code samples without scrolling. */
.content-inner {
    max-width: 85.28em;
    position: relative;
}

.sidebar.collapsed ~ .content {
    left: 27em;
}

.sidebar {
    background: #001b42;
    width: 9em;
}

.collapsed ~ .secondary-sidebar {
    background: #F2F4F6;
    overflow-y: hidden;
    right: 0;
    left: 9em;
    width: 18em;
    margin: 0;
    z-index: 1;
    padding-bottom: 2.85em;
}

a.secondary-sidebar-item {
    color: #002861;
    text-decoration: none;
    padding: 0.5em 1.5em;
    display: block;
    position: relative;
    font-size: 0.9em;
}

.secondary-sidebar__header {
    margin: 1em 1.2em;
    padding: 0.36em 0;
    color: #696969;
    border-bottom: 2px solid #d7d8db;
    text-transform: uppercase;
}

.secondary-sidebar__header a {
    text-decoration: none;
    color: #696969;
}

.secondary-sidebar__header a:hover {
    color: #444;
}

.secondary-sidebar-item:hover {
    background: #D3DFF1;
}

.secondary-sidebar-item.current {
    background: #B0C4E2;
}

a.secondary-sidebar-item,
.sidebar-item {
    -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
}

.sidebar,
.secondary-sidebar,
.content {
    -webkit-transition: all 0.3s cubic-bezier(0.39, 0.58, 0.57, 1);
            transition: all 0.3s cubic-bezier(0.39, 0.58, 0.57, 1);
}

.secondary-sidebar-item__status {
    text-transform: uppercase;
    color: #fff;
    padding: 0.35em;
    display: inline-block;
    line-height: 0.9;
    font-size: 0.7em;
    border-radius: 3px;
    position: absolute;
    right: 0.5em;
    top: 1em;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.secondary-sidebar-item--updated {
    background-color: #E69E14;
}

.secondary-sidebar-item--new {
    background-color: #50A746;
}

.secondary-sidebar-item--deprecated {
    background-color: #CA4848;
}
a.tertiary-sidebar-item {
    display: block;
    padding: 0.5em 0 0.5em 3.5em;
    text-decoration: none;
    color: #011C44;
    font-size: 0.9em;
}

a.tertiary-sidebar-item:hover {
    background-color: #DEE6F1;
}


/* Generic CSS */
.third {
    width: 33.33%;
    float: left;
}

.half {
    width: 50%;
    float: left;
}

.row {
    margin: 0 -1.07em;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

/* index.html */

/* Hiding the docs. */



.main ~ .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer {
    padding: 1.07em;
    background-color: #c2d6ef;
    font-size: 0.9em;
    color: #355e97;
}

.footer_link,
.footer_link:link {
    text-decoration: none;
    margin-right: 1.07em;
    color: #355e97;
}






.dropdown--open .mi-add .mi-builder-parameter {
    border-bottom: 1px dotted #BEC8D2;
}


/* CHANGELOG CSS */

.article__heading {
    font-size: 1.5em;
    margin-bottom: 0.75em;
}

.article__content {
    line-height: 1.75;
    font-size: 1.07em;
}

.article {
    margin-bottom: 3em;
}

.list li {
    list-style: initial;
    margin-left: 1.5em;
}

.changelog-item__date {
    color: #444;
    margin-right: 1em;
}

.changelog-item {
    padding: 0.5em 0;
    border-bottom: 1px solid #eee;
}

.changelog-item__heading {
    line-height: 1;
}

.changelog-item-opt {
    color: #aaa;
    float: right;
}

.changelog-item-opt input,
.changelog-item-opt input:focus {
    height: 1.25em;
    width: 1.25em;
    margin-left: 0.5em;
    border-color: #444;
}

/* MISC CSS*/

#questions hr {
    border-color: #E2EDF9;
}

.syntaxhighlighter {
    border-radius: 4px;
}

.icon-item {
    font-size: 1.0em;
    text-align: center;
    line-height: 1!important;
    display: block;
    margin-bottom: 0.3em;
}

.icon-item:hover {
    background: #123C7B;
}

.icon-item2 {
    font-size: 1.6em;
    text-align: center;
    line-height: 1!important;
    display: block;
    margin-bottom: 0.0em;
    margin-top: 0.2em;
    padding: 0.3em;
}

/* Wouter's additions (TEMPORARY)*/

/* Permalink styling */

a.headerlink {
    font-size: 1rem;
    color: rgba(0, 119, 204, 0.4);
    text-decoration: none;
    margin-left: 4px;
}

a.headerlink:hover {
  color: rgb(0,119,204);
}

/* Make first paragraph after page title slightly bigger */

h1:first-of-type ~ p:first-of-type {
    font-size: 16px;
    line-height: 24px;
}

/* Styling for admonitions (Markdown extension) */

.admonition {
  padding: 0.1rem 1rem;
  /* background-color: rgba(237, 237, 237, 0.45); */
  border-style: solid;
  border-width: 0px 0px 0px 3px;
  border-color: rgb(0, 53, 128);
  margin: 0 0 1rem 0;
  font-size: .9rem;
}

.admonition-title {
  font-size: 1rem;
  -webkit-margin-before: .8rem;
  -webkit-margin-after: .8rem;

}

.admonition-title:before {
  /* Enable Ligatures ================ */
  font-family: "booking-iconset";
  padding: 0px 5px 0px 0px;
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* note */

.admonition.note {
    background-color: #f9fbfd;
    border-color: #b5cff2;
    color: #383838;
}

.admonition.note .admonition-title {
  color: #3d3d3d;
  /*text-transform: uppercase;*/
  font-weight: bold;
}

.admonition.note .admonition-title:before {
    content: "\b316";
    color: #527ab4;
}

.admonition.note .admonition-title:after {
  /*content: ":";*/
}

/* warning */

.admonition.warning {
  background-color: #fef9e9;
  border-color: #fad257;
  color: #5f4707;
}

.admonition.warning .admonition-title {
  font-weight: bold;
}

.admonition.warning .admonition-title:before {
  content: "\b11b";
  color: #e2aa10;
}


/* faq */

.admonition.faq {
  background-color: #f5fbf6;
  border-color: #96d99d;
  color: #06600f;
}

.admonition.faq .admonition-title {
  /*color: #3d3d3d;*/
  /*text-transform: uppercase;*/
  font-weight: bold;
}

.admonition.faq .admonition-title:before {
  content: "\b111";
  color: #35b21a;
}

/* End admonition styling */

code {
  background-color: #f2f4f6;
  color: #383838;
}

img {
  max-width: 100%;
}

.b-card {
    padding: 16px;
    background: #E5E9ED;
    border-radius: 2px;
    font-size: 16px;
}
.anchored-card__content {
    margin-bottom: 16px;
}
.anchored-card__actions p {
    margin: 0;
}
.anchored-card__actions a {
    width: 48%;
    display: inline-block;
    text-align: center;
}
.anchored-card__actions a:first-child {
    border-right: 1px solid #bdbdbd;
}
.anchored-card--open {
    bottom: -4px !important;
    opacity: 1;
}
.anchored-card--closed {
    opacity: 0;
}

#main_Mobilerates {
    display: none;
}

#main_NewRoomtypeandrateplanmanagement {
    display: none;
}

#main_Reservations {
    display: none;
}

/* Resizing the image within deprecation policy */

img[alt=deprecation-timeline] {
    width: 50vw;
}

#main_ModernisedCAPI {
    display: none;
}

#main_RequestToBookAPI {
    display: none;
}