input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #717b7d;
  -webkit-box-shadow: 0 0 0px 1000px #193135 inset;
  transition: background-color 5000s ease-in-out 0s; }

html {
  height: 100%;
  overflow: hidden; }

* {
  box-sizing: border-box; }

body {
  padding: 0;
  margin: 0;
  background: #193134 url(../images/bg-xs.jpg) no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  display: flex;
  min-height: 100%;
  height: 100%;
  overflow: auto; }

#logo {
  width: 60%;
  max-width: 347px;
  min-width: 200px; }
  #logo img {
    width: 100%;
    height: auto; }

.form {
  flex: 1 1 100%;
  display: flex;
  padding: 3rem 0;
  flex-direction: column; }

form {
  width: 90%;
  margin: auto; }
  form > *:not(:last-child) {
    margin-bottom: 1.8rem; }
  form .input-label {
    color: #929899;
    font-family: Arial, sans-serif;
    font-weight: bold; }
  form main {
    display: flex;
    flex-wrap: wrap;
    gap: 25px; }
    form main .field label {
      color: #929899;
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 1rem; }
    form main .field input {
      font-family: Inter, Arial, sans-serif;
      color: #717b7d;
      height: 40px;
      width: 100%;
      background: transparent;
      border: 0;
      border-bottom: 1px solid #768386;
      font-size: 1rem;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -ms-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      form main .field input:focus {
        outline: 0;
        border-bottom-color: #d21242; }
  form #field_civ, form #field_nom, form #field_prenom, form #field_telephone, form #field_email, form #field_repas {
    margin-top: 8px;
    flex: 1 0 100%; }
  form .field label {
    display: block; }
  form .input_select {
    font-family: Inter, Arial, sans-serif;
    color: #717b7d;
    height: 29px;
    width: 100%;
    margin-top: 11px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #768386;
    outline: none;
    transition: border 0.3s, background-color 9999s ease-in-out 0s;
    font-size: 1rem;
    cursor: pointer;
    position: relative; }
    form .input_select_focus {
      border-bottom: 1px solid #d21242; }
    form .input_select .option-container {
      margin: 0;
      padding: 0;
      background-color: #354a4e;
      display: none;
      position: absolute;
      top: 27px;
      left: 0;
      width: 100%;
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
      overflow: hidden;
      box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5); }
      form .input_select .option-container .option {
        background-color: transparent;
        color: #cddbde;
        padding: 0.4rem 0.5rem;
        cursor: pointer;
        list-style: none;
        font-size: 0.9rem;
        transition: 0.3s; }
        form .input_select .option-container .option:hover {
          color: #fff;
          background: rgba(255, 255, 255, 0.25); }
    form .input_select:after {
      content: '';
      position: absolute;
      width: 7px;
      height: 7px;
      border: 3px solid #cb1d46;
      border-left-color: transparent;
      border-top-color: transparent;
      transform: rotate(45deg) translateY(-50%);
      right: 0.4rem;
      top: 10%;
      transition: 0.3s; }
    form .input_select.active {
      border-bottom: 1px solid #d21242; }
      form .input_select.active .option-container {
        display: block; }
        form .input_select.active .option-container:after {
          transform: rotate(-45deg) translateY(-50%);
          top: 26%; }
  form footer .btn {
    margin-bottom: 1rem; }

.image-invit {
  flex: 1 0 20rem;
  width: 100%;
  height: 10rem;
  order: -1;
  background: url(../images/inivitation.png) no-repeat center center;
  -webkit-background-size: contain;
  background-size: contain;
  margin-bottom: 4rem;
  text-align: center; }
  .image-invit img {
    height: 100%;
    width: auto; }

h2 {
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.33;
  margin: 0; }

h3 {
  font-family: "EB Garamond", "Times New Roman", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.33;
  margin: 0;
  margin-bottom: 1.8rem; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  outline: 0;
  border-radius: 1rem;
  min-height: 3.312rem;
  padding-left: 1.687rem;
  padding-right: 1.687rem;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  background: #aaaaaa;
  color: #878787; }
  .btn.btn-disabled {
    cursor: default; }
  .btn.btn-primary:not(.btn-disabled) {
    background: #d21242;
    color: #ffffff; }
    .btn.btn-primary:not(.btn-disabled):hover {
      background: #af478b; }
  .btn.btn-arrow {
    padding-right: 3rem; }
    .btn.btn-arrow:after {
      content: "";
      position: relative;
      left: 1rem;
      border-bottom: 3px solid #fff;
      border-right: 3px solid #fff;
      width: 0.75rem;
      height: 0.75rem;
      transform: rotate(-45deg);
      transition: 0.3s; }
    .btn.btn-arrow:hover:after {
      transform: translate(8px) rotate(-45deg); }

#info {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.875rem 1.5rem;
  cursor: pointer; }
  #info #chef {
    width: 4.9rem;
    height: 4.9rem;
    flex: 0 0 4.9rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 3px solid #fff;
    background: url(../images/romuald_fassenet.png) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover; }
  #info .texte {
    font-family: 'Inter', Arial, sans-serif;
    color: #c4d6d8;
    font-size: 0.86rem;
    line-height: 1.5; }
    #info .texte div {
      letter-spacing: -0.02rem; }
    #info .texte h4 {
      color: #fff;
      margin: 0;
      font-size: 0.945rem;
      line-height: 1.5; }
  #info .arrow {
    height: 22px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  #info:hover .arrow {
    transform: translateX(8px); }

