﻿body {
    background: url('../images/background-site.jpg') bottom center;
    background-attachment: fixed;
    background-size: cover;
}

a {
    color: #e74784;
}

/* ---------------------------- */
/* Elements généraux */
/* ---------------------------- */

/*.btn
{
	height:40px;
	background-color:#ed4c89;
	background: linear-gradient(to bottom, #ff5798, #e74683);
	border-radius:5px;
	border:none;
	color:#fff;
	text-transform:uppercase;
	box-sizing:border-box;
	user-select: none;
}*/

.form-group.required label:after {
    content: " *";
    color: red;
    display: inline;
}

button.btn.no-background {
    background: transparent;
    color: #ed4c89;
}

    button.btn.no-background > a {
    }

button.btn.grey {
    background: linear-gradient(to bottom, #f0f0f0, #e3e3e3);
    color: #8e8e8e;
}

    button.btn.grey:hover {
        background: #f0f0f0;
    }

button.btn.disable {
    background: #b7b7b8;
    border-color: #b7b7b8;
}

    button.btn.disable:hover {
        background: #c4c4c4;
    }

button.btn > a {
    color: #fff;
    cursor: pointer;
    display: table;
    padding: 7px 5px;
}

    button.btn > a * {
        display: table-cell;
        vertical-align: middle;
    }

.btn > ul + a:after {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f0dd";
    vertical-align: middle;
    padding-left: 5px;
}

button.btn > ul + a:after {
}

span.btn > ul + a:after {
}

button.btn > a > i {
    font-size: 22px !important;
    vertical-align: middle;
}

button.btn > a > span {
    vertical-align: middle;
}

button.btn > a > i + span {
    padding-left: 7px;
}



.btn.right-align > .context-menu > li {
    text-align: right;
}

.btn.right-align > .context-menu {
    right: 0px;
    left: inherit;
}

    .btn.right-align > .context-menu > li i {
        margin-left: 5px;
    }

/* ---------------------------- */
/* context-menu */
/* ---------------------------- */

.context-menu {
    display: none;
    position: absolute;
    left: 0px;
    width: 200px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 0px 10px #aaa;
    overflow: hidden;
    text-transform: uppercase;
    z-index: 10;
}

button.btn .context-menu {
    top: 45px;
}

span.btn .context-menu {
    top: 25px;
}

.context-menu > li {
    list-style-type: none;
}

    .context-menu > li > a {
        display: block;
        border-bottom: 1px solid #eee;
        padding: 8px 7px;
        color: #fe246e;
    }

span.btn .context-menu > li > a {
    padding: 4px 7px;
}

.context-menu > li i {
    font-size: 20px;
}

.context-menu > li > a:hover {
    background-color: #fe246e;
    color: #fff;
}


input[type=text].btn {
    border-radius: 5px;
    border-left: 10px solid #ed4c89;
}

#menu-exporter.context-menu {
    width: 270px;
}

#menu-article-tri.context-menu {
    width: 175px;
}


header {
}

    header > .header-one {
        position: fixed;
        width: 100%;
        box-sizing: border-box;
        background-color: #003779;
        padding: 10px;
        z-index: 1001;
        box-shadow: 0 0 15px #000;
    }

.navbar {
    position: fixed;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 0 15px #000;
    background-color: #003779;
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
}

    .navbar .logo {
        margin-left: 10px;
        margin-top: 7px;
        box-shadow: 1px 1px 3px #1d1d1d;
        width: 40px;
    }

    .navbar .logo-text {
        margin-left: 7px;
        margin-top: 3px;
        width: auto;
        height: 30px;
    }

.environment-banner {
    width: 100%;
    height: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

    .environment-banner.localhost {
        background-color: red;
    }

    .environment-banner.testing {
        background-color: orange;
    }

    .environment-banner.pre-production {
        background-color: yellow;
    }

    .environment-banner.production {
        display: none;
    }

@media (min-width: 768px) {
    .navbar .logo {
        margin-left: -5px;
    }
}

navbar-right ul > li > a {
    color: #ff0000;
}

    navbar-right ul > li > a:hover {
        color: #ffffff;
    }

/* ---------------------------- */
/* Notification */
/* ---------------------------- */

#btn-notification.new, .navbar #btn-fidelite {
    background-color: #002858;
    background: linear-gradient(to bottom, #002858, #07192f);
}

.navbar #btn-fidelite {
    height: 52px;
}

#btn-notification.new i, .navbar #btn-fidelite {
    color: #ef4c8b;
}

#btn-notification.new:hover i {
    color: #fff;
}

#btn-notification i {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
}

.notification {
    width: 450px;
    padding: 0;
    font-size: 12px;
}

    .notification div.header {
        padding: 8px;
    }

        .notification div.header a {
            float: right;
        }

    .notification ul {
        list-style-type: none;
    }

    .notification li {
        display: table;
        padding: 7px;
        width: 100%;
        background-color: #f9f9f9;
        border-bottom: 1px solid #ededed;
        font-size: 11px;
        border-left: 4px solid #e8e8e8;
        cursor: pointer;
    }

        .notification li.unread {
            border-left: 4px solid #ef4c8b;
        }

        .notification li:hover {
            background-color: #e5f7ff;
            transition: all 0.1s linear;
        }

        .notification li > * {
            display: table-cell;
            vertical-align: top;
        }

        .notification li > div.image {
            width: 50px;
        }

        .notification li > div.texte {
            padding: 0 5px;
        }

        .notification li .date {
            display: block;
        }

        .notification li > div.actions {
            width: 15px;
            text-align: right;
            visibility: hidden;
            vertical-align: middle;
        }

        .notification li:hover > div.actions {
            visibility: visible;
        }

    .notification > div:last-of-type {
        text-align: center;
        padding: 8px;
        border-top: 1px solid #ededed;
        margin-top: 7px;
    }

/* ---------------------------- */
/* Liste des notification */
/* ---------------------------- */

.list-notifications .notification .image {
    width: 50px;
}

.list-notifications .notification td.statut {
    width: 4px;
    padding: 0;
}

.list-notifications .notification.unread td.statut {
    background-color: #ef4c8b;
}






/* ---------------------------- */
/* Menu de navigation principal */
/* ---------------------------- */
.main-menu {
    width: 800px;
    padding: 0;
    font-size: inherit;
}

    .main-menu > .group {
        background-color: #fff;
    }


    .main-menu a.item-menu {
        width: 50%;
        display: block;
        padding: 8px;
        overflow: hidden;
        float: left;
        border-bottom: 1px solid #efefef;
    }

    .main-menu a.disabled {
        background-color: #f0f0f0;
        cursor: not-allowed;
    }

    .main-menu a.item-menu:hover {
        background-color: #e4f0ff;
        border-bottom: 1px solid #d6e4f6;
    }

    .main-menu a.disabled:hover {
        background-color: #e9e9e9;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-menu a > img {
        float: left;
    }

    .main-menu a.disabled > img {
        filter: grayscale(100%);
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
        -o-filter: grayscale(100%);
    }

    .main-menu a.item-menu > div.text {
        float: left;
        margin-left: 5px;
        width: 300px;
    }

        .main-menu a.item-menu > div.text > span.title {
            color: #003779;
            text-transform: uppercase;
            display: block;
            font-weight: bold;
        }

    .main-menu a.disabled > div.text > span.title {
        color: #919191;
    }


    .main-menu a.item-menu > div.text > span.description {
        color: #555;
        font-size: 11px;
    }


    .main-menu a.disabled > div.text > span.description {
        color: #6e6e6e;
        font-style: italic;
    }

    .main-menu > .group > .title {
        background-color: #f4f4f4;
        color: #505050;
        text-align: right;
        padding: 10px;
        border-bottom: 1px solid #ededed;
    }

        .main-menu > .group > .title span {
            text-transform: uppercase;
        }

    .main-menu .group.etablissement .etablissement {
        float: left;
    }

    .main-menu .etablissement.selected span.value {
        font-weight: bold;
    }

    .main-menu .etablissement.selected span {
        text-transform: uppercase;
    }

    .main-menu .etablissement a {
        color: #ec4a88;
    }

