html {
    height: 100%;
    box-sizing: border-box;
}

body {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 0 20px 0;
    min-height: 100%;
    background-color: #eee;
}

* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body, input, textarea {
    font-family: 'Quicksand';
}

form {
    margin: 0;
}

@media (max-width: 767px) {
    .modal-dialog {
        margin: 4px;
    }
}

.modal-header {
    border-bottom-color: #ccc;
}

.modal-footer {
    border-top-color: #ccc;
}

.modal-body {
    background-color: #fff;
    overflow: auto;
    width: 100%;
    padding: 12px 0;
    max-height: calc(100vh - 175px);
}

    .modal-body.modal-presta {
        max-height: calc(100vh - 210px);
    }

    .modal-body > p {
        margin: 20px 0 20px 0;
        text-align: justify;
    }

.modal-footer button {
    border-radius: 3px;
    padding: 8px 16px;
    font-size: 10pt;
    font-weight: bold;
    background-color: var(--color-button);
    color: #fff;
    cursor: pointer;
    outline: none;
    border: none;
    margin-left: 10px;
}

span.important {
    font-weight: bold;
}

i.rdv-icon {
    display: inline-block;
    width: 20px;
    float: unset !important;
    margin: 0 8px 0 0 !important;
    text-align: center;
}

div.rdv-pages {
    height: 40px;
    margin-top: 16px;
}

a.rdv-page {
    display: inline-block;
    color: var(--menu-color);
    padding: 8px 0 0 0;
    font-size: 10pt;
    font-weight: bold;
    text-decoration: none;
}

a.rdv-left {
    float: left;
}

a.rdv-right {
    float: right;
}

.rdv-green {
    color: #33cc33 !important;
}

.rdv-red {
    color: #cc3333 !important;
}

.rdv-grey {
    color: #999 !important;
}

div.rdv-txt, div.rdv-bloc, div.rdv-msg {
    border: solid 1px #999;
    border-radius: var(--box-radius);
    background-color: #fff;
    margin-top: 16px;
}

div.rdv-txt {
    position: relative;
}

    div.rdv-txt i.rdv-pwd {
        position: absolute;
        right: 8px;
        bottom: 8px;
        color: #666;
        width: 20px;
        text-align: center;
    }

button.salon-btn small.rdv-warning {
    margin-top: 10px;
    color: #cc3333;
    font-weight: bold;
    display: inline-block;
    border-top: solid 1px #ccc;
    width: 100%;
    text-align: center;
}

    button.salon-btn small.rdv-warning span {
        margin: 0;
        padding: 8px 0 0 0;
        display: inline-block;
        border-top: solid 1px #fff;
        width: 100%;
    }

div .rdv-txt label, div.rdv-txt span, div.rdv-msg span {
    color: #999;
    /*color: #c58e41;*/
    line-height: 10pt;
    vertical-align: middle;
    margin: 0;
    padding: 8px 8px 4px 8px;
    font-size: 9pt;
    font-weight: bold;
    display: block;
    width: auto;
}

div.rdv-txt, div.rdv-txt label, div.rdv-txt span, div.rdv-txt input[type=text], div.rdv-txt input[type=email], div.rdv-txt input[type=password], div.rdv-txt textarea {
    cursor: pointer;
}

div.rdv-bloc {
    cursor: default;
    background-color: #fff;
    position: relative;
}

    div.rdv-bloc:hover {
        border-color: var(--color-border);
        box-shadow: 0 0 2px var(--color-border);
    }

        div.rdv-bloc:hover h5, div.rdv-bloc:hover p, div.rdv-bloc:hover div.icon * {
            color: var(--color-button) !important;
        }

    div.rdv-bloc h5 {
        margin: 0;
        padding: 16px 16px 10px 16px;
        color: #333;
        font-size: 13pt;
        font-weight: bold;
    }

        div.rdv-bloc h5.rdv-day {
            display: inline-block;
        }

        div.rdv-bloc h5.rdv-time {
            display: inline-block;
            position: absolute;
            right: 0;
        }

div.rdv-entete h5 {
    margin: 16px 8px;
    color: #666;
    font-size: 10pt;
    font-weight: bold;
}

div.rdv-bloc p {
    font-size: 10pt;
    font-weight: normal;
    color: #666;
    margin: 8px 16px;
    text-align: justify;
}

div.rdv-bloc div.nosep {
    border-bottom: none
}

div.rdv-bloc div.icon {
    padding: 0 0 16px 0;
}

    div.rdv-bloc div.icon div.warning {
        font-size: 10pt;
        font-weight: bold;
        color: #cc3333;
        text-align: center;
        padding: 8px;
        margin: 8px 8px 0 8px;
        border-top: solid 1px #ccc;
        border-bottom: solid 1px #ccc;
        background-color: #f4f4f4;
    }

    div.rdv-bloc div.icon a {
        display: block;
        vertical-align: top;
        font-weight: bold;
        margin: 0;
        padding: 4px 8px;
    }

        div.rdv-bloc div.icon a:hover {
            background-color: #eee;
        }

        div.rdv-bloc div.icon a div {
            font-size: var(--text-size);
            color: #666;
            margin: 4px;
            text-align: justify;
            display: inline-block;
            vertical-align: top;
        }

            div.rdv-bloc div.icon a div i {
                position: relative;
                top: 4px;
                left: 4px;
            }

            div.rdv-bloc div.icon a div:first-child {
                width: 16px;
            }

        div.rdv-bloc div.icon a.hidden {
            display: none;
        }

