/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/*AJAX LOADER*/

.artyseo-loader-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
position: relative;
width: 128px;
height:128px;
margin: 0 auto;
}

.artyseo-loader {
display: inline-block;
position: relative;
width: 64px;
height:64px;
}
.artyseo-loader div {
position: absolute;
top: 27px;
width: 11px;
height: 11px;
border-radius: 50%;
background: var(--e-global-color-accent);
animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.artyseo-loader div:nth-child(1) {
left: 6px;
animation: loader1 0.6s infinite;
}
.artyseo-loader div:nth-child(2) {
left: 6px;
animation: loader2 0.6s infinite;
}
.artyseo-loader div:nth-child(3) {
left: 26px;
animation: loader2 0.6s infinite;
}
.artyseo-loader div:nth-child(4) {
left: 45px;
animation: loader3 0.6s infinite;
}
@keyframes loader1 {
0% {
  transform: scale(0);
}
100% {
  transform: scale(1);
}
}
@keyframes loader3 {
0% {
  transform: scale(1);
}
100% {
  transform: scale(0);
}
}
@keyframes loader2 {
0% {
  transform: translate(0, 0);
}
100% {
  transform: translate(19px, 0);
}
}

/*DIV SCROLLBAR*/
.artyseo-scrollbar{
  max-height: 500px;
  overflow: auto!important;
}
.artyseo-scrollbar::-webkit-scrollbar {
  width: .1em;
  height: .4em;
}

.artyseo-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--e-global-color-primary);
  outline: 1px solid var(--e-global-color-primary);
    
  width: .4em;
    
  border-radius: 1em;
    cursor: pointer;
}
.artyseo-scrollbar::-webkit-scrollbar-track {
  background-color: #ffffff;
  border-style: solid;
  border-radius:.2em;
  border-width: 1px;
  border-color: #eee;
}
/*
@media (max-width:768px){
    .artyseo-scrollbar::-webkit-scrollbar {
      width: .6em;
    }

    .artyseo-scrollbar::-webkit-scrollbar-thumb {
      width: 1em;
      border-radius: 1em;
    }
    .artyseo-scrollbar::-webkit-scrollbar-track {
      border-radius: 1em;
      border-width: 1px;
    }
}*/

/*
*
* CARTE DES MAGASINS
*
*/


#artyseo-map{
    height: 70vh;
    width: 100%;
}

#artyseo-map.artyseo-map {
  height: 50vh;
}


/*Map search widget*/
#agence-search-widget{
  background-color: var(--e-global-color-17d5431);
  width: 100%;
  display: flex;
  justify-content: center;
    align-items: start;
  flex-direction: column;
  min-height: 16vh;
  padding: 25px;
    border-radius: 10px;
    gap: 10px;
}
#agence-search-widget h2{
  font-weight:400;
  font-style:normal;
  font-size: 25px;
  text-align: left;
  width: 100%;
  margin: 0;
  color:var(--e-global-color-a719ac7);
}
#agence-search-widget .agence-search{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding:0;
  gap:25px;
  width: 100%;
}

#agence-search{
  width: 100%;
}

#agence-search .search-input{
  display: flex;
  border:2px solid var(--e-global-color-15f129c);
  background-color:var(--e-global-color-a719ac7);
  border-radius: 10px;

}
#agence-search .search-input > input{
  border:none;
  background: none;
    outline:none;
}

#agence-search-widget #geoloc {
  display: flex;
  border-radius: 0;
  width: fit-content;
  gap: 10px;
    padding: 5px 0;
  border: none;
    border-bottom:1px solid var(--e-global-color-a719ac7);
  background-color: transparent;
    color:var(--e-global-color-a719ac7);
  
}
#agence-search-widget #geoloc * {
  font-size: 13px;
  font-weight: 400;
  color:var(--e-global-color-a719ac7);
}
#agence-search-widget #geoloc:hover * {
  color:var(--e-global-color-accent);
}
#agence-search-widget #agence-search button{
    background-color: transparent;
    color:var(--e-global-color-17d5431);
    padding:0 10px;
    font-size:22px;
    opacity: .6;
    border: none;
}

#agence-search-widget #agence-search button:hover{
    opacity: 1;
}


/*Bouton ajouter agence en favoris*/

.btn-set-favorite{
  cursor: pointer;
  transition: all .2s ease-in-out;
  display: flex;
  width: fit-content;
  padding: 5px;
  position: relative;
  transform-origin: center;
  font-size:20px;
}

