/* BEGIN : Google Fonts Ext */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
/* END : Google Fonts Ext */

/* All Style */
body {
    font-family: Inter;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

* {
    scrollbar-width: thin;
    scrollbar-color: black white;
}

html {
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: Inter;
    cursor: pointer;
}

table {
    border: 1px solid #e2e2e2;
    border-radius: 0.75rem;
    border-spacing: 0;
}

thead > tr {
    gap: 0px;
}

thead > tr > th {
    text-align: start;
}

tbody > tr > td {
    padding: 8px 20px;
    border-bottom: 1px solid #e2e2e2;
}

tbody > tr:last-child > td {
    border-bottom: 0px solid transparent;
}

#myTable_wrapper > .dt-layout-row:first-child,
#myTable_wrapper > .dt-layout-row:last-child {
    display: none;
}

.close {
    cursor: pointer;
}

a {
    text-decoration: none !important;
}

.mb-32 {
    margin-bottom: 32px;
}

.warning-main {
    background-color: #f6f6f6;
    color: black;
    padding: 12px 12px;
    border-radius: 0.75rem;
    border: 1px solid #e2e2e2;
}

table.dataTable {
    border: 1px solid #e2e2e2;
    border-radius: 0.75rem !important;
}

div.dt-container div.dt-layout-row.dt-layout-table {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

div.dt-container.dt-empty-footer tbody > tr:last-child > * {
    border-bottom: 0px solid transparent !important;
}

table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr:nth-child(odd) > .sorting_1 {
    border-radius: 0rem 0rem 0rem 0.75rem;
}

table.dataTable thead > tr > th.dt-orderable-asc:hover,
table.dataTable thead > tr > th.dt-orderable-desc:hover,
table.dataTable thead > tr > td.dt-orderable-asc:hover,
table.dataTable thead > tr > td.dt-orderable-desc:hover {
    outline: unset !important;
    outline-offset: unset !important;
}

input[disabled] {
    opacity: 0.8;
    cursor: not-allowed;
}

input.disabledClass[disabled] {
    opacity: 1;
    cursor: not-allowed;
}

tr th {
    background-color: #f6f6f6;
}

tr th:first-child {
    border-radius: 0.75rem 0rem 0rem 0rem;
}

tr th:last-child {
    border-radius: 0rem 0.75rem 0rem 0rem;
}

table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
    padding: 10px;
    border-bottom: 1px solid #e2e2e2 !important;
}

div.dt-container select.dt-input {
    padding-right: 1.5rem !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0.75rem;
    border: 1px solid #e2e2e2;
}

table.dataTable > tbody > tr td {
    background-color: transparent;
    border-bottom: 1px solid #e2e2e2 !important;
}

label[for="dt-length-0"] {
    text-transform: capitalize;
}

.dt-length {
    gap: 15px;
    display: flex;
    align-items: center;
}

