@charset "utf-8";
body, html {
	height: 100%;
	margin: 0 auto 20px auto;
}

/*==== Page 1 ===*/
/*logo*/
.navbar-brand {
	height: 90px;
}
/*footer*/
.well-sm {
	background: #ECF0F1;
}

/*==== Page 2 ===*/

#photo_list { min-height: 50px; }

#photo_list span {
	position: relative;
	display: inline-block;
	margin: 10px;
	vertical-align: top;
}

/*Thumbnails*/
.img-thumbnail {
	width: 150px;
	height: auto;
	overflow: hidden;
	margin: 10px;
}
.img-thumbnail:hover {
	display: inline-block;
	border: 8px solid #1ABC9C;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/*delet button*/
.del {
	background: #798D8F;
	color: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
	text-align: center;
	line-height: 18px;
	font-size: 16px;
	border: 3px solid #fff;
	padding: 0;
	margin: 0;
	text-decoration: none;
}
.del:hover {
	text-decoration: none;
	background: #E74C3C;
	color: #fff;
}


/*==== Page 3 ===*/
#canvas {
	padding: 0;
	margin: 10px 10px 10px 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #fff;
	border: 1px solid #7F9293;
	max-width: 500;
	max-height: 500;
	height: 100%;
	-ms-touch-action: none;
  	touch-action: none;
}
/*save popup*/
#dnld-img {
	max-width: 80%;
	max-height: 80%;
	margin-top: 20px;
	text-align: center;
	float: none;
	border: 5px solid #7F9293;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 0; 
}
#toggle-img {
	width: 100%;
	margin: 20px auto;
	text-align: center;
	display: none;
}

/*download buttons*/
.btn-group, .btn-group-vertical {
	display: inline;
}
.dnld {
	margin-top: 20px;
}
button span {
	margin-right: 5px;
}

/*Colors*/

.active {
	border: 3px solid #7F9293 !important;
}
#red, #orange, #yellow, #green, #blue, #purple, #black, #white {
	width: 22px;
	height: 22px;
	border: 1px solid #7F9293;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
#logos [id^="logo"]{
	width: 50px;
	padding: 2px;
	border: 3px solid #fff;
	background: #fff;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	-webkit-border-radius: 5px;
	margin: 2px;
	cursor:pointer;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#red {
	background: red;
}
#orange {
	background: orange;
}
#yellow {
	background: yellow;
}
#green {
	background: green;
}
#blue {
	background: blue;
}
#purple {
	background: purple;
}
#black {
	background: black;
}
#white {
	background: white;
}

/*js and css by Delilah Dunn*/