/* SECTION Sélecteur de plans */

.selecteur_plans, .visual_content {
    position: relative;
}

.selecteur_plans *:not(i) {
    font-family: 'Flamabook', sans-serif;
    user-select: none;
}

.selecteur_plans img {
    vertical-align: middle;
}

.selecteur_plans > .visual_content > div:not(.actif),
.selecteur_plans > div:not(.navigation):not(.actif) {
    visibility: hidden;
    opacity: 0;
}

.selecteur_plans polygon {
    transition: all 150ms ease-in-out;
}

/* SECTION Couleurs par défaut */
/* DEFAULT : #151515 */

/* COULEURS */
/* .selecteur_plans nav.navigation a,
.selecteur_plans .plans_etages .titre_etage,
.ui-dialog .ui-dialog-content,
.ui-dialog .ui-dialog-content .cta_unite a {
    border-color: #151515;
}

.selecteur_plans nav.navigation i,
.page_fiche_unite .informations .retour a i,
.page_fiche_unite .informations .cta a:hover,
.ui-dialog .ui-dialog-content .cta_unite a:hover {
    color: #151515;
}

.page_fiche_unite h1,
.page_fiche_unite .informations .cta a i,
.ui-dialog .ui-dialog-titlebar,
.ui-dialog .ui-dialog-content .cta_unite a i {
    background-color: #151515;
} */

/* SECTION Navigation */
.selecteur_plans nav.navigation {
    position: fixed;
    top: 10px;
    left: 10px;

    display: flex;
    flex-wrap: wrap;

    width: calc(100% - 20px);
    height: 40px;
    pointer-events: none;

    z-index: 10;
}

.selecteur_plans nav.navigation > * {
    pointer-events: initial;
}

/* .selecteur_plans nav.navigation .etat_vue, */
.selecteur_plans nav.navigation .titre_etage {
    padding: 5px 30px;
    margin-left: 15px;
    /* background-color: rgba(35, 31, 32, 1); */
}

.selecteur_plans nav.navigation .titre_etage h3 {
    color: #231f20;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    font-weight: 700;
}

.selecteur_plans nav.navigation .etat_vue {
    height: 40px;
    /* background-color: rgba(35, 31, 32, 1); */
}

.selecteur_plans nav.navigation .etat_vue .aucun_etage,
.selecteur_plans nav.navigation .etat_vue a {
    padding: 5px 30px;
}

.selecteur_plans nav.navigation .etat_vue.actif {
    background-color: #b89552;
    /*box-shadow: 2px 2px 10px rgba(35, 31, 32, 0.35);*/
}

.selecteur_plans nav.navigation a {
    transition: all 150ms ease-in-out;
}

.selecteur_plans nav.navigation p.aucun_etage,
.selecteur_plans nav.navigation a.retour {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
    /* text-transform: uppercase; */
    text-align: center;
    color: #231f20;
    
}

.selecteur_plans nav.navigation p.aucun_etage {
    color: #fff;
    text-shadow: 2px 2px 5px #231f20;
}

.selecteur_plans nav.navigation a.retour:hover {
    opacity: 1;
}

.selecteur_plans nav.navigation i {
    color: #231f20;
    margin-right: 15px;
}

.selecteur_plans nav.navigation p.aucun_etage:not(.actif) {
    display: none;
}

.selecteur_plans nav.navigation .retour:not(.actif) {
    display: none;
}

.selecteur_plans nav.navigation .retour:not(.actif):hover {
    color: #151515;
}

.selecteur_plans nav.navigation a.retour,
.selecteur_plans nav.filter_type a {
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: block;
    font-weight: 500;
    cursor: pointer;
}

.selecteur_plans nav.navigation .filtres {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 40px;
    z-index: 10;
}

.selecteur_plans nav.navigation .filtre_bouton {
    position: relative;
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    font-weight: 500;
    cursor: pointer;
    color: #231f20;
    /* text-transform: uppercase; */
    padding: 0 30px;
    background-color: #b89552;
    /*box-shadow: 2px 2px 10px rgba(35, 31, 32, 0.35);*/
}

.selecteur_plans nav.navigation .filtre_bouton.actif {
    background-color: #b89552;
}

.selecteur_plans nav.navigation .filtre_bouton.actif:after {
    content: "";
    border-top: 10px solid #b89552;
    border-right: 10px solid transparent;
    border-bottom: none;
    border-left: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
}