header > .header-two {
    background-color: rgba(0,20,44,0.9);
    text-transform: uppercase;
    padding: 58px 7px 7px 7px;
    color: #909090;
    font-size: 12px;
}

    header > .header-two.extra-padding {
        padding-top: 88px
    }

    header > .header-two > nav > ul > li {
        display: inline;
        list-style-type: none;
        position: relative;
    }

        header > .header-two > nav > ul > li:after {
            font: normal normal normal 14px/1 FontAwesome;
            content: "\f101";
            margin: 5px;
            color: #909090 !important;
        }

    header > .header-two > nav li:last-child:after {
        content: "";
    }

    header > .header-two .btn {
        height: auto;
        padding: 0;
        color: #909090;
        text-transform: uppercase;
    }

        header > .header-two .btn:hover,
        header > .header-two .btn-group.open .btn {
            color: #fff;
        }

    header > .header-two .dropdown-menu i {
        width: 15px;
        text-align: center;
        margin-right: 7px;
    }

    header > .header-two > nav > ul > li > a {
        color: #909090;
    }

    header > .header-two > nav > ul > li:hover,
    header > .header-two > nav > ul > li:hover > a {
        color: #fff;
    }

    header > .header-two > nav > ul > li > i,
    header > .header-two > nav > ul > li > a > i {
        margin-right: 5px;
    }

        header > .header-two > nav > ul > li > i.fa-sort-desc {
            margin-left: 5px;
        }


    /* ---------------------------- */
    /* Menu déroulant du sous menu */
    /* ---------------------------- */
    header > .header-two > nav > ul > li > ul {
        display: none;
        position: absolute;
        top: 25px;
        left: 0px;
        background-color: #fff;
        border-radius: 4px;
        box-shadow: 0px 0px 10px #aaa;
        overflow: hidden;
        z-index: 99;
    }

        header > .header-two > nav > ul > li > ul > li {
            list-style-type: none;
        }

            header > .header-two > nav > ul > li > ul > li > a {
                display: block;
                border-bottom: 1px solid #eee;
                padding: 8px 7px;
                width: 200px;
            }

            header > .header-two > nav > ul > li > ul > li:last-child > a {
                border-bottom: none;
            }

            header > .header-two > nav > ul > li > ul > li > a > i {
                text-align: center;
                width: 25px;
            }

            header > .header-two > nav > ul > li > ul > li > a {
                color: #e74784;
            }

                header > .header-two > nav > ul > li > ul > li > a:hover {
                    background-color: #e74784;
                    color: #fff;
                }

header > .header-one > .buttons {
    float: right;
}

    header > .header-one > .buttons > a {
        background-color: #195195;
        color: #dfedff;
        padding: 8px 10px;
        margin-left: 5px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 24px;
    }

        header > .header-one > .buttons > a:hover {
            color: #fff;
            background-color: #265da0;
        }

    header > .header-one > .buttons > .menu:before {
        content: "\f0c9";
    }

    header > .header-one > .buttons > .settings:before {
        content: "\f013";
    }


.page > article .content-actions {
    width: 100%;
    text-align: right;
    padding: 10px;
    box-sizing: border-box;
    position: fixed;
    background-color: #003779;
    bottom: 0;
    left: 0;
    box-shadow: 0 0 6px #000;
}

article {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px;
}

.page-actions {
    margin-bottom: 20px;
}

    .page-actions .search {
        max-width: 300px;
    }

    .page-actions .form-control.id-type {
        display: inline-block;
        width: 250px;
        position: relative;
        vertical-align: middle;
    }

    .page-actions .form-control.date-period {
        display: inline-block;
        width: 250px;
        position: relative;
        vertical-align: middle;
    }

/* ---------------------------- */
/* Panel */
/* ---------------------------- */

.panel .panel-heading {
    text-transform: uppercase;
}


/* ---------------------------- */
/* Tableau */
/* ---------------------------- */

.table {
    border-radius: 5px;
    position: relative;
    margin-bottom: 10px;
    background-color: #fff;
}

    .table > thead {
        background-color: #ef4c8b;
        background: linear-gradient(to bottom, #ff5798, #e74683);
    }


        .table > thead.simple {
            background: none;
        }

        .table > thead > tr > th {
            height: 40px;
            vertical-align: middle;
            border-bottom: 4px solid #ff92bc;
            text-transform: uppercase;
            font-weight: normal;
            color: #fff;
        }

.panel .table > thead > tr > th {
    font-weight: bold;
    border-bottom: 2px solid #ddd;
    color: inherit;
}

.table > thead.simple > tr > th {
    height: 40px;
    vertical-align: middle;
    border-bottom: none;
    font-weight: bold;
    color: inherit;
}

.table > thead > tr > th a {
    color: #fff;
}

.panel .table > thead > tr > th a {
    color: #000;
}

.table > thead > tr > th.icon > a {
    color: #ffb9d4;
    font-size: 22px;
}

    .table > thead > tr > th.icon > a:hover {
        color: #fff;
    }

.tbl-commande-article > thead {
    background-color: #18293d;
    background: linear-gradient(to bottom, #18293d, #18293d);
}

    .tbl-commande-article > thead th.description {
        line-height: 1.2em;
        padding: 10px 8px;
    }

    .tbl-commande-article > thead > tr > th {
        border-bottom: none;
    }

    .tbl-commande-article > thead th.description span:nth-of-type(1) {
        font-weight: bold;
        font-size: 15px;
    }

    .tbl-commande-article > thead th.description span:nth-of-type(2) {
        text-transform: none;
        font-size: 12px;
    }

    .tbl-commande-article > thead th.fidelite span:nth-of-type(1) {
        text-transform: none;
        font-size: 12px;
    }

    .tbl-commande-article > thead th.fidelite span:nth-of-type(2) {
        font-weight: bold;
        font-size: 15px;
    }

.tbl-commande-article > tfoot span.total {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

    .tbl-commande-article > tfoot span.total.ok {
        color: #0ca800;
    }

    .tbl-commande-article > tfoot span.total.error {
        color: #ef0000;
    }


.panel .table > thead {
    background-color: #fff;
    background: #fff;
}


/*.table > tbody > tr a { color:#a1a1a1; }
.table > tbody > tr a:hover { color:#ff5798; }*/

.table-hover > tbody > tr:hover {
    background-color: #e4f0ff;
    transition: all 0.1s linear;
}

.table-hover > tbody > tr.no-hover:hover {
    background-color: #fff;
}

.table-hover > tbody > tr.selected {
    background-color: #ffd2e3 !important;
    transition: all 0.1s linear;
}

.table-hover > tbody > tr.new-success {
    animation-duration: 6s;
    animation-name: new-success;
}

.table > tbody > tr.deleted {
    text-decoration: line-through;
    font-style: italic;
}

@keyframes new-success {
    from {
        background-color: #5cb85c;
    }

    to {
        background-color: inherit;
    }
}

.table-hover > tbody > tr.new-warning {
    animation-duration: 6s;
    animation-name: new-warning;
}

@keyframes new-warning {
    from {
        background-color: #f0ad4e;
    }

    to {
        background-color: inherit;
    }
}

.table-hover > tbody > tr.new-danger {
    animation-duration: 6s;
    animation-name: new-danger;
}

@keyframes new-danger {
    from {
        background-color: #f23b35;
    }

    to {
        background-color: inherit;
    }
}

.table > thead > tr > th {
    padding: 0 8px;
    vertical-align: middle;
    border-top: 0;
}


    .table > thead > tr > th.icon,
    .table > tbody > tr > td.icon,
    .table > tfoot > tr > td.icon {
        width: 45px;
        text-align: left;
    }

.table > tbody > tr > td i {
    font-size: 15px;
}

.table > tbody > tr > td span.label i {
    font-size: inherit;
}


article .table > .header > .col:first-child {
    border-top-left-radius: 5px;
}

article .table > .header > .col:last-child {
    border-top-right-radius: 5px;
}



.table > tbody > tr {
    cursor: pointer;
    -webkit-user-select: none; /* Chrome all / Safari all */
    -moz-user-select: none; /* Firefox all */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
}


article .table.highlight > .row:hover a {
    color: #1585b7;
}


article .table > .row > .col > span.blue {
    background: linear-gradient(to bottom, #134f8f, #013e7f);
    border-radius: 3px;
    padding: 6px;
    color: #fff;
}


/*article .table > .row > .col.icon
{
    width: 40px;
    text-align: center;
    padding-right:0;
}*/

article .table a.detail:before {
    content: "\f105";
    font-size: 16px;
}

article .table a.address:before {
    content: "\f041";
    font-size: 16px;
}

article .table .row a {
    color: #5b5b5b;
}

.table > tbody td.indent1 {
    padding-left: 25px !important;
}

.table > tbody td.indent2 {
    padding-left: 50px !important;
}

.table > tbody td.indent3 {
    padding-left: 75px !important;
}

.table > tbody td.indent4 {
    padding-left: 100px !important;
}

.table > tbody td.indent5 {
    padding-left: 125px !important;
}

/* ---------------------------- */
/* Dotation */
/* ---------------------------- */

.page-dotation .page {
    min-width: 1250px;
}

#tbl-dotation > thead th.tranche {
    width: 100px;
    font-weight: bold;
    text-align: center;
    border-left: 1px solid #ff728c;
}

    #tbl-dotation > thead th.tranche.alese,
    #tbl-dotation > thead th.tranche.slip {
        width: 70px;
    }

.table.dotation > .header > .col:last-child,
.table.dotation > .row > .col:last-child {
    padding-right: 0;
}

#tbl-dotation > tbody td.tranche {
    padding: 0;
    position: relative;
}

#tbl-dotation > tbody td .cell-horaire {
    display: table;
    width: 100%;
}

