/*!
Theme Name: Econstructor
Author: Nadiia Haida
Author URI: http://knott.fun
Version: 1.0.1
*/

#knot-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	z-index: 9999;
}

#knot-loading:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	background-color: var(--bg);
	opacity: 0.5;
	z-index: -1;
}

#knot-loading:after {
	--size: 40px;

	content: '';

	width: var(--size);
	height: var(--size);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23000000' version='1.1' id='Capa_1' width='800px' height='800px' viewBox='0 0 26.349 26.35' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Ccircle cx='13.792' cy='3.082' r='3.082'/%3E%3Ccircle cx='13.792' cy='24.501' r='1.849'/%3E%3Ccircle cx='6.219' cy='6.218' r='2.774'/%3E%3Ccircle cx='21.365' cy='21.363' r='1.541'/%3E%3Ccircle cx='3.082' cy='13.792' r='2.465'/%3E%3Ccircle cx='24.501' cy='13.791' r='1.232'/%3E%3Cpath d='M4.694,19.84c-0.843,0.843-0.843,2.207,0,3.05c0.842,0.843,2.208,0.843,3.05,0c0.843-0.843,0.843-2.207,0-3.05 C6.902,18.996,5.537,18.988,4.694,19.84z'/%3E%3Ccircle cx='21.364' cy='6.218' r='0.924'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	animation: kf-rotate infinite 1s linear;
}

@keyframes kf-rotate {
	from {
		transform: rotate(0);
	} to {
		transform: rotate(400grad);
	}
}

.edit-post-meta-boxes-area .metabox-location-side .postbox input[type=checkbox].cf-radio__input:before {
	margin: .1875rem !important;
}

.codedropz-upload-handler {
	border: 1px solid #FDFFFC;
	border-radius: var(--bdrs);
	margin: 0;
}

.codedropz-upload-container {
	padding: 20px;
}

.codedropz-upload-inner {
	--color: #909090;

	display: flex;
	flex-direction: column;
	grid-gap: 20px;

	font-size: clamp(10px, .68vw, 12px);
	text-align: left;
}

.codedropz-upload-inner > span {
	display: none;
}

.dnd-upload-status {
	display: none;
}

.dnd-upload-counter {
	--color: var(--gray);
	
	pointer-events: none;

	right: 72px;
	bottom: calc(20px + var(--btn_height) * .5);

	font-size: 12px;

	transform: translate3d(0, 50%, 0px);
}

.cd-upload-btn {
	--color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;

	width: 100%;
	min-height: var(--btn_height);
	padding: 0 16px;
	font-size: var(--body);
	font-weight: 500;
	font-family: var(--family);
	border: 1px solid #FDFFFC;
	border-radius: var(--bdrs);
}

.cd-upload-btn:after {
	content: '';

	width: var(--icon-size);
	min-width: var(--icon-size);
	height: var(--icon-size);
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7.66667V10.3333C2.5 13.1618 2.5 14.576 3.37868 15.4547C4.25736 16.3333 5.67157 16.3333 8.5 16.3333H13.2143C14.4112 16.3333 15.0097 16.3333 15.4908 16.165C16.3526 15.8634 17.0301 15.1859 17.3317 14.3242C17.5 13.8431 17.5 13.2446 17.5 12.0476V7.87842C17.5 7.02509 16.8082 6.33333 15.9549 6.33333V6.33333C15.3697 6.33333 14.8347 6.00268 14.5729 5.47923L13.8889 4.11111C13.8862 4.10577 13.8849 4.10309 13.8836 4.10062C13.5448 3.42756 12.8564 3.0021 12.1028 3.00001C12.1 3 12.0971 3 12.0911 3H6.66667' stroke='%23FDFFFC'/%3E%3Cpath d='M6.33398 5H2.33398' stroke='%23FDFFFC' stroke-linecap='round'/%3E%3Cpath d='M4.33398 3V7' stroke='%23FDFFFC' stroke-linecap='round'/%3E%3Cpath d='M12.8327 10.5003C12.8327 12.0651 11.5642 13.3337 9.99935 13.3337C8.43454 13.3337 7.16602 12.0651 7.16602 10.5003C7.16602 8.93552 8.43454 7.66699 9.99935 7.66699C11.5642 7.66699 12.8327 8.93552 12.8327 10.5003Z' stroke='%23FDFFFC'/%3E%3C/svg%3E%0A");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}