




/*
.polling {
	width: 20%;
  float: left;
  padding: 10px;
  border: 1px solid #ddd;
  min-height: 350px;
}
@media (max-width: 767px) {
	 .polling {width: 100%;
	 min-height: auto;
	 }
}
@media (min-width: 768px) {
	.polling {width: 50%;}
}
@media (min-width: 1020px) {
	.polling {width: 20%;}
}
*/


.pollings {
display: grid;
align-items: flex-start;
justify-content: space-between;
}

.polling {
height: 100%;
  padding: 10px;
  border: 1px solid #ddd;

}
@media (max-width: 767px) {
	 .pollings {
		 
grid-template-columns: repeat(1,minmax(0,1fr));
	 }
}
@media (min-width: 768px) {
	.pollings {
		
grid-template-columns: repeat(2,minmax(0,1fr));
	}
}
@media (min-width: 1020px) {
	.pollings {
		
grid-template-columns: repeat(5,minmax(0,1fr));
	}
}


.polling .s-header {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 1.5em 0 1em 0;
    color: #32292f;
}
.polling .headline--iconic {
  margin-left: 2.14286em;
  position: relative;
}
.polling .headline--iconic img {
  position: absolute;
  height: 24px;
  left: -2.14286em;
  top: -.21429em;
}
.product__meter {
  margin: 0;
  padding: 0;  
  margin-top: .92308em;
  margin-bottom: 2em;
  list-style-type: none;
  
}
.meter__row {
  display: flex;
  padding: 5px 0;
}
.meter__text {
  width: 180px;
  position: relative;
  overflow: hidden;
  font-size: 12px;
}
.meter__text span {
  position: relative;
  z-index: 2;
  padding-right: 10px;
  background-color: #fff;
}
.meter__text small {
  margin-left: 2px;
  font-size: 11px;
  color: #888;
}
.meter__num {
  width: 26px;
  padding: 0 2px;
  margin-top: 1px;
  font-size: 11px;
  color: #888;
  text-align: right;
}
.meter__scale {
  position: relative;
  width: 128px;
  left: 6px;
  top: -1px;
}
.meter__bar {
  position: relative;
  top: 50%;
  height: 3px;
  margin-right: 30px;
  background-color: #f5f5f5;
  border-radius: 3px;
  overflow: hidden;
}
.meter__bar span {
  display: block;
  height: 100%;
  width: 0;
  background-color: #f9be6e;
}
.meter__btn {
  position: absolute;
  float: left;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f5f5f5;
  background-image: linear-gradient(to top, #f5f5f5 0%, #fff 80%, #fff 100%);
  border: none;
  box-shadow: none;
  -webkit-appearance: button;
  cursor: pointer;
}
.meter__btn::after {
  content: "";
  margin-top: -5px;
  margin-left: -5px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url('../image/daa7d.png');
  background-position: -102px -47px;
  width: 10px;
  height: 10px;
}
.meter__btn:not(:disabled):hover::after, .meter__btn:not(:disabled):active::after {
  background-position: -102px -75px;
}
.meter__btn:active {
    width: 24px;
    height: 24px;

    border: 2px solid #804040;
}
/* IMAGE */
.survey-widget__list {
  display: flex;
  gap: 11px;
  font-size: 12px;
  margin: 0;
  padding: 0;
  list-style-type: none;
    flex-wrap: wrap;
}
.survey-widget__listItem {
  text-align: center;
  padding-left: 0px;
    flex: 1;
}

.survey-widget__list li::before {
	display: none;
}


.survey-widget__listItem > label {
  display: inline-flex;
  flex-direction: column;

}
.iconImage {
  width: auto;
  height: auto;
}
.survey-widget__btn {
  height: 45px;
  margin: 0 auto 5px;
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 3px;
}
.survey-widget__btn[data-v-6d7f24cc]:hover {
  border: 2px solid #333;
}
.survey-widget__link {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
  cursor: pointer;
  font-size: 10px;
}
.survey-widget__votes {
  display: block;
  margin-top: 2px;
}
/* RADIO */
.real-radio-btn {
  /* Скрываем реальную радио кнопку*/
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.real-radio-btn:checked + .meter__btn:after {
  background-position: -102px -75px;
}