div.rdv-bloc span.time-red {
    color: #CC0000;
}

div.rdv-bloc span.time-orange {
    color: #FF6600;
}

div.rdv-bloc span.time-green {
    color: #009933;
}

div.rdv-bloc span.time-grey {
    color: #666;
}

div.rdv-bloc span.time-red, div.rdv-bloc span.time-orange, div.rdv-bloc span.time-green, div.rdv-bloc span.time-grey {
    position: absolute;
    left: 16px;
    bottom: 16px;
    font-size: 10pt;
    font-weight: bold;
    border: solid 1px #ccc;
    padding: 6px 12px;
    background-color: #f4f4f4;
    border-radius: var(--box-radius);
}

div .rdv-left-line {
    margin-left: 2px;
    margin-top: 8px;
    border-left: solid 2px #999;
    padding-left: 8px;
    /*margin: 8px 04px 0;
    border: dashed 1px #ccc;
    border-radius: 5px;
    padding: 4px 8px;
    background-color: #f7f7f7;*/
}

button.list-group-item div.rdv-left-line small {
    color: #999;
}

button.list-group-item:hover div.rdv-left-line {
    border-left-color: #ddd;
    /*border-color: #fff;
    background-color: transparent;*/
}

    button.list-group-item:hover div.rdv-left-line small {
        color: #fff;
    }

span.time-sep {
    margin-left: 8px;
    margin-right: 8px;
}

span.time-prestation {
    margin-left: 8px;
    font-size: 9pt;
}

div.rdv-bloc div.rdv-buttons {
    margin: 0;
    padding: 0 16px 8px 16px;
}

div.rdv-warning h5 {
    font-weight: bold;
}

div.rdv-warning p {
    cursor: default;
    border-color: #cc3333;
    color: #cc3333;
    padding: 8px;
    font-weight: bold;
    font-size: 10pt;
    text-align: justify;
    margin: 0;
}

div.rdv-msg {
    cursor: default;
    border-color: transparent;
    background-color: transparent;
}

div.rdv-bg-whiteb {
    background-color: #fff;
    border: #999 solid 1px;
}

div.rdv-msg h5 {
    margin: 16px 8px;
    color: var(--menu-color);
    font-size: 10pt;
    font-weight: bold;
}

div.rdv-bloc a {
    color: var(--color-button);
    font-weight: bold;
    text-decoration: none;
}

    div.rdv-bloc a img {
        border: solid 1px #999;
        padding: 1px;
        background-color: #fff;
    }

div.rdv-bloc p a {
    padding: 0 4px;
}

div.rdv-bloc p.buttons a {
    display: inline-block;
    border: none;
    border-radius: 3px;
    min-width: 32px;
    height: 32px;
    background-color: var(--color-button);
    color: #fff;
    font-size: 10pt;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    line-height: 32px;
    vertical-align: middle;
    padding: 0 16px;
    text-decoration: none;
    margin: 0 0 8px 8px;
}

    div.rdv-bloc p.buttons a:hover {
        background-color: var(--color-light);
        border-color: var(--color-border);
    }

div.rdv-msg p.buttons a {
    display: inline-block;
    border: none;
    border-radius: 3px;
    min-width: 32px;
    height: 32px;
    background-color: #b07d34;
    color: #fff;
    font-size: 10pt;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    line-height: 32px;
    vertical-align: middle;
    padding: 0 16px;
    text-decoration: none;
}

    div.rdv-bloc p.buttons a.disabled, div.rdv-msg p.buttons a.disabled {
        background-color: #999;
    }

div.rdv-msg span {
    color: var(--menu-color);
    display: inline;
}

div.rdv-msg p {
    font-size: 10pt;
    font-weight: normal;
    color: var(--color-button);
    margin: 8px;
    text-align: justify;
}

    div.rdv-msg p.c {
        text-align: center;
    }

    div.rdv-bloc p.buttons, div.rdv-msg p.buttons {
        text-align: right;
        margin: 16px 16px 8px 8px;
    }

div.rdv-txt label i, div.rdv-txt span i, div.rdv-menu i, div.rdv-msg span i {
    font-size: 10pt;
    margin-right: 8px;
}

div.rdv-txt input[type=text], div.rdv-txt input[type=password], div.rdv-txt input[type=email], div.rdv-txt textarea, div.rdv-chk-txt input[type=text] {
    display: block;
    margin: 0;
    padding: 0 0 2px 0;
    border: none;
    height: 32px;
    text-indent: 8px;
    border-radius: 4px;
    width: 100%;
    line-height: 32px;
    font-size: 13pt;
    font-weight: bold;
    color: var(--color-button);
    outline: none;
    border-bottom: solid 4px #fff;
    border-radius: 0 0 var(--box-radius) var(--box-radius);
}

