﻿/* DEFAULTS
----------------------------------------------------------*/

html {
    font-size: 1em;
}

body {
    color: #454545;
    background: #f5f5f5;
    font-family: "Inter", sans-serif;
    font-size: 1em;
}

div.SiteHeaderMobile {
    display: flex;
}

div.SiteHeader {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px 25px 10px 0px;
}


/* links */
a, a:link, a:visited, a:active {
    color: #3181E0;
    transform: color;
    transition: 50ms;
}

a:focus, a:hover {
    color: #454545;
    text-decoration: none;
}



/* header */
section.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    section.header div.site-logo {
        display: flex;
        margin-left: 1em;
        margin-top: 2em;
        margin-bottom: 2em;
    }

@media screen and (min-width: 440px) {
    section.header div.site-logo {
        margin-left: 1.5em;
    }
}

@media screen and (min-width: 900px) {
    section.header div.site-logo {
        margin-top: 2.75em;
        margin-bottom: 2.75em;
    }
}

section.header div.site-logo .logo {
    max-width: 120px;
}

@media screen and (min-width: 440px) {
    section.header div.site-logo .logo {
        max-width: 178px;
    }
}

@media screen and (min-width: 900px) {
    section.header div.site-logo .logo {
        max-width: 218px;
    }
}

section.header div.site-logo .dropdown {
    margin-left: 0.5em;
    margin-top: 0;
}

@media screen and (min-width: 440px) {
    section.header div.site-logo .dropdown {
        margin-left: 1em;
    }
}

@media screen and (min-width: 900px) {
    section.header div.site-logo .dropdown {
        margin-left: 1.5em;
        margin-top: 4px;
    }
}

section.header div.site-logo .dropdown ul a {
    padding: 1em 2em;
}

    section.header div.site-logo .dropdown ul a:hover, section.header div.site-logo .dropdown ul a:focus {
        background-color: #f5f5f5;
    }

section.header div.site-logo .dropdown .product-selector {
    padding: 1px 8px 4px 8px;
    display: inline-block;
}

    section.header div.site-logo .dropdown .product-selector img {
        width: 10px;
    }

section.header div.client-logo {
    display: none;
    margin: 0 1em;
}

@media screen and (min-width: 600px) {
    section.header div.client-logo {
        display: block;
    }
}

section.header div.client-logo img {
    max-width: 160px;
}

@media screen and (min-width: 730px) {
    section.header div.client-logo img {
        max-width: 291px;
    }
}

section.header div.user-options {
    margin-right: 1em;
}

@media screen and (min-width: 440px) {
    section.header div.user-options {
        margin-right: 1.5em;
    }
}

#districtNameLink, #districtNameLink:link, #districtNameLink:active, #districtNameLink:hover, #districtNameLink:focus, #districtNameLink:visited {
    font-style: normal;
    color: #454545 !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 33px;
    line-height: 40px;
}



/* main content */
section.content {
    display: flex;
}

    section.content div.left-nav {
        min-width: 50px;
        z-index: 10;
    }

@media screen and (min-width: 600px) {
    section.content div.left-nav {
        /*min-width: 152px;*/
    }
}

@media screen and (min-width: 900px) {
    section.content div.left-nav {
        position: fixed;
        /*min-width: 200px;*/
    }
}

section.content div.main-content {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 1em 0em 0em 1em;
    padding: 1.5em;
    width: 100%;
    margin-left: 0;
    margin-bottom: 2em;
    z-index: 0;
}

@media screen and (min-width: 900px) {
    section.content div.main-content {
        margin-left: 200px;
    }
}
.MarginTop1 {
    margin-top: 1%;
}
section.content div.main-content-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.5em;
}

section.content div.main-content-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5em;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 1.5em;
}

    section.content div.main-content-buttons div {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5em;
    }

    section.content div.main-content-buttons .btn.btn-primary img {
        display: none;
    }

@media screen and (min-width: 900px) {
    section.content div.main-content-buttons .btn.btn-primary img {
        display: block;
    }
}

section.content div.main-content-buttons .btn.btn-default {
    padding: 0.5625em 0.6em 0.5625em 0.6em;
}

    section.content div.main-content-buttons .btn.btn-default span {
        display: none;
    }

@media screen and (min-width: 1170px) {
    section.content div.main-content-buttons .btn.btn-default {
        padding: 0.5625em 1em 0.5625em 1em;
    }

        section.content div.main-content-buttons .btn.btn-default span {
            display: block;
        }
}

section.content div.main-content-buttons .btn.btn-default img {
    margin-right: 0;
}

@media screen and (min-width: 1170px) {
    section.content div.main-content-buttons .btn.btn-default img {
        margin-right: 0.5em;
    }
}

section.content .main-content-tabs {
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    margin-top: 1.5em;
    margin-bottom: 1em;
}

    section.content .main-content-tabs .tab-control {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        text-align: center;
        justify-content: center;
        text-align: center;
    }



