/*********************************************
 * This is the core InteractSport css file that governs the Admin interface.
     
PLEASE DISCUSS ALL NEW CSS CLASSES WITH SENIOR DEVELOPERS BEFORE ADDING

IF ADDING, PLEASE ADD IN RELEVANT SECTION ACCORDING TO USE

DEVS SHOULD ALSO TURN OFF HIERARCHICAL UNDETING IN VISULA STUDIO 

TABLE OF CONTENTS
----------------
*RESET
*HTML STYLES
*TYPOGRAPHY - 14px base font size, agnostic font stack
*LAYOUT
*IAS_CLASSES
*ACTION_BAR
*ICONS
*IAS_MISC
*HEADER_FOOTER
*TABLES
*NAV
*PANELS
*GRID_LAYOUT
*FORM_CONTROLS
*BUTTONS
*TOOLTIPS
*IAS_SPECIAL_PAGE
*DASHBOARDS
*MODULE DASHBOARDS
*TEMP_AREA (Testing only)

 *********************************************/

 

/*********************************************
 *RESET (from AUI.css)
 *********************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body,
p,
div,
h1, 
h2,
h3,
h4,
h5,
h6,
img,
pre,
form,
fieldset {
    margin: 0;
    padding: 0;
}

ul,
ol,
dl {
    margin: 0;
}

img,
fieldset {
    border: 0;
}

@-moz-document url-prefix() {
    img {
        font-size: 0;
    }

    img:-moz-broken {
        font-size: inherit;
    }
}
/* https://github.com/necolas/normalize.css */
/* Customised to remove styles for unsupported browsers */
details,
main,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: button;
}


/*********************************************
 *HTML STYLES
 *********************************************/
img {
    display: block;
    max-width: 100%;
    height: auto;
}

input, textarea, select, button {
    font-family: -apple-system,'Helvetica Neue', BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Fira Sans', 'Droid Sans', sans-serif;
}

/*std html control override*/
input[type="radio"] + label, input[type="checkbox"] + label {
    margin-right: 8px;
}

input[type="radio"], input[type="checkbox"] {
    display: none;
}

input[type="radio"]:checked + label, input[type="checkbox"]:checked + label {
    color: initial;
}

input[type="radio"] + label::before {
    content: '\f111';
    font-family: "Font Awesome 5 Free";
    margin-right: 5px;
    font-size: 1.2rem;
}

input[type="checkbox"] + label::before {
    content: '\f0c8';
    font-family: "Font Awesome 5 Free";
    margin-right: 5px;
    font-size: 1.2rem;
}

input[type="radio"]:checked + label::before {
    content: '\f192';
    font-family: "Font Awesome 5 Free";
    color: #0087d8;
}

input[type="checkbox"]:checked + label::before {
    content: '\f14a';
    font-family: "Font Awesome 5 Free";
    color: #0087d8;
}

select::-ms-expand {
    display: none;
}

/*
a {
    font-weight: bold;
    color: #0087d8;
}
*/
a {
    color: #0087d8;
    text-decoration: none;
}

a:hover {
    color: #0065FF;
    text-decoration: none;
}

    a:focus,
    a:active {
        text-decoration: none;
        outline: none;
        -moz-outline-style: none;
    }

a:active {
    color: #0747A6;
}
a {
    color: #0087d8;
    text-decoration: none;
}

a:hover {
    color: #0065FF;
    text-decoration: none;
}

a:focus,
a:active {
    text-decoration: none;
}

a:active {
    color: #0747A6;
}

.valign-top{
    vertical-align:top;
}

.valign-bottom {
    vertical-align: bottom;
}


/*******************************************************
 *TYPOGRAPHY - 14px base font size, agnostic font stack
 ******************************************************/

html {
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    background: #fff;
    overflow-y: scroll;
    font-family: -apple-system,'Helvetica Neue', BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Fira Sans', 'Droid Sans', sans-serif;
    color: #172B4D;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    letter-spacing: 0;
}



html, h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system,'Helvetica Neue', BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Fira Sans', 'Droid Sans', sans-serif;
    color: #070707;
}


h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
    margin: 30px 0 0 0;
    color: #1589D5 !important;
}

h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.50;
    letter-spacing: 0;
    text-transform: none;
    margin: 30px 0 0 0;
    color: #707070 !important;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: none;
    margin: 30px 0 0 0;
}

h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.42857143;
    letter-spacing: 0;
    text-transform: none;
    margin: 5px 0 0 0;
}

h5 {
    color: #707070;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.66666666666667;
    margin: 20px 0 0 0;
    text-transform: uppercase;
}

h6 {
    color: #707070;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.66666666666667;
    margin: 20px 0 0 0;
}

/*h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
        margin-top: 0;
    }*/

h1 + h2, h2 + h3, h3 + h4, h4 + h5, h5 + h6 {
    margin-top: 10px;
}

.default-color {
    color: #434a54;
}

.default-alt-color {
    color: #0087d8;
}

.default-warning-color {
    color: #f8495c;
}

.default-highlight {
    font-weight: bold;
}

a[disabled], a[disabled] i, .disabled-color {
    /*color: #e1e5ed !important;*/
    color: gray !important;
}

a.primary[disabled] {
    background-color: #0087d8;
    opacity: 0.4;
    cursor: unset !important;
}

.error {
    color: #f8495c;
}

.inline-block{
    display:inline-block;
}

small {
    color: #707070;
    font-size: 12px;
    line-height: 1.33333333;
}


.title-underline {
    border-bottom: solid 1px #a7aeba;
}

.panel-label{
    font-weight:500 !important;
}

/*******************************************************
 *LAYOUT
 ******************************************************/


.right {
    float: right;
}

.left {
    float: left;
}

.space-after {
    margin-bottom: 9px;
}

.space-before {
    margin-top: 9px;
}

.space-left {
    margin-left: 8px;
}

div.center {
    text-align: center;
}

div.selectdiv {
    position: relative;
    float: left;
}

div.selectdiv:after {
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    right: 11px;
    top: 9px;
    height: 34px;
    xpadding: 15px 0px 0px 8px;
    padding: 0px 0px 0px 8px;
    position: absolute;
    pointer-events: none;
}