#tbl-dotation > tbody td.tranche .legende {
    display: none;
    text-align: center;
    position: absolute;
    font-size: 10px;
    width: 80px;
    bottom: 5px;
    background-color: rgba(255,255,255,0.9);
    border: 1px solid #ddd;
    padding: 2px 1px;
    left: 10px;
    color: #e74784;
    box-shadow: 1px 1px 1px #ccc;
    font-weight: bold;
}

#tbl-dotation > tbody td.tranche.alese .legende,
#tbl-dotation > tbody td.tranche.slip .legende {
    width: 50px;
}

#tbl-dotation > tbody tr.resident td.tranche:hover .legende,
#tbl-dotation > tbody tr.resident td.tranche.hover .legende {
    display: block;
}

#tbl-dotation > tbody td .cell-horaire > * {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}


#tbl-dotation > tbody td ul.dispositif {
    margin: 4px 0 0 0;
    list-style-type: none;
}

    #tbl-dotation > tbody td ul.dispositif li {
        display: inline;
        white-space: nowrap;
        padding: 1px 6px;
        background-color: white;
        border-radius: 3px;
        border: 1px solid #eee;
        color: #888;
    }

#tbl-dotation > tbody ul.dispositif i {
    font-size: 10px;
}

#tbl-dotation > tbody td .cell-horaire > .article {
    background-color: transparent;
    cursor: pointer;
    border-left: 1px dashed #b0b0b0;
    border-right: 1px dashed #b0b0b0;
    border-bottom: 1px dashed transparent;
    height: 108px;
    width: 70px;
}

    #tbl-dotation > tbody td .cell-horaire > .article.warning::before {
        font-family: FontAwesome;
        content: "\f071";
        font-size: 30px;
        color: orange;
        text-shadow: 0px 1px 2px #000;
        position: absolute;
        top: 35px;
        left: 19px;
    }

#tbl-dotation > tbody td.alese .cell-horaire > .article,
#tbl-dotation > tbody td.slip .cell-horaire > .article,
.table.dotation > .row .col.alese .cell-horaire > .article,
.table.dotation > .row .col.slip .cell-horaire > .article {
    border-right: none;
}

.table.dotation > .row .cell-horaire > .article.highlight {
    border: 1px dashed #ff5798;
    border-top: none;
}

#tbl-dotation > tbody td .cell-horaire > .article.drop-hover,
#tbl-dotation > tbody td .cell-horaire .soin.drop-hover,
#tbl-dotation > tbody td.dispositif.drop-hover {
    background-color: #ff5798;
    color: #fff;
}

#tbl-dotation > tbody td .cell-horaire > .soins {
    width: 30px;
}

    #tbl-dotation > tbody td .cell-horaire > .soins > .soin {
        height: 36px;
        cursor: pointer;
        width: 30px;
    }

        #tbl-dotation > tbody td .cell-horaire > .soins > .soin:not(:last-child) {
            border-bottom: 1px dashed #b0b0b0;
        }

        #tbl-dotation > tbody td .cell-horaire > .article:hover,
        #tbl-dotation > tbody td .cell-horaire > .soins > .soin:hover {
            background-color: #6ac9f3;
        }

        #tbl-dotation > tbody td .cell-horaire > .soins > .soin.highlight {
            border-bottom: 1px dashed #ff5798;
        }


        #tbl-dotation > tbody td .cell-horaire > .soins > .soin > i {
            padding: 8px 5px;
            box-sizing: border-box;
            color: #e74784;
        }

.table.dotation > .row > .tranche {
    padding: 0;
}

#tbl-dotation > tbody td span.chambre,
#tbl-dotation > tbody td span.nom {
    color: #e74784;
    font-weight: bold;
}

#tbl-dotation > tbody td .section,
#tbl-dotation > tbody td span.description {
    font-size: 13px;
    color: #888;
}

#tbl-dotation > tbody td .section {
    font-size: 13px;
    color: #888;
}

#tbl-dotation > tbody td span.section span:not(:first-child):before {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f101";
    margin: 5px;
}

#soin-hover, #article-hover, .info-bulle {
    position: absolute;
    display: none;
    background-color: #fff;
    box-shadow: 0px 0px 10px #aaa;
    z-index: 1;
}

#article-hover {
    width: 300px !important;
}

    #soin-hover:after, #article-hover:after, .info-bulle:after {
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f04b";
        position: absolute;
        top: 50%;
        color: #e3e3e3;
        right: -16px;
        margin-top: -10px;
        font-size: 20px;
    }

#soin-hover > * {
    display: table-cell;
    vertical-align: middle;
}

#soin-hover > * {
    display: table-cell;
    vertical-align: middle;
    padding: 4px 8px;
}

#soin-hover > a {
    background-color: #e3e3e3;
    color: #e74784;
    font-size: 16px;
}

#soin-hover > a {
    background-color: #e3e3e3;
    color: #e74784;
}

/* ---------------------------- */
/* Bon de commande */
/* ---------------------------- */

.page-edit-commande .page {
    min-width: 1000px;
}

#tbl-articles > tbody tr.drop-hover {
    border-top: 1px solid #ff5798 !important;
}

#tbl-articles.table-striped > tbody > tr:nth-of-type(odd) {
    border-top: 1px solid #f9f9f9;
}

#tbl-articles.table-striped > tbody > tr {
    border-top: 1px solid #fff;
}

#tbl-articles .form-control.quantite,
.tbl-commande-article .form-control.quantite {
    border-left-width: 1px;
    width: 55px;
    text-align: center;
    display: inline;
    height: 26px;
    padding: 0;
}

.tbl-commande-article .form-control.info-lot {
    height: 26px;
    padding: 0;
    display: inline;
}

.tbl-commande-article .form-control.unite {
    width: 175px;
    height: 26px;
    padding: 0;
}

#tbl-articles td span.concept,
.tbl-commande-article td span.concept,
.tbl-inventaire td span.concept,
#modal-inventaire-resupply span.concept,
#article-inventaire span.concept,
#article-info span.concept {
    display: block;
    color: #999;
}

#tbl-articles tr.total.ht {
    border-top: 1px solid #dddddd !important;
}


#tbl-articles tr.total {
    background-color: none !important;
}

#tbl-articles.table-striped > tbody > tr.total {
    background-color: #fff;
}

#tbl-articles tr.total td.libelle,
.tbl-commande-article tr.total td.libelle {
    font-weight: bold;
    text-align: right;
}


#tbl-articles.non-chiffree tr.total {
    display: none;
}

#tbl-articles tr.warn {
    background-color: #ddd;
}

    #tbl-articles tr.warn span:not(.label) {
        text-decoration: line-through;
        font-style: italic;
    }

/* ---------------------------- */
/* Structure chambre */
/* ---------------------------- */


.table.small {
    width: 600px;
    margin: 0 20px 20px 0;
}

/* Liste des chambres / résidents */

#list-etablissement-residents div.item.resident,
#list-etablissement-chambres div.item.chambre {
    display: inline-table;
    width: 330px;
    font-size: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    min-height: 95px;
    vertical-align: top;
}

    #list-etablissement-residents div.item.resident > *,
    #list-etablissement-chambres div.item.chambre > * {
        display: table-cell;
        vertical-align: middle;
    }

    #list-etablissement-residents div.item.resident.selected,
    #list-etablissement-chambres div.item.chambre.selected {
        background-color: #ffd2e3 !important;
    }

    #list-etablissement-residents div.item.resident.libre,
    #list-etablissement-chambres div.item.chambre.libre {
        border-left: 5px solid #68c100;
    }

        #list-etablissement-residents div.item.resident.libre:hover,
        #list-etablissement-chambres div.item.chambre.libre:hover {
            background-color: #f2ffea;
        }

    #list-etablissement-residents div.item.resident.occupe,
    #list-etablissement-chambres div.item.chambre.occupe {
        border-left: 5px solid #ec0000;
    }

        #list-etablissement-residents div.item.resident.occupe:hover,
        #list-etablissement-chambres div.item.chambre.occupe:hover {
            background-color: #fff5f5;
        }

    #list-etablissement-residents div.item.resident.occupe,
    #list-etablissement-chambres div.item.chambre.occupe {
        border-bottom: 1px solid #ffe7e7;
    }

    #list-etablissement-residents div.item.resident.libre
    #list-etablissement-chambres div.item.chambre.libre {
        border-bottom: 1px solid #d1ffb4;
    }

    #list-etablissement-residents div.item.resident div.text,
    #list-etablissement-chambres div.item.chambre div.text {
        padding: 7px 0;
    }

        #list-etablissement-residents div.item.resident div.text span,
        #list-etablissement-chambres div.item.chambre div.text span {
            display: block;
            font-style: italic;
            color: #888;
        }

            #list-etablissement-residents div.item.resident div.text span.statut,
            #list-etablissement-chambres div.item.chambre div.text span.statut {
                text-transform: uppercase;
                font-style: normal;
                font-size: 13px;
            }

    #list-etablissement-residents div.item.resident.libre div.text span.statut,
    #list-etablissement-residents div.item.resident.libre span.numero,
    #list-etablissement-chambres div.item.chambre.libre div.text span.statut,
    #list-etablissement-chambres div.item.chambre.libre span.numero {
        color: #68c100;
    }

    #list-etablissement-residents div.item.resident.occupe div.text span.statut,
    #list-etablissement-residents div.item.resident.occupe span.numero,
    #list-etablissement-chambres div.item.chambre.occupe div.text span.statut,
    #list-etablissement-chambres div.item.chambre.occupe span.numero {
        color: #ec0000;
    }

    #list-etablissement-residents div.item.resident span.numero,
    #list-etablissement-chambres div.item.chambre span.numero {
        font-size: 18px;
        text-align: center;
        width: 70px;
    }

    #list-etablissement-residents div.item.resident div.actions,
    #list-etablissement-chambres div.item.chambre div.actions {
        text-align: center;
        width: 70px;
        font-size: 14px;
    }

        #list-etablissement-residents div.item.resident div.actions a,
        #list-etablissement-chambres div.item.chambre div.actions a {
            margin: 0 4px;
        }

