/*!********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./ce-blocks/svg-icon/style.scss ***!
  \********************************************************************************************************************************************************************************/
/**
 * Load: global
 * Deps: svg-icons
 */
.acf-radio-list input[type=radio] {
  width: 1em;
  height: 1em;
}
.acf-radio-list input[type=radio]:checked::before {
  width: 0.8rem;
  height: 0.8rem;
}

i[class*=ceicon-] {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
i[class*=ceicon-]:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: center center no-repeat;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  background-color: currentColor;
}
i[class*=ceicon-].x64 {
  width: 6.4rem;
  height: 6.4rem;
}
i[class*=ceicon-].x32 {
  width: 3.2rem;
  height: 3.2rem;
}
i[class*=ceicon-].x16 {
  width: 1.6rem;
  height: 1.6rem;
}

.has-spin {
  display: inline-block;
  animation: anim-rotate 2s infinite linear;
}

.has-spin--steps {
  animation: anim-rotate 1s infinite steps(8);
}

.has-spin--steps2 {
  animation: anim-rotate 1s infinite steps(12);
}

@keyframes anim-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