div.rdv-txt textarea {
    height: auto;
    min-height: 32px;
    resize: none;
    line-height: 20px;
    text-indent: 0;
    padding: 4px 4px 0 8px;
    text-wrap-mode: nowrap;
    overflow-x: hidden;
}

    div.rdv-txt textarea.big {
        height: 144px;
    }

    div.rdv-txt input[type=text]:focus, div.rdv-txt input[type=password]:focus, div.rdv-txt input[type=email]:focus, div.rdv-txt textarea:focus, div.rdv-chk-txt input[type=text]:focus {
        border-bottom: solid 4px var(--color-border);
    }

    div.rdv-txt input[type=text]::placeholder, div.rdv-txt input[type=password]::placeholder, div.rdv-txt input[type=email]::placeholder, div.rdv-txt textarea::placeholder, div.rdv-chk-txt input[type=text]::placeholder {
        color: #aaa;
        font-size: 9pt;
        font-weight: normal;
    }

.datepicker {
    margin-left: 8px;
    margin-top: -4px;
    border-radius: 6px !important;
    padding: 6px !important;
}

    .datepicker table {
        font-size: 14px;
        background-color: #eee;
    }

        .datepicker table thead tr:last-child th {
            border-bottom: solid 1px #ccc;
        }

        .datepicker table tbody {
            background-color: #fff;
        }

        .datepicker table th {
            font-weight: bold;
            font-size: 14px;
            text-transform: capitalize;
            color: #999;
        }

        .datepicker table td {
            font-weight: bold;
        }

            .datepicker table td.disabled {
                color: #c00 !important;
                font-size: 11px;
            }

.datepicker-txt {
    width: 100%;
    color: #333;
    font-weight: bold;
    outline: none;
    cursor: pointer;
}

    .datepicker-txt:hover {
        background-color: var(--color-button);
        color: #fff;
    }

.datepicker table thead th, .datepicker table tbody td {
    padding: 8px 10px;
    border-radius: 0;
    line-height: 20px;
}


/* radio */
div.rdv-txt div.rdv-lst {
    position: static;
    background-color: #fff;
    top: -28px;
    margin: 8px 0;
    padding: 0;
    height: auto;
    display: none;
}

    div.rdv-txt div.rdv-lst div {
        padding: 8px;
        border-bottom: dashed 1px #999;
        font-size: 9pt;
        font-weight: bold;
        color: #999;
    }

        div.rdv-txt div.rdv-lst div:first-child {
            border-top: dashed 1px #999;
        }

        div.rdv-txt div.rdv-lst div.active {
            font-weight: bold;
            color: var(--color-button);
        }

        div.rdv-txt div.rdv-lst div i {
            margin-right: 8px;
            font-size: 10pt;
        }

/* Surcharges bootstrap */
.nav > li > a {
    padding: 8px 10px !important;
    font-size: 12px;
}

.nav-tabs > li > a {
    margin-right: 1px !important;
}

/* Contrôle checktext */
div.rdv-chk-txt {
    margin-top: 16px;
    border: solid 1px #999;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

    div.rdv-chk-txt label {
        font-size: 9pt;
        color: #999;
        margin: 0;
        padding: 8px 0 8px 8px;
        width: 100%;
        cursor: pointer;
    }

    div.rdv-chk-txt input[type=text] {
        cursor: pointer;
    }

    div.rdv-chk-txt label i {
        margin-right: 4px;
    }

    div .rdv-chk-txt input[type=checkbox] {
        display: none;
    }

    div.rdv-chk-txt.off input[type=text] {
        display: none;
    }



div .rdv-txt label.container {
    display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 9pt;
    font-weight: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #aaa;
    line-height: 20px;
    vertical-align: middle;
    margin-right: 32px;
}

    div.rdv-txt label.container:last-child {
        margin-bottom: 4px;
    }

div.rdv-txt label.on {
    color: var(--color-button) !important;
    font-size: 10pt;
    font-weight: bold;
}

div.rdv-txt label.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 6px;
    left: 6px;
    height: 16px;
    width: 16px;
    background-color: #ccc;
    border-radius: 50%;
}

div.rdv-txt label.container:hover input ~ .checkmark {
    background-color: var(--color-button);
}

