
/*<meta />*/

@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

@font-face 
{ 
    font-family: roboto-regular, sans-serif;
    src: url('../font/Roboto-Regular.ttf'); 
} 

:root
{
    --tonk-primary: #4640C0; /*Purple*/
    --tonk-secondary: #605CE4; /*Lighter Purple*/
    --tonk-alt-1: #72C6FF; /*Light Blue*/
    --tonk-alt-2: #FFC921; /*Yellow*/
    --sys-1: #2F84DC; /*System Primary Blue*/
    --sys-2: #20C5F5; /*System Secondary Blue*/
    --sys-3: #39B3D6; /*System Tertiary Blue*/
    --sys-4: #12D4B8; /*System Sea Green*/
    --sys-5: #FFB27A; /*System Peach*/
    --sys-6: #F0611E; /*System Orange*/
    --sys-7: #FF5454; /*system Coral Red*/
    --gray-1: #34393E;
    --gray-2: #5B636C;
    --gray-3: #9CA6B2;
    --gray-4: #CDD2D8;
    --gray-5: #F8F8F8; /*Drop-shadow gray*/
}

body
{
    font-family: 'Roboto Regular', sans-serif;
}

/*Paragraph Styles*/
#topic-content > section > .titlepage .title
{
    padding-top: 15px;
}

.section {
    margin-left: 16px; //Spacing for each indented section
} 

.indented {
    margin-left: 16px;  //Predefined spacing for indented sections 
}

.portal-header h1
{
    font-size: 36px;
    font-family: 'Lato';
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
}

@media only screen and (max-width: 430px) { /* for mobile */
    .portal-header h1{
        font-size: 28px;
    }
}

.portal-header h1::after
{
    display: block;
    content: "What process are you building?";
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    padding: 10px;
    padding-top: 50px;
    padding-bottom: 16px;
    margin-bottom: -20px;
    color: #fff;
    letter-spacing: normal;
}

@media only screen and (max-width: 766px) { /* for tablet */
    .portal-header h1::after{
        padding-top: 30px;
        margin-bottom: -20px;
        color: #fff;
    }
}

@media only screen and (max-width: 430px) { /* for mobile */
    .portal-header h1::after{
        padding-top: 25px;
        margin-bottom: -20px;
        color: #fff;
    }
}

h1
{
    font-family: lato;
    color: var(--tonk-primary);
    font-size: 44px;
    font-weight: 600;
}

h2.title
{
    font-family: lato;
    font-weight: bold;
    padding-top: 10px;
}

h2
{
    font-family: lato;
    font-size: 30px;
    color: var(--tonk-primary);
    padding-top: 10px;
}

h3.title
{
    font-family: lato;
    color: var(--tonk-primary);
    padding-top: 10px;
}

h3
{
    font-family: lato;
    padding-top: 10px;
}

h4
{
    font-family: lato;
    padding-top: 10px;
}

h5
{
    font-family: lato;
    padding-top: 10px;
}

h6
{
    font-family: lato;
    padding-top: 10px;
}

/* General body text area */
.theme1.page-toc main article
{
    padding-right: 14%;
    padding-left: 13%;
}

.theme1 .procedure > li::before /* procedure number bubbles */
{
    background-color: var(--tonk-primary);
    opacity: 75%;
}

.inlinemediaobject
{
    vertical-align: -0.1rem;
}

.warning > *, .note > *, .important > *, .caution > *, .tip > * 
{
    padding-right: 0 !important;
}

.note:before, .tip:before, .warning:before, .caution:before, .important:before
{
    top: 14px;
}

.notice:before 
{
    top: 14px;
    content: f0eb;
}

.tip > * 
{
    margin-left: 0px;
    -webkit-margin-before: 0;
    padding-left: 0;
    padding-bottom: 0;
    padding-right: 0px;
}

.warning
{
    border-left-color: var(--sys-7);
    background-color: rgba(255, 10, 10, 0.08);
}

.warning:before
{
    color: var(--sys-7);
}

