.user-avatar {
    border-radius: 40px;
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.logo_preloader {
    position: relative;
    width: auto;
    margin: 0 auto;
    height: 16px;
}
.powered-by{
    animation: upeffect 1s 1;
}
.logo_preloader path, .logo_preloader rect, .logo_preloader polygon {
    text-transform: uppercase;
    animation: stroke 3s 1 alternate;
    stroke-width: 0;
    stroke: #5E6278;
    font-size: 140px;
    transition: all ease 0.3s;
}
.powered-by-link:hover .logo_preloader path, .powered-by-link:hover .logo_preloader rect, .powered-by-link:hover .logo_preloader polygon{
    fill: #181C32;
}
@keyframes stroke {
    0% {
        fill: rgba(94, 98, 120, 0);
        stroke: #5E6278;
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 1;
    }

    70% {
        fill: rgba(94, 98, 120, 0);
        stroke: #5E6278;
    }

    80% {
        fill: rgba(94, 98, 120, 0);
        stroke: #5E6278;
        stroke-width: 1;
    }

    100% {
        fill: #5E6278;
        stroke: #5E6278;
        stroke-dashoffset: -25%;
        stroke-dasharray: 50% 0;
        stroke-width: 0;
    }
}

@keyframes upeffect {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }

    80% {
        opacity: 0.8;
        transform: translateY(0px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.top-10px {
    top: 10px!important;
}

.end-10px {
    right: 10px!important;
}

.left-10px {
    left: 10px!important;
}

.top-18 {
    top: 18%!important;
}

.top-5 {
    top: 5%!important;
}

.top-50 {
    top: 50%!important;
}

.end-18px {
    right: 18px!important;
}

.end-5 {
    right: 5%!important;
}

.end-12 {
    right: 12%!important;
}

.left-5 {
    left: 5%!important;
}

.ms-30 {
    margin-left: 7rem!important
}

.mt-40 {
    margin-top: 10rem!important
}

.img-cover {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.tagify .tagify__tag .tagify__tag__removeBtn:hover {
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f1416c'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
}

.tagify.form-control-lg .tagify__tag {
    border-radius: 50px;
    padding: 0.5rem .5em;
    margin: .2rem 0.6rem .2rem 0;
    font-weight: inherit;
}

.tagify__tag>div>* {
    font-size: 0.97rem;
}

.tagify.form-control-lg .tagify__input {
    font-weight: 400;
    font-size: 0.97rem;
}

.tagify:not(.form-control-sm):not(.form-control-lg) {
    padding-top: unset;
    padding-bottom: unset;
    padding: .6rem 1rem;
}

.select2-container--bootstrap5 .select2-selection--multiple:not(.form-select-sm):not(.form-select-lg) .select2-selection__choice .select2-selection__choice__display {
    padding-top: 2px;
    line-height: 1.5;
}

.ql-toolbar.ql-snow {
    background: #f5f8fa;
}

/**

 * Nestable

 */
.dd {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    max-width: 600px;
    list-style: none;
    font-size: 13px;
    line-height: 20px;
}

.dd-list {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dd-list .dd-list {
    padding-left: 30px;
}

.dd-collapsed .dd-list {
    display: none;
}

.dd-item, .dd-empty, .dd-placeholder {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    /* min-height: 20px; */
    font-size: 13px;
    line-height: 20px;
}

.dd-handle {
    display: block;
    /* height: 30px; */
    cursor: move;
    margin: 5px 0;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: white;
}

.dd-handle:hover {
    color: #2ea8e5;
    background: #fff;
}

.dd-item > button {
    display: block;
    position: relative;
    cursor: pointer;
    float: left;
    width: 25px;
    height: 20px;
    margin: 5px 0;
    padding: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    background: transparent;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    font-weight: bold;
}

.dd-item > button:before {
    content: '+';
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    text-indent: 0;
}

.dd-item > button[data-action="collapse"]:before {
    content: '-';
}

.dd-placeholder, .dd-empty {
    margin: 5px 0;
    padding: 0;
    min-height: 30px;
    background: #f2fbff;
    border: 1px dashed #b6bcbf;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.dd-empty {
    border: 1px dashed #bbb;
    min-height: 100px;
    background-color: #e5e5e5;
    background-image: -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-image: -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.dd-dragel {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
}

.dd-dragel > .dd-item .dd-handle {
    margin-top: 0;
}

.dd-dragel .dd-handle {
    -webkit-box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1);
    box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1);
}

/**

 * Nestable Extras

 */
.nestable-lists {
    display: block;
    clear: both;
    padding: 30px 0;
    width: 100%;
    border: 0;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
}

#nestable-menu {
    padding: 0;
    margin: 20px 0;
}

#nestable-output, #nestable2-output {
    width: 100%;
    height: 7em;
    font-size: 0.75em;
    line-height: 1.333333em;
    font-family: Consolas, monospace;
    padding: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

@media only screen and (min-width: 700px) {
    .dd {
        float: left;
        width: 48%;
    }

    .dd + .dd {
        margin-left: 2%;
    }
}

.dd-hover > .dd-handle {
    background: #2ea8e5 !important;
}

/**

 * Socialite

 */
.socialite {
    display: block;
    float: left;
    height: 35px;
}

.jstree-default .jstree-anchor {
    display: inline-flex;
    line-height: 1.5;
    padding: 4px 12px 4px 7px;
    margin: 2px 0px;
    display: inline-flex;
    align-items: center;
    width: auto;
    height: unset;
}

.jstree-default .jstree-clicked {
    background: #ffc700;
    border-radius: 2px;
    color: white!important;
    box-shadow: unset;
    font-weight: 500!important;
    z-index: 1111;
    position: relative;
}

.jstree-default .jstree-clicked i {
    color: white!important;
}

.jstree-default .jstree-open>.jstree-ocl, .jstree-default .jstree-closed>.jstree-ocl {
    width: 23px;
    height: 24px;
    background-color: white!important;
    border-radius: 2px;
    position: relative;
    top: 4px;
    z-index: 2;
    left: 10px;
}

.jstree-default .jstree-open>.jstree-ocl:after, .jstree-default .jstree-open>.jstree-ocl:before, .jstree-default .jstree-closed>.jstree-ocl:after, .jstree-default .jstree-closed>.jstree-ocl:before {
    content: "";
    display: block;
    height: 2px;
    width: 11px;
    background: #ffc700;
    position: absolute;
    left: 6px;
    bottom: 10px;
    transition: all ease 0.3s;
}

.jstree-default .jstree-open>.jstree-ocl:before {
    transform: rotate(90deg);
}

.jstree-default .jstree-open>.jstree-ocl, .jstree-default .jstree-closed>.jstree-ocl,.jstree-default .jstree-node, .jstree-default .jstree-leaf>.jstree-ocl {
    position: relative;
    background-image: none;
}

.jstree-default .jstree-node:before {
    content: "";
    display: block;
    height: 100%;
    width: 1px;
    background: #dfdfdf;
    position: absolute;
    left: 21px;
    bottom: -16px;
}

.jstree-default .jstree-leaf>.jstree-ocl:after {
    content: "";
    display: block;
    height: 1px;
    width: 14px;
    background: #dfdfdf;
    position: absolute;
    left: 21px;
    bottom: 6px;
}

.jstree-default .jstree-leaf>.jstree-ocl:before {
    content: "";
    display: block;
    height: 14px;
    width: 1px;
    background: #dfdfdf;
    position: absolute;
    left: 21px;
    bottom: 7px;
}

.jstree-default .jstree-last:before {
    display: none;
}

.jstree-default .jstree-last:after {
    bottom: 15px;
}

.jstree-default .jstree-icon:empty {
    line-height: 24px;
    font-size: 22px;
    margin-right: 11px;
}

.jstree-default .jstree-disabled.jstree-clicked {
    background: none;
    opacity: 1;
    color: #000!important;
}

.jstree-default .jstree-disabled .jstree-icon {
    color: #ffc700!important;
    opacity: 1!important;
    filter: unset!important;
}

.jstree-anchor {
    position: relative;
}

.jstree-anchor::after {
    content: attr(data-quantity);
    position: relative;
    top: 1px;
    line-height: initial;
    /* right: 3px; */
    margin-left: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #dbdbdb;
}

.jstree-default .jstree-clicked::after {
    opacity: 1;
    color: white;
}

a[data-quantity] > .jstree-icon {
    margin-right: 28px;
}

.vakata-context, .vakata-context ul {
    margin: 0;
    padding: 14px;
    position: absolute;
    background: #ffffff;
    border: none;
    z-index: 9999;
    border-radius: 0.475rem;
    box-shadow: 0 .1rem 1rem .25rem rgba(0,0,0,.05)!important;
}

.vakata-context li>a {
    display: block;
    padding: 0 10px 0 10px;
    text-decoration: none;
    width: auto;
    color: #000;
    white-space: nowrap;
    line-height: 2.4em;
    text-shadow: none;
    border-radius: 0.2rem;
}

.vakata-context li>a:hover {
    position: relative;
    background-color: #009ef7;
    box-shadow: unset;
    color: white;
}

.vakata-context .vakata-context-hover>a {
    position: relative;
    background-color: #f5f8fa;
    box-shadow: unset;
    color: #000;
}

.vakata-context li>a.vakata-context-parent {
    position: relative;
    background-image: none;
}

.vakata-context li>a.vakata-context-parent:after, .vakata-context li>a.vakata-context-parent:before {
    border-right: 2px solid grey;
    content: '';
    display: block;
    height: 6px;
    margin-top: -4px;
    position: absolute;
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 10px;
    top: 50%;
    width: 0;
}

.vakata-context li>a.vakata-context-parent:after {
    margin-top: -1px;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.vakata-context li>a:hover:after, .vakata-context li>a:hover:before {
    border-color: white;
}

.vakata-context li>a>i, .vakata-context li>a .vakata-contextmenu-sep, .vakata-context .vakata-context-separator>a, .vakata-context .vakata-context-separator>a:hover {
    display: none;
    text-shadow: unset;
}

/*--end js tree--*/
.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link.active, .nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link:hover:not(.disabled), .nav-line-tabs.nav-line-tabs-2x .nav-item.show .nav-link {
    color: #181c32;
}

.draggable-zone-2 .draggable {
    border-bottom: 1px dashed #e1e1e1;
}

.draggable-zone-2 .draggable:last-child, .draggable-zone-2 .draggable:only-child {
    border-bottom: none
}

.swal2-file, .swal2-input, .swal2-textarea {
    display: block;
    width: 100%;
    padding: .75rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #181c32;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e4e6ef;
    appearance: none;
    border-radius: .475rem;
    box-shadow: none;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin: 0;
    margin-top: 2rem;
}

.swal2-file:focus, .swal2-input:focus, .swal2-textarea:focus {
    color: #181c32;
    background-color: #fff;
    border: 1px solid #b5b5c3;
    outline: unset;
    box-shadow: none;
}

#variation_to_edit .form-check:not(:last-child):after {
    content: "+";
    margin: 0px 14px;
    color: #e1e1e1;
    font-size: 20px;
}

.products_attr_sel:not(:last-child):after {
    content: "+";
    margin: 0px 8px;
    color: #cfcfcf;
}

.products_attr_sel:first-child {
    margin-left: 6px;
}

.timekeeping-list-view tbody .cell-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 0.8rem;
    padding: 4px 4px;
    letter-spacing: 0.04rem;
    background-color: white;
    border: solid 1px #e2e7e9;
    color: #181C32;
    font-weight: 400;
    border-radius: 2px;
    margin: 2px;
    cursor: pointer;
    white-space: pre-wrap;
}

.timekeeping-list-view tbody .cell-content:hover {
    box-shadow: 0 2px 4px 0 rgb(82 63 105 / 10%);
}

.timekeeping-list-view tbody .cell-content .time-spe {
    line-height: 8px;
    height: 8px;
}

.timekeeping-list-view tr td:first-child, .timekeeping-list-view tr th:first-child {
    white-space: nowrap;
    position: sticky;
    left: 0;
    background: white;
    padding-right: 14px;
}

.timekeeping-list-view tbody .cell-sunday, .timekeeping-list-view tbody .cell-off-day {
    background-color: #f5f8fa;
    border: dashed 1px #e2e7e9;
    color: #b8b8b8;
    font-weight: 400;
}

.timekeeping-list-view tbody .cell-off-day {
    font-weight: 500;
}

.timekeeping-list-view tbody .cell-content .halt-off-time {
    background-color: unset;
    color: #c3c3c3;
    font-weight: 500;
}

.timekeeping-list-view tbody .cell-content .halt-off-day {
    background-color: #fb7705;
    border-radius: 20px;
    color: #ffffff;
    padding: 0px 6px;
}

.timekeeping-list-view tbody .cell-off-day span:not(.time-spe), .timekeeping-list-view tbody .cell-sunday span:not(.time-spe), .timekeeping-list-view tbody .cell-paid-leave span:not(.time-spe) {
    visibility: hidden ;
}

.timekeeping-list-view tbody .cell-ot span {
    visibility: visible!important;
}

.timekeeping-list-view tbody .cell-content .time-ot {
    color: #ff0000;
    font-weight: 500;
}

.timekeeping-list-view tbody .cell-content .time-late {
    color: #fb7400;
}

.timekeeping-list-view tbody .cell-afternun-in {
    background-color: #ddebf5;
}

.mr-4 {
    margin-right: 4px !important;
}

.ml-4 {
    margin-left: 4px !important;
}

.align-items-center {
    align-items: center !important;
}

.fa-check-circle {
    color: #50cd89;
}

.fa-times-circle {
    color: #f1416c;
}

.history-edit .old {
    color: #b5b5c3;
}

.history-edit .new {
    color: #50cd89;
}

.timekeeping-list-view tbody .cell-statistical {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04rem;
    background-color: #fff8dd;
    color: #fb7400;
    border: solid 1px #ffc700;
    border-radius: 2px;
    margin: 2px;
    padding: 0px 4px;
}

.timekeeping-list-view tbody .last-work-sum {
    border-right: solid 1px grey;
}

.cell-statistical span:not(.time-spe) {
    visibility: hidden;
}

.day-name {
    font-weight: 400;
    color: gray;
}

.timekeeping-list-view .statistical-label {
    font-weight: 500;
}

.flatpickr-time input.flatpickr-hour, .flatpickr-time input.flatpickr-minute {
    text-align: center;
}

.timekeeping-list-view tbody .cell-statistical .time-ot {
    color: #ff0000;
    font-weight: 500;
}

.numInputWrapper span {
    right: 10px;
}

.seo-tools .serp-description {
    line-height: 1.4;
    white-space: normal;
    text-overflow: unset;
    word-wrap: break-word;
    color: #555d66;
}

.social-preview-publisher {
    font-size: 1.1rem;
    font-weight: normal;
    text-transform: uppercase;
    color: #90949c;
}

.social-preview-title {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 22px;
    margin: 0 0 3px;
    padding: 0;
    letter-spacing: normal;
    word-wrap: break-word;
}

.social-preview-description {
    font-size: 1.08rem;
    overflow: hidden;
    max-height: 1.3em;
    margin-bottom: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #606770;
}

.parent-category:not(:last-child) {
    margin-bottom: 12px;
}

.child-category {
    margin-left: 29px;
    padding: 12px 0px;
    position: relative;
}

.child-category label:not(:last-child) {
    margin-bottom: 12px;
}

.has-child.parent-category {
    margin-bottom: 0;
}

.child-category label {
    position: relative;
}

.child-category label:before {
    content: "";
    display: block;
    position: absolute;
    left: -17px;
    width: 1px;
    height: 20px;
    background-color: #dedede;
}

.text-no-wrap {
    white-space: nowrap;
}

.seo-tools .serp-url {
    font-size: 14px;
    line-height: 16px;
    margin: 3px 0 5px;
    padding-right: 5px;
    color: #202124;
}

.seo-tools .serp-title {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 3px;
    padding-bottom: 0;
    color: #1a0dab;
}

.card.card-docs {
    background-color: #fff;
    border: 0
}

#stepper_payroll [data-kt-stepper-element=content].current, .stepper [data-kt-stepper-element=info].current {
    display: block;
}

#stepper_payroll .stepper-nav .stepper-item.current:after {
    display: none;
}

