/**
 * Custom color tool on product card
 */
.custom-color-tool {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.custom-color-tool #text-char-count {
    text-align: right;
    margin-top: 0.5rem;
    font-size: .8em;
}

.custom-color-tool .validate-mark {
    pointer-events: none;
}

.custom-color-tool .checkmark-green:before {
    content: "\f00c";
    color: #399f15;
}

.custom-color-tool .wrong-red:before {
    content: "\f00d";
    color: #9f1515;
    top: -10px;
}

.custom-color-tool .validate-mark:before {
    font-size: 1.75rem;
    font-weight: 300;
    right: 1rem;
    font-family: "FontAwesome";
    position: absolute;
    z-index: 3;
}