/* ===================================================== */
/*                  NiobeHtmlHelper                      */
/* ----------------------------------------------------- */
/* FONCTION showInfoQuestion                             */
/* ----------------------------------------------------- */
.info-question-icon {
    padding-right:5px;                
}
.info-question-content {
    position: relative;
    display: none;
    z-index: 10;
    visibility : hidden;
    width: max-content;
    width: -moz-max-content;
}
.info-question-content-static {
    display: inline-block;
    border-style: solid;
    border-radius: 5px;
    border-width:thin;
    padding-left:3px;
    padding-right:3px;
    padding-bottom:1px;
    padding-top:1px;
}
.info-question-icon:hover + .info-question-content {
    display : inline-block;
    visibility: visible;
    position: absolute;
    opacity: 1;
    border-style: solid;
    border-radius: 5px;
    border-width:thin;
    padding-left:3px;
    padding-right:3px;
    padding-bottom:1px;
    padding-top:1px;
}
/* ===================================================== */

/* ===================================================== */
/*                  utilities.js                         */
/* ----------------------------------------------------- */
/* FONCTIONS lockScreenNiobe                             */
/* ----------------------------------------------------- */
#screenLockNiobe.unlock-screen-niobe {
    display: none;
    left: 0;
    right: 0;
    height: 0;
    width: 0;
    z-index: -1;    
}

#screenLockNiobe.lock-screen-niobe {
    position: absolute;
    background: transparent;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 999;    
}
/* ===================================================== */

.niobe-badge {
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 0px;
    min-width: 15px;
    padding: 1px 7px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
}

/* ===================================================== */
/*              DocumentationManager                     */
/* ----------------------------------------------------- */
.documentation-badge {
    display: inline-block;
    margin-top:0px;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 10px;
}
.documentation-a {
    display:inline-block !important;
    min-width:80%;    
    max-width:90%;    
}
.documentation-li {
    display:inline-block !important;
    width: 80%;
}
/* ===================================================== */

.col-with-border {
    border-bottom: 0;
}

.niobe-badge-div-over {
    border-radius: 10px !important;
    border: 1px solid !important;
    font-weight: bold;
    font-size: 0.8em;
}
.niobe-badge-div-over>ul>li {
    list-style-type: none;
}
.niobe-badge-div-over>ul>li span {
    position: relative;
    left: -35px;
}
.niobe-border {
    border-radius: 0 !important;
    border:0 !important;
/*    border-top: 3px solid!important;
    border-bottom: 3px solid!important; */
    margin-left: 1px !important;
}
.box li.niobe-border {
    margin-bottom: 5px;
    margin-left: 6px !important;
}
li.niobe-border>a:hover {
    border: none !important;
    border-radius: inherit;
}
.checkbox label, .radio-inline{
    padding-left:0px;
}
.icheckbox_square-blue, .iradio_square-blue{
    margin-right:10px;
}
div.error-message{
    display:none;
}

/* Affichage d'un texte au dessus d'une image */
/* 3 éléments : 1 a contenant l'image et le span contenant le texte à afficher 
/* <div class = "div-img-txt"><img class="div-img"><span class="div-txt"></span></div> */
div-img-txt {
    display:grid;
}
/* les enfants se superposent */
.div-img-txt>*{
  grid-area:1/1/-1/-1; 
  /* raccourci pour grid-row et grid-column */
} 
/* le texte */
.div-txt{
  display:flex;
  justify-content:center;
  align-items:center;
  color:#000000;
  opacity:0;
  transition:opacity .8s;
} 
/* la couleur du fond du survol */
.div-txt-bkcl{
    background:#FFFFFF;
} 
/* le survol */
.div-txt:hover{
  opacity:1;
}

.rounded-15 {
    border-radius : 15px;
}    

.content-wrapper{
    background-size:cover;
}            

/*   ==============
     STYLE DASHBOARD
     =============== */
.dashboard_title {
    margin-top:2px;
    margin-bottom:0px;
    border-bottom: solid 1px;
    padding-bottom: 3px;
    font-weight: bold;
    font-size: 18px;
}    
.dashboard_subtitle {
    margin-top:2px;
    margin-bottom:0px;
    font-weight: bold;
    text-align: center;
}    

