body {
    position: relative !important;
    height: auto !important;
}

#jb_accessibility_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgba(0,0,0,.2);
    z-index: 99999999999;
    
}

#jb_accessibility_overlay > div {
    position: relative;
    width: 100%;
    height: 100%;
}

.a11y-issue {
    position: absolute;
    background: transparent;
    outline: 4px solid #F7931F;
    pointer-events: all;
    z-index: 5;
    transition: .5s ease all;
    min-height: 20px;
}

.a11y-issue:hover {
    background: rgba(0,0,0,.2);
    cursor: pointer;
    z-index: 100;
}


.a11y-issue:hover .issue-annotation {
    opacity: 1;
    pointer-events: all;
}

#jb_accessibility_overlay_toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999999990;
    background: #F7931F;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 10px;
    border: 0;
    cursor: pointer;
}

.issue-annotation {
    position: relative;
    opacity: 0;
    transition: .5s ease all;
    pointer-events: none;
    transform: translateY(-20px);
}

.issue-annotation::after {
    content: "";
    width: 22px;
    height: 22px;
    display: block;
    margin: auto;
    transform: translatey(-11px) rotate(45deg);
    background: white;
}

.issue-annotation__toast {
    background: #FFFFFF;
    box-shadow: 0px 4px 40px #979797;
    border-radius: 6px;
    padding: 33px 38px;
    position: absolute;
    bottom: 100%;
    width: 370px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-impact {
    font-size: 22px;
    line-height: 26px;
    color: #F7931F;
    text-transform: capitalize;
    display: block;
    margin-bottom: 13px;
}

.icon-impact::before {
    content: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAXCAYAAADgKtSgAAACnklEQVRIiZ1V21HbUBA9eyUmCJOJKyCXCuIOMBXEVID5zIcBV2BTgSH64BNTAaQCTAVxKkCkgThDiAFL92T2YjMDloTJ/njG2j337OusoMR4Yqu3N2iEBp8cYQWsqreIDDPicmUVA9lJRkUIueAKevcH+wT3BKiSGBlBQogHIlkTQfURQfoIcBB9SZJXwe9j28jAEwUF2QdMP9pNLl/6Tb7ajRSuCZEmgMRB2pVWcl4IPo5tF2BHgCFT2Yra82xe2rhnLQJeQGAdeFBp/ezOgStjB54p2+XMtKVdXMs8u43X+gay7SBbsww8+PjYWqS8AIFo93o9P9iCBjU8YLjank+IPVu9D3nhABulsq7kjP+SoQPAIpPNEnKNwPE7gFreRwXTUmqv7kK3p/8ZfRFkU8tRVmMD+DIFAT4U+fh4sk/IvuKavyHq0/B+CevFTcypZ7+EzyYgNgiM8sbtmaXwWWUZfpe5Ra1koHjiXM1QUNPRW5RZZUl+veZjdO5FrPn//ItNN1lLYwQYEdNVLrdZs68XfcSAPsi+yib0jM7H5ALMWRNyaFLgh6ZwE9t6WYCEqooY6m+Z3zi2dcXLjBmYSoZz7W4o2C4Fn2APYFcmjwtS7PiIszLBpdHNCiCHukheBopSzXCk8srMHBWy1vjpQiqu1xbdpnHIKx2hd6lsvlW0nsDjj1eqTyojuq1+FL0uQHYI1O6WXO+toP5ixWu64daJtGcy8kzP72PbcWDXj10om3nXZY7tsbWS8YxUQWM3av08mH2bu0S3sW0YsqfirzVOidP3rWQwXwJb980jm3oGKbJTeomeAv11cZ3pCdMyanO8ROiYqWbPbqsID5dTc5TXp/Lr37PVB4MNiqtTjNdxfcjQJaQZLjt8K2w+gH9kFkkU+NpjOgAAAABJRU5ErkJggg==');
    transform: translateY(4px);
    display: inline-block;
    margin-right: 5px;
}

.issue-info {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #757575;
}

.issue-summary {
    white-space: pre-line;
    line-height: 1.8;
}

.issue-more-button {
    display: block;
    background: #F7931F;
    color: white;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    border: none;
    margin-top: 15px;
    width: 100%;
    padding: 14px;
    transition: .5s ease all;
}

.issue-more-button:hover, .issue-more-button:focus {
    background: #e88a1d;
    cursor: pointer;
}

.issue-modal {
    position: fixed;
    top: 50%;
    left: auto;
    width: 540px;
    max-height: 80vh;
    background: white;
    left: 0;
    right: 0;
    margin: auto;
    top: 80px;
    z-index: 9999999999999999999999999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.5s ease all;
    border-radius: 6px;
    overflow: hidden;
}

.issue-modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}

.jb_modal-head {
    background: #92278F;
    padding: 15px 30px;
    color: white;
    position: relative;
}

.jb_modal-body {
    overflow: auto;
    max-height: calc(80vh - 56px);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
    color: #757575;
    padding: 30px 60px 55px 30px;
}

.jb_modal-body pre::before {
    content: "Offending Elements:";
    display: block;
    background: #757575;
    font-size: 14px;
    color: white;
    padding: 4px 15px;
    position: absolute;
    top: 0;
    left: 0;
}

.jb_modal-body pre {
    padding: 39px 15px 15px;
    white-space: pre-wrap;
    border-left: 2px solid #757575;
    background: #eeeeee;
    position: relative;
    overflow: hidden;
}

.jb_modal-body__description {
    margin-bottom: 20px;
    white-space: pre-line;
}

.jb_close {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB4SURBVHgBtZRhCoAwCIWlE+wI3qxuVjfrKGawQCKdj5zgH31+6sZG1E1EGv01hWzqpzoDNdxrVhu8A5KFGchT07wEAxDGBEjDSIhM7RbAkACGQxzYELLQTCtZreSwS64/IxxqkNFdLbw/xY/2yEI+YPs7AX9stvEFobfnqJi51mwAAAAASUVORK5CYII=');
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 14px;
    right: 10px;
    cursor: pointer;
}

#jb_accessibility_passed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #F7931F;
    z-index: 999999999990;
    font-size: 16px;
    padding: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: .25s ease all;
}

#jb_accessibility_passed.active {
    opacity: 0;
    pointer-events: none;
}