﻿/****************************************************************/
/*                                                              */
/*                          css Ozytis                          */
/*                                                              */
/****************************************************************/

/* utile
----------------------------------------------------------
.vert {
    color: #acc71b;
}

.orange {
    color: #f94d00;
}
*/

/* général
----------------------------------------------------------*/
html, body {
    background-color: #1b2125;
}

a {
    text-decoration: none;
    color: #0077CC;
}

.clear {
    clear: both;
}

input[type="submit"], input[type="button"], button, .btn {
    background-color: black;
    color: white;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    padding: 7px;
    border-radius: 4px;
    text-shadow: 0px 1px 0px black;
    margin-top: 5px;
}

    button[type="submit"], form a.btn-cancel {
        float: right;
        margin: 10px;
    }

.btn {
    margin-top: 0;
}

    input[type="submit"]:hover, input[type="submit"]:focus,
    input[type="button"]:hover, input[type="button"]:focus,
    button:hover,
    .btn:hover, .btn.active {
        background-color: #f94d00;
        box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.7), -1px 2px 20px rgba(255, 255, 255, 0.6) inset;
        text-shadow: 0px 0px 4px black;
        color: white;
    }

.input-group.date {
    height: 28px;
}

.date .input-group-addon {
    padding: 0px;
}

button:hover.close, button:focus.close {
    background-color: initial;
    box-shadow: none;
}

input[type="submit"]:active, input[type="button"]:active, button:active, .btn:active,
input[type="submit"].active, input[type="button"].active, button.active, .btn.active {
    box-shadow: -1px 2px 10px 3px rgba(0, 0, 0, 0.5) inset;
}

.checkbox-all {
    font-weight: bold;
}

.option input[type='checkbox'] {
    margin-right: 4px;
}

label.required:after {
    content: ' *';
    color: red;
}

.btn.toggle, .btn.btn-small {
    display: inline-block;
    font-size: 14px;
    background-color: #e1e1e1;
    color: #6d6d6d;
    padding: 3px 8px;
    text-shadow: none;
}

.btn.btn-small {
	padding: 0 4px 2px 4px;
	position: relative;
	top: -2px;
}

    .btn.toggle.pressed {
        color: black;
        box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.5) inset;
    }

    .btn.toggle:hover {
        text-shadow: 0px 0px 5px rgba(255,255,255,1);
    }

.content-wrapper {
    margin: 0 auto;
    max-width: 98%;
}

table th, table td {
    text-align: center;
}

.titleFiltre {
    cursor: pointer;
}

.blockUI h1 {
    margin: 20px;
}

.tooltip-wide + div .tooltip-inner {
    max-width: 800px;
}

.tooltip-inner {
    color: black;
    background-color: rgb(247,255,196);
    border-style: solid;
    border-width: 1px;
    border-color: black;
    box-shadow: 0px 0px 8px rgba(150, 150, 150, 1);
}

.inline-list {
    display: inline;
    list-style: none;
}

    .inline-list li {
        display: inline;
    }

        .inline-list li:after {
            content: " ; ";
        }

        .inline-list li:last-child:after {
            content: "";
        }

/* header
----------------------------------------------------------*/
header .content-wrapper {
    height: 105px;
}

header {
    border-bottom: solid black 1px;
}

/* menu
----------------------------------------------------------*/
ul#menu {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 5px;
    padding: 0;
    padding-top: 40px;
    text-align: right;
    display: inline-block;
}

    ul#menu li {
        display: inline;
        list-style: none;
        padding-left: 15px;
        position: relative;
    }

        ul#menu li a {
            padding: 20px;
            color: white;
            text-decoration: none;
            cursor: pointer;
        }

        ul#menu li:hover > a, ul#menu li.active > a {
            background-color: #f94d00;
            text-shadow: 1px 1px black;
            box-shadow: -1px 2px 10px 3px rgba(0, 0, 0, 0.5) inset;
        }

