/* Background color */

.dynamic-color {
    background-color: #E4AF23 !important;
}

.dynamic-color-gradient {
    position: relative;
}

    .dynamic-color-gradient::after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #E4AF23 90%, #E4AF23 100%);
    }

/* Text color */

.dynamic-color-text {
    color: #000000 !important;
}

/* Label color  */

.dynamic-color-text-bg {
    color: #000000 !important;
    position: relative;
    z-index: 1;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

    .dynamic-color-text-bg::after {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #000000 !important;
        -webkit-filter: invert(100%);
        filter: invert(100%);
        z-index: -1;
    }
