

.check{
  cursor: pointer;
  position: relative;
  margin: 0px 0px 15px 0px;
  width: 18px;
  height: 18px;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);

}
.check:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34,50,84,0.03);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.check  {
  position: relative;
  z-index: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #55bc75;
  stroke-width: 1.5;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.check svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
}
.check svg polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 66;
}
/*.check:hover:before {
  opacity: 1;
} */
.check:hover svg {
  stroke: #55BC74;;
}
.cbx:checked + .check svg {
  stroke: #55BC74;;
}
.cbx:checked + .check svg path {
  stroke-dashoffset: 60;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.cbx:checked + .check svg polyline {
  stroke-dashoffset: 42;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transition-delay: 0.15s;
       -o-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.polistat{
	margin: 10px;
	
	clear: both;
}
em.qtip:focus{
	color:white;
	background: #4cae4c;
}
em.qtip:hover{
	color:white;
	background: #4cae4c;
}
.popover-content{
	border: 2px solid #55BC74;
	background-color: whitesmoke;
	
}

.scale {
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s; /* Время эффекта */
   }
   .scale:hover {
    -webkit-transform: scale(2.5);
        -ms-transform: scale(2.5);
            transform: scale(2.5); /* Увеличиваем масштаб */
   }