/* BLUE POST */
#kunena.layout .post-type1 {
    background: #e8f8ff !important;
    background: -webkit-linear-gradient(#e8f8ff, #cce2ff) !important;
    background: -o-linear-gradient(#e8f8ff, #cce2ff) !important;
    background: -moz-linear-gradient(#e8f8ff, #cce2ff) !important;
    background: linear-gradient(#e8f8ff, #cce2ff) !important;
}

/* GREEN POST (USEFUL) */
#kunena.layout .post-type2 {
    background: #cbffc6 !important;
    background: -webkit-linear-gradient(#e5ffe2, #cbffc6) !important;
    background: -o-linear-gradient(#e5ffe2, #cbffc6) !important;
    background: -moz-linear-gradient(#e5ffe2, #cbffc6) !important;
    background: linear-gradient(#e5ffe2, #cbffc6) !important;
}

/* PARTY POST (FUN) */
#kunena.layout .post-type3 {
    -webkit-animation: rainbow 5s ease infinite;
    -z-animation: rainbow 5s ease infinite;
    -o-animation: rainbow 5s ease infinite;
    animation: rainbow 5s ease infinite;
    background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
    background-size: 18000% 18000%;
}

@keyframes rainbow {
    0% {
        background-position: 0% 82%
    }

    50% {
        background-position: 100% 19%
    }

    100% {
        background-position: 0% 82%
    }
}

@-webkit-keyframes rainbow {
    0% {
        background-position: 0% 82%
    }

    50% {
        background-position: 100% 19%
    }

    100% {
        background-position: 0% 82%
    }
}

@-moz-keyframes rainbow {
    0% {
        background-position: 0% 82%
    }

    50% {
        background-position: 100% 19%
    }

    100% {
        background-position: 0% 82%
    }
}

@-o-keyframes rainbow {
    0% {
        background-position: 0% 82%
    }

    50% {
        background-position: 100% 19%
    }

    100% {
        background-position: 0% 82%
    }
}