ul#loginInfo {
    color: white;
    display: inline-block;
    list-style: none;
    padding: 5px;
    padding-left: 15px;
    margin: 0px;
}

    ul#loginInfo a {
        color: white;
        padding: 0px;
    }

ul#menu li ul {
    display: none;
    position: absolute;
    z-index: 100;
    left: 15px;
    top: 40px;
    width: 300px;
    padding: 0;
    background-color: #1b2125;
    border: 1px solid #f94d00;
}

    ul#menu li ul li {
        padding: 0;
    }

        ul#menu li ul li, ul#menu li ul li a {
            width: 100%;
            display: inline-block;
            text-align: left;
        }

ul#menu li:hover ul {
    display: block;
}

/* body
----------------------------------------------------------*/
#body {
    background-color: #EEFF7F;
    clear: both;
    padding: 25px 0;
}

    #body section.main-content {
        box-shadow: 1px 1px 12px #555;
        background-color: white;
        padding: 20px 15px;
    }

        #body section.main-content > h2, #body section.main-content > h4 {
            margin-top: 0px; /* don't cumulate padding of parent and margin of title, to save some space on top of the page */
        }

h3 {
    background-image: -moz-linear-gradient(left, #f94d00, white);
    background-image: -webkit-linear-gradient(left, #f94d00, white);
    background-image: -o-linear-gradient(left, #f94d00, white);
    background-image: linear-gradient(to right, #f94d00, white); /* for IE 10 and greater */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f94d00', endColorstr='#ffffff', gradientType='1'); /* for IE 8 and 9 */
    padding: 10px 10px 10px 40px;
    font-size: large;
    margin: 20px -15px;
    color: white;
    -moz-box-shadow: 0px 4px 6px -4px #656565;
    -webkit-box-shadow: 0px 4px 6px -4px #656565;
    -o-box-shadow: 0px 4px 6px -4px #656565;
    box-shadow: 0px 4px 6px -4px #656565;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.modal-dialog {
    margin-top: 15px;
    margin-bottom: 15px;
}

.modal-header {
    border-bottom: none;
    padding-top: 0px;
    padding-bottom: 5px;
}

    .modal-header .close {
        padding-top: 10px;
    }

    .modal-header h3 {
        margin: 0px -15px 0;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

.modal-body h4 {
    margin-top: 10px;
    margin-bottom: 5px;
}

.modal-body h5 {
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 1.4em;
}

.modal-body input[type=text], .modal-body input[type=number] {
    width: 100%;
}

.bloc-tr {
    text-align: right;
}

/*.modal-body { padding: 0px; }*/

.form-control {
    padding: 2px;
    height: 28px;
}

/* transfers the margin from the input to the input-group (otherwise the addon is incorrectly sized) */
.input-group input {
    margin: 0;
}

.input-group {
    margin-top: 5px;
    margin-bottom: 6px;
}

.input-group-addon {
    padding: 4px;
    cursor: pointer;
    position: static;
}

    .input-group-addon:hover {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    }

.preferredSwitch.preferred:before {
    content: "\e006";
    color: yellow;
    text-shadow: 0 0 2px #000; /* Firefox 3.5+, Opera 9+, Safari 1+, Chrome, IE10 */
    filter: progid:DXImageTransform.Microsoft.Glow(Color=#000000,Strength=1); /* IE<10 */
}

.preferredSwitch:not(.preferred):before {
    content: "\e007";
}

select {
    height: 28px;
}

.custom-dropdown [data-toggle='dropdown'] {
    height: 28px;
    border: 1px solid #E2E2E2;
    padding-right: 4px;
    margin-top: 5px;
    font-size: 1.2em;
    cursor: default;
}

.custom-dropdown .option {
    width: 100%;
}

.packed .col-md-1, .packed .col-md-2, .packed .col-md-3, .packed .col-md-4, .packed .col-md-5, .packed .col-md-6, .packed .col-md-7, .packed .col-md-8, .packed .col-md-9, .packed .col-md-10, .packed .col-md-11, .packed .col-md-12 {
    padding-left: 5px;
    padding-right: 5px;
}

h2 {
    font-weight: 800;
    float: right;
    padding: 0 30px 20px 0;
}

h3 {
    clear: both;
}

.modal-content h3 {
    clear: none;
}

.dataTables_filter input[type="text"] {
    width: 200px;
    font-size: 1em;
    margin: 0;
    padding: 0;
}

/* featured
----------------------------------------------------------*/

.featured .content-wrapper {
    background-color: #f94d00;
    color: white;
    padding: 20px 40px 30px 40px;
}

/* footer
----------------------------------------------------------*/

footer {
    /*background-image: url('images/motif-header.gif');*/
    border-top: solid black 1px;
    color: #acc71b;
    height: 60px;
    padding: 40px 0 50px;
    clear: both;
    font-size: .9em;
}

    footer a {
        color: #acc71b;
        background-color: none;
    }

        footer a:hover {
            color: #acc71b;
            background-color: #f94d00;
            text-shadow: 1px 1px black;
        }

/* dashboard
----------------------------------------------------------*/

.dataTables_wrapper {
    margin: 30px 0;
}

/* globalFile
----------------------------------------------------------*/

form.filter {
    font-size: 1.2em;
    width: 100%;
}

    form.filter input[type="submit"] {
        margin: auto;
        display: block;
    }

    form.filter .form-element {
        line-height: 40px;
    }

        form.filter .form-element input {
            line-height: initial;
            max-width: 223px;
        }

        form.filter .form-element label:first-child {
            width: 330px;
            display: inline-block;
            text-align: right;
            margin-right: 20px;
            font-weight: bold;
        }

#CompanyCoordinateModal #map {
    height: 450px;
    width: 100%;
    margin-bottom: 10px;
}

/* add bootstrap
----------------------------------------------------------*/
.datepicker table {
    margin: 0.75em;
}

.datepicker .switch {
    text-align: center;
}

/* add datatable theme
----------------------------------------------------------*/

table.dataTable tr.even {
    background-color: #f0f8c3;
}

table.dataTable tr.odd td.sorting_1 {
    background-color: #d3e378;
}

table.dataTable tr.odd, table.dataTable tr.even td.sorting_1 {
    background-color: #e1ef95;
}

tr.highlight {
    font-weight: bold;
    color: #f94d00;
}

table.dataTable tr.even.highlight {
    background-color: #feffb1;
}

table.dataTable tr.odd.highlight td.sorting_1 {
    background-color: #f1f400;
}

table.dataTable tr.odd.highlight, table.dataTable tr.even.highlight td.sorting_1 {
    background-color: #fdff60;
}

/*
table.dataTable th {
    -webkit-transform:rotate(270deg);
    -moz-transform:rotate(270deg);
    -o-transform:rotate(270deg);
    transform:rotate(270deg);
}
 */

.no-propagation {
	cursor: default;
}

.clickable {
    cursor: pointer;
}

.clickable-hover {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(130, 130, 130);
    box-shadow: 0px 0px 8px rgba(150, 150, 150, 1);
}

/*form label {
    display: inline-block; width: 140px;
}*/

.modal-dialog {
    width: 90% !important;
    z-index: inherit; /* avoids problems in Chrome when trying to get the z-index by javascript */
}

select {
    width: 100%;
    font-size: 1.2em;
}

.dataTables_length select {
    width: initial;
}

.option {
    float: left;
    padding-right: 15px;
    padding-top: 0;
}

h4 {
    font-size: 1.5em;
}

.filter {
    position: relative;
}

    .filter button {
        position: absolute;
        bottom: 0px;
        right: 50px;
        float: none;
    }

        .filter button[type='reset'] {
            top: 0px;
            bottom: auto;
        }

    .filter .form-element {
        min-height: 41px;
        line-height: 40px;
    }

.form-element {
    margin-bottom: 5px;
}

.modal #filter-form .form-element {
	margin-left: -80px;
}

.dateCourt div {
	width: 100px;
	display: inline-block;
	vertical-align: middle;
}

.form-element label {
    text-align: right;
}

.addListing {
    display: none;
}

textarea {
    font-family: inherit;
    width: 100%;
}

.clavier > div.col-md-4 {
    width: 50px;
}

.clavier div p {
    margin: 0px;
}

.clavier a, .clavier span, .clavier span:hover {
    width: 40px;
    margin-bottom: 10px;
    background-color: grey;
    padding-left: 0;
    padding-right: 0;
    text-shadow: 0px 1px 0 grey, 0px -1px 0 grey, 1px 0px 0 grey, -1px 0px 0 grey;
}

tr .clavier a, tr .clavier span, tr .clavier span:hover {
    margin-bottom: 0px;
}

.clavier span:hover {
    box-shadow: none;
    border-color: #CCCCCC;
}

.clavier span {
    cursor: default;
}

    .clavier a.btnSelected, .clavier span.btnSelected {
        background-color: #f94d00;
    }

.clavier.clavTel a.btn:hover, .clavier.clavTel a.btnSelected, .clavier.clavTel span.btnSelected {
    background-color: yellow;
}

.clavier.clavMail a.btn:hover, .clavier.clavMail a.btnSelected, .clavier.clavMail span.btnSelected {
    background-color: pink;
}

.clavier.clavForm a.btn:hover, .clavier.clavForm a.btnSelected, .clavier.clavForm span.btnSelected {
    background-color: blue;
}

.clavier.clavAutre a.btn:hover, .clavier.clavAutre a.btnSelected, .clavier.clavAutre span.btnSelected {
    background-color: black;
}

#ConfirmedToggle:after {
    content: 'Pas encore confirmé';
}

#ConfirmedToggle.pressed:after {
    content: 'Confirmé';
}

form.black-list {
    background-image: url('images/stripes.png');
}

#BlackListToggle.pressed {
    background-color: #f94d00;
}

h4 {
    font-size: 2em;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cards {
    width: 151px;
    height: 151px;
    position: relative;
    float: left;
    margin: 0 10px;
    cursor: pointer;
}

.card {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 900;
    width: inherit;
    height: inherit;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 12px #555;
    padding: 4px;
    margin: 0 5px;
    width: 151px;
    background-size: 100%;
    background-repeat: no-repeat !important;
    background-position: center center;
    -webkit-transform: rotateX(0deg) rotateY(360deg);
    -moz-transform: rotateX(0deg) rotateY(360deg);
    transform: rotateX(0deg) rotateY(360deg);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

    .card .CompanyName {
        display: none;
        margin-top: 60px;
        text-align: center;
    }

.cards:hover .card {
    z-index: 1000;
    background: #D8D8D8;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    -moz-transform: rotateX(0deg) rotateY(0deg);
    transform: rotateX(0deg) rotateY(0deg);
    box-shadow: 1px 1px 12px rgba(150, 150, 150, 1);
    border: 1px solid #ccc;
    background-size: 100%;
    background-repeat: no-repeat !important;
    background-position: center center;
    background: none !important;
}

    .cards:hover .card .CompanyName {
        display: block;
    }

/* Bootstrap V OG */
.col-md-og-15 {
    width: 100%;
}

    .col-md-og-15 .col-md-og-3 {
        width: 20%;
    }

.col-md-og-15, .col-md-og-3 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 992px) {
    .col-md-og-15, .col-md-og-3 {
        float: left;
    }

    .col-md-og-15 {
        width: 100%;
    }
}
/* Bootstrap V OG */

ul li {
    list-style: none;
}

table.table ul {
    -webkit-padding-start: 0;
}

table.table thead tr {
    background-color: #FFE8DD;
    border: solid #DDDDDD 1px;
}

.dynamic-loading-container {
    position: relative;
	min-height: 50px;
}

.dynamic-loading {
    background-color: rgba(255,255,255,0.8);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Scripts/tinymce/skins/lightgray/img/loader.gif');
    background-repeat: no-repeat;
    background-position: center;
}

.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}



.mt-12 {
    margin-top: 12px;
}

.btn-minimal {
    font-size: 0.8em;
}

.action-alert {
    color: red;
}

.form-horizontal.fixed-width-labels .form-group, .fixed-width-labels .form-group {
    margin-left: 0;
    margin-right: 0;
}

.fixed-width-labels label.control-label {
    width: 160px;
    display: inline-block;
    float: left;
}

.fixed-width-labels .form-group .controls {
    margin-left: 165px;
}

.fixed-width-labels .long-label label.control-label { width: 250px; }
.fixed-width-labels .form-group.long-label .controls, .fixed-width-labels .long-label .form-group .controls {
	margin-left: 255px;
}

.form-group .controls .select2-container {
    width: 100%;
    margin: 5px 0 6px 0;
}

.form-group.form-group-merge {
	display: flex;
}

.form-group.form-group-merge .control-label:not(:first-child) {
	width: auto;
	display: inline-block;
	margin-left: 5px;
}

.form-group.form-group-merge .controls {
	display: inline-block;
	margin-left: 5px;
	flex-grow: 1;
	width: 100px;
}

#filezone {
    margin-bottom: 10px;
}

    #filezone .row, #existing-file-zone .row {
        margin-left: 5px;
        margin-bottom: 5px;
    }


