@import url("//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&amp;lang=en");
:root {
    --bg-light: #163c48;
    --bg-dark: #375b63;
    --bg-grey: #f3f3f4;
    --bg-red: #FB1616;
}
.starter-template {
    padding: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 100;
}
h1 {
    font-size: 30px;
}
h2 {
    font-size: 24px;
}
h3 {
    font-size: 16px;
}
h4 {
    font-size: 14px;
}
h5 {
    font-size: 12px;
}
h6 {
    font-size: 10px;
}
h3,
h4,
h5 {
    margin-top: 5px;
    font-weight: 600;
}


#loading {
    position: absolute;
    padding-top: 30px;
    padding-left: 30%;
    z-index: 100;
    display: none;
    font-size: 20px;
}

#contentLoader {
    min-height: 200px;
}

#loaderDiv {
    min-height: 90px;
    font-size: 30px;
}

body{
    padding-bottom: 140px;
}


.title-row{
    padding: 10px 0 25px
}

.title-row h1{
    padding: 0;
    margin-top: 5px;
}

.title-row p{
    padding: 0 16px;
    margin: 0;
}

h1{
    padding: 20px 0 30px 0;
    color: var(--bg-light);
}

.navbar-light .btn-primary{
    color: white !important;
}

.pagerfanta {
    text-align: center;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    background-color: #f8f9fa;
}


.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999999;
    opacity: 0;
    border-radius: 0;
    background: #212327;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-left: 10px;
    vertical-align: baseline;
}

.flex{
    display: flex;
    flex-wrap: wrap;
}

.flex > .col-sm-4{
    display: flex;
    align-items: stretch;

}

.pt-1{
    padding-top:5px;
}

.pt-2{
    padding-top:10px;
}

.pt-3{
    padding-top:15px;
}

.pt-4{
    padding-top:20px;
}

.pt-5{
    padding-top:30px;
}

.pb-1{
    padding-bottom: 5px;
}

.pb-2{
    padding-bottom:10px;
}

.pb-3{
    padding-bottom:15px;
}

.pb-4{
    padding-bottom:20px;
}

.pb-5{
    padding-bottom:30px;
}



.mt-1{
    margin-top:5px;
}

.mt-2{
    margin-top:10px;
}

.mt-3{
    margin-top:15px;
}

.mt-4{
    margin-top:20px;
}

.mt-5{
    margin-top:30px;
}

.mb-1{
    margin-bottom: 5px;
}

.mb-2{
    margin-bottom:10px;
}

.mb-3{
    margin-bottom:15px;
}

.mb-4{
    margin-bottom:20px;
}

.mb-5{
    margin-bottom:30px;
}

.tab-header{
    margin-bottom: 25px;
    margin-top: 25px;
}

.card{
    border: 1px solid #757575;
    border-radius: 4px;
    position:relative;
    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.4);
}

.card .panel-body{
    font-size: 13px;
}

.col-sm-4 .card{
    display: flex;
    align-items: stretch;
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 14px;
}

.col-sm-4 .card h2{
    display: block;
    width:100%;
    padding:0;
    margin:0;
    font-size: 14px;
    font-weight: normal;
}

.col-sm-4 .card hr{
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: 1px dotted #ccc;
}

.col-sm-4 .card .wrapper{
    display: block;
    width:100%
}

.innerCard {
    padding: 10px 10px 10px 15px;
}

.innerCard h2 {
    color: #b70000;
    margin-bottom: 6px !important;
    font-weight: bold !important;
    margin-top: 12px !important;
}

.innerCard .hr-line-dashed {
    border-top: 1px dashed #bbb;
    color: #ffffff;
    background-color: #ffffff;
    height: 1px;
    margin: 5px 0;
}

.innerCard p {
    margin-bottom: 0;
}

.step {
    border-bottom: 1px dotted #bbb;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.remarksTitle {
    background-color: #226622 !important;
}

/*****************************************/
/*************** Forms ******************/
/*****************************************/

[class^="btn-fa-"]:before,
[class*=" btn-fa-"]:before
{
    font: normal normal normal 14px/1 FontAwesome;
    margin: 0 6px 0 2px;
}

.btn-fa-send:before {
    content: '\f1d8';
}

.btn-fa-lock:before {
    content: '\f023';
}

.btn-fa-launch:before {
    content: '\f135';
}

