.wcag-content {
	text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    align-content: center;
    display: none;
}

.wcag-show-content {
    font-size: 1.625rem;
}

.wcag-box-wrapper {
    padding: 38px 24px;
    display: inline-block;
    vertical-align: middle;
}

.wcag-box-wrapper a {
    color: var(--Black);
    font-size: 16px;
    font-weight: bold;
    transition: all 300ms ease-in-out;
    text-transform: uppercase;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;

}

.wcag-box-wrapper a:hover
{
    color: var(--Blue);
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

