:root {
    --kbBannerBlack: #000000;
    --kbBannerBlue: #0479a8;
    --kbBannerDark: #494949;
    --kbBannerGreen: #0f7632;
    --kbBannerGray: #dadfe1;
    --kbBannerLight: #f7f7f7;
    --kbBannerOrange: #FFA500;
    --kbBannerRed: #c5050c;
    --kbBannerYellow: #ffc107;
    --kbBannerWhite: #ffffff;

    --kbbannerblack: #000000;
    --kbbannerblue: #0479a8;
    --kbbannerdark: #494949;
    --kbbannergreen: #0f7632;
    --kbbannergray: #dadfe1;
    --kbbannerlight: #f7f7f7;
    --kbbannerorange: #FFA500;
    --kbbannerred: #c5050c;
    --kbbanneryellow: #ffc107;
    --kbbannerwhite: #ffffff;
}
.uw-button {
    display: inline-block;
    text-align: center;
    font-family: inherit;
    font-weight: 620;
    font-size: 1rem;
    line-height: 1;
    padding: .75rem 1.25rem;
    margin: .2rem;
    background: #0479a8;
    color: #fff;
    box-shadow: 0 1.5px 4px rgba(0,0,0,.24),0 1.5px 6px rgba(0,0,0,.12);
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
    transition: all .25s ease-out;
    vertical-align: middle;
    border: 2px solid #0479a8;
    border-radius: 2px;
    text-decoration: none !important;
}
/* This bit (a.uw-button) is KB unique. */
a.uw-button {
    background: #0479a8;
    color: #fff;
}
.uw-button:hover, .uw-button:focus {
    color: #0479a8;
    background-color: #fff;
    text-decoration: none;
    transition: all .25s ease-in-out;
    outline: 0;
}
.uw-button:hover:after, .uw-button:focus:after {
    opacity: 1;
}
.uw-button.uw-button-large {
    padding: 0.625em 1.625rem;
    font-size: 1.25rem;
}
.uw-button.uw-button-expanded {
    display: block;
    width: 100%;
}
.uw-button.uw-button-reverse {
    background-color: white;
    border: 2px solid #0479a8;
    color: #0479a8;
}
.uw-button.uw-button-reverse:hover, .uw-button.uw-button-reverse:focus {
    background-color: #0479a8;
    border: 2px solid #0479a8;
    color: #fff;
}
.uw-button.uw-button-transparent {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
}
.uw-button.uw-button-transparent:hover, .uw-button.uw-button-transparent:focus {
    background-color: #fff;
    color: #494949;
}
.uw-button.uw-button-red {
    background-color: #c5050c;
    color: #fff;
    border: 2px solid #c5050c;
}
.uw-button.uw-button-red:hover, .uw-button.uw-button-red:focus {
    background-color: #fff;
    color: #c5050c;
}
.uw-button.uw-button-red-reverse {
    background-color: #fff;
    color: #c5050c;
    border: 2px solid #c5050c;
}
.uw-button.uw-button-red-reverse:hover, .uw-button.uw-button-red-reverse:focus {
    background-color: #c5050c;
    border: 2px solid #c5050c;
    color: #fff;
}
/* For TinyMCE editor */
.mce-content-body a.uw-button[data-mce-selected] {
    padding: 0.65rem;
}
.mce-content-body a.uw-button.uw-button-large[data-mce-selected] {
    padding: 0.625em 1.625rem;
}
/* CSS for collapsable panels embedded in KB docs */
.panel-head {
    border: 1px #bbb solid;
    border-radius: 5px;
    background-color: #f9f9f9;
    padding: 10px;
    color: #000;
    margin: 10px auto 0;
}
.panel-head:hover, .panel-head:focus {outline:none; background-color: #e7e7e7;}
.panel-head.expanded {border-bottom-right-radius: 0; border-bottom-left-radius: 0;}
.panel-head:hover {cursor:pointer;}
.panel-head::before {content: "+"; padding-right: 10px; font-size: 24px;}
.expanded::before {content: "-"; padding-right: 15px; font-size: 24px;}
.panel-content {
    border-right: 1px #bbb solid;
    border-left: 1px #bbb solid;
    border-bottom: 1px #bbb solid;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    padding:15px;
}
#expandAll, #collapseAll {margin: 15px 5px; cursor: pointer;}
#expandAll + .panel-head, #collapseAll + .panel-head {margin-top: 0;}
