.b-table {
    transition: opacity 86ms ease-out
}

@media screen and (min-width: 952px), print {
    .b-table .table-mobile-sort {
        display: none
    }
}

.b-table .icon {
    transition: transform 150ms ease-out,opacity 86ms ease-out
}

.b-table .icon.is-desc {
    transform: rotate(180deg)
}

.b-table .icon.is-expanded {
    transform: rotate(90deg)
}

.b-table .table {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    border-collapse: separate
}

.b-table .table th {
    font-weight: 600
}

.b-table .table th .th-wrap {
    display: flex;
    align-items: center
}

.b-table .table th .th-wrap .icon {
    margin-left: .5rem;
    margin-right: 0;
    font-size: 1rem
}

.b-table .table th .th-wrap.is-numeric {
    flex-direction: row-reverse;
    text-align: right
}

.b-table .table th .th-wrap.is-numeric .icon {
    margin-left: 0;
    margin-right: .5rem
}

.b-table .table th .th-wrap.is-centered {
    justify-content: center;
    text-align: center
}

.b-table .table th.is-current-sort {
    border-color: #7a7a7a;
    font-weight: 700
}

.b-table .table th.is-sortable:hover {
    border-color: #7a7a7a
}

.b-table .table th.is-sortable,.b-table .table th.is-sortable .th-wrap {
    cursor: pointer
}

.b-table .table th .multi-sort-cancel-icon {
    margin-left: 10px
}

.b-table .table th.is-sticky {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 3 !important;
    background: #fff
}

.b-table .table tr.is-selected .checkbox input:checked+.check {
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%2300d1b2' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center
}

.b-table .table tr.is-selected .checkbox input+.check {
    border-color: #fff
}

.b-table .table tr.is-empty:hover {
    background-color: transparent
}

.b-table .table .is-chevron-cell,.b-table .table .is-checkbox-cell {
    width: 40px
}

.b-table .table .is-chevron-cell {
    vertical-align: middle
}

.b-table .table .is-checkbox-cell .checkbox {
    vertical-align: middle
}

.b-table .table .is-checkbox-cell .checkbox.b-checkbox {
    margin-right: 0
}

.b-table .table .is-checkbox-cell .checkbox .check {
    transition: none
}

@media screen and (min-width: 952px) {
  .b-table .table tr.child-row td:first-child {
      padding-left: 50px;
      position: relative;
  }

  .b-table .table tr.child-row td:first-child::before {
      content: "└─";
      position: absolute;
      left: 16px;
      color: #95a5a6;
  }
}

.b-table .table tr.detail {
    box-shadow: inset 0 1px 3px #dbdbdb;
    background: #fafafa
}

.b-table .table tr.detail .detail-container {
    padding: 1rem
}

.b-table .table:focus {
    border-color: #3273dc;
    box-shadow: 0 0 0 0.125em rgba(50,115,220,0.25)
}

.b-table .table.is-bordered th.is-current-sort,.b-table .table.is-bordered th.is-sortable:hover {
    border-color: #dbdbdb;
    background: #f5f5f5
}

.b-table .table td.is-sticky {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 1;
    background: #fff
}

.b-table .table td.is-image-cell .image {
    margin: 0 auto;
    width: 1.5rem;
    height: 1.5rem
}

.b-table .table td.is-progress-cell {
    min-width: 5rem;
    vertical-align: middle
}

.b-table .table-wrapper.has-sticky-header {
    height: 300px;
    overflow-y: auto
}

@media screen and (max-width: 951px) {
    .b-table .table-wrapper.has-sticky-header.has-mobile-cards {
        height: initial !important;
        overflow-y: initial !important
    }
}

.b-table .table-wrapper.has-sticky-header tr:first-child th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff
}

@media screen and (max-width: 951px) {
    .b-table .table-wrapper.has-mobile-cards thead {
        display: none
    }

    .b-table .table-wrapper.has-mobile-cards tfoot th {
        border: 0;
        display: inherit
    }

    .b-table .table-wrapper.has-mobile-cards tr {
        box-shadow: 0 2px 3px rgba(10,10,10,0.1),0 0 0 1px rgba(10,10,10,0.1);
        max-width: 100%;
        position: relative;
        display: block
    }

    .b-table .table-wrapper.has-mobile-cards tr td {
        border: 0;
        display: inherit
    }

    .b-table .table-wrapper.has-mobile-cards tr td:last-child {
        border-bottom: 0
    }

    .b-table .table-wrapper.has-mobile-cards tr:not(:last-child) {
        margin-bottom: 1rem
    }

    .b-table .table-wrapper.has-mobile-cards tr:not([class*="is-"]) {
        background: inherit
    }

    .b-table .table-wrapper.has-mobile-cards tr:not([class*="is-"]):hover {
        background-color: inherit
    }

    .b-table .table-wrapper.has-mobile-cards tr.detail {
        margin-top: -1rem
    }

    .b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td {
        display: flex;
        width: auto;
        justify-content: space-between;
        text-align: right;
        border-bottom: 1px solid #f5f5f5
    }

    .b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td:before {
        content: attr(data-label);
        font-weight: 600;
        padding-right: .5rem;
        text-align: left
    }

    .b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td.is-image-cell .image {
        width: 6rem;
        height: 6rem;
        margin: 0 auto .5rem
    }

    .b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td.is-progress-cell span,.b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td.is-progress-cell progress {
        display: flex;
        width: 45%;
        align-items: center;
        align-self: center
    }

    .b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td.is-checkbox-cell,.b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td.is-image-cell {
        border-bottom: 0 !important
    }

    .b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td.is-checkbox-cell:before,.b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td.is-actions-cell:before {
        display: none
    }

    .b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td.is-label-hidden:before,.b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td.is-image-cell:before {
        display: none
    }

    .b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td.is-label-hidden span {
        display: block;
        width: 100%
    }

    .b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td.is-label-hidden.is-progress-col progress {
        width: 100%
    }
}