.btn {
    border-radius:0px;
    border : 1px solid;
    background : transparent;
    font-weight: bold !important;
}

.btn-black {
    color: black !important;
}
.btn-black:hover {
    background: black !important;
    color: white !important;
}
.btn-black:active {
    background: black !important;
    color: white !important;
}

.btn-primary {
    color: #337ab7 !important;
}
.btn-primary:hover {
    color: white !important;
}
.btn-primary:active {
    color: white !important;
}

.btn-info {
    color: #5bc0dc !important;
}
.btn-info:hover {
    color: white !important;
}
.btn-info:active {
    color: white !important;
}

.btn-success {
    color: #00a65a !important;    
}
.btn-success:hover {
    color: white !important;    
}
.btn-success:active {
    color: white !important;    
}

.btn-danger {
    color : #dd4b39 !important;
}
.btn-danger:hover {
    color : white !important;
}
.btn-danger:active {
    color : white !important;
}

.btn-warning {
    color: #f39c12 !important;
}
.btn-warning:hover {
    background: #f39c12 !important;
    background-color: #f39c12 !important;
    color : white !important;
}
.btn-warning:active {
    background: #f39c12 !important;
    background-color: #f39c12 !important;
    color : white !important;
}

.btn-basic {
    color: grey !important;
}
.btn-basic:hover {
    background: grey !important;
    color: white !important;
}
.btn-basic:active {
    background: grey !important;
    color: white !important;
}

/*   ==============
     STYLES DU SKIN 
     ============== */
.nav-tabs {
    border: none;
}    
.nav-tabs-custom {
    border : none;
    box-shadow: none;
    background: transparent !important;
}    
.nav-tabs-custom > .nav-tabs > li.active {
    transform: scale(1.08);
    font-weight:bold;
}
.nav-tabs-custom > .nav-tabs > li {
    margin:0px 6px 6px 6px;
}
.nav-tabs-custom > .nav-tabs > li:hover {
    transform: scale(1.08);
    transition: transform 330ms ease-in-out;                
}    
.nav-tabs-custom > .nav-tabs > li.active >a {
    opacity: 1;
}
.nav-tabs-custom>.nav-tabs>li {
    border-bottom: 1px solid transparent;
    border-top: 0;
    margin-bottom: 5px;
    margin-right: 5px;
}
.tab-content {
    background-color: transparent !important;
}    

.navbar-nav > .user-menu .user-image {
    float: left;
    width: 45px;
    height: 45px;
    margin-right: 10px;
    margin-top: -13px;
}    

.user-avatar {
    width: 45px;
    height: 45px;
}

.model-logo {
    border: 0;
}

.navbar-nav > .user-menu .user-avatar {
    margin-right: 10px;
    margin-top: -13px;    
    float: left;
}    

/* MENU */
/* ---- */
.skin .sidebar-menu li.active {
    font-weight: bold;
}
.skin .sidebar-menu li:hover {
    transform: scale(1.02);
    transition: transform 330ms ease-in-out;        
}

/* SOUS-MENU */
/* --------- */
.skin .sidebar-menu > li > .treeview-menu {
    background: transparent !important;
}
/* Normal */
.skin .sidebar-menu .treeview-menu li> a {
  font-weight: normal; 
}
/* Actif */
.skin .sidebar-menu .treeview-menu li.active> a{
  opacity: 0.6;
  font-weight: bold; 
}

/* FORMULAIRE SIDEBAR */
/* ------------------ */
/* Bordure */
.skin.sidebar-form {
  border: 1px solid;
}
/* Champ Text, Bouton */
.skin.sidebar-form input[type="text"],
.skin.sidebar-form .btn {
  opacity: 0.3;
}
.skin.sidebar-form input[type="text"] {
  opacity: 0.3;
}
.skin.sidebar-form input[type="text"]:focus,
.skin sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  opacity: 0.3;

}
.skin .sidebar-form .btn {
  opacity: 0.3;
}

/* --------------- */
/* FIL D'ARIANE */
/* ------------ */
.content-header > .breadcrumb {
    background: transparent !important;
    border-bottom : 1px solid;
}    
.content-header > .breadcrumb > a {
  font-size : 18px;
}
/* Survolé */
.content-header > .breadcrumb:hover >a {
    font-size : 18px;
    opacity: 0.6;
}

