﻿.citpl_z_index {
    z-index:1030 !important;
}


.footer-area {
    border-top: 2px solid #989CA4;
    background: #363839 !important;
    /* padding: 0px 10px 0px; */
    /*padding: 30px 10px 25px;*/
    color: #8c8989;
}

.citpl_acc .accordion-button {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}


.text-underline-hover {
    text-decoration: none;
}

.text-underline-hover:hover {
    text-decoration: underline;
}

/** Start of vertical marquee class **/
.container_marq {
    width: 14em;
    height: 8em;
    margin: 1em auto;
    overflow: hidden;
    background: white;
    position: relative;
    box-sizing: border-box;
}

.marquee {
    top: 6em;
    position: relative;
    box-sizing: border-box;
    animation: marquee 15s linear infinite;
}

    .marquee:hover {
        animation-play-state: paused;
    }

/* Make it move! */
@keyframes marquee {
    0% {
        top: 8em
    }

    100% {
        /*top: -11em*/
        top: -30em
    }
}

/* Make it look pretty */
.ctipl_marq .marquee {
    margin: 0;
    /*padding: 0 1em;*/
    padding: 0 0.2em;
    line-height: 1.5em;
    font: 1em 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
}

.ctipl_marq:before, .ctipl_marq::before,
.ctipl_marq:after, .ctipl_marq::after {
    left: 0;
    z-index: 1;
    content: '';
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 2em;
    background-image: linear-gradient(top, #FFF, rgba(255,255,255,0));
}

.ctipl_marq:after, .ctipl_marq::after {
    bottom: 0;
    transform: rotate(180deg);
}

.microsoft:before, .microsoft::before {
    top: 0;
}

/* Style the links */
.vanity {
    color: #333;
    text-align: center;
    font: .75em 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
}

    .vanity a, .ctipl_marq a {
        color: #1570A6;
        transition: color .5s;
        text-decoration: none;
    }

        .vanity a:hover, .ctipl_marq a:hover {
            color: #F65314;
        }

/* Style toggle button */
.toggle {
    display: block;
    margin: 2em auto;
}

/** End of vertical marquee class **/