div.rdv-txt label.container input:checked ~ .checkmark {
    background-color: var(--color-button);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

div.rdv-txt label.container input:checked ~ .checkmark:after {
    display: block;
}

div.rdv-txt label.container .checkmark:after {
    top: 5px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

div.rdv-card {
    margin-left: 10px;
    margin-bottom: 0;
    width: calc(100% - 20px);
    background-image: none;
    position: relative;
    top: -40px;
}

    div.rdv-card .rdv-head {
        font-size: 10pt;
        font-weight: bold;
        color: #fff;
        margin: 12px 0px 24px 8px;
        position: sticky;
        top: 13px;
        z-index: 2;
        background-image: none;
        background-position: center right;
        background-repeat: no-repeat;
    }

    div.rdv-card div.rdv-head.rdv-top {
        margin: 8px 0 24px 32px;
        background-image: var(--logo-small); 
    }

    div.rdv-card .rdv-subhead {
        font-size: 10pt;
        font-weight: normal;
        color: #fff;
        margin: 0 0 8px 8px;
    }

    div.rdv-card .rdv-buttons {
        margin: 16px 0 0 0;
        text-align: right;
    }

    div.rdv-card .rdv-buttons-social {
        margin: 16px 0 0 0;
    }

    div.rdv-card .rdv-buttons-social, div.rdv-card .rdv-sep-social {
        display: none;
    }

    div.rdv-card .rdv-buttons input {
        border: none;
        border-radius: 3px;
        padding: 6px 12px;
        height: 32px;
        vertical-align: top;
        background-color: var(--color-button);
        color: #fff;
        font-size: var(--text-size);
        font-weight: bold;
        outline: none;
        cursor: pointer;
        margin-left: 8px;
        margin-bottom: 8px;
    }

    div.rdv-card .rdv-buttons a i {
        line-height: inherit;
    }

    div.rdv-card .rdv-buttons input:disabled {
        background-color: #ccc;
        cursor: default;
    }

    div.rdv-card .rdv-buttons input:not(:disabled):hover {
        background-color: var(--color-light);
        border-color: var(--color-border);
    }

div.rdv-disabled {
    background-color: #ddd;
}

    div.rdv-disabled input[type=text], div.rdv-disabled textarea {
        background-color: #ddd;
        border-bottom-color: #ddd;
    }

div.rdv-card .rdv-buttons a {
    border: none;
    border-radius: 3px;
    min-width: 32px;
    height: 32px;
    background-color: var(--color-button);
    color: #fff;
    font-size: 10pt;
    font-weight: bold;
    outline: none;
    cursor: pointer;
}

span.rdv-buttons a {
    border: none;
    border-radius: 3px;
    padding: 6px 12px;
    height: 32px;
    vertical-align: top;
    background-color: var(--color-button);
    color: #fff;
    font-size: 10pt;
    font-weight: bold;
    outline: none;
    cursor: pointer;
}

div.rdv-app {
    position: relative;
    height: 80px;
    width: 100%;
    background-color: var(--color-button);
    /*background-image: url(/images/logo-hairdv-blanc.png);
	background-repeat: no-repeat;
	background-position: 92% 12px;*/
}

    div.rdv-app a {
        position: absolute;
        top: 8px;
        right: 20px;
        content: var(--logo-blanc);
        z-index: 2;
    }

    div.rdv-app div {
        position: absolute;
        top: 60px;
        font-size: 10pt;
        font-weight: bold;
        color: #fff;
        width: 100%;
        /*margin-left: 5%;*/
        text-align: right;
        /*padding-right: 4px;*/
        padding: 0 20px 4px 0;
        background-color: var(--color-button);
        z-index: 2;
    }

sup {
    font-weight: bold;
    font-size: 75%;
    letter-spacing: 1px;
    color: #cc3333;
    margin-left: 6px;
}

div.rdv-marge {
    margin-top: 32px;
}

div.rdv-sep-social {
    text-align: center;
    padding: 0px 0 12px 0;
    border-bottom: solid 1px #ccc;
    margin-bottom: 30px;
}

    div.rdv-sep-social span {
        position: relative;
        top: 22px;
        background-color: #eee;
        padding: 0 12px;
        color: #999;
    }

/*div.rdv-card .rdv-links
{
	margin: 32px 0 0 0;
	line-height: 32px;
    display: none;
}
div.rdv-card .rdv-links a
{
    display: table;
	text-decoration: none;
	font-size: 10pt;
	font-weight: bold;
	color: #c58e41;
	margin: 0;
}
div.rdv-card .rdv-links .rdv-menu
{
	display: none;
	font-size: 10pt;
	font-weight: bold;
	color: #666;
}*/

div.rdv-card div.rdv-links {
    position: fixed;
    top: 0;
    left: 0;
    padding: 8px 24px 8px 5%;
    background-color: var(--color-button);
    color: #fff;
    width: 100%;
    height: auto;
    box-shadow: none;
    z-index: 1;
}

    div.rdv-card div.rdv-links div.rdv-menu {
        margin: 8px 0 8px 0;
        cursor: pointer;
    }

    div.rdv-card div.rdv-links span.rdv-menu-txt {
        display: none;
    }

    div.rdv-card div.rdv-links a {
        margin: 0 0 0 0;
    }

    div.rdv-card div.rdv-links a {
        display: block;
        color: var(--menu-color);
        font-weight: bold;
        line-height: 32px;
        text-decoration: none;
    }

    div.rdv-card div.rdv-links a {
        display: none;
    }

div.rdv-card div.rdv-opened a {
    display: block;
}

div.rdv-card div.rdv-links.rdv-opened {
    background-color: #eee;
    color: var(--menu-color);
    width: auto;
    min-width: 50%;
    height: 100%;
    box-shadow: 1px 0px 4px #333;
    z-index: 3;
}

.r {
    padding-right: 8px !important;
    text-align: right;
}

div.rdv-foot {
    position: absolute;
    height: 33px;
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--color-button);
}

    div.rdv-foot a {
        color: #fff;
        font-size: 9pt;
        font-weight: bold;
        text-decoration: none;
        display: block;
        padding: 8px 16px;
        background-color: var(--color-button);
    }

.no-plan {
    height: 320px;
    text-align: center;
    padding: 70px 12px 0 12px;
    background-color: #fff;
}

#modalMap_plan {
    border: none !important;
}

#modalMap_main div.modal-body {
    padding: 0;
}

button.visible {
    visibility: visible;
    /*display: table-row;*/
}

i.invisible {
    visibility: hidden;
    display: none;
}

button.invisible {
    visibility: hidden;
    display: none;
}

.list-group {
    margin-bottom: 0;
    padding: 4px;
}

    .list-group button {
        font-weight: bold;
        line-height: 24px;
    }

        .list-group button small {
            color: #999;
        }

            .list-group button small.sep {
                margin-left: 8px;
            }

        .list-group button i {
            margin-left: 8px;
            float: right;
            line-height: 20px;
        }

