@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');
:root {

    --MAIN-TEXT-color: #000000; /* Color of text by default */
    --MAIN-LINK-color: #0000EE; /* Color of links */
    --MAIN-LINK-HOVER-color: #0000EE; /* Color of hovered links */
    --MAIN-ANCHOR-color: #0000EE; /* color of anchors on titles */

    --MENU-HOME-LINK-color: #323232; /* Color of the home button text */
    --MENU-HOME-LINK-HOVER-color: #5e5e5e; /* Color of the hovered home button text */

    --MENU-HEADER-BG-color: #221F1F; /* Background color of menu header */
    --MENU-HEADER-BORDER-color: #9cd484; /*Color of menu header border */

    --MENU-SEARCH-BG-color: #fff; /* Search field background color (by default borders + icons) */
    --MENU-SEARCH-BOX-color: #323232; /* Override search field border color */
    --MENU-SEARCH-BOX-ICONS-color: #323232; /* Override search field icons color */

    --MENU-SECTIONS-ACTIVE-BG-color: #221F1F; /* Background color of the active section and its childs */
    --MENU-SECTIONS-BG-color: #221F1F; /* Background color of other sections */
    --MENU-SECTIONS-LINK-color: #ccc; /* Color of links in menu */
    --MENU-SECTIONS-LINK-HOVER-color: #e6e6e6; /* Color of links in menu, when hovered */
    --MENU-SECTION-ACTIVE-CATEGORY-color: #777; /* Color of active category text */
    --MENU-SECTION-ACTIVE-CATEGORY-BG-color: #fff; /* Color of background for the active category (only) */

    --MENU-VISITED-color: #599a3e; /* Color of 'page visited' icons in menu */
    --MENU-SECTION-HR-color: #18211c; /* Color of <hr> separator in menu */

}

body {
    color: var(--MAIN-TEXT-color) !important;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    min-height: 100vh;
    position: relative;
}

textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, select[multiple=multiple]:focus {
    border-color: none;
    box-shadow: none;
}

h1, .redoc-wrap h1 {
    font-family: 'Roboto', sans-serif;
    text-transform: none !important;
    font-size: 32px;
}

h2, h3, h4, h5 {
    font-family: 'Roboto', sans-serif;
}

h2, .redoc-wrap h2 {
    font-size: 28px;
}

h3, .redoc-wrap h3 {
    font-size: 20px;
}


h4, .redoc-wrap h4 {
    font-size: 18px;
}

h5, .redoc-wrap h5 {
    font-size: 16px;
    font-weight: 500;
}

h6, .redoc-wrap h6{
    font-size: 20px;
    font-weight: normal;
}
a {
    color: var(--MAIN-LINK-color);
}

.anchor {
    color: var(--MAIN-ANCHOR-color);
}

a:hover {
    color: var(--MAIN-LINK-HOVER-color);
}

#sidebar ul li.visited > a .read-icon {
    color: var(--MENU-VISITED-color);
}

#body {
    padding-bottom: 25px;
}

#body a.highlight:after {
    display: block;
    content: "";
    height: 1px;
    width: 0%;
    -webkit-transition: width 0.5s ease;
    -moz-transition: width 0.5s ease;
    -ms-transition: width 0.5s ease;
    transition: width 0.5s ease;
    background-color: var(--MAIN-LINK-HOVER-color);
}

#sidebar {
    background-color: var(--MENU-SECTIONS-BG-color);
}

#sidebar #header-wrapper {
    background: var(--MENU-HEADER-BG-color);
    color: var(--MENU-SEARCH-BOX-color);
}

#sidebar .searchbox {
    border-color: var(--MENU-SEARCH-BOX-color);
    background: var(--MENU-SEARCH-BG-color);
}

#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {
    background: var(--MENU-SECTIONS-ACTIVE-BG-color);
}

#sidebar .searchbox * {
    color: var(--MENU-SEARCH-BOX-ICONS-color);
}

#sidebar a {
    color: var(--MENU-SECTIONS-LINK-color);
}

#sidebar a:hover {
    color: var(--MENU-SECTIONS-LINK-HOVER-color);
}

#sidebar ul li.active > a {
    background: var(--MENU-SECTION-ACTIVE-CATEGORY-BG-color);
    color: var(--MENU-SECTION-ACTIVE-CATEGORY-color) !important;
}

#sidebar hr {
    border-color: var(--MENU-SECTION-HR-color);
}

#body .tags a.tag-link {
    background-color: var(--MENU-HEADER-BG-color);
}

#body .tags a.tag-link:before {
    border-right-color: var(--MENU-HEADER-BG-color);
}

