body {
  font-style: normal;
  font-variant-ligatures: normal;
  font-variant-caps: normal;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-weight: normal;
  font-stretch: normal;
  font-family: KievitWebPro-Light, sans-serif;
}

/*logo and title*/

.logo {
  width: 100%;
  height: 50px;
  padding: 10px;
  color: #4B515D;
}

.logo ul {
  list-style: none;
  font-weight: 500;
}

.logo li {
  position: relative;
  display: inline-block;
}

.logo li:first-child {
  font-size: 26px;
  font-weight: bold;
  margin-right: 40px;
}

.logo li:last-child {
  font-size: 20px;
  font-weight: 400;
}

/*login form start*/

.form-login {
  margin: auto;
  top: 20px;
}

/*padding form */

.form-login form {
  padding: 30px;
}

.forget-quest {
  font-size: 13px;
  margin-left: 20px;
}

/*formatting radio button*/

#radioMan, #radio-Woman {
  position: relative;
  display: inline-block;
}

.form-radio-label {
  margin-right: 50px;
  font-family: KievitWebPro-Light, sans-serif;
}

/*formatting the checkbox*/

[type="checkbox"]:not(:checked), [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

/*we prepare the label*/

[type="checkbox"]:not(:checked)+label, [type="checkbox"]:checked+label {
  position: relative;
  /* allows to position the pseudo-elements */
  padding-left: 25px;
  /* does a little space for our upcoming box */
  cursor: pointer;
  /* show a suitable slider */
  font-size: 13px;
}

/*appearance of boxes*/

/* :before is used to create the check box*/

[type="checkbox"]:not(:checked)+label:before, [type="checkbox"]:checked+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  /* dim. box */
  border: 1px solid #aaa;
  background: #f8f8f8;
  border-radius: 3px;
  /* rounded corners */
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .3)/*slight internal shadow*/
}

/* General appearance of the checkmark */

[type="checkbox"]:not(:checked)+label:after, [type="checkbox"]:checked+label:after {
  content: '✔';
  position: absolute;
  top: 0;
  left: 4px;
  font-size: 14px;
  color: #09ad7e;
  transition: all .2s;
  /* an animation is planned */
}

/* Appearence if "not checked" */

[type="checkbox"]:not(:checked)+label:after {
  opacity: 0;
  /* invisible check */
  transform: scale(0);
  /* scaling to 0 */
}

/* Appearance if "checked" */

[type="checkbox"]:checked+label:after {
  opacity: 1;
  /* opaque tick */
  transform: scale(1);
  /* scaling to 1:1 */
}

/*remove the draws*/

/* Firefox */

input[type=number] {
  -moz-appearance: textfield;
}

/* Chrome */

input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Opéra*/

input::-o-inner-spin-button, input::-o-outer-spin-button {
  -o-appearance: none;
  margin: 0
}

.srch-form {
  position: absolute;
  margin-top: 50px;
  margin-right: -10px;
}

.form-social ul {
  list-style: none;
}

.form-social li {
  position: relative;
  font-size: 18px;
  cursor: pointer;
  display: inline-block;
  -webkit-column-count: 2;
  /* Chrome, Safari, Opera */
  -moz-column-count: 2;
  /* Firefox */
  column-count: 2;
  -webkit-column-gap: 30px;
  /* Chrome, Safari, Opera */
  -moz-column-gap: 30px;
  /* Firefox */
  column-gap: 30px;
  -webkit-column-rule: 4px double #ff00ff;
  /* Chrome, Safari, Opera */
  -moz-column-rule: 4px double #ff00ff;
  /* Firefox */
  column-rule: 4px double #ff00ff;
}

.form-social li:first-child {
  margin-left: 80px;
  margin-right: -20px;
}

/*centres d'interêt*/

.interet h1 {
  margin-top: 50px;
}

.interet .card {
  height: 250px;
}

ul {
  list-style: none;
}

ul li {
  position: relative;
  display: inline-block;
}

.name-card li .name {
  /*width: 40px;*/
  margin-left: -35px;
  /*margin-top: 30px;*/
  padding-right: 10px;
  border-right: 1px solid;
  border-right-color: #fff;
}

.name-card {
  margin-top: 120px;
}

/*emojii*/

.head {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
  margin-top: 50px;
  width: 100px;
  height: 100px;
  background-color: #FFEB97;
  border-radius: 50%;
  position: relative;
}

.face {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
  width: 100px;
  height: 100px;
  position: relative;
}

.face__happy {
  animation: happy-look 5s infinite;
}

.face__happy .eye-left {
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  top: 45px;
  left: 15px;
  position: absolute;
  animation: blink 5s infinite;
}

.face__happy .eye-right {
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  top: 45px;
  right: 15px;
  position: absolute;
  animation: blink 5s infinite;
}

.face__happy .mouth {
  width: 50px;
  height: 10px;
  border-style: solid;
  border-radius: 50%;
  border-width: 3px;
  border-color: transparent transparent #000 transparent;
  left: 28px;
  top: 25px;
  position: absolute;
  animation: happy-mouth 5s infinite;
}

