@import url('https://fonts.googleapis.com/css2?family=Varta:wght@300;400;700&display=swap');

.menu {
  position: fixed;
  top: 0px;
}

.admin-bar .menu {
  top: 32px; /* on prend en compte le décalage */
}

html, body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: 'Varta', sans-serif;
  background-color: #f4f4f4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.flexy_password__title {
  font-size: 28px;
  text-align: center;
}

.flexy_password-container {
  height: 100vh;
  height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flexy_password-image {
  width: 200px;
  margin-bottom: 2rem;
}

.flexy_password__form {
  background-color: #fff;
  padding: 1em;
  border-radius: 8px;
  width: max-content;
  margin: auto;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.flexy_password__form-container {
  margin: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 250px;
}

.flexy_password__form-text {
  margin-bottom: 1em;
}

.flexy_password__form-label {
  margin-bottom: 0;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.flexy_password__form-input {
  margin: 0 auto 1.5em;
  width: 100%;
  padding: 0.5em 1em;
}

.flexy_password__form-submit {
  padding: 0.5em 1em;
  box-shadow: none;
  background-color: #464b4b;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
}

.flexy_password__form-error {
  margin-bottom: 1em;
  color: #d30707;
}

.flexy_post_header {
  height: 499px;
  min-height: 500px;
}

.flexy_post_body_col li {
  padding-left: 1.5rem!important;
  margin-bottom: 0.5rem!important;
}

.header {
  background-color: #fff;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  display: flex;
}

.header.container {
  max-width: none;
}

.header img {
  display: block;
  max-height: 4rem;
  transition: all .3s;
  max-width: 16rem;
  margin-top: auto;
  height: auto;
}

.header__container {
  background-color: #fff;
  display: flex;
  height: 8rem;
  justify-content: space-between;
  padding-bottom: 2rem;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  transition: all .3s;
  width: 100%;
  max-width: 1920px;
  margin: auto;
}

.post {
  margin-top: 8rem;
  position: relative;
  z-index: 1;
}

.admin-bar .post {
  margin-top: calc(8rem - 32px);
}

.header.header--sticky .header__container {
  height: 5rem;
  padding-bottom: 0;
  padding-top: 0;
}

.header.header--sticky img {
  max-width: 12rem;
  margin-bottom: auto;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  width: 100%;
}

#chat-localization {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding-bottom: 3em;
}

.loader-container {
  display: flex;
  font-size: 30px;
  padding: 1em;
  position: absolute;
  top: 0;
  background: white;
  z-index: 9999999999;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
}

.loader-container.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
	border: .2em solid #0071CE;
	border-bottom-color: transparent;
	border-radius: 50%;
	animation: 1s loader linear infinite;
	position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
}

.iframe-container { 
  overflow:hidden; 
  padding-bottom:56.25%; 
  position:relative; 
  height:0;
}
  
.iframe-container iframe {
  left:0; 
  top:0; 
  height:100%;
  width:100%;
  position:absolute;
}

@media (max-width: 1339.98px) {
  .flexy_header_col_title {
    width: 75%!important;
  }

  .flexy_header_title .elementor-widget-container {
    padding-left: 0!important;
  }

  .flexy_post_header {
    min-height: 50vh;
  }

  .flexy_post_body {
    border-width: 1rem!important;
  }

  .flexy_post_body_text {
    max-width: 68rem;
    margin: auto;
  }

  .container {
    padding-left: 0;
    padding-right: 0;
  }

  .header .header__container {
    height: 5rem;
    padding-bottom: 0;
    padding-top: 0;
  }

  .header img {
    max-width: 12rem;
    margin-bottom: auto;
  }

  .post {
    margin-top: 5rem;
  }

  .admin-bar .post {
    margin-top: calc(5rem - 32px);
  }
}

@media (max-width: 1023.98px) {
  .flexy_header_col_title {
    width: 100%!important;
  }

  .flexy_header_col_title .elementor-widget-wrap.elementor-element-populated {
    padding: 0!important;
  }

  .flexy_header_title h1 {
    font-size: 34px!important;
  }

  .flexy_post_body_col > .elementor-widget-wrap.elementor-element-populated {
    padding: 1.5rem 1.5rem 0!important;
  }
}



@keyframes loader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}