/* footer */
footer {
    font-size: 0.875em;
    color: #999999;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

@media screen and (min-width: 900px) {
    footer {
        flex-direction: row;
    }
}

footer > div {
    margin: 1em;
}

@media screen and (min-width: 900px) {
    footer > div {
        margin: 1.5em;
    }
}

footer a.terms {
    color: #999999;
}







/* title */
.main-content h1 {
    font-size: 1.5em;
    font-weight: 600;
    color: #282828;
    margin: 0;
}

    .main-content h1 .request {
        margin-right: 12px;
    }

    .main-content h1 .subtitle {
        font-size: 0.75em;
        margin-right: 12px;
        white-space: normal;
    }

@media screen and (min-width: 440px) {
    .main-content h1 .subtitle {
        white-space: nowrap;
    }
}

.main-content h1 .invoice {
    margin-right: 12px;
    font-size: 0.66666667em;
    white-space: nowrap;
}


/* buttons */
.btn {
    font-weight: 400;
    padding: 0.5625em 1em 0.5625em 1em;
    transform: background-color;
    transition: 100ms;
    color: #454545;
    border-radius: 0.5em;
}

    .btn.icon {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

        .btn.icon img {
            width: 20px;
            margin-right: 0.5em;
        }

    .btn .caretsvg {
        display: inline-block;
        margin-left: 8px;
    }

        .btn .caretsvg img {
            width: 12px;
        }

.btn-transparent {
    background-color: transparent;
    border: none;
}

.btn-primary, .btn-primary-new {
    border: none;
    color: #fff !important;
    background-color: #2D8DFF !important;
    background-image: none;
}

    .btn-primary:focus, .btn-primary:hover, .btn-primary-new:focus, .btn-primary-new:hover {
        border: none;
        color: #fff !important;
        background-color: #3276b1 !important;
        background-image: none;
    }

    .btn-primary:active, .btn-primary-new:active {
        border: none;
        color: #fff !important;
        background-color: #003C84 !important;
        background-image: none;
    }

.btn-light, .btn-secondary {
    color: #454545;
    background-color: transparent;
    border: 1px solid #D5D5D5;
}

    .btn-light:hover, .btn-secondary:hover {
        color: #454545;
        background-color: #F5F5F5;
        border: 1px solid #D5D5D5;
    }

    .btn-light:active, .btn-secondary:active {
        border: 1px solid #D5D5D5 !important;
        color: #454545;
        box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.125) !important;
        background-color: transparent;
    }

    .btn-light:focus, .btn-secondary:focus {
        color: #454545;
        background-color: #F5F5F5;
        border: 1px solid #D5D5D5;
    }

.btn-default {
    color: #454545 !important;
    background-color: #F0F0F0 !important;
    border: transparent !important;
    background-image: none;
    box-shadow: none;
}

    .btn-default:hover {
        color: #454545 !important;
        background-color: #E3E3E3 !important;
        border: transparent !important;
        background-image: none;
        box-shadow: none;
    }

    .btn-default:active {
        color: #454545 !important;
        background-color: #E3E3E3 !important;
        border: transparent !important;
        box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.125) !important;
        background-image: none;
        outline: 0;
    }

        .btn-default:active:hover {
            color: #454545 !important;
            background-color: #E3E3E3 !important;
            border: transparent !important;
            background-image: none;
        }

    .btn-default:focus {
        color: #454545 !important;
        background-color: #E3E3E3 !important;
        border: transparent !important;
        background-image: none;
        box-shadow: none;
    }
.btn-default:focus-visible {
    color: #454545 !important;
    background-color: #E3E3E3 !important;
    border: transparent !important;
    background-image: none;
    box-shadow: none;
}
.btn-white {
    background: #FFFFFF;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

    .btn-white.back-button {
        padding: 0.1625em 0.2em 0.1625em 0.2em;
        margin-right: 1em;
    }

    .btn-white:focus, .btn-white:hover {
        background: #f5f5f5;
    }

.btn-clear {
    background: transparent;
    border: none;
}

    .btn-clear.dropdown-toggle img {
        height: 24px;
    }

    .btn-clear:focus, .btn-clear:hover {
        background: #f5f5f5;
    }


.NoBorder {
    border: none !important;
}
/* dropdown */
.site-logo .dropdown-menu {
    width: 200px;
    z-index: 5000;
}

.dropdown-menu {
    border: none !important;
    border-radius: 0.5em;
    padding: 1em 0;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.14);
    min-width: max-content;
}

    .dropdown-menu li a {
        color: #3181E0;
        padding: 6px 20px;
    }

        .dropdown-menu li a:focus, .dropdown-menu li a:hover {
            background-color: transparent;
            background: none
        }
    .dropdown-menu li button {
        color: #3181E0;
        padding: 6px 20px;
        font-weight: 400 !important;
        line-height: 1.42857143;
    }
        .dropdown-menu li button:focus, .dropdown-menu li button:hover {
            background-color: transparent;
            font-weight: 400 !important;
            background: none;
            color: #262626;
        }
.btn .caret {
    margin-left: 5px !important;
}

.dropdown-divider {
    height: 0;
    overflow: hidden;
    margin: 0.5rem 0;
    border-top: 1px solid #e9ecef;
}



/* tabs */
.nav-tabs {
    border-color: transparent;
    text-align: center;
    width: revert;
    display: flex;
    justify-content: inherit;
}

    .nav-tabs li {
        font-size: 0.875em;
        border-top: 1px solid #dedede;
        border-bottom: 1px solid #dedede;
    }

        .nav-tabs li:first-child {
            border-left: 1px solid #dedede;
            border-radius: 8px 0 0 8px;
        }

        .nav-tabs li:last-child {
            border-right: 1px solid #dedede;
            border-radius: 0 8px 8px 0;
        }

        .nav-tabs li.active a {
            background-color: #f0f0f0;
            border: none;
            color: #454545;
        }

            .nav-tabs li.active a:focus, .nav-tabs li.active a:hover {
                color: #454545;
                border: none;
                background-color: #f0f0f0;
            }

        .nav-tabs li a {
            color: #999999;
            margin: 3px;
            border: none;
            border-radius: 4px;
            padding: 4px 15px;
        }

            .nav-tabs li a:focus, .nav-tabs li a:hover, .nav-tabs li a:active {
                color: #454545;
                background-color: transparent;
                background-color: #f5f5f5;
            }



.data-table form label {
    color: #454545;
    font-weight: 400;
}




/* checkbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 29px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #e8e8e8;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ddd;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #2D8DFF;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 3px;
    width: 6px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* select */
select {
    padding: 7px 20px 7px 10px;
    border-radius: 8px;
    font-size: 0.875em;
}
.select2-container--default .select2-selection--single {
    border-radius: 8px;
}
.custom-select {
    float: none;
    width: 170px;
    height: auto;
    border-radius: 8px;
    background-color: #e8e8e8;
    padding: 2px 0 2px 0;
    position: relative;
    z-index: 0;
}

.custom-select > select {
    width: 162px;
    border: none;
    background-color: #e8e8e8;
    outline: none;
    padding: 0.5625em 0.8em 0.5625em 1em;
}

@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        .custom-select {
            background-color: transparent;
        }
    }
}



.main-content-data .tab-pane .tab-name {
    color: #999999;
    font-size: 1.75em;
    margin: 0 0 0.5em 0;
}

