﻿/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --white-color: #fff;
    --blue-color: #4070f4;
    --grey-color: #707070;
    --grey-color-light: #aaa;
    --green-color: #34D293;
}

.fto-defaultfont {
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #F8FAFC;
    transition: all 0.5s ease;
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    font-size: 14px;
}

    body.dark {
        background-color: #333;
    }

    body.dark {
        --white-color: #333;
        --blue-color: #fff;
        --grey-color: #f2f2f2;
        --grey-color-light: #aaa;
    }

.divcontentblock {
    background-color: white;
    border-radius: 5px;
    padding: 10px;
}

.finarato-bodyheader {
    padding: 10px;
}

/* navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background-color: var(--white-color);
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    z-index: 1036;
    box-shadow: 0 0 2px var(--grey-color-light);
}

.logo_item {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 22px;
    font-weight: 500;
    color: var(--grey-color);
}

.search_bar {
    height: 47px;
    max-width: 430px;
    width: 100%;
}

    .search_bar input {
        height: 100%;
        width: 100%;
        border-radius: 25px;
        font-size: 18px;
        outline: none;
        background-color: var(--white-color);
        color: var(--grey-color);
        border: 1px solid var(--grey-color-light);
        padding: 0 20px;
    }

.navbar_content {
    display: flex;
    column-gap: 25px;
}

.navbar_content i {
    cursor: pointer;
    font-size: 20px;
    color: var(--grey-color);
}

/* sidebar */
.sidebar {
    background-color: var(--white-color);
    width: 360px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    padding: 80px 20px;
    z-index: 1035;
    overflow-y: scroll;
    box-shadow: 0 0 1px var(--grey-color-light);
    transition: all 0.5s ease;
}

    .sidebar.close {
        padding: 60px 0;
        width: 80px;
    }

    .sidebar::-webkit-scrollbar {
        display: none;
    }

.menu_content {
    position: relative;
}

.menu_title {
    margin: 15px 0;
    padding: 0 20px;
    font-size: 18px;
}

.sidebar.close .menu_title {
    padding: 6px 30px;
}

.menu_title::before {
    color: var(--grey-color);
    white-space: nowrap;
}



.menu_editor::before {
    content: "Editor";
}

.menu_setting::before {
    content: "Setting";
}

.sidebar.close .menu_title::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 18px;
    border-radius: 12px;
    background: var(--grey-color-light);
}

.menu_items {
    padding: 0;
    list-style: none;
}

.navlink_icon {
    position: relative;
    font-size: 22px;
    min-width: 50px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 6px;
}

    .navlink_icon::before {
        content: "";
        position: absolute;
        height: 100%;
        width: calc(100% + 100px);
        left: -20px;
    }

    .navlink_icon:hover {
        background: var(--green-color);
    }

.sidebar .nav_link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 4px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--grey-color) !important;
    white-space: nowrap;
}

.sidebar.close .navlink {
    display: none;
}

.nav_link:hover {
    color: var(--white-color);
    background: var(--green-color);
}

.sidebar.close .nav_link:hover {
    background: var(--white-color);
}

.submenu_item {
    cursor: pointer;
}

.submenu {
    display: none;
}

.submenu_item .arrow-left {
    position: absolute;
    right: 10px;
    display: inline-block;
    margin-right: auto;
}

.sidebar.close .submenu {
    display: none;
}

.show_submenu ~ .submenu {
    display: block;
}

.show_submenu .arrow-left {
    transform: rotate(90deg);
}

.submenu .sublink {
    padding: 5px 15px 5px 52px;
}

.bottom_content {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 360px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.bottom {
    position: absolute;
    display: flex;
    align-items: center;
    left: 0;
    justify-content: space-around;
    padding: 18px 0;
    text-align: center;
    width: 100%;
    color: var(--grey-color);
    border-top: 1px solid var(--grey-color-light);
    background-color: var(--white-color);
}

    .bottom i {
        font-size: 20px;
    }

    .bottom span {
        font-size: 18px;
    }

.sidebar.close .bottom_content {
    width: 50px;
    left: 15px;
}

.sidebar.close .bottom span {
    display: none;
}

.sidebar.hoverable .collapse_sidebar {
    display: none;
}

#sidebarOpen {
    display: none;
}

@media screen and (max-width: 768px) {
    #sidebarOpen {
        font-size: 25px;
        display: block;
        margin-right: 10px;
        cursor: pointer;
        color: var(--grey-color);
    }

    .sidebar.close {
        left: -100%;
    }

    .search_bar {
        display: none;
    }

    .sidebar.close .bottom_content {
        left: -100%;
    }
}

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: var(--grey-color);
}
    a:hover {
        color: var(--grey-color);
        text-decoration: none;
    }


.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}


.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}

h3 {
    font-size: 21px;
}

.finarato-nav-link-small {
    font-size: 13px;
}
.finarato-nav-link-small:hover {
    color: #00bd8d;
    cursor: pointer;
}

.finarato-formcontainer-small {
    max-width: 500px;
}

.finarato-formcontainer-medium{
    max-width: 750px;
}

.finarato-formcontainer-large {
    max-width: 1500px;
}

.finarato-input-label {
    font-size: 12px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    width:120px;
}

.finarato-filter-label {
    font-size: 12px;
    padding: 0px;
    margin: 0px;
    var(--grey-color-light);
}

.finarato-input-label-medium {
    font-size: 12px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    width: 100px;
}

.finarato-input-label-small {
    font-size: 12px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    width: 34px;
}

.finarato-input-label-large {
    font-size: 12px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    width: 250px;
}

.finarato-input-label-verylarge {
    font-size: 12px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    width: 400px;
}

.finarato-input-large
{
    width: 250px;
}

