/************* ACCORDIONS *************/
.down-caret, 
.plus-x, 
.plus-minus p:before, 
.creative-accordion, 
.creative-accordion .color-mask {
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    cursor: pointer;
}
.down-caret p:before {
    content:'\E012';
    font-family:'kohtello';
    transform: rotate(0deg);
}
.plus-x p:before, .plus-minus p:before {
    content:'\002B';
}
.plus-minus p:before {
    display: block;
}
.rotated .plus-minus p:before, .plus-minus.rotated p:before {
    transform: rotate(180deg);
    content:'\2212';
}
.creative-accordion:hover .color-mask {
    opacity:0.2!important;
}
.rotated .down-caret, .down-caret.rotated {
    transform: rotate(180deg);
}

.rotated .plus-x, .plus-x.rotated {
    transform: rotate(45deg);
}