.outer-div {
    font-size: 2.5vh;
}

.report-container {
    height: 100%;
    padding: 0;
    visibility: hidden;
}

.report-wrapper {
    background-color: #EAEAEA;
    height: 99vh;
    padding: 0;
}

.spinner {
    animation: rotation 1s infinite linear;
    left: 50%;
    top: 50%;
    width: auto;
}

body {
    background: #FCFCFC;
    opacity: 1;
}

iframe {
    border: none;
}

.transparent-bg {
    background-color: transparent;
}

@keyframes rotation {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(359deg);
    }
}