/**
 * Frontend Style.
 *
 * @package  custom-fields-addon-for-wp-configurator-pro/assets/css/
 * @version  1.0
 */


.wpc-control-lists-inner li.wpc-layer-type-form {
	cursor: default;
}

.wpc-control-item.wpc-layer-type-form {
	width: 100%;
	margin: 0px;
	border-radius: 0px;
}

.wpc-custom-field-form input {
	width: auto;
	float: left;
	margin-left: 0;
	/* margin-top: 3px;
	margin-right: 5px; */
}

.wpc-custom-field-form {
    width: 100%;
	text-align: left;
}

.wpc-field-textfield input[type="text"], .wpc-field-textfield input[type="email"], .wpc-field-textfield input[type="url"], .wpc-field-textfield input[type="password"], .wpc-field-textfield input[type="search"], .wpc-field-textfield input[type="number"], .wpc-field-textfield input[type="tel"], .wpc-field-textfield input[type="range"], .wpc-field-textfield input[type="date"], .wpc-field-textfield input[type="month"], .wpc-field-textfield input[type="week"], .wpc-field-textfield input[type="time"], .wpc-field-textfield input[type="datetime"], .wpc-field-textfield input[type="datetime-local"], .wpc-field-textfield input[type="color"] {
	width: 100%;
    border: 1px solid #dcd7ca;
	padding: 10px 15px;
    border-radius: 5px;
}

.wpc-field-textarea textarea {
    border: 1px solid #dcd7ca;
    padding: 10px 15px;
    width: 100%;
    height: 120px;
	line-height: 1.4;
	border-radius: 5px;
}

.wpc-field-group {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
}

.wpc-custom-field-form .wpc-field-checkbox, .wpc-custom-field-form .wpc-field-radio {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.wpc-custom-field-form input[type="radio"] {
	margin-top: 0;
}

.wpc-custom-field-form .wpc-field-title {
	font-weight: bold;
	margin-bottom: 15px;
}

.wpc-cart-form-cart-item .wpc-layer-type-form span.item-child-title {
	display: inline-block;
}

.wpc-custom-field-form .wpc-field-checkbox label, .wpc-custom-field-form .wpc-field-radio label {
	cursor: pointer;
}

.wpc-custom-field-form .wpc-field-checkbox input, .wpc-custom-field-form .wpc-field-radio input {
	cursor: pointer;
}

/* .wpc-custom-field-form input[type="radio"] {
	height: 16px;
	aspect-ratio: 1;
	border: calc(16px / 8) solid #939393;
	padding: calc(16px / 8);
	background: radial-gradient(farthest-side, #009688 94%, #0000) 50%/0 0
	  no-repeat content-box;
	border-radius: 50%;
	outline-offset: calc(16px / 10);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	font-size: inherit;
	transition: 0.3s;
}

.wpc-custom-field-form input[type="radio"]:checked {
	border-color: #009688;
	background-size: 100% 100%;
} */


.wpc-custom-field-form input[type=checkbox],
.wpc-custom-field-form input[type=radio] {
    --active: #000;
    --active-inner: #fff;
    --focus: 2px rgba(0, 0, 0, 0.3);
    --border: #BBC1E1;
    --border-hover: #000;
    --background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 17px;
    height: 17px;
    outline: none;
    display: inline-block;
	border-radius: 50%;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
}

.wpc-custom-field-form input[type=checkbox]:checked,
.wpc-custom-field-form input[type=radio]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
}

.wpc-custom-field-form input[type=checkbox]:after,
.wpc-custom-field-form input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
}

.wpc-custom-field-form input[type=checkbox]:hover,
.wpc-custom-field-form input[type=radio]:hover {
    --bc: var(--border-hover);
}

.wpc-custom-field-form input[type=checkbox]:focus,
.wpc-custom-field-form input[type=radio]:focus {
    box-shadow: 0 0 0 var(--focus);
}

.wpc-custom-field-form input[type=checkbox]:after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 5px;
    top: 2px;
    transform: rotate(var(--r, 20deg));
	opacity: 0;
}

.wpc-custom-field-form input[type=checkbox]:checked {
    --r: 43deg;
}

.wpc-custom-field-form input[type=checkbox]:checked:after {
    opacity: 1;
}

.wpc-custom-field-form input[type=radio]:after {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #fff;
	opacity: 0;
	transform: scale(var(--s, 0.7));
}

.wpc-custom-field-form input[type=checkbox]:checked, .wpc-custom-field-form input[type=radio]:checked {
	--o: 1;
}

.wpc-custom-field-form input[type=radio] {
	width: 17px !important;
	border-radius: 50%;
}

.wpc-custom-field-form input[type=radio]:after {
	opacity: var(--o, 0);
}

.wpc-custom-field-form input[type=radio]:checked {
	--s: .5;
}

.wpc-custom-field-form input[type=checkbox] + label, .wpc-custom-field-form input[type=radio] + label {
	font-size: 15px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	padding-left: 8px;
	margin-bottom: 0;
}

.wpc-custom-field-form select {
    width: 100%;
    border: 1px solid #dcd7ca;
    padding: 10px 15px;
    border-radius: 5px;
	cursor: pointer;
	/* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center; */
}