.selecteur_plans nav.navigation .filtre_bouton i {
    font-size: 16px;
    margin-right: 15px;
    
    transition: all 150ms ease-in-out;
}

.selecteur_plans nav.navigation .filtre_bouton.actif i,
.selecteur_plans nav.navigation .filtre_bouton:hover i {
    opacity: 1;
}

.selecteur_plans nav.navigation .filtre_bouton.actif,
.selecteur_plans nav.navigation .filtre_bouton:hover {
    color: #231f20;
}

.selecteur_plans .filtre_content {
    position: absolute;
    top: calc(40px + -100%);
    right: 0;
    display: flex;
    flex-wrap: wrap;
    width: 300px;
    overflow: hidden;
    z-index: -1;
    transform: translateX(0);
    transition: all 150ms ease-in-out;
    background-color: #231f20;
    /*box-shadow: 2px 2px 10px rgba(35, 31, 32, 0.35);*/
    visibility: hidden;
    opacity: 0;
    padding: 10px;
}

.selecteur_plans .filtre_content.actif {
    top: 40px;
    right: 0;
    visibility: visible;
    opacity: 1;
}

.selecteur_plans .filtre_content h4 {
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.selecteur_plans nav.filter_type {
    width: 100%;
    margin: 10px 0;
    text-align: center;
}

.selecteur_plans nav.filter_type a {
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    padding: 5px 15px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
}

/* .selecteur_plans nav.filter_type a:not(:last-child) {
    margin-right: 15px;
} */

.selecteur_plans nav.filter_type a.actif,
.selecteur_plans nav.filter_type a:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.selecteur_plans .titre_etage {
    position: relative;
    transition: all 150ms ease-in;
}

.selecteur_plans .titre_etage:not(.actif) {
    opacity: 0;
    transition: none;
}

.selecteur_plans .titre_etage h3 {
    font-family: 'Flamabook', sans-serif;
    font-weight: 400;
    /* text-transform: uppercase; */
    text-align: center;
}

.irs {
    width: 100%;
}

.irs-from, .irs-single, .irs-to {
    color: #231f20;
    font-size: 14px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background: #b89552;
    border-radius: 3px;
    -moz-border-radius: 3px;
}

.irs-line {
    height: 10px;
    top: 33px;
    background: #393637;
    border: none;
}

.irs-bar {
    border: none;
    background: #b89552;
}

.irs-slider {
    border: none;
    background: #fff;
    /*transition: all 150ms ease-in-out;*/
}

.irs-slider.state_hover, .irs-slider:hover {
    background: #fff;
}

@media screen and (max-width: 767px) {
    .selecteur_plans nav.navigation .retour span {
        display: none;
    }

    .selecteur_plans nav.navigation .retour i {
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .selecteur_plans nav.navigation .etat_vue .aucun_etage,
    .selecteur_plans nav.navigation .etat_vue a {
        padding: 5px 10px;
    }
    .selecteur_plans nav.navigation .etat_vue .aucun_etage {
        font-size: 12px;
    }
}

/* SECTION Perspective */
.selecteur_plans .perspective {
    overflow-y: hidden;
    overflow-x: auto;
    position: relative;
}

.selecteur_plans .perspective img {
    width: 100%;
    height: auto;
    pointer-events: none;
}

.selecteur_plans .perspective img.perspective_overlay {
    position: absolute;
    top: 0;
    left: 0;
}

.selecteur_plans .perspective svg {
    width: 100%;
    height: auto;

    position: absolute;
    top: 0;
    left: 0;
}

.selecteur_plans .perspective svg > polygon {
    fill: #1bb34d;
    fill-opacity: 0;
    cursor: pointer;
}

svg.numeros_etages {
    pointer-events: none;
}

g.basement * {
    cursor: pointer;
}

g.basement text {
    text-transform: uppercase;
    font-weight: 400;
}

.selecteur_plans .perspective svg > polygon.filtre_actif {
    fill-opacity: .15;
}

.selecteur_plans .perspective svg > polygon:hover, .selecteur_plans .perspective svg > polygon.actif {
    fill-opacity: .30;
}

.selecteur_plans .perspective .overlay_for_etage {
    position: absolute;
    -webkit-overflow-scrolling: touch;
    top: 0;
    bottom: inherit;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(255,255,255, .85);

    pointer-events: none;
}

.selecteur_plans .perspective .overlay_for_etage:not(.actif) {
    visibility: hidden;
    opacity: 0;
}

/* SECTION Plans d'étages */
.selecteur_plans .plans_etages {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

    transition: all 250ms ease-in-out;

    overflow-x: auto;
}

.selecteur_plans .plans_etages img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    pointer-events: none;
    transform: translateY(-50%);
}

.selecteur_plans .plans_etages img:not(.etage_overlay):not(.actif) {
    visibility: hidden;
    opacity: 0;
}

.selecteur_plans .plans_etages svg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.selecteur_plans .plans_etages svg polygon {
    fill: #1bb34d;
    fill-opacity: 0;
    cursor: pointer;
}

.selecteur_plans .plans_etages svg polygon.reserved {
    fill: #de9f15;
    fill-opacity: 0.35;
}

.selecteur_plans .plans_etages svg polygon.filtre_actif {
    fill-opacity: .35;
}

.selecteur_plans .plans_etages svg polygon:hover, .selecteur_plans .plans_etages svg polygon.unite_actif {
    fill-opacity: .65;
}

.selecteur_plans .plans_etages svg polygon.sold, .selecteur_plans .plans_etages svg polygon.rented {
    fill: #b31b1b;
    fill-opacity: 0.65;
    cursor: default;
}

.selecteur_plans .plans_etages svg polygon:not(.actif) {
    visibility: hidden;
    opacity: 0;
}

/* SECTION Fiches */
.selecteur_plans .fiches_unites,
.selecteur_plans .fiches_unites > div,
.selecteur_plans .fiches_stationnements,
.selecteur_plans .fiches_stationnements > div,
.selecteur_plans .fiches_espaces_communs,
.selecteur_plans .fiches_espaces_communs > div {
    display: none;
}

.ui-widget {
    font-family: 'Flamabook', sans-serif;
}

.ui-dialog {
    padding: 0;
    border-radius: initial;
    outline: 0;
}

.ui-dialog * {
    user-select: none;
    outline: 0;
}

.ui-dialog.ui-front {
    z-index: 50;
}

.ui-dialog.ui-widget.ui-widget-content {
    border: none;
}

.ui-dialog .ui-dialog-titlebar {
    position: relative;
    border: none;
    border-radius: initial;
    color: #fff;
    padding: 10px 15px;

    height: 40px;
}

.ui-draggable-handle {
    cursor: move;
}

.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
    display: none;
}

