﻿.qna-card {
    margin-bottom: 25px;
    border: none;
    box-shadow: 0px 0px 30px 0px rgb(82 63 105 / 5%);
}

.qna-card .card-title {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.qna-card .card-header {
    padding: 2rem 2.25rem 1rem;
    border-bottom: none;
}

.qna-card i {
    -webkit-transition: all 0.75s ease;
    transition: all 0.75s ease;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.qna-card .opened i {
    -webkit-transition: all 0.75s ease;
    transition: all 0.75s ease;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.qna-card-details {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
}


.request-sticky {
    position: sticky;
    top: 0;
    bottom: -6px;
    z-index: 5;
}