.btn-set-favorite:hover{
  transform: scale(1.5);
  
}

@media (max-width: 1024px){
  .btn-set-favorite{
    font-size: 24px;
  }
    
}
/*Liste des agences*/
#liste-agence{
  max-height: 64vh;
  overflow: hidden scroll;
  padding: 0 20px 0 0;
  margin-right: 10px;
}
.liste-agence-item{
  width: 100%;
  border:1px solid var( --e-global-color-15f129c );
  border-radius: 10px;
  display: flex;
  justify-content: start;
  margin-bottom: 20px;

}
.infos-agence {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 20px;
}

#liste-agence .liste-agence-item .infos-agence {
  margin: 0;
}

.infos-agence:last-child {
  border-bottom:none;
}

.infos-agence *{
  margin: 0;
  padding: 0;
  font-style: normal;
}
.infos-agence .recent, .infos-agence .soon{
  width: fit-content;
  display: flex;
  padding: 2px 10px;
  margin: 10px 0;
  font-size: 13px;
  border-radius: 4px;
}

.infos-agence .header{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.infos-agence .header h3{
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.infos-agence .header h3 a{
  color:var(--e-global-color-secondary);
}

.infos-agence .hours{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 16px;
  align-items: start;
}

.infos-agence .content a{
  color:var(--e-global-color-secondary);
}

.infos-agence .hours > strong{
  display: flex;
  gap:10px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: underline;
  margin-top:5px    
}
.infos-agence .hours > strong:hover{
  color: var(--e-global-color-accent);
}

.infos-agence .hours > strong+.voir-plus{
  display: none;
  width: 100%;
}

.infos-agence .hours > strong.open+.voir-plus{
  display: initial;
}

.infos-agence .hours > strong .icon{
  display: block;
  transform: rotate(0);
  transform-origin: center;
  transition: all .2s ease-in-out;
}
.infos-agence .hours > strong.open .icon{
  transform: rotate(180deg);
}

.infos-agence .hours a.button{
  border:1px solid var(--e-global-color-secondary);
  border-radius: 50px;
  padding: 5px 15px;
}

.infos-agence .hours a.button:hover{
  border:1px solid var(--e-global-color-accent);
}
.infos-agence .hours > .voir-plus{
order: 3;
}
#liste-agence .search-info{
  background-color: var(--e-global-color-5b5c476);
  border-radius:10px;
  padding: 5px 10px;
  max-width: 520px;
  margin: 10px auto 0 10%;
}
@media (max-width:1024px){
  #liste-agence .liste-agence-item .infos-agence {
    margin: 0 auto;
  }
}
@media (max-width:768px){
  .infos-agence .header h3 {
    font-size: 15px;
  }
  .infos-agence address, .infos-agence .hours > strong, .infos-agence .hours > strong+.voir-plus, .infos-agence .tel{
    font-size: 13px;
  }
}


/*Infowindow*/

.infos-agence .header .pin-icon{
  position: absolute;
  top:0;
  left:-55px;
  width: 45px;
  height: auto;
}