/* MENU */
/* ---- */
/* La barre de menu Survolé */
.sidebar-menu > li:hover {    
    font-weight: bold;
}

/* Menu 'ouvert' - Ajouté */
.sidebar-menu .menu-open {
}

.alert, .label {
    border : 0;
    border-radius: 0px;
    border-bottom : 3px solid;
    border-top : 3px solid;
    background-color: transparent !important;
    margin-left: 10%;
    margin-right: 10%;
    color : black;
}    

.alert .close {
    opacity: 1 !important;
}

.alert-success, .label-success {
    border-color: #00a65a !important;
    color: #00a65a !important;
}

.label-primary {
    border-color: #337ab7 !important;
    color: #337ab7 !important;
}

.label-info {
    border-color: #5bc0dc !important;
    color: #5bc0dc !important;
}

.alert.alert-success .close {
    color: #00a65a !important;    
}

.alert-danger, .alert-error, .label-danger, .label-error {
    border-color: #dd4b39 !important;
    color: #dd4b39 !important;
}

.alert.alert-danger .close, .alert.alert-error .close {
    color: #dd4b39 !important;    
}

.alert-warning, .label-warning {
    border-color: #f39c12 !important;
    color: #f39c12 !important;
}

.alert.alert-warning .close {
    color: #f39c12 !important;    
}

/*
 * Component: Box
 * --------------
 */
.box {
    border:0 !important;
    box-shadow : none;
}
.box-body {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    padding: 10px;
}
.box-header, .box-title {
  vertical-align:middle;
}    
.box.box-primary, .box.box-header {
    border:0;
    border-bottom : 1px solid;
}
.box.box-solid {
    border : none;
}    
.box-header, .box-title {
  vertical-align:middle;
}    
.box-header {
  border-bottom: 1px solid;
}
.box-header.with-border {
  border-bottom: 1px solid;
}
.box-footer {
    background : transparent;
}    

.box.box-widget.widget-user {
    border:0 !important;
}
/*
 * Component: Info Box
 * -------------------
 */
.info-box {
  box-shadow: 1px 1px 1px 1px;
}

/*
 * Component: Time line
 * --------------------
 */
.timeline-body {
  border-radius : 15px;
}
.timeline > li > .timeline-item {
  border: 0;
  border-radius : 0;
}

/*******************************************/
/*       ELEMENT DE FORMULAIRE             */
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border:0;
    border-bottom: 1px solid #ccc;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.form-control, .select-dashboard {
    border-bottom: 1px solid;
}    
.form-control.required {
    border-left: 3px solid !important;
}
.form-control.disabled {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1;
}
.form-control.like-enabled, input.like-enabled {
    background-color: transparent !important;
    border: none;
}

/******************************/
/*      MENUS PRINCIPAUX     */
.skin .sidebar-menu > li {
    background: transparent !important;
    border-bottom : 1px solid;
    margin-left : 4px;
    padding-left: 5px;
    margin-bottom : 5px;
}

.skin .sidebar-menu > li > a {
    padding-bottom: 2px;
}
li.treeview.menu-open > a {
    border-bottom-style: none !important;
    margin-right: 0px;
    padding: 0px;
}
li.treeview.menu-open {
}    
.sidebar-menu > li {
    padding: 0px 0px 10px 0px;
} 
.item_produit {
    border-radius : 0;
    border:0;
    border-top : 3px solid;
    border-bottom : 3px solid;
    margin-bottom: 5px;
    padding-left: 30px;
    height: 150px;
    font-size: 1.5em;
    font-weight: bold;
    vertical-align: middle;
    cursor:pointer;
}
.no-item-produit {
    border-radius : 0;
    border:0;
    border-top : 3px solid;
    border-bottom : 3px solid;
    height: 150px;
    font-size: 1.5em;
    font-weight: bold;
    vertical-align: middle;
    text-align:center;
    cursor:pointer;
    color:red;
}   

.item_produit_unsalable {
    background:red;
    color:white;
    font-size:14px;
    border-radius: 6px;
    margin-right: 10px;
}    
.produit_item {
    vertical-align : middle;
    cursor: pointer;
    margin-left:30%;
    margin-top: 5%;
}
ul.ul-garantie {
    border: 0 !important;
    border-radius : 0 !important;
    border-top : 3px solid !important;
    border-bottom : 3px solid !important;
}    

