.pill {
    float: none;
    /*background-color: #ddd;*/
    border: 0.1rem solid #0066a5;
    border-radius: 0.5rem;
    padding: 0.1rem 0.6rem 0.1rem 0;
    margin-left: 0.5rem;
}

.pill::before {
    background-color: #0066a5;
    color: white;
    border-top-left-radius: .4rem;
    border-bottom-left-radius: .4rem;
    padding: 0.15rem 0.3rem;
    margin-right: .3rem;
    content: attr(data-label);
}

.blink {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
    0% { opacity: 1.0; }
    40% { opacity: 1.0; }
    50% { opacity: 0.0; }
    60% { opacity: 1.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {
    0% { opacity: 1.0; }
    40% { opacity: 1.0; }
    50% { opacity: 0.0; }
    60% { opacity: 1.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {
    0% { opacity: 1.0; }
    40% { opacity: 1.0; }
    50% { opacity: 0.0; }
    60% { opacity: 1.0; }
    100% { opacity: 1.0; }
}

#container-frame {
    margin-bottom: 0px !important;
}

#supportIcon {
    display: none !important;
}

/*div.pds-global-search > article {*/
/*    z-index: 9000 !important;*/
/*}*/