/* -------------------- Name: Intelilytics Styles: 04/24/2023 -------------------- */
/* Page Styling */
.pageStructure {
    display: flex;
    box-sizing: inherit;
    position: relative;
}

/* Main Menu and Drawer */
.mainMenu {
    height: 64px;
    background-color: #212121;
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: row;
    position: fixed;
    z-index: 1;
}

.menuLogo {
    display: flex;
}

.menuLogoImage {
    height: 30px;
    margin-left: 20px;
}

.mainMenuIcon {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 26px;
    margin-left: 16px;
}

.mainMenuIcon svg {
    width: 20px;
    height: 100%;
    margin: auto;
    margin-left: 9.5px;

}

.mainMenuIcon:hover {
    background-color: rgb(251, 251, 251, 0.06)
}

.menuSections {
    display: flex;
    margin: auto;
    padding-right: 166px;
    background-color: #212121;
    z-index: 1200;
}

.menuItem {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    background-color: transparent;
    padding: 8px 10px;
    border-radius: 4px;
}

.menuItem:hover {
    background-color: rgba(251, 251, 251, .12);
}

.sideMainMenu {
    z-index: 12;
    display: flex;
    position: fixed;
    flex-direction: column;
    top: 0px;
    background-color: #212121;
    width: 0px;
    height: 100%;
    padding-top: 8px;
    overflow-x: hidden;
}

.sideMainMenuItem {
    text-align: start;
    margin-left: 16px;
    margin-right: 16px;
}

#openIcon {
    display: none;
}

/*Shade over content when when menu drawer is open.*/
.shade {
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    display: none;
    z-index: 2;
    overflow-x: hidden;
    position: fixed;
}

/* Page Content Styling */
.pageContent {
    flex-grow: 1;
    width: 100%;
    display: block;
    box-sizing: inherit;
    text-align: left;
}

.gridContent {
    margin-left: auto;
    margin-right: auto;
    max-width: 1600px;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 15px;
    margin-top: 64px;
}

.contentHeader {
    background-color: #fff;
    width: 100%;
    z-index: 1;
    position: sticky;
    top: 64px;
}

.contentTitle {
    padding-top: 13.5px;
    text-align: left;
    display: flex;
    flex-direction: row;
    margin-bottom: 13.5px;
}

.contentSections {
    margin-top: 2px;
}

.sectionBreak {
    margin-top: 12px;
    margin-bottom: 24px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.12);
}

/* Reports Table */
.reportsTable td {
    text-align: left;
    display: flex;
    flex-direction: row;
}

.reportsTable td a {
    align-self: center;

}

.reportsTable th {
    text-align: left;
}

.reportsTable .button {
    width: 126px;
    margin-left: auto;
}

@media (max-width: 960px) {
    .reportsTable td {
        flex-direction: column;
        text-align: center;
    }

        .reportsTable td a {
        padding-top: 15px;
    }
}

/* Responsive layout - makes a one column-layout instead of two-column layout */
@media (max-width: 600px) {
    .contentHeader {
        top: 56px;
    }
    .gridContent {
        margin-top: 56px;
    }
}

@media (max-width: 600px) {
    .mainMenu {
        height: 56px;
    }

    .menuLogo {
        display: none;
    }

    #openIcon {
        display: block;
    }

    .menuSections {
        display: none;
    }

}

.center {
    text-align: center;
}

.required:after {
    content:" *";
    color: red;
  }