#dropfile {
    height: 100px;
    border: 3px dashed #BBBBBB;
    line-height: 90px;
    text-align: center;
}
#actionModal table{
    width:100%;
    
}

.action_table tr.load-modal{
    cursor:pointer;
}
#actionModal table thead{
 background-color:rgba(249, 77, 0, 0.8);
}

#actionModal table tbody tr:nth-child(2n){
 background-color:whitesmoke;
}

.select2-container input[type=text] {
    line-height: 0;
}

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

#dataConfirmModal, #alertModal {
    overflow-y: hidden;
    margin-top: 10%;
    margin-left: 40%;
}

#reportModal {
    width: 600px;
    overflow-y: hidden;
    margin-top: 10%;
    margin-left: 40%;
}

.edit-employee-form .actions-table {
    margin-left: 20px;
    margin-Right: 20px;
}

.partial .dynamic-loading-container {
    width: 98%;
    margin-left: 1%;
}

#partial_manufacturer .status-date {
    height: 39px;
    line-height: 35px;
}

#partial_action .button-header {
	height: 0;
	overflow: visible;
	position: relative;
	top: -30px
}

#partial_action .future-actions .dataTables_filter {
	right: 140px;
}

.button-header {
    margin-bottom: 5px;
    margin-right: 1.5%;
}

    .button-header button[type="submit"] {
        margin: 1px;
    }

