@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
.dh img {
    max-width: 100%;
}

.dh button {
    border: 0;
    outline: 0;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    background: transparent;
}

.dh th {
    text-align: left;
    font-weight: 500;
    border: none;
}

.dh th span, td span {
    display: block;
}

.dh table {
    border-collapse: collapse;
    border-spacing: 0;
}

.dh ::-webkit-scrollbar {
    display: none;
}

.dh .bg-green, .btn-primary {
    background-color: #6dea9e;
}

.dh .bg-blue {
    background-color: #fae2705e;
}

.dh .bg-yellow {
    background-color: #f6cc0491;
}

.dh .text-lg {
    font-size: 1.802rem;
}

@media screen and (max-width: 860px) {
    .dh .text-lg {
        font-size: 1.602rem;
    }
}

.dh .btn {
    font-weight: 700;
    font-size: 1rem;
    text-transform: capitalize;
    transition: 0.5ms ease;
}

@media screen and (max-width: 860px) {
    .dh .btn {
        font-size: 0.85rem;
    }
}

.dh .btn-primary {
    color: #f6cc04;
}

.dh .btn-primary:hover, .btn-primary:active {
    background-color: #6dea9fda;
}

.dh .main_ {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr minmax(150px, 25%);
    grid-template-rows: 95px auto;
    -webkit-border-before: 7px solid #f6cc04;
    border-block-start: 7px solid #f6cc04;
}

@media screen and (max-width: 860px) {
    .dh .main_ {
        grid-template-columns: 100%;
    }
}

.dh .header {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(65px, 10%) 1fr;
    grid-template-rows: inherit;
    grid-column-start: 1;
    grid-column-end: 2;
}

.dh .menu {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.dh .menu svg {
    width: 32px;
    height: 32px;
}

@media screen and (max-width: 860px) {
    .dh .menu svg {
        width: 26px;
        height: 26px;
    }
}

.dh .nav {
    line-height: 95px;
}

.dh .nav .page-title {
    padding-left: 2.6rem;
}

@media screen and (max-width: 860px) {
    .dh .nav .page-title {
        padding-left: 1.8rem;
    }
}

.dh .data-summary {
    display: grid;
    height: 100vh;
    grid-column: 2;
    grid-row: 1;
    grid-template-rows: repeat(2, 95px) repeat(2, 1fr) 60px;
    grid-template-columns: 100%;
    border-left: 0.86px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 860px) {
    .dh .data-summary {
        height: auto;
        grid-column: auto;
        grid-row: auto;
        grid-template-rows: repeat(2, calc($header-height + 10vh)) repeat(2, 1fr) 70px;
    }
}

.dh .data-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.dh .data-info__heading {
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dh .data-info__content {
    font-weight: 400;
}

.dh .data-info__content .sup {
    font-weight: 500;
    font-size: 1.125rem;
    -webkit-margin-end: 0.29rem;
    margin-inline-end: 0.29rem;
}

.dh .data-info__amount {
    letter-spacing: 2px;
}

.dh .data-info__tag {
    min-width: 120px;
    min-height: 25px;
    line-height: 25px;
    border-radius: 25px;
    text-align: center;
    font-weight: 300;
    font-size: 0.67rem;
    background-color: #fdfdfd;
}

.dh .data-info:nth-child(4) {
    border-bottom: none;
}

.dh .data-info--light {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 200px;
}

.dh .data-info--light .data-info__content {
    margin: 1rem 0;
}

.dh .data-body {
    width: 100%;
}

.dh .scroll-check {
    width: 100%;
    /* height: 500px; */
    /* overflow-y: scroll; */
}

@media screen and (max-width: 700px) {
    .dh .scroll-check {
        overflow-x: scroll;
    }
}

.dh #data-table {
    width: 100%;
    min-width: 600px;
}

.dh #data-table .table__row--header {
    background-color: #f6cc04;
    color: #ffffff;
}

.dh #data-table .table__row--header th:first-child {
    text-align: center;
}

.dh #data-table .table__row--header .header__title {
    display: block;
    padding: 1rem 0;
    text-transform: capitalize;
    font-weight: bold;
}

.dh #data-table .table__row {
    height: 4rem;
}

.dh #data-table .table__row:nth-child(odd) {
    background-color: #fdfdfd;
}

.dh #data-table .table__row .id {
    text-align: center;
}

.dh #data-table .table__row .price, #data-table .table__row .merchant {
    font-weight: 400;
    font-size: 1rem;
}

.dh #data-table .table__row .date, #data-table .table__row .charge {
    text-transform: capitalize;
    font-size: 0.85rem;
    color: #8a8a8a;
}

@media screen and (max-width: 860px) {
    .dh #data-table col:nth-child(1) {
        display: none;
    }
}