.dualFields div.selectdiv:after {
    content: '' !important;
}

div.selectdiv select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    float: right;
    margin: 0px 0px;
    padding: 0px 32px 0px 16px;
    xfont-size: 16px;
    line-height: 1.75;
    color: #333;
    background-color: #ffffff;
    background-image: none;
    border-radius: 4px;
    border: solid 1px #a7aeba;
    -ms-word-break: normal;
    word-break: normal;
}

.primary-section {
    margin-top: 32px;
}

.secondary-section {
    margin-top: 16px;
}

.clearfix {
    clear: both;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    visibility: hidden;
    width: 0;
}

#content {
    display: flex;
    /*flex-flow: row wrap;*/
    justify-content: flex-start;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0 auto;
    padding: 7rem 0 0;
}

body.b_popup #content {
    padding: 0 !important;
}

form.b_popup {
}

.no-padding{
    padding:0px !important;
}

.no-padding-left {
    padding-left: 0px !important;
}

.no-padding-right {
    padding-right: 0px !important;
}

.no-padding-bottom {
    padding-bottom: 0px !important;
}

.no-padding-top {
    padding-top: 0px !important;
}

.no-margin {
    margin:0px !important;
}

.no-margin-top {
    margin-top:0px !important;
}

#content, #content section {
    position: relative;
    /*AP: This Z-index breaks RadGrid modal popups. Any issue?*/
    /*z-index: 1*/;
}

#content section {
    width: 100%;
}

#content section#inner__content {
    padding-left: 1.2rem;
    padding-top: .9375rem;
}

#main-content {
    max-width: 1200px;
}

#content section .row {
    height: auto;
}


.policy-banner-wrapper {
    font-size: 15px;
    position: fixed;
    background-color: #e6e6e6;
    padding: 10px;
    animation-name: slide-down;
    animation-duration: 1s;
    box-sizing: border-box;
    z-index: 9001;
    min-height: 50px;
    border: 2px solid #ccc;
    text-align: center;
    width: 100%;
    top: 0;
    left: 0;
}

@keyframes slide-down {

    0% {
        margin-top: -66px;
    }

    100% {
        margin-top: 0px;
    }
}

@media (min-width:1200px) {

    #content section .row {
        max-width: 75rem;
        margin: 0;
    }

    #content section .row > .column {
        padding-right: 0;
    }

    #content section .row > .column:last-child {
        padding-right: .9375rem;
    }

    #content section .row.temp .column div {
        background: #eff2f7;
    }

    #content section .row .row .column {
        padding-right: .9375rem;
    }
}

@media (max-width:767px) and (orientation:landscape) {
    #content section .row .column {
        padding-right: 0;
    }

    #content section .row.temp .column div {
        background: #eff2f7;
    }
}

@media (min-width:768px) and (max-width:1024px) {
    #content section .row.medium-up-2 .column:nth-child(2) {
        padding-left: 0;
        padding-right: .9375rem;
    }
}

@media (min-width:1025px) and (max-width:1199px) {
    #content section .row.medium-up-2 .column:nth-child(2) {
        padding-left: 0;
        padding-right: .9375rem;
    }
}



/*******************************************************
 *IAS_CLASSES
 ******************************************************/

.pageheader {
    padding-bottom: 6px;
    margin-bottom: 14px;
    border-bottom: solid 1px #eaeaea;
}

.pagetitle_container h1 {
    float: left;
    color: #434a54;
    font-size: 24px;
    margin: 0;
    font-weight: 500;
}

.helpPanel {
    float: left;
    padding-left: 15px;
}

.helpPanel a {
    font-size: 1.5rem;
    text-decoration: none;
}

.rvlink {
    color: #0087d8 !important;
    xfont-weight: bold !important;
    text-decoration: none;
}

.menu-mode-display {
    color: #ffffff;
    margin-top: auto;
    margin-bottom: auto;
    font-weight:normal;
    padding-right:6px;
    cursor: pointer;
}
/*******************************************************
 *ACTION_BAR
 ******************************************************/
.actionbar {
    height: 35px;
    clear: both;
    margin-bottom: 0px;
}

.actionbar ul.nav {
    list-style: none;
}

.nav-selected-pointer {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    background-color: #0154CB;
    height:11px;
}

.actionbar .navbar .nav > li, .action-button {
    margin-right: 10px;
    xbackground-color: #eff2f7;
    padding-left: 12px;
    padding-top: 6px;
    padding-bottom: 4px;
    padding-right: 16px;
    color: #0087d8;
    font-weight: 500;
    float: left;
    border-radius: 0px;
}

.actionbar .navbar .nav.pull-right {
    float: right;
    margin-right: 0;
}

.actionbar .navbar .nav > li > a, .action-button a {
    text-decoration: none;
}

.topbar-mobile-menu-wrapper{
    /*display:flex;*/
}

.topbar-mobile-menu-wrapper .topbar-mobile-menu-dropdown {
    padding-top: 6px;
    float:right;
}

.topbar-mobile-menu-wrapper .RadDropDownList{
    width:12.15rem; 
}

.topbar-mobile-menu-wrapper .topbar-mobile-menu-radtab {
    float:left;
}

#ctl00_header_adminMenuManager_drpadmts_DropDown {
    /*top: 93.25px !important;*/
}

/*******************************************************
 *ICONS
 ******************************************************/
div.file-download:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f019";
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.settings-icon {
    border: solid 1px #a7aeba;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    position: relative;
    top: 3px;
}

.settings-icon:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f142";
    position: absolute;
    top: 10px;
    left: 16px;
}

.mandatory-field-indicator:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f069";
    color: #f8495c;
    transform: scale(.5);
}

/*******************************************************
 *IAS_MISC
 ******************************************************/

#__asptrace {
    position: absolute;
    top: 800px;
    z-index: 9999999;
    background-color: white !important;
    width: 1000px;
}

@media (max-width:1000px) {
    #__asptrace {
        display: none;
    }
}

