.contact_cad_avatar { width: 32px; height: 32px; display: inline-block; margin: 0 3px; vertical-align: middle; } .contact_avatar { width: 30px; height: 30px; color: #fff; display: table-cell; background-color: var(--brand); border-radius: 50%; text-align: center; vertical-align: middle; font-size: 0.65rem; } .societe_cad_avatar { width: 42px; height: 36px; display: inline-block; margin: 0 3px; vertical-align: middle; } .societe_avatar { width: 42px; height: 36px; color: #fff; display: table-cell; background-color: var(--brand); text-align: center; vertical-align: middle; font-size: 0.65rem; } .cgv_accept { padding-inline-start: 0; line-height: 1rem; } .msgAlert_cadre { position: fixed; top: -100%; left: 5%; right: 5%; width: auto; text-align: center; z-index: 9999; padding: 15px 20px; box-shadow: 1px 1px 12px #555; font-size: 1rem; animation-name: alert_slide; animation-duration: 10s; } @keyframes alert_slide { 0% { top: -100%; opacity: 0; } 10% { top: 0%; opacity: 1; } 90% { top: 0%; opacity: 1; } 100% { top: -100%; opacity: 0; } } .msgAlert_close { animation-name: alert_close; animation-duration: 2s; } @keyframes alert_close { 0% { top: 0%; opacity: 1; } 100% { top: -100%; opacity: 0; } } .msgAlert_cadre_hide { position: absolute; left: 50%; transform: translate(-50%,-130%); text-align: center; z-index: 5; padding: 15px 60px; box-shadow: 1px 1px 12px #555; transition: all 1s; font-size: 1rem; } .msgAlert_niv1 { border: #ebb5b6 solid 1px; background-color: #fde1e2; color: #c65d5c; border-top: none; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; } .msgAlert_niv1 a { color: green; } .msgAlert_niv1 a:hover { text-decoration: underline; } .msgAlert_niv2 { border: #dfebb5 solid 1px; background-color: #f7fde1; color: #95bc01; border-top: none; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; } .msgAlert_niv3 { border: #2a7ab4 solid 1px; background-color: #e0f2ff; color: #22629b; border-top: none; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; } .msgAlert_niv4 { border: #2a7ab4 solid 1px; background-color: #f6f6dc; color: #22629b; border-top: none; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; } a.msgAlert_link { cursor: pointer; } a.msgAlert_link_niv1 { color: #c65d5c; } a.msgAlert_link_niv2 { color: #95bc01; } a.msgAlert_link_niv3 { color: #22629b; } .msgAlert_croix { width: 30px; height: 30px; position: absolute; right: 6px; bottom: 6px; fill: #777; } .msgAlert_croix:hover { opacity: 0.5; } #gen_popup { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; display: none; justify-content: center; align-items: center; background: rgba(0,0,0,0.5); z-index: 999999; } .gen-popup__window_show { display: flex !important; } .gen-popup__window_hide { display: none !important; } .gen-popup__cad { position: relative; background: #fff; border-radius: 20px; max-width: 90%; max-height: 90%; overflow: auto; } .gen-popups__window_btn { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.3); border-radius: 50%; color: white; cursor: pointer; z-index: 10; } .gen-popups__window_btn svg { width: 100%; height: 100%; fill: currentColor; display: block; } .share-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: none; align-items: flex-end; justify-content: center; z-index: 9999; } .share-overlay.active { display: flex; } .share-box { background: #f3f3e9; width: 100%; max-width: 500px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 20px 20px 30px; box-shadow: 0 -5px 20px rgba(0,0,0,0.2); animation: slideUp 0.25s ease; position: relative; } .share-buttons { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around; gap: 10px; height: 140px; margin-top: 15px; } .share-buttons button { border: none; cursor: pointer; color: #000; font-size: 0.8rem; width: calc(((100% - 30px) / 5)); display: flex; flex-wrap: wrap; justify-content: center; align-content: center; background-color: unset; } .share-close { position: absolute; right: 5px; top: -20px; width: 40px; height: 40px; background: none; border: none; font-size: 18px; cursor: pointer; background-color: #fff; border-radius: 50%; } @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } } .carousel { position: relative; width: 100%; margin: 0 auto; aspect-ratio: 3 / 2; overflow: hidden; font-family: sans-serif; border-radius: 10px; touch-action: pan-y; user-select: none; } .carousel img, .carousel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transform: translateX(0); transition: transform 0.3s ease, opacity 0.3s ease; border-radius: 0 !important; pointer-events: none; } .carousel video { pointer-events: auto; } .carousel img.active, .carousel video.active { opacity: 1; z-index: 2; } .carousel img.is-enter-next, .carousel video.is-enter-next { opacity: 1; transform: translateX(100%); z-index: 3; } .carousel img.is-enter-prev, .carousel video.is-enter-prev { opacity: 1; transform: translateX(-100%); z-index: 3; } .carousel img.is-enter-active, .carousel video.is-enter-active { transform: translateX(0); } .carousel img.is-leave-next, .carousel video.is-leave-next, .carousel img.is-leave-prev, .carousel video.is-leave-prev { opacity: 1; transform: translateX(0); z-index: 2; } .carousel img.is-leave-next.is-leave-active, .carousel video.is-leave-next.is-leave-active { transform: translateX(-100%); } .carousel img.is-leave-prev.is-leave-active, .carousel video.is-leave-prev.is-leave-active { transform: translateX(100%); } .carousel .nav { position: absolute; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; display: flex; border-radius: 50%; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.3); color: white; cursor: pointer; user-select: none; z-index: 10; border: none; } .carousel .nav.prev { left: 12px; } .carousel .nav.next { right: 12px; } .carousel .nav svg { width: 30px; height: 30px; display: block; fill: currentColor; pointer-events: none; } .carousel .nav:hover svg { transform: none; } .carousel .counter { position: absolute; bottom: 10px; right: 16px; background: rgba(0,0,0,0.6); color: white; padding: 2px 12px; font-size: 15px; border-radius: 8px; z-index: 12; font-weight: 500; } .chp_cadre { display: flex; justify-content: center; align-items: center; gap: 10px; width: 100%; min-height: 35px; margin-bottom: 10px; } .chp_lgd_g { display: flex; justify-content: flex-end; align-items: center; width: 30%; font-family: u2019Robotou2019, sans-serif; font-size: 0.9rem; line-height: 0.9rem; color: #bbb; font-weight: 400; } .chp_ldg_textarea { line-height: initial; padding-top: 5px; } .chp_help_text { margin-top: 5px; padding-left: 30%; color: #999; font-size: 0.8rem; } .chp_help_text2 { position: absolute; top: 40px; padding: 5px; background: #fafabb; font-size: 0.85rem; line-height: 0.85rem; border-radius: 5px; border: 1px solid #ccc; box-shadow: 0px 3px 4px 2px rgb(0 0 0 / 30%); z-index: 1; color: #777; display: none; } .chp_input_inv:focus + .chp_help_text2{ display:block; } .chp_input_inv { box-sizing: border-box; border: none; background: none; color: #000; line-height: 35px; width: 100%; padding: 0 6px; } .chp_lgd_h { display: block; text-align: left; height: 20px; font-size: 0.9rem; color: #000; } .chp_lgd_hc { display: block; text-align: center; height: 20px; font-size: 0.95rem; color: #999; } .chp_cont_g { display: block; width: 70%; vertical-align: middle; text-align: left !important; border-bottom: 1px solid #ccc; padding-left: 5px; } .chp_cont_g p { padding: 0; } .chp_cont_ta_g { display: block; width: 70%; vertical-align: middle; text-align: left; border-bottom: 1px solid #ccc; padding: 0 0 7px 5px; } .chp_cont_ta_h { display: block; width: 70%; vertical-align: top; text-align: left; border-bottom: 1px solid #ccc; padding-bottom: 10px; } .chp_cont_h { display: block; border-bottom: 1px solid #ccc; } .chp_cont_help { display: block; width: 70%; vertical-align: middle; text-align: left; padding: 0 0 7px 5px; color: grey; font-size: 0.8rem; font-style: italic; } .chp_form_g { display: block; width: 70%; vertical-align: middle; text-align: left; position: relative; } .chp_form_h, .chp_form_hc { display: table-row; } .chp_table { display: flex; width: 100%; vertical-align: middle; text-align: center; } .chp_cell { display: block; vertical-align: middle; width: 68%; } .input_container { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 0 !important; margin-bottom: 10px; } .input_legend { margin-bottom: 5px; font-size: 0.9rem; color: #777; text-align: center; } .input_visible { background-color: #f5f5f5; border: 1px solid #ccc; border-bottom: none; border-right: none; position: relative; line-height: 35px; border-radius: 10px; padding: 0 5px; } .input_visible_2items { background-color: #f5f5f5; border: 1px solid #ccc; border-bottom: none; border-right: none; position: relative; line-height: 35px; border-radius: 10px; padding: 0 5px; display: flex; align-items: center; justify-content: center; } .div_visvisible_cb_2items { display: inline-flex; justify-content: center; align-items: center; width: 100%; height: 100%; } .input_invisible { box-sizing: border-box; border: none; background: none; width: 100%; color: #555; font-size: 1rem; font-weight: 500; line-height: 1.1rem; min-height: 40px; padding: 0 6px; margin: 0; display: flex; align-items: center; } .input_field { box-sizing: border-box; border: none; background: none; width: 100%; color: #555; font-size: 1rem; font-weight: 500; line-height: 1.1rem; padding: 0; margin: 0; font-family: inherit; } input.input_field, select.input_field { height: 38px; } textarea.input_field { min-height: 90px; padding: 8px 0; line-height: 1.25rem; resize: vertical; } .place-hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: 0.95rem; line-height: 1.25rem; } .place-hours-table tr { border-bottom: 1px solid rgba(0, 0, 0, 0.08); } .place-hours-table tr:last-child { border-bottom: none; } .place-hours-table th, .place-hours-table td { padding: 7px 0; vertical-align: top; } .place-hours-table th { width: 38%; padding-right: 12px; text-align: left; color: #333; font-weight: 700; white-space: nowrap; } .place-hours-table td { color: #222; text-align: left; } .place-hours-table__range { display: inline-block; white-space: nowrap; } .place-hours-table__sep { color: #888; } .place-hours-table__closed, .place-hours-table__empty { color: #777; } .input_time { min-width: 82px; } .input_opening_hours { padding: 10px; line-height: 1.2; } .opening-hours__value { display: none; } .opening-hours { display: flex; flex-direction: column; gap: 8px; } .opening-hours__day { display: grid; grid-template-columns: minmax(70px, 0.55fr) minmax(0, 1fr) 28px; gap: 8px; align-items: start; padding: 8px; border-radius: 9px; background: rgba(255, 255, 255, 0.7); } .opening-hours__status { display: flex; align-items: center; gap: 6px; min-height: 32px; color: #555; font-size: 0.85rem; font-weight: 600; } .opening-hours__open { accent-color: #18a957; } .opening-hours__day-name { overflow-wrap: anywhere; } .opening-hours__day--closed .opening-hours__ranges { opacity: 0.45; } .opening-hours__ranges { display: flex; flex-direction: column; gap: 6px; } .opening-hours__range { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 5px; align-items: center; } .opening-hours__range--hidden { display: none; } .opening-hours__time-wrap { display: flex; align-items: center; min-height: 32px; border-radius: 8px; border: 1px solid rgba(0, 0, 0, 0.12); background: #fff; padding: 0 4px; } .opening-hours__time { height: 30px !important; min-height: 30px; min-width: 0; width: 100%; font-size: 0.85rem; } .opening-hours__separator { color: #777; font-weight: 700; } .opening-hours__actions { display: flex; flex-direction: column; gap: 5px; align-items: stretch; } .opening-hours__copy, .opening-hours__toggle-second { border: none; border-radius: 999px; background: #eef4f5; color: #26797b; cursor: pointer; font-size: 0.7rem; font-weight: 700; min-height: 28px; width: 28px; height: 28px; padding: 0; display: flex; align-items: center; justify-content: center; } .opening-hours__copy svg, .opening-hours__toggle-second svg { width: 18px; height: 18px; max-width: 18px; max-height: 18px; display: block; } @media (max-width: 430px) { .opening-hours__day { grid-template-columns: 1fr 28px; } .opening-hours__status { grid-column: 1 / -1; } .opening-hours__ranges { grid-column: 1; grid-row: 2; } .opening-hours__range { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); } .opening-hours__actions { grid-column: 2; grid-row: 2; } .opening-hours__copy { width: 28px; height: 28px; min-height: 28px; padding: 0; } } .input_number { position: relative; display: inline-block; width: 100%; } .input_select { width: 100%; cursor: pointer; -webkit-appearance: none; -moz-appearance: none; background-image: url(https://ty-helles.com/svg/fleche-select.svg); background-size: 27px; background-position-x: 97%; background-position-y: 50%; background-repeat: no-repeat; padding: 10px 15px; background-color: #fff; } .input_number input { width: 100%; padding-right: 65px; box-sizing: border-box; text-align: right; } .input_number .unit { position: absolute; right: 20px; top: 0; height: 100%; display: flex; align-items: center; color: #666; pointer-events: none; } .qty { display: inline-flex; align-items: center; border-radius: 8px; overflow: hidden; } .qty-btn { width: 30px; height: 40px; border: none; background: #f5f5f5; font-size: 1.5rem; font-weight: bold; color: var(--brand); cursor: pointer; transition: background 0.2s; display: inline-flex; align-items: center; justify-content: center; } .qty-btn svg { width: 18px; height: 18px; display: block; color: currentColor; fill: currentColor; } .qty-btn:hover { background: #e0e0e0; } .qty-btn:disabled { opacity: 0.4; cursor: not-allowed; font-weight: normal; } .qty-input { width: 60px; height: 40px; border: none; text-align: center; font-size: 16px; background: #fff; } .qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } .qty-input[type=number] { -moz-appearance: textfield; } .valid_ligne1 { margin: 0; font-weight: bold; } .valid_ligne2 { margin: 0 0 20px 0; } .img_cadre_rond { border-radius: 50%; display: inline-block; width: 110px; height: 110px; margin: 0 4px 0 0; } .img_input_file { display: inline-block; width: 100%; height: 100%; opacity: 0; position: absolute; top: 0; left: 0; cursor: pointer; } .img_show_cadre { position: relative; } .input-img__input-file_container { display: inline-block; width: 100%; height: 100%; opacity: 0; position: absolute; top: 0; left: 0; cursor: pointer; } .img_show_cadre { position: relative; width: 160px !important; height: 120px !important; vertical-align: middle; margin: 0; border: 1px solid #ddd; } .img_photo { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; border: 1px solid #bbb; } .img_cadre_carre { border: 1px solid #999; display: inline-block; width: 110px; height: 110px; margin: 0 3px; } .img_cadre_rond { border-radius: 50%; display: inline-block; width: 110px; height: 110px; margin: 0 3px; } .img_cadre_none { display: inline-block; width: 110px; height: 110px; margin: 0 3px; } .img_show_carre_arrondi { border-radius: 10%; } .img_show_style { border-radius: 50%; border-top-left-radius: 100%; border-bottom-right-radius: 100%; } .is-dragging { opacity: 0.9; } .drag-placeholder { border: 1px dashed #ccc; background: rgba(0,0,0,0.05); margin: 5px 0; } [data-draggable-container] { touch-action: auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; width: 100%; } [data-drag-handle]{ touch-action: none; } [data-draggable-item] { position: relative; touch-action: auto; } .img_btn_ordre { border: unset; position : absolute; display: flex; justify-content: center; top: 8px; left: 8px; background-color: rgba(0, 0, 0, 0.5); padding: 5px; border-radius: 50%; color: #fff; font-weight: 900; width: 25px; height: 25px; box-shadow: 0px 0px 2px 2px rgb(125 125 125 / 50%); } .img_btn_drag { border: unset; position : absolute; display: block; bottom: 8px; left: 8px; background-color: #fff; padding: 5px; border-radius: 50%; color: #ea9d0c; width: 25px; height: 25px; box-shadow: 0px 0px 2px 2px rgb(125 125 125 / 50%); cursor: move; } .img_btn_delete { border: unset; position : absolute; display: block; bottom: 8px; right: 8px; background-color: #fff; padding: 5px; border-radius: 50%; color: #ea9d0c !important; width: 25px; height: 25px; box-shadow: 0px 0px 2px 2px rgb(125 125 125 / 50%); } .img_btn_number { border: unset; position : absolute; top: 5px; left: 8px; background-color: white; padding: 0; border-radius: 12px; width: 25px; height: 25px; text-align: center; box-shadow: 0px 0px 2px 2px rgb(125 125 125 / 50%); } .img_btn_move { border: unset; position : absolute; display: none; bottom: 8px; left: 8px; background-color: rgba(254, 254, 0254, 0.8); padding: 3px; border-radius: 12px; width: 25px; height: 25px; box-shadow: 0px 0px 2px 2px rgb(125 125 125 / 50%); } .img_btn_move:hover { background-color: white; } .img_name_file { background: rgba(255, 255, 255, .7); position: absolute; bottom: -5px; left: 0px; width: 100%; line-height: 8px; color: #555; padding: 3px 0; font-size: 0.45rem; } .chp_cadre_img { display: block; width: 100%; text-align: center; margin-bottom: 10px; } .img_file_cadre { display: inline-block; position: relative; vertical-align: bottom; border-left: 1px solid #ccc; border-top: 1px solid #ccc; color: #fff; text-align: center; cursor: pointer; position: relative; transition: all 0.2s; } .image_modif { display: none; position: absolute; right: 0; bottom: 0; z-index: 2; } .image_modif_image { display: flex; color: #555; height: 100%; width: 100%; position: absolute; font-size: 0.8rem; } .image_modif_image_txt { display: grid; justify-items: center; align-items: center; width: 100%; line-height: 1.4rem; font-size: 1rem; font-weight: 600; color: #fff; text-shadow: 0.1em 0.1em #333; background-color: rgb(0 0 0 / 20%); } .img_file_cadre:hover .image_modif, .img_file_cadre:hover .image_modif_image { display: none; } .image_modif_btn { text-align: center; box-shadow: 1px 1px 3px #999; color: #f2ac29; border: 0; background-color: #fff; width: 25px; height: 25px; margin-left: 5px; cursor: pointer; border-radius: 50%; } .img_file_cadre-size { width: 100px; height: 100px; } .tabs-buttons-div { border: 0; border-bottom: #bbb solid 1px; padding-left: 5px; width: 100%; } .tab_btn_on { border-top-left-radius: 8px; border-top-right-radius: 8px; padding: 5px 10px; background: #ea9d0c; color: #fff; border: #bbb solid 1px; border-bottom: none; cursor: pointer; font-size: 0.8rem; } .tab_btn_off { border-top-left-radius: 8px; border-top-right-radius: 8px; padding: 5px 10px; border: #999 solid 1px; border-bottom: none; opacity: 0.5; font-size: 0.8rem; } .tab_container_on { display: block; } .tab_container_off { display: none; } .tabs-contents-div { width: 100%; } input[type="checkbox"].btn_ouinon { display: none; } input[type="checkbox"].btn_ouinon + label { box-sizing: border-box; display: inline-block; width: 3rem; height: 1.5rem; border-radius: 1.5rem; padding:2px; background-color: #c0ceda; transition: all 0.5s; cursor: pointer; } input[type="checkbox"].btn_ouinon + label::before { box-sizing: border-box; display: block; content: ""; height: calc(1.5rem - 4px); width: calc(1.5rem - 4px); border-radius: 50%; background-color: #fff; transition: all 0.2s; } input[type="checkbox"].btn_ouinon:checked + label { background-color: #17A0BF; } input[type="checkbox"].btn_ouinon:checked + label::before { margin-left: 1.5rem; } input[type="radio"].radio_new { display: none; } input[type="radio"].radio_new + label { background-color: #fff; width: 100px; text-align: center; user-select : none; cursor: pointer; line-height: 40px; border-radius: 10px; transition: all 0.2s ease-in-out; margin-bottom: 5px; display: flex; align-items: center; justify-content: center; gap: 5px; } input[type="radio"].radio_new:checked + label { background-color: #17A0BF; color: #fff; } input[type="radio"].radio_new:checked + label::before { } input[type="radio"].radio_new:not(:checked) + label::before { } input[type="checkbox"].checkbox_new { display: none; } input[type="checkbox"].checkbox_new + label { background-color: #fff; width: 100px; display: inline-block; text-align: left; padding-left: 10px; user-select: none; cursor: pointer; line-height: 40px; border: 1px solid #000; border-radius: 10px; transition: all 0.2s ease-in-out; margin-bottom: 5px; } input[type="checkbox"].checkbox_new:checked + label::before { content: "✓"; display: inline-block; margin-right: 5px; } input[type="checkbox"].checkbox_new:not(:checked) + label::before { content: ""; display: inline-block; margin-right: 15px; } input[type="checkbox"].checkbox_new:checked + label { background-color: #17A0BF; color: #fff; } .input_checkbox_container { display: flex; flex-wrap: wrap; gap: 5px; } .range_div { display: flex; align-items: center; } .range_value { text-align: center; flex: 17%; color: #aaa; } input[type="range"] { display: block; appearance: none; background-color: #17A0BF; width: 100%; height: 8px; border-radius: 4px; flex: 83%; } input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; background-color: #17A0BF; width: 20px; height: 20px; border-radius: 50%; border: 2px solid white; cursor: pointer; transition: .3s ease-in-out; }​ input[type="range"]::-webkit-slider-thumb:hover { background-color: white; border: 2px solid #e74c3c; } input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.4); } .chp_help_text_all { margin: 0 0 10px 0; text-align: left; color: #999; font-size: 0.7rem; line-height: 1.15; } .input_button { border: 1px solid #fff; background:var(--brand); color: #fff; font-size: 16px; height: 50px; border-radius: 25px; cursor: pointer; padding: 0 30px; margin: 0 auto; display: flex; align-items: center; justify-content: center; } .input_google_button { display: flex; gap: 10px; align-items: center; justify-content: center; font-size: 16px; height: 50px; border-radius: 25px; text-decoration: none; cursor: pointer; padding: 0 15px; margin: 0 auto; background-color: white; border: 1px solid grey; color: #555; } .input_facebook_button { display: flex; gap: 10px; align-items: center; justify-content: center; font-size: 16px; height: 50px; border-radius: 25px; text-decoration: none; cursor: pointer; padding: 0 15px; margin: 0 auto; background-color: #1877f2; border: 1px solid #1877f2; color: #fff; } .input_amazon_button { display: flex; gap: 10px; align-items: center; justify-content: center; font-size: 16px; height: 50px; border-radius: 25px; text-decoration: none; cursor: pointer; padding: 0 15px; margin: 0 auto; background-color: #232f3e; border: 1px solid #232f3e; color: #fff; } .input_microsoft_button { display: flex; gap: 10px; align-items: center; justify-content: center; font-size: 16px; height: 50px; border-radius: 25px; text-decoration: none; cursor: pointer; padding: 0 15px; margin: 0 auto; background-color: #2f2f2f; border: 1px solid #2f2f2f; color: #fff; } .input_button svg { width: 20px; height: 20px; margin-left: 5px; } .input_button_icon { width: 25px; height: 25px; margin-right: 10px; color:white; display: inline-flex; } .bottom_bar { display: flex; width: 100%; align-items: center; justify-content: center; } #content { transition: transform 0.35s ease, opacity 0.35s ease; } .slide-out { transform: translateX(-30px); opacity: 0; } .slide-in { transform: translateX(30px); opacity: 0; } .slide-in-active { transform: translateX(0); opacity: 1; } .nav-btn:active { transform: scale(0.96); transition: transform 0.1s; } #loadingOverlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; z-index: 10; } #loadingOverlay::after { content: ""; width: 28px; height: 28px; border: 4px solid #ccc; border-top-color: #3498db; border-radius: 50%; animation: spin 0.8s linear infinite; } .hidden { display: none; } @keyframes spin { to { transform: rotate(360deg); } } .iti { width: 100%; } #ident__code_container { display: flex; justify-content: space-evenly; margin: 30px 0; width: 100% } .ident__code_digit { width: 45px; height: 50px; padding: 0; line-height: 50px; box-sizing: border-box; text-align: center; font-size: 1.6rem; border: 1px solid #ccc; border-radius: 4px; color: #777; -webkit-appearance: none; appearance: none; } .app-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 9999; display: flex; align-items: center; justify-content: center; pointer-events: all; } .app-overlay.hidden { display: none; } .spinner { display: inline-block; border: 6px solid #f3f3f3; border-top: 6px solid var(--brand); border-radius: 50%; width: 60px; height: 60px; animation: spin 1s linear infinite; margin: 20px auto; } @keyframes spin { to { transform: rotate(360deg); } } :root{ --brand:#168b8f; --fond:#fff; --appbar-fond:none; --appbar-h:64px; --places-rubrique-h:150px; --bottombar-fond:#f3f3e9; --bottombar-h:64px; --bottombar_btn_color: #777; --burger-btn-size:40px; --burger-btn-color:#fff; --text:#000; --text-dim:rgba(0,0,0,.85); } @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap'); *{ box-sizing: border-box; } html, body{ margin:0; padding:0; width:100%; height:100vh; max-width:100%; overflow-x:hidden; background: var(--fond); font-family: Arial; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; } h3 { margin: 0 0 10px; } p { margin: 0 0 5px; } a { color: var(--brand); } .qc-appbar { position: relative; width: 100%; height: calc(var(--appbar-h) + env(safe-area-inset-top, 0px)); padding-top: env(safe-area-inset-top, 0px); background-color: var(--appbar-fond); z-index: 1000; } .qc-lang { width: 60px } .lang-dropdown { position: relative; margin: 19px 15px 15px; } .lang-current { width: 25px; height: 25px; padding: 0; margin: 0; display: flex; align-items: center; justify-content: center; background: none; border: 0; cursor: pointer; } .lang-icon { width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0 6px 20px rgba(0,0,0,0.15); } .lang-icon svg, .lang-icon img { width: 100%; height: 100%; display: block; } .lang-menu { position: absolute; top: -5px; left: -5px; z-index: 2000; display: none; flex-direction: column; gap: 8px; padding: 0; margin: 0; } .lang-menu.open { display: flex; gap: 15px; background: rgba(100, 100, 100, 0.2); backdrop-filter: blur(6px); padding: 5px; border-radius: 10px; } .lang-menu a { padding: 0; margin: 0; display: flex; align-items: center; justify-content: center; background: none; border: 0; cursor: pointer; text-decoration: none; } .lang-menu a:hover { background: rgba(0,0,0,0.05); } .header-overlay, .nav-overlay, .menu-overlay { pointer-events: none; } .qc-logo{ position: absolute; left: 50%; top: calc(env(safe-area-inset-top, 0px) + 7px); transform: translate(-50%, calc(-50% + 10px)); min-width: 0; min-height: 0; padding: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: auto; background: transparent; color: #fff; text-align: center; text-decoration: none; opacity: 0.92; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.30); } .qc-logo:has(span) { top: calc(env(safe-area-inset-top, 0px) + 15px); transform: translateX(-50%); } .qc-appbar[data-waou-home="city"] .qc-logo:has(span) { top: calc(env(safe-area-inset-top, 0px) + 2px); } .qc-appbar[data-waou-tone="light"] .qc-logo { color: #333; opacity: 1; text-shadow: none; } .qc-logo span:first-child { display: block; font-size: 1.42rem; line-height: 1; font-weight: 800; color: #74cabd; } .qc-logo span:last-child { display: block; margin-top: 2px; font-size: 0.56rem; line-height: 1; font-weight: 600; white-space: nowrap; } .qc-logo img { display: block; width: 74px; height: auto; } .qc-logo:has(img) { top: calc(env(safe-area-inset-top, 0px) + 14px); } body:has(.home_img_container) .qc-logo:has(span) { width: 74px; height: 74px; top: calc(env(safe-area-inset-top, 0px) + 14px); transform: translate(-50%, calc(-50% + 10px)); background: url("docs/logos/Logo.png?v=20260605-logo4") center / contain no-repeat; opacity: 1; text-shadow: none; } body:has(.home_img_container) .qc-logo:has(span) span { display: none; } .qc-logo_container { position: absolute; left: 50%; top: 0; } .qc-menu-btn, .qc-header-back-btn{ position: fixed; top: calc(env(safe-area-inset-top, 0px) + 12px); width: var(--burger-btn-size); height: var(--burger-btn-size); border-radius: 50%; border: none; padding: 0; cursor: pointer; color: var(--burger-btn-color); background: rgba(22, 139, 143, 0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(0,0,0,0.25); z-index: 1300; text-decoration: none; } .qc-menu-btn{ right: 12px; } .qc-header-back-btn{ left: 12px; } .qc-appbar[data-waou-scroll-buttons="1"] .qc-menu-btn, .qc-appbar[data-waou-scroll-buttons="1"] .qc-header-back-btn { position: absolute; } .qc-menu-btn svg, .qc-header-back-btn svg { width: 22px; height: 22px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.6)); } .qc-menu-btn:focus-visible, .qc-header-back-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; } .qc-drawer { position: fixed; top: 0; right: 2px; width: 210px; max-height: calc(100vh - 60px); overflow-y: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; background: transparent; box-shadow: none; transform: translateX(110%); transition: transform 0.3s ease; z-index: 1001; } .qc-drawer.open { transform: translateX(0); } .qc-drawer::-webkit-scrollbar { display: none; } .qc-drawer-content{ display:flex; flex-direction:column; gap: 5px; padding:calc(env(safe-area-inset-top,0px) + 12px) 10px calc(env(safe-area-inset-bottom,0px) + 12px); } .qc-drawer-section { display: flex; flex-direction: column; background: rgba(255, 255, 255, 0.85); border-radius: 12px; padding: 5px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); } .qc-drawer-content a{ display:block; padding:8px 8px; color:#111; text-decoration:none; font-size:16px; border-radius:8px; } .qc-drawer-content a:hover{ background:rgba(255,255,255,0.8); } .qc-drawer-accordion__trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 10px; padding: 8px; border: 0; border-radius: 8px; background: transparent; color: #168b8f; font: inherit; font-size: 16px; font-weight: 700; text-align: left; cursor: pointer; } .qc-drawer-accordion__trigger:hover { background: rgba(255,255,255,0.8); } .qc-drawer-accordion__chevron { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform 0.25s ease; flex: 0 0 auto; } .qc-drawer-accordion__trigger[aria-expanded="true"] .qc-drawer-accordion__chevron { transform: rotate(225deg); } .qc-drawer-accordion__panel { overflow: hidden; max-height: 0; transition: max-height 0.25s ease; } .qc-drawer-accordion__panel[hidden] { display: none; } .qc-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; } .qc-backdrop.show { opacity: 1; pointer-events: auto; } .video-hero{ position: fixed; top: 55px; left: 0; width: 100vw; height: calc(100vh - 55px); overflow: hidden; z-index: 0; } .video-foreground{ position: absolute; inset: 0; pointer-events: none; overflow: hidden; } .video-iframe{ position: absolute; top: 50%; left: 50%; width: 120vw; height: 120vh; transform: translate(-50%, -50%); transition: opacity 1s; } @media (prefers-reduced-motion: reduce){ .video-iframe{ opacity: 0; } } @media (max-width: 768px){ .video-iframe{ width: 140vw; height: 140vh; } } main.content { min-height: 100vh; overflow-y: visible; position: absolute; top: 0; width: 100%; } .content-inner____old{ z-index:1; color:#000; display:flex; align-items:center; justify-content:flex-start; flex-direction:column; width:100%; max-width:100%; min-width:0; padding: 20px; overflow-x:clip; } .content__zone { padding: 20px; overflow-x:clip; } .content-inner { z-index:1; display: flex; padding: 0 20px; flex-direction: column; align-items:center; } .content-inner_children { flex: 1; width: 100%; } .content-inner-blur { margin: 40px 20px; border-radius: 20px; background: rgba(255, 255, 255, 0.68); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); width: unset; } .content-inner img, .content-inner video, .content-inner iframe, .content-inner svg{ max-width:100%; height:auto; display:block; } .content-inner svg{ overflow:hidden; } .content-inner .form__radio_ui svg{ width:12px; height:12px; max-width:12px; display:block; } .content-inner .form__radio_custom{ display:inline-flex; align-items:center; gap:6px; } .content-inner .form__radio_custom input[type="radio"]{ display:none; } .content-inner .form__radio_ui{ width:15px; min-width:15px; max-width:15px; height:15px; flex:0 0 15px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; border:2px solid #ccc; background:#fff; color:#fff; } .content-inner .form__radio_custom input[type="radio"]:checked + .form__radio_ui{ background:#17A0BF; border-color:#17A0BF; } .content-inner .form__radio_custom input[type="radio"]:not(:checked) + .form__radio_ui svg{ opacity:0; } .content-inner .form__radio_custom input[type="radio"]:checked + .form__radio_ui svg{ opacity:1; } .pwa-help { position: relative; min-height: 100vh; padding: 70px 0 70px; background: #fff; box-sizing: border-box; } .waou-guide-help { max-width: 520px; margin: 0 auto; padding: 22px 16px 90px; font-family: Arial, Helvetica, sans-serif; color: #111; background: #fff; box-sizing: border-box; } .help-header { text-align: center; margin-bottom: 24px; } .help-header h1 { font-size: 24px; margin: 8px 0; color: #168b8f; line-height: 1.15; } .help-header p { font-size: 16px; line-height: 1.4; margin: 0; } .help-card { display: flex; gap: 14px; background: #fff; border-radius: 20px; padding: 16px; margin-bottom: 14px; box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12); } .help-number { min-width: 34px; width: 34px; height: 34px; border-radius: 50%; background: #168b8f; color: #fff; font-weight: bold; display: flex; align-items: center; justify-content: center; flex: 0 0 34px; } .help-card h2, .help-nav h2 { font-size: 18px; margin: 0 0 6px; line-height: 1.25; } .help-card p { font-size: 15px; line-height: 1.4; margin: 0; } .help-nav { background: #f7f7f2; border-radius: 20px; padding: 16px; margin-top: 20px; box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10); } .help-nav-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; font-size: 14px; } .help-nav-grid div { background: #fff; border-radius: 14px; padding: 12px; display: flex; align-items: center; gap: 10px; min-width: 0; } .help-nav-icon { width: 28px; height: 28px; flex: 0 0 28px; display: flex; align-items: center; justify-content: center; color: #666; } .help-nav-icon svg, .help-nav-icon img { width: 25px; height: 25px; object-fit: contain; } .help-nav-icon .qc-bottombar__profile-photo { width: 25px; height: 25px; border-radius: 50%; object-fit: cover; } .help-nav-icon__logo { width: 25px; height: 25px; } .help-nav-icon__locate { color: #4b7f6b; } .help-tip { margin-top: 18px; padding: 14px; border-radius: 16px; background: #e9f7f7; color: #0d5d60; font-size: 15px; line-height: 1.4; } .pwa-legal { position: relative; min-height: 100vh; padding: 70px 0 70px; background: #fff; box-sizing: border-box; } .waou-legal-page { max-width: 520px; margin: 0 auto; padding: 22px 16px 90px; font-family: Arial, Helvetica, sans-serif; color: #111; background: #fff; box-sizing: border-box; } .legal-header { text-align: center; margin-bottom: 24px; } .legal-header h1 { font-size: 24px; margin: 8px 0; color: #168b8f; line-height: 1.15; } .legal-header p { font-size: 16px; line-height: 1.4; margin: 0; } .legal-card { display: flex; gap: 14px; background: #fff; border-radius: 20px; padding: 16px; margin-bottom: 14px; box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12); } .legal-number { min-width: 34px; width: 34px; height: 34px; border-radius: 50%; background: #168b8f; color: #fff; font-weight: bold; display: flex; align-items: center; justify-content: center; flex: 0 0 34px; } .legal-card h2 { font-size: 18px; margin: 0 0 6px; line-height: 1.25; } .legal-card p { font-size: 15px; line-height: 1.4; margin: 0; } .legal-tip { margin-top: 18px; padding: 14px; border-radius: 16px; background: #e9f7f7; color: #0d5d60; font-size: 15px; line-height: 1.4; } .pwa-city-info { position: relative; min-height: 100vh; padding: 70px 0 70px; background: #fff; box-sizing: border-box; } .city-info-page { max-width: 520px; margin: 0 auto; padding: 22px 16px 90px; font-family: Arial, Helvetica, sans-serif; color: #111; background: #fff; box-sizing: border-box; } .city-info-back { position: fixed; top: 16px; left: 16px; z-index: 20; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(0, 0, 0, 0.35); color: #fff; text-decoration: none; } .city-info-back svg { width: 24px; height: 24px; } .city-info-header { text-align: center; margin-bottom: 22px; } .city-info-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 26px; padding: 0 12px; border-radius: 999px; background: #fff4e5; color: #b35300; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; } .city-info-header h1 { font-size: 24px; margin: 10px 0 8px; color: #168b8f; line-height: 1.15; } .city-info-header p { font-size: 15px; line-height: 1.4; margin: 0; } .city-info-card { background: #fff; border-radius: 18px; padding: 16px; margin-bottom: 14px; box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12); } .city-info-card h2 { font-size: 18px; margin: 0 0 12px; line-height: 1.25; } .city-info-list { display: flex; flex-direction: column; gap: 10px; } .city-info-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px solid #eee; } .city-info-item:first-child { border-top: 0; padding-top: 0; } .city-info-item strong { display: block; font-size: 0.95rem; line-height: 1.2; } .city-info-item small { display: block; margin-top: 3px; color: #777; font-size: 0.74rem; line-height: 1.25; } .city-info-call { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; min-width: 92px; min-height: 36px; padding: 0 12px; border-radius: 999px; background: #168b8f; color: #fff; font-weight: 700; text-decoration: none; } .city-info-source { margin-top: 18px; padding: 12px; border-radius: 14px; background: #f5f5f5; color: #666; font-size: 0.78rem; line-height: 1.35; } .city-info-source a { color: #168b8f; } .pwa-faq { position: relative; min-height: 100vh; padding: 70px 0 70px; background: #fff; box-sizing: border-box; } .waou-faq-page { max-width: 620px; margin: 0 auto; padding: 22px 16px 90px; font-family: Arial, Helvetica, sans-serif; color: #111; background: #fff; box-sizing: border-box; } .faq-header { text-align: center; margin-bottom: 24px; } .faq-header h1 { font-size: 24px; margin: 0 0 10px; color: #168b8f; } .faq-header p { font-size: 15px; line-height: 1.45; margin: 0; color: #444; } .faq-section { margin-bottom: 26px; } .faq-section h2 { font-size: 20px; margin: 0 0 14px; color: #168b8f; } .faq-item { background: #fff; border-radius: 18px; margin-bottom: 12px; box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12); overflow: hidden; } .faq-item summary { cursor: pointer; padding: 16px 42px 16px 18px; font-size: 16px; font-weight: bold; color: #111; list-style: none; position: relative; } .faq-item summary::-webkit-details-marker { display: none; } .faq-item summary::after { content: "+"; position: absolute; right: 18px; top: 14px; font-size: 22px; color: #168b8f; font-weight: normal; } .faq-item[open] summary::after { content: "-"; } .faq-item p { font-size: 15px; line-height: 1.5; margin: 0; padding: 0 18px 16px; color: #444; } .faq-item a { color: #168b8f; font-weight: bold; text-decoration: underline; } .qc-bottombar{ position:fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom,0px)); height: 50px; padding-bottom: 0; background:var(--bottombar-fond); box-shadow: 0px 0 9px rgba(0, 0, 0, 0.4); display: flex; flex-direction: row; justify-content: space-evenly; align-items: center; border-top:1px solid rgba(0,0,0,.08); border-radius: 25px; z-index:1000; } .qc-bottombar .nav-item{ appearance:none; background:transparent; border:0; padding: 0; color:var(--bottombar_btn_color); display:inline-flex; flex-direction:column; align-items:center; justify-content:center; min-width:var(--touch); cursor:pointer; } .qc-bottombar .icon{ width:20px; height:20px; fill:currentColor; display:block; } .qc-bottombar .icon svg{ width:100%; height:100%; display:block; } .qc-bottombar__profile-icon{ width:24px; height:24px; display:flex; align-items:center; justify-content:center; } .qc-bottombar__profile-photo{ width:24px; height:24px; border-radius:50%; object-fit:cover; display:block; } .qc-bottombar .label{ font-size:11px; line-height:18px; letter-spacing:.2px; user-select:none; margin: 0; } .qc-bottombar .nav-item[aria-current="page"], .qc-bottombar .nav-item.active{ color:var(--text); position:relative; } .qc-bottombar .nav-item[aria-current="page"]::before, .qc-bottombar .nav-item.active::before{ content:""; position:absolute; top:4px; width:18px; height:3px; border-radius:2px; background:#fff; opacity:.65; } .qc-bottombar .nav-item:active{ transform:translateY(1px); } .pac-container { z-index: 10000 !important; } .qc-nav_button { height: 30px; background: #fff; color: var(--brand); box-shadow: 0px 0 9px rgba(0, 0, 0, 0.4); border: none; border-radius: 15px; border-top: 1px solid rgba(0, 0, 0, .08); } .all__flex_container { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; width: 100%; } .all__flex-children_2col { width: calc((100% - 20px) / 2); display: flex; flex-direction: column; align-items: center; } .all__flex-children_3col { width: calc((100% - 40px) / 3); display: flex; flex-direction: column; align-items: center; } .all__flex-children_4col { width: calc((100% - 60px) / 4); display: flex; flex-direction: column; align-items: center; } h1 { text-align: center; margin: 0; width: 100%; flex: 0 0 100%; box-sizing: border-box; color: #12a5a5; font-size: 2.35rem; line-height: 1.12; } h2 { text-align: center; margin: 0; width: 100%; flex: 0 0 100%; box-sizing: border-box; color: #12a5a5; font-size: 1.45rem; line-height: 1.2; } h3 { text-align: center; margin: 0; width: 100%; flex: 0 0 100%; box-sizing: border-box; color: #12a5a5; } .all__flex-children_70 { width: 100%; } .container_groupe { border: 1px solid #bbb; width: 100%; padding: 10px 20px; border-radius: 20px; margin-bottom: 20px; } .fleche_direction_final { color: #f21d2f; height: 30px; width: 30px; position: absolute; align-items: center; bottom: -30px; right: calc(50% - 15px); } .home_img_container { width: 90%; margin: 100px auto 0; } .home_img { width: 100%; border: 2px solid green; transform: rotate(-2deg); height: 180px; object-fit: cover; object-position: center; border-radius: 10px; } .home__texte { color: #000; padding: 0 20px; z-index: 2; background: #f3f3e7; border: 2px solid green; margin: 10px 20px; border-radius: 10px; transform: rotate(-2deg); } .home__texte p { text-align: center; } .villes__container { color: #000; justify-content: center; position: relative; width: 100%; display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 100px; padding: 0 20px; overflow-y: auto; -webkit-overflow-scrolling: touch; max-height: calc(100vh - var(--appbar-h)); } .villes__bouton { width: calc((100% - 20px) / 3); border-radius: 10px; } .villes__photos { background-size: cover; background-repeat: no-repeat; background-position: center; width: 100%; height: 100px; border-radius: 10px; object-fit: cover; } .waou-ad-media { display: block; object-fit: cover; object-position: center; } .villes__noms { width: 100%; bottom: 0; color: #000; text-align: center; padding: 4px 0; margin: 10px 0 0; font-size: 0.9rem; border: 1px solid green; border-radius: 10px; } .home-city { position: relative; overflow: hidden; background: #fff; } .home-city__content { position: relative; z-index: 2; } .home-city__hero { position: relative; height: 228px; } .ville__photo { position: absolute; top: 0; left: 0; width: 100%; height: 650px; background-repeat: no-repeat; background-size: 100% 248px; background-position: top center; background-color: var(--waou-ville-bg, #fff); box-shadow: none; z-index: 0; } .ville__photo::after { content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: 0; pointer-events: none; background: linear-gradient( to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 228px, var(--waou-ville-bg, #fff) 248px, color-mix(in srgb, var(--waou-ville-bg, #fff) 34%, #fff) 305px, color-mix(in srgb, var(--waou-ville-bg, #fff) 18%, #fff) 520px, #fff 650px ); z-index: 1; } .ville__photo::before { content: ""; position: absolute; left: 0; right: 0; top: 228px; height: 20px; pointer-events: none; background: linear-gradient( to bottom, rgba(255, 255, 255, 0) 0%, var(--waou-ville-bg, #fff) 100% ); z-index: 1; } .ville__nom { position: absolute; top: 82px; left: 20px; color: #fff; z-index: 2; text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45); } .ville__nom span { display: block; font-size: 0.88rem; line-height: 1.1; font-weight: 700; } .ville__nom strong { display: block; font-size: 1.95rem; line-height: 1; font-weight: 800; } .ville__nom p { margin: 5px 0 0; font-size: 0.74rem; line-height: 1; font-weight: 700; white-space: nowrap; } .ville__search { position: absolute; top: 168px; bottom: auto; left: 0px; width: 100%; margin: 0 auto; padding: 0 20px; z-index: 2; } .ville__search form, .ville__search .input_container, .ville__search .all__flex-children_70 { width: 100%; } .ville__search form { position: relative; } .ville__search .input_container { display: block; margin: 0 -5px; width: calc(100% + 10px); } .ville__search .all__flex-children_30 { display: none; } .categorie__container { margin: 0 20px; display: flex; align-items: self-start; flex-wrap: wrap; gap: 10px; position: relative; z-index: 2; } .home-meteo-line { position: absolute !important; top: 97px !important; right: 20px !important; left: auto !important; width: 116px !important; max-width: 116px !important; margin: 0 !important; z-index: 2 !important; padding: 0 !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-sizing: border-box; text-align: right; } .home-meteo-line .meteo-widget__city { display: none !important; } .home-meteo-line .meteo-widget { display: flex !important; flex-direction: column; align-items: flex-end !important; justify-content: flex-start !important; gap: 2px !important; width: auto !important; max-width: none !important; margin: 0 !important; padding: 0 !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; color: #111 !important; } .home-meteo-line .meteo-widget__top { display: block !important; } .home-meteo-line .meteo-widget__top > div { display: block !important; } .home-meteo-line .meteo-widget__label { color: #fff !important; font-size: 0.74rem !important; line-height: 1 !important; font-weight: 700; text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45); white-space: nowrap; } .home-meteo-line .meteo-widget__main { display: flex !important; align-items: center !important; justify-content: flex-end !important; gap: 4px !important; margin: 0 !important; } .home-meteo-line .meteo-widget__icon { width: auto !important; height: auto !important; border-radius: 0 !important; background: transparent !important; font-size: 1rem !important; line-height: 1 !important; } .home-meteo-line .meteo-widget__temp { color: #fff !important; font-size: 1.35rem !important; line-height: 1 !important; font-weight: 800 !important; text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45); } .home-meteo-line .meteo-widget__meta { display: block !important; margin: 0 !important; color: #fff !important; font-size: 0.66rem !important; line-height: 1 !important; text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45); white-space: nowrap; } .home-meteo-line .meteo-widget__meta span:nth-child(1), .home-meteo-line .meteo-widget__meta span:nth-child(2) { display: none; } .home-meteo-line .meteo-widget__cta { display: none; } .home-meteo-line .meteo-widget__cta svg { display: block; width: 20px; height: 20px; } .categorie__container1 { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; width: 100%; background: rgba(255, 255, 255, 0.64); box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16); border-radius: 20px; padding: 8px 0; gap: 12px 10px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); } .categorie__container2 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; margin: 6px auto 0; gap: 6px; width: 100%; } .home-secondary-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px; width: 100%; margin-top: 10px; } .home-secondary-card { min-width: 0; min-height: 126px; display: flex; align-items: stretch; justify-content: center; border-radius: 8px; background: #fff; box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12); overflow: hidden; } .home-secondary-card--links { padding: 5px; background: linear-gradient(20deg, #cdcdcd, #ededed); } .home-secondary-card--meteo { padding: 0; } .categorie__bouton { display:flex; flex-direction:column; align-items:center; justify-content:center; text-decoration:none; color: #999; width: calc((100% - 36px) / 4); } .categorie__bouton2 { display:flex; flex-direction:column; align-items:center; justify-content:center; text-decoration:none; color: #999; width: 100%; } .categorie__svg_bouton { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: #555; width: 70%; margin-bottom: 5px; } .categorie__svg_link { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; color: #555; width: calc(((100% - 30px) / 4) - 10px); border: 2px solid #aaa; border-radius: 10px; padding: 8px; background-color: #d8f2d7; margin: 5px; } .categorie__container2 .categorie__bouton, .categorie__container2 .categorie__svg_link { padding: 0; } .categorie__container2 .categorie__image2 img { width: 28px; } .categorie__container2 .categorie__svg_bouton { width: 34px; height: 34px; margin-bottom: 5px; padding: 8px; box-sizing: border-box; border-radius: 50%; color: #fff; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10); } .categorie__container2 .categorie__svg_bouton svg { width: 100%; height: 100%; display: block; } .categorie__container2 .categorie__nom { margin-bottom: 0; background: transparent !important; padding: 0; font-size: 0.72rem; line-height: 1.1; color: #3b3b3b; font-weight: 700; text-align: left; } .categorie__container2 .chp_help_text_all { margin: 0; width: 100%; text-align: left; font-size: 0.58rem; line-height: 1.1; color: #3b3b3b; white-space: nowrap; } .categorie__image { width:100%; display:flex; flex-direction: column; align-items:center; justify-content:center; gap: 3px; position: relative; } .categorie__image img{ width: 54px; object-fit:contain; } .categorie__image2 { width:100%; min-height: 72px; box-sizing: border-box; display:flex; flex-direction: column; align-items:flex-start; justify-content:center; gap: 3px; position: relative; padding: 6px; border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 12px; background: #fff; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10); } .categorie__image2 img{ width: 50px; object-fit:contain; } .categorie__nom{ text-align: center; font-size: 0.74rem; font-family: 'Roboto', Arial, sans-serif; margin: 2px 0 0; background: transparent; padding: 0; border-radius: 0; color: #3b3b3b; font-weight: 800; line-height: 1.1; } .categorie__nom_de { text-align: center; font-size: 0.7rem; letter-spacing: -0.03rem; font-family: 'Roboto', Arial, sans-serif; margin: 2px 0 0; background: transparent; padding: 0; border-radius: 0; color: #3b3b3b; font-weight: 800; line-height: 1.1; } .categorie__container1 .chp_help_text_all { margin: 0; width: 100%; text-align: center; font-size: 0.62rem; line-height: 1.1; color: #3b3b3b; font-weight: 400; } ::-webkit-input-placeholder{ color:#fff; font-size: 0.9rem; } :-ms-input-placeholder{ color:#fff; font-size: 0.9rem; } ::placeholder{ color:#fff; font-size: 0.9rem; } .ville__search ::-webkit-input-placeholder{ color:#111; } .ville__search :-ms-input-placeholder{ color:#111; } .ville__search ::placeholder{ color:#111; } .search__button { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; padding: 9px; color: #111; border: none; background-color: unset; } .ville__search .qc-locate-btn { left: auto; right: 10px; top: 22px; width: 30px; height: 30px; padding: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.92); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); } .search__button .qc-locate-icon { width: 18px; height: 18px; } .ville__search .qc-locate-btn .qc-locate-icon_main svg path { stroke: currentColor; stroke-width: 1.35; stroke-linejoin: round; paint-order: stroke fill; } .search__button svg { width: 18px; height: 18px; flex-shrink: 0; } .misenavant__container { margin: 0 20px; } .misenavant__titre { font-size: 1rem; font-weight: bold; text-align: left; display: inline-flex; background: linear-gradient(10deg, #046970, #11cfdc); color: white; padding: 5px 10px; border-radius: 20px; position: relative; top: 20px; left: 10px; z-index: 2; } .misenavant__boutons_container { color: #000; position: relative; width: 100%; margin: 5px 0 0; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; padding: 0; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; overscroll-behavior-x: contain; touch-action: pan-x; user-select: none; -webkit-user-select: none; } .misenavant__boutons_container.is-dragging { cursor: grabbing; } .misenavant__boutons_container::-webkit-scrollbar { display: none; } .misenavant__boutons_list { display: flex; justify-content: left; flex-wrap: nowrap; gap: 10px; width: max-content; min-width: 100%; } .misenavant__nom { position: absolute; bottom: 0; color: #fff; text-align: center; padding: 8px 8px; font-size: 0.8rem; width: 100%; text-align: left; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8); } .misenavant__bouton { background-repeat: no-repeat; background-position: bottom; width: calc((100vw - 70px) / 2.35); min-width: calc((100vw - 70px) / 2.35); height: 120px; border-radius: 20px; position: relative; box-shadow: 5px 5px 5px 1px rgba(0, 0, 0, 0.3); overflow: hidden; } @media (orientation: landscape) { .misenavant__bouton { width: calc((100vw - 80px) / 3.35); min-width: calc((100vw - 80px) / 3.35); } } .misenavant__bouton .villes__photos, .misenavant__bouton .waou-ad-media { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; border-radius: 20px; pointer-events: none; -webkit-user-drag: none; user-select: none; -webkit-user-select: none; } .places__photo { position: relative; width: 100%; height: 180px; overflow: visible; z-index: 0; background-size: cover; background-repeat: no-repeat; } .places-list-page .places__photo { position: fixed; left: 0; top: 0; height: var(--places-rubrique-h); z-index: 20; } .places-list-page .places__photo .ville__search { top: 127px; padding: 0 20px; } .places__photo::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; top: 0; background: linear-gradient( to bottom, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.75) 100% ); } .places__photo_ad::before { content: none; } .places__titres_container { position: absolute; bottom: 0; padding: 0 0 30px 20px; z-index: 3; } .places__titre { font-size: 2rem; color: #fff; font-weight: bold; text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.8); } .places__sous-titre { font-size: 1.2rem; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.8); margin-top: 5px; } .places__description { color: white; font-size: 0.75rem; margin-top: 5px; } .places-list__container { margin: 10px 0 0; padding: 20px; padding-top: 40px; } .places-list-page .places-list__container { position: relative; z-index: 1; margin-top: var(--places-rubrique-h); background: var(--fond); padding: 0; } .places-list-page:not(:has(.places-list-pagination)) .places-list__container { margin-bottom: calc(120px + env(safe-area-inset-bottom,0px)); } .places-list-page .places-list-filter + .places-list__container { margin-top: 0; } .places-list-filter { position: relative; z-index: 2; margin-top: var(--places-rubrique-h); padding: 62px 20px 0; background: var(--fond); } .places-list-filter__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(0,0,0,.12); } .places-list-filter__category { display: flex; align-items: center; gap: 12px; flex: 1 1 auto; min-width: 0; } .places-list-filter__category-icon { width: 54px; height: 54px; flex: 0 0 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #ead9c4; color: #fff; overflow: hidden; box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12); } .places-list-filter__category-img, .places-list-filter__category-svg svg { width: 60px; height: 60px; display: block; object-fit: contain; } .places-list-filter__category-title { min-width: 0; max-width: 100%; font-size: 1.25rem; line-height: 1.15; font-weight: 700; padding: 5px 10px; color: white; background: linear-gradient(10deg, #a4927e, #e6dcd3); border-radius: 15px; box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .places-list-filter__toggle { border: 0; flex: 0 0 auto; min-height: 42px; padding: 0 14px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #fff; color: #283346; box-shadow: 0 6px 20px rgba(0,0,0,.14); font-size: .95rem; cursor: pointer; } .places-list-filter__toggle svg { width: 22px; height: 22px; } .places-list-filter__toggle svg [fill], .qc-locate-icon svg [fill] { fill: currentColor; } .places-list-filter__panel { padding: 14px 0 6px; border-bottom: 1px solid rgba(0, 0, 0, .12); margin-bottom: 10px; } .places-list-filter__panel[hidden] { display: none; } .places-list-filter__panel-head, .places-list-filter__sort { display: flex; align-items: center; justify-content: space-between; gap: 12px; } .places-list-filter__panel-title { font-size: 1rem; font-weight: 600; color: #111827; } .places-list-filter__reset { color: #0a9fa6; text-decoration: none; font-size: .9rem; } .places-list-filter__chips { display: flex; gap: 10px; overflow-x: auto; padding: 14px 0; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; } .places-list-filter__chips::-webkit-scrollbar { display: none; } .places-list-filter__chip { flex: 0 0 auto; min-width: 80px; min-height: 80px; border-radius: 18px; padding: 5px; display: flex; flex-direction: column; flex-wrap: wrap; width: 80px; align-items: center; justify-content: center; gap: 8px; text-align: center; font-size: 0.7rem; color: #1f2937; text-decoration: none; text-align: center; background: linear-gradient(60deg, #eaeaea, #ffffff); box-shadow: 0 6px 18px rgba(0,0,0,.1); border: 1px solid rgba(0,0,0,.04); scroll-snap-align: start; } .places-list-filter__chip--active { border-color: #0aa7ad; color: #078b92; background: linear-gradient(60deg, #c8e5e7, #f8f8f8); } .places-list-filter__chip-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: #078b92; } .places-list-filter__chip-icon .icone_gradient { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: currentColor; } .places-list-filter__chip-icon .icone_gradient svg { width: 100%; height: 100%; display: block; fill: currentColor; } .places-list-filter__chip-icon-img { display: block; object-fit: contain; } .places-list-filter__chip-icon-img--png { width: 38px; height: 38px; border-radius: 50%; } .places-list-filter__chip--png { min-height: 94px; gap: 6px; background: transparent; box-shadow: none; border: 0; padding: 3px; } .places-list-filter__chip--png .places-list-filter__chip-icon { width: 75px; height: 75px; border-radius: 50%; padding: 4px; background: #d5eef8; border: 2px solid #8ecfe6; color: #078b92; overflow: hidden; box-shadow: 0 5px 14px rgba(10, 159, 166, 0.14); } .places-list-filter__chip--png.places-list-filter__chip--active .places-list-filter__chip-icon { background: #d8f4df; border-color: #70d68b; color: #16834d; box-shadow: 0 5px 14px rgba(23, 166, 91, 0.16); } .places-list-filter__chip--png .places-list-filter__chip-icon-img { width: 70px; height: 70px; } .places-list-filter__chip--png .places-list-filter__chip-label { max-width: 76px; min-height: 22px; font-size: 0.7rem; padding: 3px 7px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: linear-gradient(10deg, #2f5d5bc2, #77e5e1c2); color: #fff; line-height: 1.05; } .places-list-filter__sort { justify-content: flex-end; font-size: .9rem; color: #4b5563; } .places-list-filter__sort select { border: 0; background: transparent; color: #0a9fa6; font-size: .95rem; font-weight: 600; } .places-list__link { text-decoration: none; color: #000; } .places-list-favorite-item { position: relative; } .places-list-favorite-item__delete { position: absolute; top: 6px; right: 6px; z-index: 2; margin: 0; } .places-list-favorite-item__delete button { width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(242, 242, 242, .94); color: #777; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 3px 10px rgba(0, 0, 0, .12); } .places-list-favorite-item__delete svg { width: 18px; height: 18px; display: block; } .places-list-pagination { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 0 20px calc(120px + env(safe-area-inset-bottom,0px)); } .places-list-pagination__btn { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #078b92; background: rgba(255, 255, 255, 0.92); box-shadow: 0 5px 16px rgba(0, 0, 0, 0.14); text-decoration: none; } .places-list-pagination__btn svg { width: 30px; height: 30px; display: block; } .places-list-pagination__btn--disabled { opacity: .28; box-shadow: none; pointer-events: none; } .places-list-pagination__count { min-width: 54px; text-align: center; font-size: .9rem; font-weight: 700; color: #283346; } .places-list__present { display: flex; gap: 0; margin-bottom: 20px; align-items: stretch; padding-top: 0; font-size: 0.75rem; box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12); border-radius: 20px; } .places-list__present > div:first-child { display: flex; flex: 0 0 130px; } .places-list__img_container { width: 130px; aspect-ratio: 1 / 1; height: 100%; min-height: 130px; object-fit: cover; object-position: center; display: block; border-radius: 20px; } .places-list__present_ad { display: block; width: 100%; } .places-list__text_present { display: flex; gap: 10px; align-items: flex-start; } .places-list__present_ad .places-list__img_container { width: 100%; height: 160px; min-height: 160px; border-radius: 12px; } .places-list_infos_container { display: flex; flex-direction: column; justify-content: flex-start; gap: 4px; padding: 10px; width: 100%; } .places-list__nom { display: flex; align-items: center; padding: 0 5px; border-radius: 6px; font-size: 1rem; font-weight: bold; color: #555; } .places-list__distance { color: #555; white-space: nowrap; } .places-list__distance [data-action="geo-locate"], .places-list__distance [data-action="waou-geolocate"] { width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; color: #555; line-height: 0; } .places-list__distance svg { width: 100%; height: 100%; display: block; } .places-list__distance svg [fill] { fill: currentColor; } .places-list__rating { padding: 0 5px; font-size: 0.75rem; } @media (max-width: 430px) { :root { --places-rubrique-h: 132px; } .places-list-filter { padding: 54px 12px 0; } .places-list-filter__head { gap: 8px; padding-bottom: 12px; } .places-list-filter__category { gap: 8px; flex: 1 1 auto; min-width: 0; } .places-list-filter__category-icon { width: 44px; height: 44px; flex-basis: 44px; } .places-list-filter__category-img, .places-list-filter__category-svg svg { width: 48px; height: 48px; } .places-list-filter__category-title { min-width: 0; max-width: 100%; font-size: 1rem; line-height: 1.1; padding: 5px 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .places-list-filter__toggle { flex: 0 0 auto; min-height: 38px; padding: 0 10px; gap: 6px; font-size: 0.86rem; } .places-list-filter__toggle svg { width: 19px; height: 19px; } .places-list-filter__chips { gap: 8px; } .places-list-filter__chip { width: 72px; min-width: 72px; min-height: 74px; border-radius: 16px; gap: 6px; } .places-list-filter__chip--png .places-list-filter__chip-icon { width: 64px; height: 64px; } .places-list-filter__chip--png .places-list-filter__chip-icon-img { width: 60px; height: 60px; } .places-list-filter__chip--png .places-list-filter__chip-label { max-width: 70px; font-size: 0.64rem; } .places-list__container { margin-left: 10px; margin-right: 10px; } .places-list__present { border-radius: 16px; margin-bottom: 16px; } .places-list__present > div:first-child { flex-basis: 108px; } .places-list__img_container { width: 108px; min-height: 108px; border-radius: 16px; } .places-list_infos_container { padding: 8px; min-width: 0; } .places-list__nom { font-size: 0.9rem; line-height: 1.05; padding: 0 3px; } .places-list__distance { font-size: 0.75rem; white-space: nowrap; } .places-list__rating { font-size: 0.7rem; padding: 0 3px; } .place__tags_container { flex-wrap: wrap; gap: 4px; } .place__tags_unit { max-width: 68px; min-height: 22px; padding: 2px 5px; font-size: 0.56rem; line-height: 1.05; text-align: center; justify-content: center; overflow-wrap: anywhere; } .places-list__text_present { font-size: 0.72rem; line-height: 1.18; overflow-wrap: anywhere; } } @media (max-width: 360px) { .places-list-filter__category-title { font-size: 0.9rem; padding: 5px 7px; } .places-list-filter__toggle { font-size: 0.78rem; padding: 0 8px; } .places-list__present > div:first-child { flex-basis: 96px; } .places-list__img_container { width: 96px; min-height: 96px; } } .place__photo { position: relative; width: 100%; height: 250px; overflow: hidden; z-index: 0; background-size: cover; background-position: center; background-repeat: no-repeat; } .place-swipe-nav { transition: transform 0.28s ease, opacity 0.28s ease; will-change: transform; } .place-swipe-nav.is-swipe-dragging { transition: none; touch-action: pan-y; user-select: none; } .place-swipe-nav.is-swipe-left { transform: translateX(-100%); opacity: 1; } .place-swipe-nav.is-swipe-right { transform: translateX(100%); opacity: 1; } .place-swipe-ghost { position: fixed; inset: 0; z-index: 900; overflow-y: auto; background: white; transition: transform 0.28s ease; will-change: transform; -webkit-overflow-scrolling: touch; touch-action: none; } .place-swipe-ghost--next { transform: translateX(100%); } .place-swipe-ghost--prev { transform: translateX(-100%); } .place-swipe-ghost.is-active { transform: translateX(0); } .place-swipe-ghost .content { position: relative; min-height: 100vh; width: 100%; } .place__photo::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; top: 0; background: linear-gradient( to bottom, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.75) 100% ); } .place__infos_all { margin-top: 5px; padding: 20px; } .place__btns-love_container { display: flex; gap: 10px; justify-content: space-evenly; align-items: center; } .place__btns-love_btns-container { display: flex; gap: 5px; flex-direction: column; justify-content: center; align-items: center; font-size: 0.8rem; } .place__btns-love_btn { display: flex; flex-wrap: wrap; align-items: center; font-size: 0.9rem; } .place__btns-love_btn-icone { height: 20px; width: 20px; cursor: pointer; touch-action: manipulation; } .place__btns-love_btn-icone[data-btn_state$="_on"] { color: #008a00; } .place__btns-love_btn-icone[data-btn_state$="_on"] svg { fill: currentColor !important; } .place__btns-love_btn-icone[data-btn_state$="_on"] svg [fill]:not([fill="none"]) { fill: currentColor !important; } .place__btns-love_btn-icone[data-btn_state$="_on"] svg [stroke]:not([stroke="none"]) { stroke: currentColor !important; } .place__btns-love_btn-icone svg, .place__btns-love_btn-icone img { pointer-events: none; } .place__titres_container { position: absolute; bottom: 20px; padding: 20px; z-index: 3; width: 100%; } .place__tags_container { display: flex; gap: 5px; flex-wrap: wrap; } .place__tags_unit { font-size: 0.65rem; background: linear-gradient(10deg, #2f5d5bc2, #77e5e1c2); color: #fff; border-radius: 5px; padding: 2px 7px; display: flex; align-items: center; justify-content: center; line-height: 1.05; max-width: 82px; min-height: 22px; text-align: center; overflow-wrap: anywhere; } .place__infos_container { background-color: var(--fond); box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12); padding: 20px; border-radius: 20px; position: relative; z-index: 2; } .place__infos_icone { width: 35px; height: 35px; padding: 10px; color: #fff; background-color: var(--brand); border-radius: 50%; } .place__infos_text { font-size: 0.9rem; display: flex; flex-direction: column; min-height: 35px; align-items: center; } .place__horaires { box-sizing: border-box; font-size: 0.9rem; line-height: 1.25rem; margin: 10px 0 0; max-width: 100%; overflow-wrap: anywhere; white-space: pre-wrap; word-break: normal; font-family: monospace; } .place__infos_btn_position { background-color: var(--brand); color: white; border: 1px solid #aaa; border-radius: 10px; height: 20px; padding: 0 10px; } .place__separator { border: 1px solid #ddd; } .place__titre { font-size: 1.8rem; color: #fff; font-weight: bold; text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.8); } .place__sous-titre { font-size: 1.2rem; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.8); margin-top: 5px; } .place__titre-infos { font-size: 0.8rem; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.8); margin-top: 5px; } .qc-locate-icon { position: relative; overflow: visible; } .qc-locate-icon_main { display: block; } .qc-locate-icon_main svg { width: 100%; height: 100%; display: block; } .qc-locate-icon_check { align-items: center; background: #12a5a5; border-radius: 50%; box-sizing: border-box; bottom: -4px; color: #fff; display: none; height: 11px; justify-content: center; padding: 0; position: absolute; right: -5px; width: 11px; z-index: 2; } .qc-locate-icon_check svg { display: none; } .qc-locate-btn.is-located .qc-locate-icon_check { display: flex; } .qc-locate-btn.is-locating { opacity: 0.75; } .place__carousel-open_container { height: 30px; display: flex; justify-content: center; align-items: center; cursor: pointer; padding: 10px; background-color: rgba(0, 0, 0, 0.4); border-radius: 19px; position: absolute; top: 20px; right: 20px; z-index: 1; } .place__carousel-open_text { font-size: 0.9rem; padding-left: 10px; color: #fff; } .place__carousel-open_icon { height: 20px; width: 20px; color: #fff; } .waou_block { max-width: 700px; margin: auto; background: #fff; padding: 20px; border-radius: 10px; } .waou_cat { border: 1px solid #e5e7eb; border-radius: 8px; margin-bottom: 10px; } .waou_cat_header { padding: 10px; background: #eef2f7; cursor: pointer; display: flex; align-items: center; justify-content: space-between; } .waou_cat_header input { margin-right: 10px; } .waou_cat_header label { display: flex; align-items: center; min-width: 0; } .waou_cat_header .qc-drawer-accordion__trigger { width: auto; padding: 8px; color: #168b8f; flex: 0 0 auto; } .waou_sub { display: none; padding: 10px 20px; } .waou_sub label { display: block; margin-bottom: 5px; text-align: left; } .waou_add { margin-top: 20px; border-top: 1px solid #ddd; padding-top: 15px; } .contact_ahref { display: flex; flex-direction: row; color: white; justify-content: center; align-items: center; width: 100%; } .prix_table { display: flex; justify-content: center; flex-wrap: wrap; width: 100%; gap: 5px; } .prix_tab_text { width: calc(70% - 5px); display: flex; flex-direction: column; align-items: start; } .prix_tab_numb { width: calc(30% - 5px); display: flex; flex-direction: column; align-items: end; } .icon_btn { display: inline-flex; align-items: center; justify-content: center; height: 30px; width: 30px; cursor: pointer; font-size: 1rem; } .link { color: var(--brand); text-decoration: none; } .all__fields-links_container { display: flex; position: relative; height: 34px; align-items: center; } .all__fields-links_text { display: block; text-align: left; } .all__fields-links_links-container { display: block; position: absolute; top: 0; right: 0; padding-left: 15px; background: linear-gradient(to right, rgba(249, 249, 249, 0) 0%, #f9f9f9 10px, #f9f9f9 100%); transition: visibility 0.3s, opacity 0.3s linear; } .all__fields-links_container:hover .all__fields-links_links-container { opacity: 1; visibility: visible; transition: visibility 0.3s, opacity 0.3s linear; } #fld_ean video { width: 300px; margin: 0 auto; } .push__legend { color: #999; font-size: 0.8rem; font-style: italic; } .push__date { color: #999; font-size: 0.8rem; } .push__title { font-size: 1.2rem; text-align: center; font-weight: bold; } .procducts__container { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; align-items: center; justify-content: center; } .procducts__button_container { display: flex; width: calc(50% - 10px); } .procducts__button { display: flex; align-items: center; background-color: #fff; border-radius: 25px; gap: 10px; font-size: 1rem; color: #000; width: 100%; padding: 5px 10px; border: 3px solid var(--brand); } .news-pwa.classifieds-pwa-form .input_field::placeholder, .news-pwa.classifieds-pwa-form textarea.input_field::placeholder { color: #8a8a8a; opacity: 1; } .pwa-ads-page { min-height: 100vh; padding: 78px 16px 92px; background: linear-gradient(180deg, #eef8f7 0%, #ffffff 42%, #ffffff 100%); box-sizing: border-box; color: #102526; font-family: Arial, Helvetica, sans-serif; } .pwa-ads-hero, .pwa-ads-benefits, .pwa-ads-offers, .pwa-ads-premium, .pwa-ads-trust, .pwa-ads-contact { max-width: 520px; margin-left: auto; margin-right: auto; } .pwa-ads-hero { padding-top: 18px; } .pwa-ads-badge { display: inline-flex; align-items: center; min-height: 30px; padding: 0 16px; border-radius: 999px; background: #dff2ee; color: #2d8f87; font-size: 0.82rem; font-weight: 700; } .pwa-ads-hero h1 { margin: 26px 0 18px; font-size: 2.05rem; line-height: 1.08; color: #132526; font-weight: 800; } .pwa-ads-hero h1::after { content: ""; display: block; width: 56%; height: 8px; margin-top: -8px; background: rgba(45, 143, 135, 0.18); border-radius: 999px; } .pwa-ads-hero p, .pwa-ads-section-intro { margin: 0; color: #5d6768; font-size: 1rem; line-height: 1.55; } .pwa-ads-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; } .pwa-ads-actions a { display: flex; align-items: center; justify-content: center; min-height: 52px; border-radius: 999px; border: 1px solid rgba(16, 37, 38, 0.15); background: #fff; color: #132526; font-weight: 800; text-decoration: none; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08); } .pwa-ads-actions a:first-child { background: #2d8f87; color: #fff; border-color: #2d8f87; box-shadow: 0 10px 24px rgba(45, 143, 135, 0.25); } .pwa-ads-benefits { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; } .pwa-ads-benefit { display: flex; gap: 16px; align-items: flex-start; } .pwa-ads-benefit__icon, .pwa-ads-offer__icon, .pwa-ads-trust__icon { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: #2d8f87; color: #fff; flex: 0 0 46px; } .pwa-ads-benefit__icon svg, .pwa-ads-offer__icon svg, .pwa-ads-trust__icon svg { width: 24px; height: 24px; } .pwa-ads-benefit h2 { margin: 0 0 4px; font-size: 1rem; line-height: 1.2; } .pwa-ads-benefit p { margin: 0; color: #5d6768; font-size: 0.92rem; line-height: 1.35; } .pwa-ads-offers { margin-top: 58px; } .pwa-ads-section-title { display: flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 18px; border-radius: 999px; background: #133536; color: #fff; font-size: 0.88rem; font-weight: 800; text-transform: uppercase; text-align: center; } .pwa-ads-section-intro { margin: 18px 0 24px; text-align: center; } .pwa-ads-offer { margin-bottom: 24px; padding: 28px 28px 30px; border: 1px solid rgba(19, 53, 54, 0.16); border-radius: 20px; background: #fff; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); box-sizing: border-box; text-align: center; } .pwa-ads-offer__icon { margin: 0 auto 18px; background: #eef8f7; color: #2d8f87; } .pwa-ads-offer--top .pwa-ads-offer__icon, .pwa-ads-offer--top .pwa-ads-offer__price { background: #d1a32d; color: #fff; } .pwa-ads-offer--hits .pwa-ads-offer__icon, .pwa-ads-offer--hits .pwa-ads-offer__price { background: #f2652f; color: #fff; } .pwa-ads-offer h2 { margin: 0 0 12px; font-size: 1.45rem; text-transform: uppercase; } .pwa-ads-offer__subtitle { margin: 0 0 24px; color: #5d6768; font-size: 0.94rem; line-height: 1.35; } .pwa-ads-offer__visual { display: block; width: 100%; max-height: 130px; margin: 0 auto 24px; border-radius: 14px; object-fit: contain; } .pwa-ads-offer__list { display: flex; flex-direction: column; gap: 12px; text-align: left; } .pwa-ads-offer__list p { display: flex; gap: 10px; margin: 0; color: #273637; font-size: 0.92rem; line-height: 1.35; } .pwa-ads-offer__list span, .pwa-ads-premium__list span { color: #2d8f87; font-weight: 800; } .pwa-ads-offer__price { display: flex; align-items: center; justify-content: center; min-height: 66px; margin-top: 28px; border-radius: 14px; background: #2d8f87; color: #fff; font-size: 2rem; font-weight: 900; line-height: 1; } .pwa-ads-offer__price span, .pwa-ads-premium__price span { font-size: 0.9rem; font-weight: 700; line-height: 1; } .pwa-ads-premium { position: relative; margin-top: 44px; padding: 34px 30px 30px; border-radius: 24px; background: #123637; color: #fff; box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18); box-sizing: border-box; overflow: hidden; } .pwa-ads-premium__label { position: absolute; top: 0; right: 0; padding: 10px 14px; border-radius: 0 0 0 14px; background: #d8a928; color: #123637; font-size: 0.72rem; font-weight: 900; text-transform: uppercase; } .pwa-ads-premium__icon { display: flex; align-items: center; justify-content: center; width: 70px; height: 70px; border: 2px solid #d8a928; border-radius: 50%; color: #d8a928; font-size: 2.2rem; } .pwa-ads-premium__crown { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; } .pwa-ads-premium h2 { margin: 22px 0 0; font-size: 2rem; line-height: 1; text-transform: uppercase; } .pwa-ads-premium h3 { margin: 6px 0 20px; color: #d8a928; font-size: 1.1rem; text-transform: uppercase; } .pwa-ads-premium__combo, .pwa-ads-premium__saving { display: inline-flex; align-items: center; justify-content: center; min-height: 36px; padding: 0 16px; border-radius: 9px; background: #d8a928; color: #123637; font-weight: 900; } .pwa-ads-premium p { color: rgba(255, 255, 255, 0.84); font-size: 0.98rem; line-height: 1.45; } .pwa-ads-premium__list { margin-top: 24px; } .pwa-ads-premium__list p { display: flex; gap: 10px; margin: 0 0 13px; } .pwa-ads-premium__list span { color: #d8a928; } .pwa-ads-premium__price { margin-top: 28px; padding: 24px 14px; border-radius: 18px; background: rgba(255, 255, 255, 0.08); text-align: center; font-size: 2.8rem; font-weight: 900; } .pwa-ads-premium__saving { width: 100%; box-sizing: border-box; margin-top: 14px; } .pwa-ads-trust { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 28px; } .pwa-ads-trust__item { display: flex; gap: 12px; align-items: center; padding: 14px; border-radius: 16px; background: #fff; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); } .pwa-ads-trust__icon { width: 42px; height: 42px; flex-basis: 42px; } .pwa-ads-trust__item strong { display: block; font-size: 0.86rem; text-transform: uppercase; } .pwa-ads-trust__item p { margin: 2px 0 0; color: #5d6768; font-size: 0.82rem; line-height: 1.25; } .pwa-ads-contact { display: flex; justify-content: space-around; gap: 10px; margin-top: 18px; padding: 14px 10px; border-radius: 18px; background: linear-gradient(135deg, #dff2ee, #2d8f87); color: #fff; text-align: center; font-size: 0.92rem; font-weight: 700; } .pwa-ads-contact a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; min-width: 0; color: #fff; text-decoration: none; flex: 1; } .pwa-ads-contact svg, .pwa-ads-contact img { width: 26px; height: 26px; object-fit: contain; } .pwa-ads-contact svg path { fill: currentColor; } .pwa-ads-contact span { display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.78rem; line-height: 1.1; } .qc-drawer-section .pwa-ads-contact { width: 100%; box-sizing: border-box; margin-top: 0; padding: 8px 6px; border-radius: 10px; } .qc-drawer-section .pwa-ads-contact a { color: #555; gap: 4px; padding: 4px; } .qc-drawer-section .pwa-ads-contact svg, .qc-drawer-section .pwa-ads-contact img { width: 20px; height: 20px; } .qc-drawer-section .pwa-ads-contact span { font-size: 0.72rem; font-weight: 300; } @media (min-width: 1200px) { .villes__bouton { width: 31%; } } @media (max-width: 430px) { .place__tags_container { flex-wrap: wrap; gap: 4px; } .place__tags_unit { max-width: 68px; min-height: 22px; padding: 2px 5px; font-size: 0.56rem; line-height: 1.05; text-align: center; justify-content: center; overflow-wrap: anywhere; } }