@keyframes loading {
    to {
        background-position: 315px 0, 0 0, 0 190px, 50px 195px;
    }
}

.price-details .price-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.price-details .price-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.price-details .price-detail .detail-title.detail-total {
    font-weight: 600;
}

.knowledge-base-bg {
    background-size: cover;
    background-color: rgba(115, 103, 240, 0.12) !important;
}

.knowledge-base-bg .kb-search-input .input-group:focus-within {
    box-shadow: none;
}

.kb-search-content-info .kb-search-content .card-img-top {
    background-color: #fcfcfc;
}

.kb-search-content-info .no-result.no-items {
    display: none;
}

.kb-title {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .knowledge-base-bg .kb-search-input .input-group {
        width: 576px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .knowledge-base-bg .card-body {
        padding: 8rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .knowledge-base-bg .card-body {
        padding: 6rem;
    }
}


.box-file {
    border: 1px solid #cdcdce;
    border-radius: 5px;
    padding: 10px;
    width: auto;
}

.emoji-wysiwyg-editor {
    overflow: hidden !important;
    height: 100px !important;
}

.emoji-picker-icon {
    z-index: 1 !important;
}

.autocomplete {
    position: relative;
    display: inline-block;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 15px;
    right: 15px;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.skeletalTable {
    width: 100%;
}

.skeletalTable .table {
    margin: 0 auto;
    text-align: left;
    border-spacing: 0;
}

.skeletalTable .table tbody td {
    padding: 20px 0;
    min-width: 150px;
}

.skeletalTable .table tbody td span {
    color: #fefefe;
}

.skeletalTable .table tbody td:last-child {
    border-radius: 0 8px 8px 0;
}

.skeletalTable .loading, .singleBar {
    position: relative;
}

.wrapper-single-bar {
    width: 15rem;
}

.skeletalTable .loading .bar, .singleBar {
    background-color: #e7e7e7;
    height: 14px;
    border-radius: 7px;
    width: 80%;
}

.skeletalTable .loading:after, .singleBar:after {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 80%);
    background-size: 200px 100%;
    background-position: -100px 0;
    background-repeat: no-repeat;
    animation: loading 1s infinite;
}