div.debug_panel {
    position: fixed;
    bottom: 0px;
    width: 100%;
    padding: 2px;
    background: rgba(255, 255, 0, 0.4);
    z-index: 999;
    font-size: 12px;
}

div.debug_panel div {
    background: rgba(255, 255, 255, 0.8);
    color: red;
    width: 25%;
}


/*******************************************************
 *HEADER_FOOTER
 ******************************************************/

header {
    display: flex;
    height: 3.5rem;
    background-color: #3979D5; /*#0087d8;*/
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 51;
    color: #fff;
}

header h1, header h2, header h3, header h4, header h5, header h6 {
    color: #fff;
    font-size: 1.375rem;
}


footer {
    clear: both;
    padding-left: 16.25rem;
    /*margin-top: 3rem;*/
    margin-top: 0.2rem;
    xheight: 3.5rem;
    background: #F5F7F8; /*#eff2f7;*/
    xposition: absolute;
    xbottom: 0;
    xleft: -1px;
    xright: 0;
    xz-index: 3;
    width: 100%;
    /*border-right: 50px solid #eff2f7;*/
    xposition: fixed;
    bottom: 0;
}

/*temp dm*/
/*@media (max-width:1200px) {

    footer {
        height: auto;
       xbackground: #fff;
        position: relative;
        xbottom: 0;
        xleft: 0;
        xright: 0;
        xz-index: 3
    }

        
}*/

@media (max-width:480px) {
    footer > .row {
        overflow-x: auto;
    }
}

@media (max-width:767px) and (orientation:landscape) {
    footer > .row {
        overflow-x: auto;
    }
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0;
}

@media (min-width:768px) {
    footer ul {
        width: auto;
    }
}

footer ul li, footer ul li a {
    display: inline-block;
}

footer ul li a {
    height: 3.5rem;
    padding: 0 .9375rem;
    color: #434a54;
    font-size: 1rem;
    line-height: 3.5rem;
    text-decoration: none;
    font-weight: bold;
}

footer ul li a:hover {
    text-decoration: underline;
}

footer ul li:first-child a {
    padding-left: 0;
}

@media (max-width:1023px) {

    footer {
        padding-left: 3rem;
        position: relative;
    }

    footer ul li, footer ul li a {
        display: block;
    }

    footer ul li a {
        padding: 0 .1rem;
        line-height: 2rem;
        height: 2rem;
    }

    footer ul li {
    }
}

/*temp dm*/
/*@media (max-width:1200px) {

   

        footer ul li, footer ul li a {
            display: block;
        }
}*/


/*footer ul li:last-child a {
        font-weight: 700
    }

@media (min-width:768px) {
    footer ul li:last-child a {
        padding-right: 0
    }
}*/

@media (max-width:480px) {
    footer ul li.right {
        float: none;
    }
}

footer .powered {
    color: #434a54;
    font-size: 1rem;
    text-decoration: none;
}

/*.footer {
        width: 100%;
        height: 3.5rem;
        background: #eff2f7
    }

@media (max-width:480px) {
    .footer > .row {
        overflow-x: auto
    }
}

@media (max-width:767px) and (orientation:landscape) {
    .footer > .row {
        overflow-x: auto
    }
}*/

/*@media (min-width:1025px) and (max-width:1199px) {
        .footer {
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 2
        }
    }

@media (min-width:1200px) {
    .footer {
        background: hsla(0,0%,100%,.2);
        position: absolute;
        bottom: 0;
        top: auto;
        z-index: 2
    }
}*/

/*.footer ul {
        list-style: none;
        margin: 0;
        padding: 0;
        font-size: 0
}

@media (min-width:768px) {
    .footer ul {
        width: auto
    }
}

.footer ul li, .footer ul li a {
    display: inline-block
}

    .footer ul li a {
        height: 3.5rem;
        padding: 0 .9375rem;
        color: #434a54;
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none
    }

@media (min-width:1200px) {
    .footer ul li a {
        color: #fff
    }
}

.footer ul li:first-child a {
    padding-left: 0
}*/


.swipe__menu__footer {
    width: auto;
}

@media (max-width:480px) {

    #content {
        xpadding-top: 3.5rem;
    }

    footer .right {
        float: none;
    }
}

.admin-title-img {
    background: url("/Common/layouts/default/admin/v7/assets/img/logoresultsvaultadminhorizontal.svg") no-repeat !important;
    background-position: center center;
    height: 30px;
}

.admin-title-img-ecl {
    background: url("/Common/layouts/default/admin/v7/assets/img/ECN_Banner_600x30.png") no-repeat !important;
    background-position: center center;
    height: 30px;
}

.admin-title-img-cricket_ireland {
    background: url("/Common/layouts/default/admin/v7/assets/img/CI_600X30.png") no-repeat !important;
    background-position: center center;
    height: 30px;
}
.admin-title-img-cricket_scotland {
    background: url("/Common/layouts/default/admin/v7/assets/img/CricketS-portal.png") no-repeat !important;
    background-position: center center;
    height: 40px;
}

/*******************************************************
 *TABLES
 ******************************************************/
table.formtable {
    border-collapse: collapse;
}

table.formtable.fullwidth {
    width:100%;
}

table.formtable > tbody > tr > td, table.formtable > tbody > tr > th {
    xpadding: .9375rem !important;
    border-bottom: 1px solid #e1e5ed;
    padding: 10px 5px 10px 5px;
}

table.formtable > tbody > tr:last-child > td, table.formtable > tbody > tr:last-child > th {
    border-bottom: 0px solid #e1e5ed;
}

table.formtable tr th {
    xcolor: #a7aeba;
    max-width: 300px;
    font-weight: 500;
}

table.formtable tr th.rowheading {
    background-color: #e1e5ed;
    padding-left:10px !important;
}

th {
    padding: 16px 0px;
    text-align: left;
}

.balance-column {
    background-color: #CFFCDA!important;
    font-weight: 800;
}

.balance-row {
    font-weight: 800;
}

.no-bottom-border{
    border-bottom:none !important;
}

.no-border {
    border: none !important;
}

.custom-border-bottom {
    border-bottom: 1px solid #e1e5ed !important;
}

