@font-face {
    font-family: "Proxima Nova";
    src: local("Proxima Nova Regular"), local("ProximaNova-Regular"),
        url("../font/proxima_nova-regular.woff") format("woff"),
        url("../font/proxima_nova-regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Proxima Nova";
    src: local("Proxima Nova Regular Italic"), local("ProximaNova-RegularIt"),
        url("../font/proxima_nova-regular_it.woff") format("woff"),
        url("../font/proxima_nova-regular_it.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: "Proxima Nova";
    src: local("Proxima Nova Semibold"), local("ProximaNova-Semibold"),
    url("../font/proxima_nova-semibold.woff") format("woff"),
    url("../font/proxima_nova-semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Proxima Nova";
    src: local("Proxima Nova Semibold Italic"), local("ProximaNova-SemiboldIt"),
    url("../font/proxima_nova-semibold_it.woff") format("woff"),
    url("../font/proxima_nova-semibold_it.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: "Proxima Nova";
    src: local("Proxima Nova Bold"), local("ProximaNova-Bold"),
        url("../font/proxima_nova-bold.woff") format("woff"),
        url("../font/proxima_nova-bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "Proxima Nova";
    src: local("Proxima Nova Bold Italic"), local("ProximaNova-BoldIt"),
        url("../font/proxima_nova-bold_it.woff") format("woff"),
        url("../font/proxima_nova-bold_it.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

/* Убрать анимацию */
@media (prefers-reduced-motion: reduce) {
    .someClass {
        transition: none !important;
    }
}


/*** Base ***/

body {
    font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #202124;
    background: #f2f4f9;
}
canvas {
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* mobile webkit */
}
a {
    text-decoration: none;
    color: #2458d3;
    background: rgba(255, 255, 255, 0);
}
a:hover {
    text-decoration: underline;
    color: #406ed9;
}
.marTop12px {
    margin-top: 12px;
}
.bgWhite {
    background: #fff;
}
.marTB0 {
    margin-top: 0;
    margin-bottom: 0;
}
.red-text {
    color: red !important;
}


/*** Lyaout ***/

.wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    overflow-x: hidden;
    min-height: 100vh;
}
.wrapperHeader {
    z-index: 8;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 8px 15px 7px;
    height: 56px;
    border-bottom: 1px solid #e5e7ec;
    background: #fff;
}
.wrapperAsideUpdateAvailable {
    top: 112px !important;
}
.wrapperAside {
    z-index: 7;
    overflow-y: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: stretch;
    align-items: stretch;
    position: fixed;
    top: 56px;
    left: 0;
    bottom: 0;
    padding: 16px;
    width: 72px;
    border-top: 1px solid #f2f4f9;
    background: #fff;
    transition: width .15s ease-in-out, left .15s ease-in-out;
}
.wrapperMain {
    z-index: 5;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    padding: 72px 16px 20px 88px;
    min-width: 0;
    transition: padding-left .15s ease-in-out;
}
.wrapperHeader.navShort ~ .wrapperMain {
    padding-left: calc(88px - 72px);
}
.wrapperLogin {
    z-index: 7;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    padding: 72px 16px 20px;
    min-width: 0;
}
@media (min-width: 768px) {
    .wrapperAside {
        width: 268px;
    }
    .wrapperHeader.navShort ~ .wrapperAside {
        width: calc(268px - 192px);
    }
    .wrapperMain {
        padding: 78px 22px 28px 290px;
    }
    .wrapperHeader.navShort ~ .wrapperMain {
        padding-left: calc(290px - 192px);
    }
    .wrapperLogin {
        padding: 78px 22px 28px;
    }
}
@media (max-width: 767.98px) {
    .wrapperAside {
        left: 0;
    }
    .wrapperHeader.navShort ~ .wrapperAside {
        left: -72px;
    }

    body .wrapperHeader ~ .wrapperMain .dashboard-filter-accordion:has([data-expand-state="maximized"]),
    body .wrapperHeader ~ .wrapperMain .dashboard-filter-accordion:has([data-expand-state="minimizing"]) {
        width: calc(100% - 90px);
    }

    body .wrapperHeader.navShort ~ .wrapperMain .dashboard-filter-accordion:has([data-expand-state="maximized"]),
    body .wrapperHeader.navShort ~ .wrapperMain .dashboard-filter-accordion:has([data-expand-state="minimizing"]) {
        width: calc(100% - 15px);
    }

}
@media (prefers-reduced-motion: reduce) {
    .wrapperAside,
    .wrapperMain,
    .wrapperLogin {
        transition: none !important;
    }
}

/*! Header */
.wrapperHeaderLeft {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}
.wrapperHeaderRight {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.wrapperHeaderItem {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-right: 1px;
    margin-left: 1px;
}
.wrapperHeaderButtonSvg {
    display: block;
    padding: 0;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 8px;
    background: #fff;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.wrapperHeaderButtonSvg:not(:disabled):not(.disabled):hover {
    background: #f6f8fd;
}
.wrapperHeaderButtonSvg:not(:disabled):not(.disabled):active {
    background: #eef2fc;
    box-shadow: 0 0 0 1px #eef2fc;
}
.wrapperHeaderButtonSvg svg {
    display: block;
    max-width: 40px;
    width: 100%;
    max-height: 40px;
}
.wrapperHeaderButtonSvg path {
    fill: #5c5d60;
    transition: fill .15s ease-in-out;
}
.wrapperHeaderButtonSvg:disabled path,
.wrapperHeaderButtonSvg.disabled path {
    fill: #a5a6aa;
}
.wrapperHeaderButtonSvgGrey2 path {
    fill: #a5a6aa;
}
.wrapperHeaderButtonSvgGrey2:disabled path,
.wrapperHeaderButtonSvgGrey2.disabled path {
    fill: #dcdee3;
}
.wrapperHeaderButtonSvg:not(:disabled):not(.disabled):hover path {
    fill: #2458d3;
}
.wrapperHeaderButtonSvgGreyDouble .st1 {
    fill: #dcdee3;
}
.wrapperHeaderButtonSvgGreyDouble:disabled .st1,
.wrapperHeaderButtonSvgGreyDouble.disabled .st1 {
    fill: #dcdee3;
}
.wrapperHeaderButtonSvgGreyDouble:not(:disabled):not(.disabled):hover .st1 {
    fill: #2458d3;
}
.wrapperHeaderUserCon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 10px;
    min-width: 0;
}
.wrapperHeaderUserLogo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.wrapperHeaderUserLogo svg,
.wrapperHeaderUserLogo img {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    display: block;
    margin: auto;
}
.wrapperHeaderUserName {
    overflow: hidden;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-left: 10px;
    font-size: 17px;
    line-height: 23px;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.wrapperHeaderItem.wrapperHeaderItemSearch {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.wrapperHeaderItem.wrapperHeaderItemSearch .wrapperHeaderSearchMain {
    display: none;
}
.wrapperHeaderItem.wrapperHeaderItemSearch.active .wrapperHeaderSearchMain {
    display: block;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.wrapperHeaderItem.wrapperHeaderItemSearch .wrapperHeaderSearchCall {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
}
.wrapperHeaderSearch {
    position: relative;
    width: 100%;
}
.wrapperHeaderItem.wrapperHeaderItemSearch.active .wrapperHeaderButtonSvgOne,
.wrapperHeaderItem.wrapperHeaderItemSearch .wrapperHeaderButtonSvgTwo {
    display: none;
}
.wrapperHeaderItem.wrapperHeaderItemSearch .wrapperHeaderButtonSvgOne,
.wrapperHeaderItem.wrapperHeaderItemSearch.active .wrapperHeaderButtonSvgTwo {
    display: block;
}
.wrapperHeaderSearchSubmit {
    overflow: hidden;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
}
.wrapperHeaderSearchSubmit .wrapperHeaderButtonSvg {
    position: relative;
    top: -3px;
    left: -3px;
}
.wrapperAsideTop {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}
.wrapperAsideBottom {
    margin-top: 7px;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}
.asideNavButton {
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    color: #5c5d60;
    border: 0;
    border-radius: 8px;
    background: #fff;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
nav .asideNavButton {
    font-weight: 600;
}
.asideNavButton:disabled,
.asideNavButton.disabled {
    text-decoration: none;
    color: #a5a6aa;
    cursor: default;
    background: #fff;
}
.asideNavButton:not(:disabled):not(.disabled):hover {
    text-decoration: none;
    color: #2458d3;
    background: #f6f8fd;
}
.asideNavButton:not(:disabled):not(.disabled):active {
    color: #2458d3;
    background: #eef2fc;
    box-shadow: 0 0 0 1px #eef2fc;
}
.asideNavButton + .asideNavButton {
    margin-top: 7px;
}
.asideNavButtonIcon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}
.asideNavButtonIcon svg,
.asideNavButtonIcon img {
    display: block;
    margin: auto;
    max-width: 20px;
    max-height: 20px;
}
.asideNavButton svg {
    transition: fill .15s ease-in-out;
}
.asideNavButton:disabled svg,
.asideNavButton.disabled svg {
    fill: #dcdee3;
}
.asideNavButtonIcon svg {
    fill: #5c5d60;
}
.asideNavButton:not(:disabled):not(.disabled):hover svg,
.asideNavButton:not(:disabled):not(.disabled):active svg,
.clickable-label:not(:disabled):not(.disabled):hover svg {
    fill: #2458d3;
}
.prro-header .clickable-label {
    display: inline;
}
.asideNavButtonText {
    overflow: hidden;
    width: 192px;
    transition: width .15s ease-in-out;
}
.asideNavButtonTextInside {
    display: block;
    padding-top: 1px;
    padding-left: 8px;
    width: 192px;
}
.asideNavButton.active {
    color: #FFFFFF;
    background: #2458D3;
}
.asideNavButton.active:not(:disabled):not(.disabled):hover {
    color: #2458d3;
    background: #e4ebfa;
}
.asideNavButton.active:not(:disabled):not(.disabled):active {
    color: #2458d3;
    background: #e4ebfa;
    box-shadow: 0 0 0 1px #e4ebfa;
}
.asideNavButton.active svg {
    fill: #FFFFFF;
}
.asideNavButton.active:not(:disabled):not(.disabled):hover svg,
.asideNavButton.active:not(:disabled):not(.disabled):active svg {
    fill: #2458D3;
}
@media (min-width: 768px) {
    .asideNavButtonIcon {
        width: 24px;
        height: 24px;
    }
    .asideNavButtonIcon svg,
    .asideNavButtonIcon img {
        max-width: 24px;
        max-height: 24px;
    }
    .wrapperHeader.navShort ~ .wrapperAside .asideNavButtonText {
        width: 0;
    }
    .wrapperHeaderSearchMain {
        margin-right: 5px;
        margin-left: 7px;
    }
    .wrapperHeaderSearch {
        margin: auto 0 auto auto;
        max-width: 431px;
    }
}
@media (max-width: 767.98px) {
    nav .asideNavButtonText {
        display: none;
    }
    .wrapperHeaderSearchMain {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        padding: 8px 15px;
        width: 100%;
        border-bottom: 1px solid #e5e7ec;
        background: #fff;
    }
}
@media (prefers-reduced-motion: reduce) {
    .wrapperHeaderButtonSvg,
    .wrapperHeaderButtonSvg path,
    .asideNavButton,
    .asideNavButtonIcon svg,
    .asideNavButtonText {
        transition: none !important;
    }
}


/*** Login !!!***/

.regMainBody {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin: auto;
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 13px 45px rgba(0, 0, 0, .1);
}
@media (min-width: 768px) {
    .regMainBody {
        padding: 34px;
        max-width: 740px;
    }
}
.loginMainBody {
    max-width: 400px;
}


/*** Breadcrumb ***/

.breadcrumb {
    padding: 0;
    color: #828488;
    border-radius: 0;
    background: 0;
}
.breadcrumb-item {
    padding-right: 12px;
}
.breadcrumb > .breadcrumb-item:last-child {
    padding-right: 0;
}
.breadcrumb-item svg {
    fill: #828488;
}
.breadcrumb-item a {
    color: #828488;
}
.breadcrumb-item a:hover {
    text-decoration: none;
    color: #2458d3;
}
.breadcrumb-item.active {
    color: #3c3d40;
}
.breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
}
.breadcrumb .breadcrumb-item:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 500px;
}
.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    vertical-align: baseline;
    position: relative;
    top: 1px;
    float: none;
    padding: 0;
    margin-right: 12px;
    width: 6px;
    height: 11px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='6' height='11' viewBox='0 0 6 11'%3e%3cpath fill='%23828488' d='M5.71,5.97l-4.67,4.67L0.1,9.7l4.2-4.2L0.1,1.3l0.94-0.94l4.67,4.67C5.97,5.29,5.97,5.71,5.71,5.97z'/%3e%3c/svg%3e");
    content: "";
}
.breadcrumbHomeIcon {
    position: relative;
    top: -1px;
    fill: #828488;
    transition: fill .15s ease-in-out;
}
.breadcrumb-item a:hover .breadcrumbHomeIcon,
.breadcrumb-item a:hover svg {
    fill: #2458d3;
}
@media (min-width: 768px) {
    .breadcrumb-item {
        padding-right: 20px;
    }
    .breadcrumb-item + .breadcrumb-item::before {
        margin-right: 20px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .breadcrumbHomeIcon {
        transition: none !important;
    }
}


/*** Font ***/

.h1 {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
}
.font16px {
    font-size: 16px;
    line-height: 22px;
}
.font18px {
    font-size: 16px;
    line-height: 22px;
}
.mainHeaderLine1Left .h1 {
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .h1 {
        font-size: 28px;
        line-height: 30px;
    }
    .font18px {
        font-size: 18px;
        line-height: 24px;
    }
}
@media (min-width: 1200px) {
    .h1 {
        font-size: 32px;
        line-height: 32px;
    }
}


/*** mainHeaderCon ***/

.mainHeaderCon {
    padding: 16px;
    background: #fff;
}
.buttonGrid1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: -5px;
    padding: 0;
    list-style: none;
}
.buttonGrid1 > li {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin: 5px;
}
.buttonGrid1 > li:empty {
    display: none;
}
.mainHeaderLine2 {
    display: -ms-flexbox;
    display: flex;
    margin-top: 16px;
    font-size: 16px;
    line-height: 22px;
    color: #5c5d60;
}
.mainHeaderLine2Left {
    flex: 0 0 auto;
    margin-right: 21px;
}
.mainHeaderLine2Right {
    flex: 0 1 auto;
}
.tableOuterHeader {
    margin-right: -16px;
    margin-left: -16px;
}

.dashboard-filter-accordion {
    transition: opacity .25s linear;
}

.dashboard-filter-accordion:has([data-expand-state="maximizing"]),
.dashboard-filter-accordion:has([data-expand-state="minimizing"]) {
    opacity: 0;
}

.dashboard-filter-accordion:has([data-expand-state="maximized"]),
.dashboard-filter-accordion:has([data-expand-state="minimizing"]) {
    position: absolute;
    top: 50px;
    z-index: 99999;
    background-color: white;
    height: 100%;
}

.wrapperHeader ~ .wrapperMain .dashboard-filter-accordion:has([data-expand-state="maximized"]),
.wrapperHeader ~ .wrapperMain .dashboard-filter-accordion:has([data-expand-state="minimizing"]) {
    width: calc(100% - 300px);
}

.wrapperHeader.navShort ~ .wrapperMain .dashboard-filter-accordion:has([data-expand-state="maximized"]),
.wrapperHeader.navShort ~ .wrapperMain .dashboard-filter-accordion:has([data-expand-state="minimizing"]) {
    width: calc(100% - 110px);
}

@media (min-width: 768px) {
    .mainHeaderCon {
        padding: 24px;
    }
    .mainHeaderLine1 {
        display: -ms-flexbox;
        display: flex;
    }
    .mainHeaderLine1.prro-header {
        align-items: center;
    }
    .mainHeaderLine1Left {
        margin-top: 3px;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        margin-right: 20px;
        gap: 10px;
        align-items: center;
    }
    .mainHeaderLine1Right {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 50%;
    }
    .buttonGrid1 {
        margin: -7px;
    }
    .buttonGrid1 > li {
        margin: 7px;
    }

    .buttonGrid1-dashboard > li {
        margin-right: 2px !important;
        margin-left: 2px !important;
    }
    .mainHeaderLine2 {
        margin-top: 21px;
    }
    .tableOuterHeader {
        margin-right: -24px;
        margin-left: -24px;
    }
    .mainHeaderLine1Right.fullwidth {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        max-width: initial;
    }
    .mainHeaderLine1Left.fullwidth {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .mainHeaderLine1Left button {
        border: 0;
        border-radius: 8px;
        width: 40px;
        height: 40px;
    }
}
@media (min-width: 1200px) {
    .mainHeaderCon {
        padding: 34px;
    }
    .buttonGrid1 {
        margin: -9px;
    }
    .buttonGrid1 > li {
        margin: 9px;
    }
    .mainHeaderLine1Left {
        margin-top: 4px;
    }
    .tableOuterHeader {
        margin-right: -34px;
        margin-left: -34px;
    }
}
@media (max-width: 767.98px) {
    .mainHeaderLine1Right {
        margin-top: 10px;
    }
}
.mainHeaderConGridButton {
    padding-bottom: 0px;
}
/*** Button !!!!!***/
a:focus, button:focus, input:focus {
    box-shadow: none;
}

.btn {
    padding: 8px 22px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #5c5d60;
    border: 0;
    border-radius: 8px;
    background: #fff;
}
.btn.disabled,
.btn:disabled {
    text-decoration: none;
    color: #a5a6aa;
    cursor: default;
    background: #fff;
}
.btn:focus {
    box-shadow: none;
}
.btn:not(:disabled):not(.disabled):hover {
    text-decoration: none;
    color: #2458d3;
    background: #f6f8fd;
}
.btn:not(:disabled):not(.disabled):active {
    color: #2458d3;
    background: #eef2fc;
    box-shadow: 0 0 0 1px #eef2fc;
}
.btnITCon {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 22px 8px 14px;
}
.btnITSoloCon {
    padding-right: 14px;
}
.btnBlock {
    display: block;
}
.btnITCon.btnBlock {
    display: -ms-flexbox;
    display: flex;
}
.btnIcon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}
.btnIcon svg,
.btnIcon img {
    display: block;
    flex: 0 1 auto;
    margin: auto;
    max-width: 20px;
    max-height: 20px;
}
.btnIcon svg {
    fill: #5c5d60;
}
.btn.disabled .btnIcon svg,
.btn:disabled .btnIcon svg {
    fill: #a5a6aa;
}
.btn:not(:disabled):not(.disabled):hover .btnIcon svg,
.btn:not(:disabled):not(.disabled):active .btnIcon svg {
    fill: #2458d3;
}
.btnText {
    flex: 0 1 auto;
    margin-left: 8px;
}
.btn-primary {
    color: #fff;
    background: #2458d3;
}
.btn-primary:disabled,
.btn-primary.disabled {
    color: #fff;
    background: #88a5e7;
}
.btn-primary:focus {
    box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled):focus {
    color: #fff;
    background: #2458d3;
}
.btn-primary:not(:disabled):not(.disabled):hover {
    color: #fff;
    background: #1f4db8;
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    color: #fff;
    background: #1a3f98;
    box-shadow: 0 0 0 1px #1a3f98;
}
.btn-primary .btnIcon svg,
.btn-primary.disabled .btnIcon svg,
.btn-primary:disabled .btnIcon svg,
.btn-primary:not(:disabled):not(.disabled):hover .btnIcon svg,
.btn-primary:not(:disabled):not(.disabled):active .btnIcon svg {
    fill: #fff;
}
.btn-light {
    color: #3c3d40;
    background: #eef0f4;
}
.btn-light:disabled,
.btn-light.disabled {
    color: #828488;
    background: #f2f4f9;
}
.btn-light:focus {
    box-shadow: none;
}
.btn-light:not(:disabled):not(.disabled):focus {
    color: #3c3d40;
    background: #eef0f4;
}
.btn-light:not(:disabled):not(.disabled):hover {
    color: #3c3d40;
    background: #e5e7ec;
}
.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled):active:focus {
    color: #3c3d40;
    background: #dcdee3;
    box-shadow: 0 0 0 1px #dcdee3;
}
.btn-light .btnIcon svg {
    fill: #3c3d40;
}
.btn-light.disabled .btnIcon svg,
.btn-light:disabled .btnIcon svg {
    fill: #828488;
}
.btn-light:not(:disabled):not(.disabled):hover .btnIcon svg,
.btn-light:not(:disabled):not(.disabled):active .btnIcon svg {
    fill: #3c3d40;
}
.btn-info {
    color: #fff;
    background: #86d1e1;
}
.btn-info:disabled,
.btn-info.disabled {
    color: #fff;
    background: #bee6ef;
}
.btn-info:focus {
    box-shadow: none;
}
.btn-info:not(:disabled):not(.disabled):focus {
    color: #fff;
    background: #86d1e1;
}
.btn-info:not(:disabled):not(.disabled):hover {
    color: #fff;
    background: #75b6c4;
}
.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled):active:focus {
    color: #fff;
    background: #6197a2;
    box-shadow: 0 0 0 1px #6197a2;
}
.btn-info .btnIcon svg,
.btn-info.disabled .btnIcon svg,
.btn-info:disabled .btnIcon svg,
.btn-info:not(:disabled):not(.disabled):hover .btnIcon svg,
.btn-info:not(:disabled):not(.disabled):active .btnIcon svg {
    fill: #fff;
}
.btnBlueText {
    color: #2458d3;
}
.btn-border-light {
    border: 1px solid rgba(117, 113, 126, 0.25);
    color: black;
}
.btn-border-light:not(:disabled):not(.disabled):hover {
    color: black;
}
.btnMinW140px {
    min-width: 140px;
}
.btn-copy {
    border: 0;
    border-radius: 8px;
}
.btn-block-divider {
    padding: 6px 0px;
    margin: 9px;
}
.btn-red {
    color: #fff;
    background: #EB4B59;
}
@media (min-width: 1200px) {
    .btn {
        padding: 10px 22px;
    }
    .btnITCon {
        padding: 8px 22px 8px 14px;
    }
    .btnITSoloCon {
        padding-right: 14px;
    }
    .btnIcon {
        width: 24px;
        height: 24px;
    }
}

/*** Dropdown ***/

.transparent-dropdown {
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/*** Initialize Update Prro Dialog ***/

.initialize-update-prro-dialog .card-header {
    padding: 0.4rem 1.25rem !important;
}

.initialize-update-prro-dialog .dxbs-fl .dxbs-fl-gd {
    margin-bottom: 0.125rem !important;
    margin-top: 0.125rem !important;
}

.initialize-update-prro-dialog .dxbs-fl-group > .card {
    border: none !important;
}

.initialize-update-prro-dialog .inputFloatLabelCon {
    -ms-flex-positive: 1;
    flex-grow: 1;
}

/*** Checkbox ***/

.dxbs-checkbox:not(.checkbox-select-all-within-listbox) > label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #797a7c;
}

.dxbs-checkbox:not(:disabled):not([readonly]):not(.checkbox-select-all-within-listbox):hover > label {
    color: #3c3d40;
}

/* displayed as readonly when disabled */
dxbl-check div .custom-control-input:disabled ~ .custom-control-label::before {
    opacity: 0.33;
}

.checkbox-select-all-within-listbox {
    padding-left: .5rem;
    padding-right: .5rem;
    height: 32px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #3c3d40;
    border-left: 1px solid #cacacb;
    border-right: 1px solid #cacacb;
}

.checkbox-select-all-within-listbox:has(~ .form-control.invalid) {
    border-color: #da291c;
}
/*** Table ***/

.table {
    color: #5c5d60;
}
.table td,
.table th {
    padding: 10px 24px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    border-top: 0;
    border-right: 1px solid #efeff4;
    border-left: 1px solid #efeff4;
    background-color: #fff;
}
.table td {
    font-size: 14px;
    line-height: 20px;
}
.table tr > td:first-child,
.table tr > td:last-child,
.table tr > th:first-child,
.table tr > th:last-child {
    border-right: 0;
    border-left: 0;
}
.table thead th {
    padding-top: 11px;
    padding-bottom: 11px;
    font-weight: 600;
    color: #3c3d40;
    border-bottom: 0;
}
.table tbody > tr:nth-child(2n + 1) td,
.table tbody > tr:nth-child(2n + 1) th {
    background-color: #fcfcfd;
}
.tableStyle2 td,
.tableStyle2 th {
    padding: 13px 24px;
    border: 1px solid #efeff4;
}
.tableStyle2 thead th {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    border-bottom: 2px solid #efeff4;
}
.tableStyle2 tbody td,
.tableStyle2 tbody th {
    font-size: 14px;
    line-height: 20px;
}
.tableStyle2 tr > td:first-child,
.tableStyle2 tr > td:last-child,
.tableStyle2 tr > th:first-child,
.tableStyle2 tr > th:last-child {
    border-right: 1px solid #efeff4;
    border-left: 1px solid #efeff4;
}
.tableStyle2 tbody > tr:nth-child(2n + 1) td,
.tableStyle2 tbody > tr:nth-child(2n + 1) th {
    background-color: #fff;
}
.bgGrey,
.table td.bgGrey,
.table th.bgGrey,
.table tbody > tr:nth-child(2n + 1) td.bgGrey,
.table tbody > tr:nth-child(2n + 1) th.bgGrey,
.tableColumnGrey1 tbody > tr td:nth-child(1),
.tableColumnGrey1 tbody > tr th:nth-child(1),
.tableColumnGrey1 tbody > tr:nth-child(2n + 1) td:nth-child(1),
.tableColumnGrey1 tbody > tr:nth-child(2n + 1) th:nth-child(1),
.tableColumnGrey2 tbody > tr td:nth-child(2),
.tableColumnGrey2 tbody > tr th:nth-child(2),
.tableColumnGrey2 tbody > tr:nth-child(2n + 1) td:nth-child(2),
.tableColumnGrey2 tbody > tr:nth-child(2n + 1) th:nth-child(2) {
    background-color: #fcfcfd;
}
.tableCheckboxCon {
    text-align: center;
}
.tableCheckboxCon .tableCheckbox {
    display: block;
    margin: auto;
}
.textSwitchCon {
    display: -ms-flexbox;
    display: flex;
}
.textSwitchText {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-top: 2px;
}
.textSwitchDots {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 5px;
}
.textSwitchDotsBtn {
    display: block;
    padding: 0;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 0;
    background: none;
}
.textSwitchDotsBtn svg {
    fill: #5c5d60;
}
.textSwitchDotsBtn:focus svg,
.textSwitchDotsBtn:hover svg {
    fill: #2458d3;
}
.textSwitchSwitch {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 5px;
}
.custom-switch.custom-switch-noText {
    padding-left: 1.75rem;
}
.custom-switch.custom-switch-noText .custom-control-label::before {
    left: -1.75rem;
}
.custom-switch.custom-switch-noText .custom-control-label::after {
    left: calc(-1.75rem + 2px);
}
.custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}
.custom-control-label::before,
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #e4e4e5 !important;
    background-color: #e4e4e5 !important;
}
.custom-control-input:checked ~ .custom-control-label::before {
    border-color: #007bff !important;    
    background-color: #007bff !important;
}
.custom-switch .custom-control-label::after {
    background-color: #fff;
}
.text-600 {
    font-weight: 600 !important;
}


/*** inputFloatLabelCon ***/

.posRel, .posRel .dxbs-fl-ctrl {
    position: relative;
}
.dxbs-listbox.dxbs-listbox-single-column.dxbs-dm.dxbs-grid-vsd {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}
.form-control {
    padding: 5px 11px;
    height: 32px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #3c3d40;
    border-color: #cacacb;
    border-radius: 6px;
}
.form-control.form-control-search {
    padding-right: 35px;
    height: 34px;
}
.form-control:hover {
    border-color: #3c3d40;
}

.inputFloatLabelCon > .dxbs-combobox.prro-drop-down-open input.form-control,
.form-control:focus {
    border-color: #2458d3;
    box-shadow: 0 0 0 1px #2458d3;
}

.inputFloatLabelLabel {
    z-index: 3;
    position: absolute;
    top: 6px;
    left: 7px;
    margin: 0;
    padding: 0 4px;
    max-width: calc(100% - 16px);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #797a7c;
    background: #fff;
    min-width: 75%;
    transition: min-width .15s linear, color .15s ease-in-out, top .15s ease-in-out, left .15s ease-in-out, font-size .15s ease-in-out, line-height .15s ease-in-out, font-weight .15s ease-in-out;
}
.form-control:disabled ~ .inputFloatLabelLabel,
.form-control[readonly] ~ .inputFloatLabelLabel {
    color: #a5a6aa !important;
}
.form-control:not(:disabled):not([readonly]):hover ~ .inputFloatLabelLabel {
    color: #3c3d40;
}

.inputFloatLabelCon > .dxbs-combobox.prro-drop-down-open ~ .inputFloatLabelLabel,
.inputFloatLabelCon > .dxbs-combobox:has(.form-control:not(:disabled):focus) ~ .inputFloatLabelLabel,
.inputFloatLabelCon:has(.form-control:not(:disabled):not([readonly]):focus) > .inputFloatLabelLabel,
.form-control:not(:disabled):not([readonly]):focus ~ .inputFloatLabelLabel {
    color: #2458d3;
}
.form-control:focus ~ .inputFloatLabelLabel,
.form-control:not(:placeholder-shown) ~ .inputFloatLabelLabel {
    top: -7px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    min-width: 0;
}
.form-control::-webkit-input-placeholder {
    font-weight: 400;
    color: #797a7c;
}
.form-control::-moz-placeholder {
    font-weight: 400;
    color: #797a7c;
}
.form-control:-ms-input-placeholder {
    font-weight: 400;
    color: #797a7c;
}
.form-control::-ms-input-placeholder {
    font-weight: 400;
    color: #797a7c;
}
.form-control::placeholder {
    font-weight: 400;
    color: #797a7c;
}
.form-control:disabled::-webkit-input-placeholder {
    color: #a5a6aa;
}
.form-control:disabled::-moz-placeholder {
    color: #a5a6aa;
}
.form-control:disabled:-ms-input-placeholder {
    color: #a5a6aa;
}
.form-control:disabled::-ms-input-placeholder {
    color: #a5a6aa;
}
.form-control:disabled::placeholder {
    color: #a5a6aa;
}
.form-control[readonly]::-webkit-input-placeholder {
    color: #a5a6aa;
}
.form-control[readonly]::-moz-placeholder {
    color: #a5a6aa;
}
.form-control[readonly]:-ms-input-placeholder {
    color: #a5a6aa;
}
.form-control[readonly]::-ms-input-placeholder {
    color: #a5a6aa;
}
.form-control[readonly]::placeholder {
    color: #a5a6aa;
}
.inputFloatLabelCon .form-control:not(.dxbs-date-edit-input)::-webkit-input-placeholder {
    opacity: 0;
}
.inputFloatLabelCon .form-control:not(.dxbs-date-edit-input)::-moz-placeholder {
    opacity: 0;
}
.inputFloatLabelCon .form-control:not(.dxbs-date-edit-input):-ms-input-placeholder {
    opacity: 0;
}
.inputFloatLabelCon .form-control:not(.dxbs-date-edit-input)::-ms-input-placeholder {
    opacity: 0;
}
.inputFloatLabelCon .form-control:not(.dxbs-date-edit-input)::placeholder {
    opacity: 0;
}
.formHelperText {
    margin-top: 2px;
    padding-left: 12px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: #797a7c;
}
.form-control:disabled ~ .formHelperText,
.form-control[readonly] ~ .formHelperText {
    color: #a5a6aa;
}

.form-control.form-controlIconLeft {
    padding-left: 35px;
}
.form-control.form-controlIconLeft ~ .inputFloatLabelLabel {
    left: 31px;
    max-width: calc(100% - 39px);
}
.form-control.form-controlIconRight {
    padding-right: 35px;
}
.form-control.form-controlIconRight ~ .inputFloatLabelLabel {
    max-width: calc(100% - 39px);
}
.form-control.form-controlIconLeft:focus ~ .inputFloatLabelLabel,
.form-control.form-controlIconLeft:not(:placeholder-shown) ~ .inputFloatLabelLabel,
.form-control.form-controlIconLeft:focus ~ .inputFloatLabelLabel,
.form-control.form-controlIconLeft:not(:placeholder-shown) ~ .inputFloatLabelLabel {
    left: 7px;
}
.formControlIcon {
    display: none;
}
.form-control.form-controlIconLeft ~ .formControlIcon,
.form-control.form-controlIconRight ~ .formControlIcon {
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 8px;
    width: 16px;
    height: 16px;
}
.form-control.form-controlIconLeft ~ .formControlIcon {
    left: 12px;
}
.form-control.form-controlIconRight ~ .formControlIcon {
    right: 12px;
}
.formControlIcon svg {
    fill: #828488;
    transition: fill .15s ease-in-out;
}
.formControlIcon svg,
.formControlIcon img {
    display: block;
    flex: 0 1 auto;
    margin: auto;
    max-width: 16px;
    max-height: 16px;
}
.form-control:disabled ~ .formControlIcon svg,
.form-control[readonly] ~ .formControlIcon svg {
    fill: #a5a6aa;
}
.form-control:not(:disabled):not([readonly]):hover ~ .formControlIcon svg {
    fill: #3c3d40;
}
.form-control:not(:disabled):not([readonly]):focus ~ .formControlIcon svg {
    fill: #2458d3;
}
.dxbs-input-group.input-group input.form-control {
    padding-left: 11px !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

.dxbs-combobox.valid .dxbs-input-group input.form-control[readonly],
.dxbs-combobox.valid .dxbs-input-group textarea.form-control[readonly],
.dxbs-combobox.valid.dxbs-tagbox .form-control[readonly],
.valid.modified .dxbs-input-group input.form-control,
.valid.modified .dxbs-input-group textarea.form-control,
.valid.modified.dxbs-tagbox .form-control {
    border-color: #cacacb;
}
/*.dxbs-combobox.valid .dxbs-input-group input.form-control[readonly]:hover,
.dxbs-combobox.valid .dxbs-input-group textarea.form-control[readonly]:hover,
.dxbs-combobox.valid.dxbs-tagbox .form-control[readonly]:hover,*/
.valid.modified .dxbs-input-group input.form-control:hover,
.valid.modified .dxbs-input-group textarea.form-control:hover,
.valid.modified.dxbs-tagbox .form-control:hover {
    border-color: #3c3d40;
}
.dxbs-combobox.valid .dxbs-input-group input.form-control[readonly]:focus,
.dxbs-combobox.valid .dxbs-input-group textarea.form-control[readonly]:focus,
.dxbs-combobox.valid.dxbs-tagbox .form-control[readonly]:focus,
.valid.modified .dxbs-input-group input.form-control:focus,
.valid.modified .dxbs-input-group textarea.form-control:focus,
.valid.modified.dxbs-tagbox .form-control:focus {
    border-color: #2458d3;
    }
.dxbs-combobox .inputFloatLabelLabel {
    color: #3c3d40;
}
.dxbs-combobox .form-control:disabled ~ .inputFloatLabelLabel,
.dxbs-combobox .form-control[readonly] ~ .inputFloatLabelLabel {
    color: #a5a6aa !important;
}
.dxbs-combobox:has(button:not([disabled])) .form-control[readonly]:not(:disabled),
.dxbs-combobox .form-control:not(:disabled):not([readonly]):hover ~ .inputFloatLabelLabel {
    color: #3c3d40;
}
.dxbs-combobox .form-control:not(:disabled):not([readonly]):focus ~ .inputFloatLabelLabel {
    color: #2458d3;
}
div.dxbs-btn-group.dxbs-input-group-append > .btn.dx-btn:not(.dxbs-editor-clear-btn).btn,
div.dxbs-btn-group.dxbs-input-group-prepend > .btn.dx-btn.btn {
    border-radius: 0 5px 5px 0;
}
.mask-input ~ .inputFloatLabelLabel,
.dxbs-textbox.modified ~ .inputFloatLabelLabel,
.dxbs-combobox.prro-drop-down-open ~ .inputFloatLabelLabel,
.dxbs-combobox:has(input:not(:placeholder-shown)) ~ .inputFloatLabelLabel,
.dxbs-combobox[is-dropdown-open] ~ .inputFloatLabelLabel,
.dxbs-date-time-edit:has(input:focus) ~ .inputFloatLabelLabel,
.dxbs-date-time-edit:has(input:not(:placeholder-shown)) ~ .inputFloatLabelLabel,
.dxbs-date-time-edit[is-dropdown-open] ~ .inputFloatLabelLabel,
.dxbs-spin-edit:has(input:focus) ~ .inputFloatLabelLabel,
.dxbs-spin-edit:has(input:not(:placeholder-shown)) ~ .inputFloatLabelLabel,
.dxbs-spin-edit[is-dropdown-open] ~ .inputFloatLabelLabel {
    top: -7px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    min-width: 0;
}
.dxbs-combobox ~ .inputFloatLabelLabel {
    max-width: calc(100% - 35px);
}
.dxbs-date-time-edit.invalid ~ .formHelperText,
.dxbs-spin-edit.invalid ~ .formHelperText,
.dxbs-combobox.invalid ~ .formHelperText,
.dxbs-textbox.invalid ~ .formHelperText,
.dxbs-date-time-edit.input-validation-error ~ .formHelperText,
.dxbs-spin-edit.input-validation-error ~ .formHelperText,
.dxbs-textbox.input-validation-error ~ .formHelperText,
.dxbs-combobox.input-validation-error ~ .formHelperText {
    color: #da291c;
}
.dxbs-date-time-edit.invalid .form-control:focus,
.dxbs-spin-edit.invalid .form-control:focus,
.dxbs-combobox.invalid .form-control:focus,
.dxbs-textbox.invalid .form-control:focus {
    box-shadow: 0 0 0 1px #da291c;
}

.dxbs-date-time-edit ~ .inputFloatLabelLabel, .dxbs-combobox ~ .inputFloatLabelLabel, .dxbs-spin-edit ~ .inputFloatLabelLabel {
    pointer-events: none;
}
.form-control:disabled,
.form-control[readonly] {
    color: #a5a6aa;
    border-color: #dcdee3;
    background-color: #fff;
}
select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' viewBox='0 0 7 4'%3e%3cpolygon fill='%23828488' points='0.17,0.33 3.5,3.67 6.83,0.33'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 7px 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: background-image .15s ease-in-out;
}
select.form-control {
    padding-right: 30px;
}
select.form-control:disabled,
select.form-control[readonly] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' viewBox='0 0 7 4'%3e%3cpolygon fill='%23a5a6aa' points='0.17,0.33 3.5,3.67 6.83,0.33'/%3e%3c/svg%3e");
}
select.form-control:not(:disabled):not([readonly]):focus,
select.form-control:not(:disabled):not([readonly]):hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' viewBox='0 0 7 4'%3e%3cpolygon fill='%233c3d40' points='0.17,0.33 3.5,3.67 6.83,0.33'/%3e%3c/svg%3e");
}
select.form-control .inputFloatLabelLabel {
    top: -7px;
    max-width: calc(100% - 35px);
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    min-width: 0;
}
.form-control.invalid,
.was-validated .form-control:invalid {
    padding-right: 11px;
    background-image: none;
}
select.form-control.invalid,
select.was-validated .form-control:invalid {
    padding-right: 30px;
}
.form-control.invalid,
.was-validated .form-control:invalid,
.form-control.input-validation-error {
    border-color: #da291c;
}
.form-control.invalid:focus,
.was-validated .form-control:invalid:focus,
.form-control.input-validation-error:focus {
    box-shadow: 0 0 0 1px #da291c;
}
.form-control.invalid ~ .formHelperText,
.was-validated .form-control:invalid ~ .formHelperText,
.form-control.input-validation-error ~ .formHelperText {
    color: #da291c;
}

