
@import 'dropzone.css';

* {
	box-sizing: border-box;
}

@font-face {
    font-family: 'TWKEverett';
    font-style: normal;
    font-weight: 400;
    src: url('../ttf/twkeverett-regular-web-2.ttf') format('ttf'),
        url('../woff2/twkeverett-regular-web-2.woff2') format('woff2'),
        url('../woff/twkeverett-regular-web-2.woff') format('woff');
}

body {
	font-family: "TWKEverett", Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #1E1E1E;
	color: white;
}
h1, h2, h3, h4, p {
	font-family: "TWKEverett", Helvetica, sans-serif;
}

.logo-svg {
	display: block;
	margin: 2rem auto 0;
	height: 100px;
	width: 100px;
}

.cls-1 {
	fill: #f6ff00 !important;
}

.cls-2 {
	fill: black !important;
}

.container {
	margin: 0 3rem;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}
.row:nth-child(2) {
	margin-bottom: 0;
}

.row.mb {
	margin-bottom: 2em;
}

.column {
	text-align: center;
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 1;
}

.col-1 {
	max-width: calc(100% / 12);
}
.col-2 {
	max-width: calc(100% / 12 * 2);
}
.col-3 {
	max-width: calc(100% / 12 * 3);
}
.col-4 {
	background-color: #4E008E;
	max-width: calc(100% / 12 * 4);
}
.col-5 {
	max-width: calc(100% / 12 * 5);
}
.col-6 {
	max-width: calc(100% / 2);
}

.col-7 {
	max-width: calc(100% / 12 * 7);
}

.col-8 {
	background-color: #C7C1BA;
	max-width: calc(100% / 12 * 8);
}


@media screen and (max-width: 768px) {
	.container {
		overflow: auto;
	}

	.column {
		min-width: 100%;
		width: 100%;
	}
}

h2 {
	font-size: 2em;
	margin: 0 0 10px 0;
	text-align: left;
	display: block;
}

	h2 span {
		display: inline-block;
		width: 43px;
		height: 43px;
		background-color: white;
		color: #1E1E1E;
		border-radius: 50%;
		text-align: center;
	}

p {
	text-align: left;
}

.upload,
.grad-select,
.working-area {
	padding: 20px;
	height: 100%;
}
.upload {
	display: flex;
	flex-direction: column;
	padding: 0;
}
.upload h2,p {
	padding: 20px;
}

.grad-select {
	background-color: white;
	color: black;
}
.grad-select h2 span {
	background-color: #4E008E;
	color: white;
}

.working-area canvas {
	margin: 0 auto;
}

#temp-canvas,
#full-image {
	position: absolute;
	top: -999999px;
	left: -999999px;
}

.button {
	display: inline-block;
	padding: 15px;
	/* background-color: #1E1E1E; */
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}

.grad-select a {
	display: block;
	border: 3px solid transparent;
}

.grad-select a.active,
.grad-select a:hover {
	border: 3px solid white;
}

.grad-select a img {
	display: block;
	width: 100%;
}

.hide-content {
	opacity: 0;
	transition: opacity 250ms;
}

.show-content {
	opacity: 1;
}


.title {
	font-weight: 400;
	margin: 1% auto 0;
	text-align: center;
}


.dropzone {
	background-color: #673AB7;
	border: 0;
	font-size: 1.5rem;
	/* color: #1E1E1E; */
	margin: 0 auto;
	max-width: 660px;
	text-align: center;
	transition: all 0.25s ease;
	overflow-y: auto;
	height: 300px;
}

.dropzone .dz-preview {
	margin: 5px 0;
}

.dropzone:hover {
	background-color: #F6FF02;
	color: black;
}

.dropzone .note {
	font-size: 1rem;
	font-weight: 500;
	display: block;
	margin-top: 1.4rem;
}

.dropzone .dz-message {
	line-height: 2em;
}

.dz-button {
	line-height: 2;
}

.dz-button span {
	background-color: white;
	border-radius: 50px;
	color: #1E1E1E;
	display: inline-block;
	padding: 16px 32px 16px 80px;
	margin: 1.5rem 0 0;
	position: relative;
	text-transform: uppercase;
	transition: all 0.3s ease;
	line-height: 1.75;
	width: 100%;
}
.dz-button span::before {
	content: '';
	height: 35px;
	width: 37px;
	background-image: url("data:image/svg+xml,%3Csvg width='35' height='32' viewBox='0 0 35 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 1L33 16L18 31' stroke='black' stroke-width='2'/%3E%3Cpath d='M0 16L33 16' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
	background-size: cover;
	position: absolute;
	left: 10px;
	top: calc(50% - 18.5px);
	transition: ease 0.3s;
}

.dz-button span:hover {
	background-color: black;
	color: white;
}
.dz-button span:hover::before {
	background-image: url("data:image/svg+xml,%3Csvg width='35' height='32' viewBox='0 0 35 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 1L33 16L18 31' stroke='white' stroke-width='2'/%3E%3Cpath d='M0 16L33 16' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.button {
	background-color: white;
	border-radius: 50px;
	color: #1E1E1E;
	font-size: 1.5rem;
	font-weight: 400;
	padding: 16px 32px 16px 80px;
	color: $white;
	position: relative;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.button::before {
	content: '';
	height: 35px;
	width: 37px;
	background-image: url("data:image/svg+xml,%3Csvg width='35' height='32' viewBox='0 0 35 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 1L33 16L18 31' stroke='black' stroke-width='2'/%3E%3Cpath d='M0 16L33 16' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
	background-size: cover;
	position: absolute;
	left: 10px;
	top: calc(50% - 18.5px);
	transition: ease 0.3s;
}

.button:hover {
	background-color: #F6FF02;
}

.dropzone .dz-preview .dz-image {
	border-radius: 0;
}

.dropzone .dz-preview.dz-image-preview {
	background-color: transparent;
	border-radius: 0;
}

.dropzone.dz-clickable {
	height: 100%;
	margin: 0;
}
.dropzone.dz-clickable * {
	cursor: pointer;
}

#working-image {
	padding: 1rem 0;
	width: 100%;
}

#working-image.holding {
	width: 100%;
	height: 400px;
}

.footer hr {
	border: 0;
	margin-bottom: 1em;
}

.footer p {
	font-size: 0.6em;
	text-align: center;
	margin-top: 0;
}

.footer p a {
	color: #B3B3B3;
}
