/*
 * WPT Word Cloud
 * https://wp-tutorials.tech/refine-wordpress/word-tag-cloud/;
 */
.wpt-word-cloud {
    position: relative;
    border-radius:  2em;
    width:  100%;
    height:  25em;
    transition: opacity 0.50s;
    background-color:  transparent !important;
    margin-top:  1em;
    margin-bottom:  1em;
}

.wpt-word-cloud > span {
    transition:  0.3s;
}

.wpt-word-cloud > span:hover {
    color:  #ff8c00 !important;
    cursor: pointer;
}

.wpt-word-cloud .high-weight {
    color:  #1700cc !important;
}

.wpt-word-cloud .medium-high-weight {
    color:  #1700ccc0 !important;
}

.wpt-word-cloud .medium-low-weight {
    color:  #1700cca0 !important;
}

.wpt-word-cloud .low-weight {
    color:  #1700cc80 !important;
}