.checkbox-svg {
  margin: 15px 0px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-svg label.checked-svg {
  background-color: transparent;
  cursor: pointer;
  position: relative;
  margin: 0px;
  width: 18px;
  height: 18px;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
  min-height: auto;
  padding-left: initial;
}

.checked-svg:before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34, 50, 84, 0.03);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.checked-svg svg {
  position: relative;
  z-index: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #c8ccd4;
  stroke-width: 1px;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
}

.checked-svg svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
}

.checked-svg svg polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 66;
}

.checked-svg:hover:before {
  opacity: 1;
}

.checked-svg:hover svg {
  stroke: #4285f4;
}

#cbx:checked ~ .checked-svg svg {
  stroke: #59f442;
}

#cbx:checked ~ .checked-svg svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}

#cbx:checked ~ .checked-svg svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}
.checkbox.valid ~ .checked-svg svg {
  stroke: #59f442;
}

.checkbox.valid ~ .checked-svg svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}

.checkbox.valid ~ .checked-svg svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}

#cbx-2-pop:checked ~ .checked-svg svg {
  stroke: #59f442;
}

#cbx-2-pop:checked ~ .checked-svg svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}

#cbx-2-pop:checked ~ .checked-svg svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}
#cbx-3:checked ~ .checked-svg svg {
  stroke: #59f442;
}

#cbx-3:checked ~ .checked-svg svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}

#cbx-3:checked ~ .checked-svg svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}
.privacy-checkbox {
  font-family: inherit;
  padding-left: 10px;
  font-style: normal;
  font-weight: normal;
  font-weight: 400;
  font-size: 9px;
  line-height: 10px;
  color: #263238;
  text-align: left;
}
.privacy-checkbox a {
  color: #263238;
  text-decoration: none;
}

[for='cbx-2-pop'] ~ .privacy-checkbox {
  color: #fff;
}

.checkbox-svg p a {
  text-decoration: underline;
}