.externalUser h1 {
    margin-top: 0 !important;
    padding-top: 5px !important;
}

.WFInfoPanel {
    border: 1px dotted #ccc;
    background-color: #f0f0f0;
    padding: 6px 10px 8px 15px;
    margin-bottom: 18px;
}

/*****************************************/
/*************** DX Box ******************/
/*****************************************/
.DXBox {
    max-width: 500px;
    min-width: 360px;
    position: relative;
}
.DXBox hr{
    border-top: 1px dotted #ccc;
}

.DXBoxTitle {
    background-color: var(--bg-light);
    color: #fff;
    padding: 5px 6px;
    margin: 0;
    width: 100%;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.DXBoxTitleBlocked{
    background-color: #aaa !important;
}
.DXBoxTitle h2{
    color: #fff;
    font-size: 13px;
}
.DXBoxTitle h2 a{
    color: #fff;
}
.DXBoxTitle h2 a:hover{
    color: #eee;
    text-decoration: none;
}
.DXBoxTitle h2 .openInfo:hover{
    color: #eee;
}
.DXBoxTitle2 {
    background-color: #559eed;
    color: #fff;
    padding: 5px 6px;
    margin: 0;
    width: 100%;
    /*border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;*/
}
.DXBoxTitle2 h2{
    color: #fff;
    font-size: 13px;
}
.DXBoxTitle2 h2 a{
    color: #fff;
}
.DXBoxTitle2 h2 a:hover{
    color: #eee;
    text-decoration: none;
}
.DXBoxTitle2 h2 .openInfo:hover{
    color: #eee;
}
.DXBoxTitleWarning {
    background-color: var(--bg-red);
    color: #fff;
    padding: 5px 6px;
    margin: 0;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.DXBoxTitleWarning h2{
    color: #fff;
    font-size: 13px;
}
.DXBoxTitleWarning h2 a{
    color: #fff;
}
.DXBoxTitleWarning h2 a:hover{
    color: #eee;
    text-decoration: none;
}
.DXBoxTitleWarning h2 .openInfo:hover{
    color: #eee;
}
.DXBoxInfo {
    background-color: var(--bg-light);
    color: #fff;
    position: absolute;
    opacity: 0.95;
    color: #fff;
    padding: 0;
    margin: 0;
    z-index: 20;
    width: 100%;
    display: none;
}
.DXBoxInfo p{
    color: #fff;
    margin: 5px 12px;
}
.openInfo {
    cursor: pointer;
    color: #eee;
}
.WFDescription {
    margin: 4px 8px;
}
.DXBox button.slick-next {
    right: -10px;
    top: 50px;
    background-color: var(--bg-dark);
    color: #eee;
    border: none;
    outline: none;
}
.DXBox button.slick-next:hover {
    background-color: var(--bg-light);
    color: #fff;
}
.DXBox button.slick-next:focus {
    border: none;
}
.DXBox button.slick-prev {
    left: -12px;
    top: 50px;
    background-color: var(--bg-dark);
    color: #eee;
    border: none;
    outline: none;
}
.DXBox button.slick-prev:hover {
    background-color: var(--bg-light);
    color: #fff;
}
.DXBox button.slick-prev:focus {
    border: none;
}
.DXBox div.stepNameSlider {
    text-align: center;
    margin-top: -10px;
}
.DXBox div.stepNameSlider span.stepIndex{
    display: inline-block;
    padding: 2px 8px;
    font-weight: bold;
    background-color: var(--bg-dark);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
}
.DXBox span.stepIndexBox{
    display: table-cell;
    padding: 2px 8px;
    font-weight: bold;
    background-color: var(--bg-light);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.4);
}
.DXBox span.stepTitleBox{
    display: table-cell;
    padding: 0 8px;
    cursor: pointer;
    color: #444;
}
.DXBox span.stepIconBox{
    display: table-cell;
    float: right;
}
.DXBox div.stepInfo {
    position: absolute;
    background-color: var(--bg-dark);
    color: #fff;
    opacity: 0.95;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: none;
    padding: 30px;
    overflow-y: auto;
}
.DXBox div.stepInfo p {
    margin: 0;
    padding: 0;
}
.dot{
    height: 26px;
    width: 26px;
    top: -13px;
    right: -13px;
    border-radius: 20%;
    position: absolute;
    text-align: center;
    padding-top: 3px;
    color: white;
    z-index: 30;
}

.singleComment {
    border-bottom: 1px dotted #ccc;
    padding-bottom: 4px;
    margin-bottom: 4px;
    font-size: 90%;
}

.singleComment span.stepIndexBox {
    font-size: 8px;
    width: 14px;
    height: 14px;
    text-align: center;
    border-radius: 50%;
    line-height: 14px;
    margin-right: 5px;
    padding: 0;
    vertical-align: 3px;
}
.dotStep{
    right: 2px;
}

.dotStep2{
    right: 33px;
    cursor: pointer;
}

.bgred{
    background: #b70000 !important;
    color: #fff;
    min-width: 20px;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.4);
}

