/*#supportRequestDetail .card,
#supportRequestDetail .accordion {
    box-shadow: 0 0 30px 0 rgba(82, 63, 105, 0.1);
}

#supportRequestDetail .requestInfoCard a {
    text-decoration: none;
    color: var(--bs-body-color);
}

#supportRequestDetail .requestInfoCard i {
    font-size: 1.8em;
    color: var(--bs-gray-600);
}

#supportRequestDetail .requestInfoCard.categoryInfoCard:hover .jsCategoryEditBtn {
    display: block !important;
}

#supportRequestDetail .jsCategoryEditBtn {
    font-size: 0.7em;
}

#supportRequestDetail #accordionCloseComment .accordion-button:not(.collapsed) {
    color: #664d03;
    background-color: #fff3cd;
}

#supportRequestDetail #accordionEvents .accordion-button:not(.collapsed) {
    color: #055160;
    background-color: #cff4fc;
}

.timeline .timeline-item {
    display: flex;
}

.timeline .timeline-item.timeline-left {
    justify-content: start;
}

.timeline .timeline-item.timeline-right {
    justify-content: end;
}

.timeline .timeline-item .timeline-item-container {
    width: calc(50% + 25px);
    display: flex;
}

.timeline .timeline-item.timeline-left .timeline-item-container {
    flex-direction: row-reverse;
    right: auto;
}

.timeline .timeline-item .timeline-content:before {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    content: '';
    left: -8.5px;
    transform: rotate(45deg);
    top: 17.5px;
    border-color: rgba(var(--bs-black-rgb),.125);
    border-style: solid;
    border-width: 0 0 1px 1px;
}

.timeline .timeline-item .timeline-badge {
    width: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline .timeline-item .timeline-badge:before,
.timeline .timeline-item .timeline-badge:after {
    content: '';
    border-left: 2px solid var(--bs-gray-300);
    position: relative;
    left: calc(50% - 1px);
    flex-grow: 1;
}

.timeline .timeline-item .timeline-badge:before {
    height: 35px;
    flex-grow: 0;
}

.timeline .timeline-item:first-child .timeline-badge:before {
    border-left: 0;
}

.timeline .timeline-item:last-child .timeline-badge:after {
    border-left: 0;
}

.timeline .timeline-item .timeline-badge .timeline-icon {
    margin-top: .3em;
}

.timeline .timeline-item .timeline-content-container {
    flex: 1 0 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.timeline .timeline-item .timeline-date {
    display: flex;
    justify-content: end;
}

@media (max-width: 768px) {
    .timeline .timeline-item .timeline-item-container {
        width: 100%;
    }

    .timeline .timeline-item.timeline-right,
    .timeline .timeline-item.timeline-left {
        justify-content: start;
    }

    .timeline .timeline-item.timeline-left .timeline-item-container {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .timeline .timeline-item.timeline-left .timeline-content:before {
        left: auto;
        right: -8.5px;
        transform: rotate(-135deg);
    }
}*/