#editEmployeeModal {
    line-height: 1.1;
}

.compact-form .form-group {
	margin-bottom: 1px;
}

.editEmployeeModal label.control-label {
    margin-bottom: 0;
}

.loader {
    background-image: url('../Scripts/tinymce/skins/lightgray/img/loader.gif');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

	background-color: rgba(255,255,255,0.5) !important;
	color: rgba(0,0,0,0) !important;
	text-shadow: none !important;
	cursor: default !important;
	box-shadow: none !important;
}

.loader.loader-default-size {
	height: 31px;
}

#partial_collaborator tr.selected, #partial_collaborator tr.selected td.sorting_1 {
    background-color: lightgray;
}

.dynamic-loading-container table thead tr th {
    vertical-align: middle;
}

#employee-filter-form label.control-label {
    width: 160px;
    display: table-cell;
    float: left;
    /*line-height:2.5;*/
    padding-top: 6px;
    margin-bottom: 0;
    text-align: right;
}

#employee-filter-form .form-group {
    margin-bottom: 1px;
    display: table;
    vertical-align: middle;
}

    #employee-filter-form .form-group .controls {
        margin-left: 165px;
    }

        #employee-filter-form .form-group .controls .fit-input {
            width: 100px;
            display: inline-block;
            vertical-align: middle;
        }


