
:root {
    --base-h: 219;
    --base-s: 100%;
    --base-l: 61%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    --primary-color-opacity-low: hsl(var(--base)/.1);

    /*--white: var(--bs-gray-100);*/
    --gray: var(--bs-gray-100);
    --primary-color: var(--bs-primary);

    --bg-color1: #ffffff;
    --shadow1: 0 0.375rem 0.75rem rgba(140, 152, 164, .075);
    --shadow2: 0 .1875rem .75rem rgba(140, 152, 164, .25);
    --shadow3: 0 0.6125rem 2.5rem 0.6125rem rgba(140, 152, 164, .175);
    --transition: all .3s ease-in-out;
    --heading-color: #000525;
    --body-color: #595959;

    --border-color1: rgba(231, 234, 243, .7);
    --border-color2: rgba(140, 152, 164, .25);
}

[data-hs-appearance="default"] {
    --white: var(--bs-white);
}

[data-hs-appearance="dark"] {
    --white: var(--bs-gray-100);
}

.dataTables-image {
    width: 10rem;
}
button.btn.delete_desc.removeFile.z9 {
    top: -141px;
    right: -115px;
    position: relative;
}

button.btn.removeFile.z9 {
    top: -205px;
    right: -115px;
    position: relative;
}

/*----------------------------------------------
Payment section start
-----------------------------------------------*/
.payment-container-list {
    margin-top: 20px;
    height: 480px;
    overflow: auto;
    padding: 5px;
}

.payment-container-list .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-container-list .item:not(:last-child) {
    margin-bottom: 15px;
}

.payment-container-list .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    cursor: pointer;
    box-shadow: var(--shadow1);
    border-radius: 5px;
    transition: var(--transition);
    gap: 15px;
    border: 1px solid var(--border-color1);
    background-color: var(--gray);
}

.payment-container-list .form-check-label .image-area img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
}

.payment-container-list .form-check-label .content-area {
    max-width: 400px;
    padding-right: 30px;
}

.payment-container-list .form-check-input {
    position: absolute;
    right: 15px;
}

.payment-container-list .form-check-input[type=radio]:checked + .form-check-label {
    background-color: var(--primary-color-opacity-low);
}

.rtl .payment-container-list .form-check-label .content-area {
    padding-right: 0;
    padding-left: 30px;
}

.rtl .payment-container-list .form-check-input {
    left: 15px;
    right: auto;
}

.transfer-details-section .link {
    color: var(--heading-color);
}

.transfer-list {
    padding: 15px;
    margin-bottom: 20px;
}

.transfer-list h5 {
    margin-bottom: 0;
}

.transfer-list .title:not(:last-child) {
    margin-bottom: 20px;
}

.transfer-list .item {
    display: flex;
    justify-content: space-between;
}

.transfer-list .item:not(:last-child) {
    margin-bottom: 10px;
}

/*----------------------------------------------
Payment section end
-----------------------------------------------*/

/*----------------------------------------------
Select2 section start
----------------------------------------------*/
img.img-flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-color2);
}

span.select2.select2-container.select2-container--default {
    width: 100% !important;
    font-weight: 500;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    border: 1px solid var(--border-color1);
    height: 45px;
    display: flex;
    align-items: center;
    background: hsl(var(--gray));
    font-size: 15px;
    padding: 0.375rem 15px;
}

.select2-container .select2-dropdown {
    border: 1px solid var(--border-color2);
}

.select2-container .select2-dropdown .select2-search__field {
    border-radius: 5px;
    border: 1px solid var(--border-color2);
    outline: 0;
    background: var(--white);
    color: var(--bs-body-color);
}

.select2-container .select2-selection--single:focus,
.select2-container .select2-selection--multiple:focus {
    border: 1px solid var(--border-color1);
    box-shadow: 0 0 1rem 0 rgba(140, 152, 164, 0.25);
}

.select2-container .select2-dropdown .select2-search__field:focus-visible {
    box-shadow: 0 0 1rem 0 rgba(140, 152, 164, 0.25);
    border: 1px solid var(--border-color2);
}

.select2-results__option {
    border-radius: 5px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--primary-color);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:hover {
    background-color: hsl(var(--base)/0.8);
    color: var(--gray);
}

.select2-container--default .select2-results__option--selected {
    background: var(--primary-color);
    color: var(--gray);
}

.select2-container--default .select2-results__option--selected:hover {
    background-color: var(--primary-color);
    color: var(--gray);
}

.select2-container--default .select2-results > .select2-results__options {
    text-transform: capitalize;
    padding: 5px;
    max-height: 300px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 141, 255, 0.1);
    overflow: auto;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid var(--border-color2);
    height: 45px;
    display: flex;
    align-items: center;
    background-color: var(--gray);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--white) !important;
    padding-right: 10px;
    text-transform: capitalize;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--body-color) transparent transparent transparent;
    border-width: 4px 4px 0 4px;
    margin-left: -10px;
    margin-top: 10px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--primary-color) transparent;
    border-width: 0 4px 4px 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--primary-color);
    color: hsl(var(--gray));
    font-weight: 400;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: none;
    color: hsl(var(--gray));
}

