/* ######################### */
/* # GENERAL # */
/* ######################### */

/* ### ACTION COPIER COLLER ### */

/* Background */
::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: var(--color-1);
}

::selection {
    color: #fff;
    background: var(--color-1);
}

/* #### SCROLLBAR #### */

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--color-2);
    border-bottom:6px solid var(--color-1);
    border-radius: 0px 0px 0px 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
}
::-webkit-scrollbar-track {
    position: fixed;
    background: #ecf0f5;
    -webkit-box-shadow: inset 0 0 5px rgb(0 0 0 / 10%);
    -webkit-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
}


/* #### BACK TO TOP #### */

/* Back to top module */
.progress-wrap {
    position: fixed;
    background:#ffffff;
    right: 12px!important;
    bottom: 92px!important;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    border: 1px solid var(--color-1);
    box-shadow: inset  0 0 0 0px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    z-index: 999999999!important;
}

/* Mobile placement module */
@media all and (max-width: 499px) {
.progress-wrap {
    margin-bottom: 26px!important;
  }
}

/* Back to top icon */
.progress-wrap:after {
    color: var(--color-1);
    content: "\21";
    font-family: ETmodules!important;
    font-size:22px;
    font-weight:900;
    position:relative;
    display: flex!important;
    justify-content:center!important;
    left: -1px;
    top: -36px!important;
    z-index: 999999;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 50%;
}

/* Back to top visibility */
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap svg path { 
    fill: none; 
}

/* Back to top progress indicator */
.progress-wrap svg.progress-circle path {
    stroke: var(--color-1); /* --- Color indicator --- */
    stroke-width: 8;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* Back to top module hover */
.progress-wrap:hover {
   background:#ecf0f5!important;
}

/* Icon hover */
.progress-wrap:hover:after {
    color: var(--color-1);
}

/* Icon active animate */
.progress-wrap:active:after {
    color:#bdbdbd!important;
    transform: rotate(350deg)!important;
    transition: transform 0.3s linear!important;
}


/* #### LOADER #### */

/* PRELOADER CSS */
.page-loader {
    background: #01254c;
    opacity: 1;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden!important;
    z-index: 999999999999!important;
}

.page-loader-txt {
    color: rgba(255, 255, 255, .3);
    font-family:Arial;
    font-size:14px;
    letter-spacing: 0.3rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.5;
    margin-left:0;
    margin-right:0;
}

/* SPINNER ANIMATION */
.page-loader-spinner {
    display: inline-block;
    width: 112px;
    height:112px;
    border: 10px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #c60505;
    animation: spin 3s ease-in-out infinite;
    -webkit-animation: spin 3s ease-in-out infinite; 
      }
@keyframes spin {
    to {
    -webkit-transform: rotate(360deg);
        }
      }
@-webkit-keyframes spin {
    to {
    -webkit-transform: rotate(360deg);
  }
}


/* ######################### */
/* # TEMPLATE DEFAULT # */
/* ######################### */

/* ###  GENERAL ### */

#page-container {
    padding-top: 0px !important;
    overflow-x: hidden !important;
}

/* Largeur row site web */
.page .et_pb_row, .single .et_pb_row {
   width: 80%;
}

/* Z INDEX */
.container, .et_pb_row{
    z-index:1;
}


/* ########################### */
/* ######## BREADCRUMBS ###### */
/* ########################### */

/* Lien */
#abf_breadcrumbs a {
    color:var(--color-2)
}

/* Lien actif */
#abf_breadcrumbs span.breadcrumb_last {
    color: var(--color-1)!important;
}


/* ######################### */
/* # LISTES A PUCES # */
/* ######################### */

/* *style 1* */
/* Puce icon */
.puce_icon li:before {
    content:"\e052";
    font-family: ETmodules!important;
    color: var(--color-2);
    font-size:18px;
    display: inline-block;
    vertical-align:middle;
    margin-right:6px;
    margin-left:-16px!important;
}

.puce_icon li{
    list-style:none;
    line-height:1.1!important;
}