#list-etablissement-chambres span.item.edited {
    background-color: #bdff8c;
    border-color: #88db45;
    color: #88db45;
    transition: all 2s ease-in;
}

#tbl-chambres > tbody td.section {
    font-size: 18px;
    border-bottom: 1px dashed #b0b0b0;
}

    #tbl-chambres > tbody td.section > span:not(:last-child):after {
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f101";
        margin: 5px;
        color: #909090 !important;
    }




/* ---------------------------- */
/* Input */
/* ---------------------------- */
input[type="text"], input[type="date"], select,
.form-control,
input[type="number"], input[type="datetime"] {
    border: 1px solid #d9d9d9;
}

textarea.adresse {
    height: 100px;
}

.form-group .dropdown .btn {
    width: 100%;
}

.form-control.multi-line {
    resize: none;
}

/*.data-group 
{
	display:table;
	border:1px solid #ececec;
	border-top:none;
	padding:15px;
	width:600px;
	margin: 0 20px 20px 0;
	background-color:#fff;
	float:left;
	position:relative;
}*/
.form-horizontal.group {
    width: 600px;
    margin: 0 20px 20px 0;
    background-color: #fff;
    overflow: hidden;
    border-radius: 4px;
    float: left;
    position: relative;
}

    .form-horizontal.group .form-group {
        margin-right: 0;
        margin-left: 0;
    }

.data-table {
    display: table;
    width: 100%;
    position: relative;
}