table.dataTable>thead .sorting, table.dataTable>thead .sorting_asc {
    cursor: pointer;
    position: relative;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

table.dataTable>thead .sorting:hover, table.dataTable>thead .sorting_asc:hover {
    color: #009ef7;
}

.ck-word-count {
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    justify-content: flex-end;
    color: #8b8b8b;
    margin-top: 4px;
    padding-right: 4px;
}

.ck-word-count__words {
    margin-right: 8px;
}

div.dataTables_wrapper div.dataTables_processing {
    border-radius: .475rem;
    box-shadow: 0 0 50px 0 rgba(82,63,105,.15);
    background-color: #fff;
    color: #7e8299;
    font-weight: 500;
    margin: 0!important;
    width: auto;
    padding: 1rem 2rem!important;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    left: 53%;
    top: 50%;
    text-align: center;
}

@media (max-width: 767.98px) {
    .d-flex.card-title {
        flex-wrap: wrap;
    }

    .all-post-temp-action a:last-child {
        margin-right: 0!important;
    }

    .all-post-temp-action a {
        margin-bottom: 10px;
    }

    .all-post-temp-action {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .logo_preloader{
        height: 14px;
    }
    .card .card-header, .card .card-body, .card .card-footer{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    #analytic-nav{
        display: flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        padding-bottom: 10px;
    }
    #analytic-nav .nav-item .nav-link{
        font-size: 1.1rem;
    }
    #analytic-nav .nav-line-tabs .nav-item .nav-link.active{
        font-weight: 600;
    }
}

