﻿/*-------------------------------------------------*/
/*
    core/css/common.css
*/
/*-------------------------------------------------*/
* {
    box-sizing: border-box;
}

::selection {
    background: transparent;
}

.ui-dialog-titlebar-close {
    z-index: 1200 !important;
}

html {
    height: calc(100vh-80px);
    margin: 0;
    padding: 0;
    font-size: .9rem;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: Arial, "Work Sans",sans-serif;
    margin: 0;
    padding: 0;
    font-size: .9rem;
    height: calc(100vh-80px);
    width: 100vw;
}

header {
    height: 46px;
}

.container-fluid {
    margin: 0;
}

.TitleText {
    height: 46px;
    font-size: 26px;
    font-weight: bold;
    padding-left: 10px;
    color: black;
}

table {
    border-collapse: inherit;
}

label {
    white-space: normal;
    margin-bottom: 0px;
}

/*Main*/
main, .mapArea {
    height: calc(100vh - 46px);
    width: 100%;
}

#sidenavbarElement {
    position: absolute;
    top: 46px;
    height: calc(100vh - 46px);
}

.bold {
    font-weight: bold;
}

.boldImportant {
    font-weight: bold !important;
}

.hidden {
    display: none;
}

.overFlow {
    overflow: auto;
}

.noWrap {
    white-space: nowrap;
}

.inline {
    display: inline-block;
}

.error {
    color: red;
    font-weight: bold;
    display: none;
}

.noDecoration {
    text-decoration: none;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

/* Colors ------------------------------------------------ */
.red {
    color: red;
}

.white {
    color: white;
}

.green {
    color: seagreen;
}

.salmon {
    color: lightsalmon;
}

.black {
    color: black;
}

.maroon {
    color: maroon;
}

.whiteBG {
    background-color: white;
}

.noBG {
    border: 1px solid silver;
    padding: 20px;
}

.blue {
    color: #0b5584;
}

.orange {
    color: orange;
}

.grayBG {
    background-color: lightgray;
}

.silverBorder {
    border: 1px solid silver;
}

.toolInformation {
    color: maroon;
    font-weight: bold;
    text-align: center;
}

/* Sizes ------------------------------------------------- */
.fullWidth {
    width: 100%;
}

.textExtraSmall {
    font-size: 12px;
}

.textTiny {
    font-size: 13px;
    text-align: left;
    padding: 5px;
    text-align: center;
}

.textSmall {
    font-size: 13px;
}

.textMedium {
    font-size: 16px;
}

.textLarge {
    font-size: 20px;
}

.tbShort {
    width: 50px;
}

.tbMedium {
    width: 120px;
}

.tbLong {
    width: 200px;
}

.tbExtraLong {
    width: 280px;
}

.miniColWidth {
    width: 4px;
}

.shortColWidth {
    width: 10px;
}

.mediumColWidth {
    width: 30px;
}

.longColWidth {
    width: 60px;
}

.stretched {
    width: 100%;
}
/* Table styles ------------------------------------------ */
.highlight td {
    font-weight: bold;
    background-color: lightblue !important;
}

.tdCenter {
    text-align: center; /* center textbox horizontally */
    vertical-align: middle; /* center textbox vertically */
}
/* Padding ----------------------------------------------- */
.paddingSmall {
    padding: 0px 10px 20px 10px;
}

.paddingMedium {
    padding: 10px 20px 30px 30px;
}

.paddingLarge {
    padding: 30px 20px 30px 30px;
}

.paddingTableFull {
    padding: 20px 30px;
}

.paddingLeft {
    padding-left: 40px;
}

.padding-top {
    padding-top: 12px;
}
/* Spacers ----------------------------------------------- */
.divSpacerTiny {
    height: 4px;
}

.divSpacerSmall {
    height: 10px;
}

.divSpacerMedium {
    height: 15px;
}

.divSpacerLarge {
    height: 20px;
}

.faBorder {
    border: 1px solid transparent;
    padding: 10px 0px;
}
    /* Add hover effect */
    .faBorder:hover {
        background-color: var(--main-bg-highlight);
        border: 1px solid black;
    }

.menuIconsLI {
    display: none;
}

.fitToWindow {
    height: calc(100vh - 150px);
    overflow: auto;
    padding: 5px 15px;
}

.layerSpacerDiv {
    margin: 10px auto;
}

.hrDiv {
    height: 2px;
    background-color: #333;
    width: 98%;
    margin: 10px auto 5px auto;
}

.layerTD {
    padding: 6px 0px;
}

.stretchedTbl {
    width: 100%;
    margin-top: 0px;
}

.paddedTopCB {
    padding-top: 6px;
    margin-top: 6px;
}

.cbWidthTD {
    width: 20px;
}

.iconWidthTD {
    width: 40px;
    text-align: center;
}

.stretchedTD {
    width: calc(100%-40px);
}

.divTellMeMore {
    padding: 30px;
}

.reportH5 {
    font-size: 16px !important;
    font-weight: bold;
}

.FA_Icon_Color {
    color: var(--main-link-color);
}

.force-wrap-url {
    overflow-wrap: break-word; /* Recommended modern property */
    word-wrap: break-word; /* Fallback for older browsers (IE) */
}

.divHRBlackBold {
    height: 1px;
    background-color: black;
    width: 96%;
    margin: 10px auto;
    padding: 1px 0px;
}

.PULink {
    text-decoration: underline !important;
    font-weight: bold !important;
    color: var(--main-link-color) !important;
}

    .PULink:hover {
        text-decoration: none !important;
        font-weight: bold !important;
        color: var(--main-link-color) !important;
    }

/* To override existing Bootstrap classes */
.btn-primary {
    background-color: var(--main-btn-bgcolor) !important;
    border-color: var(--main-btn-bordercolor) !important;
    color: var(--main-btn-textcolor) !important;
    font-weight:bold;
}

.panelBtn {
    height: 30px;
    border-radius: 5px;
    border: 1px solid var(--main-btn-bordercolor) !important;
}