td.text-base.black-txt.semibold-txt.dt-type-numeric {
    text-align: start;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.dt-search {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    justify-content: end;
}

div.dt-container .dt-search input {
    background-color: #fff !important;
    border-radius: 0.75rem !important;
    border: 1px solid #e2e2e2 !important;
    height: 48px;
    padding-left: 12px;
    padding-right: 12px;
}

div.dt-container .dt-search input:focus {
    border: 1px solid black !important;
}

button.dt-paging-button.current {
    padding: 6px 12px !important;
    background-color: black !important;
    color: white !important;
}

.dt-paging-button {
    background-color: #f6f6f6 !important;
    color: black !important;
}

div.dt-container .dt-paging-button.current {
    color: white !important;
    border-radius: 0.5rem;
    padding: 6px 12px !important;
}

.dt-paging.paging_full_numbers {
    justify-content: end;
}

div.dt-container .dt-length,
div.dt-container .dt-search,
div.dt-container .dt-info,
div.dt-container .dt-processing,
div.dt-container .dt-paging {
    gap: 5px;
    display: flex;
}

tr[role="row"] span.dt-column-order {
    display: none;
}

tr[role="row"] > :first-child span.dt-column-order {
    display: unset;
}

tr,
th {
    /* outline: 2px solid rgba(0, 0, 0, 0.05); */
    /* outline-offset: -2px; */
    padding: 16px 12px !important;
}

.dt-paging.paging_full_numbers button {
    font-size: 16px;
}

.tableIMG {
    height: 38px;
    width: 38px;
    border-radius: 6px;
    border: 1px solid #e2e2e2;
}

/* Styles for the image inside the switch button */
.switch-btn-off img,
.switch-btn-on img {
    /* Set the initial rotation */
    transform: rotate(270deg);
    /* Set the transition for smooth animations */
    transition: transform 0.5s ease;
}

/* Animation for forward rotation */
@keyframes rotate {
    from {
        transform: rotate(270deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animation for reverse rotation */
@keyframes reverse-rotate {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(270deg);
    }
}

/* Class for forward rotation animation */
.rotate-animation img {
    animation: rotate 0.2s ease forwards;
}

/* Class for reverse rotation animation */
.reverse-animation img {
    animation: reverse-rotate 0.2s ease forwards;
}
/* All Style */

/* Custom */
.mainButton {
    background-color: #f6f6f6;
    padding: 12px 24px 12px 24px;
    text-decoration: none;
    border-radius: 0.75rem;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

section#menuArea {
    gap: 24px;
}

#navigationUtama {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 5;
    height: 75px;
}

.navigationBar {
    height: 100%;
}

/* Judul Switch Area */
.container-switch-1 {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.switchBG {
    background-color: #f6f6f6;
    padding: 0.25rem !important;
    border-radius: 0.75rem;
    flex-direction: column;
    display: flex;
    position: absolute;
    right: 0;
    width: max-content;
}

.switch-btn-on {
    background-color: white;
    font-weight: 500;
    color: #000000;
    padding: 10px 12px 10px 12px;
    text-decoration: none;
    border-radius: 0.75rem;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    transition: background-color 0.2s ease-in-out;
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1),
        0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color),
        0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    height: fit-content;
}

.switch-btn-off {
    background-color: transparent;
    font-weight: 500;
    color: #545454;
    text-decoration: none;
    padding: 10px 12px 10px 12px;
    border-radius: 0.75rem;
    height: fit-content;
    width: -webkit-fill-available;
}

.shadow {
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1); /* Bayangan */
}

.switch-btn-off:hover {
    background-color: rgba(128, 128, 128, 0.1);
    border-radius: 0.75rem;
}

.iconBtn {
    width: 49.6px;
    height: 49.6px;
    padding: 0px !important;
    margin-top: 2px;
}

.onButton {
    background-color: #f6f6f6;
    font-weight: 500;
    color: #000000;
    padding: 8px 12px 8px 12px;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    transition: background-color 0.2s ease-in-out;
    border: 0px solid transparent;
}

.offButton {
    background-color: transparent;
    font-weight: 500;
    color: #545454;
    text-decoration: none;
    padding: 12px 24px 12px 24px;
}

.pageBtn {
    padding: 6px 12px;
    border-radius: 0.5rem;
    background-color: #f6f6f6;
    color: #545454;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
}

.pageBtn:first-child img {
    transform: rotate(180deg);
    width: 20px;
    height: 20px;
}

.pageBtn:last-child img {
    transform: rotate(0deg);
    width: 20px;
    height: 20px;
}

.pageBtn.current {
    background-color: black;
    color: white;
}

.secButton {
    background-color: #f6f6f6;
    font-weight: 500;
    color: #000000;
    padding: 12px 24px 12px 24px;
    text-decoration: none;
    border-radius: 0.75rem;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    transition: background-color 0.2s ease-in-out;
    width: 100%;
    border: 0px solid transparent;
}
/* Judul Switch Area */

