.bm__report {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    width: 100%;
}

.bm__report__wide {
    display: block;
    width: 100%;
}

.bm__report__narrow {
    display: none;
    width: 100%;
}

.bm__report table {
    width: 100%;
    border-collapse: collapse;
}

.bm__report div {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/*.bm__report div div {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    padding-bottom: 0.5rem;
    border: 1px solid blue;
}*/

.bm__report div h1,
.bm__report div h2 {
    font-family: var(--report-header-font-family);
    text-align: left;
    font-style: normal;
    font-weight: 750;
    font-size: 18px;
    line-height: 18px;
    color: var(--report-header-textcolor);
    margin-bottom: 0.5rem;
    width: 100%;
}

.bm__report div h2 {

    font-weight: 680;
    font-size: 16px;
    line-height: 16px;
}

.bm__report table thead tr {
    border-bottom: 1px solid var(--report-header-bordercolor);
}

.bm__report table thead td {
    font-family: var(--report-header-font-family);
    text-align: left;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: var(--report-header-textcolor);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.bm__report table thead td img {
    margin-left: 6px;
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.bm__report table tbody tr {
    border-bottom: 1px solid var(--report-body-bordercolor);
}

.bm__report table tbody td {
    font-family: var(--report-body-font-family);
    text-align: left;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--report-body-textcolor);

    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 10px;
    padding-right: 10px;

}

.bm__report__datetime-col {
    width: 1%;
    white-space: nowrap;
}

.bm__report__datetime-col-mobile {
    display: none;
}

.bm__report__description-col {
    width: 100%;
}

.bm__report__description-col h1 {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 4px;
}

.bm__report__description-col p {
    font-weight: 300;
    font-size: 13px;
    line-height: 13px;
}

.bm__report__description-col span {
    /* Prevent selection */
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bm__report__head-col,
.bm__report__subhead-col,
.bm__report__payment-col {
    min-width: 140px;
}

.bm__report__text-col {
    min-width: 140px;
}

.bm__report__amount-col {
    width: 1%;
    white-space: nowrap;
}

.bm__report__amount-col span {
    position: relative;
    float: right;
}

.bm__report__buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
}

.bm__report__buttons input[type=button] {
    margin-left: 0px;
    margin-right: 0px;
    margin: 4px;
    width: 132px;
    height: 34px;
    font-family: var(--form-button-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: var(--form-button-textcolor);
    background: var(--form-button-bg);
    border: 1px solid var(--form-button-bordercolor);
    cursor: pointer;
    border-radius: 4px;
    z-index: 3;
}

.bm__report__buttons input[type=button]:hover {
    border: 1px solid var(--form-button-bordercolor-hover);
    background: var(--form-button-bg-hover);
    color: var(--form-button-textcolor-hover);
}


.bm__report__title-bar__print {
    display: flex;
    margin-left: auto;
    margin-right: 0;
}

.bm__report__title-bar__print span {
    margin: 4px;
    border: 1px solid var(--report-body-bgcolor);
    border-radius: 16px;
    height: 34px;
}

.bm__report__title-bar__print img {
    margin: 4px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.bm__report__title-bar__print span:hover {
    border: 1px solid var(--report-body-bordercolor);
    background-color: var(--report-body-bordercolor);
}

.bm__report__print__info {
    display: flex;
    border: 1px solid var(--report-body-bordercolor);
    border-radius: 4px;
    flex-direction: column;
    margin: 1rem;
    margin-bottom: 0;
    padding: 10px;
}

.bm__report__print__info div {
    display: flex;
    flex-direction: column;
}

.bm__report__print__info span {
    display: flex;
    padding: 5px; 
}

.bm__report__print__info h1, h2 {
    font-family: var(--report-body-font-family);
    text-align: left;
    font-style: normal;
    font-size: 14px;
    line-height: 14px;
    color: var(--report-body-textcolor);
}

.bm__report__print__info h1 {
    width: 150px;
    font-weight: 600;
}

.bm__report__print__info h2 {
    width: 200px;
    font-weight: 400;
}

.bm__report__title-bar__logo {
    margin-right: 15px;
}

.bm__report__title-bar__logo img {
    margin: 4px;
    width: 56px;
    height: 56px;
    cursor: pointer;
}

/**
 * Media: Mobile Phone
 */
 @media screen and (max-width: 550px) {

    .bm__report__filter-button {
        display: block;
    }

    .bm__report__wide {
        display: none;
    }
    .bm__report__narrow {
        display: block;
    }

    .bm__report__datetime-col-mobile {
        display: block;
        width: 1%;
        white-space: nowrap;
        
    }

    .bm__report__datetime-col {
        display: none;
    }

    .bm__report__head-col,
    .bm__report__subhead-col,
    .bm__report__payment-col {
        display: none;
    }
    
    .bm__report__buttons {
        margin-left: auto;
        margin-right: auto;
    }

    .bm__report__title-bar__print {
      display: none;
    }  
 }

 
 /**
 * Media: Print
 */
 @media print {
    @page { margin: 0.8cm; }
    /**body { margin: 1.6cm; }*/

    .bm__report__title-bar__print {
      visibility: hidden;
    }    

    .bm__form__title-bar h1 {
      font-size: 36px;
      line-height: 36px;
    }

    .bm__report__wide {
        padding-bottom: 100px;
    }

    .bm__footer__links__copyright {
        position: fixed;
        bottom: 0;
    }
}

