/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf');
}




/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: #57b846;
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

p {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}


/*---------------------------------------------*/
input {
  outline: none;
  border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus,
input:focus {
  border-color: transparent !important;
}


input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}





/*//////////////////////////////////////////////////////////////////
[ Contact 2 ]*/
.bg-contact3 {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.container-contact3 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: linear-gradient(180deg, #fefefe8c, #adefe5db);
  ;
}

.wrap-contact3 {
  width: 1280px;
  background: #80c64a;
  background: -webkit-linear-gradient(to bottom, #0BA33E 65%, #1a805f 100%);
  background: -o-linear-gradient(to bottom, #0BA33E 65%, #1a805f 100%);
  background: -moz-linear-gradient(to bottom, #0BA33E 65%, #1a805f 100%);
  background: linear-gradient(to bottom, #0BA33E 65%, #1a805f 100%);
  border-radius: 10px;
  overflow: hidden;
  padding: 72px 0 0;
  box-shadow: 0 0 10px #00000026;
}
.wrap-stats {
  width: 95vw;
  background: #80c64a;
  background: -webkit-linear-gradient(to bottom, #0BA33E 65%, #1a805f 100%);
  background: -o-linear-gradient(to bottom, #0BA33E 65%, #1a805f 100%);
  background: -moz-linear-gradient(to bottom, #0BA33E 65%, #1a805f 100%);
  background: linear-gradient(to bottom, #0BA33E 65%, #1a805f 100%);
  border-radius: 10px;
  overflow: hidden;
  padding: 72px 0 0;
  box-shadow: 0 0 10px #00000026;
}

.wrap-contact3>div {
  margin-right: 3em;
  margin-left: 3em;
}


/*------------------------------------------------------------------
[  ]*/

.contact3-form {
  width: 100%;
}

.contact3-form-title {
  display: block;
  font-family: Poppins-Bold;
  font-size: 39px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 1em;
  margin: 0 1em;
}



/*------------------------------------------------------------------
[  ]*/

.wrap-input3 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid rgba(255, 255, 255, 0.24);
  margin-bottom: 27px;
}

.input3 {
  display: block;
  width: 100%;
  background: transparent;
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  padding: 0 5px;
}

.focus-input3 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input3::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #fff;
}


/*---------------------------------------------*/
input.input3 {
  height: 45px;
}


textarea.input3 {
  min-height: 115px;
  padding-top: 13px;
  padding-bottom: 13px;
}


.input3:focus+.focus-input3::before {
  width: 100%;
}

.has-val.input3+.focus-input3::before {
  width: 100%;
}

/*------------------------------------------------------------------
[  ]*/
.container-contact3-form-btn {
  padding-top: 23px;
}

.contact3-form-btn {
  font-family: Poppins-Medium;
  font-size: 16px;
  color: #555555;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  min-width: 120px;
  height: 50px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;

  margin: auto;
  width: 100%;
  border-radius: 0px 0px 2px 2px !important;
}

.contact3-form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact3-form-btn:hover {
  color: #fff;
}

.contact3-form-btn:hover:before {
  opacity: 0;
  /* color: green; */
}

.container-menu,
.footer-contact3 {
  display: flex;
  justify-content: space-between;
}

.container-menu {
  margin: 2em 0 4em;
}

.container-menu div {
  width: 15%;
  background-color: white;
  padding: 1em;
  text-align: center;
  border-radius: 10px;
  display: grid;
  margin-left:10px;
}


.container-menu div:first-of-type {
  margin-left: 0;
}

.container-menu div:last-of-type {
  margin-right: 0;
}

.container-menu img {
  height: 3em;
  width: 100%;
  margin: 1em 0;
}

.footer-contact3 div {
  width: 33.3%;
  background-color: white;
  border-top: 1px solid rgb(44, 44, 44);
  padding: 1em 1.5em;
}

.shadow {
  box-shadow: 0 0 14px #0c8741;
}

.shadow:hover {
  box-shadow: 0 0 10px #b1cc9e;
}

nav {
  position: sticky;
  top: 0px;
  width: 100%;
  background-color: white;
  box-shadow: 0 1px 6px #0000002b;
}

nav ul {
  display: flex;
  justify-content: center;
}

nav ul li {
  padding: 1.3em;
  margin: 0 1em;
  min-width: 10%;
  text-align: center;
  font-size: 1.1em;
}

nav ul li:hover {
  background-color: #57b846;
  color: white !important;
}

.cursor-pointer:hover {
  cursor: pointer;
  color: #57b846;
  transition: all 0.2s;
}

.main-content {
  padding: 2em;
}

.footer-main {
  text-align: center;
  bottom: 0px;
  width: 100%;
  padding: 1.5em;
  background-color: white;
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-contact3 {
    padding: 72px 15px 65px 15px;
  }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


/*==================================================================
[ Restyle Radio ]*/
.wrap-contact3-form-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  /* padding-bottom: 37px;
  margin-left: 6rem; */
}

.contact3-form-radio {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-radio3 {
  display: none;
}

.label-radio3 {
  display: block;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-family: Poppins-Medium;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
}

.label-radio3::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.1);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.label-radio3::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 6px solid transparent;
  background: rgba(255, 255, 255, 0.5);
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;

}

.input-radio3:checked+.label-radio3::after {
  display: block;
}

input[type=date] {
  padding: 0.5em;
}

input[type=submit] {
  padding: 0.5em 1em;
  border-radius: 10px;
}

/*==================================================================
[ Input3 select ]*/

.input3-select {
  display: none;
}


/*//////////////////////////////////////////////////////////////////
[ Restyle Select2 ]*/

.select2-container {
  display: block;
  max-width: 100% !important;
  width: auto !important;
}

.select2-container .select2-selection--single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  height: 45px;
  outline: none;
  position: relative;
}

/* in select */
.select2-container .select2-selection--single .select2-selection__rendered {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  padding-left: 5px;
  background-color: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.select2-selection__arrow b {
  display: none;
}

.select2-selection__arrow::before {
  content: '';
  display: block;

  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 5px solid #e6e6e6;
  margin-bottom: 2px;
}

.select2-selection__arrow::after {
  content: '';
  display: block;

  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #e6e6e6;
}

/* dropdown option */
.select2-container--open .select2-dropdown {
  z-index: 1251;
  border: 1px solid #fff;
  border-radius: 0px;
  background-color: white;
}


.select2-container .select2-results__option[aria-selected] {
  padding-top: 10px;
  padding-bottom: 10px;
}

.select2-container .select2-results__option[aria-selected="true"] {
  background: #80c64a;
  background: -webkit-linear-gradient(45deg, #56ab2f, #a8e063);
  background: -o-linear-gradient(45deg, #56ab2f, #a8e063);
  background: -moz-linear-gradient(45deg, #56ab2f, #a8e063);
  background: linear-gradient(45deg, #56ab2f, #a8e063);
  color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
  background: #80c64a;
  background: -webkit-linear-gradient(45deg, #56ab2f, #a8e063);
  background: -o-linear-gradient(45deg, #56ab2f, #a8e063);
  background: -moz-linear-gradient(45deg, #56ab2f, #a8e063);
  background: linear-gradient(45deg, #56ab2f, #a8e063);
  color: white;
}

.select2-results__options {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #555555;
  line-height: 1.2;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: none;
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #555555;
  line-height: 1.2;
}

/* TABLE RESERVATION-GESTION */


.alert-payment {
  background-color: #FF7F7F !important;
  margin-bottom: 1.5em !important;
}

.alert-success {
  background-color: #00800030 !important;
  margin-bottom: 1.5em !important;
}

thead {
  background-color: #008000;
  color: white;
  padding: 2em;
}

thead th,
tbody td {
  padding: 0.5em 1em;
  font-weight: 500;
}

.resa-table thead th,
.resa-table tbody td {
  border: 1px solid black;
}

.resa-table tbody td {
  background-color: #F6F6F6;
}

.resa-comment {
  max-width: 748px;
  margin: 1.5em auto 1em;
  background-color: #80808012;
  padding: 1.5em;
  border-radius: 10px
}

.resa-comment p {
  color: black !important;
  font-size: 1.1em;
}

.total {
  text-align: right;

}

.total>td {
  background-color: #80808012;
  font-weight: bold;
}

.resa-prix {
  margin-bottom: 2em;
}

.card-text {
  padding: 0.5em 1em;
  background-color: #80808012;
  margin-bottom: 0.5em;
}

.paiement-btn {
  max-width: 15em;
  margin: 1em 0;
}

.paiement-btn:hover {
  color: #008000;
  background-color: white !important;
}

input[type="text"],
select,
input[type="password"] {
  padding: 0.5em 1em;
}

#montant {
  width: 195px;
}
/* FICHE CAISSE */
.sous-total td {
  font-weight: bold;
}

.sous-total>td {
  text-align: right;
  border: 1px solid;
}

.tg .totalST {
  font-size: 1.2em;
}

.sous-total td:first-of-type {
  padding-right: 1em;
}

.total-paiement {
  margin-bottom: 1em;
}

.total-caisse .card-text {
  background-color: #9DE0AD;
  color: black;
}

.total-caisse h3 {
  padding: 0.5em;
}

.wrap-form-caisse {
  width: 250px;
  padding: 0;
}

.contact3-head {
  width: 100%;
  padding: 1em;
  color: white;
}

/* CAISSE */
.paid {
  color: #0BA33E !important;
}

.paid i {
  width: 10px;
  display: block;
  margin: 0 auto 5px;
  color: #0BA33E;
}

/* ELEMENT NON VISIBLE A L'IMPRESSION */
@media print {
  .noprint {
     visibility: hidden;
  }
}