.event-title h1 {
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 800px;
  /* font-size: calc(var(--f-4) * 1.2); */
  margin: 0 auto;
}
.event-info-section {
  /* margin-top: -px; */
}
.fa-spinner{
	color: var(--c-primary);
}
.animation{
	margin-top: 1em;
}
.waiting{
	width: 100%;
	text-align: center;
	height: auto;
}
.event-infos {
  padding: 2em;
  transform: translateY(-20px);
  background-color: #fff;
  display: grid;

  /* align-items: center; */
  gap: 2em;
  border-radius: calc(var(--radius) * 4);
  place-items: center;
}
.event-infos .desc-meta {
  width: 100%;
}
.event-infos p {
  position: relative;
  text-align: center;
  font-size: calc(var(--f-0));
  height: 152px;
  padding: 0 1em 0 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--c-primary) #eee;
}
/* firefix */
.event-infos p::-webkit-scrollbar {
  width: 5px;
}
.event-infos p::-webkit-scrollbar-track {
  background: #eeeeee;
}
.event-infos p::-webkit-scrollbar-thumb {
  /* color: tomato; */
  border-radius: 6px;
  border: 3px solid transparent;
}

/* webkit browsers */
.event-infos p::-webkit-scrollbar,
.event-infos p::-webkit-scrollbar-thumb {
  height: 26px;
  border-radius: 13px;
  background-clip: padding-box;
  border: 10px solid var(--c-primary);
}

.event-infos p::-webkit-scrollbar-thumb {
  /* color: tomato; */
  box-shadow: inset 0 0 0 10px;
}
.event-pict {
  /* margin: 10px; */
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
  border-radius: calc(var(--radius) * 4);
  /* justify-self: flex-end; */
  display: block;
  object-fit: cover;
  position: relative;
  border: 2px solid var(--c-primary);
}
/* .event-pict::before {
  position: absolute;
  content: '';
  z-index: 8;
  background-color: blue;
  width: 100px;
  height: 100px;
} */
.event-infos h5 {
  font-weight: 500;
  color: #859ca5;
  text-align: center;
  margin: 1.2em 0;
}
.timer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}
.timer li {
  width: 60px;
  padding: 4px;
  border-radius: calc(var(--radius) * 2);
  text-align: center;
  color: var(--c-primary);
  background-color: #e6f3f8;
}
.timer li span {
  font-size: calc(var(--f-2));
  margin-bottom: 7px;
  font-family: var(--font-museo);
}
.timer li h4 {
  font-weight: 500;
}
ul.socials-hero {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
}
ul.socials-hero li {
  /* background-color: hsl(201, 100%, 55%); */
  position: relative;
}
ul.socials-hero li:hover::after {
  transform: scale(1.5);
}
ul.socials-hero li::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 7px;
  height: 7px;
  background-color: var(--c-primary);
  border-radius: 50%;
}
/* ul.socials-hero li:nth-of-type(1)::after {
  background-color: hsl(201, 100%, 55%);
}
ul.socials-hero li:nth-of-type(2)::after {
  background-color: hsl(115, 82%, 42%);
}
ul.socials-hero li:nth-of-type(3)::after {
  background-color: var(--c-primary);
}
ul.socials-hero li:nth-of-type(4)::after {
  background-color: var(--c-primary);
}
ul.socials-hero li:nth-of-type(5)::after {
  background-color: var(--c-primary);
} */
ul.socials-hero li a img {
  width: 30px;
  height: 30px;
}
.nominees {
  padding-bottom: 2em;
}
.nominees ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(249px, min-content));
  justify-content: center;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  gap: 1em;
}
.nominees ul li img {
  /* border-radius: calc(var(--radius) * 2); */
  border-radius: 10% 10% 0% 0%;
  margin-bottom: -50px;
  width: 100%;
  aspect-ratio: 1/1;

  object-fit: cover;
  object-position: top center;

}
.nomi-pic{
	position: relative;
	overflow: hidden;
}
.hover-nomi{
	border-radius: 10%;
	margin-bottom: -22px;
	width: 100%;
	position: absolute;
	background-color: transparent;
	inset:0;
}
.hover-key{
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: fit-content;
   /* width: 100%; */
   /* height: 100%; */
   opacity: 0;
   transition: .5s;
      background-color: var(--c-primary-light);
      color: var(--c-primary-text);
   padding: 10px;
   /* border-top-left-radius: 1.5em; */
}
.hover-nomi:hover .hover-key{
	opacity: 1;
}
.hover-category{
  /* padding: 0 1em; */
   width: 100%;
   /* height: 50%; */
   text-align: center;
   align-items: flex-end;
   font-size: 14px;
   font-weight: 400;
   color: var(--c-primary-text);
   margin-top: 11em;
   text-shadow: black 1px 1px;
}

