

/* CUSTOM CSS - REPORTS */

div.reports {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999992;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.4s;
}

div.reports.actived {
    visibility: visible;
    opacity: 1;
    transition: 0.4s;
}


/* CLOSE TRIGGER */
div.reports > span.reports-close {
    height: 60px;
    position: fixed;
    bottom: 12px;
    right: calc(50% - 20px);
    z-index: 999995;
    border-radius: var(--defaultBorderRadius);
    color: var(--reportsToolsColor);
    background-color: var(--reportsToolsBackgroundColor);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 24px;
    font-size: 20px;
    transition: 0.2s;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 600;
}

div.reports > span.reports-close:hover {
    background-color: var(--reportsToolsHoverBackgroundColor);
    color: var(--reportsToolsHoverColor);
    transition: 0.2s;
}


/* ARROWS */
div.reports > span.reports-arrow {
    height: 80px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--reportsToolsColor);
    background-color: var(--reportsToolsBackgroundColor);
    border-radius: var(--defaultBorderRadius);
    position: fixed;
    left: 12px;
    top: calc(50% - 40px);
    cursor: pointer;
    font-size: 20px;
    transition: 0.2s;
}

div.reports > span.reports-arrow.right {
    left: unset;
    right: 32px;
}

div.reports > span.reports-arrow:hover {
    background-color: var(--reportsToolsHoverBackgroundColor);
    color: var(--reportsToolsHoverColor);
    transition: 0.2s;
}


/* CONTENT */
div.reports > div.reports-content {
    width: 100%;
    flex: 1;
    position: relative;
}


div.reports > div.reports-content > iframe.reports-content-item {
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    display: none;
}

div.reports > div.reports-content > iframe.reports-content-item.actived {
    visibility: visible;
    opacity: 1;
    transition: 0.4s;
    display: block;
}


/* LOADING */
div.reports > div.reports-content > div.reports-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}


div.reports > div.reports-content > div.reports-loading > div.spinner-border {
    width: 60px;
    height: 60px;
    color: var(--secondaryColor);
}