.main-content-data .tab-pane .data-container {
    display: flex;
    flex-wrap: wrap;
}

.main-content-data .tab-pane .data-wrapper {
    padding-right: 2em;
    border-top: 1px solid #ebebeb;
    display: inline-block;
    flex-grow: 1;
}

.main-content-data .tab-pane .data-table .row {
    vertical-align: top;
    margin-left: 0;
    margin-right: 0;
}

    .main-content-data .tab-pane .data-table .row .col-sm-6, .main-content-data .tab-pane .data-table .row .col-md-4 {
        padding-left: 0;
        padding: 1.25em 3em 0.5em 0;
        border-top: 1px solid #ebebeb;
    }

        .main-content-data .tab-pane .data-table .row .col-sm-6:only-child, .main-content-data .tab-pane .data-table .row .col-md-4:only-child {
            width: 100%;
        }

        .main-content-data .tab-pane .data-table .row .col-sm-6:first-child:nth-last-child(2), .main-content-data .tab-pane .data-table .row .col-sm-6:first-child:nth-last-child(2) ~ div, .main-content-data .tab-pane .data-table .row .col-md-4:first-child:nth-last-child(2), .main-content-data .tab-pane .data-table .row .col-md-4:first-child:nth-last-child(2) ~ div {
            width: 100%;
        }

@media screen and (min-width: 768px) {
    .main-content-data .tab-pane .data-table .row .col-sm-6:first-child:nth-last-child(2), .main-content-data .tab-pane .data-table .row .col-sm-6:first-child:nth-last-child(2) ~ div, .main-content-data .tab-pane .data-table .row .col-md-4:first-child:nth-last-child(2), .main-content-data .tab-pane .data-table .row .col-md-4:first-child:nth-last-child(2) ~ div {
        width: 50%;
    }
}

@media screen and (max-width: 991px) {
    .main-content-data .tab-pane .data-table .row .col-sm-6:first-child:nth-last-child(3), .main-content-data .tab-pane .data-table .row .col-md-4:first-child:nth-last-child(3) {
        width: 100%;
    }
}

.main-content-data .tab-pane .data-table .data-title {
    color: #999999;
    font-size: 0.875em;
    line-height: 1.125em;
    margin-bottom: 0;
}

@media screen and (min-width: 900px) {
    .main-content-data .tab-pane .data-table .data-title {
        font-size: 1em;
    }
}

.main-content-data .tab-pane .data-table .data-info {
    font-size: 1;
    line-height: 1.66666667em;
}