/* .c_image_container:hover::after{
	background-color: #3977d38a;
} */
.nominees ul li {
  position: relative;
  /* padding: 10px; */
}
.nominees ul li::before {
  position: absolute;
  content: '';
  width: 100%;
  bottom: 0;
  /* border-radius: calc(var(--radius) * 2); */
  border-radius: 10%;
  height: calc(100% - 50px);
  background-color: #fff;
  z-index: -1;
}

.nomi-vote {
  position: relative;
  left: 50%;
  background-color: var(--c-primary);
  color: #fff;
	z-index: 888;
  transform: translateX(-50%);
  /* visibility: hidden; */
}
.nomi-name {
  margin: 10px 0;
  font-size: var(--f-1);
  text-align: center;
}
.nomi-btn {
  font-family: inherit;
  border: none;
  border-radius: 200px;
  /* border-radius: calc(var(--radius) * 2); */
  width: 100px;
  height: 30px;
  cursor: pointer;
  margin-bottom: 0.3em;
}
.nomi-vote:hover {
}
.nomi-btn:hover {
}
.nominee-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 10px 10px 10px;
}
.nomi-numb-votes {
  text-align: center;
  margin: 0 10px 10px 10px;
}

.config-nominee {
  padding: 2em 0;
}
.config-nominee .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.config-nominee h1 {
  font-size: calc(var(--f-4));
  max-width: 650px;
  color: var(--c-primary);
  text-align: center;
}
.config-nominee h3 {
  max-width: 800px;
  font-weight: 600;
  color: #333;
  margin: 1em 0;
  text-align: center;
}
.config-nominee ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: hsl(201, 33%, 56%);
  opacity: 1; /* Firefox */
}

.config-nominee :-ms-input-placeholder {
  color: hsl(201, 33%, 56%);
  /* Internet Explorer 10-11 */
}

.config-nominee form {
  display: grid;
  gap: 1.3em;
  grid-template-columns: 1fr;
}
.config-nominee input, .select2-selection--single {
  font-family: var(--font-museo);
  outline: none;
  width: 100%;
  font-size: var(--f-0);
  padding: 0.5em 1em;
  border: 1px solid hsl(201, 60%, 78%);
  border-radius: calc(var(--radius) * 2);
}
.config-nominee input:focus {
  border: 1px solid hsl(201, 97%, 60%);
}
.config-nominee .categorie-nominee-input{
	/* font-family: var(--font-museo);
    outline: none;
	width: 100%;
    height: 100%;
    font-size: var(--f-0);
    padding: 0.5em 1em;
    border: 1px solid hsl(201, 60%, 78%);
    border-radius: calc(var(--radius) * 2); */
}
.config-nominee .refresh__results{
	font-family: var(--font-museo);
    outline: none;
    /* width: 50%; */
    font-size: var(--f-0);
    padding: 0.5em 1em;
    border: 1px solid hsl(201, 60%, 78%);
    border-radius: calc(var(--radius) * 2);
}
.pagination-config .pagination {
  display: flex;
  justify-content: center;
  gap: 0.4em;
}
.paginate_button {
  cursor: pointer;
  width: 30px;
  height: 30px;
  /* background-color: var(--c-primary); */
  background-color: transparent;
  /* color: #fff; */
  color: var(--c-primary);
  font-family: var(--font-museo);
  /* border: none; */
  border: 1px solid var(--c-primary);
  font-size: var(--f-0);
  border-radius: calc(var(--radius) * 2);
  text-align: center;
}
.paginate_button:hover {
  color: #fff;
  background-color: var(--c-primary);
}