#compteur {
  background: rgba(0, 0, 0, 0.32);
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.66rem 1.25rem;
  margin: auto;
  font-family: Arial, sans-serif;
  font-weight: bold; }
  #compteur .nb {
    font-size: 2.93rem;
    line-height: 1.3;
    margin-top: -0.5rem; }
  #compteur .texte {
    font-size: 0.71rem;
    text-align: center; }

#BoxOverlay {
  background-color: #000 !important; }

#ModalAlert-Box {
  width: auto !important; }
#ModalAlert-BoxContenedor {
  background: #fff;
  color: #000000;
  padding: 2rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem; }
  #ModalAlert-BoxContenedor .line {
    margin-left: 5rem; }
    #ModalAlert-BoxContenedor .line:not(:first-child) {
      margin-top: 0.6rem; }
  #ModalAlert-BoxContenedor:after {
    position: absolute;
    top: 2rem;
    left: 2rem; }
  #ModalAlert-BoxContenedor.BoxInfo:after {
    content: url(../images/modalalert/info.png); }
  #ModalAlert-BoxContenedor.BoxAlert:after {
    content: url(../images/modalalert/warning.png); }
#ModalAlert-Buttons {
  margin-top: 2rem;
  text-align: center; }
  #ModalAlert-Buttons #BoxAlertBtnOk {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    outline: 0;
    border-radius: 1rem;
    min-height: 3.312rem;
    padding-left: 1.687rem;
    padding-right: 1.687rem;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    background: #aaaaaa;
    color: #878787; }
    #ModalAlert-Buttons #BoxAlertBtnOk.btn-disabled {
      cursor: default; }
    #ModalAlert-Buttons #BoxAlertBtnOk:not(.btn-disabled) {
      background: #d21242;
      color: #ffffff; }
      #ModalAlert-Buttons #BoxAlertBtnOk:not(.btn-disabled):hover {
        background: #af478b; }

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(13, 8, 18, 0.58);
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  pointer-events: auto;
  padding: 1rem 0;
  display: flex;
  overflow: auto; }
  .popup-overlay.hide {
    opacity: 0;
    pointer-events: none; }
    .popup-overlay.hide .popup {
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0); }

.popup {
  width: 95%;
  overflow: auto;
  border-radius: 1rem;
  padding: 2.8125rem;
  background: #fff;
  color: #252222;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin: auto; }
  .popup .content {
    position: relative; }
  .popup .close_popup {
    position: absolute;
    right: -1rem;
    top: -1rem;
    width: 20px;
    height: 20px;
    transform: rotate(0deg);
    transition: 0.3s;
    cursor: pointer; }
    .popup .close_popup::before, .popup .close_popup::after {
      content: "";
      display: block;
      position: absolute;
      width: 3px;
      height: 100%;
      background: #000;
      transform-origin: 50% 50%;
      top: 50%;
      left: 50%;
      transition: 0.3s; }
    .popup .close_popup::before {
      transform: translate(-50%, -50%) rotate(-45deg); }
    .popup .close_popup::after {
      transform: translate(-50%, -50%) rotate(45deg); }
    .popup .close_popup:hover {
      transform: rotate(180deg); }
      .popup .close_popup:hover::before, .popup .close_popup:hover::after {
        background: #d21242; }

#erreur_inscription .popup,
#succes_inscription .popup,
#menu .popup {
  display: flex;
  background: #fff url(../images/bg-deco.png) no-repeat right bottom;
  -webkit-background-size: cover;
  background-size: cover;
  max-width: 24rem; }
#erreur_inscription .content,
#succes_inscription .content,
#menu .content {
  text-align: center;
  width: 100%; }
