@charset 'UTF-8';

h1 {
	font-family: 'Montserrat', sans-serif;
	color: #666666;
	font-weight: 700;
	font-size: 24px;
	padding: 16px 0px 0px 0px;
	text-align: center;
}

h2 {
	font-family: 'Montserrat', sans-serif;
	color: #666666;
	font-weight: 700;
	font-size: 18px;
	padding: 16px 0px 0px 0px;
	text-align: center;
}

p {
	font-family: 'Lato', sans-serif;
	color: #CCCCCC;
	text-align: center;
}

a {
	color: #AAAAAA;
}

body {
	background-color: #EEEEEE;
}

.title-container {
	background-color: #DDDDDD;
	display: block;
	padding: 0px 0px 2px 0px;
	border-radius: 4px 4px 0px 0px;
}

.app-container {
	margin:0 auto;
	width:95%;
	text-align: center;
	background-color: #FFFFFF;
	border-radius: 4px;
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
}

.about-box {
	margin:0 auto;
	width:95%;
	text-align: center;
	background-color: #FFFFFF;
	border-radius: 4px;
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
	position: absolute;
	top: 100px;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
}

.svg-container {
	width:95%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding: 55px 0px 30px 0px;
}

.about-box h1 {
	text-align: left;
	line-height: 12px;
	padding: 30px 15px 0px 15px;
}

.about-box h2 {
text-align: left;
line-height: 0px;
padding: 15px 30px 0px 30px;
}

.about-box p {
	color: #AAAAAA;
	padding: 0px 30px 0px 30px;
	text-align: left;
}

/* scaling */
@media (min-width: 600px) {
	.app-container {
		width:585px;
	}
	.about-box {
		width:585px;
	}
	.svg-container{
		width:80%;
	}


/* for the color picker buttons */
.colorbutton {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	border: none;
    padding: 20px 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    width: 110px;
    margin: 0px 2px;
    border-radius: 4px;
    cursor: pointer;
}

/* for the 'copy hex code' buttons */
.buttonhex {
	background: transparent;
    border: none;
    padding: 5px 5px;
    font-size: 16px;
    margin: 0px 2px;
    border-radius: 4px;
    cursor: pointer;
}

/* svg icon scaling */
.hex-icons{
	height: 20px;
}

.control-icons{
	height: 40px;
}

/* button alignment */
.buttoncol{
  width: 30%;
  margin: 0px 2px;
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 0px
}

/* for controller buttons like 'reset' 'about' etc */
.otherbutton {
	background-color : rgba(150,150,150,0.25);
	color : #999999;
    border: none;
    padding: 15px 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0px 4px 30px 4px;
    border-radius: 4px;
    width: 80px;
    cursor: pointer;
}

.buttonarea {
	width: 65%;
	display: inline-block;
	margin: 0px;
	padding: 2px;
}

.controlsarea {
	display: inline-block;
	margin: 16px;
	padding: 16px 0px 0px 0px;
}

/* TOOL TIPS */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 50px;
    font-family: 'Lato', sans-serif;
    background-color: #CCC;
    color: #fff;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: -70%;
    left: 50%;
    margin-left: -25px;
    opacity: 0;
    transition: opacity .75s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}