/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html {
    font-size: 15px;
}

a {
    all: unset;
    cursor: pointer;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font-family: 'Rubik', sans-serif;

}

/* HTML5 display-role reset for older browsers */
body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

h1 {
    font-size: 2rem;
}

p {
    font-size: 1rem;
    line-height: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: normal;
}


a:hover {
    color: #FF871C !important;
    text-decoration: underline;
}

.zeromargin {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

header {
    display: flex;
    padding: 20px 0;
    background-color: white;
    flex-direction: column;
}

header .container,
header .headeralign {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.mainlogo {
    height: auto;
    display: flex;
    align-items: center;
}

.mainlogo img {
    height: 100%;
}

.clientlogo {
    width: auto;
    height: 100%;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #777777;
}

.clientlogo img {
    height: 40px;
}

.languageselect {
    position: relative;
}

.languageselect img {
    width: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
}

.languageselect select {
    border-radius: 5px;
    border-color: #FF871C;
    padding-left: 35px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;

}

.searchfield {
    max-width: 600px;
    width: 100%;
    display: flex;
    gap: 10px;
    position: relative;
}

.searchfield img {
    margin: auto;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 10px;

}

.searchfield .form-control {
    padding: 25px 20px 25px 50px;
    border: 0px;
    border-bottom: 2px solid #0F4996;
    border-radius: 0px;
    background-color: #f5f5f5;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.inputfield {
    position: relative;
    width: 100%;
}


#knowledgebase_header {
    padding: 10px 0;
}

#knowledgebase_header .searchfield {
    max-width: 600px;
    width: 100%;
}


#knowledgebase_header .searchfield .form-control {
    padding: 10px 20px 10px 40px;
    border-bottom: 2px solid #FF871C;
    background-color: white;

}

#knowledgebase_header .btn-primary {
    padding: 7px 30px;
}

#knowledgebase_header .searchfield img {
    top: -5px;
    width: 20px;
}

#knowledgebase_header .searchfield form {
    min-width: 500px;
}

#knowledgebase_header .container {
    display: flex;
    justify-content: center;
}

.searchsection {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.searchsection form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-primary {
    color: white;
    padding: 15px 30px;
    background-color: #FF871C;
    border: 0px;
}

.btn-primary:hover {
    background-color: #f27100;
}

main {
    background-color: #f5f5f5;
}

.searchbar {
    background-color: #0F4996;
    padding: 10px 0;
}

.searchbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.searchbar input {
    transition: all .3s;

    width: 200px;
}

.searchbar input:focus {
    transition: all .3s;
    width: 500px;
}

.breadcrumb {
    /* position: absolute !important;*/
    width: auto !important;
    /* top: 50% !important; */
    /* left: auto !important; */
    /* right: 15px !important; */
    /* margin: -10px 0 0 0 !important; */
    background-color: transparent !important;
    padding: 0 !important;
    font-size: 12px;
    color: white !important;
    margin-bottom: auto;
}

.breadcrumb-item a {
    color: white !important;
}

.breadcrumb-item.active {
    color: #FF871C;
}

.docs-navigation {
    background-color: white;
    height: 100%;
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    overflow-y: auto;
    border-right: .1px solid #dddddd !important;
}


.docs-content {
    position: relative;
    overflow: hidden;
    margin-left: auto;
    /* padding: 160px 0 60px 40px; */
    min-height: 1000px;
    padding: 40px 10px;
    color: black;
}

.docs-content h1,
.docs-content h2,
.docs-content h3,
.docs-content h4,
.docs-content h5,
.docs-content h6 {
    margin: 10px 0;
    line-height: initial;
    color: inherit;

}

.docs-content p,
.docs-content ul li {
    margin-bottom: 25px;
    line-height: initial;
    letter-spacing: 0px;
    color: #1f1f1f;
}

.docs-content ul li {
    margin-bottom: 10px;
    padding-left: 5px;

}

.docs-content ul,
.docs-content ol {
    margin: 20px 0;
    letter-spacing: 0px;
    list-style: "-";
    padding-left: 10px;
    color: inherit;

}



.line,
.double-line {
    clear: both;
    position: relative;
    width: 100%;
    margin: 30px 0;
    border-top: 1px solid #EEE;
}


.docs-navigation a {
    text-decoration: underline;
    color: black !important;
}

a:hover {
    transition: all .3s;
    color: #FF871C !important;
}

.docs-navigation a {
    text-decoration: none;
    color: white;
}

.one-page-menu li {
    border: 0px;
}

.docs-navigation ul ul a:hover {
    color: #FFF;
    margin-left: 2px;
    transition: 0.3s margin 0s;
    background-color: #f5f5f5;

}

.hide_top_link {
    height: 10px !important;
    padding: 0 !important;

}

.sub-item.border-menu.active {
    background-color: #ffffff;
}

footer {
    padding: 30px 0;
}

footer {
    background-color: #2c2c2c;
    color: white;
}

footer .copyrights {
    text-align: center;
    font-weight: 500;
    width: 100%;
    border-top: 1px solid #bfbfbf;
    padding: 20px 0px 0px 0px;
}

footer .quicklinks {
    display: flex;
    justify-content: space-evenly;
    padding: 15px 0px;
    flex-wrap: wrap;
}

footer .quicklinks li {
    width: auto;
    height: auto;
    margin: 10px;
}

footer .quicklinks li a {
    padding: 10px;
    color: white;
}

footer .quicklinks li a:hover {
    color: #FF871C;
    text-decoration: underline;
}

.docs-navigation .one-page-menu .sub-item .sub-menu li {
    padding: 0 0 0 10px;
}

.sub-menu {
    margin-left: 20px !important;
    border-left: 1px solid #dddddd;
}

.sub-menu a {
    font-size: 14px;
    line-height: normal !important;
}

.sub-menu li.active a {
    color: #FF871C !important;

}

.sub-menu li.active {
    border-left: 1px solid #FF871C;
}

.docs-navigation .one-page-menu .sub-item .sub-menu li {
    padding: 0;
}

.docs-navigation ul ul a {
    font-size: 12px;
    font-weight: 500 !important;

}

.docs-content .link_style:hover {
    color: #FF871C !important;
}

.docs-content .notesection {
    padding: 15px;
    background-color: #fff2ed;
    border: 1px solid #a5a5a5;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    line-height: 1.4 !important;
    letter-spacing: normal;
    font-size: 14px;
}

/* figure {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    margin-bottom: 20px;
} */
figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    margin: 30px auto;
}