.modal-content {
    border-bottom : 1px solid;
    border-top : 1px solid;
}    
.modal-header {
    border-bottom : 1px solid;
}     
.modal-footer {
    border-top : 1px solid;
}     

.modal-xl {
    width: 90% !important;
}

.select2-container--default {
}

.select2-container--default .select2-selection--multiple {
    border:0;
    border-bottom: 1px solid; 
}

.select2-container--disabled .select2-selection--multiple {
    border:0;
    opacity: 0.7;
}

select.form-control.required.select2[multiple] +span>span.selection>span.select2-selection.select2-selection--multiple {
    border:0;
    border-bottom: 1px solid;
    border-left:3px solid !important;
}    

.select2-container--default .select2-search--dropdown .select2-search__field, .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 0;
    border-bottom: 3px solid;
}

.select2-container--default.disabled .select2-search--dropdown .select2-search__field, .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border:0;
    border-bottom: 1px solid;
    border-top: 1px solid;
    border-radius: 0;
    padding: 1px 10px;
}

.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
    border:0;
    border-bottom: 1px solid;
    border-radius: 0;
    padding: 1px 10px;
}

.btn.cursor-default {
    cursor: default;
}    

.btn-box-tool {
    border: 1px solid !important;
    padding : 5px 7px;
    border-radius : 50% !important;
}
.btn-box-tool-niobe-dashboard {
    border: 1px solid !important;
    font-size: 12px;
    padding : 1px 2px;
    border-radius : 50% !important;
    margin-right: 15px;
    margin-top: 1px !important;
}    
button.btn-box-tool {
    padding : 1px 7px;
}

.niobe-wait-msg, .niobe-wait-msg-modal {
    border: 1px solid;
    border-radius : 15px;
    text-align: center;
    vertical-align: middle;
    padding: 5px;
}

.niobe-spinner {
    font-size:1.5em;
}    
.niobe-border {
    border: 1px solid;
}    

.niobe-radius-5 {
    border-radius : 5px;
}
.niobe-radius-10 {
    border-radius : 10px;
}    
.niobe-radius-15 {
    border-radius : 15px;
}    
.niobe-radius-20 {
    border-radius : 20px;
}    
.niobe-radius-25 {
    border-radius : 25px;
}    
.niobe-radius-30 {
    border-radius : 30px;
}    
.niobe-round {
    border-radius : 50%;
}    
.niobe-round-i {
    border-radius : 50% !important;
}    

.wrapper .overflow-hidden {
    overflow:hidden;
}    

.input-group .input-group-addon:last-child {
}
.input-group .form-control:first-child {
}

.input-group-addon:last-child {
    border: 1px solid;
}

/* 
    Purpose    : Specific style for verification_orias.ctp - adminstration.cps
*/

.loader-circles {
    background: #357FA9;
}

th, td {
    text-align: center;
    vertical-align: middle !important;
}

th.align-left, td.align-left {
    text-align: left;
}
/* Class : partnerLock (bloque) on partner line */
.partnerLock {
    color : #FF0000;
    font-size:1.5em;    
}

/* Class : partnerUnlock (débloque) on partner line */
.partnerUnlock {
    color : #00CC00;
    font-size:1.5em;
}


/* Class check 'All' / 'None' in the header of Partenaires or Assureurs lists */
.CheckAllNone, .fa-minus, .fa-plus, .spanAction {
  cursor: pointer;
}

/* Class not Allowed */
.NotAllowedForThis {
    background:red;
    color:white;
    padding:10px;
    text-align:center;
    font-size:2em;    
}

/* Class th Administration */
.adminTh {
    text-align:center;
    font-size:1.5em;
}

/* Class td Administration */
.adminTd {
    text-align:left;
    font-size:1.2em;
}

/* Class Label Administration */
.adminLabel {
    text-align:left;
    font-size:2em;
}    

/* Class lastDate */
.lastDate {
    text-align:center;
    font-size:2em;
}    

/* Class userVerif */
.userVerif {
    text-align:center;
    font-size:1.5em;
}    

.statutColorMean {
    font-size:0.8em;    
}

.neverVerificationDone {
    border : 1px solid;
    background:transparent;
    color:orange;
}