.inputFloatLabelCon > .dxbs-combobox.invalid:has(.form-control:not(:disabled):focus) ~ .inputFloatLabelLabel,
.inputFloatLabelCon > .invalid:has(.form-control:not(:disabled):not([readonly]):focus) ~ .inputFloatLabelLabel,
.form-control.invalid.form-controlIconLeft:not(:placeholder-shown) ~ .inputFloatLabelLabel,
.was-validated .form-control.form-controlIconLeft:not(:placeholder-shown):invalid ~ .inputFloatLabelLabel,
.form-control.input-validation-error.form-controlIconLeft:not(:placeholder-shown) ~ .inputFloatLabelLabel,
.form-control.invalid.form-controlIconLeft:not(:placeholder-shown):not(:disabled):not([readonly]):hover ~ .inputFloatLabelLabel,
.f.was-validated .form-control.form-controlIconLeft:not(:placeholder-shown):invalid:not(:disabled):not([readonly]):hover ~ .inputFloatLabelLabel,
.form-control.input-validation-error.form-controlIconLeft:not(:placeholder-shown):not(:disabled):not([readonly]):hover ~ .inputFloatLabelLabel,
.form-control.invalid.form-controlIconLeft:not(:placeholder-shown):not(:disabled):not([readonly]):focus ~ .inputFloatLabelLabel,
.f.was-validated .form-control.form-controlIconLeft:not(:placeholder-shown):invalid:not(:disabled):not([readonly]):focus ~ .inputFloatLabelLabel,
.form-control.input-validation-error.form-controlIconLeft:not(:placeholder-shown):not(:disabled):not([readonly]):focus ~ .inputFloatLabelLabel,
.form-control.invalid.form-controlIconRight:not(:placeholder-shown) ~ .inputFloatLabelLabel,
.was-validated .form-control.form-controlIconRight:not(:placeholder-shown):invalid ~ .inputFloatLabelLabel,
.form-control.input-validation-error.form-controlIconRight:not(:placeholder-shown) ~ .inputFloatLabelLabel,
.form-control.invalid.form-controlIconRight:not(:placeholder-shown):not(:disabled):not([readonly]):hover ~ .inputFloatLabelLabel,
.f.was-validated .form-control.form-controlIconRight:not(:placeholder-shown):invalid:not(:disabled):not([readonly]):hover ~ .inputFloatLabelLabel,
.form-control.input-validation-error.form-controlIconRight:not(:placeholder-shown):not(:disabled):not([readonly]):hover ~ .inputFloatLabelLabel,
.form-control.invalid.form-controlIconRight:not(:placeholder-shown):not(:disabled):not([readonly]):focus ~ .inputFloatLabelLabel,
.f.was-validated .form-control.form-controlIconRight:not(:placeholder-shown):invalid:not(:disabled):not([readonly]):focus ~ .inputFloatLabelLabel,
.form-control.input-validation-error.form-controlIconRight:not(:placeholder-shown):not(:disabled):not([readonly]):focus ~ .inputFloatLabelLabel,
.form-control.invalid:not(:disabled):not([readonly]):not(:placeholder-shown):hover ~ .inputFloatLabelLabel,
.f.was-validated .form-control:invalid:not(:disabled):not([readonly]):not(:placeholder-shown):hover ~ .inputFloatLabelLabel,
.form-control.input-validation-error:not(:disabled):not([readonly]):not(:placeholder-shown):hover ~ .inputFloatLabelLabel,
.form-control.invalid:not(:disabled):not([readonly]):focus ~ .inputFloatLabelLabel,
.f.was-validated .form-control:invalid:not(:disabled):not([readonly]):focus ~ .inputFloatLabelLabel,
.form-control.input-validation-error:not(:disabled):not([readonly]):focus ~ .inputFloatLabelLabel {
    color: #da291c;
}
.form-control.invalid ~ .formControlIcon svg,
.was-validated .form-control:invalid ~ .formControlIcon svg,
.form-control.input-validation-error ~ .formControlIcon svg,
.form-control.invalid:not(:disabled):not([readonly]):hover ~ .formControlIcon svg,
.f.was-validated .form-control:invalid:not(:disabled):not([readonly]):hover ~ .formControlIcon svg,
.form-control.input-validation-error:not(:disabled):not([readonly]):hover ~ .formControlIcon svg,
.form-control.invalid:not(:disabled):not([readonly]):focus ~ .formControlIcon svg,
.f.was-validated .form-control:invalid:not(:disabled):not([readonly]):focus ~ .formControlIcon svg,
.form-control.input-validation-error:not(:disabled):not([readonly]):focus ~ .formControlIcon svg {
    fill: #da291c;
}

