.color-picker-wrapper {
	position: absolute;
	z-index: 2;
}

	.color-picker-cover {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}

	// I know it seems incredibly hacky but it's the only way I could get it to work
	.color-picker-cover + div[class*="-picker"] {
		position: absolute;
		z-index: 150;

		> div {
			position: relative;
			z-index: 150;
		}
	}


