/*!
 * Custom light icons — CharterPro
 * Icone SVG outline (stile "light") disegnate a mano per coprire i glifi mancanti
 * nel font Pro 5.0.1 e non presenti in Font Awesome Free.
 * Rese via CSS mask: ereditano `color` e `font-size` come un normale font-icon.
 * Uso: <i class="cico cico-landmark"></i>
 * Namespace `cico` isolato: non interferisce con FA5 (.fa*) né FA6 (.fa6*).
 */
.cico {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.cico-landmark {
    -webkit-mask-image: url(../svg/landmark.svg);
    mask-image: url(../svg/landmark.svg);
}