.ui-dialog .ui-dialog-titlebar button.ui-dialog-titlebar-close {
    display: none;
}

.ui-dialog .ui-dialog-content {
    background-color: #fff;
    padding: 10px;
    border: 1px solid;
    overflow: visible;
    min-height: initial !important;
}

body .ui-dialog .ui-dialog-content .container_fiche {
    padding: 15px;
}

.ui-dialog .ui-dialog-content .entete_fiche {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;

    background-color: #231f20; 

    /* position: absolute;
    top: -40px;
    left: 0; */

    /* pointer-events: none; */
}

.ui-dialog .ui-dialog-content .title_infobox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(100% - 39px);
}

.ui-dialog .ui-dialog-content .title_infobox > p {
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
    padding: 10px;
    font-size: 20px;
    line-height: 20px;
}

.entete_fiche + p.disponibilite {
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1;
    /* text-transform: uppercase; */
    margin-bottom: 0;
}

.entete_fiche + p.disponibilite i {
    margin-right: 5px;
}

.entete_fiche + p.disponibilite.available {
    background-color: #1bb34d;
}

.entete_fiche + p.disponibilite.reserved {
    background-color: #de9f15;
}

.entete_fiche + p.disponibilite.rented, .entete_fiche + p.disponibilite.sold {
    background-color: #b31b1b;
}

.ui-dialog .ui-dialog-content .close_infobox {
    width: 39px;
    height: 39px;

    cursor: pointer;
    pointer-events: initial;
}

.ui-dialog .ui-dialog-content .close_infobox i {
    line-height: 39px;
    text-align: center;
    display: block;

    transition: all 250ms ease-in-out;
}

/* .ui-dialog .ui-dialog-content .informations_principales {
    margin: 0 0 15px 0;
} */

.ui-dialog .ui-dialog-content .informations_principales p {
    color: #231f20;
    margin-bottom: 0;
}

.ui-dialog .ui-dialog-content .informations_principales strong {
    font-weight: 700;
}

