/* Description: Description of the file
Create: 2023-12-05
Update: 2023-12-05 22:10:50
Workspace: AntSoftWSPHP
Relative path: vendor\css\wordcloud.css
Autor(s): William Costa Rodrigues
Copyright(c) 2023, William Costa Rodrigues
Dependency: Informe the dependencies
*/

#word-cloud-html {
    height: 250px !important;
    width: 100%;
}

.word-cloud-container {
    display: flex;
}

.word-cloud-card {
    width: 100%;
}

.word-cloud-title {
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    text-decoration: underline;
}

#word-cloud-canvas-hover-box {
    pointer-events: none;
    position: absolute;
    box-shadow: 0 0 200px 200px rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    border-style: solid;
    cursor: pointer !important;
}

#word-cloud-html>span {
    transition: text-shadow 1s ease, opacity 1s ease;
    -webkit-transition: text-shadow 1s ease, opacity 1s ease;
    -ms-transition: text-shadow 1s ease, opacity 1s ease;
}

#word-cloud-html>span:hover {
    text-shadow: 0 0 10px, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
    opacity: 0.5;
    cursor: pointer !important;
}