:root {
    --header-height: 70px;
    --docs-menu-block-height: 40px;

    --gap-standard: 1.5rem;
    --gap-p75: .75rem;
    --gap-p5: .5rem;

    /* Colors */
    --dark-gray: #dcdcdc;
    --light-gray: #f6f7f8;
    --green: #009444;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    background-color: var(--light-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: inherit;
    margin-bottom: 1rem
}

strong,
b {
    font-weight: 700;
}

p a,
a {
    color: #009444;
    text-decoration: none;
}

img {
    max-width: 170px;
}

label {
    color: #000000;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

select {
    cursor: pointer;
}

/**************************************
 * IDs (or specific elements)
**************************************/

#blockchainSelect {
    background-color: var(--dark-gray);
    width: fit-content;
}

#blockchainSelectContainer {
    gap: var(--gap-p5);
}

#datarecord_transaction_add {
    display: flex;
        flex-direction: column;
}

#header {
    height: var(--header-height);
}

#metadata-pairs-container {
    gap: var(--gap-p5);
}

#txtTransactionsAddBlockchain, #txtTransactionsAddJSONBlockchain {
    width: 200px;
}

/* below md breakpoint */
@media (max-width: 991px) {
    #dashboard, #docs {
        display: flex;
            flex-direction: column;
    }
}

/* above md breakpoint */
@media (min-width: 992px) {
    #dashboard, #docs {
        display: grid;
            grid-template-areas: "leftColumn rightColumn";
            gap: var(--gap-standard);
    }

    #dashboard {
        grid-template-columns: 3fr 9fr;
    }

    #docs {
        grid-template-columns: 2fr 10fr;
    }

    #dashboardLeftColumn, #docsLeftColumn {
        position: -webkit-sticky;
        position: sticky;
        display: block;
        overflow-y: auto;
    }

    #dashboardLeftColumn {
        top: calc(3rem + var(--header-height));
        height: calc(100vh - var(--header-height));
    }

    #docsLeftColumn {
        top: calc(3rem + var(--header-height));
        height: calc(100vh - var(--header-height) - 3rem);
    }
}

/**************************************
 * UTILITY CLASSES
**************************************/

.dashboard-box {
    background-color: #FFFFFF;
    border: 1px solid #d9d9d9;
    padding: var(--gap-standard) 0;
}

.docs_menu li {
    height: var(--docs-menu-block-height);
}

.fa-signal, .fa-filter {
    margin-right: 20px;
}

.form-group {
    margin-bottom: 1rem;
}

.gap-p5 {
    gap: var(--gap-p5);
}

.grid11 { /* Two equally sized columns. */
    display: grid;
        grid-template-columns: 1fr 1fr;
}

.grid-left-column {
    grid-area: leftColumn;
    gap: var(--gap-standard);
}

.grid-right-column {
    grid-area: rightColumn;
}

.metadata-row-delete-button {
    background-color: inherit;
    border: none;
    box-shadow: none;
}

.no-margin {
    margin: 0;
}

.switch-button-label {
    /* This rule makes sure the text color defaults correctly. */
    color: var(--white);
}

/**************************************
 * UNSORTED
**************************************/

.nav {
    background-color: #000000 !important;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.top-menu ul li.nav-item a {
    font-size: 12px;
    font-weight: 700;
    color: #f3f4f5;
    text-transform: uppercase;
    text-decoration: none;
}

.top-menu ul li.nav-item ul.dropdown-menu {
    padding: 10px;
}

.top-menu ul li.nav-item a.dropdown-item {
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    text-transform: none;
    text-decoration: none;
}

.top-menu ul li a span {
    text-transform: none;
}

/* Overriding Boostrap */
.text-bg-dark {
    background-color: #000000 !important;
    /* color: #f3f4f5 !important; */
}

/* Overriding Boostrap */
.offcanvas-header {
    background-color: #000000;
}

.nav-menu ul {
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    list-style: none;
    display: inline-block;
    margin: 0 10px;
}

.nav-menu ul li:last-child {
    margin-right: 0;
}

.nav-menu ul li a {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
}

.nav-menu ul li.active a {
    font-weight: 700;
}