.noStatutChanged {
    border : 1px solid;
    background:transparent;
    color:#00FF00;    
}

.partnerBlocked {
    border : 1px solid;
    background:transparent;
    color:#FF0000;
    text-align:center;
}

.tdStatutOrias, .tdBlocked {
    background: transparent;
}

.div-td-indent-2 {
    background-color:transparent;
}

.statutOriasCommun {
    white-space: nowrap;    
    text-align:center;
    margin:5px;
    padding:2px;
    color: #FFFFFF;
    border-radius: 0;
    border-top : 2px solid !important;
    border-bottom: 2px solid !important;
}

.statutOriasINSCRIT {
    border : 1px solid;
    background :transparent;
    color: #008000;
}
.statutOriasSUPPRIME {
    border : 1px solid;
    background :transparent;
    color : #ff0000;
}
.statutOriasINSCRIT_AUTRE_CATEGORIE {
    border : 1px solid;
    background:transparent;
    color : #ffa500;
}
.statutOriasJAMAIS_INSCRIT {
    border : 1px solid;
    background:transparent;
    color : #000000;
}
.statutOriasINCONNU {
    border : 1px solid;
    background: transparent;
    color : #747474;
}

.badge-status-orias {
    display:inline-block;
    border-radius: 0;
}

.synthesys-subtitle {
    font-weight: bold;
}

.niobe-label {
    display: inline-block;
    font-weight: bold;
    padding: .2em .6em .3em;
/*    white-space: nowrap; */
    vertical-align: baseline;
}

td.actions, th.actions {
    text-align: left;
}

.label-error {
    border : 1px solid;
    color: red;
    background: transparent;
}

.page-error {
    color:red;
    background: white;
    text-align: center;
    border-radius: 0px;
    border : 3px solid;
    margin : 50px;
}
.page-error-message {
    position:fixed;
    left: 40%;    
    color:red;
    background: lightgrey;
    width: 20%;
    padding: 15px;
    text-align: left;
    border-radius: 0px;
    border : 3px solid;
    margin : 50px;
}
.main-sidebar {
    padding-top: 80px;
}

.main-header .logo {
 height: 80px;
}

#logoImg.expanded {
    height: 80px !important;
    width: auto;
}

#logoImg.collapsed {
    width: 100% !important;
    height: auto;
}

.top-sticky {
  position: fixed;
  top: 0;    
}

.page-title-div {
    margin-bottom:5px;
    width:fit-content;
    height: auto;
    border: 0;
    vertical-align:middle;
    text-align: center;
    padding:5px;    
}

.page-title-span {
    font-size: 1.5em;
}
.page-subtitle-span {
    font-size: 1.5em;
    font-weight: bold;
}

.page-title-td {
}

.page-left-badges-td {
    width: 20%;
}

.page-right-badges-td {
    width: 20%;
}

.niobe-uppercase {
    text-transform: uppercase;
}

.dropdown-menu {
    border-radius: 0;
    border-top-width: 0;
    border: 0;
    box-shadow: 3px 1px 1px 0px lightgray;
}

.navbar-nav>.user-menu>.dropdown-menu, .navbar-nav>.user-menu>.dropdown-menu>.user-body {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border: 1px solid;
}

.dropdown.tasks-menu.indicator {
    text-align:center; 
    margin-right:10px;
    border-bottom: solid 2px;
    padding: 5px;
    cursor: default;
}

.dropdown-toggle>.label {
    border:0 !important;
    font-size: 1.05em;
}

.dropdown-whoisuser {    
    height: 50px;
    border-bottom: 2px solid;
    margin-right: 5px;
}

.user-footer {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background : transparent !important;
}    

.dropdown-structure {
    cursor: default;
    pointer-events: none;
    padding-left: 15px;
    padding-top: 3px;
    padding-bottom: 3px;
    width: fit-content;
    height: fit-content;
    border-bottom: 2px solid;
}

.box-login {
    border-bottom: 2px solid;
    width: 80% !important;
}

.colored-text {
/*    display: inline-block; */
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
/*    white-space: nowrap; */
    vertical-align: middle;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    background-image: none;
    border: 0;
    border-radius: 0;    
    font-weight: bold;
}

.colored-text-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.0;
}

.colored-text-primary {
    color : #337ab7;
    border-color: #337ab7;
}