.color-female {
    color: #cc33cc;
}

.color-male {
    color: #3366cc;
}

.color-child {
    color: #339933;
}

.rdv-sepl {
    margin-left: 16px;
}

.modal-body p, .modal-body div.bootbox-body {
    margin: 8px 16px 8px 16px;
    color: #666;
}

button i.fas.fa-level-down-alt {
    position: absolute;
    bottom: 2px;
    /*right: 10px;*/
    margin-left: 20px;
}

button i.fas.fa-level-up-alt {
    position: absolute;
    bottom: 18px;
    /*right: 10px;*/
    margin-left: 20px;
}

div.list-group button.pad {
    padding-left: 16px;
}

p.list-group-item-p {
    color: #666;
}

p.list-group-item-pmt {
    color: #666;
    margin-top: 32px;
}

.list-group-item {
    border-top: 1px solid #ddd;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

    .list-group-item:first-child, .list-group-item:last-child {
        border-radius: 0;
    }

a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus {
    border-color: #ddd;
    background-color: transparent;
    color: #555;
}

button.list-group-item.disabled, button.list-group-item.disabled:hover {
    color: #999;
}

button.list-group-item:disabled:hover {
    border-color: #ddd;
    cursor: default;
}

button.list-group-item:hover i, button.list-group-item:hover small {
    color: #555;
}

.list-group-head {
    color: #999;
    font-size: 14px;
    font-variant: all-small-caps;
    font-weight: bold;
    background-color: #eee;
    margin-bottom: 0;
    padding: 2px 8px 3px 8px;
}

.nav-prestation li a {
    color: #777 !important;
    font-weight: normal !important;
}

    .nav-prestation li.active a, .nav-prestation li a:focus {
        background-color: #fff !important;
        color: #555 !important;
        font-weight: bold !important;
    }

@media (min-width: 576px) {
    div.rdv-app {
        background-position: 88% 12px;
    }

        div.rdv-app a {
            right: 10%;
        }

        div.rdv-app div {
            /*width: 80%;
        margin-left: 10%;*/
            padding-right: 10%;
        }

    div.rdv-card {
        /*top: -98px;*/
        margin-left: 10%;
        width: 80%;
        /*padding: 36px 16px 16px 16px;*/
    }

        div.rdv-card div.rdv-links {
            min-width: 250px;
            padding: 8px 24px 8px 10%;
        }

    div .rdv-txt label.container {
        display: inline-block;
        margin-bottom: 4px;
    }
}

@media (min-width: 768px) {
    div.hidden_mobile {
        visibility: hidden;
        display: none;
    }

    input.hidden_mobile {
        visibility: hidden;
        display: none;
    }

    body {
        background-color: var(--background-color);
        padding: 0;
    }

    div.rdv-app a {
        top: 48px;
        right: calc(23% - 105px);
        content: var(--logo);
    }

    div.rdv-app div {
        top: 104px;
        right: calc(23% - 121px);
        color: var(--color-button);
        padding-right: 20px;
        background-color: transparent;
        z-index: 1;
    }

    div.rdv-card {
        margin-left: calc(23% + 125px);
        top: -48px;
        width: 54%;
        padding: 36px 16px 16px 16px;
        border: solid 1px #999;
        border-radius: 8px;
        background-color: #eee;
        box-sizing: border-box;
        /*background-image: url(/images/logo-hairdv.png);
        background-repeat: no-repeat;
        background-position: 96% 8px;*/
    }

        div.rdv-card .rdv-head {
            color: #333;
            position: unset;
            font-size: 12pt;
            margin: 12px 0px 24px 8px;
        }

        div.rdv-card .rdv-subhead {
            color: #666;
        }

    div.rdv-app {
        height: 80px;
        background-image: none;
    }

    div.rdv-card div.rdv-links {
        border-top: solid 1px #999;
        border-right: solid 1px #999;
        border-bottom: solid 1px #999;
        border-left: none;
        border-radius: 0 8px 8px 0;
        background-color: #eee;
        padding: 16px;
        margin: 32px 0 0 0;
        width: auto;
        height: auto;
        color: #c58e41;
        box-shadow: none;
    }

        div.rdv-card div.rdv-links div.rdv-menu {
            display: block;
            color: #333;
            font-weight: bold;
            cursor: default;
        }

        div.rdv-card div.rdv-links span.rdv-menu-txt {
            display: inline;
        }

        div.rdv-card div.rdv-links a {
            display: block;
        }

    div.rdv-foot a {
        display: inline-block;
    }
}

.btnPrestationSalon {
    cursor: not-allowed;
    background-color: #f8f8f8;
}

span.btn-inlines {
    min-height: 36px;
    display: inline-block;
}

    span.btn-inlines i {
        margin-top: 7px;
        margin-left: 15px;
    }

    span.btn-inlines button {
        min-width: 58px;
        width: auto;
        text-align: center;
        display: inline;
        border: 1px #ccc solid;
        margin: 8px;
        border-radius: var(--box-radius) !important;
        padding: 8px !important;
        background-color: #f4f4f4;
    }

        span.btn-inlines button:not(:disabled):hover {
            border-color: var(--color-light);
            color: #fff;
            background-color: var(--color-light);
        }

    span.btn-inlines div.rdv-left-line {
        display: none;
        visibility: hidden;
    }

i.fs8 {
    font-size: 0.8em;
}

i.fs12 {
    font-size: 1.2em;
}

i.fs14 {
    font-size: 1.4em;
}

i.fs16 {
    font-size: 1.6em;
}

i.fs18 {
    font-size: 1.8em;
}

i.fs24 {
    font-size: 2.4em;
}


@media (min-width: 576px) {
    .modal-body {
        max-height: calc(100vh - 200px);
    }

        .modal-body.modal-presta {
            max-height: calc(100vh - 240px);
        }
    /*    div.modal-body.bigmodal {
        max-height: calc(80vh - 50px);  
    }*/
}

/*
@media (max-width: 576px) {
    div.modal-body.bigmodal {
        max-height: calc(70vh - 80px);
    }
}
*/
button.list-group-item small {
    margin-left: 10px;
}

button.list-group-item:last-child {
    border-bottom: solid 1px #ddd;
}

span.btn-inlines button.list-group-item:last-child {
    margin-bottom: 8px;
}

div.modal-content .btn {
    border-radius: 3px;
}

#modalPanierList {
    height: 470px;
}

