/* kernels */
.kernelItem
{
    /*background-color: white;*/
    /*padding:0.5vw;*/
    font-size:1vw;
    text-align: center;
    transition-duration:0.25s;
    user-select:none;
}

.kernelContainer {
	display: grid;
	grid-template-columns: repeat(5, 0.25fr);
	grid-template-rows: repeat(5, 0.25fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.matrixContainer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

#sliderInputDiv
{
	/*position:fixed;*/
	/*left:calc(var(--mouse-x, 0) * 100%);
	top:calc(var(--mouse-y, 0) * 100%);*/
}

.kernelRow
{
}

.kernelValue:hover
{
    background-color:rgb(238, 238, 252);
    transition-duration:0.25s;
}

.kernel
{
    background-color:rgb(236, 236, 247);
    /*margin:1vw;*/
    border:solid 2px rgb(168, 168, 168);
}

/* color palette */



h1 {
	height: 120px;
	line-height: 120px;
	text-align: center;
}
.vc-chrome {
	top: 35px;
	right: 0;
	z-index: 9;
}
.current-color {
	display: inline-block;
	width: 16px;
	height: 16px;
	padding:0px;
	margin:0px;
	background-color: #000;
	cursor: pointer;
}

body 
{
	background-color:#eeeeee;
}

#description
{
	overflow-wrap: break-word;
	word-wrap:break-word;
}

#outputDiv
{
	max-width: min-content;
}

/*
input[type="color"]
{
	opacity: 0;
	-webkit-appearance: none; 
    -moz-appearance: none; 
    appearance: none;
	width:20px;
	height:20px;
	padding:0;
	margin:0;
	border:0;
	outline:none;
	background:none;
}
*/

::-moz-color-swatch{
	border:none;
	outline:none;
    margin-bottom:none;
}

input[type="color"]::-moz-color-swatch {
  border: none;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 1px;
    border-radius: 0;
  }

input[type="color"]::-webkit-color-swatch {
  border: none;
}

.footer {
	margin-top: 20px;
	text-align: center;
}


.color-row {
    border:0;
    margin:0;
    display:inline-block;
}

.kernelContainer
{
	/*display: grid;
	/*grid-auto-rows: 0.5fr;
  	grid-template-columns: repeat(5, 0.5fr);
	*/

	background-color:rgb(236, 236, 247);
	margin:1vw;
}

a
{
	text-decoration:underline;
	text-underline-offset: 1;
	color:green;
}