ul.pagination li.paginate_button.disabled {
	pointer-events: none;
	cursor: not-allowed;
	background-color: #eee;
	color: #bbb;
	border-color: #bbb;
}

ul.pagination li.paginate_button.page-item.active {
	background-color:  var(--c-primary);
	color: #fff;
}
.meta-infos {
  background-image: repeating-linear-gradient(
      90deg,
      rgba(52, 187, 95, 0.12) 0px,
      rgba(52, 187, 95, 0.12) 1px,
      transparent 1px,
      transparent 13px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(52, 187, 95, 0.12) 0px,
      rgba(52, 187, 95, 0.12) 1px,
      transparent 1px,
      transparent 13px
    ),
    linear-gradient(90deg, rgb(45, 107, 241), rgb(28, 58, 170));
  padding: 4em 0;
  border-radius: 100px 100px 0 0;
  text-align: center;
  color: #fff;
  margin-top: 2em;
}
.meta-infos .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
.meta-infos p {
  max-width: 800px;
}
.duree-stats {
  display: flex;
  gap: 3em;
  flex-direction: column;
  align-items: center;
}
.stats {
  display: flex;
  gap: 1em;
  justify-content: center;
}
.circleStats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 2em; */
  width: 150px;
  height: 150px;
  border-radius: calc(var(--radius) * 4);
  border: 2px dashed #fff;
}
.meta-infos ul.socials-hero {
  mix-blend-mode: color-dodge;
}
.circleStats b {
  font-size: calc(var(--f-2) * 2);
}
.duree h2 {
  font-size: var(--f-2);
  font-weight: 500;
  font-family: var(--font-museo);
}
.meta-infos h1 {
  font-size: calc(var(--f-4));
}
.meta-infos span h3 {
  font-weight: 500;
}
.meta-infos span h2 {
  font-family: var(--font-museo);
}
.meta-infos h4 {
  font-size: calc(var(--f-1) * 0.8);
  position: relative;
  top: 10px;
  font-weight: 400;
  font-family: var(--font-museo);
}
/* ***************************************** */
/* MODAL ESPACE NOMINEE */
/* ***************************************** */
.modal-nominee-space form {
  display: flex;
  flex-direction: column;
}
.modal-nominee-space form label {
  font-weight: 500;
  margin-bottom: 7px;
}
.modal-nominee-space form input {
  margin-bottom: 0.9em;
  padding: 0.7em;
  border-radius: calc(var(--radius) * 2);
  border: none;
  background-color: #eee;
}
/* ***************************************** */
/* MODAL ESPACE NOMINEE */
/* ***************************************** */
.modal_vote_background {
  padding-top: 7%;
  overflow: auto;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.575);
}
.modal_vote_candidate {
  background-color: #fff;
  max-width: 797px;
  min-width: 300px;
  height: fit-content;
  margin: 0 auto;
  border-radius: 5px;
}
.modal_vote_candidate p {
  padding: 0px 40px 20px 40px;
  font-size: 14px;
}
.votes_info {
  width: 100%;
  padding: 1em;
}
.vote_form strong:not(.vote_form strong.transaction_fees) {
  font-weight: 500;
}
.vote_form
  strong:not(.vote_form strong.transaction_fees, .vote_form
    strong:nth-of-type(2), .vote_form strong:nth-of-type(4), .vote_form strong.label-email, .vote_form strong.label-amount)::after {
  content: '*';
  color: crimson;
  margin-left: 3px;
}
.tooltip-icon {
  background-color: #ddd;
  width: 25px;
  height: 25px;
  color: #666;
  border-radius: 50%;
  cursor: pointer;
  transform: scale(0.6);
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.tooltip-icon::after {
  content: attr(data-tooltip-text);
  position: absolute;
  text-align: center;
  width: max-content;
  max-width: 240px;
  top: 0;
  color: #aaa;
  font-weight: 400;
  left: 50%;
  padding: 3px 10px;
  pointer-events: none;
  border-radius: 3px;
  transition: 0.3s;
  opacity: 0;
  transform: translate(-50%, -100%);
  border: 1px solid #ddd;
  background-color: #fff;
}
.tooltip-icon:hover::after {
  opacity: 1;
  transform: translate(-50%, -120%);
}
.vote_form input {
  font-family: inherit;
}
.vote_form input:not(input[type='radio']) {
  margin: 4px 0 1em 0;
  width: 100%;
  /*background-color: #eee;*/
  border: 2px solid #ddd;
  border-radius: 5px;
  padding: 1em;
}
.vote_form input[name='vote-modal-amount'] {
  background-color: #eee;
}
.vote_form .paymentMethod {
  margin: 0 auto;
  width: fit-content;
  margin-bottom: 1em;
  display: flex;
  gap: 1.5em;
}
.transaction_fees {
  text-align: center;
  font-weight: 500;
  color: orange;
}
.vote_buttons {
  margin-top: 0.7em;
  display: flex;
  justify-content: flex-end;
  gap: 0.5em;
}
.vt_btn {
  transition: 0.3s;
  cursor: pointer;
  font-family: inherit;
  border: none;
  border-radius: 4px;
  padding: 0.5em 0.8em;
  font-size: 1em;
}
.vote_quit {
  color: #555;
  background-color: #eee;
  border: 1px solid #ddd;
}
.vote_quit:hover {
  background-color: #ddd;
}
.vote_pay {
  color: #fff;
  background-color: var(--c-primary);
}
.vote_pay:hover {
  background-color: var(--c-primary-darker);
}
.vote_candidate {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.2em;
  margin-bottom: 1em;
}
.candidate_picture {
}
.candidate_picture img {
  width: 85px;
  height: 85px;
  border-radius: 4px;
  object-fit: cover;
  object-position: top center;
}
.vote_form hr {
  margin: 0.8em 0;
  border: none;
  border-bottom: 1px solid #ddd;
}
.vote_candidate_name {
  color: var(--c-primary-darker);
}
.sharebtn{
	position: relative;
}
.sm_list{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -50px;
	box-shadow: 2px 2px 2px #0000002d;
	padding: 1em;
	z-index: 9999;
	border-radius: 888px;
	background-color: #fff;
	display: flex;
	gap: 0.8em;
	display: none;
	align-items: center;
}
.sm_list a svg{
	font-size: 1.3em;
	position: relative;
	top: 5px;
	fill: var(--c-primary-darker);
	color: var(--c-primary-darker);
}
a.facebook svg:hover, a.linkedin svg:hover, a.twitter svg:hover, a.telegram svg:hover {
	fill: blue;
    color: blue;
}

a.whatsapp svg:hover {
	fill: green;
    color: green;
}
@media screen and (min-width: 780px) {
  .event-infos p {
    /* color: goldenrod; */
    font-size: calc(var(--f-1));
    padding: 0 1em;
  }
  /* .modal_vote_candidate {
    background-color: crimson;
  } */
  .votes_info {
    gap: 2em;
    display: flex;
  }
  .vote_candidate {
    display: block;
    order: 2;
  }
  .vote_form {
    order: 1;
  }
  .candidate_picture img {
    width: 350px;
    height: 350px;
  }
}
/* ----------------------------------------------- */
/* ----------------------------------------------- */
/* ----------------------------------------------- */
@media screen and (min-width: 780px) {
  .event-infos {
    grid-template-columns: 1fr 1fr;
  }
  .event-pict {
    justify-self: center;
  }
  .event-title h1 {
    font-size: calc(var(--f-4) * 1.5);
  }
  .candidate_details {
    display: flex;
    padding: 20px 40px;
  }
}
.show_modal {
  display: block;
}
.modal_background {
  display: none;
  padding: 5em 0;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.575);
}
.modal_candidate {
  background-color: #fff;
  max-width: min-content;
  height: fit-content;
  margin: 0 auto;
  border-radius: 5px;
}
.modal_candidate p {
  padding: 0px 40px 20px 40px;
  font-size: calc(var(--f-1));
}
.heading {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 20px 40px;
  justify-content: space-between;
}
.heading h2 {
  color: var(--c-primary-darker);
  font-weight: 600;
}
.heading div i {
  color: var(--c-primary-darker);
  font-size: 24px;
}
.heading div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.heading #closeNomiInfosModal {
  color: var(--c-primary-darker);
  font-size: 30px;
  /* border-radius: 50%; */
  cursor: pointer;
  width: 40px;
  height: 40px;
  user-select: none; /* supported by Chrome and Opera */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
  background-color: #eee;
}
.heading #closeNomiInfosModal:hover {
  background-color: #ddd;
}
.candidate_details {
  /* display: flex; */
  gap: 20px;
  /* justify-content: center; */
  align-items: center;
  margin-bottom: 2em;
}
.candidate_details img {
  width: 300px;
  height: 250px;
}
.details_infos {
  padding-top: 2em;
  text-align: center;
}
.details_infos h1 {
  min-width: 350px;
  /* font-size: 2.5vw; */
  margin: 10px 0 30px 0;
  color: var(--c-primary-darker);
  line-height: 40px;
}