.ui-dialog .ui-dialog-content .cta_unite {
    margin-top: 10px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.ui-dialog .ui-dialog-content .cta_unite a {
    /* display: flex;
    align-items: center; */
    /* align-self: stretch; */
    text-align: center;
    position: relative;
    width: 100%;
    color: #231f20;
    background-color: #b89552;
    padding: 5px 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    transition: all 150ms ease-in-out;
}

.ui-dialog .ui-dialog-content .cta_unite a:not(:last-of-type) {
    margin-bottom: 5px;
}

.ui-dialog .ui-dialog-content .cta_unite a i {
    /* width: 30px; */
    height: 100%;
    /* text-align: center; */
    color: #231f20;
    font-size: 18px;
    font-weight: 500;
    margin-right: 15px;
    line-height: 30px;
    background-color: #b89552;
    transition: all 300ms ease-in-out;
}

/* .ui-dialog .ui-dialog-content .cta_unite a i:before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
} */

.ui-dialog .ui-dialog-content > a {
    display: block;
}

.ui-dialog .ui-dialog-content > a img {
    width: 100%;
    height: auto;
}

body .ui-dialog .ui-dialog-titlebar {
    background-color: #343434;
}

body .ui-dialog .ui-dialog-content {
    border: none;
    padding: 0;
}

.ui-dialog.ui-widget.ui-widget-content {
    box-shadow: 0 6px 10px 0 rgba(0,0,0,0.14), 0 1px 18px 0 rgba(0,0,0,0.12), 0 3px 5px -1px rgba(0,0,0,0.20);
    /* border: 2px solid #231f20; */
}

.ui-dialog .ui-dialog-titlebar {
    height: 40px;
}

body .ui-dialog .ui-dialog-content .close_infobox i {
    width: 50px;
    font-size: 20px;
    line-height: 40px;
    color: #231f20;
    font-weight: 500;
    background-color: #b89552;
}

.ui-dialog .ui-dialog-content .informations_principales {
    display: flex;
    flex-wrap: wrap;
}

.ui-dialog .ui-dialog-content .informations_principales p {
    width: 100%;
    font-weight: 300;
    line-height: 1.5;
    font-size: 18px;
}

.ui-dialog .ui-dialog-content .title_infobox {
    width: calc(100% - 50px);
}

.ui-dialog .ui-dialog-content .close_infobox {
    width: initial;
    height: initial;
}

.ui-tooltip-arrow.top {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #231f20;
    border-left: 10px solid transparent;
    transform: translateX(-50%);
}

.ui-tooltip-arrow.bottom {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    border-top: 10px solid #fff;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    transform: translateX(-50%);
}

/* SECTION formulaire_demande_informations */

#formulaire_demande_informations {
    width: 100%;
    max-width: 600px;
}

#formulaire_demande_informations h3 {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 28px;
    text-align: center;
    margin-bottom: 35px;
}

#formulaire_demande_informations svg path {
    fill: #b89552;
}

#formulaire_demande_informations input:-webkit-autofill,
#formulaire_demande_informations input:-webkit-autofill:hover, 
#formulaire_demande_informations input:-webkit-autofill:focus
#formulaire_demande_informations textarea:-webkit-autofill,
#formulaire_demande_informations textarea:-webkit-autofill:hover
#formulaire_demande_informations textarea:-webkit-autofill:focus,
#formulaire_demande_informations select:-webkit-autofill,
#formulaire_demande_informations select:-webkit-autofill:hover,
#formulaire_demande_informations select:-webkit-autofill:focus {
  border-color: #b89552 !important;
  -webkit-text-fill-color: #b89552;
  -webkit-box-shadow: 0 0 0px 1000px rgba(226, 227, 228, 0.15) inset;
  transition: background-color 5000s ease-in-out 0s;
}

#formulaire_demande_informations * {
    transition: all 150ms ease-in-out;
}

#formulaire_demande_informations i.required {
    color: #cc0a0a;
    font-size: 18px;
    line-height: 14px;
    font-style: normal;
    font-weight: normal;
    margin-left: 3px;
}

#formulaire_demande_informations span.wpcf7-not-valid-tip {
    font-size: 10px;
}

#formulaire_demande_informations {
    padding: 50px 15px 15px 15px;
    /* border-top: 1px solid rgba(226, 227, 228, 0.15); */
}