.info-area {
    display: flex;
    flex-direction: column;
}

.selectedButton {
    background-color: #f6f6f6;
    font-weight: 500;
    color: #000000;
    padding: 12px 24px 12px 24px;
    text-decoration: none;
    border-radius: 0.75rem;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    transition: background-color 0.2s ease-in-out;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e2e2e2;
    height: 48px;
    padding-left: 12px;
    padding-right: 12px;
    width: 213px;
}

.search-input {
    padding: 0px;
    border: 0px solid transparent;
    border-radius: 0.75rem;
    font-size: 16px;
    font-weight: 400;
    background-color: transparent;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.search-input:focus {
    border-color: #aaa;
    outline: none;
}

.search-button {
    padding: 0px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.fas.fa-search {
    font-size: 16px;
}

.semibold-txt {
    font-weight: 600;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.mainBtn {
    background: black;
    color: white;
    text-decoration: none;
}

.mainBtnMB {
    background: black;
    color: white;
    text-decoration: none;
}

.noBG-Btn {
    background: transparent;
}

.burgerNav {
    margin-left: 1px;
}

/* Dropdown Nav */
.dropdown-container {
    position: relative;
    right: 0;
    height: 100%;
}

.dropdown-menu {
    position: absolute !important;
    z-index: 999;
    right: 0;
    width: 284px;
    background-color: #fff;
    border-radius: 0.75rem;
    outline: none;
    display: flex;
    justify-content: end !important;
    margin-top: 0.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgb(0 0 0 / 0.05);
    z-index: 3;
}

.dropdown-menu-content {
    padding: 0.5rem;
    left: 0;
}

.dropdown-menu-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #fff;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.dropdown-menu-item:hover {
    background-color: #f3f4f6;
}

.dropdown-menu-item-mobile {
    display: none;
    align-items: center;
    padding: 8px 0px;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.dropdown-menu-item-mobile:hover {
    background-color: transparent !important;
}

.dropdown-menu-item-mobile-heading {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.dropdown-menu-divider {
    border: none;
    border-bottom: 1px solid;
    border-color: rgb(226, 226, 226);
    margin: 8px 0;
}

.dropdown-menu-divider-mobile {
    margin: 0px 0;
    border-radius: 0px;
    height: 0px;
    padding: 0px;
    opacity: 0.2;
}

.dropdown-menu-item.disabled {
    background-color: transparent;
    opacity: 0.5;
    cursor: not-allowed;
}

/* New styles for dropdown button */
.dropdown-button {
    background-color: #3498db;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    right: 0;
}

.dropdown-button:hover {
    background-color: #2980b9;
}

.closeOverlay {
    content: "";
    height: 100vh;
    width: 100%;
    background-color: transparent;
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
/* Dropdown Nav */

.mb-32 {
    margin-bottom: 32px;
}

.mt-16 {
    margin-top: 16px;
}

.pb-16 {
    padding-bottom: 16px;
}

.checkboxCS {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #e2e2e2;
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

.checkboxCS:checked {
    background-color: #000; /* warna latar belakang ketika ter-check */
    background-image: url("/assets/icon/checked.svg"); /* Ganti 'checkmark.png' dengan path ke gambar Anda */
    background-size: cover;
    background-position: center center;
    border-radius: 4px;
    border: 1px solid black;
}

@keyframes rotate180 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(180deg);
    }
}

.filterDropdown {
    cursor: pointer;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
}

.filterDropdown:hover {
}

.arrowFilter {
    transition: transform 0.3s ease; /* Menggunakan transisi untuk rotasi */
}

.arrowFilter.reverse {
    animation: rotate180 0.3s ease forwards; /* Memainkan animasi rotate secara terbalik */
}

.rotate {
    transform: rotate(-90deg); /* Atur sudut putaran sesuai kebutuhan */
    transition: transform 0.1s ease; /* Efek transisi untuk putaran */
}

.reverse {
    transform: rotate(0deg); /* Putar kembali ke posisi semula */
    transition: transform 0.1s ease;
}

.card {
    transition: all 0.2s ease-in-out;
}

.cardLogin {
    width: 436px;
}

.card:hover {
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
}

/* SKELETON */
.skeleton {
    position: relative;
}

.skeleton::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: linear-gradient(90deg, #eee, #f9f9f9, #eee);
    background-size: 200%;
    animation: skeleton 1s infinite;
}

@keyframes skeleton {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}
/* SKELETON */

.slide-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 10;
}

.slide-overlay {
    content: "";
    height: 100dvh;
    width: 100%;
    background-color: black;
    opacity: 0.25;
}

.wrapper-slide {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    transition: bottom 0.5s ease;
}

.select-type {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.overlayModalBG {
    height: 100dvh;
    width: 100%;
    background-color: black;
    opacity: 25%;
    z-index: 10;
}

.modal-container {
    width: 88.33dvw;
    position: fixed;
    z-index: 999;
    border-radius: 12px;
    background-color: white;
}

.main-information {
}

.hidden {
    display: none !important;
}

.modalUtama {
    position: fixed;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    top: 0;
}

.container-modal {
    width: 45dvw;
    background-color: white;
    border-radius: 0.75rem;
    position: absolute;
    z-index: 999;
}

.closeModal-new {
    width: 344px !important;
    overflow: hidden;
}

.closeModal-new .content-modal {
    overflow: hidden;
}

.navigation-modal {
    border-bottom: 1px solid #e2e2e2;
}

.modal-area {
    display: flex;
    height: 100dvh;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: fixed !important;
    top: 0 !important;
    z-index: 99 !important;
}

.content-modal {
    max-height: 70dvh;
    overflow-y: scroll;
    height: 100%;
    gap: 24px;
    display: flex;
    flex-direction: column;
}

.inputBox {
    background-color: #fff;
    border-radius: 0.75rem;
    border: 1px solid #e2e2e2;
    height: 48px;
    padding-left: 12px;
    padding-right: 12px;
}

.content-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.box-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e2e2e2;
    width: 200px;
    height: 200px;
    border-radius: 0.75rem;
    cursor: pointer;
}

.box-image img {
    border-radius: 0.75rem;
}

.selectImagePreview {
    max-width: 200px;
    max-height: 200px;
}

.selectEditImage {
    max-width: 200px;
    max-height: 200px;
}

.previewImage {
    max-width: 200px;
    max-height: 200px;
}

.imageAreaModal {
    padding-top: 0px !important;
}

.imageAreaModal img {
    width: 100%;
    border-radius: 0.75rem;
    height: auto;
}

.NFTDetails {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 30dvh;
    overflow-y: scroll;
    height: 100%;
}

.informationNFTModal {
    padding: 24px;
    height: auto;
    gap: 24px;
    display: flex;
    flex-direction: column;
}

.info-nft-box {
    border: 1px solid #e2e2e2;
    height: 50px;
}

.customRadio {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

/* Custom */

@media (min-width: 992px) {
}

@media (min-width: 768px) and (max-width: 1349px) {
    .mainBtn {
        padding-left: 0px !important;
        padding-right: 0px !important;
        background-color: transparent !important;
        border: 0px;
        color: black;
    }

    #searchArea1 {
        order: 2;
    }

    section#menuArea {
        gap: 0px;
    }

    .dropdown-menu-item-mobile {
        display: none;
        align-items: center;
        padding: 8px 16px;
        border-radius: 0.5rem;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    .dropdown-menu-item-mobile:hover {
        background-color: transparent !important;
    }

    .dropdown-menu-item.disabled {
        background-color: transparent;
        opacity: 0.5;
        cursor: not-allowed;
        padding: 0;
    }

    .container-modal {
        width: 85dvw;
    }

    .modal {
        flex-direction: column;
        max-height: 90dvh;
        overflow-y: scroll;
        border-radius: 12px;
    }

    .imageAreaModal {
        width: 100%;
        padding: 24px;
        max-width: -webkit-fill-available;
        position: relative;
        padding-top: 3.5rem;
    }

    .imageAreaModal img {
        width: 100%;
        max-width: -webkit-fill-available;
    }

    .imgPic {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: -3.5rem;
    }

    .closeModal {
        padding: 0px;
        padding-right: 0px;
        padding-left: 0px;
    }

    .closeModal-MB {
        position: sticky;
        top: 0;
        width: 100%;
        max-width: -webkit-fill-available;
        padding: 24px;
        background-color: rgba(255, 255, 255, 0.9);
        z-index: 10;
    }

    .closeModal-new {
        width: 344px !important;
    }

    .informationNFTModal {
        width: 100%;
        max-width: -webkit-fill-available;
    }

    #navigationUtama {
        height: 68px;
    }
}

@media (max-width: 767.98px) {
    .mainBtn {
        padding-left: 0px !important;
        padding-right: 0px !important;
        background-color: transparent !important;
        border: 0px;
        color: black;
    }

    #searchArea1 {
        order: 2 !important;
    }

    .search-box {
        width: 100%;
        max-width: -webkit-fill-available;
    }

    section#menuArea {
        gap: 0px;
    }

    .dropdown-menu-item-mobile {
        display: none;
        align-items: center;
        padding: 8px 16px;
        border-radius: 0.5rem;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    .dropdown-menu-item-mobile:hover {
        background-color: transparent !important;
    }

    .dropdown-menu-item.disabled {
        background-color: transparent;
        opacity: 0.5;
        cursor: not-allowed;
        padding: 0;
    }

    .NFTDetails {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        max-height: unset;
        overflow-y: unset;
        height: unset;
    }

    .modal {
        flex-direction: column;
        max-height: 94dvh;
        overflow-y: scroll;
        border-radius: 12px;
    }

    .imageAreaModal {
        width: 100%;
        max-width: -webkit-fill-available;
    }

    .imageAreaModal img {
        width: 100%;
        max-width: -webkit-fill-available;
    }

    .imgPic {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .container-modal {
        width: 95dvw;
    }

    .closeModal {
        padding: 0px;
        border-radius: 16px;
    }

    .closeModal-MB {
        position: sticky;
        top: 0;
        width: 100%;
        max-width: -webkit-fill-available;
        padding: 16px;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .imageAreaModal {
        padding: 16px;
        padding-top: 0px;
        padding-right: 0px;
        padding-left: 0px;
    }

    .informationNFTModal {
        width: 100%;
        max-width: -webkit-fill-available;
        padding: 16px;
    }

    .other-information {
        margin-top: 24px;
    }

    .other-information .group-link {
        flex-direction: column;
    }

    .group-link a {
        width: 100%;
    }

    #navigationUtama {
        height: 68px;
    }

    div.dt-container div.dt-layout-cell.dt-full,
    div.dt-container div.dt-layout-cell.dt-start,
    div.dt-container div.dt-layout-cell.dt-end {
        text-align: center;
        justify-content: center;
        display: flex;
    }

    .closeModal-new {
        width: 344px !important;
    }

    .cardLogin {
        width: 90dvw;
    }

    thead > tr > th:first-child {
        width: 80px !important;
    }

    .pagination {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 350px) {
    #logoNav {
        display: none;
    }

    #switchNav {
        width: 100%;
    }

    .closeModal-new {
        width: 85dvw !important;
    }

    table.dataTable > tbody > tr.child ul.dtr-details {
        /* display: inline-block; */
        /* list-style-type: none; */
        /* margin: 0; */
        /* padding: 0; */
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    table.dataTable > tbody > tr.child ul.dtr-details > li {
        border-bottom: unset !important;
        padding: 0.5em 0 !important;
    }

    .heading-1 {
        font-weight: 700;
        font-size: 25px !important;
        line-height: 23px !important;
    }
}
