/* promo-sonda/assets/css/promo-sonda.css */


/* Badge */
span.poll-badge {
	text-transform: uppercase;
	font-weight: 400;
	font-size: 12px;
	background-color: var(--theme-palette-color-1);
	padding: 8px;
	color: #fff;
	margin-right: 8px;
}

/* Tekst pod sondą */
p.text-info-poll {
	font-size: 12px;
	color: var(--theme-palette-color-14);
	margin: 0;
	text-align: center;
}

/* Przycisk + tekst */

div.button-text-poll {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Wrapper */
.promo-sonda-form,
.promo-sonda-results {
  border: 1px solid #ddd;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 4px;
}

body.home .promo-sonda-form,
body.home .promo-sonda-results {
	padding: 16px;
}

form.promo-sonda-form {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Question block */
.promo-sonda-form .ps-question {
	display: flex;
	flex-direction: column;
	gap: 12px;
}


.promo-sonda-form .ps-question p {
  font-weight: bold;
  margin-bottom: 0;
  line-height: 36px;
}

/* Answer labels */
.promo-sonda-form label {
  display: block;
  cursor: pointer;
  margin: 0;
}
.promo-sonda-form input[type="radio"],
.promo-sonda-form input[type="checkbox"] {
	display: none;
}

div.ps-question label {
	display: flex;
	border: 1px solid #ddd;
}

div.ps-question label span {
	padding: 12px;
	text-align: center;
	width: 100%;
	border: 3px solid #fff;
	background: #fff;
}

.promo-sonda-form input[type="radio"]:checked ~ span {
	border: 3px solid var(--theme-palette-color-1);
}

/* Submit button */
.promo-sonda-form button[type="submit"] {
  background-color: var(--theme-palette-color-1);
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  font-size: 1em;
  cursor: pointer;
}
.promo-sonda-form button[type="submit"]:hover {
  background-color: var(--theme-palette-color-2);
}

/* Results container */
.promo-sonda-results {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.ps-result {
	padding: 8px 16px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}
.ps-label {
	flex: 1 0 0;
	position: relative;
	z-index: 2;
}
.ps-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #adadad;
	z-index: 1;
}
.ps-fill {
  height: 100%;
  background: var(--theme-palette-color-1);
  width: 0;
  transition: width 0.5s ease;
}
.ps-pct {
  flex: 0 0 auto;
  width: 50px;
  text-align: right;
  font-weight: bold;
  z-index: 3;
}
div.ps-question {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ps-total-votes-count {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 14px;
}

/* Archiwum */

div#ps-archive-list {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

div#ps-archive-list > div.ps-archive-item {
	width: calc((100% - 32px) / 2);
}

div#ps-archive-list > div.ps-archive-item p.ps-ended-note {
	display: none;
}

div#ps-archive-list h3 {
	font-size: 20px;
}

/* Responsive */
@media (max-width: 600px) {
  .promo-sonda-form,
  .promo-sonda-results {
    padding: 16px;
  }
  .ps-label {
    font-size: 0.9em;
  }
  .ps-pct {
    font-size: 0.9em;
  }
  
  div#ps-archive-list > div.ps-archive-item {
    width: 100%;
  }
}