.bggreen{
    background: green !important;
    color: #fff;
    min-width: 20px;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.4);
}

.bggrey{
    background: grey !important;
    color: #fff;
    min-width: 20px;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.4);
}

.bgorange{
    background: orange !important;
    color: #fff;
    min-width: 20px;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.4);
}

.bgblue{
    background: blue !important;
    color: #fff;
    min-width: 20px;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.4);
}

.bgdark{
    background: #444 !important;
    color: #fff;
    min-width: 20px;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.4);
}

.red{
    color: #b70000;
}

.green{
    color: green;
}

.grey{
    color: grey;
}

.orange{
    color: orange;
}

.blue{
    color: blue;
}

.slick-prev {
    position: absolute;
    bottom: 0;
    left:0;
    z-index: 5;
    width: 25px;
    height: 25px;
    border-radius: 20%;
    text-align: center;
}

.slick-next {
    position: absolute;
    bottom: 0;
    right:0;
    width: 25px;
    height: 25px;
    border-radius: 20%;
    text-align: center;
}

.slick-slide img
{
    border: 1px solid #ccc;
    border-style: inset;
}

.slide img
{
    border: 1px solid #ccc;
    border-style: inset;
}

.validationCheck {
    background-color: green;
    color: #fff;
    /*font-size: 20px;*/
    text-align: center;
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 20%;
    position: absolute;
    top: 25px;
    right: 50px;
    z-index: 10;
    display: none;
}
.slide {
    position: relative;
}
.slide .validationSlide {
    display: block;
    top: 4px;
    right:4px;
}

.user{
    color: #aaa;
    padding:5px 0
}

.flex .instance-card{

}

.instance-card span.stepIndex {
    display: none !important;
}

span.activeWFNumber {
    display: inline-block;
    margin: 0 4px;
    background-color: #222;
    color: #fff;
    border-radius: 3px;
    font-size: 11px;
    padding: 2px 5px;
    text-align: center;
    min-width: 20px;
}

/*****************************************/
/************** Launch WF ****************/
/*****************************************/
.masterFieldDescription {
    margin-top: 0px;
}
.singleOption {
    display: inline-block;
    margin: 2px 8px 2px 0;
    padding-right: 8px;
    border-right: 1px dotted #ccc;
}
.singleOption:last-child {
    border-right: none;
}

/*****************************************/
/************* Data panels ***************/
/*****************************************/

#logTable_length, #logTable_info {margin-left: 30px}
#logTable_filter, #logTable_paginate {margin-right: 30px}
#instanceData_length, #instanceData_info {margin-left: 30px}
#instanceData_filter, #instanceData_paginate {margin-right: 30px}
.collapsePanel {
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    float: right;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-weight: bold;
    margin: 0;
    cursor: pointer;
}

.btn-inactive {
    opacity: .75;
}

/*****************************************/
/************* Login page ****************/
/*****************************************/
.grey-bg {
    margin: 4rem auto;
    background-color: var(bg-grey);
}
.text-center{
    text-align: center;
}
.grey-bg #copyLogin {
    color: #a4a4a4;
}
body.grey-bg div.middle-box {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #dddddd;
    border-radius: 0px;
    box-shadow: 0 6px 15px -13px #000000;
    height: auto;
    left: auto;
    margin: 0 auto;
    max-width: 500px;
    padding: 30px 50px;
    position: relative;
    right: auto;
    width: 100%;
}
body.grey-bg div.middle-box h1 {
    text-align: center;
    /*padding: 30px;*/
    margin: 0 auto;
}
body.grey-bg .btn-primary.full-width {
    background: #39b97a none repeat scroll 0 0;
    border: 1px solid #39b97a;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px auto 10px;
    max-width: 260px;
    padding: 16px;
    text-transform: uppercase;
    transition: all 0.1s linear 0s;
}