/*******************************************************
 *NAV
 ******************************************************/

nav {
    display: flex;
    height: 3.5rem;
    background-color: #6496DD; /*#0087d8;*/
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 3.5rem;
    z-index: 50;
}

nav:before {
    display: block;
    content: "";
    background-color: #fff;
    opacity: .22;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

aside {
    height: 100%;
    padding: 0;
    /*background: #434a54;*/
    background: #F5F7F8;
    /*position: fixed;*/
    left: 0;
    z-index: 2;
    overflow-y: auto;
    transition: width .2s ease-in-out;
}

    aside #inner__side__nav {
        padding: 0 0 3.5rem;
    }






/*@media (min-width:768px) and (max-width:1024px) {
aside + section .temp .column {
    padding-right: 0
}

    aside + section .temp .column div {
        background: #eff2f7
    }

    aside + section .temp .column:nth-child(2) {
        padding-left: .9375rem !important
    }
}

@media (min-width:1025px) and (max-width:1199px) {
    aside + section .row.medium-up-2 .column:nth-child(2) {
        padding-left: 0 !important;
        padding-right: .9375rem
    }
}*/


aside.in {
    width: 16.25rem;
    height: 100%;
}

aside.in .hamburger__menu {
    padding-right: .9375rem;
    font-size: 1.25rem;
    text-align: right;
}

@media (max-width:767px) {

    .nav-selected-pointer {
        display: none;
    }

    .RadTabStrip_IASAdminMenuModeSelector .rtsSelected .rtsLink:after{
        content:none !important;
    }

    /*aside.in #inner__side__nav ul {
            display: block
        }*/
}

@media (min-width:768px) and (max-width:1024px) {
    
    /*aside.in #inner__side__nav ul {
            display: block
        }*/

    /*aside.in + section {
            padding-left: 16.25rem
        }*/

    /*aside.in + section .row.medium-up-2 .column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    aside.in + section .row.medium-up-2 .column:nth-child(2) {
        padding-left: .9375rem !important
    }

    aside.in + section .row.medium-up-2 .column .form__row .column:nth-child(2) {
        padding-left: 0 !important
    }

    aside.in + section .row.temp .column {
        padding-right: .9375rem
    }

    aside.in + section .row.temp .column div {
        height: auto;
        background: #eff2f7
    }*/
}

@media (min-width:1025px) and (max-width:1199px) {
    /*aside.in + section {
        padding-left: 16.25rem
    }*/

    /*aside.in + section .row.medium-up-2 .column:nth-child(2) {
        padding-left: .9375rem !important;
        padding-right: .9375rem
    }

    aside.in + section .row.large-up-3 .column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    aside.in + section .row.temp .column {
        padding-right: .9375rem
    }

    aside.in + section .row.temp .column div {
        height: auto;
        background: #eff2f7
    }*/
}

@media (min-width:768px) {


    /*aside + section {
            padding-left: 16.25rem
        }*/
}

/*aside + #content section {
        padding-left: 3.5rem
    }*/

@media (min-width:1025px) {
    /*aside + #content section {
            padding-left: 16.25rem
        }*/
}

aside .hamburger__menu {
    display: block;
    width: 100%;
    margin-top: .9375rem;
    padding: 0;
    border: 0;
    background: none;
    /*color: #fff;*/
    font-size: 1.5625rem;
    text-align: center;
}

@media (min-width:1023px) {
    aside .hamburger__menu {
        display: none;
    }

    aside {
        width: 20.8rem !important; /*16.25rem;*/
        min-height: 48rem;
    }
}

@media (max-width:1023px) {
    aside#side__nav #inner__side__nav {
        display: none;
    }

    aside + section#inner__content {
        margin-left: 2rem;
    }

    aside {
        xheight: 50px;
        width: 2rem;
        position:fixed;
    }

    footer{
        z-index:0;
    }

    .rtsUL{
        height:45px !important;
    }
}

aside + section#inner__content {
    /*margin-left: 16.25rem;*/
}

form.hidenav aside {
    display: none;
}

form.hidenav aside + section#inner__content {
    margin-left: 1rem;
}

@media (max-width:768px) {
    #divprofileblock {
        padding-top: 15px;
    }

    .hide-on-mobile-view {
        display: none;
    }
}

.mobile-indicator {
    display: none;
}

@media (max-width:1024px) {

    .rv-dashboard .RadInput, .rv-dashboard input[type=text] {
        margin-bottom: 10px !important;
        display: block;
    }

    .rv-dashboard .t-col, .rv-dashboard .left, .rv-dashboard .right, .rv-dashboard .content-panel-wrapper {
        width: 100% !important;
        padding: 10px !important;
    }

    .mobile-indicator {
        display: block !important;
    }

    .mobile-row-design td, .mobile-row-design th {
        display: table-row;
    }
}

/*******************************************************
 *PANELS
 ******************************************************/

.info-panel, .alert-panel {
    padding: 10px;
    border-radius: .3125rem;
    overflow: auto;
}

.info-panel ul, .alert-panel ul {
    margin-top: 16px;
    padding-left: 40px;
}

.info-panel {
    background-color: #eff2f7;
    border: 1px solid #eff2f7;
}

.alert-panel {
    background-color: #ffffcc;
    border: 1px solid #ffff00;
}

.info-panel-2 {
    background-color: rgba(255, 255, 230, 1);
    text-align: justify;
    padding: 10px;
}



.ValidationMessage_Error, .UpdateMessage_Error, .UpdateMessage_Warning, .WarningPanel {
    /*min-height: 60px;
    height: auto !important;
    margin-top: 20px;
    xmargin-left: 35px;
    padding: 10px;
    width: 75%;
    border: #f8495c 2px solid;*/
    min-height: 60px;
    height: auto !important;
    margin-top: 10px;
    color: #f8495c;
    border: 1px solid;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    max-width: 1200px;
}

.UpdateMessage_Warning {
    color:#FF7F50 !important;
}

.ValidationMessage_Error ul, .UpdateMessage_Error ul, .UpdateMessage_Warning ul {
    margin-top: 10px;
    margin-left: 40px;
    padding-left:70px;
}

