/* This is for announcement banner - color and blinking */
.announcement { text-align: center;
	color: #ff0000;
	background-color: #ffffff
}

.blink {
        animation: blink-animation 2s steps(5, start) infinite;
        -webkit-animation: blink-animation 2s steps(5, start) infinite;
      }
@keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
@-webkit-keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }



/* The following is to hide the social share icons in the footer of the kb */
.KbDetailLtContainer__userSocialIcon{
display: none
}
