#animatedRect {
    width: 120px;
    height: 60px;
    background-color: #f7f7f7;
    border: 4px solid #ccc;
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s ease;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    overflow-y: scroll;
    display: none;
}

#animatedRect.expanded {
    width: 400px;
    height: 500px;
}

#animatedRect .contentt,
#animatedRect .labelt {
    color: black;
    padding: 15px;
}

#animatedRect .labelt {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: rgb(175, 175, 175);
}

#animatedRect .contentt {
    display: none;
}

#animatedRect .close-btn {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #ccc;
}

#animatedRect.expanded .close-btn {
    display: block;
}