.input-prefix {
    width: calc(100% - 25px) !important;
    display: inline-block;
}
.input-prefix + span {
    margin-left:5px;
}

.mb12{
    margin-bottom:12px !important;
}

table.export-meetings-table {
	border: 1px solid black;
	margin-left: auto;
	margin-right: auto;
}

table.export-meetings-table thead {
	background-color: darkgray;
}

table.export-meetings-table tbody tr:nth-child(odd) {
	background: #f2f2f2;
}

table.export-meetings-table tbody tr:nth-child(even) {
	background: #e4e4e4;
}

table.export-meetings-table td, table.simple-table td {
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
}

.manufacturer-header {
	position: relative;
	height: 0;
	overflow: visible;
	top: -80px;
}

.employee-header {
	position: relative;
	height: 0;
	overflow: visible;
	top: -35px;
}

#partial_employee .edit-info, #partial_manufacturer .edit-info {
	position: relative;
	height: 0;
	overflow: visible;
	top: -24px;
	left: 180px;
}

#partial_manufacturer .edit-info {
	top: -65px;
}

#partial_manufacturer .creation-info {
	top: 66px;
	left: 50%;
	width: calc(50% - 200px);
	position: absolute;
	display: inline-block;
}

#partial_collaborator .dataTables_length {
	display: none;
}

