.big-leader-card > .big-info, .big-info-main {
  width: 100%;
  height: 100%;
  font-size: clamp(12px, 2.7svw, 22px);
  padding: 20px 10px 50px 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-default);
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.leader-card-item {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover !important;
}
.leader-card-item > .leader-card_flag {
  position: absolute;
  top: 3%;
  left: 3%;
  height: 10%;
  width: 10%;
}
.leader-card-item > .leader-card_photo {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  width: auto;
  height: 80%;
}
.leader-card-item > .leader-card_photo > img {
  height: 100%;
  width: auto;
}
.leader-card-item > .leader-card_info {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  margin: 1%;
  height: -moz-max-content;
  height: max-content;
  text-wrap: balance;
}
.leader-card-item > .leader-card_info > .leader-card_info_life {
  border-radius: 7px 0 0 7px;
}
.leader-card-item > .leader-card_info > .leader-card_info_life:hover {
  cursor: pointer;
}
.leader-card-item > .leader-card_info > .leader-card_info_life,
.leader-card-item > .leader-card_info > .leader-card_info_program,
.leader-card-item > .leader-card_info > .leader-card_info_statements {
  background-color: #0075ff;
  width: 22%;
  height: auto;
  padding: 3px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(5px, 1.8svw, 20px);
  text-align: center;
  border-right: 1px dashed rgba(255, 255, 255, 0.15);
}
.leader-card-item > .leader-card_info > .leader-card_info_life:hover,
.leader-card-item > .leader-card_info > .leader-card_info_program:hover,
.leader-card-item > .leader-card_info > .leader-card_info_statements:hover {
  cursor: pointer;
}
.leader-card-item > .leader-card_info > .leader-card_info_debates {
  background-color: #079f1f;
  padding: 3px 7px;
  border-radius: 0 7px 7px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(5px, 1.8svw, 20px);
}
.leader-card-item > .leader-card_info > .leader-card_info_debates:hover {
  cursor: pointer;
}
.leader-card-item > .leader-card_contact {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3px;
  height: -moz-min-content;
  height: min-content;
  bottom: 25%;
  left: 13px;
  width: 30%;
  font-size: clamp(12px, 2.4svw, 24px);
}
.leader-card-item > .leader-card_contact > .leader-card_contact_name {
  text-align: center;
  text-wrap: nowrap;
  font-size: clamp(12px, 1.5em, 25px);
}
.leader-card-item > .leader-card_contact > .leader-card_contact_name > svg {
  display: inline;
  height: clamp(15px, 3svw, 45px);
  padding: 0;
  margin: 0 0 0 -15px;
}
.leader-card-item > .leader-card_contact > .leader-card_contact_price-red {
  background-color: red;
  color: yellow;
  text-align: center;
  padding: 3px;
  border-radius: var(--radius-default);
}
.leader-card-item > .leader-card_contact > .leader-card_contact_price-yellow {
  background-color: yellow;
  color: red;
  text-align: center;
  padding: 3px;
  border-radius: var(--radius-default);
}
.leader-card-item > .leader-card_vote {
  position: absolute;
  bottom: 2%;
  left: 2%;
  padding: 10px;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  flex-wrap: nowrap;
}
.leader-card-item > .leader-card_vote > .leader-card_vote_button,
.leader-card-item > .leader-card_vote .leader-card_vote_button::part(vote-button) {
  width: 50%;
  padding: 0 5px;
  border-radius: 22px;
  font-size: clamp(20px, 3svw, 34px);
  font-weight: 700;
  height: -moz-min-content;
  height: min-content;
  background-color: #ff04b9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.leader-card-item > .leader-card_vote > .leader-card_vote_votes {
  font-size: clamp(12px, 3svw, 44px);
  color: red;
  font-weight: 800;
  text-shadow: 1px 1px 2px white;
  background: rgba(255, 255, 255, 0.45);
  width: 100%;
  border-radius: 12px;
  text-align: center;
}

.big-leader-card {
  animation: slowshow 0.4s ease-in-out;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 10%;
  width: 60%;
  height: auto;
  min-height: 70%;
  z-index: 999;
  border-radius: var(--radius-default);
  box-shadow: 0 0 20px 12px rgba(255, 255, 255, 0.72);
}
@media screen and (max-width: 650px) {
  .big-leader-card {
    width: 80%;
    min-width: 300px;
  }
}
.big-leader-card > .close-big-card {
  position: absolute;
  z-index: 2;
  top: -15px;
  right: -15px;
  font-size: 2em;
  background: yellow;
  color: red;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-direction: column;
  flex-wrap: nowrap;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.6);
  transition: 0.5s;
}
.big-leader-card > .close-big-card:hover {
  width: 45px;
  height: 45px;
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.6);
  transition: 0.5s;
}
.big-leader-card > .big-info {
  position: relative;
  z-index: 1;
  flex-grow: 1;
}
.big-leader-card > .big-info ul {
  list-style: inside;
}
.big-leader-card > .big-info ol {
  list-style: decimal;
}
.big-leader-card > .big-info ol li {
  margin: 12px 0;
}
.big-leader-card > .big-info > .button {
  position: absolute;
  bottom: 10px;
  width: 200px;
  left: calc(50% - 100px);
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
}

.big-info-main {
  grid-row: 1/5;
  grid-column: 1/4;
  align-items: center;
  margin-bottom: 50px;
}
.big-info-main #main-register-form {
  width: 90%;
}
.big-info-main #main-register-form h2 {
  margin: 0 0 30px -20px;
}
.big-info-main #main-register-form div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  margin: 0 auto;
}
.big-info-main #main-register-form div textarea {
  width: 100%;
}
.big-info-main #main-register-form fieldset {
  margin: 10px 0;
  background: white;
}
.big-info-main #main-register-form fieldset ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
}
.big-info-main #main-register-form fieldset ul li {
  display: flex;
  gap: 10px;
  width: 100%;
}
.big-info-main #main-register-form fieldset ul li > label, .big-info-main #main-register-form fieldset ul li input {
  flex: 1;
}
.big-info-main #main-register-form fieldset ul li > label::-moz-placeholder, .big-info-main #main-register-form fieldset ul li input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.big-info-main #main-register-form fieldset ul li > label::placeholder, .big-info-main #main-register-form fieldset ul li input::placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.big-info-main #main-register-form legend {
  font-weight: 600;
}
.big-info-main #main-register-form button {
  width: 200px;
  margin: 0 auto;
}

.slowshow {
  animation: slowshow 0.4s ease-in-out;
}

.slowhide {
  animation: slowhide 0.5s ease-in-out;
}

@keyframes slowshow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slowhide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#login-modal {
  position: fixed;
  top: 150px;
  background: #5087e7;
  width: 35%;
  height: 25%;
  z-index: 1000;
  border-radius: var(--radius-default);
  box-shadow: 0 0 20px 12px rgba(255, 255, 255, 0.72);
}
#login-modal > #login-form-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
}
#login-modal > #login-form-modal div > input {
  height: 35px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-around;
  border-radius: var(--radius-default);
  border: 0;
  padding: 7px;
}
#login-modal > #login-form-modal > * {
  width: 90%;
}
#login-modal > #login-form-modal > * > * {
  width: 100%;
}/*# sourceMappingURL=template.css.map */