#erreur_inscription h2,
#succes_inscription h2,
#menu h2 {
  font-family: "Edwardian Script ITC", "Times New Roman", serif;
  font-size: 4.59rem;
  color: #83703f;
  font-weight: normal;
  margin: 0;
  line-height: 0.8;
  letter-spacing: -0.04em; }
#erreur_inscription h3,
#succes_inscription h3,
#menu h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.76em;
  text-transform: uppercase;
  color: #ae975a;
  margin-bottom: 1.875rem; }
#erreur_inscription hr,
#succes_inscription hr,
#menu hr {
  width: 40px;
  margin-top: 1.15rem;
  margin-bottom: 1.15rem;
  height: 12px;
  background: url(../images/star.png);
  -webkit-background-size: contain;
  background-size: contain;
  border: 0; }
#erreur_inscription .plat,
#succes_inscription .plat,
#menu .plat {
  font-family: "Noto Serif Gujarati", Arial, sans-serif;
  font-size: 1.28rem;
  line-height: 1.33;
  max-width: 22.5rem;
  width: 90%;
  margin: auto;
  letter-spacing: -0.07em; }
#erreur_inscription .prix,
#succes_inscription .prix,
#menu .prix {
  font-family: "Noto Serif Gujarati", Arial, sans-serif;
  font-weight: bold;
  color: #83703f;
  font-size: 4.57rem; }

#erreur_inscription .popup {
  max-width: 30rem; }
#erreur_inscription h2 {
  margin-left: -2rem; }

#facebook {
  transition: 0.3s; }
  #facebook path {
    transition: 0.3s;
    fill: #ffffff; }
  #facebook:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); }
    #facebook:hover path {
      fill: #af478b; }

@media screen and (max-width: 680px) {
  #chef {
    display: none; }

  #complement {
    flex-wrap: nowrap; } }
@media screen and (min-width: 680px) {
  html {
    font-size: 13px; }

  form #field_civ {
    flex: 0 0 120px; }
  form #field_nom, form #field_prenom {
    flex: 1 1 calc(50% - 85px); }
  form #field_telephone, form #field_email {
    flex: 1 1 calc(50% - 65px); }
  form #field_repas {
    flex: 0 0 80px; }

  main {
    justify-content: space-between; }
    #complement {
      align-items: stretch; }
    main .field label {
      font-size: 0.85rem; }

  #complement {
    justify-content: flex-start; }

  #compteur {
    margin: 0; } }
@media screen and (min-width: 780px) {
  .popup {
    width: 95%;
    border-radius: 1rem;
    color: #252222;
    padding: 2.8125rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; }

  #menu .popup {
    background: url(../images/bg-deco.png) no-repeat right bottom, url(../images/bg-menu.jpg) no-repeat right center;
    -webkit-background-size: cover;
    background-size: cover;
    max-width: 60rem; }
  #menu .content {
    width: auto;
    margin-left: auto;
    margin-right: 0;
    padding-left: 2.8125rem;
    padding-right: 2.8125rem; }
  #menu h2 {
    margin-left: -2rem;
    font-size: 8.60rem; }
  #menu h3 {
    font-size: 1.12rem; }
  #menu .plat {
    font-size: 1.58rem; } }
@media screen and (min-width: 860px) {
  body {
    background: #193134 url(../images/bg.jpg) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
    justify-content: center;
    position: relative; }

  .form {
    gap: 3.875rem;
    margin: auto;
    flex: 0 1 95%;
    max-width: 1380px;
    display: flex;
    flex-direction: row; }

  form {
    width: auto;
    flex: 1 1 50%;
    max-width: 40rem;
    margin: auto; }

  .image-invit {
    order: 1;
    flex: 1 1 50%;
    height: auto;
    margin-bottom: 0;
    background: none; }
    .image-invit img {
      width: 100%;
      height: auto; }
    .image-invit:after {
      content: "";
      position: absolute;
      background: red;
      width: 50%; }

  h2 {
    font-size: 2rem; }

  h3 {
    font-size: 2.15rem; } }
@media screen and (min-width: 1200px) {
  html {
    font-size: 14px; } }
@media screen and (min-width: 1400px) {
  html {
    font-size: 15px; } }
@media screen and (min-width: 1600px) {
  html {
    font-size: 16px; } }
@media screen and (min-height: 1060px) {
  form > *:not(:last-child) {
    margin-bottom: 2.48rem; } }

/*# sourceMappingURL=style.css.map */