.gm-style div[role="dialog"]{
  display: flex;
  min-width: 140px!important;
  min-height: 100px!important;
  width: fit-content;
  border:none;
  border-radius: 15px;
  box-shadow:none;
  -webkit-box-shadow:none;
  transition: all .5s ease-in-out;
}
.gm-style div[role="dialog"] + .gm-style-iw-tc{
  width: 40px;
  height: 14px;
  top:-1px;
  filter:drop-shadow(0px 2px 0 rgba(0,0,0,0));
}
.gm-style div[role="dialog"] + .gm-style-iw-tc::after{
  width: 40px;
  height: 14px;
}
.gm-style div[role="dialog"] .infos-agence{
  padding:0 30px 20px 60px;
  font-size: 14px;
  font-family: "Poppins", Sans-serif;
  color:var(--e-global-color-secondary);
}
.gm-style div[role="dialog"] .infos-agence .header h3{
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.gm-style div[role="dialog"] .infos-agence .hours{
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;  
  margin-top: 0;
}

.gm-style div[role="dialog"] .infos-agence .hours a{
    color: var(--e-global-color-secondary);
    font-size: 12px;
    font-weight: 700;
    gap: 10px;
    position: relative;
    border: none;
    padding: 0;
}
.gm-style div[role="dialog"] .infos-agence .hours a.button{
   display: none;
}
.gm-style div[role="dialog"] .infos-agence .hours a:after{
   content:"";
    display: block;
    height: 1px;
    width:100%;
    position: absolute;
    bottom: -2px;
    background-color: var(--e-global-color-primary);
}

.gm-style div[role="dialog"] .infos-agence .hours a i{
  order:-1;
  font-size: 22px;
}
.gm-style div[role="dialog"] .infos-agence .hours a:hover:after{
    background-color: var(--e-global-color-accent);
}
.gm-style div[role="dialog"] .infos-agence .hours a:hover{
    color: var(--e-global-color-accent);
}


.gm-style div[role="dialog"] button[aria-label="Fermer"].gm-ui-hover-effect{
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  opacity: 1;
  top:3px!important;
  right: 3px!important;
}

.gm-style div[role="dialog"] button[aria-label="Fermer"] > span{
  display: block;
  margin:0!important;
  width: 20px!important;
  height: 20px!important;
}
@media (max-width:768px){
  .gm-style div[role="dialog"]{
    min-width: 300px!important;
  }
  .gm-style div[role="dialog"] .infos-agence{
    min-width: initial;
    padding: 0 0 0 30px;
  }

  .gm-style div[role="dialog"] .infos-agence .hours {
    justify-content: center;
    padding-right: 30px;
    gap: 10px;
  }
}


/* PAGING ACCORDEON*/
.pagination-accordeon{
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 3px;
}

.pagination-accordeon a, .pagination-accordeon strong, .pagination-accordeon span{
  padding: 5px 7px;
}
.pagination-accordeon strong{
  cursor: default;
}
.pagination-accordeon span{
  opacity: .5;
  cursor: default;
}
@media(max-width:768px){
  .pagination-accordeon a.prev-next span{
    display: none;
  }
  
  .pagination-accordeon a.prev-next.prev:before{
    content: "<";
  }
  .pagination-accordeon a.prev-next.next:before{
    content: ">";
  }
}

/*horizontal scrollbar*/
.artyseo-horizontal-scrollbar{
  overflow: hidden !important;
  padding: 0;
}
.artyseo-horizontal-scrollbar .mb-track-x{
  height: 2px;
  background-color: var(--e-global-color-15f129c);
}
.artyseo-horizontal-scrollbar .mb-track-x .mb-bar{
  opacity: 0;
  height: 2px;
  top:-1px;
  background-color: var(--e-global-color-primary);
  cursor:grab;
  transition: opacity .2s ease-in-out, height .2s ease-in-out, top .2s ease-in-out;
}
.artyseo-horizontal-scrollbar:hover .mb-track-x .mb-bar{
  opacity: 1;
  height: 10px;
  top:-5px;
}
.artyseo-horizontal-scrollbar .jet-checkboxes-list__row{
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}


.artyseo-horizontal-scrollbar .jet-checkboxes-list__row{
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}


/*loader jetfilters*/
@-webkit-keyframes rotatingloader {
  from{
      -webkit-transform: rotate(0deg);
  }
  to{
      
      -webkit-transform: rotate(360deg);
  }
}

.jet-filters-loading{
  position:relative;
}

.jet-filters-loading:after{
  content:"";
  display: block;
  position: absolute;
  top:calc(50% - 25px);
  left:calc(50% - 25px);
  width:50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 0 50px rgba(0,0,0,.2);
  background-image: url(https://artyseo.local/wp-content/plugins/artyseo-extra/public/icones/loading_artyseo.png);
  background-size: contain;
  -webkit-animation: rotatingloader 1s linear infinite;
  z-index: 10;
}

/*Carte agences/réalisations*/
#artyseo-map div[role="dialog"]{
    font-family: "Poppins", sans-serif;
}
#artyseo-map div[role="dialog"] p{
    color:#000;
    margin-bottom:5px;
    text-align: center;
    font-size: 16px;
}
#artyseo-map div[role="dialog"] p a{
    width: 100%;
    display: flex;
    font-weight: 700;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    margin-bottom:5px;
}

#artyseo-map div[role="dialog"] .infowindow-realisation-image{
    width: 100%;
    height: 180px;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    margin-bottom: 10px;
}
#artyseo-map div[role="dialog"] p.infowindow-realisation-title{
    font-weight: 700;
    font-size: 24px;
    max-width: 350px;
    text-align: left;
}
/*profil client*/
.form-profil input[type="text"]{
    margin-bottom:10px;
}
.form-profil{
  width: 100%;
}
.elementor-field-type-profil {
  position: relative;
}

body .elementor-form .form-profil .elementor-field-type-profil input {
  padding: 18px 20px 18px 20px;
}