.cf7-pd-consent-container {
    margin: 0 0 20px 0;
    clear: both;
}

.cf7-pd-consent-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 12px !important;
    margin: 0;
}

.cf7-pd-consent-checkbox {
    margin-right: 10px;
    width: 60px !important;
    height: 18px;
}

.cf7-pd-consent-text {
	padding-left: 20px;
}

.cf7-pd-consent-text a {
    color: #0073aa;
    text-decoration: underline;
}

.cf7-pd-consent-text a:hover {
    color: #00a0d2;
}

.wpcf7-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Сбрасываем стандартный вид */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px !important;
  height: 20px;
  border: 2px solid #6b7280;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  margin: 0;
  vertical-align: middle;
}

/* Наведение */
input[type="checkbox"]:hover {
  border-color: #27a193;
}

/* Отмеченный чекбокс */
input[type="checkbox"]:checked {
  background-color: #27a193;
  border-color: #27a193;
}

/* Галочка (псевдоэлемент) */
input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Отключенный чекбокс */
input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #27a193;
  border-color: #27a193;
}

/* Стиль для подписи (label) */
input[type="checkbox"] + label {
  margin-left: 8px;
  cursor: pointer;
  user-select: none;
}