.checkbox-svg {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 10px;
}

.checkbox-svg a {
  text-decoration: none;
  font: inherit;
  color: inherit;
}

.checkbox-svg label.checked-svg {
  cursor: pointer;
  position: relative;
  margin: 0;
  width: 15px;
  height: 15px;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
  min-height: auto;
  padding-left: initial;
}

.checked-svg svg {
  background-color: #fffcf3;
  border: 1px solid #000000;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  fill: none;
  transform: translate3d(0, 0, 0);
  transition: transform 0.2s ease, stroke-linecap 0.2s ease,
    stroke-linejoin 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: #000000;
}

input[id*="cbx"]:checked + .checked-svg svg {
  stroke: #000000;
}

input[id*="cbx"]:checked + .checked-svg svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}

input[id*="cbx"]:checked + .checked-svg svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}

.privacy-checkbox {
  color: var(--Black, #000);
  font-size: 12px;
  line-height: normal;
  margin-left: 5px;
}

.protect {
  width: 100%;
  position: absolute;
  left: 0;
  top: 3px;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.protect__item {
  font-size: 8px;
  line-height: 10px;
  color: #fff;
  opacity: 0.3;
}

.protect__item a {
  color: #fff;
  text-decoration: none;
}