.ValidationMessage_Error li, .UpdateMessage_Error li, .UpdateMessage_Warning li {
    list-style-type: disc;
}

.UpdateMessage_Error, .UpdateMessage_Warning, .WarningPanel {
    color: #f8495c;
}

/*.UpdateMessage_Error:before, .UpdateMessage_Warning:before, .WarningPanel:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f12a";
    font-size: 1.5rem;
    left: 1.5rem;
    top: 1.0rem;
    position: absolute;
}*/

    .ValidationMessage_Error:before, .UpdateMessage_Error:before, .UpdateMessage_Warning:before {
        /*font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f12a";
    font-size: 1.5rem;
    xleft: 1.5rem;
    xtop: 0.6rem;
    xposition: absolute;
    float: left;
    padding-right: 10px;*/
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f12a";
        font-size: 1.5rem;
        left: 1.5rem;
        position: absolute;
        border-radius: 50px;
        border: 2px solid;
        width: 36px;
        line-height: 36px;
        text-align: center;
    }

.UpdateMessage_OK, .UpdateMessage_FreeText {
    /*color: #00996e;*/
    color: #00996e;
    border: 1px solid;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    max-width:1200px;
    min-height:62px;
}

    .UpdateMessage_OK:before {

    /*font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    font-size: 1.5rem;
    left: 1.5rem;
    top: 0.6rem;
    position: absolute;*/

    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    font-size: 1.5rem;
    left: 1.5rem;
    position: absolute;
    border-radius: 50px;
    border: 2px solid;
    width: 36px;
    line-height: 36px;
    text-align: center;

    }

.UpdateMessagePanelTextContainer, .vs_header {
    padding-left: 70px;
}

#UpdateMessagePanel, .UpdateMessagePanel, .WarningPanel {
    width: 100%;
    background-color: white;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    padding-left: 3.5rem;
    font-family: -apple-system,"Helvetica Neue", BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", sans-serif;
    line-height: 1.25;
    -webkit-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.12);
    box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.12);
    position: relative;
    text-align: left;
    border: 0px solid black !important;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.UpdateMessagePanel div.closer:after {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 400 !important;
    content: "\f057" !important;
    font-size: 1.5rem;
    top: 0.8rem;
    right: 1rem;
    position: absolute;
    cursor: pointer;
    color: #008fcf;
}

#UpdateMessagePanel li, .UpdateMessagePanel li {
    height: auto;
    min-height: auto;
    color: Black;
    margin: auto;
    padding: auto;
    vertical-align: middle;
}

#UpdateMessageImage, .UpdateMessageImage {
    display: none;
}

.panel-header {
    height: 2.0rem;
    border: 1px solid #E0E0E0;
    font-weight: 500;
    text-transform: capitalize;
    padding-left: 7px !important;
    padding-right: 7px;
    background: #E0E0E0;
    display: block;
    margin-bottom: 10px;
    padding-top:0.2rem !important;
}

.content-panel-wrapper {
    border: 1px solid #e6e6e6;
    padding: 10px;
    background-color: #F5F7F8;
    width:100%;
    margin-top:5px;
}

.content-panel-wrapper .button-panel {
    border: 0px;
    background-color: #F5F7F8;
    margin-bottom: 0px;
    height:100%;
    padding-right: 0px;
}



.breakout-box {
    background-color: #f6f6f6;
    padding: 10px;
}

/*******************************************************
 *GRID_LAYOUT
 ******************************************************/

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.row.expand {
    max-width: 100%;
    width: 100%;
}

.row.collapse .column {
    padding-left: 0;
    padding-right: 0;
}

.row.center {
    align-items: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
}

.row.full {
    height: 100%;
}

.row.full.temp {
    height: auto;
}

.row.full.temp .column div {
    background: #eff2f7;
}

.row .column {
    min-width: 0;
    padding-left: .9375rem;
    padding-right: .9375rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.row .column.center {
    text-align: center;
}

@media (max-width:767px) and (orientation:landscape) {
    .row .column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.row .small-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66666667%;
    flex: 0 0 16.66666667%;
    -webkit-flex: 0 0 16.66666667%;
    -moz-box-flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
}

.row .small-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.row .small-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
}

.row .small-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66666667%;
    flex: 0 0 41.66666667%;
    -moz-box-flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
}

.row .small-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.row .small-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333333%;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
}

.row .small-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66666667%;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
}

.row .small-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.row .small-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333333%;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
}

.row .small-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66666667%;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
}

.row .small-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.row.small-up-1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.small-up-1 .column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (max-width:767px) {
    .row.small-up-1 .column:nth-child(3) {
        display: none;
    }
}

@media (max-width:767px) and (orientation:landscape) {
    .row.small-up-1 .column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.row.small-up-3 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.small-up-3 .column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
}

@media (max-width:767px) {
    .row.small-up-3 .column:nth-child(3) {
        display: block;
    }
}

@media (min-width:768px) and (max-width:1024px) {
    .row .medium-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }

    .row .medium-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row .medium-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .row .medium-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }

    .row .medium-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row .medium-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }

    .row .medium-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }

    .row .medium-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .row .medium-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }

    .row .medium-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }

    .row .medium-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row.medium-up-2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .row.medium-up-2 .column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row.medium-up-2 .column:nth-child(2) {
        padding-right: .9375rem;
    }

    .row.medium-up-2 .column:last-child {
        display: none;
    }

    .row.medium-up-3 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .row.medium-up-3 .column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }
}

@media (min-width:1025px) and (max-width:1199px) {
    .row .medium-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }

    .row .medium-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row .medium-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .row .medium-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }

    .row .medium-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row .medium-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }

    .row .medium-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }

    .row .medium-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .row .medium-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }

    .row .medium-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }

    .row .medium-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row.medium-up-2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .row.medium-up-2 .column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row.medium-up-2 .column:last-child {
        display: none;
    }

    .row.medium-up-3 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .row.medium-up-3 .column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }
}

