@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Open Sans Light'), local('OpenSans-Light'), url('../fonts/opensans/opensans-light-webfont.woff') format('woff');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url('../fonts/opensans/opensans-webfont.woff') format('woff');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url('../fonts/opensans/opensans-bold-webfont.woff') format('woff');
}
.unscrollable {
    overflow: hidden;
}
.dx-datagrid .dx-danger > td {
    color: #c2274e;
    background-color: rgba(255, 51, 102, 0.1);
}
.dx-datagrid .dx-row-alt.dx-danger > td {
    color: #c2274e;
    background-color: rgba(255, 51, 102, 0.1);
}
.dx-datagrid .dx-warning > td {
    color: #8a6d3b;
    background-color: rgba(250, 235, 204, 0.6);
}
.dx-datagrid .dx-row-alt.dx-warning > td {
    color: #8a6d3b;
    background-color: rgba(250, 235, 204, 0.6);
}
.dx-datagrid .dx-success > td {
    color: #3c763d;
    background-color: rgba(223, 240, 216, 0.4)
}
.dx-datagrid .dx-row-alt.dx-success > td {
    color: #3c763d;
    background-color: rgba(223, 240, 216, 0.4)
}
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.nowrap {
    white-space: nowrap;
}
.normal {
    white-space: normal !important;
}
.dx-datagrid-content .dx-datagrid-table .dx-row > td, .dx-datagrid-content .dx-datagrid-table .dx-row > tr > td {
    vertical-align: middle;
}
.bg-muted {
    background-color: #f6f9fa;
}
.bg-muted .table tr, .bg-muted .table td {
    border-width: 0 !important;
}
.dx-button-warning {
    background-color: #e8b920;
    border-color: #d8ac1e;
    color: #fff;
}
.dx-button-warning .dx-icon {
    color: #fff;
}
.dx-button-warning.dx-state-hover {
    background-color: #d8ac1e;
    border-color: #cba21e;
}
.dx-button-warning.dx-state-focused {
    background-color: #d8ac1e;
    border-color: #cba21e;
}
.dx-button-warning.dx-state-active {
    background-color: #d8ac1e;
    border-color: #cba21e;
    color: #fff;
}
.dx-datagrid-header-panel .dx-toolbar {
    margin: 0;
    padding-right: 20px;
    background-color: rgba(85, 149, 222, 0.6);
}
.dx-datagrid-header-panel .dx-toolbar-items-container {
    height: 40px;
}
.dx-datagrid-header-panel .dx-toolbar-before {
    background-color: rgba(103, 171, 255, 0.6);
    padding: 0 20px;
}
.dx-datagrid-header-panel .dx-checkbox {
    color: white;
}
.header p {
    font-size: 21px;
    line-height: 50px;
    font-weight: 600;
    vertical-align: middle;
    padding: 0;
    margin: 0;
    overflow: hidden;
    /*width: 100%;*/
}
.header p small {
    font-weight: 300;
    font-size: 13px;
}
.header p a {
    font-size: 30px;
    padding: 0;
    margin: 0;
}
.alert-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    border-radius: 0;
    width: 100%;
    margin: 0;
    z-index: 9999999;
    font-size: 15px;
}
.alert-footer ul, .alert-footer li {
    list-style: none;
}
.alert-footer strong {
    font-family: roboto;
    font-size: 1.2em;
    font-weight: 600;
}
.checkbox label {
    line-height: 20px;
    font-size: 15px;
    vertical-align: middle;
}
@media (min-width: 992px) {
    .col-settings {
        min-height: 600px;
        background: rgba(137, 204, 15, 0.04);
    }
}
@media (max-width: 991px) {
    .header p {
        width: 100%;
    }
}
/*loading*/
:root {
    --yellow: #feb60a;
    --red: #ff0062;
    --blue: #00dbf9;
    --violet: #da00f7;
}
div.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 99999999;
}
div.loading-container > div {
    width: 3vw;
    height: 3vw;
    border-radius: 100%;
    margin: 2vw;
    background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    animation: bounce 1.5s 0.5s linear infinite;
}
div.loading-container > .yellow {
    background-color: var(--yellow);
}
div.loading-container > .red {
    background-color: var(--red);
    animation-delay: 0.1s;
}
div.loading-container > .blue {
    background-color: var(--blue);
    animation-delay: 0.2s;
}
div.loading-container > .violet {
    background-color: var(--violet);
    animation-delay: 0.3s;
}
@keyframes bounce {
    0%, 50%, 100% {
        transform: scale(1);
        filter: blur(0px);
    }
    25% {
        transform: scale(0.6);
        filter: blur(3px);
    }
    75% {
        filter: blur(3px);
        transform: scale(1.4);
    }
}
/*End loading*/
.opacity0 {
    opacity: 0;
}
.opacity0.opacity1 {
    opacity: 1;
}
.height0 {
    visibility: hidden;
    display: none;
}
.height0.height1 {
    visibility: visible;
    display: inherit;
}
.small-item-img {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.he40 {
    height: 40px;
}
.cat-closer {
    z-index: 22;
    position: absolute;
    top: -2px;
    right: 7px;
    color: #a94442 !IMPORTANT;
    font-weight: bolder;
    font-size: 32px;
}
.list-group-item .radio, .list-group-item .checkbox {
    margin-top: 0;
    margin-bottom: 0;
}
label.list-group-item {
    padding-left: 30px;
}
.dx-datagrid-rowsview .dx-row > .dx-master-detail-cell {
    padding: 10px;
}
.clear-scanned-item {
    position: absolute;
    margin-top: -35px;
    margin-right: 20px;
    right: 0px;
    padding: 0;
    border: 1px solid white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 24px;
    text-align: center;
    background: #337ab7;
}
.clear-scanned-item i {
    color: white;
    transition: transform .5s, filter 1.5s ease-in-out;
}
.clear-scanned-item:hover i {
    transform: scale(1.3);
}

.loader_overlay {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.5);
    /*background: red;*/
    box-shadow: 0px 0px 0px 1000px rgba(255, 255, 255, 0.67), 0px 0px 19px 0px rgba(0, 0, 0, 0.16) inset;
    /*border-radius: 100%;*/
    z-index: 9;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.loader_cogs {
    z-index: 10;
    width: 100px;
    height: 100px;
    top: -120px !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.loader_cogs__top {
    position: relative;
    width: 100px;
    height: 100px;
    transform-origin: 50px 50px;
    -webkit-animation: rotate 10s infinite linear;
    animation: rotate 10s infinite linear;
}
.loader_cogs__top div:nth-of-type(1) {
    transform: rotate(30deg);
}
.loader_cogs__top div:nth-of-type(2) {
    transform: rotate(60deg);
}
.loader_cogs__top div:nth-of-type(3) {
    transform: rotate(90deg);
}
.loader_cogs__top div.top_part {
    width: 100px;
    border-radius: 10px;
    position: absolute;
    height: 100px;
    background: #f98db9;
}
.loader_cogs__top div.top_hole {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: white;
    position: absolute;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.loader_cogs__left {
    position: relative;
    width: 80px;
    transform: rotate(16deg);
    top: 28px;
    transform-origin: 40px 40px;
    animation: rotate_left 10s 0.1s infinite reverse linear;
    left: -24px;
    height: 80px;
}
.loader_cogs__left div:nth-of-type(1) {
    transform: rotate(30deg);
}
.loader_cogs__left div:nth-of-type(2) {
    transform: rotate(60deg);
}
.loader_cogs__left div:nth-of-type(3) {
    transform: rotate(90deg);
}
.loader_cogs__left div.left_part {
    width: 80px;
    border-radius: 6px;
    position: absolute;
    height: 80px;
    background: #97ddff;
}
.loader_cogs__left div.left_hole {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: white;
    position: absolute;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.loader_cogs__bottom {
    position: relative;
    width: 60px;
    top: -65px;
    transform-origin: 30px 30px;
    -webkit-animation: rotate_left 10.2s 0.4s infinite linear;
    animation: rotate_left 10.2s 0.4s infinite linear;
    transform: rotate(4deg);
    left: 79px;
    height: 60px;
}
.loader_cogs__bottom div:nth-of-type(1) {
    transform: rotate(30deg);
}
.loader_cogs__bottom div:nth-of-type(2) {
    transform: rotate(60deg);
}
.loader_cogs__bottom div:nth-of-type(3) {
    transform: rotate(90deg);
}
.loader_cogs__bottom div.bottom_part {
    width: 60px;
    border-radius: 5px;
    position: absolute;
    height: 60px;
    background: #ffcd66;
}
.loader_cogs__bottom div.bottom_hole {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: white;
    position: absolute;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* Animations */
@-webkit-keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotate_left {
    from {
        transform: rotate(16deg);
    }
    to {
        transform: rotate(376deg);
    }
}
@keyframes rotate_left {
    from {
        transform: rotate(16deg);
    }
    to {
        transform: rotate(376deg);
    }
}
@-webkit-keyframes rotate_right {
    from {
        transform: rotate(4deg);
    }
    to {
        transform: rotate(364deg);
    }
}
@keyframes rotate_right {
    from {
        transform: rotate(4deg);
    }
    to {
        transform: rotate(364deg);
    }
}
.stickyHeader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    box-shadow: 0px 0px 5px 2px #b7b6b6;
    background: white;
}
.lh-fix {
    line-height: 38px !important;
}
.v-middle {
    vertical-align: middle;
}
.dx-datagrid-group-panel .dx-group-panel-message{
    color: white;
}
.parentbold .childbold{
     font-weight: bold;
 }