.finarato-input-verylarge {
    width: 400px;
    height:30px;
}

.finarato-textarea {
    height: 100px;
    width: 400px;
    padding: 5px;
}

.finarato-link:link {
    color: #000009;
}

.finarato-link:hover {
    color: #00bd8d;
    cursor: pointer;
}

.k-i-star {
    color: #00bd8d;
}

.k-i-star-outline {
    color: #00bd8d;
}

/*indexview companyParameters , glAccounts, */
.finarato-viewcontainer {
    height: calc(100vh - 240px);
    width: calc(100vw - 110px);
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.finarato-viewcontainer-flexheight {
    width: calc(100vw - 110px);
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.finarato-viewcontainer-report {
    height: calc(100vh - 165px);
    width: calc(100vw - 110px);
    display: flex;
    flex-direction: column;
    margin: 0px;
}

.finarato-viewcontainer-nocompany {
    height: calc(100vh - 240px);
    width: calc(100vw - 110px);
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.finarato-divider {
    border-color: #00bd8d;
}

.finarato-hint {
    font-size:11px;
}

.finarato-button {
    color: var(--grey-color);
}

.finarato-button-small {
    height: 35px;
    width: 35px;
}

/* Finarato Report tabel styles
-------------------------------------------------- */

    table.fto-report-table thead {
        position: sticky;
        top: 0 !important;
        /*z-index: 100003;*/
        z-index: 1;
        opacity: 1;
        background-color: #ffffff;
        border-collapse: collapse;
        border-bottom: 1px solid #dee2e6;
        border-left: none;
        border-spacing: 0px;
    }

    /*eerste th van eerste header rij*/
        table.fto-report-table thead tr:first-child th:first-child {
            box-shadow: inset 1px 1px 0px 0px #dee2e6, inset -1px 0px 0px 0px #dee2e6;
            border-left: none !important;
            border-right: none !important;
            position: sticky;
            left: 0;
            top: 0;
            /*z-index: 100001;*/
            opacity: 1;
            background-color: #ffffff;
        }

    /*alle eerste th cellen in thead behalve van de eerste rij*/
        table.fto-report-table thead tr:not(:first-child) th:first-child {
            position: sticky;
            left: 0;
            top: 0;
            /*z-index: 100001;*/
            opacity: 1;
            background-color: #ffffff;
            box-shadow: inset 1px 0px 0px 0px #dee2e6, inset -1px 0px 0px 0px #dee2e6;
            border-left: none !important;
            border-right: none !important;
        }

    /*alle eerste cellen van elke tbody rij*/
table.fto-report-table tr td:first-child {
    position: sticky;
    left: 0;
    background-color: #ffffff;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}


    /*alle 2de th en td cellen*/
    table.fto-report-table tr td:nth-child(2), table.fto-report-table tr th:nth-child(2) { 
        border-left: none !important;
    }

    /*laatste header rij*/
    table.fto-report-table thead tr:last-of-type {
        box-shadow: inset 0px 0px #dee2e6, 0 1px #dee2e6 !important 
    }

    /*eerste header rij*/
    table.fto-report-table thead tr:first-of-type {
        box-shadow: inset 0px 1px #dee2e6, 0 0px #dee2e6 !important 
    }

    /*volledige tabel*/
    table.fto-report-table {
        border-top-style: none !important;
        border-left: none !important;
        white-space: nowrap !important;
    }

    /*alle header cellen*/
    table.fto-report-table th {
        border: none !important;
        border-inline-start: 1px solid #dee2e6 !important; /*border (enkel)links header cellen*/
        padding-left: 5px !important;
        padding-right: 5px !important;
        padding-top: 1px !important;
        padding-bottom: 1px !important;
    }

    /*alle td cellen*/
    table.fto-report-table td {
        vertical-align: middle !important;
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

/* Variant met wordwrap */
.fto-table-wrap td,
.fto-table-wrap th {
    white-space: normal !important;
    word-break: break-word;
    max-width: 200px;
}

.fto-table-wrap {
    table-layout: auto;
    word-wrap: break-word;
}


.center_navbar_vertically {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/*hover effect rapporttabel*/
#tree-table tbody tr:hover td {
    background-color: #bdbdbd !important;
    cursor: pointer;
}

/*begin stappen progress stijlen*/

.step-progress {
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    padding: 10px;
    width: 1024px;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

    .step::after {
        content: '';
        position: absolute;
        top: 16px;
        left: 50%;
        height: 2px;
        width: 100%;
        background-color: #ccc;
        z-index: -1;
    }

    .step:first-child::after {
        left: 50%;
        width: 50%;
    }

    .step:last-child::after {
        width: 50%;
    }

.circle {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    background-color: #ccc;
    border-radius: 50%;
    line-height: 30px;
    color: white;
    font-weight: bold;
}

.label {
    margin-top: 8px;
    font-size: 14px;
    color: #888;
}

.step.active .circle {
    background-color: #00b894;
}

.step.active .label {
    font-weight: bold;
    color: #00b894;
}

/*einde stappen progress stijlen*/

.centered-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fto-grid-mono,
.fto-grid-mono .k-grid,
.fto-grid-mono .k-table,
.fto-grid-mono .k-table td,
.fto-grid-mono .k-table th,
.fto-grid-mono .k-input,
.fto-grid-mono .k-pager,
.fto-grid-mono .k-button {
    font-family: "JetBrains Mono", "Fira Code", "Consolas", "Menlo", monospace;
    /* Zorgt voor uitlijning van cijfers (tabular figures) */
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
}

.fto-grid-small-headers .k-grid-header th,
.fto-grid-small-headers .k-table-header th {
    font-size: 0.9rem; /* iets kleiner, pas aan naar smaak */
    /*padding-bottom: 0.25rem;*/
}