@media (min-width:1200px) {
    .row .large-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }

    .row .large-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row .large-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .row .large-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }

    .row .large-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row .large-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }

    .row .large-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }

    .row .large-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .row .large-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }

    .row .large-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }

    .row .large-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row.large-up-3 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .row.large-up-3 .column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        -moz-box-flex: 0 0 33.33333333%;
        -webkit-flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .row.large-up-2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .row.large-up-2 .column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row.large-up-2 .column:nth-child(3) {
        display: none;
    }
}

.RVDataGrid td{
    border:none;
}
/*********************************************
 *FORM_CONTROLS
 *********************************************/
.form-content-section {
    margin-left: 15px;
    position: relative;
    max-wdith: 800px;
}

.form-content-section:first-child {
    margin-top: 0;
}

.form-content-section .short-field {
    max-width: 75px;
    width: 75px;
}

.form-content-section .medium-1-field {
    max-width: 165px;
    width: 165px;
}

.form-content-section .medium-2-field {
    max-width: 340px;
    width:340px;
}

.form-content-section .long-field {
    max-width: 500px;
    width: 500px;
}

.form-content-section .full-width-field {
    max-width: none;
    width:100%
}

.form-content-section label {
    color: #707070;
}

.form-content-section label.inline {
    display:inline;
}

form-content-section div.description {
    color: #707070;
    font-size: 12px;
    line-height: 1.66666666666667;
    margin: 5px 0 0 0;
}


.form-content-section h2 {
    margin-bottom: 15px;
}

.form-content-section .form-group {
    clear: both;
    overflow: visible;
    position: relative;
    margin-bottom: 15px;
}



.form-content-section .form-group label {
    line-height: 18px;
    margin: 15px 0 0.6em;
    width: 100%;
}


.form-content-section .form-group input[type=text], .form-content-section .form-group select, .form-content-section .form-group span, .form-content-section .form-group div {
    display: table;
}

.form-content-section select[disabled] {
    background-color:#F4F6F7;
}

.form-content-section .selectdiv {
    float: none !important;
    display: table;
}


.RadInput .riTextBox, .RadInputMgr {
    background-color: #fff !important;
}

form .select, form input[type=date], form input[type=password], form input[type=text], form textarea,
select {
    height: 2.0rem;
    padding: 0 32px 0 16px;
    border-radius: .3125rem;
    background-clip: padding-box;
    background: #fff;
    box-shadow: none;
    color: #434a54;
}

form textarea {
    height: unset;
    font-family: -apple-system,"Helvetica Neue", BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", sans-serif;
}

input[type=text] {
    min-width: 75px;
    /*fix for really small tbs that effectively look disabled due to padding*/
    border-radius: 4px;
    border: solid 1px #a7aeba;
}

input[type=text].comboTextBox {
    border-width: 0px;
}

input[type=text].short-field {
    max-width: 75px;
    width: 100%;
}

input[type=text].medium-1-field {
    max-width: 165px;
    width: 100%;
}

input[type=text].medium-1-5-field {
    max-width: 260px;
    width: 100%;
}

input[type=text].medium-2-field {
    max-width: 340px;
    width: 100%;
}

select.medium-1-5-field {
    width: 260px !important;
    width: 100%;
}

select.medium-2-field {
   width: 340px;
}

textarea.medium-2-field {
    width: 340px;
}

input[type=text].long-field, textarea.long-field {
    max-width: 500px;
    width: 100%;
}

input[type=text].full-field, textarea.full-field {
    width: 100%;
}

select[multiple] {
    height: auto;
}

form .select.input__border, form input[type=date].input__border, form input[type=password].input__border, form input[type=text].input__border, form textarea.input__border {
    padding: .75rem .9375rem .625rem;
    border: 1px solid #a7aeba;
}

form .select.input__border:focus, form .select:focus, form input[type=date].input__border:focus, form input[type=date]:focus, form input[type=password].input__border:focus, form input[type=password]:focus, form input[type=text].input__border:focus, form input[type=text]:focus, form textarea.input__border:focus, form textarea:focus {
    outline: none;
}

table.formtable th.mandatory-field-indicator:before, table.formtable td.mandatory-field-indicator:before {
    float: right;
}

/*********************************************
 *BUTTONS
 *********************************************/

button.button {
    padding: .625rem .9375rem;
    border: 0;
    background: none;
    font-size: 1rem;
    cursor: pointer;
}

button.inverse {
    border: .0625rem solid #fff;
    color: #fff;
}

button.inverse:hover {
    background-color: #fff;
    color: #0087d8;
}

.textbutton {
    padding-top: 7px;
    padding-bottom: 9px;
}

button.primary, button.secondary, input[type="submit"], input[type="button"], .textbutton {
    /*xwidth: 100%;
    height: 2.0rem;
    xmargin-bottom: .9375rem;
    border: 1px solid #0087d8;
    border-radius: .3125rem !important;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    font-weight:bold;
    xfont-family: Arial, sans-serif;
    padding-left: 7px;
    padding-right: 7px;
    cursor:pointer;*/
    height: 40px;
    min-width: 98px;
    padding-left: 14px;
    padding-right: 14px;
    text-transform: capitalize;
    border-radius: 3px !important;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #0087d8;
    font-weight: 500;
    font-weight: bold;

}

/* For buttons horizontally aligned on a grid row */
.no-min-width{
    min-width:unset !important;
}

/* For buttons horizontally aligned with controls */
.custom-height{
    height: 32px !important;
}

/* For anchor tags horizontally aligned with controls */
.a-custom-height {
    display: inline-block !important;
    padding-top: 4px !important;
    height: 32px !important;
}

.button-panel {
    width: 100%;
    height: 60px;
    background-color: #eff2f7;
    align-content: flex-end;
    align-content: right;
    text-align: right;
    padding-top: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
    padding-right: 10px;
}


.button-panel-custom-padding{
    padding-top:18px;
}

button.primary:hover, input[type="button"].primary:hover, input[type="submit"].primary:hover {
    color: #eff2f7 !important;
}

button.secondary:hover, input[type="button"].secondary:hover, input[type="submit"].secondary:hover {
    color: #a7aeba !important;
}