.login-box {
    background-color: #FFFFFF;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
    background: #e9ecef;
}

.form-control,
.btn {
    font-size: 1em;
}

.btn i {
    margin-right: 10px;
}

.btn strong {
    font-weight: 600;
}

.btn {
    box-shadow: none !important;
}

.btn.btn-primary,
.btn.btn-primary:active {
    background-color: #009444 !important;
    border-color: #009444 !important;
}

.btn.btn-secondary,
.btn.btn-secondary:active {
    background-color: #009444 !important;
    border-color: #009444 !important;
}

.breadcrumb {
    background-color: transparent;
    font-size: 1rem;
    padding: .4rem 0;
    color: #000000;
    font-weight: 700;
}

.breadcrumb-item+.breadcrumb-item::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    color: #a0a0a0;
}

.breadcrumb a {
    text-decoration: none !important;
    color: #000000;
}

.breadcrumb-item.active {
    color: #000000;
}

.file-search {
    position: relative;
}

.file-search button {
    border: none;
    background: transparent;
    color: #000000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2%;
    line-height: 0;
    outline: none !important;
}

table.dataTable#datarecords thead .sorting,
table.dataTable#datarecords thead .sorting_asc,
table.dataTable#datarecords thead .sorting_desc,
table.dataTable#usersList thead .sorting,
table.dataTable#usersList thead .sorting_asc,
table.dataTable#usersList thead .sorting_desc {
    background: transparent;
}

table.dataTable#datarecords thead th,
table.dataTable#datarecords thead td,
table.dataTable#usersList thead th,
table.dataTable#usersList thead td {
    border-bottom: none;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

table.dataTable#datarecords tbody tr td,
table.dataTable#usersList tbody tr td {
    border-top: 1px solid #dadbdb;
    font-size: 12px;
    color: #000000;
    cursor: pointer;
}

table.dataTable.no-footer#datarecords,
table.dataTable.no-footer#usersList {
    border-bottom: 1px solid #dadbdb;
}

table.dataTable#datarecords tbody th,
table.dataTable#datarecords tbody td,
table.dataTable#datarecords thead th,
table.dataTable#datarecords thead td,
table.dataTable#usersList tbody th,
table.dataTable#usersList tbody td,
table.dataTable#usersList thead th,
table.dataTable#usersList thead td {
    padding: 10px 15px;
}

table.dataTable thead th.file__name {
    width: 40% !important;
}

table.dataTable thead th.file__created {
    width: 25% !important;
}

table.dataTable thead th.file__nmodified {
    width: 35% !important;
}

#datarecords_filter.dataTables_filter,
#usersList_filter.dataTables_filter,
#report_filter.dataTables_filter,
#metaList_filter.dataTables_filter {
    display: none;
}

.folder-side h6 {
    color: #000000;
    font-size: 14px;
}

.folder-side ul {
    margin: 0 0 0 1rem;
    padding: 0;
    list-style: none;
}

.folder-side ul li {
    display: block;
    font-size: 14px;
    position: relative;
}

.folder-side ul li a {
    display: block;
    color: #000000;
    text-decoration: none !important;
    margin: 5px 0;
    font-weight: 400;
}

.folder-side ul li a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f07b";
    color: #000000;
    margin-right: 10px;
}

.folder-side ul>li ul {
    display: none;
    margin-left: 1.5rem;
}

.folder-side ul li.open>ul {
    display: block;
}

.folder-side ul>li>ul li:before {
    content: "";
    width: 10px;
    height: 1px;
    position: absolute;
    background-color: #000000;
    left: -15px;
    top: 17px;
}

.folder-side ul>li>ul li:after {
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    background-color: #000000;
    left: -15px;
    top: 8px;
}

.folder-side ul>li>ul>li a {
    display: inline-block;
}

.folder-side li.open>a:before {
    content: "\f07c";
}

.folder-side ul#folders>li:first-child>a:before {
    content: "\f0a0";
}

.folder-side li.activity>a:before {
    content: "\f012";
}

.create_wrap {
    position: relative;
}

.create_wrap .create_hover {
    display: none;
    position: absolute;
    border: 1px solid #000000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 98%;
    z-index: 99;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
}