.packed-table .dataTables_wrapper {
	margin-top: 5px;
	margin-bottom: 10px;
}

.packed-table .dataTables_length, .packed-table .dataTables_filter {
	position: relative;
	height: 0;
	overflow: visible;
	top: -30px;
}

.packed-table .dataTables_length {
	top: -42px;
	left: 250px;
}

.controls span.info {
	position: relative;
	top: 7px;
	padding-left: 5px;
}

.remove-file:hover {
	cursor: pointer;
	color: gray;
}

.intranet-index a img {
	display: inline-block;
	border: 1px solid white;
	border-radius: 4px;
}

.intranet-index a span {
	color: black;
	font-weight: bold;
	font-size: 1.5em;
}

.intranet-index a:hover {
	text-decoration: none;
}

.intranet-index a:hover img {
	border: 1px solid gray;
}

.remove-existing-file {
	cursor: pointer;
}

.remove-existing-file:hover {
	color: darkred;
}

.btn-dim {
	background-color: #aaa;
	color: #eee;
	text-shadow: none;
}

.manufacturer-name {
	font-size: 2.5em;
	font-weight: bold;
	padding: 20px;
	display: inline-block;
	border: 1px solid black;
}

.colorpicker.dropdown-menu {
	z-index: 2000;
}

/* hack to hide the options until select2 has properly initialized itself */
.select2-not-ready select { height: 38px; }
.select2-not-ready select option { display: none; }

.auto-deleting {
	opacity: 0.5;
}

.widget-readonly label {
	color: gray;
}

/*CSS pour site de test*/
.preprod-text{
    color:red;
}

.integrated-iframe {
	width: 100%;
	height: 100%;
	border: none;
	padding: 0;
	margin: 0;
}

.editMeetingTheme {
    display: flex;
    margin: 0;
}

.editMeetingTheme > label {
    width: 142px !important;
    text-align: right;
    padding: 0 14px 0 !important;
    align-self: center;
}

.editMeetingTheme > div.controls {
    flex-grow: 1;
    margin: 0 !important;
}

.row {
    padding: 3px 0;
}