.data-title {
    background-color: #ed4c89;
    background: linear-gradient(to bottom, #ff5798, #e74683);
    padding: 10px 15px;
    color: #fff;
    border-bottom: 4px solid #ff92bc;
    border-radius: 4px 4px 0 0;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.data-action {
    position: absolute;
    right: 10px;
    top: 3px;
}

    .data-action > a {
        color: #ffb9d4;
        font-size: 22px;
        float: right;
    }

        .data-action > a:hover {
            color: #fff;
        }

.data-section {
    display: table-row;
    font-weight: bold;
}

    .data-section > * {
        padding: 20px 0 10px 0;
        display: table-cell;
        border-bottom: 1px dashed #d9d9d9;
        text-transform: uppercase;
    }

    .data-section + .data-item > * {
        margin-top: 10px;
    }

.data-item {
    display: table-row;
}

    .data-item > *, .data-section > * {
        display: table-cell;
        vertical-align: middle;
    }

    .data-item .input-group {
        margin: 0 0 5px 0;
    }

    .data-item label:first-child {
        width: 150px;
    }

    .data-item input[type="text"],
    .data-item input[type="date"],
    .data-item input[type="number"],
    .data-item input[type="datetime"],
    .data-item select {
        width: 100%;
    }

    .data-item .controls.tranche-horaire .input-group {
        display: inline-block;
        width: 110px;
    }

/* ---------------------------- */
/* Aside */
/* ---------------------------- */
aside {
    position: fixed;
    height: 100%;
    width: 340px;
    box-sizing: border-box;
    background-color: rgba(0,20,44,0.8);
    color: #fff;
    overflow-y: auto;
    z-index: 10;
    padding-bottom: 20px;
}

    aside div.list {
        padding: 10px;
    }

    aside.open-aside {
        left: 0;
        transition: 0.8s;
    }

        aside.open-aside + .page {
            margin-left: 340px;
            transition: 0.5s;
        }

    aside.close-aside {
        left: -350px;
        transition: 0.5s;
    }

        aside.close-aside + .page {
            margin-left: 0;
            transition: 0.8s;
        }

    aside a.close-aside {
        position: fixed;
        bottom: 0;
        padding: 10px;
        text-align: center;
        background-color: #314255;
        display: block;
        width: 340px;
        box-sizing: border-box;
        box-shadow: 0px 0px 5px #000;
        color: #909090;
        z-index: 11;
    }

        aside a.close-aside:hover {
            color: #fff;
        }

    /*aside select
{
	background:transparent;
	color:#fff;
	font-weight:bold;
	border:0;
	-webkit-appearance: none;
		padding:10px;
}

aside select option
{
	background:transparent;
	color:#000;
	border:0;
	-webkit-appearance: none;
}*/

    aside .order {
    }

        aside .order .btn {
            color: #fff;
        }

    aside .filtre select {
        color: #fff;
        border: none;
        border-bottom: 1px solid #435b78 !important;
        background-color: rgba(255, 255, 255, 0.1);
        font-size: 12px;
        box-shadow: none !important;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        border-radius: 0;
        -webkit-appearance: none;
        padding: 0 0 0 34px;
    }

        aside .filtre select option {
            color: #000;
            background-color: rgba(255, 255, 255, 0.1);
        }

    aside .search {
        border-bottom: 1px solid #435b78;
    }

        aside .search .input-group-addon {
            border-radius: 0;
            background: none;
            background-color: rgba(255, 255, 255, 0.1);
            border: 0;
            color: #fff;
        }

        aside .search input {
            background-color: rgba(255, 255, 255, 0.1);
            border: none !important;
            color: #fff;
            padding-left: 0;
            box-shadow: none !important;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
        }

        aside .search .filtre-menu {
            position: absolute;
            right: 0;
            top: 6px;
            z-index: 100;
        }

            aside .search .filtre-menu button {
                color: #fff;
            }

    /*aside .search input
{
	display:table-cell;
	border:0;
	margin:0;
	width:100%;
    height:40px;
}

aside .search i
{
	display:table-cell;
	background-color:#003779;
	color:#fff;
	width:40px;
	text-align:center;
    vertical-align:middle;
}*/

    aside .list .item, .item.draggable {
        display: table;
        width: 100%;
        background-color: #fff;
        margin-bottom: 5px;
        font-size: 12px;
    }

body > .item.draggable {
    width: 314px;
    opacity: 0.8;
}

.item.draggable {
    cursor: move;
    z-index: 1003;
}

    .item.draggable:hover {
        background-color: #e6f2ff;
    }

    aside .list .item > .icon,
    .item.draggable > .icon,
    #article-hover > .icon,
    .info-bulle > .icon {
        text-align: center;
        background-color: #e3e3e3;
        /*color:#58616c;*/
        color: #e74784;
        font-size: 16px;
        width: 37px;
    }

    aside .list .item > .action,
    .item.draggable > .action {
        width: 40px;
        text-align: center;
        font-size: 17px;
        color: #58616c;
        cursor: pointer;
    }

        aside .list .item > .action:hover,
        .item.draggable > .action:hover {
            color: #ff5798;
        }

    aside .list .item:hover > .icon,
    .item.draggable:hover > .icon {
        background-color: #d3e6fb;
    }

    aside .list .item > .icon > img,
    .item.draggable > .icon > img {
        vertical-align: middle;
        width: 22px;
    }

    aside .list .item > .icon > i,
    .item.draggable > .icon > i {
        cursor: pointer;
    }

.btn-favoris.fa-star {
    color: #ff5798;
}

.btn-favoris.fa-star-o:hover {
    color: #ff5798;
}

aside .list .item > .text, #article-hover > .text, .info-bulle > .text,
.item.draggable > .text {
    padding: 15px 10px 15px 10px;
    color: #252525;
}

    aside .list .item > .text > input[type=text] {
        border: 0;
        width: 100%;
        padding: 0;
        background: transparent;
        margin: 0;
    }

aside .list .item .title, #article-hover .title,
.item.draggable .title {
    display: block;
    font-weight: bold;
    color: #003779;
}

.info-bulle .text .item {
    display: block;
    color: #003779;
}

    .info-bulle .text .item.bold {
        font-weight: bold;
    }

aside .list .item .reference, #article-hover .reference,
.item.draggable .reference {
    display: block;
    color: #003779;
}

    aside .list .item .reference a, #article-hover .reference a,
    .item.draggable .reference a {
        color: #003779;
        font-size: 13px;
    }

aside .list .item .photo,
#article-hover .photo {
    padding: 10px 10px 10px 0;
    width: 60px;
    text-align: center;
    box-sizing: content-box;
}

aside .list .item > *, #article-hover > *, .info-bulle > *,
.item.draggable > * {
    display: table-cell;
    vertical-align: middle;
}

aside .links {
    display: table;
    width: 100%;
}

    aside .links li {
        display: table-cell;
        background: #182a40;
        border-bottom: 1px solid #435b78;
        width: 33.3333%;
        text-align: center;
    }

        aside .links li a {
            padding: 6px;
            display: block;
        }

            aside .links li a:hover {
                background: #213651;
                color: #fff;
            }

            aside .links li a.selected {
                background: linear-gradient(to bottom, #fff, #e3e3e3);
                background-color: #e3e3e3;
                border: 1px solid #e3e3e3;
                color: #182a40;
            }


aside a {
    color: #fff;
}

aside .pagination li:not(.PagedList-skipToPrevious):not(.PagedList-skipToNext) {
    display: none;
}

aside .pagination li a {
    background: #182a40;
    border: 1px solid #435b78;
    color: #fff;
    font-size: 18px;
}

    aside .pagination li a:hover {
        background: #213651;
        border: 1px solid #8a9eb7;
        color: #fff;
    }

aside .pagination ul.page-selector li a.selected {
    background: linear-gradient(to bottom, #fff, #e3e3e3);
    border: 1px solid #e3e3e3;
    color: #182a40;
}


/* ---------------------------- */
/* Pagination */
/* ---------------------------- */

.table-pagination > .pagination-container {
    display: inline-block;
}

.table-pagination > .form-control {
    display: inline-block;
    width: 80px;
    vertical-align: top;
    height: 31px;
    padding: 4px 12px;
}

.pagination ul.page-selector {
    display: inline;
}

    .pagination ul.page-selector li {
        list-style-type: none;
        display: inline;
    }

        .pagination ul.page-selector li a {
            display: inline-block;
            list-style-type: none;
            min-width: 25px;
            height: 25px;
            background-color: #f8f8f8;
            border: 1px solid #d3d3d3;
            border-radius: 2px;
            text-align: center;
            line-height: 25px;
        }

            .pagination ul.page-selector li a.selected {
                color: #fff;
                background: linear-gradient(to bottom, #ff5798, #e74683);
                border: 1px solid #ed4b89;
            }

            .pagination ul.page-selector li a:hover {
                border: 1px solid #ed4b89;
            }

#menu-pagination.context-menu,
#menu-pagination-dotation.context-menu {
    width: 80px;
}

/* ---------------------------- */
/* Footer */
/* ---------------------------- */
footer {
    font-size: 12px;
    margin: 15px;
}

    footer, footer a {
        color: #fff;
    }

        footer a:hover {
            color: #fff;
            text-decoration: underline;
        }

        footer span {
            display: block;
        }


/* ---------------------------- */
/* Elements uniques */
/* ---------------------------- */
#btn-aside {
    position: fixed;
    top: 50%;
    left: 0;
    background-color: #ee4d89;
    background: linear-gradient(to bottom, #ff5798, #e74683);
    height: 80px;
    margin-top: -40px;
    width: 30px;
    padding: 0 10px 0 0;
    color: #fff;
    border: 0;
    box-shadow: 0px 0px 10px #aaa;
    font-size: 22px;
    text-align: right;
    z-index: 9;
}

    #btn-aside:hover {
        width: 40px;
        transition: 0.5s;
    }

/* ---------------------------- */
/* Popup */
/* ---------------------------- */

.modal-footer .btn-delete {
    float: left;
}

.modal-popup {
    background-color: #fff;
    width: 700px;
    box-shadow: 0px 0px 20px #232323;
    text-align: left;
    display: none;
}

    .modal-popup > .header {
        background-color: #003779;
        padding: 10px;
        color: #fff;
    }

        .modal-popup > .header > .title {
            text-transform: uppercase;
        }

            .modal-popup > .header > .title i {
                font-size: 18px;
                margin-right: 5px;
            }

        .modal-popup > .header > a.close {
            float: right;
            color: #fff;
        }

            .modal-popup > .header > a.close:before {
                content: "\f00d";
                font-size: 22px;
            }

    .modal-popup > .content {
        background-color: #fff;
        padding: 25px;
    }

    .modal-popup > .actions {
        background-color: #f3f3f3;
        padding: 4px;
        color: #fff;
        text-align: right;
    }

        .modal-popup > .actions > button.btn {
            height: 30px;
            padding: 0 20px;
        }

        .modal-popup > .actions > button.btn-delete {
            float: left;
        }

            .modal-popup > .actions > button.btn-delete:before {
                font: normal normal normal 14px/1 FontAwesome;
                content: "\f1f8";
                margin-right: 5px;
            }

.fadeToggle {
    cursor: pointer;
}

.page-etablissement-parametrages article #list-etablissement-chambres .row:nth-child(odd) {
    background-color: #fff;
}

article .table.chambres > .row:nth-child(odd) {
    background-color: #fff;
}


#ui-message {
    display: none;
    position: fixed;
    left: 50%;
    z-index: 10051;
    padding: 15px 10px;
    width: 350px;
    margin-left: -150px;
    top: 14px;
    text-align: center;
    color: #4F8A10;
    background-color: #DFF2BF;
    box-shadow: 1px 1px 5px #000;
    border: 2px solid #fff;
    text-transform: uppercase;
}

    #ui-message.error {
        color: #e20000;
        background-color: #ffc0c0;
    }

    #ui-message.loading {
        color: #003779;
        background-color: #bdcdff;
    }

    #ui-message.warning {
        color: #da5c00;
        background-color: #ffec92;
    }


    #ui-message > * {
        display: table-cell;
        vertical-align: middle;
    }

    #ui-message > i {
        font-size: 20px;
    }

    #ui-message > span {
        padding-left: 5px;
    }

#list-etablissement-clients button,
#list-customers-sap button {
    margin: 0 5px 5px 0;
}

.item-customer-sap {
    display: inline-block;
    width: 400px;
    padding: 10px 14px 10px 10px;
    /* border: 1px solid #ddd; */
    /* border-radius: 4px; */
    margin: 0 0px 5px 0;
    vertical-align: top;
    border-right: 1px solid #e0e0e0;
}

    .item-customer-sap a.action {
        float: right;
        font-size: 20px;
        display: inline-block;
        height: 30px;
        width: 30px;
        background-color: #f3f3f3;
        text-align: center;
        margin-right: 2px;
    }

    .item-customer-sap span:not(.label) {
        display: block;
    }

    .item-customer-sap span.nom {
        font-size: 18px;
    }

    .item-customer-sap span.reference {
        font-style: italic;
        color: #fff;
        margin-bottom: 6px;
        display: inline-block;
    }

    .item-customer-sap span.adresse {
    }

    .item-customer-sap span.label.detail {
        margin-left: 2px;
        cursor: pointer;
    }

.dotation-recapitulatif .item-article {
    display: inline-block;
    text-align: center;
    border: 1px solid #eee;
    padding: 2px;
}

.dotation-recapitulatif img {
    padding: 5px;
}

.dotation-recapitulatif .item-article div.title {
    display: block;
    padding: 3px 18px;
    background-color: #eee;
    color: #e74784;
    font-size: 12px;
    font-weight: bold;
}

.dotation-recapitulatif .item-article span.count {
    background-color: #e74784;
    padding: 0px 8px;
    border-radius: 10px;
    color: #fff;
}


#modal-remplacer-article .twitter-typeahead,
#modal-utilisateur .twitter-typeahead,
#modal-compte-client .twitter-typeahead,
#modal-compte-client-sap .twitter-typeahead,
#modal-resident .twitter-typeahead,
#modal-chambre .twitter-typeahead,
#modal-etablissement .twitter-typeahead,
#modal-utilisateur-etablissement .twitter-typeahead,
#modal-utilisateur-abena .twitter-typeahead,
#panel-mercuriale .twitter-typeahead,
#panel-remplacement-material .twitter-typeahead,
#panel-add-points .twitter-typeahead,
#panel-conditions .twitter-typeahead,
#modal-pricelist .twitter-typeahead,
#panel-client .twitter-typeahead {
    width: 100%;
}