@media screen and (min-width: 900px) {
    .main-content-data .tab-pane .data-table .data-info {
        font-size: 1.125em;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    div.main-content-buttons .btn {
        margin-right: 0.5em;
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
    div.main-content-buttons .btn {
        margin-right: 0.5em;
    }
}

/** Grids **/
.RadGrid .rgMasterTable, .RadGrid .rgDetailTable, .RadGrid .rgEditForm table {
    border-collapse: collapse !important;
}

.RadGrid_Bootstrap .rgFooter .rgGroupCol, .RadGrid_Bootstrap .rgFooter .rgGroupCol ~ td {
    color: black;
}
.RadGrid_Bootstrap thead tr th.rgHeader {
    padding: inherit !important;
    padding-bottom: 10px !important;
    padding-top: 10px !important;
}
    .RadGrid_Bootstrap {
    color: #282828;
    font-family: 'Inter';
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
    border: none !important;
}

.RadGrid_Bootstrap table {
    border: none;
}

.RadGrid_Bootstrap tr {
    border: none;
    border-bottom: 1px solid #EDEDED;
    height: 25px;
}

.RadGrid_Bootstrap thead tr th.rgHeader, thead.rpHeader {
    background-color: #E4E4E4;
    font-weight: 600;
    border: none;
    border-bottom: 1px solid #EBEBEB;
    padding-left: 1em !important;
}

.RadGrid_Bootstrap tbody tr.rgRow, tr.rpRow {
    background-color: #FFF !important;
    margin-bottom: 10px;
}

.RadGrid_Bootstrap tr.rgAltRow, tr.rpAltRow {
    background-color: #F5F5F5 !important;
}

.RadGrid_Bootstrap tr.rgHeader td.rgSorted, .RadGrid_Bootstrap tr.rgRow td.rgSorted, .RadGrid_Bootstrap tr.rgAltRow td.rgSorted {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #EBEBEB;
}

        .RadGrid_Bootstrap th.rgSorted {
            background-color: #337AB7 !important;
        }
.RadGrid_Bootstrap th.rgSorted, .RadGrid_Bootstrap th.rgSorted a, .RadGrid_Bootstrap th.rgSorted button {
                color: white !important;
            }
.RadGrid_Bootstrap td.rgSorted {
    background-color: transparent !important;
}
        .RadGrid_Bootstrap tr.rgHeader td, .RadGrid_Bootstrap tr.rgRow td, .RadGrid_Bootstrap tr.rgAltRow td {
            border: none;
            /*border-bottom: 1px solid #EBEBEB;*/
            
        }

        .RadGrid_Bootstrap .rgRow > td, .RadGrid_Bootstrap .rgAltRow > td {
            border: none;
        }
        .RadGrid_Bootstrap tr td {
            padding-left: 1em !important;
        }
        .RadGrid_Bootstrap tr.rgPager td.rgPagerCell {
            background-color: transparent;
            /*text-align: center;*/
            border: none;
            padding: 10px 0px;
        }

.RadGrid .rgPagerCell .rgPagerTextBox {
    padding: 6px 10px;
}

.RadGrid_Bootstrap tr.rgPager .rgWrap {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.rgPager .rgArrPart1 {
    margin-right: 5px;
}

* + html .rgPager .rgWrap {
    display: inline;
}

* + html .rgPager .rgNumPart a, * + html .rgPager .rgNumPart span {
    float: none;
    display: inline-block;
}

tr.rgPager .rgAdvPart, tr.rgPager .rgInfoPart {
    padding: 0px 5px;
}





p {
    margin-bottom: 10px;
    line-height: 1.6em;
}

label {
    font-weight: normal;
}

.outline-box {
    border: 2px solid #CCCCCC;
    border-radius: 10px;
    padding: 10px;
}

.large {
    font-size: 1.2em;
}

/* HEADINGS   
----------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    font-size: 1.5em;
    color: #666666;
    text-transform: none;
    font-weight: 200;
    margin-bottom: 0px;
    margin-top: 0px;
}

h1 {
    font-size: 1.6em;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

h1.blue {
    color: #628BB1;
    font-weight: bold;
    font-size: 20pt;
}

h2 {
    font-size: 1.5em;
    font-weight: 600;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}



/* PRIORITY */

.btn-priority-low {
    background-color: #90CC53 !important;
    color: white !Important;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .btn-priority-low:hover, .btn-priority-low:focus {
        background-color: #58AB04 !important;
    }
.btn-priority-low:active {
    box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.125) !important;
}
.btn-priority-medium {
	background-color: #FFEC19 !important;
	color: #000000 !Important;
	margin-top: 10px;
	margin-bottom: 10px;
}

    .btn-priority-medium:hover, .btn-priority-medium:focus {
        background-color: #EFD700 !important;
    }
.btn-priority-medium:active {
    box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.125) !important;
}
.btn-priority-high {
    background-color: #F38D00 !important;
    color: white !Important;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .btn-priority-high:hover, .btn-priority-high:focus {
        background-color: #C27306 !important;
    }
    .btn-priority-high:active {
        box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.125) !important;
    }

.btn-priority-urgent {
    background-color: #FF3232 !important;
    color: white !Important;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .btn-priority-urgent:hover, .btn-priority-urgent:focus {
        background-color: #C20000 !important;
    }
    .btn-priority-urgent:active {
        box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.125) !important;
    }
.btn-priority-pm {
    border-color: mediumpurple !important;
    background-image: linear-gradient(to bottom, #b19ddb 0%, #9370DB 100%) !important;
}

    .btn-priority-pm:hover, .btn-priority-pm:focus {
        background-color: #9370DB !important;
    }

.btn-unapproved {
    border-color: red !important;
    background-image: linear-gradient(to bottom, #fc4444 0%, #ea0202 100%);
}

    .btn-unapproved:hover, .btn-unapproved:focus {
        background-color: #ea0202;
    }

.priority-low {
    /*background-color: green !important;*/
    background-color: #90CC53;
}

.priority-medium {
	background-color: #FFEC19
}

.priority-high {
    background-color: #F0552B
}

.priority-urgent {
    background-color: #FF3232;
}

label {
    color: #454545;
}

.btn-destructive {
    background-color: #FF532D !important;
    color: white !Important;
}

    .btn-destructive:hover, .btn-destructive:focus {
        background-color: #C74123 !important;
    }

.btn-destructive:active {
    box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.125) !important;
}
    .btn-destructive:disabled {
        background-color: #FF532D !important;
    }



.navbar-fixed-bottom, .navbar-fixed-bottom a, .navbar-fixed-bottom a:link, .navbar-fixed-bottom a:active, .navbar-fixed-bottom a:hover, .navbar-fixed-bottom a:visited {
    color: #FFF;
    text-decoration: none;
}

.inline {
    display: flex;
    justify-content: space-between;
}

.icon-bar {
    color: #FFF;
    background-color: #FFF;
}


/* FORM ELEMENTS   
----------------------------------------------------------*/

fieldset {
    margin: 1em 0px;
    padding: 1em;
    border: 1px solid #ccc;
}

    fieldset p {
        margin: 2px 12px 10px 10px;
    }

    fieldset.login label, fieldset.register label, fieldset.changePassword label {
        display: block;
    }

    fieldset label.inline {
        display: inline;
    }

legend {
    font-size: 1.1em;
    font-weight: 600;
    padding: 2px 4px 8px 4px;
}

input.textEntry {
    width: 320px;
    border: 1px solid #ccc;
}

input.passwordEntry {
    width: 320px;
    border: 1px solid #ccc;
}

div.accountInfo {
    width: 42%;
}

input::placeholder { /* Most modern browsers support this now. */
    color: grey;
}

textarea::placeholder { /* Most modern browsers support this now. */
    color: lightgray;
}
/* TABLE
----------------------------------------------------------*/
.table-padded td {
    padding: 5px;
}

.rowHead {
    background-color: #628BB1;
    font-weight: bold;
    color: #FFF;
}

.rowFooter {
    background-color: #628BB1;
    font-weight: bold;
    color: black;
}

.rowHead a, .rowHead a:link, .rowHead a:active, .rowHead a:hover, .rowHead a:visited {
    color: #FFF;
}

.rowMain {
}

.rowAlt {
    background-color: #F5F5F5;
}

.rowNew {
    background-color: darkslategray;
}

.rowOrange {
    background-color: #FDD1B0;
}

.rowBlue {
    background-color: #ABC3D9;
}

.rowRed {
    background-color: lightsalmon;
}

.rowGreen {
    background-color: lightgreen;
}

.rowSpacer {
    height: 8px;
    line-height: 8px;
}

.colLabel {
    font-weight: bold;
}


/* MISC  
----------------------------------------------------------*/

.clear {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

.title {
    display: block;
    float: left;
    text-align: left;
    width: auto;
}

.loginDisplay {
    font-size: 1.1em;
    display: block;
    text-align: right;
    color: #000;
    padding: 10px;
}

    .loginDisplay a:link {
        color: #000;
    }

    .loginDisplay a:visited {
        color: #000;
    }

    .loginDisplay a:hover {
        color: #000;
    }

.error, a.error, a.error:link, a.error:active, a.error:hover, a.error:visited {
    font-size: 1.2em;
    color: Red;
    text-decoration: none;
}

.bold {
    font-weight: bold;
}

.blue, a.blue, a.blue:link, a.blue:active, a.blue:hover, a.blue:visited {
    color: #628BB1;
}

.orange {
    color: #b36332;
}

a.underline, a.underline:link, a.underline:active, a.underline:hover, a.underline:visited {
    text-decoration: underline;
}

.submitButton {
    text-align: right;
    padding-right: 10px;
}


.userInfo {
    float: left;
    margin: 0px 15px 15px 0px;
}

.icon {
    /*width:16px; height:16px;*/
}

.bg_round {
    -webkit-border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -o-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

.bg_dark {
    background-color: #333;
}

.bg_blueDark {
    background-color: #4D5F74;
}

.textBlack {
    color: black !important;
    z-index: 5000 !important;
}

.bg_blue {
    background-color: #c0d2e0;
}

.bg_white {
    background-color: #FFF;
}

.bg_EEE {
    background-color: #DDD;
}

.bg_CustomForm {
    background-color: #E6E6E6;
}

.bg_EEE hr {
    color: #FFF;
    background-color: #628BB1;
    height: 2px;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
}

hr.blue {
    color: #628BB1;
    background-color: #628BB1;
    height: 2px;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
}

hr.notes {
    color: #EEEEEE;
    background-color: #CCC;
    height: 2px;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 2px 0px;
}

hr.grey {
    color: grey;
    background-color: grey;
    height: 2px;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
}

.btn-default {
    text-shadow: none;
}

.pad-1 {
    padding: 1px;
}

.pad-5 {
    padding: 5px;
}

.pad-10 {
    padding: 10px;
}

.pad-v5 {
    padding: 5px 0px;
}

.pad-v10 {
    padding: 10px 0px;
}

.pad-v20 {
    padding: 20px 0px;
}

.pad-20 {
    padding: 20px;
}

.pad-l50 {
    padding-left: 50px;
}

.pad-t5 {
    padding: 5px 0px 0px 0px;
}

.pad-b5 {
    padding: 0px 0px 5px 0px;
}

.pad-b10 {
    padding: 0px 0px 10px 0px;
}

.pad-b20 {
    padding: 0px 0px 20px 0px;
}

.pad-rb10 {
    padding: 0px 10px 10px 0px;
}

.pad-rv10 {
    padding: 10px 10px 10px 0px;
}

.white, a.white, a.white:link, a.white:active, a.white:hover, a.white:visited {
    color: #FFF;
}

.wordWrapBreakWord {
    word-wrap: break-word;
}



.BinderSectionWrapper {
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
}

.BinderSection {
    font-family: Helvetica, Arial, sans-serif;
    text-decoration: none;
    font-size: 11pt;
    font-weight: bold;
    color: #000000;
    background-color: #AAAAAA;
    padding: 5px;
    cursor: pointer;
    -webkit-border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    -o-border-radius: 5px 5px 0px 0px;
    border-radius: 5px 5px 0px 0px;
}

.BinderSubSectionWrapper {
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    margin-left: 10px;
}

.BinderSubSection {
    font-family: Helvetica, Arial, sans-serif;
    text-decoration: none;
    font-size: 11pt;
    font-weight: bold;
    color: #000000;
    background-color: #CCCCCC;
    padding: 5px;
    cursor: pointer;
    -webkit-border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    -o-border-radius: 5px 5px 0px 0px;
    border-radius: 5px 5px 0px 0px;
}

.status {
    padding-top: 4px;
    padding-bottom: 4px;
}

.CursorPointer {
    cursor: pointer;
}

.Hidden {
    visibility: hidden;
}

.Width200 {
    width: 200px;
}

.Width175 {
    width: 175px;
}

.NoTextDecoration {
    text-decoration: none;
    color: #696969 !important;
}

.StatusLabel {
    color: #FFF;
    display: inline-block;
    padding: 1em;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.5em;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

/*Format the MLMultiSelect option container*/
.MultiSelectContainer {
    color: white;
    background-color: #628BB1 !important;
    float: none !important;
}
/*This was designed for non text input controls to match the width of text inputs*/
.textEntryWidth {
    width: 320px !important;
}
/* This allows the MLMultiselect control to use default css rendering*/
.displayInherit {
    display: inherit;
}
/* this provides a minimum width for MLMultiselect controls so that we can at least see the placeholder*/
.select2-container {
    min-width: 140px !important;
}
/* A good portion of the following css is for preventing a gray background behind Calendar appointments*/
.RadScheduler_Default .rsAptContent {
    background-image: none !important;
    background-color: none !important;
}

.RadScheduler_Default .rsAptIn, .RadScheduler_Default .rsAptMid, .RadScheduler_Default .rsAptContent {
    background-color: none !important;
    border-color: none !important;
}

.RadScheduler .rsAptContent {
    background-repeat: no-repeat !important;
    border-width: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
    right: 0px !important;
    top: 0px !important;
    padding: 0px !important;
    overflow: no-content !important;
}

.RadScheduler .rsAptMid, .RadScheduler .rsAptIn, .RadScheduler .rsAptContent {
    border-style: none !important;
    border-width: 0px !important;
    text-decoration: none !important;
    position: inherit !important;
    left: 0px !important;
    right: 0px !important;
    top: 0px !important;
    bottom: 0px !important;
}

.RadScheduler .rsHeader {
    z-index: 1 !important;
}
/*prevents menu from being hidden from the calendar*/
/*.dropdown-menu {
    z-index: 10000;
}*/
.hide {
    display: none !important;
}

.AdjustInventoryQuantity {
}

.RadMenu_WebBlue .rgHCMClear, .RadMenu_WebBlue .rgHCMFilter {
    background: #d7e2e7 center -23px !important;
}

.RadMenuPopup {
    z-index: 9999999999 !important; /*menu supercedes all*/
}
.RadMenuPopup {
    z-index: 99999999999 !important; /*menu supercedes all except window*/
}
div.RadGrid_WebBlue .rgRow a:not(.btn), div.RadGrid_WebBlue .rgAltRow a:not(.btn) {
    color: blue !important;
}

html body .RadGrid .rgMasterTable .rgSelectedCell,
html body .RadGrid .rgSelectedRow,
html body .RadGrid .rgHoveredRow,
html body .RadGrid .rgEditRow {
    background-image: none;
}

.SiteHeaderMobile {
    background-color: #E8E8E8;
    /*display:flex;
    width:100%;*/
    display: flex;
}

.SiteHeader {
    padding: 0px;
    clear: both;
}

.SiteHeaderTable {
    border-collapse: collapse;
    vertical-align: bottom;
    width: 25%;
}

    .SiteHeaderTable td, table th {
        border: none;
    }

    .SiteHeaderTable tr td {
        padding: 5px;
        border-radius: 5px;
        text-align: center;
    }

        .SiteHeaderTable tr td:hover {
            background-color: #9aaece;
        }

.ProfileLink {
    float: left;
    margin: 5px 0px 0px 10px;
    font-weight: 500;
    font-family: 'Helvetica Neue LT Std',Helvetica,Arial,sans-serif;
}

    .ProfileLink a, .ProfileLink a:active, .ProfileLink a:visited {
        font-size: 16px;
        color: #009245;
        font-weight: bold;
    }

        .ProfileLink a:hover {
            text-decoration: underline;
        }

.workOrdersIcon {
    padding-bottom: 0px;
}

.SiteLogo {
    padding-top: 5px;
    padding-left: 0px !important;
}

.NewChart {
    background-color: #245580;
    text-align: center;
    border-radius: 5px;
    height: 40px;
}

    .NewChart:hover {
        background-color: #628bb1;
    }

.TotalWorkOrdersChart {
    border-radius: 5px;
    background-color: #DAE2E8;
}

.vertical-align {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.RadGridButtonTd {
    text-align: right;
    vertical-align: middle;
    border: none;
}




.imgLogoSm {
    max-height: 60px;
    max-width: 250px;
    padding-bottom: 10px;
}







/* MODAL */
.modal .modal-dialog {
    z-index: 1050 !important;
}
#colorbox, #cboxOverlay, #cboxWrapper {
    z-index: 99999;
}








.buttonWithVerticalSpace {
    margin-top: 5px;
    margin-bottom: 0 !important;
}

.badge-menu {
    background-color: #dc3545; /*This is supposed to be handled by badge class badge-danger but it doesn't seem to work.  version?'*/
    position: absolute;
    z-index: 100000 !important;
}

.badge-submenu {
    margin-top: 8px;
    margin-left: 1px;
}

.n-resize {
    cursor: n-resize;
}

.width100Percent {
    width: 100%;
}
.width75Percent {
	width: 75%;
}
.width90Percent {
    width: 90%;
}

.displayInlineBlock {
    display: inline-block;
}

.overflowVisible {
    overflow: visible !important;
}

.btn-gray {
    text-shadow: 0 1px 0 #fff;
    background-repeat: repeat-x;
    border-color: #333;
    color: #000;
    background-image: linear-gradient(to bottom, #EEE 0%, #888 100%);
    text-shadow: none;
}

    .btn-gray:hover, .btn-gray:focus {
        background-color: #888;
        background-position: 0 -15px;
        color: #000;
    }

    .btn-gray:active, .btn-gray.active {
        background-color: #888;
        border-color: #CCC;
        color: #000;
    }

    .btn-gray:disabled, .btn-gray[disabled] {
        background-color: #888;
        border-color: #CCC;
        color: #000;
    }

.mobileDescription {
    word-break: break-all;
    font-size: small;
    padding-left: 3%;
}

.mobileLocation {
    font-size: small;
    padding-left: 3%;
    font-style: italic;
}

.mobileTitle {
    font-size: medium;
    padding-left: 3%;
    font-weight: bold;
    padding-top: 1px;
}

.mobileWorkOrder {
    -webkit-box-shadow: 10px 10px 11px -9px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 11px -9px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 11px -9px rgba(0,0,0,0.75);
    padding-top: 10px;
}

a.nostyle:link, a.nostyle:visited {
    text-decoration: inherit;
    color: inherit;
    cursor: auto;
}

.mobileSearch {
    width: 100%;
    /*background-image: linear-gradient( to right, black, green 90% );*/
    background-image: linear-gradient( to right, #5cb85c, #5cb85c 90%, white 10% );
    border: thin solid black;
}

.mobileSearchFiltered {
    width: 100%;
    background-image: linear-gradient( to right, #5cb85c, #5cb85c 90%, LightBlue 10% );
    border: thin solid black;
}

.mobileSearchTextbox {
    border: none;
    background-color: white;
    height: 40px;
    width: 80%;
}

.mobileSearchButton {
    width: 8%;
    vertical-align: baseline;
    background-color: transparent;
    border: none;
    color: white;
    font-weight: bold;
    padding-left: 0px;
}

.mobileFilter {
    width: 9%;
    padding: 0px 0px 0px 0px;
}

.mobileProperties {
    font-weight: 500;
    font-size: small;
    padding-left: 3%;
    font-variant: small-caps;
}

.mobileAsset {
    -webkit-box-shadow: 10px 10px 11px -9px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 11px -9px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 11px -9px rgba(0,0,0,0.75);
    padding-top: 10px;
    margin-left: -15px;
    border-radius: 2px;
    padding-bottom: 5px;
    margin-top: 5px;
}

.mobileAssetImage {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
}

.checkAllRadCheckbox {
    vertical-align: baseline !important;
    font-size: small !important;
}

.mobileInventory {
    -webkit-box-shadow: 10px 10px 11px -9px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 11px -9px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 11px -9px rgba(0,0,0,0.75);
    padding-top: 10px;
    margin-left: -15px;
    border-radius: 2px;
    padding-bottom: 5px;
    margin-top: 5px;
}

.mobileInventoryImage {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    text-align: center;
}

.main-alert {
    margin-bottom: 1px;
    height: 30px;
    line-height: 30px;
    padding: 0px 15px;
}

.telerik-grid-header {
    background-color: #0b1c4d !important;
    background-image: none !important;
    color: white !important;
}

.new-note {
    -webkit-text-fill-color: yellow;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    padding-left: 5px;
}

.bootbox-mobile {
    height: 70vh;
    width: 90vw;
    top: 10px;
    left: 0;
}

.popover {
    min-width: 530px;
    min-height: 530px
}

.tag {
    font-size: 14px;
    padding: .3em .4em .4em;
    margin: 0 .1em;
}

    .tag a {
        color: #bbb;
        cursor: pointer;
        opacity: 0.6;
    }

        .tag a:hover {
            opacity: 1.0
        }

    .tag .remove {
        vertical-align: bottom;
        top: 0;
    }

    .tag a {
        margin: 0 0 0 .3em;
    }

        .tag a .glyphicon-white {
            color: #fff;
            margin-bottom: 2px;
        }

.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

    .upload-btn-wrapper input[type=file] {
        font-size: 100px;
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
    }

.btn-purple {
    background-color: #662D91;
    color: #FFF !important;
    border-color: #662D91;
}

    .btn-purple:hover, .btn-purple:focus, .btn-purple:active, .btn-purple.active, .open .dropdown-toggle.btn-purple {
        background-color: purple;
        color: #FFF;
        border-color: purple;
    }

.goog-te-gadget-simple .goog-te-menu-value span {
    color: Black !important;
}

.goog-te-menu-frame {
    z-index: 2147483647 !important;
}

.goog-te-banner-frame {
    z-index: 2147483647 !important;
}




















/* fullcalendar customization */
.fc-day-grid-event .fc-content {
    white-space: normal;
    overflow: visible;
    font-family: Arial;
    font-weight: bold;
}

.fc-content {
    padding: 2px 0px;
}

.fc-title {
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
}

.fc-day-grid-event .fc-content {
    font-weight: normal;
}

.fc-time-grid-event .fc-time {
    font-weight: 700;
}

.fc-event .fc-bg {
    background: inherit;
}

.fc-scroller {
    height: auto !important;
}



/* Calendar Icon for Iframe Feed */
/* http://cssdeck.com/labs/calendar-icon */
time.icon {
    font-size: .75em; /* change icon size */
    display: block;
    position: relative;
    width: 4em;
    height: 4em;
    background-color: #fff;
    border-radius: 0.6em;
    border: 1px solid #CCCCCC;
    overflow: hidden;
}

    time.icon * {
        display: block;
        width: 100%;
        font-size: 1em;
        font-weight: bold;
        font-style: normal;
        text-align: center;
    }
    /* The month is styled using the following code: */
    time.icon strong {
        position: absolute;
        top: 0;
        padding: 0.1em;
        width: 100%;
        color: #fff;
        background-color: #008693;
        text-align: center;
    }
    /* The day is positioned at the bottom edge: */
    time.icon em {
        position: absolute;
        bottom: 0.3em;
        color: #008693;
    }
    /* The large date number is resized and has some basic positioning applied: */
    time.icon span {
        font-size: 1.5em;
        margin-top: 1.1em;
        color: #008693;
        text-align: center;
    }

.iframeListDate a, .iframeListDate a:link, .iframeListDate a:active, .iframeListDate a:hover, .iframeListDate a:visited {
    color: #008693;
}


#cboxLoadedContent {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
}

    #cboxLoadedContent iframe {
        height: 100%;
        width: 100%;
    }




/* hide URLs on links on print version */
@media print {
    a[href]:after {
        content: none !important;
    }
}

.cbl label {
    padding-right: 20px;
}

.cbl {
    padding-left: 10px;
}

    .cbl li {
        list-style: none;
        display: inline-block;
    }

.userList label {
    padding-left: 8px;
}

/* RadGrid */
.align-middle {
    vertical-align: middle;
}

.align-bottom {
    vertical-align: bottom;
}



.select2-search__field {
    width: 100% !important;
}

/* add scrollbar if lots of items are selected */
.fixedHeight + .select2-container .select2-selection--multiple .select2-selection__rendered {
    max-height: 30px;
    overflow-y: scroll;
}




a.goog-te-menu-value span {
    color: black !important;
}

.GridContextMenu {
    font-size: 14px;
    color: #494949;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
}

.showReq {
    display: none;
}

.CalendarButton {
    border: 1px solid #ccc;
    background-color: #eee;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    padding: 3px 10px 5px 2px
}

.calRefreshTrigger {
    margin-top: 10px;
}


/*Fb Comments Width Fix*/
.fb_iframe_widget_fluid_desktop, .fb_iframe_widget_fluid_desktop span, .fb_iframe_widget_fluid_desktop iframe {
    max-width: 90% !important;
    width: 90% !important;
}

.main-alert {
    margin-bottom: 1px;
    height: 30px;
    line-height: 30px;
    padding: 0px 15px;
}

.telerik-grid-header {
    background-color: #0b1c4d !important;
    background-image: none !important;
    color: white !important;
}

.z-index {
    z-index: -1;
}

/*Sticky Footer*/

.sticky-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
}
.ActionButton {
    border: none;
    background-color: transparent;
}
.ActionButton:hover {
    font-weight: bold;
}
.RadGrid_Bootstrap .rgPagerCell .rgPagerButton {
    color: #454545 !important;
    background-color: #F0F0F0 !important;
    border-color: transparent !important;
    border-radius: 8px !important;
}
    .RadGrid_Bootstrap .rgPagerCell .rgPagerButton:hover {
        color: #454545 !important;
        background-color: #E3E3E3 !important;
        border-color: transparent !important;
        border-radius: 8px !important;
    }
    .RadGrid_Bootstrap .rgPagerCell .rgPagerButton:active {
        color: #454545 !important;
        background-color: #E3E3E3 !important;
        border-color: transparent !important;
        border-radius: 8px !important;
        box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.125) !important;
    }
/*tabs*/
.RadTabStrip_Bootstrap .rtsLevel1 { border-bottom: none !important;padding-right: 1em !important; }
    .RadTabStrip_Bootstrap .rtsLevel1 .rtsSelected .rtsLink {
        border: none !important;
        font-weight: bold;
        background-color: #F0F0F0 !important;
        border-radius: 10px !important;
    }
.mlTabStrip {
    overflow: visible !important;
    border: none !important;
    /*border-radius: 16px !important;*/
}
.RadTabStrip .rtsUL {
    /*display: flex;
    flex-wrap: wrap;
    justify-content: center;*/
}
.mlTabStrip .rtsUL {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.RadTabStrip_Bootstrap .rtsLevel1 .rtsHovered .rtsLink {
    background-color: #F0F0F0 !important;
    border-radius: 10px !important;
}
.RadTabStrip_Bootstrap .rtsTxt:not(.rtsSelected) {
    color: #999999 !important;
}
.RadTabStrip_Bootstrap .rtsLevel1 .rtsSelected .rtsLink .rtsTxt { color: black !important }
.tabBorder {
    border-radius: 8px;
    border: 1px solid #DEDEDE;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
    padding: 5px;
    width: fit-content;
}
.tabContainer {
    display: flex;
    justify-content: center;
}
.rtsHorizontal .rtsLI {
    padding: 1px;
}
.textInput {
    
}
input:not([type=submit]):not([type=file]):not(.k-input-inner):not(.select2-search__field):not([type=image]):not(.clearSearch) {
    border: 1px solid #DEDEDE;
    border-radius: 8px;
}
.rowGrandTotal {
    background: #FAFAFA;
    border: 1px solid #DEDEDE;
    border-radius: 8px;
}

.Default.reWrapper.reInlineEditorSelected {
    border: 1px solid #DEDEDE;
    border-radius: 8px;
}
.Default.RadEditor, .Default.RadEditor .reModule, .Default.RadEditor .reEditorModes, .Default.RadEditor .reWrapper {
    border: none !important
}
.Default.RadEditor .reNoBorder div.reContentArea {
    border: 1px solid #DEDEDE;
    border-radius: 8px;
}
.reLeftVerticalSide, .reRightVerticalSide {padding:0 !important }
.reWrapper_corner, .reWrapper_center, .reLeftVerticalSide, .reRightVerticalSide { font-size: 0 !important;line-height:0 !important }
textarea {
    border: 1px solid #DEDEDE;
    border-radius: 8px;
}
.repeaterTable {
    width: 100%;
    text-align: left;
    margin-top: 10px;
    
}
.repeaterTable tr th{
    background-color: #E4E4E4;
    font-weight: bold;
}
.txtSearch {
    box-shadow: none !important;
}
.RadWindow {
    border: none !important;
}
/*.RadWindow_Default {
    background-color: white !important;
    border-radius: 16px !important;
    padding: 1%;
}*/
/*.RadWindow .rwTitleWrapper { display: none !important; }
.RadWindow_Default .rwContent { background-color: transparent; }
.RadWindow{ padding: 0;}*/
.rwTitleRow {
     display: none;
}
.rwCorner {
    display: none;
}
.rwFooterCenter {
    display: none;
}
.RadWindow.RadWindow_Default.reToolbarWindow td.rwWindowContent, .RadWindow.RadWindow_Default.reToolbarWindow div.rwContent { background-color: transparent !important; }
.RadGrid_Bootstrap tr.rgHeader td.rgSorted, .RadGrid_Bootstrap tr.rgRow td.rgSorted, .RadGrid_Bootstrap tr.rgAltRow td.rgSorted {
    color: black;
}
.open > .dropdown-menu {
    z-index: 999999;
}
.RadWindow_Bootstrap {
    z-index: 99999999999 !important;
}
.GreyBackground {
    background-color: #F0F0F0 !important;
    border: none;
}
.GreyBackground:focus-visible {
    background-color: #F0F0F0 !important;
    border: none;
    outline: none;
}
.btnInactivate {
    color:#FF3232 !Important;cursor: pointer !important;border: none; background-color: transparent;
}
.marginLeft20 {
    margin-left: 20px;
}
.marginRight20 {
    margin-right: 20px;
}
.RadWindow .rwIcon {
    display: none !important;
}
.RadWindow .rwTitle { padding: 0 !important; }
.popupList {
    font-weight: 400 !important;
    line-height: 1.42857143 !important;
    color: #3181E0 !important;
    /*padding: 6px 20px;*/
    padding-top: 20px !important;
    margin: 1px 1px 1px 1px !important;
    display: flex !important;
    justify-content: center !important;
    clear: both !important;
    font-size: 14px !important;
}
.marginBottom5 {
    margin-bottom: 5px;
}
.marginBottom1 {
    margin-bottom: 1px;
}
.RadGrid_Bootstrap .rgGroupHeader td {
    background: #e4e4e4 !important;
}
.rgGroupHeaderText {
    font-weight: bold;
}
.select2-selection__rendered {
    line-height: 31px !important;
}

.select2-container .select2-selection--single {
    height: 35px !important;
}

.select2-selection__arrow {
    height: 34px !important;
}
.icon-green, a.icon-green, a.icon-green:link, a.icon-green:active, a.icon-green:hover, a.icon-green:visited, .RadGrid_Bootstrap .icon-green, .RadGrid_Bootstrap .icon-green:link, .RadGrid_Bootstrap .icon-green:active, .RadGrid_Bootstrap .icon-green:hover, .RadGrid_Bootstrap .icon-green:visited {
    color: #90CC53 !important;
}
.solidBorder {
    border: 1px solid black !important;
    border-radius: 0px !important;
}
.EditableFieldLabel {
    border: none !important;
    vertical-align:baseline !Important;
}
    .EditableFieldLabel .rbDecorated {
        font-size: 1.2em !important;
        font-weight: 550 !important;
        color:#454545 !Important;
        font-family: "Global User Interface", sans-serif !important;
        line-height:1.42857143 !important;
    }
        
    .EditableFieldLabel:hover {
        background-color: #2D8DFF !important;
        
    }
        .EditableFieldLabel:hover .rbDecorated {
            color: white !important;
        }
.RadMenu.GridContextMenu {
	width: 450px !important;
}

.GridContextMenu li.rgFilterListMenu, .GridContextMenu li.rgFilterMenu {
	max-width: unset !important;
}

.GridContextMenu .rmItem .rmContent {
	max-width: unset !important;
}

.RadMenu.GridContextMenu > ul, .RadMenu.GridContextMenu ul.rlbList, .GridContextMenu .rgFilterListMenu .RadListBox {
	width: 100% !important;
}

.GridContextMenu .rmItem .rmContent > *:not(button), .GridContextMenu .rmItem .rmText > *[id] {
	display: block;
}