/* *style 2* */
.puce_square li:before {
   content: '';
    height: 14px;
    width: 14px;
    background-color: var(--color-2);
    display: inline-block;
    vertical-align:middle;
    margin-top:-2px;
    margin-right:6px;
    margin-left:-16px!important;
}

.puce_square li{
    list-style:none;
    line-height:1.1!important;
}


/* ######################### */
/* # FORM DEFAULT # */
/* ######################### */

/* Autocomplete field */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset!important;
    -webkit-text-fill-color: #999999;	
}

/* ### ALL INPUT DEFAULT ### */

/* Placeholder */
::placeholder {	
    color:#999999;
    font-size:16px!important;
    font-weight: 300!important;
    text-transform: none !important;
    cursor:pointer;
}

/* Input */
.abf_contact_form .input {
    background: #ffffff!important;
    border: 1px solid #d9d9d9!important;
    padding: 20px 12px;
    font-size:16px!important;
    font-weight: 300!important;
    color:#999999!important;
}

/* Input Focus */
.abf_contact_form .input:focus {
    background: #ffffff!important;
    border: 2px solid var(--color-2)!important;
	  padding:18px;
    color:var(--color-2)!important;
}

/* ###  CHECKBOXE & RADIO BUTTON ### */

/* Container */
.et_pb_contact_field_options_wrapper {   
    color:#999999;
    font-size:15px
}

/* Checkboxe */
.et_pb_contact p input[type=checkbox]+label i, .et_pb_contact p input[type=radio]+label i {
    width: 22px;
    height: 22px;
    background-color: #fff!important;
    border: 1px solid #d9d9d9;
    margin-top:2px;
}