/* #loading{

    position: absolute;

    display: flex;

    justify-content: space-around;

    align-items: center !important;

    text-align: center;

    height: 76%;

    width: 72%;

}

#loading span{

    font-weight: bold;

    font-size: 2rem;

} */
/* =============================== */
/* Loading animation styles starts */
/* =============================== */
@keyframes bounce {
    from {
        transform: translateY(0%);
    }

    to {
        transform: translateY(-75%);
    }
}

.loading {
    --height: 10px;
    --loader-color: #dcdfe5;
    --animation-duration: 0.5s;
    align-items: flex-end;
    gap: calc(var(--height) * 0.75);
    height: calc(var(--height) * 1.75);
    width: max-content;
    position: absolute;
    display: flex;
    justify-content: space-around;
    align-items: center !important;
    text-align: center;
    margin: 0 auto;
    top: 50%;
    left: 50%;
}

.loading:before, .loading:after {
    content: "";
}

.loading > div, .loading:before, .loading:after {
    height: var(--height);
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--loader-color);
    animation: bounce var(--animation-duration) ease-in-out infinite alternate;
}

.loading:after {
    animation-delay: calc(var(--animation-duration) / 2);
}

.loading > div {
    animation-delay: calc(var(--animation-duration) / 4);
}

.date_range_picker {
    border-color: unset !important;
}