select.form-control.invalid,
.was-validated select.form-control:invalid {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='7' height='4' viewBox='0 0 7 4'%3e%3cpolygon fill='%23828488' points='0.17,0.33 3.5,3.67 6.83,0.33'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 7px 4px;
}
.invalid-feedback,
.field-validation-error {
    margin-top: 2px;
    padding-left: 12px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: #da291c;
}

@media (prefers-reduced-motion: reduce) {
    .inputFloatLabelLabel,
    .formControlIcon svg,
    select.form-control {
        transition: none !important;
    }
}

.form-control-listbox-under {
    z-index: 2;
    position: relative;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.form-control-listbox-under ~ .dxbs-listbox {
    z-index: 1;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.form-control-listbox-under.form-controlIconLeft ~ .inputFloatLabelLabel {
    left: 7px;
}

.form-control-listbox-under:has(~ .form-control.invalid) {
    border-color: #da291c;
}

.dxbs-listbox.valid,
.dxbs-listbox.valid.modified {
    border-color: #cacacb;
}

.dxbs-fl .row {
    margin-left: -15px;
    margin-right: -15px;
}

.prro-info-container {
    margin-top: 24px;
}

.prro-info-container table {
    width: 100%;
    border-collapse: collapse;
}

.prro-info-container td {
    vertical-align: middle;
    height: 38px;
}

.prro-info-container td:first-child,
.prro-info-container td:nth-child(3) {
    font-weight: 600;
    color: #333;
    width: 20%;
    white-space: nowrap;
}

.prro-info-container td:nth-child(2),
.prro-info-container td:nth-child(4) {
    width: 30%;
    color: #555;
    word-break: break-word;
}

.prro-info-container td button {
    height: 36px;
    width: 36px;
    margin-left: 5px;
}

.prro-info-container td text {
    display: block;
    width: 90%;
}

.prro-table .card {
    border-radius: 0px;
    border-color: #efeff4;
    border-left: 0px;
    border-right: 0px;
}

.prro-tabs-container .nav-tabs {
    border: none;
}

.prro-tabs-container .nav {
    gap: 10px;
}

.prro-tabs-container .nav-tabs .nav-item {
    padding: 0 1rem 0 1rem;
}

.prro-tabs-container .nav-tabs .nav-link {
    color: black;
    border: none;
    background-color: transparent;
    border-bottom: 3px solid transparent;
    padding: .5rem 0 .5rem 0;
}

.prro-tabs-container .nav-tabs .nav-link span {
    padding: 0 5px;
}

.prro-tabs-container .nav-tabs .nav-link:hover {
    color: black;
    border: none;
    background-color: transparent;
    border-bottom: 3px solid #2458D3;
}

.prro-tabs-container .nav-tabs .nav-link.active {
    border: none;
    background-color: transparent;
    border-bottom: 3px solid #2458D3;
    font-weight: bold;
}

.dxbs-grid .dxbs-grid-table > * > tr > th:not(.dxbs-grid-header-indent-cell):not(.dxbs-grid-empty-header), .dxbs-grid .dxbs-grid-table > * > tr > td:not(.dxbs-grid-indent-cell):not(.dxbs-grid-expand-button-cell):not(.dxbs-grid-empty-cell):not(.dxbs-grid-empty-data):not(.dxbs-grid-edit-form):not(.dxbs-grid-detail-cell) {
    padding: 10px 24px;
    border-right: 1px solid #efeff4;
    border-left: 1px solid #efeff4;
}
.prro-table tbody > tr:nth-child(2n + 1) td
{
    background: #fcfcfd;
}
font.history-old {
    color: red;
}
font.history-new {
    color: green;
}
.dxbs-grid .dxbs-grid-table > thead .dxbs-grid-header-row > th:not(.dxbs-grid-empty-cell) {
    background-color: #fff;
}

.grid-warning-row > td:first-child {
    position: relative;
    border-radius: 8px;
}

.grid-warning-row > td:first-child::before {
    background: #fbbb5e;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    content: "";
}

.home-counter-block {
    padding: 26px 34px;
}
.home-counter-block span {
    font-family: "Proxima Nova";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
}
.home-counter-block .card-counter {
    margin-left: 11px;
    font-weight: 400;
    color: rgba(32, 33, 36, 0.54);
}

.underline-text-onhover:hover {
    text-decoration: underline;
    cursor: pointer;
}

.pointer-events-none {
    pointer-events: none;
}

.listbox-height {
    overflow-x: auto !important;
    overflow-y: auto !important;
}

/*** Modal ***/

#accept-dialog-v2-modal > div {
    border-radius: 24px;
}

#popup-confirm-v2-modal > div {
    border-radius: 24px;
}