/*****************************************/
/********** Top bar & footer *************/
/*****************************************/
body div.wrapper nav.DXTopbar * {
    color: #eee;
}
body div.wrapper nav.DXTopbar {
    background-color: var(--bg-light);
    border: none;
    height: 32px;
}
body div.wrapper nav.DXTopbar a.navbar-brand {
    padding: 10px 15px;
}
body div.wrapper nav.DXTopbar .navbar-nav>.open>a{
    background-color: var(--bg-dark);
    color: #fff;
}
body div.wrapper nav.DXTopbar .navbar-nav>.open>a:hover{
    background-color: var(--bg-dark);
    color: #fff;
}
body div.wrapper nav.DXTopbar .navbar-nav>.open>a:focus{
    background-color: var(--bg-dark);
    color: #fff;
}
body div.wrapper nav.DXTopbar .navbar-nav>li>a:hover{
    background-color: var(--bg-dark);
    color: #fff;
}
body div.wrapper nav.DXTopbar ul.dropdown-menu{
    background-color: var(--bg-dark);
    padding: 10px 0;
    margin-top: -1px;
}
body div.wrapper nav.DXTopbar .dropdown-menu>li>a {
    padding: 10px 20px;
}
body div.wrapper nav.DXTopbar .dropdown-menu>li>a:hover {
    background-color: var(--bg-light);
    color: #fff;
}
.navbar-collapse {
    background-color: var(--bg-light);
}
.button-add-pdm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    font-family: inherit;
    text-transform: none;
    overflow: visible;
    margin: 0;
    font: inherit;
    box-sizing: border-box;
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    letter-spacing: normal;
    word-spacing: normal;
    text-indent: 0px;
    text-shadow: none;
    align-items: flex-start;
}
footer {
    background-color: var(--bg-light);
    border: none;
    color: #eee;
    text-align: center;
    padding: 4px 0;
    z-index: 100;
}

/*****************************************/
/*************** web forms ***************/
/*****************************************/

.formContainer {
    margin: 0 -15px;
    padding: 0;
    padding-top: 90px;
}

.formBox {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #dddddd;
    border-radius: 0px;
    box-shadow: 0 6px 15px -13px #000000;
    height: auto;
    margin: 0 auto;
    max-width: 1024px;
    padding: 30px 50px;
    position: relative;
    width: 100%;
}

.formBox h1 {
    padding-top: 0;
}

.tabTitle {
    display: none;
}

@media (max-width: 1420px) {
    .tabtext {
        display: none;
    }
    .tabTitle {
        display: block;
    }
}

@media (max-width: 1064px) {
    .formBox {
        border: none;
    }
}
@media (max-width: 768px) {
    .DXBox .slide {
        display: none;
    }
}


/*****************************************/
/********* Alert flash messages **********/
/*****************************************/

.flashMessages{
    margin-top: 70px;
}

.hr-line-dashed {
    border-top: 1px dashed #e7eaec;
    color: #ffffff;
    background-color: #ffffff;
    height: 1px;
    margin: 5px 0;
}

/*****************************************/
/***************** ibox ******************/
/*****************************************/
/* UI Sortable */
.ui-sortable .ibox-title {
    cursor: move;
}

.ibox.ui-sortable-placeholder {
    margin: 0px 0px 23px !important;
}

.ibox-content h1,
.ibox-content h2,
.ibox-content h3,
.ibox-content h4,
.ibox-content h5,
.ibox-title h1,
.ibox-title h2,
.ibox-title h3,
.ibox-title h4,
.ibox-title h5 {
    margin-top: 5px;
}

.ibox-content.text-box {
    padding-bottom: 0px;
    padding-top: 5px;
}

.ui-draggable .ibox-title {
    cursor: move;
}

.ibox {
    clear: both;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0;
}
.ibox:after,
.ibox:before {
    display: table;
}
.ibox-title {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #ffffff;
    border-color: #ccc;
    border-image: none;
    border-style: solid solid none;
    border-width: 1px 0px 0;
    color: inherit;
    margin-bottom: 0;
    padding: 14px 10px 7px 10px;
    height: 40px;
}
.ibox-content {
    background-color: #ffffff;
    color: inherit;
    padding: 5px 20px 10px 20px;
    border-color: #e7eaec;
    border-image: none;
    border-style: solid solid none;
    border-width: 0px 0px;
}