.create_wrap:hover .create_hover {
    display: block;
}

.create_wrap .create_hover a {
    padding: 10px 20px;
    font-size: 14px;
    background-color: #f3f4f5;
    display: block;
    color: #000000;
    text-decoration: none;
    text-align: center;
}

.create_wrap .create_hover a:first-child {
    border-bottom: 1px solid #000000;
}

.create_wrap .create_hover a i {
    margin-right: 10px;
}

.modal-backdrop {
    background-color: #000000;
}

h6.modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

h5.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
}

.modal-body h4 {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
}

.modal-body h2 {
    color: #333333;
    font-weight: 600;
    font-size: 28px;
}

.transaction {
    border: 1px solid #d9d9d9;
    padding: 0.8rem;
    margin: 15px auto;
}

.transaction p {
    font-size: 12px;
    font-weight: 400;
}

.transaction p a {
    color: #009444;
    text-decoration: none;
}

.modal-dialog {
    margin: 2rem auto;
}

.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 18px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    -webkit-transition: .4s;
    transition: .4s;
    border: 1px solid #ccc;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 1px;
    bottom: 1px;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #009444;
    border-color: #009444;
}

input:checked+.slider:before {
    -webkit-transform: translateX(14px);
    -ms-transform: translateX(14px);
    transform: translateX(14px);
    background-color: #FFF;
    left: 0;
}

/* Rounded sliders */
.slider.round {
    border-radius: 10px;
}

.slider.round:before {
    border-radius: 50%;
}

.user_icons a {
    color: #000000;
    font-size: 14px;
}

ul.admin_menu {
    margin: 0;
    padding: 0;
    margin-bottom: var(--gap-standard);
}

ul.admin_menu li {
    list-style: none;
    display: block;
}

ul.admin_menu>li>a {
    display: block;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin: 15px 0;
}

.modal-body .user_access h4 {
    font-size: 14px;
    font-weight: 400;
}

.modal-body .user_access h4 strong {
    font-weight: 600;
}

.modal-body .user_access .access_info {
    margin-top: 20px;
    margin-bottom: 20px;
}

.modal-body .user_access .access_info p {
    font-size: 12px;
    font-weight: 400;
    margin: 5px 0;
}

.report_wrap {
    border: 1px solid #cccccc;
    border-radius: 10px;
    background-color: #FFFFFF;
}

#report_wrapper,
#metaList_wrapper {
    font-weight: 400;
}

.page-item.active .page-link {
    background-color: #009444 !important;
    border-color: #009444 !important;
    box-shadow: none !important;
}

.page-link {
    box-shadow: none !important;
    color: #009444;
}

table.metadata {
    font-weight: 400;
    width: 100%;
}

table.metadata tr {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

table.metadata tr:last-child {
    border-bottom: none;
}

table.metadata thead {
    border-bottom: 2px solid #dee2e6;
}

table.metadata th,
table.metadata td {
    padding: 15px 20px;
}

.access_info_wrap {
    border: 1px solid #cccccc;
    background-color: #FFFFFF;
}

.access_info_wrap .access_info {
    display: flex;
}

.access_info_wrap .access_info .col-ac:not(:last-child) {
    margin-right: 15px;
}

.access_info_wrap .access_info {
    margin-bottom: 20px;
}

.access_info_wrap .access_info h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.access_info_wrap .access_info p {
    font-size: 12px;
    font-weight: 400;
    margin: 5px 0;
}

#metaList a {
    color: #000;
}

#actions .accordion-item h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

#actions .accordion-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

#actions .accordion-item p {
    font-size: 12px;
    font-weight: 400;
    margin: 5px 0;
}

#actions .accordion {
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .login {
        min-height: calc(100% - 154px);
        min-height: calc(100vh - 154px);
        display: flex;
        align-items: center;
    }

    .login-box {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }

    .py-8 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }

    .modal-dialog {
        margin: 10rem auto;
    }
}

@media screen and (max-width: 767px) {

    .nav-menu {
        margin-top: 25px;
    }

    .text-left,
    .text-right {
        text-align: center !important;
    }

    .transaction p {
        font-size: 9px;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }
}