.rtl .select2-container--default .select2-selection--single .select2-selection__arrow {
    left: 5px;
}

.rtl .select2-container .select2-selection--single .select2-selection__rendered {
    text-align: right;
    width: 100%;
}

.rtl .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: -4px;
}

.select2-dropdown{
    background-color: var(--gray) ;
}

/*----------------------------------------------
Select2 end
----------------------------------------------*/


/*=======api docs========*/
pre code.hljs {
    display: block;
    overflow-x: auto;
}

code.hljs {
    padding: 3px 5px;
}

.hljs {
    background: #000f1c;
    color: #fff;
}

.hljs-comment {
    color: #697070;
}

.hljs-punctuation,
.hljs-tag {
    color: #fff;
}

.hljs-tag .hljs-attr,
.hljs-tag .hljs-name {
    color: #444;
}

.hljs-attribute,
.hljs-doctag,
.hljs-keyword,
.hljs-meta .hljs-keyword,
.hljs-name,
.hljs-selector-tag {
    font-weight: 700;
}

.hljs-deletion,
.hljs-number,
.hljs-quote,
.hljs-selector-class,
.hljs-selector-id,
.hljs-string,
.hljs-template-tag,
.hljs-type {
    color: #6777ef;
}

.hljs-section,
.hljs-title {
    color: #ffa426;
    font-weight: 700;
}

.hljs-link,
.hljs-operator,
.hljs-regexp,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-symbol,
.hljs-template-variable,
.hljs-variable {
    color: #fc544b;
}

.hljs-literal {
    color: #63ed7a;
}

.hljs-addition,
.hljs-built_in,
.hljs-bullet,
.hljs-code {
    color: #63ed7a;
}

.hljs-meta {
    color: #1f7199;
}

.hljs-meta .hljs-string {
    color: #38a;
}

.hljs-emphasis {
    font-style: italic;
}

.hljs-strong {
    font-weight: 700;
}

.api-reference-section .tab-bordered .tab-pane {
    border: none;
    padding: 0;
}

.api-reference-section .card .card-header .btn {
    margin-top: 1px;
    padding: 6px 13px;
    border-radius: 3px;
}

.api-reference-section .nav-tabs {
    border-bottom: 1px solid #f9f9f9;
    border-bottom: none;
}

.api-reference-section .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transition: 0.4s;
    color: #6c757d;
    font-weight: 600;
}

.api-reference-section .nav-tabs .nav-link:hover,
.api-reference-section .nav-tabs .nav-link.active {
    border-bottom: 2px solid #6777ef;
    color: #6777ef;
}

.api-reference-section .tab-pane pre {
    height: 400px;
    overflow: hidden;
}

.api-reference-section .tab-pane code {
    height: 400px;
    overflow-y: auto;
}

.api-reference-section .tab-pane code::-webkit-scrollbar {
    width: 3px;
    height: 100%;
}

.api-reference-section .tab-pane code::-webkit-scrollbar-track {
    background: #fff;
}

.api-reference-section .tab-pane code::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.api-reference-section .tab-pane code:hover::-webkit-scrollbar-thumb {
    background: #0000001a;
}

.api-reference-section .tab-pane code::-webkit-scrollbar-thumb:hover {
    background: #6777ef;
}

.api-reference-section .accordion-header {
    padding: 15px;
}

.api-reference-section .form-control {
    height: 30px !important;
    padding: 10px !important;
}


@media (max-width: 375px) {
    .navbar-brand{
        margin-right: 0 !important;
    }

    .navbar-nav-wrap-content-start{
        padding-left: 0 !important;
    }
}
/*============= api docx end ==========*/


/*=========== user hs mega-menu =========*/
.nav-link .dropdown-item-icon{
    width: 1rem !important;
}

.dropdown-toggle .dropdown-item-icon {
    width: 1.25rem !important;
}

.hs-sub-menu .dropdown-item i{
    margin-right: 10px !important;
}


/* Icon Animation: for layout change */
@keyframes rotatePause {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(180deg); }
    50% { transform: rotate(360deg); }
    100% { transform: rotate(360deg); }
}

.toggle-layout:hover .animate-icon {
    animation: rotateHover 0.6s ease-in-out;
    color: #ff9f43;
    text-shadow: 0 0 10px rgba(255, 159, 67, 0.8);
}

@keyframes rotateHover {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* QR code */
.qr-wrapper {
    width: 100%;
    height: calc(100vh - 190px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.qr-box {
    position: relative;
    width: 100%;
    padding: 40px;
    border: 1px solid rgba(231, 234, 243, .7);
    border-radius: 10px;
    text-align: center;
}
.qr-box h5 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    color: black;
}

#qrcode img {
    width: 50%;
    height: auto;
    border: 1px solid rgba(90, 91, 94, .7);
    border-radius: 10px;
}

.bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover !important;
    z-index: -1;
}
.btn-qr{
    width: 50%;
    padding: 12px !important;
    background: linear-gradient(216deg, #60A548 -33.21%, #055927 101%) !important;
    color: white !important;
}

@media only screen and (max-width: 767px){
    #qrcode img {
        width: 70%;
    }
    .btn-qr{
        width: 70%;
        padding: 8px !important;
    }
}