/* Radio button checked */
.et_pb_contact p input[type=radio]:checked+label i:before {
    background: var(--color-2)!important;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

/* Case à cocher checked */
.et_pb_contact p input[type=checkbox]:checked+label i:before {
    color: var(--color-2)!important;
    font-size: 20px!important;
    display: flex !important;
    justify-content: center;
}


/* ######################### */
/* # FLOAT LABEL # */
/* ######################### */

/* Style du premier élément de la liste */
.nice-select ul li:first-child {
    display:none!important
}

/* Label */
.et-float-labels LABEL {
    text-align:left!important
}

.et-float-labels p {
    position: relative;
}

.et-float-labels .et_pb_contact_form_label {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transform: translateY(0%);
    transform-origin: left;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.et-float-labels .et_pb_contact_form_label.active {
    visibility: visible!important;
    opacity: 1!important;
    display:block;
    padding: 4px 10px;
    color:#c5c5c5!important;
    transform: translateY(-10%) scale(0.75);
    z-index:9;
}

.et_pb_module.et-float-labels form p .input::-webkit-input-placeholder {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.et_pb_module.et-float-labels form p .input::-moz-placeholder {
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.et_pb_module.et-float-labels form p .input:-ms-input-placeholder {
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.et_pb_module.et-float-labels form p .input:-moz-placeholder {
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}  
.et_pb_module.et-float-labels form p .input::placeholder {
  transition: all 0.4s ease-in-out;
}

.et_pb_module.et-float-labels form p .input:focus::-webkit-input-placeholder {
    color: transparent !important;
    transform: translateY(0%);
    transform-origin: left;
}
.et_pb_module.et-float-labels form p .input:focus::-moz-placeholder {
    color: transparent !important;
    transform: translateY(0%);
    transform-origin: left;
}
.et_pb_module.et-float-labels form p .input:focus:-moz-placeholder {
    color: transparent !important;
    transform: translateY(0%);
    transform-origin: left;
}

.et_pb_module.et-float-labels form p .input:focus:-ms-input-placeholder {
    color: transparent !important;
    transform: translateY(0%);
    transform-origin: left;
}

.et_pb_module.et-float-labels form p .input:focus::placeholder {
    color: transparent !important;
    transform: translateY(0%);
    transform-origin: left;
}

/* #### FULLWIDTH BUTTON #### */

/* Container fullwidth */
.submit-fullwidth .et_contact_bottom_container {
    margin-top:0;
    background:transparent;
    width:100%;
    padding-left:3%!important;
}

/* Button fullwidth */
.submit-fullwidth
.submit-container, .submit-fullwidth button {
    background:var(--color-1)!important;
    color:#ffffff;
    height:52px;
    text-transform:none;
    font-size:18px!important;
    font-weight:700!important;
    width:100%!important;
    margin-left:0!important;
    border-radius: 0!important;
}

/* Button fullwidth hover */
.submit-fullwidth
.submit-container, .submit-fullwidth button:hover {
    background:var(--color-2)!important;
    border-color:var(--color-2)!important;
}


/* ######################### */
/* # FORM MESSAGE SUCCESS # */
/* ######################### */

.et-pb-contact-message p:before{
    font-family: ETmodules!important;
    content:"\e052";
    display: block!important;
    text-align:center;
    color: green;
    font-size:42px;
    margin:16px
}

.et-pb-contact-message p{
    text-align:center;
    border:2px solid #01254c;
    padding:6px;
}

.et-pb-contact-message:has(ul) p:before {
    font-family: ETmodules!important;
    content:"\e051";
    color: red!important;	
}


.et-pb-contact-message ul {
    font-size: 16px;
    line-height: 1.5em;
    color: red;
}


/* ######################### */
/* # CUSTOM PLUGINS # */
/* ######################### */

/* ### FAQ SCHEMA ### */

/* Remove default margin */
.et-db #et-boc .et-l .et_pb_column .abf_accordion_faq .et_pb_module {
    margin-bottom:0!important;
}

/* Title vertical align */
.dipl_faq_page_schema .dipl_faq_accordion .dipl_question_wrapper {
    display: flex;
    align-items: center;
}

/* Border bottom separate */
.et-db #et-boc .et-l .abf_accordion_faq.dipl_faq_page_schema .dipl_faq_page_schema_item{
    border-bottom: 1px solid #c5c5c5!important;	
}

/* Icon faq */
.abf_accordion_faq .dipl_faq_accordion .dipl_question_wrapper::after {
    font-size:28px!important;
    transform: rotate(90deg)!important;
    transition:all 0.1s ease-out 0s!important;
}

/* Icon faq active */
.et-db #et-boc .et-l .abf_accordion_faq .dipl_faq_accordion .dipl_faq_page_schema_item.dipl_active .dipl_question_wrapper::after {
    transform: rotate(45deg)!important;
    transition:all 0.3s ease-out 0s!important;
}

/* Questions actif */
.dipl_faq_accordion .dipl_faq_page_schema_item.dipl_active .dipl_question_wrapper {
    cursor: pointer;
}

/* Questions inactif */
.dipl_faq_accordion
.et_pb_toggle_close {
    background-color: transparent;
}

/* Réponses */
.dipl_faq_accordion p {
    padding-bottom: 12px;
}  


/* ######################### */
/* # SERVICES V1 # */
/* ######################### */

/* ### HEADER CTA SERVICES V1 ### */

/* Header CTA Search row */
.header-search-servicesV1.dipl_ajax_search {
    max-width: 352px;
    margin-left:auto;
    margin-right:auto;
}

/* Header CTA Search field */
.header-search-servicesV1 .dipl_ajax_search_field {
    margin:12px 0!important; 
}

/* Header CTA Search field focus */
.header-search-servicesV1 .dipl_ajax_search_field:focus {
    border:2px solid var(--color-2)!important;
}

/* ### MENU SIDEBAR SERVICES V1 ### */

/* Menu texte */
.menu-servicesV1 .nav li li a, .abf_vertical_menu .nav li li a:hover {
    text-transform: none;
}

/* Vertical menu */
.menu-servicesV1 .et_pb_menu_inner_container,
.menu-servicesV1 .et_pb_menu__wrap,
.menu-servicesV1 .et_pb_menu__menu,
.menu-servicesV1.et_pb_menu .et_pb_menu__menu>nav,
.menu-servicesV1.et_pb_menu .et_pb_menu__menu>nav>ul {
    display: block!important;
}

/* Remove hamburger menu */
.menu-servicesV1 .et_mobile_nav_menu {
    display: none!important;
}

/* Link menu */
.menu-servicesV1 a {
    color: var(--color-2)!important;
    background-color: #eaeaea;
    border: 1px solid #c5c5c5;
    padding: 18px 22px;
    padding-bottom:16px!important;
    font-size: 16px;
    font-weight: 600;
    line-height:1.0em;
    width:100%;
    text-decoration:none!important;
}

/* Icon link after */
.menu-servicesV1 a:after {
    content: "\35";
    font-family: ETmodules;
    font-size:28px;
    font-weight: 300!important;
    position: absolute;
    right:6px!important;
}

/* Lien actif */
.menu-servicesV1.et_pb_menu .et-menu-nav li.current-menu-item a {
    background:var(--color-1)!important;
    color: #ffffff!important;
    pointer-events:none!important;
}

/* Lien actif icon after */
.menu-servicesV1.et_pb_menu .et-menu-nav li.current-menu-item a:after {
    display:none;
}

/* Lien hover */
.menu-servicesV1 .et-menu a:hover {
    color: var(--color-1)!important;
    opacity:1
}  


/* ######################### */
/* # FOOTER # */
/* ######################### */

/* #### HORAIRES D'OUVERTURES V1 V2 #### */

/* Row statut */
#open-status2, #open-status {
    margin:6px 0;
    margin-bottom:6px!important;
    display:block;
    text-align:center;
}

/* Hours content */
.openinghours {
    display: block;
    padding: 0;
    background: transparent!important;
    color:#bdbdbd!important;
    border: 0;
    width: 95%!important;
    max-width: 600px;
    margin: 0 auto;
    font-size:16px
}

/* Hours width */
.opening-hours-table {
    border: 0;
    width: 100%;
    margin-left: 0!important;
}

.opening-hours-table tr td {
   width: 100%;
   max-width: 600px;
}

.openinghourscontent {
    width: 100%;
    float: none;
    padding-bottom: 0!important;
}

/* Hours tabs TD */
.openinghours td {
    border-bottom: 1px dashed #333333!important;
    padding: 2px 2px!important;
    border-top: 0px;
}

/* Statut */
.today {
    color: #ffffff!important;
    font-weight:700;
}

/* Statut Open or closed */
.openorclosed2:after, .openorclosed:after {
    content: " [statut]";
}

/* Statut open */
.openinghours .hours-open2:after, 
.openinghours .hours-open:after {
    content: " Ouvert";
    color: #ffffff;
    background: green;
    font-weight: 700;
    margin-left: 4px;
    padding: 0px 6px!important;
    padding-left: 0px!important;
    border-radius: 14px!important;
}

/* Statut closed */
.hours-closed2:after, 
.hours-closed:after {
    content: " Fermé";
    color: #ffffff;
    background: var(--color-1);
    font-weight: 700;
    margin-left: 4px;
    padding: 0px 6px!important;
    padding-left: 0px!important;
    border-radius: 14px!important;
}

/* Hide hours week closed */
.opens2.hide-hours-tabs, .closes2.hide-hours-tabs {
  display:none;
}

#Dimanche td,
#Sunday td {
    border-bottom:0
}