@keyframes blink {
  0% {
    transform: scale(1, 1);
  }
  10% {
    transform: scale(1, 1);
  }
  12% {
    transform: scale(1, .1);
  }
  14% {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1, 1);
  }
  32% {
    transform: scale(1, .1);
  }
  34% {
    transform: scale(1, 1);
  }
  60% {
    transform: scale(1, 1);
  }
  62% {
    transform: scale(1, .1);
  }
  64% {
    transform: scale(1, 1);
  }
}

@keyframes happy-look {
  0% {
    transform: translate(0px, 0px);
  }
  10% {
    transform: translate(10px, 0px);
  }
  20% {
    transform: translate(10px, 0px);
  }
  30% {
    transform: translate(0px, 0px);
  }
  60% {
    transform: translate(0px, 0px);
  }
  70% {
    transform: translate(-10px, -15px);
  }
  80% {
    transform: translate(-10px, -15px);
  }
  90% {
    transform: translate(0px, 0px);
  }
}

@keyframes happy-mouth {
  0% {
    height: 50px;
  }
  10% {
    height: 50px;
  }
  20% {
    height: 50px;
  }
  30% {
    height: 50px;
  }
  60% {
    height: 50px;
  }
  70% {
    height: 40px;
  }
  80% {
    height: 40px;
  }
  90% {
    height: 50px;
  }
}

.btn-event {
  margin: auto;
  margin-left: 40%;
  margin-top: 20px;
}

.divider {
  display: table;
  font-size: 24px;
  text-align: center;
  width: 100%;
  /* divider width */
  margin: 20px auto;
  /* spacing above/below */
}

.divider span {
  display: table-cell;
  position: relative;
}

.divider span:first-child, .divider span:last-child {
  width: 50%;
  top: 13px;
  /* adjust vertical align */
  -moz-background-size: 100% 2px;
  /* line width */
  background-size: 100% 2px;
  /* line width */
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
}

.divider span:first-child {
  /* color changes in here */
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#000));
  background-image: -webkit-linear-gradient(180deg, transparent, #000);
  background-image: -moz-linear-gradient(180deg, transparent, #000);
  background-image: -o-linear-gradient(180deg, transparent, #000);
  background-image: linear-gradient(90deg, transparent, #000);
}

.divider span:nth-child(2) {
  color: #000;
  padding: 0px 5px;
  width: auto;
  white-space: nowrap;
}

.divider span:last-child {
  /* color changes in here */
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#000), to(transparent));
  background-image: -webkit-linear-gradient(180deg, #000, transparent);
  background-image: -moz-linear-gradient(180deg, #000, transparent);
  background-image: -o-linear-gradient(180deg, #000, transparent);
  background-image: linear-gradient(90deg, #000, transparent);
}

.or-divider {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 20%;
  margin: 0 1em;
}

.or-divider {
  content: '';
  height: .125em;
  background: black;
  flex: 1;
  margin: 0 .25em 0 0;
}

.srch, .or-divider {
  position: relative;
  display: inline-block;
}

ul .items {
  border-right: 2px solid #9a9a9a;
  margin-right: 20px;
  margin-left: 20px;
  padding-right: 20px;
  cursor: pointer;
}

ul .items-no {
  border: none;
  margin-right: 20px;
  padding-right: 20px;
  cursor: pointer;
}

.ul-item .item {
  margin: auto;
  margin-top: 20px;
  border-right: 2px solid #fff;
  margin-right: 20px;
  margin-left: 20px;
  padding-right: 20px;
  cursor: pointer;
}

.lower {
  width: 150px;
  /*background-image: url(images/voyage.jpg);*/
  padding: 30px;
  padding-left: 40px;
  background: rgba(255, 255, 255, .4);
  opacity: 0.8;
  color: rgba(0, 0, 0, 1);
  box-shadow: inset 0 0 0 1px black;
  border: 3px solid white;
}

.lower:hover {
  background: black;
  color: white;
  box-shadow: inset 0 0 0 1px white;
  border: 3px solid black;
}

.lower label {
  font-family: 'NotCourierSans';
  text-transform: uppercase;
  font-size: 120px;
  text-align: center;
}

.lower label:hover {
  cursor: pointer;
}

.badge1 {
  position: relative;
}

.badge1[data-badge]:after {
  content: attr(data-badge);
  position: absolute;
  top: 10px;
  right: 5px;
  /*margin-left: 98%;*/
  font-size: .7em;
  background: green;
  color: white;
  width: auto;
  height: 21px;
  padding: 3px;
  box-shadow: 1px solid #000;
  text-align: center;
  line-height: 12px;
  /*border-radius:50%;*/
  box-shadow: 0 0 1px #333;
}

.essaie {
  border-radius: 5px 5px 5px 5px;
  /* on fait un arrondi sur les angles */
  position: relative;
  float: right;
  margin-top: 50px;
  width: 50px;
  height: 20px;
}

/*.rose-badge{
border-radius: 5px 5px 5px 5px;
position:relative;
float: right;
margin-top: 80px;
margin-left: 80px;
 width:60px;
 height:20px;
}*/

.rotation {
  transform: rotate(25deg);
  -ms-transform: rotate(25deg);
  -moz-transform: rotate(25deg);
  -webkit-transform: rotate(25deg);
  -o-transform: rotate(25deg);
}