.colored-text-info {
    color : #46b8da;
    border-color: #46b8da;
}

.colored-text-black {
    color : #000000;
    border-color: #000000;
}

.colored-text-basic {
    color : darkgrey;
    border-color: darkgrey;
}

.colored-text-default {
    color : grey;
    border-color: grey;
}

.colored-text-danger {
    color : #d9534f;
    border-color: #d9534f;
}

.colored-text-warning {
    color : #eea236;
    border-color: #eea236;
}

.colored-text-success {
    color : #00a65a;
    border-color: #00a65a;
}

.colored-text-pink {
    color: #ff0699;
    border-color: #ff0699;
}

.toggle-onoff {
    padding-top: 3px;
    padding-bottom: 3px;
    opacity: 0.8;
}

.toggle-onoff, .input-onoff {
    font-size:1.5em;
}

.toggle-onoff.xs {
    font-size:1.8em;
}

.toggle-onoff.disabled, .input-onoff.disabled{
    opacity: 0.6;
}

.tox-tinymce {
    border: 0 !important;
    border-top: 1px solid !important;
    border-bottom: 1px solid !important;
    border-radius: 0;
}

.tarificateur-product-img {
    width: 100%;
    max-height: 80px;
    margin-bottom: 20px;
    margin-left: 0px;
    cursor: pointer;
}

input::placeholder {
    font-style: italic;
    font-size: 0.8em;
}

.modal-div-error {
    cursor:pointer; 
    margin-top:10px;
    margin-left:10%;
    margin-right:10%;
    color:red;
    border-color:red;
    border-top: 2px solid;    
    border-bottom: 2px solid;    
}

.modal-div-error-msg {
    font-weight: bold;
    padding-top:5px;
    padding-bottom:5px;
    padding-left:10px;
    padding-right:10px;    
}

.modal-div-success {
    cursor:pointer; 
    margin-top:10px;
    margin-left:10%;
    margin-right:10%;
    color:green;
    border-color:green;
    border-top: 2px solid;    
    border-bottom: 2px solid;    
}

.modal-div-success-msg {
    font-weight: bold;
    padding-top:5px;
    padding-bottom:5px;
    padding-left:10px;
    padding-right:10px;    
}

.modal-div-warning {
    cursor:pointer; 
    margin-top:10px;
    margin-left:10%;
    margin-right:10%;
    color:orange;
    border-color:orange;
    border-top: 2px solid;    
    border-bottom: 2px solid;    
}

.modal-div-warning-msg {
    font-weight: bold;
    padding-top:5px;
    padding-bottom:5px;
    padding-left:10px;
    padding-right:10px;    
}

.pagination>li:first-child>a, .pagination>li:last-child>a {
    border-radius : 0px !important;
}

.dropdown.tasks-menu.indicator {
    text-align: center;
    margin-right: 10px;
    border: 0;
    padding: 5px;
    cursor: default;
}
.dropdown-structure {
    border : 0;
}

.dropdown-whoisuser {
    border : 1px solid;
}

.steps_line>li {
    border-radius : 0px !important;
}

.steps_line>li>span>span.span-action {
    border-radius : 0px !important;
}

.niobe-timeline .niobe-timeline-item .niobe-timeline-panel {
    border-radius: 0 !important;
}

[data-tooltip]:before {
    border-radius : 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    background-color: white !important;
    background-image: none !important;
    color : black !important;
    border : 1px solid !important;
    font-weight: normal !important;
}

.tr-user-locked {
    border-color : magenta !important;
    background-color: transparent !important;
    border : 2px solid;
    border-style: dashed;
}

.contract-amendment-timeline-breaker {
    border: 1px solid !important; 
    border-radius: 0 !important;
}

.contract-amendment-timeline-item {
    border-radius: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid !important; 
}

.email-subject, .email-content, .email-to, .email-cc, .email-from {
   border: 0 !important;
    border-radius : 0 !important;    
    border-bottom : 1px solid !important; 
}

.cities-list {
    border-radius: 0; 
    border:0;
    border-bottom: 1px solid;
}

.progress_bar_container {
    border-radius: 0; 
    border-top : solid 1px; 
    border-bottom : solid 1px; 
}

.progress_bar_bar {
    border-radius: 0; 
}