a.paniertrash {
    text-decoration: none;
    color: #222;
}

    a.paniertrash:hover {
        color: #888;
    }

.iconred {
    color: #8c2934 !important;
}

.table-panier > thead > tr > th, .table-panier > tbody > tr > th,
.table-panier > tfoot > tr > th, .table-panier > thead > tr > td,
.table-panier > tbody > tr > td, .table-panier > tfoot > tr > td {
    vertical-align: baseline;
    border-top: none;
    border-bottom: solid 1px #ccc;
}

.table-panier > thead > tr > th, .table-panier > tbody > tr > th,
.table-panier > tfoot > tr > th, .table-panier > thead > tr > td,
.table-panier > tbody > tr > td, .table-panier > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ccc;
}

.table-panier {
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #f8f8f8;
}

.container h1 {
    font-size: 10pt !important;
    font-weight: bold !important;
    color: var(--color-button) !important;
    margin: inherit !important;
}

h1 {
    font-size: 10pt !important;
    font-weight: bold !important;
    /*color: var(--color-button) !important;*/
    margin: inherit !important;
}

.cliavatar {
    width: 70px;
    height: 70px;
    margin: 0;
    border-radius: 50%;
}

.table-hover-presta tbody tr:hover td, .table-hover-presta tbody tr:hover th {
    background-color: #ddd;
}

div.presta {
    margin-left: 8px;
    width: calc(100% - 16px);
    border: solid 1px #ccc;
    border-radius: var(--box-radius);
    background-color: #f4f4f4;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
}

    div.presta.unselectable {
        cursor: default;
    }

div.presta-title {
    font-size: 11pt;
    font-weight: bold;
    text-align: justify;
}

div.presta-desc {
    font-size: 10pt;
    font-weight: normal;
    text-align: justify;
    margin-top: 8px;
}

div.presta-bar {
    position: relative;
    vertical-align: top;
    margin-top: 20px;
    min-height: 20px;
}

    div.presta-bar div.presta-bar-left {
        display: inline-block;
    }

    div.presta-bar div.presta-bar-right {
        display: inline-block;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    div .presta-bar span {
        font-size: 10pt;
        font-weight: bold;
        margin-right: 32px;
        display: inline-block;
    }

        div.presta-bar span.presta-star {
            display: inline-block;
        }

        div.presta-bar span.spnGenre {
            margin-bottom: 10px;
            margin-right: 32px;
        }

    div.presta-bar div.presta-caddy {
        display: inline-block;
        height: 32px;
        line-height: 32px;
    }

        div.presta-bar div.presta-caddy i {
            position: relative;
            bottom: -1px;
            font-size: 16px;
            color: var(--color-button);
            height: 32px;
            line-height: 32px;
            display: block;
        }

        div.presta-bar div.presta-caddy span.presta-nb {
            position: relative;
            right: -7px;
            bottom: -9px;
            font-size: 9pt;
            font-weight: bold;
            color: var(--color-button);
            margin: 0;
            display: block;
            line-height: 1;
        }

    div.presta-bar div.presta-btn {
        display: inline-block;
        color: #fff;
        background-color: var(--color-button);
        font-weight: bold;
        height: 32px;
        line-height: 32px;
        padding: 0 16px;
        border-radius: 3px;
        margin-left: 10px;
    }

        div.presta-bar div.presta-btn i {
            height: 32px;
            line-height: 32px;
        }

div.presta:not(.unselectable):hover {
    border-color: var(--color-light);
    background-color: var(--color-light);
    color: #fff;
}

    div.presta:not(.unselectable):hover div.presta-title, div.presta:not(.unselectable):hover div.presta-desc, div.presta:not(.unselectable):hover div.presta-bar span {
        color: #fff;
    }

    div.presta:not(.unselectable):hover div.presta-btn {
        background-color: #fff;
        color: var(--color-light);
    }

    div.presta:not(.unselectable):hover div.presta-caddy i {
        color: #fff;
    }


div.modal-footer button i {
    margin-right: 16px;
}

div.addother {
    margin-left: calc(100% - 228px);
    width: 220px;
    border: solid 1px var(--color-border);
    border-radius: 3px;
    color: #fff;
    background-color: var(--color-border);
    padding: 8px;
    font-weight: bold;
    margin-bottom: 16px;
    position: relative;
    cursor: pointer;
    text-align: center;
}

    div.addother:hover {
        background-color: var(--color-light);
        border-color: var(--color-light);
    }

div.pers {
    margin-left: 8px;
    width: calc(100% - 16px);
    border: solid 1px #ccc;
    border-radius: var(--box-radius);
    background-color: #f4f4f4;
    margin-bottom: 10px;
    position: relative;
    height: 86px;
    box-sizing: content-box;
    cursor: pointer;
    display: table;
}

    div.pers:hover {
        border-color: var(--color-light);
        background-color: var(--color-light);
        color: #fff;
    }

        div.pers:hover div.pers-nom {
            color: #fff;
        }

.pers:hover .pers-btn {
    background-color: #fff;
    color: var(--color-light);
    border-color: var(--color-light);
}

div.pers-photo {
    border: none;
    background-color: transparent;
    width: 70px;
    height: 70px;
    padding: 8px;
    display: table-cell;
    text-align: center;
    color: #ccc;
}

    div.pers-photo i {
        line-height: 70px;
    }

div.pers-nom {
    font-size: 11pt;
    font-weight: bold;
    display: table-cell;
    vertical-align: middle;
    padding: 0 90px 0 8px;
}

    div.pers-nom i.fa-star {
        margin-top: 10px;
    }

div.pers div.pers-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    border: solid 1px var(--color-border);
    border-radius: 3px;
    color: #fff;
    background-color: var(--color-button);
    padding: 4px 16px;
    font-weight: bold;
}