.details_infos p {
  margin-top: 30px;
}
.details_infos p {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.details_infos .vote {
  padding: 0.8em 1.5em;
  cursor: pointer;
  background-color: var(--c-primary);
  color: #fff;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 1px;
  border: none;
  outline: none;
  transition: background-color 0.2s;
  border-radius: 3px;
}
.details_infos .vote:hover {
  background-color: var(--c-primary);
}
/* ///////////////////////////////////////////////// */
/* ///////////////////////////////////////////////// */
/* ///////////////////////////////////////////////// */
@media screen and (min-width: 768px) {
  .meta-infos {
    border-radius: 300px 300px 0 0;
  }
  .duree-stats {
    flex-direction: row;
  }
  .config-nominee form {
    grid-template-columns: 1fr 1fr;
  }
}
/* @media screen and (min-width: 640px) { sm } */
@media screen and (min-width: 1024px) {
  .config-nominee form {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* @media screen and (min-width: 1280px) { xl } */
/* @media screen and (min-width: 1536px) { 2xl } */

.rotate{
    animation: rotation 2s infinite;
}
@keyframes rotation {
  from {-webkit-transform: rotate(0deg);}
  to {-webkit-transform: rotate(360deg);}
}

.event-title {
  margin-bottom: -5em;
  padding-bottom: 7em;
  border-radius: 0 0 50% 50%;
}

table#table-vote{
  visibility: collapse;
  display: none;
}

.th-per{
  text-align: left;
  font-weight: bolder;
  padding: 3px;
}
.container{
  max-width: 900px !important;
}
.text-success{
  padding: .2em;
  color: #fff;
  border-radius: 3px;
  background-color: #50cd89 !important;
}
.text-warning{
  padding: .2em;
  border-radius: 3px;
  color: #fff;
  background-color: #ffc700 !important;
}
.text-danger{
  padding: .2em;
  border-radius: 3px;
  color: #fff;
  background-color: #f1416c;
}
.credit{
  margin-top: 30px;
  margin-bottom: 25px;
}
.viewResult{
  font-size: 12px !important;
}
.vote_reload {
color: #fff;
background-color: #f9b12e;
}
.vote_reload:hover {
background-color: orange;
}
.iti{
  width: 100%;
}