button.primary, input[type="submit"], input[type="button"], .textbutton.primary {
    background: #0087d8;
    color: #fff;
}

button.secondary, input[type="button"].secondary, input[type="submit"].secondary, .textbutton.secondary {
    background: #fff;
    color: #0087d8;
}

input[type="button"]:disabled, input[type="submit"]:disabled, button.primary:disabled, button.secondary:disabled {
    border-color: #cacdd3;
    color: #ffffff;
    background: #cacdd3;
}

button.border-radius {
    border-radius: .3125rem;
    background-clip: padding-box;
}

button.block {
    display: block;
}

button.inline-block {
    display: inline-block;
}

button:focus {
    outline: none;
}

/*radupload*/
span.ruButton {
    padding-top: 0px !important;
    background: #0087d8 !important;
    color: #fff !important;
}

a.button {
    padding: .625rem .9375rem;
    border: 0;
    background: none;
    font-size: 1rem;
    cursor: pointer;
}

a.secondary {

    /*height: 2.0rem;
    border: 1px solid #0087d8;
    border-radius: .3125rem !important;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    font-weight: bold;
    padding-left: 7px;
    padding-right: 7px;
    cursor: pointer;
    padding-top: 0.3rem;
    padding-bottom: 0.5rem;
    padding: 8px 12px;
    height: 40px;
    min-width: 98px;
    padding-left: 14px;
    padding-right: 14px;
    margin-right: 7px;*/


    /*color: #fff !important;
    background-color: #0087d8;*/
    border: 1px solid #0087d8;
    padding: 8px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    /*border: 1px solid transparent;*/
    border-radius: 3px;
    text-decoration: none;
    height: 40px;
    min-width: 98px;
    padding-left: 14px;
    padding-right: 14px;
    margin-right: 7px;
}

a.primary {

    color: #fff !important;
    background-color: #0087d8;
    padding: 8px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px;
    text-decoration: none;

    height: 40px;
    min-width: 98px;
    padding-left: 14px;
    padding-right: 14px;
    margin-right: 7px;


}

a.primary:hover {
    color: #eff2f7 !important;
}

a.action-btn {
    background-color: #eff2f7;
    padding: 6px;
    color: #0087d8;
    font-weight: bold;
    text-decoration: none;
}

span.heading{
    font-weight:500;
}

/*********************************************
 *TOOLTIPS
 *********************************************/

.PopupLinks ul {
    margin-bottom: 10px;
}

    .PopupLinks ul li {
        font-size: 15px;
        font-weight: bold;
        font-style: normal;
        color: #434a54;
        line-height: 50px;
        cursor: pointer;
        list-style-type: none;
        font-family: -apple-system,"Helvetica Neue", BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", sans-serif;
        margin-left: 16px;
        margin-left: 16px;
        border-bottom: 1px solid #e1e5ed;
    }

.PopupLinks ul li:last-child {
    border-bottom: 0px solid #e1e5ed;
}

/*.PopupLinks ul li svg, .PopupLinks ul li i {
    float: right;  
    padding-right: 20px;
    padding-top: 10px;
    /*font-weight: normal;
font-size: 18px;
height: 50px;
line-height: 50px; }*/
.PopupLinks ul li a {
    display: block;
    color: #434a54;
    text-decoration: none;
}

.PopupLinks ul li a:hover {
    color: #0087d8;
}

.PopupLinks ul li a:before {
    position: absolute;
    right: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    font-size: 2rem;
}

.admin-profile-tooltip-main {
    padding-top:7px;
}

    .admin-profile-tooltip-main label, .admin-profile-tooltip-main label:before {
        color: white !important;
    }

    .admin-profile-tooltip-main ul li {
        font-size: 15px !important;
        color: #434a54 !important;
        line-height: 35px !important;
        cursor: pointer;
        list-style-type: none !important;
        font-family: -apple-system,"Helvetica Neue", BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", sans-serif;
        margin-left: 0px !important;
        border-bottom: 1px solid #e1e5ed;
        font-weight: unset;
        font-style: unset;
        padding-left: 10px;
    }

    .admin-profile-tooltip-main ul li a:before {
        content: "" !important;
    }

.PopupLinks h1 {
    font-size: 1.5rem;
}

.PopupLinks h2 {
    font-size: 1.25rem;
}

/*********************************************
 *DASHBOARDS
 *********************************************/

.dash-table
{
    width:100%;
    text-align: center;
}

.dash-section
{
    padding:10px;
}

.dash-section-nosidepadding {
    padding: 0px;
    padding-top:20px;
}

.dash-section-heading
{
    height:52px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.50;
    letter-spacing: 0;
    text-transform: none;
    margin: 0px 0 0 0;
}

.dash-label, .dash-label-med, .dash-label-large, .dash-value-large, .dash-value-med, .dash-value-sm {
    font-family: -apple-system,"Helvetica Neue", BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", sans-serif;
}
    
.dash-label, .dash-label-inline 
{
    color: #888;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
      
}

a.dash-label:visited
{
    color: #888;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    
}    

.dash-label-med
{
    color: #888;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding-left:13px;
}

a.dash-label-med:visited
{
    color: #888;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    
}   

.dash-label-large
{
    color: #888;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
   
}

a.dash-label-med:visited
{
    color: #888;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    
}   


.dash-value-large, .dash-value-large-inline  
{
    color: #444;
    font-size: 24px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 5px;
    
}

.dash-value-med, .dash-value-med-inline  
{
    color: #444;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 5px;
    
}

.dash-value-sm, .dash-value-sm-inline  
{
    color: #444;
    font-size: 13px;
    font-weight: 500;
}

.dash-label-inline , .dash-value-large-inline
{
    display:inline;
}

.dash-heading-med {
    font-size: 17.5px;
    color: #5B5A5A;
    font-family: -apple-system,"Helvetica Neue", BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", sans-serif;
    font-weight: bold;
    line-height: 20px;
    margin: 10px 0 10px 0;
    text-rendering: optimizelegibility;
}    


.dash-panel {
    background-color: #eee;
    margin-top: 0;
    overflow: hidden;
    padding: 5px;
}  

