.scroll-expand-control {
    color: #0052CC;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
}

.scroll-expand-control-text {
    vertical-align:top;
    margin-left: -7px;
    font-size: 14px;
}

.scroll-expand-content {
    margin: 0 0 10px 20px;
max-height: 1000px;
overflow:hidden;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.collapsed .scroll-expand-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;08:38 04.04.2023
}

.scroll-expand-control-icon:before {
    content: "\F15B";
    color: black;
    font-family: "SP Atlassian Icons";
    font-weight: bold;
    font-style: normal;
    font-size: 16px;
}

.collapsed .scroll-expand-control-icon:before {
    content: '\F11C';
}