﻿/* ELEMENT SELECTORS */
* {
    box-sizing: content-box !important;
}

@-ms-viewport {
    width: device-width !important;
}

p {
    text-align: justify;
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever
   word-break: break-all; */
    /* Instead use this non-standard one: */
    word-break: break-word;
    /* Adds a hyphen where the word breaks, if supported */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

body {
    margin: 0px !important;
    overflow-x: hidden !important;
    font-family: "Lato", sans-serif;
}

input[type="button"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
.TextBox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none !important;
    border-radius: 0px !important;
    padding: 10px 24px 10px 10px !important;
    font-size: 16px !important;
    width: calc(100% - 50px);
    margin-bottom: 10px;
    font-size: 100%;
    font-family: Trebuchet MS /*MainFont*/, 'Avenir Next', 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
    background-color: #FFFFFF /*InputBoxBackground*/;
    color: #434343 /*InputBoxFontColor*/;
    border: 1px solid;
    border-color: #CCCCCC /*InputBoxBorderColor*/;
    padding: 3px;
    margin: 3px;
    border-radius: 4px;
    box-shadow: inset 0px 1px 6px rgba(0,0,0,0.1);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../rdTemplate/rdInputCheckboxList/icon-dropdown.png) 98% / 16px no-repeat;
    padding: 10px 24px 10px 10px !important;
    box-shadow: none !important;
    border-radius: 0px !important;
}

body.fullscreen #main {
    margin: 0 !important;
}

body.fullscreen #sidenav {
    display: none !important;
}

body.fullscreen #topnav {
    display: flex;
    flex-direction: row;
}

body.fullscreen #topnavList, #topnavListPH {
    display: block;
}


/* ID SELECTORS */
#divLogo img {
    padding: 26px 15px;
}

#divContainer {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

#topnav {
    width: 100%;
    height: 55px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    display: none;
}

#topnavLogo {
    flex: 0 calc(50% - 24px);
    padding: 5px 16px;
    margin: auto;
}

#topnavLoginLogo {
    padding: 8px 38px;
    margin: auto;
}


#topnavListBtn {
    flex: 0 calc(50% - 24px);
    padding: 20px 16px 16px 16px;
}

#topnavList {
    display: none;
    height: auto !important;
    padding: 100px 16px 16px 16px;
}

    #topnavList a:hover {
        filter: brightness(85%) !important;
    }

#topnavListPH {
    margin-top: 55px;
    /*display: none;*/
}

#ShowMobile {
    display: none;
}

#HideMobile {
    display: inherit;
}

#divUpload {
    display: flex;
}

#divTitle {
    margin: 25px 15px 10px 15px;
}

#divHistory {
    margin: 100px 15px 10px 15px;
}

#divUploadButton {
    margin: 5px 15px 15px 15px;
}

#lblMaxUpload {
    color: #999999;
}

#divLogoutSide {
    background-color: #cccccc;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

    #divLogoutSide:hover {
        background-color: #3496C3;
    }

    #divLogoutSide a {
        padding: 10px;
        text-decoration: none;
        display: block;
        width: auto;
        max-width: none;
    }

        #divLogoutSide a:hover {
            color: #ffffff;
        }

#divSelect {
    background-color: #30AC89;
}

    #divSelect a {
        color: #ffffff;
    }

#lblBackHome {
    background-color: #30AC89;
    color: #ffffff;
    padding: 5px;
    border-radius: 2px;
}

#divSelectTop {
    background-color: #30AC89;
    color: #ffffff;
    padding: 3px;
    border-radius: 2px;
    margin-bottom: 3px;
}

#lblBackFiles {
    background-color: #363B42;
    color: #f5f5f5;
    padding: 5px;
    border-radius: 2px;
}

#lblShareComparison {
    background-color: #cccccc;
    color: #727272;
    padding: 5px;
    border-radius: 2px;
}

    #lblShareComparison:hover {
        background-color: #3496C3;
        color: #f5f5f5;
    }

#lblBackFiles:hover {
    background-color: #3496C3;
    color: #f5f5f5;
}

#lblLogout {
    background-color: #cccccc;
    color: #727272;
    padding: 5px;
    border-radius: 2px;
}

    #lblLogout:hover {
        background-color: #3496C3;
        color: #f5f5f5;
    }

#CopyNotice, #CopyNoticeReport {
    color: #30AC89;
}

#lblShare {
    text-decoration: underline;
}

/* CLASS SELECTORS */
.topnavListItem {
    width: 100%;
    padding-bottom: 3px;
}