/* ICON */

/* Statut icon */
.openinghours small.openorclosed:before,
.openinghours small.openorclosed2:before {
    content: "\f05a";
    font-family: "FontAwesome";
    margin-right: 2px;
    color: #bdbdbd !important;
}

/* Today icon */
.today td:first-child:before {
    content: "\f017";
    font-family: "FontAwesome";
    margin-right: 2px;
}

/* #### BOTTOM NOTIFICATION #### */

/* Section */
.at-banner { 
    position: fixed; 
    bottom: 0; 
    right: 0; 
    left: 0; 
    background: var(--color-1); 
    width: 100%; 
    padding: 0px; 
    box-sizing: border-box;     
    color: #ffffff; 
    -webkit-animation: at-banner-slide-in 0.5s ease forwards; animation: at-banner-slide-in 0.8s ease forwards;
    z-index: 999999!important; 
} 

/* Content */
.at-banner__content { 
    font-size:18px;
    font-weight:300;
    text-size-adjust: none;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    display: flex; 
    align-items: center; 
    flex-direction: row; 
    justify-content: center;
    width: 100%; 
    margin: 0 auto; 
    padding: 10px 40px; 
    box-sizing: border-box; 
    z-index: 999999!important; 
} 

.at-banner__text { 
    margin: 0 22px 0 0;
} 

