.wpcvs-empty, .wpcvs-terms + select:not(.wpcvs-select), .wpcvs-term.wpcvs-disabled:after, .wpcvs-term.wpcvs-disabled:before {
    display: none !important;
}

.wpcvs-terms {
    display: inline-block;
    margin-left: -3px;
    margin-right: -3px;
}

.wpcvs-term {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin: 6px 3px 0 3px;
    padding: 3px;
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
    border-color: #dddddd;
    background-color: #ffffff;
    position: relative;
    float: left;
}

.wpcvs-term > span {
    display: block;
    height: 34px;
    line-height: 34px;
    width: 100%;
    position: relative;
    background-color: #efefef;
}

.wpcvs-term.wpcvs-selected > span:before {
    content: '✓';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 10px;
    background-color: green;
    color: #ffffff;
    text-align: center;
    line-height: 16px;
    font-size: 10px;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 9;
    border: 2px solid #ffffff;
}

.wpcvs-term.wpcvs-selected {
    border-color: green;
}

.wpcvs-term.wpcvs-disabled {
    opacity: .4;
    cursor: default;
}

.wpcvs-type-button .wpcvs-term {
    height: 42px;
    min-width: 42px;
    line-height: 40px;
}

.wpcvs-type-button .wpcvs-term > span {
    padding: 0 20px;
    border-radius: 2px;
}

.wpcvs-type-radio .wpcvs-term {
    display: block;
    width: calc(100% - 6px);
    text-align: start;
}

.wpcvs-type-radio .wpcvs-term > span {
    padding: 0 20px;
    border-radius: 2px;
}

.wpcvs-type-radio .wpcvs-term input[type="radio"] {
    outline: none;
    margin-right: 10px;
    pointer-events: none;
}

.wpcvs-type-color .wpcvs-term {
    font-size: 0;
    height: 42px;
    width: 42px;
}

.wpcvs-type-color .wpcvs-term > span {
    border-radius: 2px;
}

.wpcvs-type-image .wpcvs-term {
    font-size: 0;
    height: 42px;
    width: 42px;
}

.wpcvs-type-image .wpcvs-term img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 2px;
}

/* Styles */

.wpcvs-terms.wpcvs-style-rounded .wpcvs-term {
    border-radius: 21px;
}

.wpcvs-terms.wpcvs-style-rounded .wpcvs-term > span {
    border-radius: 17px;
}

.wpcvs-terms.wpcvs-style-rounded .wpcvs-term img {
    border-radius: 50%;
}

/* RTL */

body.rtl .wpcvs-term {
    float: right;
}