figure img {
    border: 1px solid #777777;
    width: 100%;
    max-width: 500px;
}

figure figcaption {
    font-weight: 400;
    font-style: italic;
    color: black;
    font-size: 12px;
    padding-top: 15px;
    letter-spacing: .4px;
}

.border_right_class {
    border-right: .1px solid #dddddd !important;
}

.quicklinks_right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.docs-quicklinks h5 {
    color: #0F4996;
}

.quicklinks_right a {
    letter-spacing: normal;
}

.quicklinks_right a:hover {
    text-decoration: underline !important;
}

.heightspace_large {
    height: 30px;
}

.heightspace_medium {
    height: 20px;
}

.heightspace_small {
    height: 10px;
}

.document_container {
    display: grid;
    gap: 0;
    grid-template-areas: "sidebar main";
    grid-template-columns: 1fr 4fr;
}

.document_container aside {
    grid: sidebar;
}

.docs-navigation {
    position: sticky;
    top: 56px;
    display: block !important;
    height: calc(100vh - 56px);
    padding-left: .25rem;
    margin-left: -.25rem;
    overflow: auto;
}

.docs-navigation ul ul {
    display: block;
}

.top_searchbar_docpage {
    position: sticky;
    top: 0;
    z-index: 10;
}

.document_container main {
    display: grid;
    grid-template-areas:
        "doccontent"
        "qlinks";
    grid-template-columns: 4fr 1fr;
    grid-template-rows: auto 1fr;
    background-color: white;
}

.document_container main .docs-content {
    grid: doccontent;
    padding: 40px;

}