.b-table .table-wrapper.is-card-list thead {
    display: none
}

.b-table .table-wrapper.is-card-list tfoot th {
    border: 0;
    display: inherit
}

.b-table .table-wrapper.is-card-list tr {
    box-shadow: 0 2px 3px rgba(10,10,10,0.1),0 0 0 1px rgba(10,10,10,0.1);
    max-width: 100%;
    position: relative;
    display: block
}

.b-table .table-wrapper.is-card-list tr td {
    border: 0;
    display: inherit
}

.b-table .table-wrapper.is-card-list tr td:last-child {
    border-bottom: 0
}

.b-table .table-wrapper.is-card-list tr:not(:last-child) {
    margin-bottom: 1rem
}

.b-table .table-wrapper.is-card-list tr:not([class*="is-"]) {
    background: inherit
}

.b-table .table-wrapper.is-card-list tr:not([class*="is-"]):hover {
    background-color: inherit
}

.b-table .table-wrapper.is-card-list tr.detail {
    margin-top: -1rem
}

.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td {
    display: flex;
    width: auto;
    justify-content: space-between;
    text-align: right;
    border-bottom: 1px solid #f5f5f5
}

.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td:before {
    content: attr(data-label);
    font-weight: 600;
    padding-right: .5rem;
    text-align: left
}

.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td.is-image-cell .image {
    width: 6rem;
    height: 6rem;
    margin: 0 auto .5rem
}

.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td.is-progress-cell span,.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td.is-progress-cell progress {
    display: flex;
    width: 45%;
    align-items: center;
    align-self: center
}

.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td.is-checkbox-cell,.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td.is-image-cell {
    border-bottom: 0 !important
}

.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td.is-checkbox-cell:before,.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td.is-actions-cell:before {
    display: none
}

.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td.is-label-hidden:before,.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td.is-image-cell:before {
    display: none
}

.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td.is-label-hidden span {
    display: block;
    width: 100%
}

.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td.is-label-hidden.is-progress-col progress {
    width: 100%
}

.b-table.is-compact .table td,
.b-table.is-compact .table th {
  padding: 0.5em 1.0em;
  line-height: 1.2;
}

.b-table.is-compact .table {
  border-spacing: 0;
  border-collapse: collapse;
}

.b-table.is-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.5
}

.b-table.is-loading:after {
    animation: spinAround 500ms infinite linear;
    border: 2px solid #dbdbdb;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 1em;
    position: relative;
    width: 1em;
    position: absolute;
    top: 4em;
    left: calc(50% - 2.5em);
    width: 5em;
    height: 5em;
    border-width: 0.25em
}

.b-table.has-pagination .table-wrapper {
    margin-bottom: 0
}