.warning.danger /*Repurposed as a "Why" callout to be used at the top of topics as a tl;dr*/
{
    display: block;
    padding: 12px 18px 12px 65px;
    -moz-background-clip: padding;
    border-left-width: 5px;
    border-left-style: solid;
    border-left-color: var(--tonk-primary);
    line-height: 1.4em;
    margin-top: 18px;
    margin-bottom: 18px;
    position: relative;
    background-color: rgba(96, 92, 228, 0.08);
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.warning.danger:before
{
    content: '\f709';
    color: var(--tonk-primary);
    font-family: 'FontAwesome';
    font-size: 20px;
    font-weight: 300;
    position: absolute;
    left: 20px;
    vertical-align: middle;
}

.warning.danger h3
{
    visibility: hidden;
    line-height: 0;
}

.warning.danger h3:after
{
    content: 'Quick Overview';
    visibility: visible;
    display: block;
    line-height: initial;
}

.important
{
    border-left-color: var(--sys-5);
    background-color: rgb(255 179 0 / 19%);
}

.important:before
{
    color: var(--sys-5);
}


.internal
{
    display: none;
}

.strikethrough
{
    text-decoration: line-through;
}

.pre
{
    font-family: 'Courier New', Courier, monospace;
}

.code
{
    color: var(--tonk-primary);
    background-color: var(--gray-5);
}

listitem .clean-list
{
    list-style: none;
}

.hljs /* programlisting hljs class */
{
    display: block;
    overflow-x: auto;
    padding: 2rem !important;
    background: var(--gray-5) !important;
    color: var(--tonk-primary) !important;
}

.btn-primary /* copy-to-clipboard for code snippets */
{
    background-color: var(--gray-5);
    border-color: var(--gray-3);
    margin-top: 4px;
    margin-right: 4px;
    text-shadow: none;
}
.btn-primary:hover
{
    background-color: var(--gray-4);
    border-color: var(--gray-3);
    margin-top: 4px;
    margin-right: 4px;
    text-shadow: none;
}

.fa
{
    color: var(--tonk-secondary)
}

/* Home Page */

.portal-body-container 
{
    padding-top: 10px;
    width: 64%;
}

@media only screen and (max-width: 430px) { /* for mobile */
    .portal-body-container {
        width: fit-content;
    }
}

.navbar-brand
{
    padding: 18px 16px;
}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse
{
    padding-top: 10px;
    padding-right: 10px;
}

.portal-header
{
    min-height: 360px;
    height: fit-content;
}

/* Home Page Top Nav Ext Links */
.sm-simple > li > a
{
    font-weight: 600;
    font-size: 12pt;
    color: var(--gray-2);
}

@media only screen and (max-width: 430px) /* for mobile */ 
{.sm-simple > li > a
    {
        font-weight: 600;
        font-size: 12pt;
        color: var(--gray-5);
        background:#605CE4;
    }
}

/* Home Page Search Bar */
.portal-header .portal-search .search-field
{
    width: 50%;
    color: #ffff;
    background-color: transparent;
    border-top: #ffff;
    border-right: transparent;
    border-bottom: #ffff;
    border-left: #ffff;
    border-style: solid;
    border-width: 2px;
    border-radius: 8px 0px 0px 8px;
    margin-right: -2px;
    padding: 12px;
}

.portal-header .portal-search .search-field::placeholder
{
    content: 'Search for anything...';
    color:rgba(255, 255, 255, 1);
}

.portal-header .portal-search button
{
    background-color: transparent;
    color: rgb(255, 255, 255);
    border-top: rgb(255, 255, 255);
    border-right: rgb(255, 255, 255);
    border-bottom: rgb(255, 255, 255);
    border-left: transparent;
    border-style: solid;
    border-width: 2px;
    border-radius: 0px 8px 8px 0px;
    margin-left: -2px;
}

.portal-header .portal-search button:hover
{
    background-color: transparent;
    color:  #ffff;   
}

.fa-search:before
{
    color: white;
}

.portal-header:before /* Color of section icon background */
{
    background-color: unset;
    z-index: -10;
}

.portal-header::after
{
    opacity: 1;
    filter: none;
}

.portal-single-publication h3:hover
{
    color: #555;
}

.portal-single-publication .publication-icon /* Color of section icon background */
{
    background-color: var(--tonk-primary);
}

.publication-contents h4 span /* Color of count icons below section cards */
{
    background-color: var(--tonk-primary);
}

.toolbar
{
    padding: 15px 20px;
}

@media only screen and (max-width: 430px) { /* for mobile */
    .toolbar-tools{
        float: right;
        padding-top: 4px;

    }
}

.fixed-toolbar article.topic li:target:before 
{
    content: counter(step-counter);
    display: block;
    height: auto;
    margin-top:auto;
}

/* Home Page Cards */
.portal-single-publication
{
    margin-left: 0 !important;
    width: 33%;
}

.portal-single-publication a:hover
{
    color: #555;
}

.portal-single-publication a
{
    box-shadow: 0px 5px 20px rgb(96, 92, 228, 0.1);
}

.portal-single-publication a:hover
{
    box-shadow: 0px 0px 30px rgba(96, 92, 228, 0.2);
}

@media (max-width: 768px) {
    .portal-single-publication {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .portal-single-publication {
        width: 100%;
    }
}

.portal-single-publication .publication-icon
{
    background: none;
    height: auto;
    margin-bottom: 25px;
    width: auto;
}

.portal-single-publication .publication-icon img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.portal-single-publication .publication-icon .fa
{
    color: #fff;
    display: block;
}

.portal-single-publication h3
{
    font-size: 20px;
}

.portal-single-publication .publication-icon .fa:before {
    display: block;
}

.cat-panel-1:before /*Get Started*/
{
    content: url('https://docs.tonkean.tech/images/home_get_started.svg');
}

.cat-panel-2:before /*Design and Customize*/
{
    content: url('https://docs.tonkean.tech/images/home_design_customize.svg');
}

.cat-panel-3:before /*Admininister*/
{
    content: url('https://docs.tonkean.tech/images/home_administer.svg');
}

.cat-panel-4:before /*Data Sources*/
{
    content: url('https://docs.tonkean.tech/images/home_data_sources.svg');
}

.cat-panel-5:before /*Business Reports*/
{
    content: url('https://docs.tonkean.tech/images/home_bus_report_and_metrics.svg');
}

.cat-panel-6:before /*Resources*/
{
    content: url('https://docs.tonkean.tech/images/home_resources.svg');
}

.cat-panel-7:before /*Reference*/
{
    content: url('https://docs.tonkean.tech/images/home_reference.svg');
}

.cat-panel-8:before /*Release Notes*/
{
    content: url('https://docs.tonkean.tech/images/home_release_notes.svg');
}

.cat-panel-9:before /*Academy*/
{
    content: url('https://docs.tonkean.tech/images/home_tonkean_academy.svg');
}

.portal-single-publication h3 {
    margin: 0;
}

.featured-content-label 
{
    display:none;
}

.portal-contents featured-content 
{
    display:none;
}

.portal-contents .inner 
{
    display:none;
}

/* Search Results */
ul.searchresults .search-highlight
{
    font-style: normal;
}

/* Main topic sidenav */
.theme1 .site-sidebar .logo
{
    padding-top: 10%;
}

.btn, .form-control, button, input[type=text] /* Sidebar Search */
{
    border-radius: 8px 8px 8px 8px;
}

.form-control:focus
{
    border-color: var(--gray-4);
}

.search-field 
{
    color: var(--gray-2);
    background-color: unset;
    border: 2px;
    border-style: solid;
    border-color: var(--gray-4);
    border-radius: 8px 8px 8px 8px;
    margin-left: 16px;
    margin-right: 10px;
    width: -webkit-fill-available;
    max-width: 88%;
    padding: 8px;
}

.search-field.active
{
    color: var(--gray-2);
    background-color: unset;
    border: 2px;
    border-style: solid;
    border-color: var(--gray-4);
    border-radius: 8px 8px 8px 8px;
    margin-left: 6px;
    max-width: 96%;
    padding: 8px;
}

.search-field::placeholder{
    color:rgba(43, 43, 43, 0.7)
}

.site-sidebar /* Main sidenav */
{
    width: 20%;
    background-color: #FDFDFF;
    font-size: 16px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 25%);
}

@media only screen and (max-width: 768px) { /* for tablet */
    .site-sidebar{
        width: 30% !important;
    }
}

@media only screen and (max-width: 512px) { /* for mobile */
    .site-sidebar{
        width: 72% !important;
    }
}

.nav-site-sidebar
{
    margin-top: 0em;
    margin-left: 2em;
    margin-right: 0.5em;
    padding-top: 16px;
}

.nav-site-sidebar li a /* Removing animation to smooth out psuedo class pop-in */
{
    webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.nav-site-sidebar .active>a
{
    color: var(--tonk-primary);
    font-weight: 500;
    background-color: rgba(67, 68, 185, .1) !important;
    border-radius: 0 8px 8px 0;
}

/*.nav-site-sidebar .active>a.active /*Work toward getting the chevron box to not stay selected.
{
    color: var(--tonk-primary);
    font-weight: 500;
    background-color: rgba(67, 68, 185, .1);
    border-radius: 0 8px 8px 0;
}*/

.nav-site-sidebar .active>a.opened
{
    color: var(--tonk-primary);
    font-weight: 500;
    background-color: rgba(67, 68, 185, .1);
    border-radius: 0 8px 8px 0;
}

.nav-site-sidebar .active>a::before
{
    content: '';
    position: absolute;
    color: var(--tonk-primary);
    font-weight: 400;
    background-color: rgba(67, 68, 185, .1);
    width: 30px;
    height: 100%;
    left: -30px;
    top: 0px;
    vertical-align: inherit;
    border-radius: 8px 0 0 8px;
}

.nav-site-sidebar .active>a:hover
{
    color: var(--tonk-primary);
    font-weight: 500;
    background-color: rgba(67, 68, 185, .1);
    border-radius: 0 8px 8px 0;
}

.nav-site-sidebar .active>a:hover::before
{
    content: '';
    position: absolute;
    color: var(--tonk-primary);
    font-weight: 400;
    background-color: rgba(67, 68, 185, .1);
    width: 30px;
    height: 100%;
    left: -30px;
    top: 0px;
    vertical-align: inherit;
    border-radius: 8px 0 0 8px;
}

.nav-site-sidebar .opened>ul
{
    padding-left: 8px
}

.nav-site-sidebar ul a
{
    color: var(--gray-2);
    font-size: 16px;
    font-weight: 400;
    text-indent: 0em;
    list-style-position: outside;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-site-sidebar ul .active > a
{
    font-weight: 400;
    text-indent: 0em;
    color: var(--tonk-primary);
    font-weight: 500;
    background-color: rgba(67, 68, 185, .1);
    border-radius: 0 8px 8px 0;  
}

.nav-site-sidebar ul .active > a.active.opened
{
    font-weight: 400;
    text-indent: 0em;
    color: var(--tonk-primary);
    font-weight: 500;
    background-color: rgba(67, 68, 185, .1);
    border-radius: 0 8px 8px 0;  
}

.nav-site-sidebar ul li .active > a
{
    font-weight: 400;
    text-indent: 0em;
    border-radius: 0 8px 8px 0;
}

.nav-site-sidebar .topic-link
{
    color: var(--gray-2);
    font-weight: 400;
    padding-right: 5px;
    /*text-indent: -1em;*/
}

.nav-site-sidebar .topic-link:hover
{
    border-radius: 0 8px 8px 0;
}

/*.nav-site-sidebar .topic-link::before
{
    content: '';
    position: absolute;
    color: var(--tonk-primary);
    font-weight: 400;
    background-color: rgba(67, 68, 185, .1);
    width: 25px;
    height: 100%;
    left: -25px;
    top: 0px;
    vertical-align: inherit;
}*/

.nav-site-sidebar .topic-link:hover
{
    color: var(--tonk-primary);
    font-weight: 500;
    background-color: rgba(67, 68, 185, .1);
}

.nav-site-sidebar .topic-link:hover::before
{
    content: '';
    position: absolute;
    color: var(--tonk-primary);
    font-weight: 400;
    background-color: rgba(67, 68, 185, .1);
    width: 30px;
    height: 100%;
    left: -30px;
    top: 0px;
    vertical-align: inherit;
    border-radius: 8px 0 0 8px;
}

.nav-site-sidebar ul ul a
{
    font-size: 15px;
}

.nav-site-sidebar ul ul ul li
{
    color: var(--gray-2);
    font-weight: 400;
    font-size: 16px;
    text-indent: 0em;
    padding-left: 8px;
}


.theme1 .section-nav.nav li.active>a
{
    color: var(--tonk-primary);
    font-weight: 600;
}

.nav-site-sidebar>li>a
{
    text-indent: -0.6em;
}

.a.topic-link section
{
    /*text-indent: -1em;*/
}

.toc .glyphicon /* Sidenav Chevrons */
{
    position: inherit;
    margin-right: -8px;
    margin-left: -18px;
    /*right: 0;*/
    font-weight: 600;
}

.toc>li>.topic-link>.glyphicon
{
    margin-top: 0;
    margin-right: -8px;
    margin-left: -8px;
}


/* Collapsilble accordion section headers */
.panel-body
{
    padding: 0em 1em;
    padding-top: 0em;
    padding-right: 1em;
    padding-bottom: 0em;
    padding-left: 1em;
    margin-left: 10px;
}

.panel-heading h2
{
    margin-bottom: 20px;
}

.panel-heading h3
{
    font-size: 16pt;
}

.panel-heading :not(div).title:before
{
    margin-left: -25px;
}

.collapsing{
    position:relative;
    height:0;
    overflow:hidden;
    -webkit-transition-property:height, visibility;
    -o-transition-property:height, visibility;
    transition-property:height, visibility;
    -webkit-transition-duration:0.35s;
    -o-transition-duration:0.35s;
    transition-duration:0.35s;
    -webkit-transition-timing-function:ease;
    -o-transition-timing-function:ease;
    transition-timing-function:ease
}

/* Topic TOC */
.page-toc .section-nav-container
{
    padding-top: 30px;
    width: 16%;
}

.theme1 .section-nav.nav>li.active>a:before /* Active scroll indicator */
{
    background: var(--tonk-primary)
}

.section-nav.nav>li a 
{
    padding-left: 20px;
}

.section-nav.nav>li a:focus, .section-nav.nav>li a:hover
{
    opacity: none;
}


/* Footer */
.site-footer
{
    padding-bottom: 2%;
    padding-left: 2%;
}

#privacyLink
{
    float: right;
    margin-right: 4%;
}
    
#supportLink
{
    float: right;
    margin-right: 6%;
}

ul.pager
{
    visibility: hidden;
}

div.feedback-panel #email-feedback.no-voting, div.feedback-panel #email-feedback.feedback-link-visible
{
    content: "Want to provide feedback? Click here to suggest updates."
}

.portal-footer .inner, .site-footer .inner
{
    padding-left: 40px;
}

/*.portal-footer .inner:after //Working to show a Privacy link in footer
{
    content: "Privacy";
    display: inline-block;
}*/

.copyright
{
    padding-left: 10px;
}

/* Tables */
.table>tbody>tr>td
{
    padding-left: 10px;
}

.table-responsive
{
    display: contents;
}

.th
{
    background-color: var(--gray-5);
}

/* Images */
.text-wrap-left img
{
    float: left;
    padding: 10px;
    border: none;
}

.text-wrap-right img
{
    float: right;
    padding: 10px;
    border: none;
}

.materialboxed /* Screenshots */
{
    border-style: solid;
    border-width: 2px;
    border-color: var(--gray-4);
}

/*"In this section" auto-generated links*/
div.footer-content
{
    display: none;
}

div.section-toc section-toc-after
{
    display: none;
}

div.section-toc-title
{
    display: none;
}

div.section-toc > ul, .relationship-toc > ul
{
    display: none;
}

/* Tablet and Mobile top-nav bar w/hamburger */
@media only screen and (max-width: 768px) { /* for mobile */
    .tool-print.print-icon{
        padding: 0;
    }
}

/*Breadcrumb*/
.breadcrumb
{
    padding-top: 10px;
    margin-left: 4%;
}

.breadcrumb>li
{
    padding-bottom: 8px;
}

.breadcrumb>li+li::before /* breadcrumb seperator */
{
    content: "|\00a0";
}

@media only screen and (max-width: 430px) { /* for mobile */
    .breadcrumb{
        padding-left: 0;
        padding-bottom: 0;
    }
}

.fixed-toolbar .breadcrumb-container
{
    margin-left: -16%;
    margin-top: 0%;
}

@media only screen and (max-width: 768px) { /* for mobile */
    .fixed-toolbar .breadcrumb-container{
        margin-left: 0%;
    }
}

.topic-content .breadcrumb
{
    font-size: 16px;
    color: var(--gray-2);
}

/*@media (max-width: 1999px) {
    .breadcrumb{
        padding-left: 0;
        margin-left: -15px;
    }
}    */

.breadcrumb a
{
    color: var(--gray-2);
}

.topic-content .breadcrumb a
{
    color: var(--tonk-primary);
}

/* Email feedback*/
div.email-feedback
{

}

@media print {
    a[href]:after {
      content: none !important;
    }
  }