button.pers-btn:hover {
    background-color: var(--color-light);
    border-color: var(--color-border);
}

div.modal-header h5 span.title-info {
    display: inline-block;
    border: solid 1px #ccc;
    border-radius: var(--box-radius);
    background-color: #fff;
    padding: 4px 8px;
    margin: 0 8px 0 0;
    color: #000;
    font-size: 10pt;
    font-weight: bold;
}

@media (max-width: 576px) {
    div.presta-bar span {
        display: block;
        margin-right: 8px;
    }

    div.modal-header h5 span.title-info {
        display: block;
        margin: 0 8px 8px 0;
    }
}

div.modal-header h5 span.title-info i {
    color: #666;
    font-size: 8pt;
    position: relative;
    top: -1px;
    margin-right: 4px;
}

div.modal-header h5 span.title-main {
    display: block;
    margin: 0 0 0 4px;
    font-weight: bold;
}

div.modal-header span.title-info + span.title-main {
    margin-top: 15px !important;
}

div.rdv-chk-txt input.text-one, div.rdv-chk-txt input.text-two {
    display: inline-block;
    width: calc(50% - 2px);
    box-sizing: border-box;
}

div.rdv-chk-txt input.text-one {
    border-radius: 0 0 0 3px;
}

div.rdv-chk-txt input.text-two {
    border-radius: 0 0 3px 0;
}

span.fw-normal {
    font-weight: normal !important;
    margin: 0 4px;
}

.rdv-menu-mb {
    border-bottom: solid 1px #ccc;
    padding-bottom: 4px;
}

.rdv-menu-mt {
    border-top: solid 1px #fff;
    padding-top: 4px;
}

div.rdv-buttons.mobile {
    display: none;
}

    div.rdv-buttons.mobile input {
        margin-top: 8px;
    }

@media (max-width: 576px) {
    div.rdv-buttons.mobile {
        display: block;
    }

    div.rdv-grid {
        display: grid;
        justify-content: right;
    }

        div.rdv-grid input {
            margin-top: 8px;
        }
}

a.salon-btn, button.salon-btn {
    border: solid 1px #ccc;
    border-radius: var(--box-radius) !important;
    background-color: #f4f4f4;
    padding: 8px;
    color: #333;
    font-size: 11pt;
    font-weight: bold;
    text-decoration: none;
    margin: 0 0 10px 0;
    display: block;
    line-height: 24px;
}

    a.salon-btn:hover, button.salon-btn:hover {
        background-color: var(--color-light);
        border-color: var(--color-light);
        color: #fff;
    }

button.salon-btn {
    margin-left: 8px;
    width: calc(100% - 16px);
}

button.salon-btn small {
    color: #333;
    font-size: 10pt;
    font-weight: normal;
    margin-left: 0;
}
button.salon-btn small.ml {
    margin-left: 28px;
}

button.salon-btn:hover i, button.salon-btn:hover small {
    color: #fff;
}

h5.modal-title {
    font-weight: bold;
}

@media(max-width:1024px) {
    input[type='button'].mb-8 {
        margin-bottom: 8px;
    }
}

div.rdv-bloc div.rdv-buttons div.warning {
    font-size: 10pt;
    font-weight: bold;
    color: #cc3333;
    text-align: center;
    padding: 8px;
    margin: 8px 8px 0 8px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    background-color: #f4f4f4;
}

span.rdv-horaires {
    font-size: var(--text-size);
}

span.rdv-horaires-day {
    display: inline-block;
    width: 75px;
    padding: 2px 0;
    text-transform: capitalize;
    color: #666;
}

span.rdv-horaires-time {
    display: inline-block;
    padding: 2px 0;
    color: #666;
}

