* {
    box-sizing: border-box;
}

*:active {
    outline: none;
}

*:focus {
    outline: none;
    box-shadow: var(--const-global-focus);
}

input,
button {
    font-family: inherit;
    font-size: inherit;
}

.sr,
.sr button {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}

.hidden,
[hidden] {
    display: none;
}

.invisible {
    visibility: hidden;
}


.tab-pane[aria-hidden='true'] {
    display: none;
}

.loading-wrapper { 
    height: 44px;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.loading-wrapper:not([hidden]) {
    display: flex;
}
iframe {
    width: 100%;
    height: auto;
    overflow-y: hidden;
    border: none;
}
iframe:not([hidden]) {
    display: inline-block;
}