#homelinks {
    background: var(--MENU-HEADER-BG-color);
    background-color: var(--MENU-HEADER-BORDER-color);
    border-bottom-color: var(--MENU-HEADER-BORDER-color);
}

#homelinks a {
    color: var(--MENU-HOME-LINK-color);
}

.button-secondary {
    background-color: var(--MENU-HEADER-BG-color);
    color: #000;
    font-weight: bold;
}

/** Making the TOC icon more prominent. */
#toc-menu .fas {
    font-size: 30px;
    line-height: 30px;
    top: 4px;
    position: relative;
}

/* Redocly image needs to be resized as sometimes it's very large */
img[src$="redoc/logo-mini.svg"]{
    width: 15px !important;
    height: 15px !important;
    margin: 0 5px 0 0 !important;
}

/* Reduce the space between sections generated from OpenAPI using Redocly*/
div[id^="section"] {
    padding: 20px 0 0 0;
}
/* Reduce the space between paths generated from OpenAPI using Redocly */
div[id^="/paths"] {
    padding: 20px 0 0 0;
}
/* Reduce the space at the beginning of page in and after Download OpenAPI spec*/
div.api-content>div {
    padding: 20px 0 0 0;
}

code{
    border: none;
    font-family: "Courier" !important;
}

.redoc-json > code > span.token.string {
    background-color: black;
}

.token.punctuation {
    color: rgb(128, 128, 128);
}

.redoc-wrap h2, h3, h4, h5 {
    font-family: 'Roboto', sans-serif;
}

.tile_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

@media (max-width: 1000px) {
    .tile_container {
        gap: 24px 0;
    }
}

@media (min-width: 1001px) {
    .tile_container {
        gap: 24px;
    }
}

@media (min-width: 1920px) {
    .tile_container {
        gap: 48px;
    }
}

@media (max-width: 1000px) {
    .tile_container div.tile{
        width: 100%;
    }
}
@media (min-width: 1001px) {
    .tile_container div.tile{
        width: 48%;
    }
}
@media (min-width: 1441px) {
    .tile_container div.tile{
        width: 48%;
    }
}

.tile {
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #DBDBDB;
    min-height: 225px;
    transition: box-shadow .3s;
}

.tile:hover{
    box-shadow: 0 0 11px rgba(33,33,33,.2);
}
div.title {
    display: flex;
    margin-bottom: 16px;
    color: var(--MAIN-TEXT-color) !important;
    position: relative; /*to center the inner text vertically */
}
div.title img{
    float: left;
    width: 56px;
    height: 56px;
    margin: 0 20px 0 0 !important;
}

div.title span {
    font-weight: 700;
    font-size: 24px;
    font-style: normal;
    line-height: normal;
    /*centering the text*/
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 76px;
}
div.title a {
    padding: 40px;
}
div.description{
    color: var(--MAIN-TEXT-color) !important;
}

.topics hr#menuSeparator {
    border-bottom: 1px solid #F0F2F4;
    margin-top: 0;
    margin-bottom: 5px;
}

.fauxMenuItem {
    color: #ccc;
    margin: 4px 0;
    font-size: 1.1rem;
    line-height: 2rem;
    cursor: pointer;
}

div.center-page h1 {
    text-align: center;
}

#banner-container {
    background: #FFDE00;
}

#banner {
    display: flex;
    padding: 32px 0px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: #FFDE00;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1564px) {
    #banner {
        margin: 0 32px;
    }
}

@media (max-width: 1290px) {
    #banner {
        flex-direction: column;
        text-align: center;
    }
}
#banner-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    color: #221F1F;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 48px */
}

#banner-img{
    width: 372.656px;
    height: 253.125px;
    flex-shrink: 0;
}

#banner-img img {
    margin: 0;
}

.footer{
    display: grid;
    grid-template-columns: 300px 1fr 196px;
    height: 25px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

@media (max-width: 767px) {
    .footer {
        grid-template-columns: 0 1fr 196px;
    }
}
.footer .right{
    text-align: right;
    padding-top: 5px;
}
.footer .middle{
    text-align: center;
}

#privacy_policy_cr a{
    color: #616161;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}

#privacy_policy_cr a{
    color: #616161;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
}
#privacy_policy_cr {
    color: #616161;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 7px;
}
#powered_by{
    display: flex;
    margin-right: 32px;
    justify-content: end;
}
#powered_by a{
    color: #616161;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
#powered_by img{
    vertical-align: middle;
}

#return_flow_image{
    width: 1200px !important;
}

#headless_image{
    width: 1200px !important;
}

#shipments_image {
    width: 1200px !important;
}
p {
    text-wrap: wrap;
}