/* css */
.flex-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-flow: column;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
  gap: 30px;
}

.col-xs-12 {
  grid-column-end: span 12;
}

.anketa input[type="checkbox"] {
  width: unset;
}
.anketa .wpcf7-not-valid {
  animation: bg-pulse 1s infinite;
}
.anketa .wpcf7-form-control-wrap label {
  cursor: pointer;
}

.anketa .wpcf7-form-control-wrap {
  display: block;
}
.anketa .wpcf7-list-item {
  padding: 2px 0;
  margin-left: 0;
}
.anketa input[type="text"],
.anketa textarea {
  width: 100%;
  padding: 3px;
}
.anketa textarea {
  margin-top: 4px;
  height: unset;
}
.anketa p {
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
}
.anketa button {
  border: 1px solid #ff3a1a;
}
@keyframes bg-pulse {
  0% {
    background-color: #fff;
  }
  50% {
    background-color: #ffe8e8;
  }
  100% {
    background-color: #fff;
  }
}


.d-none {
  display: none !important;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

#newYearModal .wpcf7-response-output {
  width: 100%;
}
/* ZVEZDY */

.full-stars .rating-group {
    display: inline-flex;
}
.full-stars input {
    position: absolute;
    left: -9999px;
}
.full-stars label {
    margin: 0;
    cursor: pointer;
}
.full-stars label svg {
    margin: 2px;
    height: 40px;
    width: 40px;
    fill: #337AB7;
    transition: fill 0.3s;
}
.full-stars input:checked ~ label svg {
    fill: #BFE2FF;
}
.full-stars .rating-group:hover label svg {
    fill: #337AB7;
}
.full-stars .rating-group input:hover ~ label svg {
    fill: #BFE2FF;
}

/* END ZVEZDY */



