
.info-banner {
    margin: 4px 40px;
    padding: 2px 20px;
}


.alert-info-custom {
    background-color: #5286BD
}


.collapsable {
    cursor: pointer;
    position: relative;
    padding-left: 1.5rem;
}
.collapsable::before {
    content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10'><polygon points='0,0 10,0 5,10' fill='white'/></svg>");
    position: absolute;
    left: 0.5rem;
    transform: translateY(-8%) rotate(0deg) scale(100%);
    transition: transform 0.3s;
}
.collapsable.collapsed::before {
    transform: translateY(0%) rotate(-90deg) scale(100%);
}
