

/* TEKST */
.payoff,
.text-orange,
.textorange {
    color: #f47929;
}

.text-mintgroen {
    color: #5dc4bf;
}

.text-green {
    color: #5dc4bf;
}

.text-blue {
    color: #004A7F;
}

.text-black {
    color: #000;
}

.text-white {
    color: #fff;
}

.text-gray {
    color: #ebebec;
}

.text-darkgray {
    color: #6d6e71;
}

.text-red {
    color: #f00;
}

.text-italic {
    font-style: italic;
}

.totaal-row {
    font-weight: bold;
    color: #f47929;
}

.text-bold,
.heading,
strong {
    font-weight: bold;
}

.text-size-xs {
    font-size: 11px;
}

.text-size-sm {
    font-size: 12px;
}

.text-size-md {
    font-size: 16px;
}

.text-size-lg {
    font-size: 20px;
}

.text-size-xlg {
    font-size: 30px;
}

small,
.small {
    font-size: 9px;
}

.headline {
    font-size: 14px;
    color: #333;
}

.foottext {
    font-size: 10px;
    color: #333;
}


.strikethrough-diagonal {
    position: relative;
    font-weight: bold;
}

    .strikethrough-diagonal:before {
        position: absolute;
        content: '';
        left: -5px;
        top: 45%;
        right: -5px;
        border-top: 1px solid;
        border-color: inherit;
        -webkit-transform: skewY(-10deg);
        -moz-transform: skewY(-10deg);
        transform: skewY(-10deg);
    }


.text-center-xs {
    text-align: center;
}

.text-center-hidden-xs {
    text-align: left;
}

@media (min-width: 768px) {
    .text-center-visible-xs {
        text-align: left !important;
    }
}

@media (max-width: 767px) {
    .text-right-visible-xs {
        text-align: right !important;
    }

    .text-left-visible-xs {
        text-align: left !important;
    }

    .text-right-hidden-xs {
        text-align: left !important;
    }
}

.text-blink {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.text-pop-out {
    display:inline-block;
    animation: 2s anim-popoutin ease infinite;
}
@keyframes anim-popoutin {
    0% {
        color: inherit;
        transform: scale(0);
        opacity: 0;
        text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    25% {
        color: #f47929;
        transform: scale(2);
        opacity: 1;
        text-shadow: 3px 10px 5px rgba(0, 0, 0, 0.5);
    }
    50% {
        color: inherit;
        transform: scale(1);
        opacity: 1;
        text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
    }
}