.dash-panel-half {
    width: 45%;
    float: left;
    overflow: hidden;
    padding-left: 2px;
    padding-right: 2px;
    
}     

.dash-panel-full {
    width: 95%;
    float: left;
    overflow: hidden;
    padding-left: 2px;
    padding-right: 2px;
    
}     

.dash-panel-major {
    width: 60%;
    float: left;
    overflow: hidden;
    padding-left: 2px;
    padding-right: 2px;   
}     

.dash-panel-minor {
    width: 33%;
    float: left;
    overflow: hidden;
    padding-left: 2px;
    padding-right: 2px;

}

.rv-dashboard .box-inner {
    border: 1px solid #d6d6d6 !important;
    /*background-color: #F5F7F8;*/
    background-color: white;
    min-height: 40px;
}

.rv-dashboard .box-inner.fixed-height {
   max-height:450px;
   overflow:auto;
}

.rv-dashboard .no-side-padding {
    padding-left:0px !important;
    padding-right:0px !important;
}

.rv-dashboard .box-header {
    border: 1px solid #d6d6d6 !important;
    border-bottom: none !important;
    padding-top: 13px;
    background-color: #F5F7F8;
}

.rv-dashboard .box-header-rcorners {
    height: 52px;
    text-transform: capitalize;
    font-weight: 500;
    padding-left: 7px;
    padding-right: 7px;
    display: block;
    padding-top: 13px;
    text-align: left;
    font-size:16px;
}

.rv-dashboard.report-board .box-header-rcorners {
    padding-left: 15px !important;
}

.rv-dashboard .box-participants tr:first-child td {
    padding-bottom: 0px !important;
    border-bottom: none !important;
}


.rv-dashboard .number-label {
    color: #707070 !important;
    font-weight: 550 !important;
}

.rv-dashboard .text-label {
    color: #0087d8 !important;
    font-size: 14px;
}

#content section .row {
    max-width: none !important;
}

.rv-dashboard g text {
    font-size: 13px !important;
}

.rv-dashboard .box-inner-content {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.rv-dashboard .box-inner-notices-1 {
    border: 1px solid #00A5E6;
    margin: 10px;
    padding: 10px
}

.rv-dashboard .box-inner-notices-2 {
    border: 1px solid #D5D5D5;
    margin: 10px;
    padding: 10px
}

.rv-dashboard .box-inner-notices-1 .left {
    float: left;
    width: 20%;
}

.rv-dashboard .box-inner-notices-1 .right {
    float: right;
    width: 80%;
}

.rv-dashboard .box-inner-notices-2 .left {
    float: left;
    width: 20%;
}

.rv-dashboard .box-inner-notices-2 .right {
    float: right;
    width: 80%;
}

.rv-dashboard .chart-stroke-size {
    stroke-width: 8;
}

.rv-dashboard g[transform] path {
    stroke-width: 8;
}

.rv-dashboard g[transform*='matrix(1,0,0,1,0,0)'] path {
    stroke-width: 0;
}
    


/*********************************************
 *IAS_SPECIAL_PAGE
 *********************************************/
/*Start-selector floating fix*/
.select-wrapper {
    display: table;
}

.select-wrapper span {
    line-height: 55px;
    float: left;
    margin-right: 20px;
}
/*End-selector floating fix*/

.ias-toggle-body {
    padding: 0px 8px 16px 8px;
    border-bottom: 1px solid #434a54;
}

.ias-toggle-header {
 
    cursor: pointer;
    padding: 10px;
    color: #070707;
    font-weight: 600;
    font-size: 16px;
}

.ias-toggle-header.active {
    /*border-bottom: 1px solid #434a54;*/
}

.ias-toggle-header:after {
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left:10px;
    padding-top:2px;
    /*position:absolute;*/
    float: right;
}

.ias-toggle-header-up:after {
    content: '\f077';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 10px;
    padding-top: 2px;
    /*position: absolute;*/
    float: right;
}

/*********************************************
 *MODULE DASHBOARDS
 *********************************************/

.module-dashboard-wrapper .form-table {
    border: 1px solid #e6e6e6;
    display: block;
    text-align: left;
    width: 100%;
}

.module-dashboard-wrapper .form-table tbody, .module-dashboard-wrapper .form-table tr, .module-dashboard-wrapper .form-table td {
    display: block;
}

.module-dashboard-wrapper .form-table td, .form-table th {
    padding: 0.75em;
}

.module-dashboard-wrapper .form-table td:last-child, .module-dashboard-wrapper .form-table th:last-child {
    text-align: left;
}

.module-dashboard-wrapper .form-table tbody {
    background: #e2e2e2;
    border: solid #ebebeb;
    border-width: 0 1px;
}

.module-dashboard-wrapper .form-table tbody tr {
    border-bottom: 1px solid #ebebeb;
}

.module-dashboard-wrapper .form-table tbody tr:hover {
    background: #E8E8E8;
}

.module-dashboard-wrapper .form-table tbody tr:last-child {
     border-bottom: 0;
}

.module-dashboard-wrapper .form-table tbody .disabled {
    background: #ddd;
    color: #b0b0b0;
}

.module-dashboard-wrapper #left {
    float: left;
    width: 50%;
}

.module-dashboard-wrapper #right {
    float: left;
    width: 50%;
}

.module-dashboard-wrapper#mainDiv {
    width: 100%;
    /*margin-left: 2%;*/
    margin-right: 15%;
}

.module-dashboard-wrapper .formtable > tbody > tr > td, .formtable > tbody > tr > th {
    padding-left: 0px !important;
}

.module-dashboard-wrapper .form-table tr:nth-child(even) {
    background: #FFF; /*#F5F5F5*/
}

.module-dashboard-wrapper .form-table tr:nth-child(odd) {
    background: #FFF
}


/*********************************************
 *TEMP_AREA (Trial only)
 *********************************************/



/* scrollbar 

::-webkit-scrollbar { 
    width: 12px;
}

/* Track 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
*/
/* Handle 
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255,0,0,0.8);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

    ::-webkit-scrollbar-thumb:window-inactive {
        background: rgba(255,0,0,0.4);
    }
*/