.twitter-typeahead .tt-input.form-control[disabled], .twitter-typeahead .tt-input.form-control[readonly] {
    background-color: #eee !important;
}


.twitter-typeahead .tt-menu {
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 5px #aaa;
    margin-top: 5px;
}

    .twitter-typeahead .tt-menu span.item {
        display: block;
        font-size: 12px;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        padding: 10px;
    }

    .twitter-typeahead .tt-menu div.item {
        display: table;
        width: 100%;
        font-size: 12px;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        padding: 10px;
    }


    .twitter-typeahead .tt-menu .item:hover {
        background-color: #e6f2ff;
    }

    .twitter-typeahead .tt-menu div.item > * {
        display: table-cell;
        vertical-align: middle;
    }

    /*.twitter-typeahead .tt-menu div.item .refence
{
	display:block;
	color:#003779;
}*/

    .twitter-typeahead .tt-menu div.item .reference {
        display: block;
        color: #003779;
    }

        .twitter-typeahead .tt-menu div.item .reference i {
            color: #003779;
        }

        .twitter-typeahead .tt-menu div.item .reference a {
            color: #003779;
            font-size: 13px;
        }

.twitter-typeahead .tt-highlight {
    background-color: yellow;
}

.twitter-typeahead-spinner {
    position: absolute;
    right: 5px;
    width: 24px;
    top: 6px;
    display: none;
}

.twitter-typeahead .tt-menu div.item .photo {
    padding: 10px;
    width: 60px;
    text-align: center;
    box-sizing: content-box;
}

.twitter-typeahead .tt-menu .empty-message {
    padding: 10px;
}


/* TYPEAHEAD CHAMBRE*/

.twitter-typeahead .tt-menu div.item.chambre.libre {
    border-left: 5px solid #68c100;
}

    .twitter-typeahead .tt-menu div.item.chambre.libre:hover {
        background-color: #f2ffea;
    }

.twitter-typeahead .tt-menu div.item.chambre.occupe {
    border-left: 5px solid #ec0000;
    cursor: not-allowed;
}

    .twitter-typeahead .tt-menu div.item.chambre.occupe:hover {
        background-color: #fff5f5;
    }

.twitter-typeahead .tt-menu div.item.chambre.occupe {
    border-bottom: 1px solid #ffe7e7;
}

.twitter-typeahead .tt-menu div.item.chambre.libre {
    border-bottom: 1px solid #d1ffb4;
}

.twitter-typeahead .tt-menu div.item.chambre div.text span {
    display: block;
    font-style: italic;
    color: #888;
}

    .twitter-typeahead .tt-menu div.item.chambre div.text span.statut {
        text-transform: uppercase;
        font-style: normal;
    }

.twitter-typeahead .tt-menu div.item.chambre.libre div.text span.statut,
.twitter-typeahead .tt-menu div.item.chambre.libre span.numero {
    color: #68c100;
}

.twitter-typeahead .tt-menu div.item.chambre.occupe div.text span.statut,
.twitter-typeahead .tt-menu div.item.chambre.occupe span.numero {
    color: #ec0000;
}

.twitter-typeahead .tt-menu div.item.chambre span.numero {
    font-size: 18px;
    text-align: center;
    width: 70px;
}

/* TYPEAHEAD ETABLISSEMENT */
.twitter-typeahead .tt-menu div.item.etablissement div.text span {
    display: block;
}

    .twitter-typeahead .tt-menu div.item.etablissement div.text span.nom {
        text-transform: uppercase;
    }

    .twitter-typeahead .tt-menu div.item.etablissement div.text span.adresse {
        font-style: italic;
        color: #888;
    }


/* Bon de commande */

#modal-envoi-commande .modal-body {
    text-align: center;
    padding: 50px 100px;
}

    #modal-envoi-commande .modal-body .instructions {
        background-color: #f3f3f3;
        padding: 30px;
        border-radius: 5px;
        margin-top: 30px;
    }

        #modal-envoi-commande .modal-body .instructions button {
            margin-top: 20px;
            height: 80px;
            line-height: 27px;
        }

            #modal-envoi-commande .modal-body .instructions button span {
                display: block;
            }

                #modal-envoi-commande .modal-body .instructions button span:nth-of-type(1) {
                    font-size: 43px;
                    margin-top: 9px;
                }

#modal-recapitulatif-commande .modal-body table {
    margin: 25px 0;
}

    #modal-recapitulatif-commande .modal-body table td {
        padding: 8px 20px 8px 0;
        vertical-align: top;
    }

#modal-recapitulatif-commande .modal-body div.cgv {
    border: 1px solid #e5e5e5;
    background-color: #f3f3f3;
    padding: 10px;
}

    #modal-recapitulatif-commande .modal-body div.cgv input {
        margin-right: 5px;
    }


h5 {
    text-transform: uppercase;
    color: #e74784;
}

a.calculator.disabled {
    cursor: not-allowed;
}

.popover-content .popover-calculator > * {
    display: inline;
    vertical-align: top;
    padding: 0 5px;
    border-left-width: 1px;
    height: 26px;
}

.popover-content .popover-calculator input {
    text-align: center;
    width: 55px;
    padding: 0;
}

.popover-content .popover-calculator select {
    display: inline-block;
    width: 100px;
}

.popover-content .popover-calculator button {
}



/* ---------------------------- */
/* Catalogue */
/* ---------------------------- */

.item-catalogue {
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #dddddd;
    width: 205px;
    height: 260px;
    vertical-align: top;
    overflow: hidden;
    margin: 0 15px 15px 0;
    position: relative;
    background: #fff;
}

    .item-catalogue a.btn-delete {
        position: absolute;
        top: 5px;
        right: 10px;
        opacity: 0.9;
        color: #fff;
    }

        .item-catalogue a.btn-delete:hover {
            opacity: 1;
        }



    .item-catalogue .boutons {
        position: absolute;
        text-align: center;
        top: 150px;
        width: 100%;
    }

        .item-catalogue .boutons a {
            color: #616161;
        }

            .item-catalogue .boutons a:hover {
                color: #184a85;
            }

        .item-catalogue .boutons .fa-circle {
            font-size: 42px;
            color: #fff;
            opacity: 0.9;
        }

        .item-catalogue .boutons a:hover .fa-circle {
            opacity: 1;
        }

        .item-catalogue .boutons a > .fa-stack {
            width: 2.5em;
            height: 3em;
            line-height: 2.4em;
        }


    .item-catalogue .description {
        color: #003779;
        padding: 10px;
        text-align: center;
    }

        .item-catalogue .description .titre {
            text-transform: uppercase;
            display: block;
            font-weight: bold;
        }

        .item-catalogue .description .date {
            display: block;
            font-size: 10px;
        }


    .item-catalogue.nouveau {
        background: #f8f8f8;
    }

        .item-catalogue.nouveau:hover {
            background: #fff;
        }

        .item-catalogue.nouveau .titre {
            position: absolute;
            text-align: center;
            top: 110px;
            width: 100%;
            text-transform: uppercase;
            display: block;
            font-weight: bold;
            color: #184a85;
        }

        .item-catalogue.nouveau .boutons .fa {
            color: #fff;
        }

        .item-catalogue.nouveau .boutons .fa-circle {
            color: #184a85;
        }



/* ---------------------------- */
/* Catalogue ARTICLE */
/* ---------------------------- */

.item-article-catalogue {
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #dddddd;
    width: 205px;
    min-height: 320px;
    vertical-align: top;
    margin: 0 15px 15px 0;
    position: relative;
    background: #fff;
    padding: 15px;
    box-sizing: content-box;
}

    .item-article-catalogue span.nom {
        text-transform: uppercase;
        color: #3b3b3b;
        display: block;
        font-weight: bold;
    }

    .item-article-catalogue span.reference {
        color: #777777;
        display: block;
    }



    .item-article-catalogue a.btn-favoris, .item-article-catalogue a.btn-fiche-technique {
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 21px;
        width: 23px;
        text-align: center;
    }

    .item-article-catalogue a.btn-fiche-technique {
        top: 40px;
    }

    .item-article-catalogue div.image {
        text-align: center;
        margin-top: 10px;
    }

        .item-article-catalogue div.image img {
            max-width: 110px;
            max-height: 110px;
        }

/* ---------------------------- */
/* Catalogue Liste articles */
/* ---------------------------- */

.accordion-light .panel-body {
    padding: 0px;
}

.accordion-light .list-group {
    margin-bottom: 0;
}

.accordion-light .panel {
    margin-top: 0px !important;
    border-bottom: none;
    border-radius: 0;
}

    .accordion-light .panel:first-child {
        border-radius: 4px 4px 0 0;
    }

    .accordion-light .panel:last-child {
        border-radius: 0 0 4px 4px;
        border-bottom: 1px solid #ddd;
    }