div.at-banner__text p{
    margin: 0 22px 0 0;
    line-height: 1.2;
}

/* Bouton Notification */
.at-banner__button { 
    display: inline-block;
    color: var(--color-1)!important;
    background-color: #ffffff;
    text-decoration: none; 
    white-space: nowrap;
    padding: 8px 12px!important;
    border-radius: 4px;
    font-weight:700;
}

/* Icon bouton */
.at-banner__button:before {
    content: "\f879"; 
    font-family: "FontAwesome";
    margin-right: 8px;
}

/* Bouton hover */
.at-banner__button:hover {
    color:#ffffff;
    background-color: var(--color-2);
}

/* X Bouton close notification */
.at-banner__close { 
    position: absolute; 
    top: 50%; 
    right: 20px; 
    width: 20px; 
    height: 20px; 
    transform: translateY(-50%); 
    cursor: pointer;    
} 

.at-banner__close:before, .at-banner__close:after { 
    content: ""; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    display: block; 
    background: #ffffff; 
    width: 100%; 
    height: 3px; 
    border-radius: 2px; 
    transform-origin: center; 
} 

/* X Icon close animation */
.at-banner__close:before { transform: translate(-50%, -50%) rotate(-45deg); 
} 

.at-banner__close:after { transform: translate(-50%, -50%) rotate(45deg); } @-webkit-keyframes at-banner-slide-in { 0% { transform: translateY(-150%); } 100% { transform: translateY(0%); } } @keyframes at-banner-slide-in { 0% { transform: translateY(-150%); } 100% { transform: translateY(0%);
}}

/* Visibility Notification */
.hide-header {
    opacity: 0;
    visibility: hidden;
}

.show-header {
    opacity: 1;
    margin-top: 0px;
}

/* Animation Notification */
#global-header-section {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* ### RESPONSIVE BOTTOM NOTIFICATION ### */

/* Content*/
@media all and (max-width: 499px) {
.at-banner__content {
    display: block;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 6px;
    box-sizing: border-box;
    z-index:999999;
}
	
.at-banner__text {
    margin: 0!important;
}
	
/* Bouton Notification */
.at-banner__button { 
    border-radius: 4px;
    margin-left: -22px;
    margin-right: auto;
    margin-top: 8px;
    margin-bottom: 4px;
    padding: 6px 16px;
}}

/* ### TABLE MAKER ### */

/* Hidden titre */
@media (min-width: 980px) {
#abf_footer_section_tabs	
.hidden-titre {
    display: none;
}}

/* Footer title tabs */ 
#abf_footer_section_tabs .dvmd_table_maker_0_tb_footer .dvmd_tm_tcell.dvmd_tm_chead .dvmd_tm_cdata {
    font-weight: 700!important;
    text-transform: none;
}

/* Active container margin bottom */ 
#abf_footer_section_tabs .dvmd_tm_tblock.dvmd_tm_tblock.dvmd_tm_cblock.dvmd_tm_active {
    margin-bottom:-42px;
}

/* Footer icon accordion tabs */ 
#abf_footer_section_tabs .dvmd_table_maker_0_tb_footer .dvmd_tm_accordion .dvmd_tm_toggle:focus {
    box-shadow: 0 0 0 2px #01254c!important;
}

