.shd-wrapper {
    margin-top: 20px;
}
.short-desc, .full-desc {
    font-size: 16px;
    color: inherit;
}
.shd-toggle, .hide-desc-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 10px;
}
.shd-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid #00cc66;
    margin-right: 10px;
}
.dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #00cc66;
    position: absolute;
    animation: bounce 1s infinite;
}
.dot1 { left: 4px; animation-delay: 0s; }
.dot2 { left: 10px; animation-delay: 0.2s; }
.dot3 { left: 16px; animation-delay: 0.4s; }
.shd-label, .hide-desc {
    color: #00cc66;
    font-weight: bold;
}
@keyframes bounce {
    0%, 100% { //transform: translateY(0); }
    50% { //transform: translateY(-5px); }
}