.accordion-light li.list-group-item {
    border: 0;
    margin-bottom: 0;
    /*background-color:#ededed;*/
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 0;
    cursor: pointer;
    padding: 6px 10px 6px 40px;
    font-size: 11px;
}


    .accordion-light li.list-group-item span.lbl {
        font-size: 11px;
    }

    .accordion-light li.list-group-item:last-child {
        border-bottom: 0;
    }

.accordion-light .panel-heading {
    background-color: #fff;
    color: #2a2a2a;
    font-weight: bold;
    padding: 12px 10px;
    cursor: pointer;
}

.accordion-light .producthierarchy-level1 > .panel-heading[aria-expanded=true],
.accordion-light .producthierarchy-level1 > .panel-collapse.collapse.in .panel-heading,
.accordion-light .producthierarchy-level1 > .panel-collapse.collapse.in .list-group-item {
    background-color: #efefef;
}


    .accordion-light .producthierarchy-level1 > .panel-collapse.collapse.in .panel-heading:hover,
    .accordion-light .producthierarchy-level1 > .panel-collapse.collapse.in .list-group-item:hover {
        background-color: #ddd;
    }


.accordion-light .panel-heading:hover,
.accordion-light .producthierarchy-level2 .panel-body .list-group-item:hover {
    background-color: #efefef;
}



.accordion-light .panel-default > .panel-heading a {
    color: #2a2a2a;
    font-size: 11px;
}

.accordion-light .panel-heading .badge,
.accordion-light .list-group-item .badge {
    background-color: #fff;
    color: #555;
    float: right;
}

.accordion-light .panel-group .panel {
    border-radius: 0px !important;
}

.accordion-light .producthierarchy-level2 .panel-heading {
    padding: 6px 10px;
}


.accordion-light .producthierarchy-level2.panel {
    border-radius: 0;
    border: 0;
}

.accordion-light .producthierarchy-level2 .panel-heading a {
    margin-left: 10px;
}

.accordion-light .producthierarchy-level2 .panel-heading .badge {
}

.accordion-light .producthierarchy-level1 .panel-body {
    border-top: 0 !important;
}

producthierarchy-level2
/* ---------------------------- */
/* Tableau light */
/* ---------------------------- */
table.table-light {
    border: 1px solid #ddd;
    overflow: auto;
}

table.table-light > thead {
    background: #fff;
}

table.table-light > thead {
    background: #fff;
}

    table.table-light > tbody > tr > th,
    table.table-light > thead > tr > th,
    table.table-light > tbody > tr > td,
    table.table-light > tfoot > tr > td {
        padding: 6px 8px;
    }

    table.table-light > thead > tr > th {
        height: auto;
        vertical-align: middle;
        border-bottom: 1px solid #ddd;
        font-weight: bold;
        color: #2a2a2a;
    }

#list-concepts .panel-heading,
#list-concepts li {
    cursor: pointer;
}


.panel {
    position: relative;
}

    .panel .panel-heading .actions {
        position: absolute;
        right: 10px;
        top: 4px;
        font-size: 16px;
    }

        .panel .panel-heading .actions a {
            color: #333;
        }


    .panel .panel-body.no-padding {
        padding: 0;
    }

    .panel table td.right-icon {
        text-align: right;
    }

select.type-remise {
    width: 110px;
}

    select.type-remise.bronze {
        border-left: 6px solid #be7b1c;
    }

    select.type-remise.silver {
        border-left: 6px solid #cfc4b5;
    }

    select.type-remise.gold {
        border-left: 6px solid #eed382;
    }

    select.type-remise.platinium {
        border-left: 6px solid #746f7b;
    }

#panel-remise .panel-heading a,
#panel-conditions-vente .panel-heading a {
    color: #000;
    text-transform: none;
}

    #panel-remise .panel-heading a.active,
    #panel-conditions-vente .panel-heading a.active {
        font-weight: bold;
        color: #e74784;
    }

div.empty-message,
table tr.empty-message td {
    padding: 30px !important;
    text-align: center;
}

    div.empty-message.bloc {
        border-radius: 3px;
        border: 1px solid #dddddd;
        background-color: #fff;
    }

#modal-selection-icone .icone {
    background-color: #eee;
    font-size: 16px;
    width: 50px;
    height: 50px;
    vertical-align: top;
    text-align: center;
    margin: 2px;
    padding-top: 18px;
    cursor: pointer;
}

    #modal-selection-icone .icone:hover {
        color: #e74784;
    }

#modal-selection-icone #btn-show-all-icons {
    display: block;
    text-align: center;
    padding: 10px 0;
}

/* ---------------------------- */
/* Tableau annonce */
/* ---------------------------- */

table.table-admin-annonce td {
    vertical-align: top !important;
}

    table.table-admin-annonce td a.calltoaction {
        text-transform: uppercase;
        background-color: #1f4698;
        padding: 14px 0;
        color: #fff;
        display: block;
        text-align: center;
        font-family: "Open Sans Condensed";
        font-size: 16px;
        font-weight: bold;
    }

        table.table-admin-annonce td a.calltoaction:hover {
            background-color: #2b54a9;
        }

    table.table-admin-annonce td span.label {
        display: inline-block;
        margin-bottom: 10px;
    }

.alert ul.material {
    margin: 0;
}

    .alert ul.material a {
        color: inherit;
    }

        .alert ul.material a:hover {
            text-decoration: underline;
        }

    .alert ul.material li {
        padding: 3px 0px;
        list-style: none;
    }

        .alert ul.material li span.materialnumber {
            font-weight: bold;
        }


        .alert ul.material li span.libelle {
            font-style: italic;
        }

.item-etablissement {
    display: inline-block;
    background-color: #fff;
    width: 400px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 10px 10px 0;
    min-height: 200px;
    vertical-align: top;
    position: relative;
}

    .item-etablissement.deleted {
        text-decoration: line-through !important;
        font-style: italic;
    }

    .item-etablissement a {
        color: #000;
        font-family: 'Open Sans';
    }

        .item-etablissement a:hover {
            text-decoration: underline;
        }

    .item-etablissement .nom {
        font-size: 18px;
        display: block;
    }

    .item-etablissement span.type {
        font-style: italic;
        display: block;
        color: #555;
    }

    .item-etablissement div.chambre {
        font-size: 26px;
        width: 130px;
        display: inline-block;
        border-right: 1px solid #bababa;
        padding-left: 50px;
    }

        .item-etablissement div.chambre i {
            position: absolute;
            top: 15px;
            left: 20px;
        }

    .item-etablissement div.resident {
        font-size: 26px;
        width: 130px;
        display: inline-block;
        border-right: 1px solid #bababa;
        position: relative;
        padding-left: 50px;
    }

        .item-etablissement div.resident i {
            position: absolute;
            top: 9px;
            left: 20px;
        }

    .item-etablissement div.incontinent {
        font-size: 26px;
        width: 130px;
        display: inline-block;
        position: relative;
        border-right: 1px solid #bababa;
        padding-left: 50px;
    }

    .item-etablissement div.incontinent .incontinent-icon {
        position: absolute;
        top: 10px;
        left: 12px;
        font-size: 12px;
        font-weight: bold;
        color: #9a9a9a;
    }

    .item-etablissement div.incontinent .incontinent-text {
        position: absolute;
        left: 46px;
    }

    .item-etablissement div.gmp {
        font-size: 26px;
        width: 130px;
        display: inline-block;
        position: relative;
        padding-left: 50px;
    }

    .item-etablissement div.gmp .gmp-icon {
        position: absolute;
        top: 10px;
        left: 12px;
        font-size: 12px;
        font-weight: bold;
        color: #9a9a9a;
    }

    .item-etablissement div.gmp .gmp-text {
        position: absolute;
        left: 46px;
    }

    .item-etablissement .tags {
        background-color: #eeeeee;
        padding: 5px 0;
        font-weight: 300;
        position: relative;
        line-height: 1.2;
        position: absolute;
        bottom: 0;
        width: 100%;
        display: flex;
    }


        .item-etablissement .tags i {
            color: #9a9a9a;
            font-size: 16px;
        }

    .item-etablissement .customers {
        margin: 10px 0;
    }

        .item-etablissement .customers p {
            display: inline-block;
            margin: 0;
            width: 355px;
        }

        .item-etablissement .customers i {
            color: #9a9a9a;
            width: 16px;
            text-align: center;
            vertical-align: top;
        }

    .item-etablissement .adresse i {
        color: #9a9a9a;
        width: 16px;
        text-align: center;
        vertical-align: top;
        padding-top: 2px;
        font-size: 16px;
    }

    .item-etablissement .adresse p {
        display: inline-block;
        margin: 0;
    }

    .item-etablissement .statut {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 15px;
    }

.search-highlight {
    background: yellow;
    color: #000;
}