.item-sel {
    margin: 0 8px 8px 8px;
    box-sizing: border-box;
    border: dashed 1px #ccc;
    border-left: solid 5px var(--color-border);
    border-radius: var(--box-radius);
    background-color: #f4f4f4;
    font-weight: bold;
    display: table;
    width: calc(100% - 16px);
    padding: 10px 0;
}


.item-sel-cell {
    display: table-cell;
    vertical-align: middle;
}

    .item-sel-cell.icon, .item-sel-cell.trash {
        width: 40px;
        text-align: center;
    }

    .item-sel-cell.trash {
        width: 50px;
        cursor: pointer;
    }

        .item-sel-cell.trash i {
            border-radius: 3px;
            background-color: var(--color-border);
            color: #fff;
            padding: 10px;
        }

            .item-sel-cell.trash i:hover {
                background-color: var(--color-light);
                transform: scale(1.1);
            }

/* -- salon avec image -- */
div.rdv-bloc.rdv-bki {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: unset;
}

    div.rdv-bloc.rdv-bki:hover {
        background-blend-mode: luminosity;
        border-color: #333;
        box-shadow: 0 0 2px #333;
    }

    div.rdv-bloc.rdv-bki h5 {
        color: #fff;
        text-shadow: 2px 2px #000;
        letter-spacing: 1px;
        background-color: var(--color-back-img);
        border-radius: 4px 4px 0 0;
    }

        div.rdv-bloc.rdv-bki h5:hover {
            color: #fff;
        }

    div.rdv-bloc.rdv-bki div.icon {
        background-color: var(--color-back-img);
    }

div.rdv-bloc div.icon a {
    margin-bottom: 0;
}

div.rdv-bloc.rdv-bki div.rdv-buttons {
    background-color: var(--color-back-img);
    border-radius: 0 0 4px 4px;
}

div.rdv-bloc.rdv-bki div.icon a:hover {
    background-color: #0006;
}

div.rdv-bloc.rdv-bki div.icon a div {
    letter-spacing: 1px;
    text-shadow: 2px 2px #000;
}

div.rdv-card div.rdv-bki .rdv-buttons input {
    height: unset;
    color: #000;
    border: solid 1px #000;
    background-color: #fff;
}

    div.rdv-card div.rdv-bki .rdv-buttons input:disabled {
        color: #666;
        background-color: #ccc;
        border-color: #666;
        font-weight: normal;
    }

    div.rdv-card div.rdv-bki .rdv-buttons input:not(:disabled):hover {
        border-color: #fff;
        box-shadow: 0 0 4px #fff;
        color: #fff;
        background-color: var(--color-light);
    }

div.rdv-bki span.rdv-horaires {
    letter-spacing: 1px;
}

div.rdv-bloc.rdv-bki div.icon a div, div.rdv-bki span.rdv-horaires-day, div.rdv-bki span.rdv-horaires-time {
    color: #eee;
    text-shadow: 2px 2px #000;
}

div.rdv-bki span.rdv-horaires-day {
    width: 90px;
}

div.rdv-bloc.rdv-bki:hover h5, div.rdv-bloc.rdv-bki:hover p, div.rdv-bloc.rdv-bki:hover div.icon * {
    color: #fff !important;
}

div.rdv-bloc.rdv-bki div.icon a {
    padding: 4px 8px;
}

    div.rdv-bloc.rdv-bki div.icon a div:first-child {
        width: 24px;
    }

div.rdv-bloc.rdv-bki .rdv-grey {
    color: #ccc !important;
}

div.rdv-card div.rdv-bki .rdv-buttons input.rdv-photo-nav {
    position: absolute;
    padding: 0;
    height: 35px;
    line-height: 35px;
    width: 35px;
    bottom: 8px;
    background-color: transparent;
    border: none;
    color: #fff;
}

    div.rdv-card div.rdv-bki .rdv-buttons input.rdv-photo-nav:hover {
        background-color: transparent;
        box-shadow: none;
        transform: scale(1.5);
    }

div.rdv-card div.rdv-bki .rdv-buttons input.rdv-photo-prev {
    left: 8px;
}

div.rdv-card div.rdv-bki .rdv-buttons input.rdv-photo-next {
    left: 51px;
}

div.rdv-card div#divPrestationsInline {
    margin-top: 15px;
}

div#divPrestationsInline div.presta {
    margin: 0 0 10px -4px;
    width: calc(100% + 8px);
}

@media(min-width: 300px) {
    div#modalPrestations .nav li a {
        padding: 8px 5px !important;
        font-size: 12px;
    }
}

@media(min-width: 380px) {
    div#modalPrestations .nav li a {
        padding: 8px 7px !important;
        font-size: 13px;
    }
}

@media(min-width: 450px) {
    div#modalPrestations .nav li a {
        padding: 8px 8px !important;
        font-size: 14px;
    }
}

div.prestation-title {
    font-size: 10pt;
    font-weight: bold;
    margin-left: 8px;
    margin-bottom: 8px;
}

.btn.btn-primary, .btn.btn-default, .btn.btn-primary.disabled:hover, .btn.btn-default.disabled:hover {
    color: var(--color-button-text);
    background-color: var(--color-button);
}

    .btn.btn-primary.disabled, .btn.btn-default.disabled {
        opacity: 0.65;
    }

div.presta.blanc {
    background-color: #fff;
    border-color: #999;
}