.ibox-content {
    clear: both;
}
.ibox-heading {
    background-color: #f3f6fb;
    border-bottom: none;
}
.ibox-heading h3 {
    font-weight: 200;
    font-size: 24px;
}
.ibox-title h5 {
    display: inline-block;
    font-size: 13px;
    margin: 0 0 7px;
    padding: 0;
    text-overflow: ellipsis;
    float: left;
}
.ibox-title .label {
    float: left;
    margin-left: 4px;
}
.ibox-tools {
    display: inline-block;
    float: right;
    margin-top: 0;
    position: relative;
    padding: 0;
}
.ibox-tools a {
    cursor: pointer;
    margin-left: 5px;
    color: #777;
}
.ibox-tools a.btn-primary {
    color: #fff;
}
.ibox-tools .dropdown-menu > li > a {
    padding: 4px 10px;
    font-size: 12px;
}
.ibox .open > .dropdown-menu {
    left: auto;
    right: 0;
}

body.rtls .ibox-title h5 {
    float: right;
}

body.rtls .ibox-tools {
    float: left;
}

.skin-1 .ibox-title,
.skin-1 .ibox-content {
    border-width: 1px;
}
.skin-1 .ibox-content:last-child {
    border-style: solid solid solid solid;
}

.skin-2 .ibox-title {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    margin-bottom: 1px;
}
.skin-2 .ibox-content {
    background: rgba(255, 255, 255, 0.4);
    border: none !important;
}
.skin-2 #page-wrapper {
    background: #f6f6f6;
    background: -webkit-radial-gradient(center, ellipse cover, #f6f6f6 20%, #d5d5d5 100%);
    background: -o-radial-gradient(center, ellipse cover, #f6f6f6 20%, #d5d5d5 100%);
    background: -ms-radial-gradient(center, ellipse cover, #f6f6f6 20%, #d5d5d5 100%);
    background: radial-gradient(ellipse at center, #f6f6f6 20%, #d5d5d5 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#f6f6f6, endColorstr=#d5d5d5)";
}
.skin-2 .ibox-title,
.skin-2 .ibox-content {
    border-width: 1px;
}
.skin-2 .ibox-content:last-child {
    border-style: solid solid solid solid;
}

.skin-3 .ibox-title,
.skin-3 .ibox-content {
    border-width: 1px;
}
.skin-3 .ibox-content:last-child {
    border-style: solid solid solid solid;
}

.commentContainer div.ibox-title{
    background-color: #62bbe2; 
    color: white !important
}

.commentContainer div.ibox-content{
    border: 1px solid #7284a9; 
}

.revisionContainer div.ibox-title{
    background-color: #ed9c28; 
    color: white !important
}

.revisionContainer div.ibox-content{
    border: 1px solid #ed9c28; 
}

ul.userMiniList {
    list-style-type: none;
    margin: 5px 0;
    padding: 5px 10px;
}
li.userMiniList{
    border-bottom: 1px solid #ddd;
    min-height: 45px;
    margin: 5px 0;
}
ul.userMiniList li img{
    float: left;
    width: 45px;
    margin-right: 15px;
}

.media-body {
    overflow: hidden;
}
.media-body {
    display: block;
}

.media-body > .media {
    background: #f9f9f9;
    border-radius: 3px;
    border: 1px solid #f1f1f1;
}
.forum-post-container .media-body .photos {
    margin: 10px 0;
}
.forum-photo {
    max-width: 140px;
    border-radius: 3px;
}

.forum-counter {
    display: inline-block;
    border-radius: 3px;
    line-height: 18px;
    background-color: black;
    opacity: 0.45;
    padding: 0 5px;
    min-width: 20px
}
.forum-filter {
    margin-bottom: 18px;
}
.forum-image img {
    width: 100%;
    border-radius: 50%;
    border: 1px solid #999;
}
.forum-post-time-lapse {
    float: right;
}
.forum-post-message {
    margin: 18px 6px;
    padding: 14px 18px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
}
.alignRight {
    text-align: right;
    margin-top: 5px;
}
.media-body > .media .forum-avatar {
    width: 70px;
    margin-right: 10px;
}
.media-body > .media .forum-avatar .img-circle {
    height: 38px;
    width: 38px;
}

.media-body {
    font-size: 12px;
}

.media-body {
    overflow: hidden;
}

/* External style */
.DXOTemplateBoxName {
    position: absolute;
    bottom: 0;
    background-color: #333;
    color: white;
    text-align: center;
    width: 118px;
    margin: 0 1px;
}

.DXOTemplateBoxName p {
    color: white;
    text-align: center;
    font-size: 11px;
    line-height: 1;
    word-wrap: break-word;
    padding: 4px;
    margin: 5px 0;
}


.DXOTemplateBox {
    width: 122px;
    height: 160px;
    float: left;
    margin: 5px;
    overflow-y: hidden;
    position: relative;
    cursor: pointer;
}

.DXOTemplateBox img{
    border: 1px solid #ccc;
    width: 120px;
    margin: 0;
}

.DXOTemplateList {
    margin-left: 16px;
}

/* Forum style */
.forum-body {
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 20px;
}

.tittle-forum-col{
    background-color: #eee;
    margin-bottom: 5px;
    margin-top: 5px;
}

.body-forum-col{

}

.post-message{
    border-bottom: 1px solid #ccc;
    padding: 12px 0;
    margin-top: 15px;
}

.post-deleted {
    opacity: 0.60;
}

.hiddenField {
    margin-left: -1500px;
    height: 1px;
    width: 1px;
    overflow: hidden;
    opacity: 0;
}

.infoBall {
    display: inline-block;
    height: 18px;
    width: 18px;
    line-height: 18px;
    background-color: var(--bg-dark);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 11px;
    cursor: pointer;
}
/* DASHBOARD */
.gray-bg {
    background-color: #ddd;
}
.no-margins {
    margin: 0;
    padding: 0;
}

.dashbox {
    background-color: #f0f0f0;
    margin-bottom: 25px;
    border-bottom: 1px solid #ccc;
}

/* TABS */
.panel.blank-panel {
    background: none;
    margin: 0;
}
.blank-panel .panel-heading {
    padding-bottom: 0;
}
.nav-tabs {
    border-bottom: 1px solid #bbb;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: none;
    border-color: #bbb #bbb rgba(0, 0, 0, 0);
    border-bottom: #f3f3f4;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    color: #333333;
    cursor: default;
    border-top: 2px solid #b70000;
}
.nav.nav-tabs li {
    background: none;
    border: none;
}
.nav-tabs > li > a {
    color: #777;
    font-weight: 400;
    /*padding: 10px 20px 10px 25px;*/
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
    background-color: #ddd;
    color: #555;
    border-top: 2px solid #555;
}
.ui-tab .tab-content {
    padding: 20px 0px;
}

/* PAGINATION */
.pagnav {

}
.pagnav input {
    text-align: center;
    padding: 2px 2px;
}

.pagnav-pages-navspan {
    display: inline-block;
    min-width: 26px;
    color: #a0a5aa;
    border: 1px solid #ddd;
    background: #f7f7f7;
    padding: 3px 5px 6px;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
}

.pagnav-pages a {
    display: inline-block;
    min-width: 26px;
    border: 1px solid #ccc;
    padding: 3px 5px 6px;
    background: #e5e5e5;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
}

.pagnav-pages a:hover {
    border-color: #5b9dd9;
    color: #fff;
    background: #00a0d2;
    box-shadow: none;
    outline: 0;
    text-decoration: none;
}

.pagnav-pages a:hover {
    border-color: #5b9dd9;
    color: #fff;
    background: #00a0d2;
    box-shadow: none;
    outline: 0;
    text-decoration: none;
}



.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #f4f4f4;
    border-color: #DDDDDD;
    color: inherit;
    cursor: default;
    z-index: 2;
}
.pagination > li > a,
.pagination > li > span {
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    color: inherit;
    float: left;
    line-height: 1.42857;
    margin-left: -1px;
    padding: 4px 10px;
    position: relative;
    text-decoration: none;
}

.recipient {
    margin: 8px 6px; 
    padding:5px 0; 
    background-color: #f0f0f9; 
    border: 1px solid #e0e0e9
}

.pillValue{
    display:inline-block;
    margin: 3px 0 3px 5px;
    padding: 3px 5px 3px 5px;
    border: 1px solid #aaa;
    border-radius: 3px;
    background-color: #e4e4e4;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
    background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    background-clip: padding-box;
    box-shadow: 0 0 2px white inset, 0 1px 0 rgb(0 0 0 / 5%);
    color: #333;
    line-height: 13px;
}

.DXBoxLocked{
    opacity: 90%;
}

.dxoLabelHelp{
    cursor: default;
    padding: 1px 5px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle

}


.contact-box {
    background-color: #ffffff;
    border: 1px solid #e7eaec;
    padding: 20px;
    margin-bottom: 20px;
}

.contact-box a{
    cursor: pointer;
    text-decoration: none;
    background-color: transparent;
    color: #646464;
}

.editImage {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 10px;
    margin-right: 10px;
}

.limitSize320 {
    margin: 0 auto;
    max-width: 320px;
}

/* Image cropper style */
.img-container,
.img-preview {
    overflow: hidden;
    text-align: center;
    width: 100%;
}
.img-preview-sm {
    height: 130px;
    width: 200px;
}
.a-simple:hover{
    text-decoration: none;
}
.a-simple:focus{
    text-decoration: none;
}

.btn-white {
    color: inherit;
    background: white;
    border: 1px solid #e7eaec;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.open .dropdown-toggle.btn-white {
    color: inherit;
    border: 1px solid #d2d2d2;
}
.btn-white:active,
.btn-white.active {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;
}
.btn-white:active,
.btn-white.active,
.open .dropdown-toggle.btn-white {
    background-image: none;
}
.btn-white.disabled,
.btn-white.disabled:hover,
.btn-white.disabled:focus,
.btn-white.disabled:active,
.btn-white.disabled.active,
.btn-white[disabled],
.btn-white[disabled]:hover,
.btn-white[disabled]:focus,
.btn-white[disabled]:active,
.btn-white.active[disabled],
fieldset[disabled] .btn-white,
fieldset[disabled] .btn-white:hover,
fieldset[disabled] .btn-white:focus,
fieldset[disabled] .btn-white:active,
fieldset[disabled] .btn-white.active {
    color: #cacaca;
}

.btn-DX {
    color: inherit;
    background: var(--bg-light);
    border: 1px solid var(--bg-dark);
    color: white;
}
.btn-DX:hover,
.btn-DX:focus,
.btn-DX:active,
.btn-DX.active,
.open .dropdown-toggle.btn-DX {
    color: inherit;
    border: 1px solid var(--bg-dark);
    color: #f0f0f0;
}
.btn-DX:active,
.btn-DX.active {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}
.btn-white:active,
.btn-white.active,
.open .dropdown-toggle.btn-white {
    background-image: none;
}
.btn-DX.disabled,
.btn-DX.disabled:hover,
.btn-DX.disabled:focus,
.btn-DX.disabled:active,
.btn-DX.disabled.active,
.btn-DX[disabled],
.btn-DX[disabled]:hover,
.btn-DX[disabled]:focus,
.btn-DX[disabled]:active,
.btn-DX.active[disabled],
fieldset[disabled] .btn-DX,
fieldset[disabled] .btn-DX:hover,
fieldset[disabled] .btn-DX:focus,
fieldset[disabled] .btn-DX:active,
fieldset[disabled] .btn-DX.active {
    color: var(--bg-light);
    opacity: 0.5;
}

.ko {
    color: #b70000;
}

.ok {
    color: #009900;
}

/*REPOSITORY FILES */
.repositoryFilesTable{
    margin: 0 12px 12px 12px;
}

.signatureList {
    width: 100%;
}

.repositoryFilesList th {
    border: 1px dotted #888;
    white-space: nowrap;
    padding: 4px 9px !important;
    color: #1b9cd5;
}

.repositoryFilesList td {
    border: 1px dotted #bbb;
    padding: 4px 9px !important;
}

table .repositoryFilesName {
    background-color: #333 !important;
    color: white;
}

.repositoryFilesDate {
    background-color: #1b9cd5 !important;
    color: white !important;
    width: 15%;
    text-align: center;
}

.dropzone-previews{
    height: auto;
    left: 0;
    margin: 0 auto;
    right: auto;
    width: 100%;
    overflow: auto;
    overflow-y: scroll;
    position: fixed;
    z-index: 1040;
    outline: 0;
    margin-left: 15%;

}

.dropzone-backdrop{
    height: 100%;
    top: 0;
    position: fixed;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1030;
}

/* Small tabs */

.small-panel>li>a{
    padding: 5px 10px !important;
    font-size: 12px !important;
}


.modal .btn-toolbar{
    margin-left: 0px;
}

#contenidoLoad{
    clear: both;
    border-bottom: 1px solid #bbb;
}

.topPager{
    margin-top: -62px;
}
.bottomPager{
    margin-top: 15px;
}

/*****************************************/
/*************** DX History ******************/
/*****************************************/
.DXHistory {

    min-width: 360px;
    position: relative;
}
.DXHistory hr{
    border-top: 1px dotted #ccc;
}

.DXHistory button.slick-next {
    right: -10px;
    top: 50px;
    background-color: var(--bg-dark);
    color: #eee;
    border: none;
    outline: none;
}
.DXHistory button.slick-next:hover {
    background-color: var(--bg-light);
    color: #fff;
}
.DXHistory button.slick-next:focus {
    border: none;
}
.DXHistory button.slick-prev {
    left: -12px;
    top: 50px;
    background-color: var(--bg-dark);
    color: #eee;
    border: none;
    outline: none;
}
.DXHistory button.slick-prev:hover {
    background-color: var(--bg-light);
    color: #fff;
}
.DXHistory button.slick-prev:focus {
    border: none;
}
.DXHistory div.stepNameSlider {
    text-align: center;
    margin-top: -10px;
}
.DXHistory div.stepNameSlider span.stepIndex{
    display: inline-block;
    padding: 2px 8px;
    font-weight: bold;
    background-color: var(--bg-dark);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
}
.DXHistory span.stepIndexBox{
    display: table-cell;
    padding: 2px 8px;
    font-weight: bold;
    background-color: var(--bg-light);
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.4);
}
.DXHistory span.stepTitleBox{
    display: table-cell;
    padding: 0 8px;
    cursor: pointer;
    color: #444;
}
.DXHistory span.stepIconBox{
    display: table-cell;
    float: right;
}
.DXHistory div.stepInfo {
    position: absolute;
    background-color: var(--bg-dark);
    color: #fff;
    opacity: 0.95;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: none;
    padding: 30px;
    overflow-y: auto;
}
.DXHistory div.stepInfo p {
    margin: 0;
    padding: 0;
}

