.required > label::after {
    content: " *";
    color: tomato;
}

.tc-cursor-pointer {
    cursor: pointer;
}

.tc-map-pointer {
    position: absolute;
    z-index: 100;
    opacity: 0.9;
    border-radius: 50%;
    word-wrap: break-word;
    text-align: center;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.blinking {
    animation: blinking 0.8s infinite alternate;
}

@keyframes blinking {
    0%, 70% {
        opacity: 1;
    }
    100%	{
        opacity: 0;
    }
}