#formulaire, div.wpcf7-response-output {
    width: 100%;
}

#formulaire_demande_informations .form_row {
    display: flex;
    flex-wrap: wrap;
}

#formulaire_demande_informations br {
    display: none;
}

#formulaire_demande_informations label {
    width: 100%;
}

#formulaire_demande_informations .form_row:not(.message) label > span input {
    padding-left: 40px;
}

#formulaire_demande_informations .form_row:not(.message) label > span:before {
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    line-height: 1;
    color: #b89552;
    width: 20px;
    text-align: center;
}

#formulaire_demande_informations .form_row.nom_complet label > span:before {
    content: "\f007";
}

#formulaire_demande_informations .form_row.courriel_telephone label:first-of-type > span:before {
    content: "\f1fa";
}

#formulaire_demande_informations .form_row.courriel_telephone label:last-of-type > span:before {
    content: "\f095";
}

#formulaire_demande_informations .form_row.unit_concerne label > span:before {
    content: "\f129"; 
}

#formulaire_demande_informations .form_row.message label {
    width: 100%;
}

#formulaire_demande_informations .form_row label {
    /*text-transform: uppercase;*/
    font-size: 16px;
    font-weight: normal;
    color: #b89552;
    text-indent: 10px;
}

#formulaire_demande_informations .form_row label, #formulaire_demande_informations .form_row.envoyer, div.wpcf7-response-output {
    padding: 5px 0;
}

#formulaire_demande_informations .form_row:not(.message) > label:first-of-type {
    padding-right: 5px;
}

#formulaire_demande_informations .form_row:not(.message) > label:last-of-type {
    padding-left: 5px;
}

#formulaire_demande_informations .form_row label > span {
    display: block;
    max-width: initial;
    text-indent: 0;
    margin-bottom: 14px;
}

#formulaire_demande_informations .form_row label > span input:not([type="submit"]), #formulaire_demande_informations .form_row label > span textarea, #formulaire_demande_informations .wpcf7-select{
    margin-top: 0;
    width: 100%;
    max-width: initial;
    color: #b89552;
    border: none;
    border-bottom: 1px solid #231f20;
    font-family: sans-serif;
    background-color: rgba(226, 227, 228, 0.05);
}

#formulaire_demande_informations .form_row label > span input:not([type="submit"]):focus, #formulaire_demande_informations .form_row label > span textarea:focus {
    border-color: #b89552;
    background-color: rgba(226, 227, 228, 0.15);
}

#formulaire_demande_informations .wpcf7-select option{
    color: #b89552;
}

#formulaire_demande_informations .form_row label > span textarea {
    height: 150px;
    min-height: 100px;
    max-height: 200px;
    resize: vertical;
}

#formulaire_demande_informations .form_row.envoyer {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

#formulaire_demande_informations .form_row.envoyer input[type="submit"] {
    width: 100%;
    border-radius: 0;
    background-color: #b89552;
    color: #e2e3e4;
    border: none;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 1px;
    padding: 15px 30px;
    height: 40px;
}

#formulaire_demande_informations .form_row.envoyer input[type="submit"]:hover {
    background-color: #231f20; 
}

#formulaire_demande_informations .form_row.envoyer .ajax-loader {
    display: block;
    width: 30px;
    height: 40px;
    line-height: 40px;
    margin: 0;
    padding: 5px;
    text-align: center;
    background-image: none;
    position: absolute;
    right: 10px;
}

div.wpcf7-response-output {
    position: relative;
    margin: 0;
    float: initial;
    clear: initial;
    border-width: 1px;
    padding-left: 50px;
    padding-right: 12px;
    color: #b89552;
}

div.wpcf7-response-output:before {
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 100%;
    font-size: 20px;
    text-align: center;
    color: #e2e3e4;
}

div.wpcf7-response-output.wpcf7-validation-errors:before {
    content: "\f12a";
    background-color: #b89552;
    /* background-color: #f7e700; */
}

div.wpcf7-validation-errors {
    border: 2px solid #b89552;
}

div.wpcf7-response-output.wpcf7-mail-sent-ok:before {
    content: "\f00c";
    background-color: #b89552;
    /* background-color: #398f14; */
}

div.wpcf7-response-output.wpcf7-mail-sent-ok {    
    border: 2px solid #b89552;
    font-size: 17px;
}

span.wpcf7-not-valid-tip {
    color: #cc0a0a;
}