@charset "UTF-8";


/*
    Component: Buttons
-------------------------
*/
.btn {
	display: inline-block;
	padding: 6px 12px;
/* 	font-weight: 500; */
/* 	margin-bottom: 0; */
	margin: 1px;
	font-size: 14px;
	line-height: 1.42857143;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
/* 	border: 1px solid transparent; */
	-webkit-box-shadow: 3px 3px 6px rgba(119, 119, 119, 0.16);
	-moz-box-shadow: 3px 3px 6px rgba(119, 119, 119, 0.16);
	box-shadow: 3px 3px 6px rgba(119, 119, 119, 0.16);
	background-image: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor:pointer;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #607d8b;
	border: none;
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    pointer-events: none;
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

.btn.btn-default {
	background-color: #fafafa;
	color: #607d8b;
/* 	border-color: #ddd; */
/* 	border-bottom-color: #ddd; */
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}

.btn.btn-default:hover, .btn.btn-default:active, .btn.btn-default.hover
	{
	background-color: #f4f4f4 !important;
}

.btn.btn-default.btn-flat {
	border-bottom-color: #d9dadc;
}

.btn.btn-success {
	background-color: #00a65a;
	border-color: #008d4c;
}

.btn.btn-success:hover, .btn.btn-success:active, .btn.btn-success.hover
	{
	background-color: #008d4c;
}

.btn.btn-info {
	background-color: #00c0ef;
	border-color: #00acd6;
}

.btn.btn-info:hover, .btn.btn-info:active, .btn.btn-info.hover {
	background-color: #00acd6;
}

.btn.btn-secondary {
	background-color: #CCE6F9;
	border-color: #CCd6e9;
	color: #658E9C;
}

.btn.btn-secondary:hover, .btn.btn-secondary:active, .btn.btn-secondary.hover {
	background-color: #CCE6F9;
}

.btn.btn-danger {
	background-color: #f56954;
	border-color: #f4543c;
}

.btn.btn-danger:hover, .btn.btn-danger:active, .btn.btn-danger.hover {
	background-color: #f4543c;
}

.btn.btn-warning {
	color: #546E7A;
	border-color: #ECEFF1;
	background: #ECEFF1;
}

.btn.btn-warning:hover, .btn.btn-warning:active, .btn.btn-warning.hover
	{
/* 	background-color: #dadcdd; */
}

.btn.btn-flat {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border-width: 1px;
}

.btn:active {
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	-moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn:focus {
	outline: none;
}

.btn.btn-file {
	position: relative;
	overflow: hidden;
}

.btn.btn-file>input[type='file'] {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	font-size: 100px;
	text-align: right;
	filter: alpha(opacity = 0);
	opacity: 0;
	outline: none;
	background: white;
	cursor: inherit;
	display: block;
}

.btn.btn-app {
	position: relative;
	padding: 15px 5px;
	margin: 0 0 10px 10px;
	min-width: 80px;
	height: 60px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	text-align: center;
	color: #666;
	border: 1px solid #ddd;
	background-color: #fafafa;
	font-size: 12px;
}

.btn.btn-app>.fa, .btn.btn-app>.glyphicon, .btn.btn-app>.ion {
	font-size: 20px;
	display: block;
}

.btn.btn-app:hover {
	background: #f4f4f4;
	color: #444;
	border-color: #aaa;
}

.btn.btn-app:active, .btn.btn-app:focus {
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	-moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.btn-app>.badge {
	position: absolute;
	top: -3px;
	right: -10px;
	font-size: 10px;
	font-weight: 400;
}

.btn.btn-social-old {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	opacity: 0.9;
	padding: 0;
}

.btn.btn-social-old>.fa {
	padding: 10px 0;
	width: 40px;
}

.btn.btn-social-old>.fa+span {
	border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.btn.btn-social-old span {
	padding: 10px;
}

.btn.btn-social-old:hover {
	opacity: 1;
}

.btn.btn-circle {
	width: 30px;
	height: 30px;
	line-height: 30px;
	padding: 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}


.table-btn {
	padding: 2px 8px;
	margin-right: 5px;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}

.btn-default .badge {
	color: #fff;
	background-color: #333;
}

.btn-primary {
	color: #fff;
	background-color: #6F9FB7;
	border-color: #6F9FB7;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active,
	.btn-primary.active, .open>.dropdown-toggle.btn-primary {
	color: #fff;
  background-color: #6F9FB7;
  border-color: #6F9FB7;
}

.btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary
	{
	background-image: none;
}

.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary,
	.btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover,
	.btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus,
	.btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus,
	.btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active,
	.btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active
	{
	background-color: #2e6da4;
	border-color: #2e6da4;
}

.btn-primary .badge {
	color: #337ab7;
	background-color: #fff;
}

.btn-success {
	color: #fff;
	background-color: #5cb85c;
	border-color: #4cae4c;
}

.btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active,
	.btn-success.active, .open>.dropdown-toggle.btn-success {
	color: #fff;
	background-color: #449d44;
	border-color: #398439;
}

.btn-success:active, .btn-success.active, .open>.dropdown-toggle.btn-success
	{
	background-image: none;
}

.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success,
	.btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover,
	.btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus,
	.btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus,
	.btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active,
	.btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active
	{
	background-color: #5cb85c;
	border-color: #4cae4c;
}

.btn-success .badge {
	color: #5cb85c;
	background-color: #fff;
}

.btn-info {
	color: #fff;
	background-color: #5bc0de;
	border-color: #46b8da;
}

.btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active,
	.btn-info.active, .open>.dropdown-toggle.btn-info {
	color: #fff;
	background-color: #31b0d5;
	border-color: #269abc;
}

.btn-info:active, .btn-info.active, .open>.dropdown-toggle.btn-info {
	background-image: none;
}

.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info,
	.btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover,
	.btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus,
	.btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus,
	.btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active,
	.btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active
	{
	background-color: #5bc0de;
	border-color: #46b8da;
}

.btn-info .badge {
	color: #5bc0de;
	background-color: #fff;
}

.btn-warning {
	color: #546E7A;
	border-color: #ECEFF1;
	background: #ECEFF1;
	box-shadow: 3px 3px 6px rgba(119, 119, 119, 0.16);
	border-radius: 5px;
}

.btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active,
	.btn-warning.active, .open>.dropdown-toggle.btn-warning {
/* 	color: #0e3150; */
/* 	background-color: #dadcdd; */
/* 	border-color: #aaa9a8; */
	color: #546E7A;
	border-color: #ECEFF1;
	background: #ECEFF1;
}

.btn-warning:active, .btn-warning.active, .open>.dropdown-toggle.btn-warning
	{
	background-image: none;
}

.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning,
	.btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover,
	.btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus,
	.btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus,
	.btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active,
	.btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active
	{
	background-color: #dadcdd;
	border-color: #dadcdd;
}

.btn-warning .badge {
	color: #f0ad4e;
	background-color: #fff;
}

.btn-danger {
	color: #fff;
	background-color: #d9534f;
	border-color: #d43f3a;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active,
	.btn-danger.active, .open>.dropdown-toggle.btn-danger {
	color: #fff;
	background-color: #c9302c;
	border-color: #ac2925;
}

.btn-danger:active, .btn-danger.active, .open>.dropdown-toggle.btn-danger
	{
	background-image: none;
}

.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger,
	.btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover,
	.btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus,
	.btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus,
	.btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active,
	.btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active
	{
	background-color: #d9534f;
	border-color: #d43f3a;
}

.btn-danger .badge {
	color: #d9534f;
	background-color: #fff;
}

.btn-link {
	font-weight: normal;
	color: #337ab7;
	border-radius: 0;
}

.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
	fieldset[disabled] .btn-link {
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
	border-color: transparent;
}

.btn-link:hover, .btn-link:focus {
	color: #23527c;
	text-decoration: underline;
	background-color: transparent;
}

.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus,
	fieldset[disabled] .btn-link:focus {
	color: #777;
	text-decoration: none;
}

.btn-lg, .btn-group-lg>.btn {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.33;
	border-radius: 6px;
}

.btn-sm, .btn-group-sm>.btn {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}

.btn-xs, .btn-group-xs>.btn {
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn-block+.btn-block {
	margin-top: 5px;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.sba-btn-calendar {
	margin-left: -1px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

.sba-btn-calendar {
	color : black;
	background-color: transparent;
	border : thin 
}

.btn-budget-insight {
	background: #ff6100;
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	display: inline-block;
	padding: 6px 12px;
	white-space: nowrap;
	line-height: 20px;
	margin-bottom: 0;
	text-align: center;
	border: 1px solid #ff6100;
	vertical-align: middle;
	border-radius: 4px;
	cursor:pointer;
	text-align:left;
	width:200px;
	height:40px;
}
.btn-budget-insight[disabled] {
	background: #ff9148;
	border: 1px solid #ff9148;
	cursor: default;
}
  /* custom search buttons */
.btn-search {
	color: #fff;
    background-color: #6F9FB7;
    border-color: #6F9FB7;
    border-radius: 5px;
    padding: 7px;
    margin-top: -1px;
    box-shadow: 3px 3px 6px rgba(119, 119, 119, 0.16);
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
 }
    
 .btn-search:hover {
/*  	color: #fff; */
/*     background-color: #2196F3; */
/*     border-color: #2196F3; */
/*     border-radius: 8px; */
 }
    
 .btn-search:focus,
 .btn-search.focus {
 	box-shadow: 0 0 0 .2rem rgba(0, 100, 148, 0.5)
 }
    
 .btn-search.disabled,
 .btn-search:disabled {
    color: #212529;
    background-color: #6F9FB7;
    border-color: #6F9FB7;
}
    
.btn-search:not(:disabled):not(.disabled):active,
.btn-search:not(:disabled):not(.disabled).active,
.show>.btn-search.dropdown-toggle {
    color: #212529;
    background-color: #6F9FB7;
    border-color: #6F9FB7
}
    
.btn-search:not(:disabled):not(.disabled):active:focus,
.btn-search:not(:disabled):not(.disabled).active:focus,
.show>.btn-search.dropdown-toggle:focus {
   box-shadow: 0 0 0 .2rem rgba(0, 100, 148, 0.5)
}



/**********************************/
.btn-sba-default {
	color: #607D8B;
    background-color: #FAFAFA;
    border-color: #FAFAFA;
    border-radius: 5px;
    padding: 7px;
    margin-top: -1px;
    box-shadow: 3px 3px 6px rgba(119, 119, 119, 0.16);
 }
  
    
 .btn-sba-default:focus,
 .btn-sba-default.focus {
 	box-shadow: 0 0 0 .2rem rgba(0, 100, 148, 0.5)
 }
    
 .btn-sba-default.disabled,
 .btn-sba-default:disabled {
    color: #212529;
    background-color: #FAFAFA;
    border-color: #FAFAFA;
}
    
.btn-sba-default:not(:disabled):not(.disabled):active,
.btn-sba-default:not(:disabled):not(.disabled).active,
.show>.btn-sba-default.dropdown-toggle {
    color: #212529;
    background-color: #FAFAFA;
    border-color: #FAFAFA;
}


/***************************************/
  
.btn-outline-primary {
     color: #7cc;
        background-color: transparent;
        background-image: none;
        border-color: #7cc
}
    
    .btn-outline-primary:hover {
        color: #222;
        background-color: #8ad3d3;
        border-color: #7cc
    }
    
    .btn-outline-primary:focus,
    .btn-outline-primary.focus {
        box-shadow: 0 0 0 .2rem rgba(29, 110, 158, 0.5)
    }
    
    .btn-outline-primary.disabled,
    .btn-outline-primary:disabled {
        color: #7cc;
        background-color: transparent
    }
    
    .btn-outline-primary:not(:disabled):not(.disabled):active,
    .btn-outline-primary:not(:disabled):not(.disabled).active,
    .show>.btn-outline-primary.dropdown-toggle {
        color: #212529;
        background-color: #8ad3d3;
        border-color: #7cc
    }
    
    .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
    .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
    .show>.btn-outline-primary.dropdown-toggle:focus {
        box-shadow: 0 0 0 .2rem rgba(29, 110, 158, 0.5)
    }



.btn-action-preview {
	content:url("../ressources/img/icone/previsualiser.png");
 	height: 24px;
 	vertical-align: middle;
}

.btn-action-select-merge-cut-pdf {
	content:url("../ressources/img/icone/icone_fusion split-01_64x64.png");
 	height: 18px;
 	vertical-align: middle;
}

.btn-action-comment {
	content:url("../ressources/img/nd/pen.png");
 	height: 23px;
 	vertical-align: middle;
}

.btn-action-comment-green {
	content:url("../ressources/img/nd/pen-green.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-comment-white {
	content:url("../ressources/img/nd/pen-white.png");
 	height: 23px;
 	vertical-align: middle;
}

.btn-action-prev-comment {
	content:url("../ressources/img/icone-nd/visualiser-commentaire.png");
 	height: 15px;
 	vertical-align: middle;
}

.btn-action-success {
	content:url("../ressources/img/nd/success.png");
 	height: 20px;
 	vertical-align: middle;
 	margin-right: 5px;
 	margin-top: -4px
}
.btn-action-warning {
	content:url("../ressources/img/nd/warning.png");
 	height: 20px;
 	vertical-align: middle;
 	margin-right: 5px;
 	margin-top: -4px
}

.btn-action-phone {
	content:url("../ressources/img/nd/phone.png");
 	height: 23px;
 	vertical-align: middle;
}

.btn-action-phone-add {
	content:url("../ressources/img/nd/phoneplus.png");
 	height: 23px;
 	vertical-align: middle;
}

.btn-action-export {
	content:url("../ressources/img/nd/export.png");
 	height: 23px;
 	vertical-align: middle;
}

.btn-action-mail {
	content:url("../ressources/img/nd/mail.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-mail-add {
	content:url("../ressources/img/nd/mailplus.png");
 	height: 23px;
 	vertical-align: middle;
}

.btn-action-import {
	content:url("../ressources/img/icone/Importer.png");
 	height: 28px;
 	vertical-align: middle;
}

.btn-action-download {
	content:url("../ressources/img/nd/download.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-download-white {
	content:url("../ressources/img/nd/download-white.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-trash {
	content:url("../ressources/img/nd/trash.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-trash-white {
	content:url("../ressources/img/nd/trash-white.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-information {
	content:url("../ressources/img/icone/Point-exclamation.png");
 	height: 24px;
 	vertical-align: middle;
}

.btn-action-annuler-statut {
	content:url("../ressources/img/nd/xgris.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-annuler-statut-white {
	content:url("../ressources/img/nd/xblanc.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-information-treso {
	content:url("../ressources/img/icone/Point-exclamation.png");
 	height: 16px;
 	vertical-align: middle;
}

.btn-action-header-close {
	content:url("../ressources/img/icone-nd/reinitialiser-recherche-croix.png");
 	height: 24px;
 	vertical-align: middle;
}
.btn-action-piecejointe-delete {
	content:url("../ressources/img/icone-nd/reinitialiser-recherche-croix.png");
 	height: 12px;
 	vertical-align: middle;
}

.btn-action-bi-KO {
	content:url("../ressources/img/icone-nd/compte-bancaire-pas-synchro.png");
 	height: 28px;
 	vertical-align: middle;
}

.btn-action-bi-KO-rond {
	content:url("../ressources/img/nd/warning.png");
 	height: 21px;
 	vertical-align: middle;
}

.btn-action-bi-OK {
	content:url("../ressources/img/nd/success.png");
 	height: 21px;
 	vertical-align: middle;
}

.btn-action-variation-solde {
	content:url("../ressources/img/nd/variationSolde.png");
 	height: 21px;
 	vertical-align: middle;
}

.btn-action-table-next {
 	content:url("../ressources/img/nd/flechesuivant.png");
 	height: 17px;
/*  	width:10px; */
 	vertical-align: middle;
}

.btn-action-table-end {
 	content:url("../ressources/img/nd/flechefin.png");
 	height: 17px;
 	vertical-align: middle;
}
 
 .btn-action-table-previous {
 	content:url("../ressources/img/nd/flecheprecedent.png");
 	height: 17px;
 	vertical-align: middle;
 }

.btn-action-table-first {
 	content:url("../ressources/img/nd/flecheDebut.png");
 	height: 17px;
 	vertical-align: middle;
}


.btn-action-add-doc {
 	content:url("../ressources/img/icone-nd/ajouter-un-document-2-bleu.png");
 	height: 28px;
 	vertical-align: middle;
}

.btn-action-add-doc-gris {
 	content:url("../ressources/img/icone-nd/ajouter-un-document-2-gris.png");
 	height: 28px;
 	vertical-align: middle;
}
.btn-action-add-doc-pmim {
 	content:url("../ressources/img/nd/penplus.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-add-doc-pmim-white {
 	content:url("../ressources/img/nd/penplusblanc.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-piece-perdue {
 	content:url("../ressources/img/icone-nd/signaler-comme-perdue.png");
 	height: 28px;
 	vertical-align: middle;
}
.btn-action-editer {
 	content:url("../ressources/img/icone-nd/editer.png");
 	height: 28px;
 	vertical-align: middle;
}

.btn-action-blanc {
 	content:url("../ressources/img/icone-nd/blanc.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-blanc-trait {
 	content:url("../ressources/img/icone-nd/blanc-trait.png");
 	height: 21px;
 	vertical-align: middle;
}
.btn-action-check {
 	content:url("../ressources/img/icone-nd/compte-bancaire-OK.png");
 	height: 23px;
 	vertical-align: middle;
}

.btn-action-checkgris {
 	content:url("../ressources/img/icone-nd/checkmarck-gris.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-add-file {
 	content:url("../ressources/img/nd/plus.png");
	height: 32px;
 	vertical-align: middle;
	margin-top: -5px;
}

.btn-action-add-file:hover {
 	content:url("../ressources/img/nd/plusActif.png");
	height: 32px;
 	vertical-align: middle;
	margin-top: -5px;
}


.btn-action-add-file-note {
 	content:url("../ressources/img/icone-nd/ajouter-un-document-2-bleu.png");
 	height: 28px;
 	vertical-align: middle;
}

.btn-action-share {
 	content:url("../ressources/img/nd/partager.png");
 	height: 23px;
 	vertical-align: middle;
}

.btn-action-compta {
 	content:url("../ressources/img/nd/compta.png");
 	height: 23px;
 	vertical-align: middle;
}

.btn-action-compta-annuler {
 	content:url("../ressources/img/nd/comptaAnnule.png");
 	height: 23px;
 	vertical-align: middle;
}

.btn-action-share-white {
 	content:url("../ressources/img/nd/partagerblanc.png");
 	height: 23px;
 	vertical-align: middle;
}

.btn-action-triangle-bas-sm {
	content:url("../ressources/img/icone-nd/triangle-gris.png");
 	height: 20px;
 	vertical-align: middle;
}
.btn-action-triangle-bas-gris-fonce-sm {
	content:url("../ressources/img/icone-nd/triangle-gris-fonce.png");
 	height: 20px;
 	vertical-align: middle;
}

.icon-user {
 	content:url("../ressources/img/icone/utilisateur.png");
 	height: 28px;
 	vertical-align: middle;
 }

 .icon-switch-design-client {
 	content:url("../ressources/img/icone-nd/switchDesign2.png");
 	height: 28px;
 	vertical-align: middle;
 }
 
 .icon-switch-design-admin {
 	content:url("../ressources/img/icone/utilisateur-Vue-admin.png");
 	height: 24px;
 	vertical-align: middle;
 }
 
 .btn-voir-plus-vertical {
 	content:url("../ressources/img/nd/flechebas.png");
 	height: 15px;
 	vertical-align: middle;
 	margin-bottom: 3px;
 }
 .btn-voir-plus-vertical-gris {
 	content:url("../ressources/img/nd/flechebasgris.png");
 	height: 15px;
 	vertical-align: middle;
 	margin-bottom: 3px;
 }
 
 .btn-action-solde-jour-par-jour {
 	content:url("../ressources/img/icone-nd/solde-jour-par-jour.png");
 	height: 38px;
 	vertical-align: middle;
}
 
 .icon-notification {
 	content:url("../ressources/img/icone/Notification.png");
 	height: 38px;
 	vertical-align: middle;
 	width:38px;
 	margin-top: -5px;
 }
 
 .btn-box {
 	background-color: #f7fafc;
/*     border: 1px solid #cfd8dc; */
    text-align: center;
    border-radius: 5px;
	filter:progid:DXImageTransform.Microsoft.Shadow(color=#eceff1, Direction=134, Strength=5);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-weight: bold;
	border: none;
 }
 
 .btn-box-shadow {
 	background-color: #FAFAFA;
/*     border: 1px solid #cfd8dc; */
    text-align: center;
    border-radius: 5px;
    -moz-box-shadow: 3px 3px 6px rgba(119, 119, 119, 0.16);
	-webkit-box-shadow: 3px 3px 6px rgba(119, 119, 119, 0.16);
	-o-box-shadow: 3px 3px 6px rgba(119, 119, 119, 0.16);
	box-shadow: 3px 3px 6px rgba(119, 119, 119, 0.16);

	filter:progid:DXImageTransform.Microsoft.Shadow(color=#eceff1, Direction=134, Strength=5);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
 }
 
 .btn-box-padding {
 	padding: 5px;
 }
 
 .btn-action-padding {
 	padding: 2px;
 }
 
 .btn-action-visible {
	content:url("../ressources/img/nd/visualiser.png");
 	height: 23px;
 	vertical-align: middle;
}

 .btn-action-trombone {
	content:url("../ressources/img/nd/trombone.png");
 	height: 23px;
 	vertical-align: middle;
}

.btn-action-cacher {
	content:url("../ressources/img/nd/cacher.png");
 	height: 23px;
 	vertical-align: middle;
}

.icon-switch-design-client1 {
 	content:url("../ressources/img/nd/switchDesign.png");
 	height: 20px;
 	vertical-align: middle;
 }
 
 .btn-action-meta {
	content:url("../ressources/img/nd/edit-meta.png");
 	height: 23px;
 	vertical-align: middle;
}
 
.btn-action-rejet {
	content:url("../ressources/img/nd/mail-rejet.png");
 	height: 23px;
 	vertical-align: middle;
} 
.btn-action-decoupe {
	content:url("../ressources/img/nd/valide-decoupe.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-decoupe-menu {
	content:url("../ressources/img/nd/valide-decoupe.png");
 	height: 35px;
 	vertical-align: middle;
 	margin-left: 41px;
} 
.btn-action-retituer {
	content:url("../ressources/img/nd/restituer-corbeille.png");
 	height: 23px;
 	vertical-align: middle;
} 
.btn-action-taiter-T {
	content:url("../ressources/img/nd/info.png");
 	height: 23px;
 	vertical-align: middle;
}
.btn-action-taiter-NT {
	content:url("../ressources/img/nd/info-corail.png");
 	height: 23px;
 	vertical-align: middle;
} 

/* .btn-box:hover { */
/*   -moz-box-shadow: 1px 1px 5px 5px #9b9b9b; */
/*   -webkit-box-shadow: 1px 1px 5px 5px #9b9b9b; */
/*   -o-box-shadow: 1px 1px 5px 5px #9b9b9b; */
/*   box-shadow: 1px 1px 5px 5px #9b9b9b; */
/*   border: 1px solid gray; */
/*   background-color: #f7fafc; */
/* } */
 
 .item-select:hover{
	border-left: 2px solid #E75F5F; 
	cursor: pointer;
	width: 100%;
	background-color: #fafafa;
}

.btn-action-zoom-plus {
	content:url("../ressources/img/nd/zoomplusblanc.png");
 	height: 17px;
 	vertical-align: middle;
}
.btn-action-zoom-moins {
	content:url("../ressources/img/nd/zoommoinsblanc.png");
 	height: 17px;
 	vertical-align: middle;
}

.btn-add-client {
	content:url("../ressources/img/nd/add-client.png");
 	height: 20px;
 	vertical-align: middle;
}
.btn-add-client-white {
	content:url("../ressources/img/nd/add-client-white.png");
 	height: 16px;
 	vertical-align: middle;
}

.btn-action-state {
	content:url("../ressources/img/nd/stateDTL.png");
 	height: 29px;
 	vertical-align: middle;
}
 
/*
 * Mobile 
 */
.mobile .btn-action-download {
	content:url("../ressources/img/nd/download.png");
 	height: 16px;
 	vertical-align: middle;
}
.mobile .btn-action-download-white {
	content:url("../ressources/img/nd/download-white.png");
 	height: 16px;
 	vertical-align: middle;
}
.mobile .btn-action-trash {
	content:url("../ressources/img/nd/trash.png");
 	height: 16px;
 	vertical-align: middle;
}
.mobile .btn-action-trash-white {
	content:url("../ressources/img/nd/trash-white.png");
 	height: 16px;
 	vertical-align: middle;
}

.mobile .btn-action-comment {
	content:url("../ressources/img/nd/pen.png");
 	height: 16px;
 	vertical-align: middle;
}

.mobile .btn-action-comment-green {
	content:url("../ressources/img/nd/pen-green.png");
 	height: 16px;
 	vertical-align: middle;
}
.mobile .btn-action-comment-white {
	content:url("../ressources/img/nd/pen-white.png");
 	height: 16px;
 	vertical-align: middle;
}

.mobile .btn-action-prev-comment {
	content:url("../ressources/img/icone-nd/visualiser-commentaire.png");
 	height: 13px;
 	vertical-align: middle;
}
.mobile .btn-action-prev-doc {
	content:url("../ressources/img/icone-nd/loupe.png");
 	height: 13px;
 	vertical-align: middle;
}
.mobile .btn-action-prev-doc-white {
	content:url("../ressources/img/icone-nd/loupe-white.png");
 	height: 13px;
 	vertical-align: middle;
}