/* ============================= */
/* Loading animation styles ends */
/* ============================= */
#post_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svg-icon.svg-icon-7 svg {
    height: 0.9rem!important;
    width: 0.9rem!important;
}

#post_image_facebook {
    max-height: 300px!important;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

button[display-target="#post_image_facebook"] {
    position: absolute;
    top: 12px;
    right: 15px;
}

.input-danger {
    border: 1px solid red !important;
}

.btn.btn-icon.btn-xs, .btn-group-xs > .btn.btn-icon {
    height: calc(1.1em + 1rem + 2px);
    width: calc(1.1em + 1rem + 2px);
}

.card-body .bullet.bg-primary {
    position: relative;
    bottom: 4px;
}

.role-grid {
    display: grid;
    grid-template-columns: auto auto auto;
    white-space: nowrap;
}

.role-grid .form-check {
    margin-right: 20px;
}

.card-body .flex-column.text-gray-800 .align-items-center span, .card-body .flex-column.text-gray-800 .py-2 span {
    line-height: 1.8;
}

.page-item.disabled:hover .page-link {
    color: #B5B5C3!important
}

.arrow_box {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 6px;
}

.object-fit-cover {
    object-fit: cover!important;
    width: 100%;
    height: 100%;
}

.form-check {
    padding-bottom: 5px;
}
.member-service li:not(:last-child){
    margin-bottom: 6px;
}
.member-service li span, .member-service li p{
    font-size: 1.075rem !important;
}
.member-service ul{
    padding: 0px 0px 0px 15px;
}
#category-tree .form-check-custom:not(:last-child){
    margin-bottom: 10px;
}
.form-control, .form-control.form-control-solid{
    color: #181C32;
}


  .form-control::file-selector-button {
    color: var(--kt-form-file-button-color);
    background-color: #E4E6EF;
    border-color: #E4E6EF!important;
  }
  .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dee0ea;
    border-color: #dee0ea!important;
  }

  .select2-container--bootstrap5 .select2-selection--single.form-select-solid .select2-selection__placeholder{
    font-weight: 400;
  }
@media (max-width: 991.98px) {
    .aside .aside-logo{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 20px;
    }
    .aside .aside-logo h2{
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    .aside.aside-dark .aside-toggle{
        display: none;
    }
  }