.DXHistoryTitle {

    padding: 3px 3px;
    margin: 0;
    width: 100%;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.DXHistoryTitle h2{
    color: #0380ff;
    margin-top: 2px !important;
    margin-bottom: 2px !important;
}
.DXHistoryTitle h2 a{
    color: #fff;
}
.DXHistoryTitle h2 a:hover{
    color: #eee;
    text-decoration: none;
}
.DXHistoryTitle h2 .openInfo:hover{
    color: #eee;
}

.hr-line-dashed-bold {
    border-top: 2px dashed #e7eaec;
    color: #ffffff;
    background-color: #ffffff;
    height: 2px;
    margin: 5px 0;
    padding-bottom: 10px;
}

/*************/
/**** Slides */
/*************/
.form-horizontal-new{
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #ccc;
}

@media (max-width: 1420px) {
    .tabtext {
        display: none;
    }
    .tabTitle {
        display: block;
    }
}

@media (max-width: 1064px) {
    .formBox {
        border: none;
    }
}
@media (max-width: 768px) {
    .topPager{
        margin-top: 5px;
        margin-bottom: 5px;
        min-height: 40px;
        float: none !important;
    }
    .DXBox .slide {
        display: none;
    }
}

/*************/
/**** KPI ****/
/*************/
.kpiShow{
    float: right;
}


.dotLegend{
    height: 26px;
    width: 26px;
    top: -13px;
    right: -13px;
    border-radius: 20%;
    text-align: center;
    padding-top: 3px;
    color: white;
    z-index: 30;
}

.workflowLegend{
    padding-bottom: 5px;
    padding-top: 5px;
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
    margin-bottom: 5px;
    margin-top: 5px;
}

/*****************************/
/**** Show Workflow Table ****/
/*****************************/

.workflowTable h2{
    display: block;
    width:100%;
    padding:0;
    margin:0;
    font-size: 14px;
    font-weight: normal;
}

.workflowTable h2 {
    color: #b70000;
    margin-bottom: 6px !important;
    font-weight: bold !important;
    margin-top: 12px !important;
}