#panel-remplacement-material #details-etablissements li {
    padding: 2px 0;
    list-style: none;
}

    #panel-remplacement-material #details-etablissements li span.count-material {
        color: grey;
        font-style: italic;
    }

.table + .table-overlay {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.6);
    z-index: 1;
    top: 0;
    left: 0;
    text-align: center;
    padding: 45px;
}

.table.loading + .table-overlay {
    display: block;
}

.table-overlay .content {
    display: inline-block;
    background-color: rgba(255,255,255,0.5);
    width: 185px;
    padding-bottom: 5px;
}

.table-overlay img {
    width: 170px;
}


.table-overlay span {
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px;
}

.page .order-area-droppable {
    display: none;
    width: calc(100% - 340px);
    position: fixed;
    height: 100%;
    top: 0;
    background-color: rgba(72, 114, 165, 0.9);
    z-index: 1002;
    left: 340px;
}

.page.highlight .order-area-droppable {
    display: table;
}

    .page.highlight .order-area-droppable div {
        display: table-cell;
        vertical-align: middle;
    }


.page .order-area-droppable span:nth-child(1) {
    color: #fff;
    display: block;
    text-align: center;
    font-family: "Open Sans Condensed";
    font-size: 20px;
}

.page .order-area-droppable span:nth-child(2) {
    text-transform: uppercase;
    color: #fff;
    display: block;
    text-align: center;
    font-family: "Open Sans Condensed";
    font-size: 24px;
    font-weight: bold;
}


.page-etablissement-fidelite .solde-points {
    background-color: rgba(255,255,255,0.8);
    display: inline-block;
    padding: 10px 10px 18px 10px;
    font-family: "Open Sans Condensed";
    line-height: 2.4em;
    margin: 30px 0 20px 0;
    border: 1px solid #006907;
}

    .page-etablissement-fidelite .solde-points span:nth-child(1) {
        display: block;
        font-size: 23px;
    }

    .page-etablissement-fidelite .solde-points span:nth-child(2) {
        display: block;
        font-size: 36px;
        color: #006907;
        font-weight: bold;
    }

.page-etablissement-fidelite .description ul li {
    list-style-position: outside;
    margin-left: 1.3em;
    margin-bottom: 1em;
}

    .page-etablissement-fidelite .description ul li strong {
        font-size: 14px;
    }

.page-etablissement-fidelite .description {
    display: inline-block;
    vertical-align: top;
    max-width: 680px;
}

.page-etablissement-fidelite .description {
    display: inline-block;
    vertical-align: top;
    max-width: 680px;
}

.page-etablissement-fidelite .images {
    display: inline-block;
    vertical-align: top;
    max-width: 500px;
}

#table-articles-mercuriale .tag-price {
    padding: 8px 4px;
    background-color: #fff;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid #efefef;
    display: inline-block;
    width: 80px;
    text-align: center;
    color: #000;
    opacity: 0.5;
    min-height: 36px;
    vertical-align: middle;
}

    #table-articles-mercuriale .tag-price:hover {
        opacity: 1;
    }

    #table-articles-mercuriale .tag-price.disabled:hover {
        cursor: not-allowed;
    }

    #table-articles-mercuriale .tag-price.selected {
        font-weight: bold;
        opacity: 1;
    }

    #table-articles-mercuriale .tag-price.institution-bronze {
        border-left: 6px solid #be7b1c;
    }

    #table-articles-mercuriale .tag-price.institution-silver {
        border-left: 6px solid #cfc4b5;
    }

    #table-articles-mercuriale .tag-price.institution-gold {
        border-left: 6px solid #eed382;
    }

    #table-articles-mercuriale .tag-price.institution-platinium {
        border-left: 6px solid #746f7b;
    }

#table-articles-mercuriale .base-price.institution-custom {
    border-left: 6px solid #add8e6;
}

#table-articles-mercuriale .special-price {
    display: inline-block;
}

#table-articles-mercuriale .base-price {
    display: inline-block;
    width: 80px;
    height: auto;
    padding: 8px 0px;
    text-align: center;
    font-size: 13px;
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 1px solid #efefef;
    border-radius: 4px;
    font-weight: bold;
}

    #table-articles-mercuriale .base-price.disabled,
    #table-articles-mercuriale .base-price[readonly="readonly"] {
        cursor: not-allowed;
    }

#table-articles-mercuriale a.btn-special-price,
#table-articles-mercuriale a.btn-delete-special-price {
    color: #000;
}

    #table-articles-mercuriale .btn-special-price i,
    #table-articles-mercuriale a.btn-delete-special-price i {
        font-size: 14px;
    }

#table-articles-mercuriale .reference {
    font-style: italic;
    color: #aaa;
}

#table-articles-mercuriale .reference-value {
    font-size: 16px;
}

#table-articles-mercuriale .old-price {
    display: block;
    margin: 0;
    font-size: 13px;
    margin-top: 0px;
    color: #888;
}


#table-articles-mercuriale td.percent {
    font-size: 18px;
    font-family: "Open Sans Condensed";
    white-space: nowrap;
    text-align: center;
}

    #table-articles-mercuriale td.percent.increase {
        color: green;
    }

    #table-articles-mercuriale td.percent.decrease {
        color: red;
    }

    #table-articles-mercuriale td.percent.same {
        color: #000;
    }

    #table-articles-mercuriale td.percent i {
        font-size: 18px;
    }

    #table-articles-mercuriale td.percent.same i {
        display: none;
    }

    #table-articles-mercuriale td.percent.decrease i.fa-long-arrow-up:before {
        content: "\f175";
    }

    #table-articles-mercuriale td.percent.increase i.fa-long-arrow-up:before {
        content: "\f176";
    }

#table-articles-mercuriale a.statut-material.rejected i {
    color: red;
}

    #table-articles-mercuriale a.statut-material.rejected i:before {
        content: "\f05e";
    }

#table-articles-mercuriale a.statut-material.validated i {
    color: green;
}

    #table-articles-mercuriale a.statut-material.validated i:before {
        content: "\f00c";
    }

#table-articles-mercuriale a.statut-material.inprogress i {
    color: darkorange;
}

    #table-articles-mercuriale a.statut-material.inprogress i:before {
        content: "\f252"
    }

#table-articles-mercuriale a.btn-accept-special-price {
    color: green;
    opacity: 0.3;
}

    #table-articles-mercuriale a.btn-accept-special-price i {
        font-size: 20px;
    }

#table-articles-mercuriale a.btn-cancel-special-price {
    color: red;
    opacity: 0.3;
}

    #table-articles-mercuriale a.btn-cancel-special-price i {
        font-size: 20px;
    }

#table-articles-mercuriale a.btn-statut-material-action:hover,
#table-articles-mercuriale a.btn-statut-material-action.selected {
    opacity: 1;
}

a.disabled {
    cursor: not-allowed;
}

.language {
    margin-top: 20px;
}

    .language .fa.fa-globe {
        font-size: large;
        margin-right: 5px;
    }

    .language .form-control {
        width: auto;
        display: inline-block;
        height: 26px;
        padding: 0px 6px;
    }

.message-box {
    resize: none;
    margin-bottom: 0.7em;
}

.discussion-center {
    margin: 0 auto;
    width: 60%;
}

@media screen and (max-width: 1200px) {
    .discussion-center {
        width: 90%;
    }
}

@media screen and (min-width: 1200px) {
    .article-mdr-information {
        width: 65%;
    }
}

@media screen and (max-width: 1200px) {
    .article-mdr-information {
        width: 800px;
    }
}

.col-lg-10 .idtype {
}

.sticky-header {
    position: sticky;
}

tr.sticky th.sticky-header {
    background-color: #ef4c8b;
    background: linear-gradient(to bottom, #ff5798, #e74683);
    color: white;
    z-index: 1;
}

.gauge {
    height: 135%;
    position: relative;
    transform: translateY(-50%);
    top: 35%;
}

.new-gamme-modal .modal-dialog {
    width: 900px;
}

.new-gamme-modal .close-button {
    padding: 12px;
}

.close-button .close {
    opacity: unset;
}

.close-button .close:hover {
    color: black;
}

.new-gamme-modal .content {
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.new-gamme-modal .content .header {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    align-items: center;
}

.new-gamme-modal .content .sub-header {
    font-size: 16px;
}

.new-gamme-modal .content .promotion {
    display: flex;
    padding: 8px 12px;
    flex-direction: column;
    align-items: flex-start;
}

.promotion .promotion-content {
    display: flex;
    gap: 16px;
}

.promotion .promotion-content .list-promotion {
    margin-top: 20px;
}

.list-promotion ul {
    margin-top: 0;
}

.codes-image {
    width: 450px;
    transform: translate(0, -50px);
}

.emballages-image {
    width: 450px;
}

.new-gamme-modal .footer {
    font-size: 14px;
    font-weight: 700;
}

.article-img {
    width: 60px;
    height: 80px;
}