.sidenavPH {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 10px;
    padding-left: 8px;
    min-width: 0px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s;
    min-width: 0px;
    width: 225px;
}

    .sidenav a {
        padding: 10px 15px;
        text-decoration: none;
        display: block;
    }

        .sidenav a:hover, .offcanvas a:focus {
            filter: brightness(85%);
        }

.fileIcon {
    margin-bottom: -1px;
}

.Button {
    color: #FFFFFF;
    background-color: #363B42;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    vertical-align: baseline;
    border-color: #000000;
    border: 1px solid;
    padding: 20px 0;
    text-align: center;
}

    .Button:hover {
        background-color: #2E96C7;
    }

.AlertButton {
    color: #FFFFFF;
    background-color: #363B42;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    vertical-align: baseline;
    border-color: #000000;
    border: 1px solid;
    padding: 10px;
    text-align: center;
    margin-top: 13px;
    font-size: 150%;
}

    .AlertButton:hover {
        background-color: #2E96C7;
    }

.loginContent {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 131px);
    min-height: 350px;
    padding: 15px;
    background-image: URL("../Images/LoginBackground.jpg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center; /* Center the image */
    -webkit-background-position: center;
    -moz-background-position: center;
    -o-background-position: center;
    background-repeat: no-repeat; /* Do not repeat the image */
    -webkit-background-repeat: no-repeat;
    -moz-background-repeat: no-repeat;
    -o-background-repeat: no-repeat;
}

.loginWrapper {
    min-width: 300px;
    width: 30%;
    border-radius: 5px;
    background-color: white;
    padding: 25px;
}

.loginCreds {
    background: #ececec;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 10px;
}

.ReportFont {
    font-size: 11pt;
}

.footerText {
    color: #aeaeae;
    font-size: 14px;
}

.footerTextCopyright {
    color: #686868;
}

#divLoginFooter {
    background-color: #393E44;
    padding: 5px;
}



/* MEDIA SELECTORS */
@media (max-width: 900px) {
    #imgLoginLogo {
        width: 150px !important;
    }

    #topnavLoginLogo {
        padding: 8px 18px;
    }

    .loginContent {
        height: calc(100vh - 119px);
    }
}

/* TABLE OVERRIDES */
.rdThemeDataTable {
    margin-bottom: 25px !important;
}

.rdThemeDataTableHeader {
    padding: 8px 10px !important;
}

.rdThemeDataTable tbody {
    display: table-row-group !important;
}

.rdThemeDataTable td {
    display: table-cell !important;
    padding: 6px 10px !important;
}

.rdThemeDataTable tr:hover td {
    background-color: #e2ebf3 !important;
}

.rdThemeDataTableCell {
    display: table-cell !important;
}


/* FILE UPLOAD CLASSES */
.file-upload {
    display: block;
    text-align: center;
    font-size: 16px;
    width: 50%;
    margin: 0px 15px;
}

    .file-upload .file-select {
        display: block;
        font-size: 120%;
        color: #34495e;
        cursor: pointer;
        height: 20vh;
        line-height: 20vh;
        text-align: center;
        background: #ececec;
        overflow: hidden;
        position: relative;
        border-radius: 5px;
    }

        .file-upload .file-select .file-select-name {
            line-height: 20vh;
            display: inline-block;
            padding: 0 10px;
        }

        .file-upload .file-select:hover {
            background: #363B42;
            color: #FFFFFF;
            transition: all .2s ease-in-out;
            -moz-transition: all .2s ease-in-out;
            -webkit-transition: all .2s ease-in-out;
            -o-transition: all .2s ease-in-out;
        }

.file-upload1.active .file-select {
    background: #30AC89;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

    .file-upload1.active .file-select .file-select-button {
        background: #30AC89;
        color: #FFFFFF;
        transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
    }

.file-upload2.active .file-select {
    background: #30AC89;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

    .file-upload2.active .file-select .file-select-button {
        background: #30AC89;
        color: #FFFFFF;
        transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
    }

.file-upload .file-select input[type=file] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

.ThemeAlignRight {
    text-align: right;
}

.ThemeTextLarge {
    font-size: 120%;
}

.ThemeTextLarger {
    font-size: 150%;
}

.ThemeBold {
    font-weight: bold;
}

a:visited {
    color: #999999 /*LinkColor*/;
    text-decoration: none;
}

a, a:link {
    color: #999999 /*LinkColor*/;
    text-decoration: none;
}
