.lbl-news-button{
    display: block;
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 11pt;
    background-color: red;
    padding: 1px 4px;
    margin-bottom: 0px;
}

/*Scrolling Text Start New Start*/
.marquee {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 60s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

/* Make it move */
@keyframes marquee {
    0%   { text-indent: 50em }
    100% { text-indent: -77em }
}

/* Make it pretty */
.microsoft {
    position: relative;
    font-size: 17pt;
    font-family: Garamond;
    font-weight: bold;
    /*font: 16px 'brandon_grotesquelight', 'Segoe UI', Tahoma, Helvetica, Sans-Serif;*/
}

.response .right-side-container-content-1-text .microsoft
{
    font: 90 16px/22px Gill Sans MT !important;
}
.response .right-side-container-content-1-text .microsoft b
{
    font-weight: bold;
}

/* ::before was :before before ::before was ::before - kthx */
.microsoft:before, .microsoft::before {
    z-index: 2;
    content: '';
    position: absolute;
    top: -1em; left: -1em;
    width: .5em; height: .5em;
    /*box-shadow: 1.0em 1.25em 0 #F65314,
        		1.6em 1.25em 0 #7CBB00,
        		1.0em 1.85em 0 #00A1F1,
        		1.6em 1.85em 0 #FFBB00;*/
}

.microsoft:after, .microsoft::after {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2em;
    height: 2em;
    /*background-image: linear-gradient(90deg, white 70%, rgba(255,255,255,0));*/
}

body .container .microsoft .gapBetweenQuote {
    display: inline-block;
    width: 40px;
}
/*Scrolling Text Start New End*/