/* Table maker icon active */
.dvmd_table_maker_0_tb_footer .dvmd_tm_accordion .dvmd_tm_active .dvmd_tm_toggle i:after {
    content: "\4d"!important;
    transform: rotate(90deg)!important;
    transition:all .5s ease-out 0s!important;
}

/* Table maker icon inactive */
.dvmd_table_maker_0_tb_footer .dvmd_tm_accordion .dvmd_tm_toggle i:after {
    content: "\4c"!important;
    transform: rotate(180deg)!important;
    transition:all .5s ease-out 0s!important;	
}

/* Icon cursor */ 
#abf_footer_section_tabs .dvmd_table_maker_0_tb_footer .dvmd_tm_accordion .dvmd_tm_toggle:hover {
    cursor: pointer!important
}

/* ### FOOTER MENU ### */

/* Vertical menu */
.abf_vertical_menu .nav li li a, .abf_vertical_menu .nav li li a:hover {
    text-transform: none;
}

/* Display block */
.abf_vertical_menu .et_pb_menu_inner_container,
.abf_vertical_menu .et_pb_menu__wrap,
.abf_vertical_menu .et_pb_menu__menu,
.abf_vertical_menu.et_pb_menu .et_pb_menu__menu>nav,
.abf_vertical_menu.et_pb_menu .et_pb_menu__menu>nav>ul {
    display: block!important;
}

/* Remove hamburger menu */
.abf_vertical_menu .et_mobile_nav_menu {
    display: none!important;
}

/* Link */
.abf_vertical_menu a {
    background: transparent;
    padding: 0px 6px 6px 0px!important;
    font-size: 16px;
    color: #bdbdbd!important;
    border-bottom: 1px dashed #333333!important;
    width: 98%;
}

/* Icon link before */
#footer_menu .abf_vertical_menu a:before {
    content: "\24";
    font-family: ETmodules;
    font-weight: bold;
    padding-right: 4px;
    bottom: -2px;
    position: relative;
}

/* Lien actif */
.abf_vertical_menu.et_pb_menu_0_tb_footer.et_pb_menu .et-menu-nav li.current-menu-item a, .et_pb_menu_1_tb_footer.et_pb_menu .et-menu-nav li.current-menu-item a {
    color: var(--color-1)!important;
    padding-left: 0;
    font-size: 17px;
    font-weight: 900;
    pointer-events:none !important;
}

/* Lien hover */
.abf_vertical_menu .et-menu a:hover {
    color: var(--color-2)!important;
    font-size: 17px;
    font-weight: 800;
}

/* ### COPYRIGHT ### */

/* Link copyright */
#footer_copyright a {
    background: var(--color-2);
    color: var(--color-1);
    padding:0 8px;
    border-radius: 32px;
    font-size: 22px
}

/* Responsive link copyright */
@media (max-width: 640px) {  
#footer_copyright a {
    display: inline-block!important;
    margin-top: 4px;
}}

/* ### RATE MY POST ### */

/* Input reviews */
button.rmp-feedback-widget__btn.rmp-btn.rmp-btn--large.js-rmp-feedback-button,
.rmp-widgets-container.rmp-wp-plugin.rmp-main-container .rmp-feedback-widget__input {
    display: block;
    background: #ffffff !important;
    color: var(--color-2);
    margin-left: auto;
    margin-right: auto;
    min-width: 242px;
    max-width: 630px;
    max-height: 132px;
    margin-bottom: 0.4rem;
    overflow-y: visible!important;
}

/* Géolocalisation IP */
.rmp-widgets-container.rmp-wp-plugin.rmp-main-container .rmp-feedback-widget__text {
    margin: 0 0 0.4rem 0;
    color: var(--color-1);
    font-size:12px;
}

/* Responsive input reviews */
@media (max-width: 479px) {
button.rmp-feedback-widget__btn.rmp-btn.rmp-btn--large.js-rmp-feedback-button,	
.rmp-widgets-container.rmp-wp-plugin.rmp-main-container .rmp-feedback-widget__input {
    min-width:90%;
}}