.b-table.has-pagination .table-wrapper+.notification {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.b-table .table {
    border: 0;
    border-radius: 0
}

.b-table .table-wrapper {
    margin-bottom: 0
}

.b-table .table-wrapper+.level {
    padding: 1.125rem 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0;
    border-top: rgba(24,28,33,0.06);
    background: #f5f5f5
}

.b-table .table-wrapper+.level .pagination-link {
    background: #fff;
    color: #363636;
    border-color: #dbdbdb
}

.b-table .table-wrapper+.level .pagination-link.is-current {
    border-color: #4a4a4a
}

.b-table .table-wrapper+.level .pagination-previous,.b-table .table-wrapper+.level .pagination-next,.b-table .table-wrapper+.level .pagination-link {
    border-color: #dbdbdb;
    color: #2e323a
}

.b-table .table-wrapper+.level .pagination-previous[disabled],.b-table .table-wrapper+.level .pagination-next[disabled],.b-table .table-wrapper+.level .pagination-link[disabled] {
    background-color: transparent
}

@media screen and (max-width: 951px) {
    .card.has-table .b-table .table-wrapper+.level .level-left+.level-right {
        margin-top: 0
    }

    .card.has-mobile-sort-spaced .b-table .field.table-mobile-sort {
        padding-top: .75rem
    }

    .b-table .field.table-mobile-sort {
        padding: 0 .75rem
    }

    .b-table .table-wrapper.has-mobile-cards tr {
        box-shadow: 0 2px 3px rgba(10,10,10,0.1);
        margin-bottom: 3px !important
    }

    .b-table .table-wrapper.has-mobile-cards td.is-progress-col span,.b-table .table-wrapper.has-mobile-cards td.is-progress-col progress {
        display: flex;
        width: 45%;
        align-items: center;
        align-self: center
    }

    .b-table .table-wrapper.has-mobile-cards td.checkbox-cell,.b-table .table-wrapper.has-mobile-cards td.is-image-cell {
        border-bottom: 0 !important
    }

    .b-table .table-wrapper.has-mobile-cards td.checkbox-cell:before,.b-table .table-wrapper.has-mobile-cards td.is-actions-cell:before {
        display: none
    }

    .b-table .table-wrapper.has-mobile-cards td.has-no-head-mobile:before {
        display: none
    }

    .b-table .table-wrapper.has-mobile-cards td.has-no-head-mobile span {
        display: block;
        width: 100%
    }

    .b-table .table-wrapper.has-mobile-cards td.has-no-head-mobile.is-progress-col progress {
        width: 100%
    }

    .b-table .table-wrapper.has-mobile-cards td.has-no-head-mobile.is-image-cell .image {
        width: 25vw;
        height: auto;
        margin: 0 auto .375rem
    }
}

.table {
    background-color: #fff;
    color: #363636
}

.table td,.table th {
    border: 1px solid #d8d8d8;
    border-width: 0 0 1px;
    padding: 1.2em 1.0em;
    vertical-align: top
}

.table td.is-white,.table th.is-white {
    background-color: #fff;
    border-color: #fff;
    color: #0a0a0a
}

.table td.is-black,.table th.is-black {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
    color: #fff
}

.table td.is-light,.table th.is-light {
    background-color: #f5f5f5;
    border-color: #f5f5f5;
    color: rgba(0,0,0,0.7)
}

.table td.is-dark,.table th.is-dark {
    background-color: #363636;
    border-color: #363636;
    color: #fff
}

.table td.is-primary,.table th.is-primary {
    background-color: #1859A4;
    border-color: #1859A4;
    color: #fff
}

.table td.is-link,.table th.is-link {
    background-color: #3273dc;
    border-color: #3273dc;
    color: #fff
}

.table td.is-info,.table th.is-info {
    background-color: #cbf8b5;
    border-color: #cbf8b5;
    color: #fff
}

.table td.is-success,.table th.is-success {
    background-color: #48c774;
    border-color: #48c774;
    color: #fff
}

.table td.is-warning,.table th.is-warning {
    background-color: #fffd9f;
    border-color: #fffd9f;
    color: rgba(0,0,0,0.7)
}

.table td.is-danger,.table th.is-danger {
    background-color: #f14668;
    border-color: #f14668;
    color: #fff
}

.table td.is-narrow,.table th.is-narrow {
    white-space: nowrap;
    width: 1%
}

.table td.is-selected,.table th.is-selected {
    background-color: #1859A4;
    color: #fff
}

.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong {
    color: currentColor
}

.table td.is-vcentered,.table th.is-vcentered {
    vertical-align: middle
}

.table th {
    color: #363636
}

.table th:not([align]) {
    text-align: inherit
}

.table tr.is-selected {
    background-color: #1859A4;
    color: #fff
}

.table tr.is-selected a,.table tr.is-selected strong {
    color: currentColor
}

.table tr.is-selected td,.table tr.is-selected th {
    border-color: #fff;
    color: currentColor
}

.table thead {
    background-color: rgba(0,0,0,0)
}

.table thead td,.table thead th {
    border-width: 0 0 2px;
    color: #363636
}

.table thead tr {
    background-color: #f5f5f5;
}

.table tfoot {
    background-color: rgba(0,0,0,0)
}

.table tfoot td,.table tfoot th {
    border-width: 2px 0 0;
    color: #363636
}

.table tbody {
    background-color: rgba(0,0,0,0)
}

.table tbody th,td {
    border-bottom-width: 1px
}

.table tbody tr:last-child td,.table tbody tr:last-child th {
    border-bottom-width: 0
}

.table.is-bordered td,.table.is-bordered th {
    border-width: 1px
}

.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th {
    border-bottom-width: 1px
}

.table.is-fullwidth {
    width: 100%
}

.table tbody tr.is-clickable:hover {
    cursor: pointer;
    color: #363636;
}

.table tbody tr.is-clickable td:first-child {
}

.table tbody tr.is-clickable td:first-child:hover {
    color: #363636;
}

.table.is-hoverable tbody tr:not(.is-selected):hover {
    background-color: #fafafa
}

.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
    background-color: #fafafa
}

.table.is-narrow td,.table.is-narrow th {
    padding: 0.25em 0.5em
}

.table-container {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    overflow-y: hidden;
    max-width: 100%
}

/* Drag and drop row styling */
.table tbody tr.is-dragging {
    opacity: 0;
}