.document_container main .docs-quicklinks {
    grid: qlinks;
    position: sticky;
    top: 56px;
    display: block !important;
    height: calc(100vh - 56px);
    right: 0px;
    overflow: auto;
    padding: 20px 0;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.close_icon {
    width: 100%;
    padding: 20px;
    color: rgb(47, 47, 51);
    display: none;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dddddd;
}

.close_icon img {
    width: 40px;
    height: auto;
    color: #FF871C;
}

.document-heading {
    display: flex;
    gap: 10px;
    align-items: left;
    flex-direction: column;
    justify-content: space-between;
}

.document-heading span {
    font-size: 14px;
    font-weight: 500;
}

.document-heading h1 {
    color: #0F4996;
}

.menu_icon {
    display: none;
    width: 40px;
}

.socialicons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.socialicons h5 {
    width: 100%;
}

i.socialicon {
    width: 30px;
    height: 30px;
    display: block;
    background-size: cover;
}

i.socialicon.social_facebook {
    background-image: url("../upload/facebook.svg");
}

i.socialicon.social_twitter {
    background-image: url("../upload/twitter.svg");
}

i.socialicon.social_linkedin {
    background-image: url("../upload/linkedin.svg");
}

i.socialicon.social_pinterest {
    background-image: url("../upload/pinterest.svg");
}

i.socialicon.social_printer {
    /*BACKGROUND-IMAGE: URL("../UPLOAD/PRINTER.SVG");*/
    display:none;
}

.supported_device_thumb {
    width: 100%;
    display: flex;
    justify-content: center;
}

.supported_device_thumb img {
    max-width: 250px;
    width: 80%;
}

.supported_devices {
    margin: 20px auto;
    text-align:center;
}

.supported_devices a img {
    border: 0px;
}


.supported_devices a figcaption {
    padding-top: 5px;
    font-style: normal;
}

.mockup.ipad {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.mockup.mobile-pad {
      max-width: 260px;
}

.mockup.mobile-pad {
    position: relative;
    width: 100%;
   
}

.mockup.mobile-pad.portrait img {
    position: absolute;
    margin: auto;
    left: 3px;
    top: 39px;
    right: 0;
    width: 77.9%;
    height: 84%;
    border-radius: 2px;
}

.mockup.mobile-pad.landscape img {
    left: 0px;
}
.mockup.ipad object {
    width: 100%;
}


.mockup.ipad.portrait img {
    position: absolute;
    margin: auto;
    left: 0;
    top: -20px;
    bottom: 0;
    right: 0;
    width: 92%;
    height: auto;
    border-radius: 2px;
}

.mockup.ipad.landscape img {
    position: absolute;
    margin: auto;
    left: -10px;
    top: 0;
    bottom: 0;
    right: 0;
    height: auto;
    width: 85%;
    border-radius: 2px;
}

img.height-90 {
    height: 90% !important;
}

.sub_content_link {
    font-size: 14px;
    box-shadow: 0 0 3px #9c9c9c;
    margin: 10px 0;
    border-radius: 3px;
    line-height: 1.2;
    width: 100%;
    height: calc(100% - 25px);
    display: flex;

}

.sub_content_link a{
    padding: 15px;
    display: inherit;
    align-items: center;
}
.sub_content_link a:hover{
text-decoration: underline!important;
}


@media (max-width: 575.98px) {
    .platformcard {
        margin-bottom: 15px;
    }

    .cardstyle .col-sm-4 {
        padding: 0px;
    }

    #section01 .container {
        padding: 0px;
    }

    .weblanguageselect {
        display: none;
    }

    .searchfield {
        flex-direction: column;
    }

    section .container,
    header .container {
        padding: 0px;
    }

    .cardstyle-two {
        padding: 20px;
    }

    .col-sm-4 {
        padding: 0px;
    }

    .col {
        padding-bottom: 20px;
    }

    header {
        padding: 10px 0;
    }

    .clientlogo {
        padding-left: 0px;
        margin-left: 0px;
        border-left: 0px;
    }

    .mainlogo {
        width: 200px;
        flex-direction: column;
        align-items: baseline;
        gap: 10px;
        padding: 10px 0;
    }

    .mainlogo img {
        width: 100%;
    }

    .menuicon {
        display: block;
    }

    .search_results_headers {
        align-items: baseline;
        flex-direction: column;
        gap: 20px;
    }

    .dividerline_hide_responsive {
        display: none;
    }

    .dividerline {
        margin: 0;
    }

    .search_results .cardstyle h5 {
        flex-direction: column;
        align-items: baseline;
    }

    .platform_batch {
        margin-bottom: 10px;
    }


}




@media (max-width: 767.98px) {
    .document_container main .docs-content {
        padding: 20px;
        width: 100%;
    }

    .document_container {

        grid-template-areas: "sidebar"
            " main";
        grid-template-columns: auto !important;
    }

    .document_container aside {
        position: fixed;
        z-index: 11;
        width: 100%;
        top: 0px;
        display: none;
    }

    .docs-navigation {
        position: relative;
        height: 100vh;
        top: 0;
    }

    .close_icon {
        display: flex;
    }

    .menu_icon {
        display: block;
    }

    .top_searchbar_docpage {
        position: relative;
        top: auto;
    }
}


@media (max-width: 991.98px) {
    .border_right_class {
        border-right: 0px !important;
    }

    .document_container {

        grid-template-columns: 1fr 3fr;
    }

    .document_container main {
        grid-template-columns: auto;
    }

    .document_container main .docs-quicklinks {

        height: auto;

    }


}


.lightbox .lb-image {
    border: unset !important;
}


.lb-outerContainer {
    background-color: transparent !important;
}

@media (max-width: 1199.98px) {}