$accent-color: #0e8ecc;

.customize-control-ct-options {
	display: block !important;
}

.ct-control {
	position: relative;
	padding: 0 14px;
	margin-top: 25px;

	> header {
		&:not(:empty) {
			display: flex;
			justify-content: space-between;
			position: relative;
		}

		label {
			font-size: 12px;
			font-weight: 500;
			letter-spacing: 0.1px;
			text-transform: capitalize;
			cursor: default;
		}
	}

	// block
	&[data-design='block'] {
		> header {
			&:not(:empty) {
				margin-bottom: 10px;
			}
		}
	}

	// inline
	&[data-design='inline'] {
		display: flex;
		flex-wrap: wrap;

		> header {
			flex: 1 1 auto;

			label {
				display: flex;
				align-items: center;
			}
		}
	}
}


// control options
.ct-control-options {
	display: flex;
	align-self: center;
}


// title
.ct-title {
	h3 {
		color: #484f56;
		font-size: 13px !important;
		font-weight: 600;
		text-transform: capitalize;
		margin: 0;
	}

	p {
		font-size: 12px;
		margin: 10px 0 0 0;
		line-height: 1.5;
		font-style: italic;
		color: rgba(85, 93, 102, 0.8);
	}

	&:not(:first-child) {
		margin-top: 30px;
		border-top: 1px solid #ddd;
	}

	&[data-type="simple"] {
		width: calc(100% + 24px);
		margin-left: -12px;
		margin-right: -12px;
		padding: 30px 26px 0 26px;
		box-sizing: border-box;
	}

	&[data-type="small"] {
		width: calc(100% - 24px);
		padding-top: 30px;
		margin-left: 14px;
		margin-right: 14px;
	}

	&[data-type="menu-location"] {
		width: calc(100% + 24px);
		margin-top: 21px;
		margin-left: -12px;
		margin-right: -12px;
		padding: 0 26px;
		box-sizing: border-box;
		border-top: none;

		h3 {
			padding: 10px;
			border-radius: 3px;
			border: 1px dashed #cecece;
			background: rgba(255, 255, 255, 0.5);
		}
	}
}

// option description
.ct-option-description {
	margin-top: 10px;
	flex: 0 0 100%;
	font-size: 12px;
	line-height: 1.5;
	font-style: italic;
	color: rgba(85, 93, 102, 0.8);
}


.ct-separated,
.ct-linked {
	width: 15px;
	height: 15px;
	padding: 0;
	color: #000;
	cursor: pointer;
	border: none;
	opacity: 0.2;
	background: transparent;
	transition: opacity 0.1s ease, color 0.1s ease;

	svg {
		fill: currentColor;
	}

	&:focus {
		outline: none;
	}

	&:hover {
		opacity: 0.4;
	}

	&.active {
		color: $accent-color;
		opacity: 1;
	}
}

.ct-linked {
	margin-left: 10px;
}


// input
#customize-controls {
	textarea,
	input[type='text'],
	input[type='number'] {
		font-size: var(--fontSize, 12px);
		border-radius: 3px;
		box-shadow: inset 0 1px 2px rgba(0,0,0,.07), 0 0 0 0 transparent;
		transition: box-shadow 0.1s linear,
					background 0.1s linear,
					border-radius 0.1s linear,
					border-color 0.1s linear;

		&:not([disabled]) {
			&:hover {
				border-color: #0e8ecc;
			}
		}

		&:focus {
			border-color: #0e8ecc;
			box-shadow: inset 0 1px 2px rgba(0,0,0,.07), 0 0 0 1px #0e8ecc;
		}
	}

	input[type='text'],
	input[type='number'] {
		padding: var(--padding, 3px 8px);
	}

	input[type='number'] {
		height: var(--height, 26px);
	}
}


// layers
.ct-layer {
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.02);
}

.ct-layer-controls {
	height: 38px;
}


// select
[data-design="inline"] {
	.ct-option-input,
	.ct-select-input {
		max-width: 130px;
	}
}


// divider
.ct-divider {

	&:before {
		content: '';
		display: block;
		height: 1px;
		background: #ddd;
	}

	&:not([data-type]) {
		margin: 30px 0;

		&:before {
			width: calc(100% + 24px);
			margin: 0 -12px;
		}
	}

	&[data-type="full-small"] {
		margin: 20px 0;

		&:before {
			width: calc(100% + 24px);
			margin: 0 -12px;
		}
	}

	&[data-type="small"] {
		margin: 25px 0;

		&:before {
			opacity: 0.8;
			width: calc(100% - 24px);
			margin: 0 12px;
		}
	}
}


// control with divider
[data-divider] {
	&:before, &:after {
		display: block;
		width: 100%;
		height: 1px;
		background: #ddd;
	}
}

[data-divider*="top"] {
	&:before {
		content: '';
		margin-bottom: 25px;
	}
}

[data-divider*="bottom"] {
	&:after {
		content: '';
		margin-top: 25px;
	}
}


// option heading divider
[data-label='heading-label'] {
	header > label {
		font-size: 13px;
		font-weight: 600;
		// color: #23282d;
		color: #484f56;
	}
}


// option notification
.ct-disabled-notification {
	display: flex;
	align-items: center;
	font-size: 11px;
	min-height: 28px;
	padding: 0 10px;
	// color: #fff;
	// border-radius: 2px;
	background: #fff;
	border-left: 2px solid rgba(14, 142, 204, 0.8);
	// background: rgba(14, 142, 204, 0.6);
	// box-shadow: 0px 10px 20px 0px rgba(14, 142, 204, 0.15);
}

.ct-notification {
	padding: 0 14px;
	margin-top: 20px;
}