.dialog-v2-header {
    padding: 14px 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dialog-v2-title {
    font-size: 22px;
    font-weight: bold;
    max-width: 70%;
    line-height: 20px;
}

.dialog-v2-body {
    padding: 14px 34px;
}

.dialog-v2-body-text {
    color: #5E5A66;
    font-size: 18px;
    line-height: 20px;
}

.dialog-v2-footer {
    padding: 14px 34px;
}

.modal-content {
    padding-top: 10px;
    padding-bottom: 10px;
    border: 0;
    border-radius: 0;
}
.modal-header {
    padding: 10px 20px;
    border-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    /* Title/32px_bold */

    font-family: 'Proxima Nova';
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 32px !important;
    line-height: 100% !important;
    /* identical to box height, or 32px */
    /* System Black/Black_100% */
    background-color: transparent !important;
    color: #202124 !important;
}
.modal-headerLeft {
    padding-top: 3px;
}
.modal-header .h1 {
    margin-bottom: 0;
}
.modal-footer {
    justify-content: center;
    background-color: transparent !important;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

    .modal-footer button {
        min-width: 142px;
    }
.modal-body {
    padding: 10px 20px;
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #202124;
}
@media (min-width: 992px) {
    .modal-lg {
        max-width: 740px;
    }
    .modal-headerLeft {
        flex: 0 1 auto;
    }
    .modal-headerRight {
        flex: 0 0 auto;
        max-width: 60%;
    }
}
@media (min-width: 1200px) {
    .modal-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .modal-header {
        padding: 14px 34px !important;
    }
    .modal-headerLeft {
        padding-top: 4px;
    }
    .modal-body {
        padding: 14px 34px;
    }
}
@media (max-width: 991.98px) {
    .modal-header {
        display: block;
        position: relative;
    }
    .modal-headerLeft {
        padding-right: 68px;
        margin-bottom: 14px;
        min-height: 36px;
    }
    .modalCloseCon,
    .buttonGrid1 > li.modalCloseCon {
        position: absolute;
        top: 10px;
        right: 20px;
        margin: 0;
    }
}
@media (max-width: 767.98px) {
    .modal-headerLeft {
        margin-bottom: 10px;
    }
}
.modal-header .modal-header-label {
    color: #202124;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
}

.jumbotron {
    margin-bottom: 0;
    border: 0;
    border-radius: 9px;
}

.modal-subtitle {
    padding: 0px 15px;
    width: 100%;
    color: #75717E;
    font-size: 17px;
    text-align: justify;
}


/*** Setting Main ***/

.settingMainLine {
    font-size: 16px;
    line-height: 22px;
}
.settingMainLineBox + .settingMainLineBox {
    margin-top: 16px;
}
.settingMainInputLine ~ .formHelperText {
    color: #da291c;
}
.settingMainInputLine {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.settingMainInputLineLeft {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 77px;
}
.settingMainInputLineRight {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-left: 16px;
}
.grid-banks {
    height: 250px;
}
@media (min-width: 768px) {
    .settingMainLine {
        font-size: 18px;
        line-height: 24px;
    }
}
@media (min-width: 1200px) {
    .settingMainLine {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .settingMainLineLeft {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 330px;
    }
    .settingMainLineRight {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: stretch;
        align-items: stretch;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        margin-left: 100px;
    }
    .settingMainLineBox {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-height: 44px;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .settingMainLineBoxFlex {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
    .settingBankGrid {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 500px;
    }
}
@media (max-width: 1199.98px) {
    .settingMainLineRight {
        margin-top: 16px;
    }
}
@media (max-width: 1500px) {
    .settingTaxLine {
        width: 75% !important;
    }
}


/*** Notification Block ***/

.boxStyle2 {
    padding: 16px;
    background: #fff;
}
.boxStyle3 {
    padding: 16px;
    background: #fff;
}
.borderTop1 {
    border-top: 1px solid #f2f4f9;
}
.row.rowSize3 {
    margin-right: -.5rem;
    margin-left: -.5rem;
}
.row.rowSize3 > * {
    padding-right: .5rem;
    padding-left: .5rem;
}
.boxStyle3Col {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.boxStyle3Col > .boxStyle3 {
    flex: 1 1 auto;
}
.font-weight-semibold {
    font-weight: 600 !important;
}
@media (min-width: 768px) {
    .boxStyle2 {
        padding: 24px 20px;
    }
    .boxStyle3 {
        padding: 20px;
    }
}
@media (min-width: 1200px) {
    .boxStyle2 {
        padding: 34px 20px;
    }
}

/*! notificationMainList */
.notificationMainList {
    margin: 0;
    padding: 0;
    list-style: none;
}
.notificationMainListBox {
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    padding: 12px 24px 12px 12px;
    border-radius: 8px;
    background: #fcfcfd;
}
.notificationMainListBox.notificationMainListBoxNew {
    background: #f6f8fd;
}
.notificationMainListBox + .notificationMainListBox {
    margin-top: 5px;
}
.notificationMainListBox::before {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    content: "";
}
.notificationMainListIcon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
}
.notificationMainListIcon svg {
    fill: #b9de7d;
}
.notificationMainListContent {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.notificationMainListIcon + .notificationMainListContent {
    margin-left: 8px;
}
.notificationMainListContentTitle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}
.notificationMainListContentTitleLeft {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.notificationMainListContentTitleRight {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 10px;
}
.notificationMainListBoxNew .notificationMainListContentTitle {
    font-weight: 700;
}
.notificationMainListContentText {
    margin-top: 4px;
}
.notificationMainListBoxRed::before {
    background: #f58686;
}
.notificationMainListBoxGreen::before {
    background: #b9de7d;
}
.notificationMainListBoxRed .notificationMainListIcon svg {
    fill: #f58686;
}
.notificationMainListIconRed svg {
    fill: #f58686;
}
.notificationMainListBoxGreen .notificationMainListIcon svg {
    fill: #b9de7d;
}
.notificationMainListBoxOrange::before {
    background: #fbbb5e;
}
.notificationMainListBoxOrange .notificationMainListIcon svg {
    fill: #fbbb5e;
}
.notificationMainListContentTitleRight .iconblock {
    display: flex;
    margin-left: 10px;
}
/*! tableStyle3 */
.table.tableStyle3 {
    margin-bottom: 0;
}
.table.tableStyle3 td,
.table.tableStyle3 th {
    padding: 6px 10px;
}
.table.tableStyle3 tbody > tr:nth-child(2n + 1) td,
.table.tableStyle3 tbody > tr:nth-child(2n + 1) th {
    background: #fff;
}
.table.tableStyle3 thead > tr:first-child td,
.table.tableStyle3 thead > tr:first-child th,
.table.tableStyle3 tbody > tr:first-child td,
.table.tableStyle3 tbody > tr:first-child th {
    padding-top: 0;
}
.table.tableStyle3 thead > tr:last-child td,
.table.tableStyle3 thead > tr:last-child th,
.table.tableStyle3 tbody > tr:last-child td,
.table.tableStyle3 tbody > tr:last-child th {
    padding-bottom: 0;
}
.table.tableStyle3 thead > tr td:first-child,
.table.tableStyle3 thead > tr th:first-child,
.table.tableStyle3 tbody > tr td:first-child,
.table.tableStyle3 tbody > tr th:first-child {
    padding-left: 0;
}
.table.tableStyle3 thead > tr td:last-child,
.table.tableStyle3 thead > tr th:last-child,
.table.tableStyle3 tbody > tr td:last-child,
.table.tableStyle3 tbody > tr th:last-child {
    text-align: right;
    padding-right: 0;
    font-weight: 600;
}

/*! tableStyle4 */

.table-layout-fixed {
    table-layout: fixed;
}

.tableTitle1 {
    padding: 14px 24px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
}
.table.tableStyle4 {
    margin-bottom: 0;
}
.table.tableStyle4 td,
.table.tableStyle4 th {
    border: 1px solid #efeff4;
}
.table.tableStyle4 tr > td:first-child,
.table.tableStyle4 tr > td:last-child,
.table.tableStyle4 tr > th:first-child,
.table.tableStyle4 tr > th:last-child {
    border-right: 1px solid #efeff4;
    border-left: 1px solid #efeff4;
}
.table.tableStyle4 td,
.table.tableStyle4 th {
    padding: 10px 12px 10px 24px;
}

/*! tableStyleBorderPartialNone1 */
.tableStyleBorderPartialNone1 thead > tr:last-child td,
.tableStyleBorderPartialNone1 thead > tr:last-child th,
.tableStyleBorderPartialNone1 tbody > tr:last-child td,
.tableStyleBorderPartialNone1 tbody > tr:last-child th {
    border-bottom: 0 !important;
}
.tableStyleBorderPartialNone1 thead > tr td:first-child,
.tableStyleBorderPartialNone1 thead > tr th:first-child,
.tableStyleBorderPartialNone1 tbody > tr td:first-child,
.tableStyleBorderPartialNone1 tbody > tr th:first-child {
    border-left: 0 !important;
}
.tableStyleBorderPartialNone1 thead > tr td:last-child,
.tableStyleBorderPartialNone1 thead > tr th:last-child,
.tableStyleBorderPartialNone1 tbody > tr td:last-child,
.tableStyleBorderPartialNone1 tbody > tr th:last-child {
    border-right: 0 !important;
}

/*! wraperLoginBg */
.wrapperLogin {
    background: #b7d6f5;
}
.regMainIconCon {
    text-align: center;
}
.regMainIcon {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    margin: auto;
}
.regMainIcon svg {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    height: auto;
}
.regMainIconUnderground {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 4px;
    padding-right: 50px;
}
.regMainIconText {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #0d518c;
}
.regMainIconWho {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-top: 4px;
    margin-left: 7px;
}
.regMainMove {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.regMainIcon:not(.regMainIconSolo) .regMainIconSvg {
    max-width: 519px;
}
.regMainIcon:not(.regMainIconSolo) .regMainIconWho {
    max-width: 108px;
}
.regMainIcon:not(.regMainIconSolo) .regMainIconUnderground {
    margin-top: 3px;
    padding-right: 41px;
}
.wrapperBlueFone {
    background: #b7d6f5 center center url("../img/bg1_2.jpg") no-repeat;
}

@media (min-width: 992px) {
    .wrapperLogin {
        background: #b7d6f5 center center url("../img/bg1_2.jpg") no-repeat;
        background-size: cover;
    }
    .wrapperLogin.wraperLoginBg2 {
        background-image: url("../img/bg1_2.jpg");
    }
    .wraperLoginBg2 .regMainMove {
        margin-right: auto;
        margin-left: auto;
        width: 100%;
        max-width: 740px;
    }
    .wraperLoginBg2 .regMainMove .regMainBody {
        margin-left: 0;
    }
    .wrapperLogin.wraperLoginBg2 .regMainMove {
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    }
    .wraperLoginBg2 .regMainIconCon {
        text-align: left;
    }
    .wraperLoginBg2 .regMainIcon {
        display: block;
    }
}
@media (min-width: 1200px) {
    .wraperLoginBg2 .regMainMove {
        max-width: 1048px;
    }
}
@media (max-width: 767.98px) {
    .regMainIcon svg {
        display: block;
        width: auto;
        height: auto;
        max-width: 100%;
    }
}


/*** wrapperHeaderDropdown ***/

.wrapperHeaderDropdown {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    width: 151px;
    border-left: 1px solid #e5e7ec;
    border-bottom: 1px solid #e5e7ec;
    background: #fff;
}
.wrapperHeader.wrapperHeaderDropdownShow .wrapperHeaderDropdown {
    display: block;
}
.wrapperHeaderDropdownButton {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    padding: 4px 9px 4px 9px;
    width: 100%;
    font-weight: 600;
    color: #5c5d60;
    border: 0;
    border-radius: 0;
    background: #fff;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
}
.wrapperHeaderDropdownButton:disabled,
.wrapperHeaderDropdownButton.disabled {
    text-decoration: none;
    color: #a5a6aa;
    cursor: default;
    background: #fff;
}
.wrapperHeaderDropdownButton:not(:disabled):not(.disabled):hover {
    text-decoration: none;
    color: #2458d3;
    background: #f6f8fd;
}
.wrapperHeaderDropdownButton:not(:disabled):not(.disabled):active {
    color: #2458d3;
    background: #eef2fc;
    box-shadow: 0 0 0 1px #eef2fc;
}
.wrapperHeaderDropdownButtonIcon {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 7px;
    width: 15px;
    height: 15px;
}
.wrapperHeaderDropdownButtonIcon svg {
    display: block;
    fill: #5c5d60;
    transition: fill .15s ease-in-out;
}
.wrapperHeaderDropdownButton:disabled .wrapperHeaderDropdownButtonIcon svg,
.wrapperHeaderDropdownButton.disabled .wrapperHeaderDropdownButtonIcon svg {
    fill: #dcdee3;
}
.wrapperHeaderDropdownButton:not(:disabled):not(.disabled):hover .wrapperHeaderDropdownButtonIcon svg,
.wrapperHeaderDropdownButton:not(:disabled):not(.disabled):active .wrapperHeaderDropdownButtonIcon svg {
    fill: #2458d3;
}
.wrapperHeaderDropdownButtonText {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

/*** coolMessage ***/

.coolMessageCon {
    z-index: 10;
    position: fixed;
    right: 16px;
    bottom: 20px;
    width: 300px;
}
.coolMessage + .coolMessage {
    margin-top: 10px;
}
.coolMessage {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px;
    width: 100%;
    border-radius: 6px;
    background: #d4ecac;
}
.coolMessageLeft {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.coolMessageMiddle {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-right: 12px;
    margin-left: 12px;
}
.coolMessageRight {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.coolMessageIcon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 22px;
    height: 22px;
}
.coolMessageIcon svg {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}
.coolMessageClose {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 4px;
    background: none;
}
.coolMessageClose svg {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}
.coolMessageClose:focus,
.coolMessageClose:hover {
    background: rgba(0, 0, 0, .07);
}
.coolMessage.coolMessageRed {
    background: #f4d5d5;
}
.coolMessage.coolMessageBlue {
    background: #caf0f9;
}
@media (min-width: 768px) {
    .coolMessageCon {
        right: 22px;
        bottom: 28px;
        width: 370px;
    }
    .coolMessage + .coolMessage {
        margin-top: 12px;
    }
    .coolMessage {
        padding: 8px 15px 8px 17px;
        border-radius: 8px;
    }
    .coolMessageMiddle {
        margin-right: 15px;
        margin-left: 17px;
        font-size: 16px;
        line-height: 22px;
    }
    .coolMessageClose {
        width: 36px;
        height: 36px;
    }
}

/*** wrapperHome ***/

.wrapperLogin.wrapperLoginHome {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.wrapperHome {
    flex: 1 1 auto;
}
.wrapperHomeCol1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.wrapperHomeColChild {
    flex: 1 1 auto;
}
.alignItemsStretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}
.babylonjs-canvas {
    
}


/*** 404 ***/

.error404Number {
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 170px;
    line-height: 170px;
    font-weight: 700;
    color: #00bcfe;
    user-select: none;
    white-space: nowrap;
}
.error404NumberOne {
    display: inline-block;
    vertical-align: top;
    background: -webkit-linear-gradient(#4faee5 0,#4faee5 52%, #069cd7 58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.error404NumberMiddle {
    display: inline-block;
    vertical-align: top;
    top: 17px;
    position: relative;
    color: #4f648e;
    transform: rotate(12deg);
}
.error404Text {
    text-align: center;
    font-size: 30px;
    line-height: 32px;
    color: #4f648e;
}
.error404Button {
    text-align: center;
    margin-top: 35px;
}
@media (min-width: 992px) {
    .error404Number {
        font-size: 300px;
        line-height: 270px;
    }
    .error404NumberMiddle {
        top: 30px;
    }
    .error404Text {
        font-size: 80px;
        line-height: 80px;
    }
    .error404Button {
        margin-top: 50px;
    }
}

/*! 404 v2 */
.wrapperLogin.wrapperLoginTwo {
    -ms-flex-align: stretch;
    align-items: stretch;
}
.wrapperLoginTwoBody {
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}
.wrapperLoginTwoLeft {
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 100%;
}
.wrapperLoginTwoLeftInside {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-bottom: 5vh;
}
.error404v2H {
    font-size: 32px;
    line-height: 34px;
    font-weight: 700;
}
.error404v2Text {
    margin-top: 20px;
    font-size: 18px;
    line-height: 24px;
}
.error404v2Button {
    margin-top: 20px;
    min-height: 40px;
}
.error404Number.error404NumberSolo .error404NumberOne {
    background: -webkit-linear-gradient(#8399b0 0,#8399b0 52%, #617991 58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.error404Number.error404NumberSolo .error404NumberMiddle {
    color: #4e667e;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .error404Number.error404NumberSolo {
        font-size: 220px;
        line-height: 220px;
    }
}
@media (min-width: 992px) {
    .wrapperLoginTwoRightImg {
        display: block;
        margin-right: auto;
        margin-left: auto;
        width: auto;
        max-width: 100%;
        height: auto;
    }
    .wrapperLoginTwoLeft {
        padding-right: 30px;
        width: 50%;
    }
    .wrapperLoginTwoRight {
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 50%;
    }
    .wrapperLoginTwoRightInside {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
    .wrapperLoginTwoLeftInside {
        padding-bottom: 15vh;
    }
}
@media (max-width: 991.98px) {
    .wrapperLogin.wrapperLoginTwo {
        overflow: hidden;
    }
    .wrapperLoginTwoBody {
        position: relative;
    }
    .wrapperLoginTwoLeft {
        z-index: 2;
        position: relative;
    }
    .wrapperLoginTwoRightImg {
        z-index: 1;
        position: absolute;
        display: block;
        bottom: -50px;
        right: -150px;
    }
    .error404Number.error404NumberSolo {
        z-index: 1;
        position: absolute;
        display: block;
        bottom: 1%;
        right: -20px;
        opacity: .3;
    }
}

.fixed_header {
    table-layout: fixed;
    display: block;
    overflow: auto;
}

    .fixed_header tbody {
        display: block;
        width: 100%;
    }

    .fixed_header thead {
        display: block;
        position: sticky;
        top: 0;
        z-index: 2;
    }

.gOne {
    width: 100%;
    min-width: 240px;
}

.g191 {
    min-width: 191px !important;
    width: 191px !important;
}

.g150 {
    min-width: 150px !important;
    width: 150px !important;
}
.g450 {
    min-width: 450px !important;
    width: 450px !important;
}
.dxbs-grid-column-chooser-dialog .modal-title {
    display: none;
}

.wrapperHeaderSearchMain .dxbs-dropdown {
    width: 450px;
    max-height: 400px;
}

.searchitems .asideNavButtonText, .searchitems .asideNavButtonTextInside {
    width: 367px;
}
.search-dopdown .dxbs-dropdown-body {
    padding: 0px;
}
.search-dopdown {
    max-height: 400px!important;
}
.search-dopdown .asideNavButtonTextInside b {
    background: #f6f8fd;
}
.search-item {
    cursor: pointer;
}
.dxbs-tagbox > .form-control .dxbs-tagbox-wrapper .dxbs-tag, .dxbs-tagbox > .form-control .dxbs-tagbox-wrapper .dxbs-tag:last-of-type {
    max-width: 160px;
}
.h4-empty-data {
    color: #5c5d60;
    text-align: center;
    margin-top: 30px;
}

/*** Charts ***/

.chart-main {
    background-color: #fff;
    animation: fadein .25s !important;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.chart-main:has([data-expand-state="minimizing"]),
.chart-main:has([data-expand-state="maximizing"]) {
    animation: fadeout .25s !important;
}

.chart-main:has([data-expand-state="maximized"]),
.chart-main:has([data-expand-state="minimizing"]) {
    position: fixed;
    top: 70px;
    z-index: 99999;
    background-color: white;
    border-width: 3px !important;
    height: min(75vw, 500px) !important;
    width: min(80vw, 800px) !important;
    border: 3px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
    left: 50%;
    transform: translate(-50%);
    animation: fadein .25s;
}

.chart-main:has([data-expand-state="maximized"]) + .chart-empty,
.chart-main:has([data-expand-state="minimizing"]) + .chart-empty
{
    display: inline;
}

.chart-empty {
    display: none;
}

.white-space-pre {
    white-space: pre;
}

.chart-label {
    font-weight: 700;
    font-size: 1rem;
    min-height: 3.2rem;
    max-height: 4rem;
    overflow: auto;
}

.chart-sub-label {
    font-weight: 400;
    font-size: 1rem;
    color: rgba(32, 33, 36, 0.54);
    white-space: nowrap; 
}

.chart-sub-label::before {
    content: "|";
    font-weight: 700;
    font-size: 1rem;
    color: #202124;
}

.long-chart-legend,
.chart-legend {
    margin-left: 0.1rem;
    padding: 0.2rem;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    width: calc(40%);
}

.long-chart-legend {
    height: 95%;
    webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.long-chart-legend .dx-chart-legend-items {
    height: 15rem;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
}

.line-chart-main .dx-chart-legend-items {
    overflow-y: auto;
    height: 1.5rem;
}

.dx-chart-legend-item {
    margin-bottom: 0 !important;
}

.dx-chart-legend-icon {
    height: 0.7rem;
    flex: 0 0 0.7rem;
}

.line-chart-main .dxc-scroll-bar rect {
    width: 4px;
    transition: width 100ms ease-in-out;
}

.line-chart-main .dxc-scroll-bar rect:hover,
.line-chart-main .dxc-scroll-bar rect:active {
    width: 8px;
}

/*** Documents (cheques, z, x etc.) ***/

/*** A4 - 3 column per page ***/
@media print {
    @page {
        size: A4 portrait !important;
        margin: 2mm 4mm 0mm 4mm !important;
    }

    html:has([id$="_insidePrintPreview"]),
    body:has([id$="_insidePrintPreview"]) {
        margin: 0 !important;
        min-width: initial !important; /* override bootstrap value which leads to wrong column height calculation */
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
        background: #fff;
    }

    [id$="_insidePrintPreview"].document-container,
    [id$="_insidePrintPreview"] .document-container {
        display: initial !important;
        justify-content: initial !important;
    }

    [id$="_insidePrintPreview"] .cheque-block {
        -webkit-column-count: 3 !important;
        -moz-column-count: 3 !important;
        column-count: 3 !important;
        column-gap: 2mm !important;
        column-fill: auto;
        height: var(--cheque-block-print-height) !important;
    }

    [id$="_insidePrintPreview"] .validation-severity-warning > .formHelperText {
        display: none;
    }
}

@media screen {
    html:has([id$="_insidePdfPreview"]) {
        margin: 0 !important;
    }

    body:has([id$="_insidePdfPreview"]) {
        margin: 3mm 1mm 3mm 1mm !important;
    }

    html:has([id$="_insidePdfPreview"]),
    body:has([id$="_insidePdfPreview"]) {
        all: initial; /* reset all styles */
        min-width: initial !important; /* override bootstrap value which leads to wrong column height calculation */
        display: inline-block !important;
        height: 297mm !important;
        width: 210mm !important;
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
        background: #fff;
    }

    [id$="_insidePdfPreview"].document-container,
    [id$="_insidePdfPreview"] .document-container {
        display: initial !important;
        justify-content: initial !important;
    }

    [id$="_insidePdfPreview"] .cheque-block {
        -webkit-column-count: 3 !important;
        -moz-column-count: 3 !important;
        column-count: 3 !important;
        column-gap: 2mm !important;
        column-width: 60mm !important;
        column-fill: auto !important;
        height: var(--cheque-block-print-height) !important;
        width: 60mm !important;
    }

    [id$="_insidePdfPreview"] .validation-severity-warning > .formHelperText {
        display: none;
    }
}

/******/

.w-document {
    overflow-wrap: break-word;
    width: 60mm;
}

.document-container table.w-document tr,
.borders-rl {
    border-left: 1px solid silver;
    border-right: 1px solid silver;
}
		
.padding-rl
{
	padding-left: 4px;
	padding-right: 4px;
}

.document-container {
    display: flex;
    justify-content: center;
}

.document-container table {
    border-spacing: 0px;
}

.document-container tr {
    position: relative;
}

.document-container td:has(input) {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.document-container td:last-child {
    padding-left: 1px;
    padding-right: 4px;
}

.document-container td:first-child {
    padding-left: 4px;
}

.document-container .cheque-page {
    display: block
}

.document-container .cheque-block {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    line-height: 14px;
    background-color: white;
}

.document-container .prepaid-block .cheque-row-rcolumn {
    white-space: normal;
}

.document-container .cheque-header {
    border-top: 1px solid silver;
    padding-top: 10px;
    padding-bottom: 20px;
}

.document-container .cheque-footer {
    border-bottom: 1px solid silver;
    padding-bottom: 10px;
}

.document-container .cheque-devider {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    padding: 5px 0
}

.document-container .centered {
    text-align: center
}

.document-container .cheque-row {
    display: flex;
    flex-direction: row
}

.document-container .cheque-row-lcolumn {
    width: 100%;
    overflow: hidden
}

.document-container .cheque-row-rcolumn {
    text-align: right;
    white-space: nowrap;
}

.document-container td.cheque-row-lcolumn {
    text-align: left;
}

.document-container td.cheque-row-rcolumn {
    text-align: right;
    width: auto;
}

.document-container .device-info-line {
    display: flex;
    flex-direction: row
}

.document-container .device-info-line-item {
    margin-left: 5px
}

.document-container .device-info-line-item:first-child {
    width: 80px;
    text-align: right
}

.document-container .qrcode {
     width: 122px;
}

.document-container .hmac {
    margin-top: 24px;
    margin-left: 5px;
}

.center-any {
    z-index: 9999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*** Keys ***/

.keys-missing-title {
    font-size: 22px;
    font-weight: bold;
    max-width: 100%;
    line-height: 20px;
}

.keys-missing-subtitle {
    padding: 0px 15px;
    width: 100%;
    color: #75717E;
    font-size: 17px;
    text-align: center;
}

/*** Status badge ***/

.status-badge {
    padding: 6px;
    display: flex;
    align-items: center;
    border-radius: 6px;
}

.status-badge-primary {
    color: #193E84;
    background-color: rgba(88, 135, 221, 0.25);
}

.status-badge-success {
    color: rgba(37, 77, 37, 1);
    background-color: rgba(69, 162, 72, 0.25);
}

.status-badge-in-progress {
    color: rgba(126, 66, 3, 1);
    background-color: rgba(220, 125, 19, 0.25);
}

.status-badge-fail {
    color: rgba(125, 29, 46, 1);
    background-color: rgba(235, 75, 89, 0.25);
}

/*** Info block ***/

.info-block {
    margin-top: 16px;
    border-radius: 12px;
    padding: 16px;
    display: flex;
}

.primary-info-block {
    background: rgba(62, 113, 206, 0.10);
}

.error-info-block {
    background-color: rgba(202, 52, 72, 0.10);
}

.info-block-text-container {
    display: flex;
    padding: 0 12px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1 0 0;
}

.info-block .info-title {
    color: #17151A;
    font-weight: 600;
}

.info-block .info-tip {
    color: #5E5A66;
}
