.mandatoryFieldMarker {
    color: red;
}
/*table custom scrollbar*/
::-webkit-scrollbar {
    width: 5px;
}

/*Track*/
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/*Handle*/
::-webkit-scrollbar-thumb {
    background: #888;
}

    /*Handle on hover*/
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

/* Initially hide the submenu */
.submenu {
    display: none;
}

    /* When the submenu is toggled, make it visible */
    .submenu.hidden {
        display: block;
    }
.td_center {
    text-align: center;
}

.td_verticalCenter {
    vertical-align: middle !important;
    text-align: center !important;
}

.td_vertical {
    vertical-align: middle !important;
}

.td_vertical_right {
    vertical-align: middle !important;
    text-align: right;
}

.invoice-title{
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
}


.inv_h {
    order: 1;
}
.inv_c {
    order: 0;
}
@media screen and (max-width: 1024px) {
    .invoice-title {
        flex-direction: row;
    }
}
@media screen and (max-width: 992px) {
    .invoice-title {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .inv_h{
        text-align: end;
    }
}
@media screen and (max-width: 758px) {
    .invoice-title {
        flex-direction: column-reverse;
    }
    .inv_h {
        text-align: start;
    }
}
#qrcode-box {
    border: 1px solid #ccc;
    padding: 20px;
    display: inline-block;
    background-color: #fff;
}

.download-buttons {
    margin-top: 20px;
}

/* Checkbox Size */
.checkbox-lg {
    transform: scale(2); /* Adjust size here */
    margin-left: 8px;
    margin-right: 8px; /* Optional: spacing fix */
    cursor: pointer;
}

.checkbox-sm {
    transform: scale(0.8);
    margin-right: 3px;
}
/* checkbox position for row-col css start */
.checkbox-top {
    margin-top: 0 !important;
}
    .checkbox-top label {
        cursor: pointer;
    }

@media (min-width: 768px) {
    .checkbox-top {
        margin-top: 2.5rem !important;
    }
}
/* checkbox position for row-col css end */

.toggle-btn i {
    transition: transform 0.2s ease;
    display: inline-block; /* required for transform */
}

    .toggle-btn i.fa-chevron-up {
        transform: rotate(360deg);
    }

