.dx-list-documentation > li a {
    padding: 10px 0 10px 15px !important;
    font-weight: 400;
    color: #6D6D6D;
}


.dx-list-documentation > li a.active, .dx-list-documentation > li a:hover, .dx-list-documentation > li button.active, .dx-list-documentation > li button:hover {
    background-color: #f6f6f6 !important;
    border-radius: 5px;
    color: #3D3D3D;
    font-weight: 600;
    transition: all .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.dx-list-documentation > li + li {
    margin-top: 9px !important;
}

.dx-accordion-btn {
    top: 5px !important;
}

.dx-list-documentation {
    padding: 0 !important;
}

#accordionList {
    padding: 25px !important;
}

#accordionList li a {
    font-size: 14px !important;
}

#accordionList li a div {
    width: 16px;
    text-align: center;
    margin-right: 5px;
    float: right;
}

p, li, ul, ol, dl, dt {
    font-size: 13px !important;
}

/*Custom modal styles*/

.c-modal-overlay {
    z-index: 99999999;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    animation: slide-down 0.3s ease;
    animation-fill-mode: forwards;
    transform: translateY(-100%);
}


@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.modal-content-wrapper {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.modal-inner {
    display: flex;
    flex-direction: column;
    width: 70%;
    background-color: #ffff;
    border-radius: 5px;
    animation: scale-up-center .4s cubic-bezier(.39, .575, .565, 1.000) both
}

.modal-inner-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    /*height: 600px;*/
}

.card-modal-header {
    background-color: #d8d8d8;
    padding: 15px 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.card-modal-footer {
    border-top: 1px solid #d8d8d8;
    background: #fff;
    padding: 10px 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: flex;
    justify-content: flex-end
}

.form-control-md {
    padding: 4px 16px !important;
    height: 36px !important;
    width:100%;
}

/*.select2-container .select2-selection--single {
    height: 36px !important;
    margin-bottom: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 34px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
    right: 5px !important;
}*/

.pagination-container{
    display:flex;
    padding:15px;
    justify-content:space-between;
    width:100%;
    align-items:center;
}

.page-nav-btn {
    width: 39px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D0D5DD;
    border-radius:8px;
}

.page-nav-btn i {
    color: #4f4f4f;
    font-weight:100;
}

.page-numbers{
    display:flex;
    gap:4px;
}

.page-number {
    outline: none !important;
    height: 35px;
    width: 35px;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor:pointer;
}

    .page-number.active {
        background: #EFF3F6;
    }


