/* CSS Document */
/*
//The author of the work retains full ownership rights to the source-code contained here within.
Any unauthorised copy, replication, reuse and / or distrution of any of this work, 
in part or full will be cited as an illigal infraction of the owner's copyright.
//Author: Alexis Alexander
//Dated: May 2021
*/
* {
	box-sizing: border-box;
	flex-direction: column;
}
body, main {
	margin: 0px;
	padding: 0px;
	font-family: 'Oswald';
	color: rgba(51,51,51,1.00);
}
#loadScreen {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 10;
	top: 0px;
	width: 100%;
	height: 100%;
	margin: 0px;
	background: rgba(1,204,255,1.00);
}
#loading {
	width: 30px;
	height: 30px;
	border: 5px solid rgba(255,255,255,1.00);
	border-left-color: rgba(255,255,255,0.50);
	border-bottom-color: rgba(255,255,255,0.25);
	border-right-color: rgba(255,255,255,0.10);
	border-radius: 100%;
	animation: spin 600ms infinite linear;
	-moz-animation: spin 600ms infinite linear;
	-webkit-animation: spin 600ms infinite linear;
}
#overlay {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-content: center;
	position: fixed;
	width: 100vw;
	height: 100vh;
	background-color: rgba(1,204,255,1.00);
}
.viewWindow {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 98vw;
	height: 98vh;
	padding: 5px;
	background-color: rgba(255,255,255,1.00);
}
.viewwWindow #close {
    margin: 0px;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
	color: rgba(0,0,0,1.00);
}
.viewWindow .viewContent {
	display: flex;
	justify-content: space-around;
	overflow: hidden;
	padding: 10px;
	padding-top: 0px;
}
.viewContent img {
	width: 100%;
	height: auto;
}
.cookieBanner {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	position: fixed;
	z-index: 9;
	padding: 10px;
	top: auto;
	left: 0px;
	bottom: 0px;
	width: 100%;
	background-color: rgba(255,233,132,1.00);
}
.cookieBanner .cookieContainer {
    margin: 0px;
    padding: 5px;
    color: rgba(255,255,255,1.00);
    text-align: center;
    flex-wrap: nowrap;
}
.cookieBanner .cookieContainer .button {
    padding: 5px 10px;
    margin: 5px;
    background-color: rgba(1,204,255,1.00);
    border: 1px solid rgba(255,255,255,1.00);
	float: right;
}
.cookieBanner .cookieContainer p {
	color: rgba(255,255,255,1.00);
	padding: 2px;
}

.button, .button-clear {
	display: inline-block;
	padding: 10px;
	margin: 5px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 2px;
}

.button {
	cursor: pointer;
	background-color: rgba(1,204,255,1.00);
	color: rgba(255,255,255,1.00);
}
.button-clear {
	background-color: transparent;
	border: 1px solid rgba(255,255,255,1.00);
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0px;
	margin-bottom: 5px;
	line-height: 1em;
	font-family: 'Neon';
}
h1 {
	font-size: 3em;
	padding: 0px;
	margin: 5px 0px;
}
h4 {
	font-family: "";
}
p {
    margin: 0px;
    padding: 0px;
}
sup, absolute_artz-su {
	font-size: 1em;
}
a {
	color: rgba(1,204,255,1.00);
	text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: rgba(250,230,184,1.00);
}
a.link {
	color: rgba(255,255,255,1.00);
	text-decoration: none;
	cursor: pointer;
}
main {
	display: flex;
	flex-direction: column;
	min-width: 320px;
	min-height: 200px;
}
.infoBar {
	display: flex;
	justify-content: center;
	padding: 2vh  0vw;
	background-image: url(/img/bar-bg.jpg);
	background-size: cover;
	background-position: center center;
	flex-direction: row;
}
.infoBar a {
    font-family: 'Neon';
    color: rgba(244,202,20,1.00);
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.60);
}
.infoBar a em {
	font-size: 1.2em;
	padding: 0px;
	margin: 0px;
	line-height: 0em;
}
.decals a {
    display: inline-block;
    min-width: 200px;
	min-height: 90px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
header {
    display: flex;
    flex-direction: row;
    width: 100%;
	background-size: cover;
    background-image: none;
}
absolute_artz-logo {
	display: flex;
	margin: 10px 0px;
	min-width: 40%;
	min-height: 80px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(/img/absolute_artz-logo-landscape.png);
}
nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    min-width: 60%;
	padding: 10px;
	align-self: center;
}
nav a {
    font-size: 1.2em;
    display: block;
    text-decoration: none;
    color: rgba(1,204,255,1.00);
    text-transform: uppercase;
}
nav a:hover {
    color: rgba(250,230,184,1.00);
}
content {
    display: flex;
	flex-direction: column;
    justify-content: center;
	text-align: center;
    min-height: 400px;
	height: auto;
	margin: 0px;
	padding: 0px;
	background-image: url("../img/container_bg.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
content img {
	height: auto;
}
.contents {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: auto;
	padding: 0px;
	box-sizing: border-box;
}
section {
    /* [disabled]display: flex; */
    /*padding: 10px 10vw;
    /* [disabled]flex-direction: column; */
}
article {
    display: flex;
    flex-direction: column;
}
article img {
    max-width: 100%;
    height: auto;
}
iframe {
	border: 0; 
	display: block; 
}
absolute_artz-slideshow {
	margin: 0;
	padding: 0;
	justify-content: center;
	align-content: center;
	text-shadow: -1px 1px 3px rgba(0,0,0,.80);
	background-color: rgba(53,178,255,1.00);
	position: relative;
	z-index: 0;
	width: 100vw;
	min-height: auto;
}
absolute_artz-slide {
	position: relative;
	display: none;
	z-index: 1;
	margin: 0px;
	padding: 0px;
}
absolute_artz-slide img {
	background-size: contain;
	width: 100vw;
	height: auto;
	padding: 0px;
	margin: 0px;
}
absolute_artz-slide .caption {
	color: rgba(255,255,255,1.00);
	font-size: 15px;
	position: relative;
	text-align: center;
	top: 30%;
	margin: 0px auto;
	width: 100%;
}
absolute_artz-slide h1 {
	font-size: 4em;
	font-family: 'Woodcutter';
	text-shadow: 0px 1px 2px rgba(0,0,0,1.00);
}
absolute_artz-slide p {
	font-size: .9em;
	margin: 0px 20px;
}
absolute_artz-tab {
	position: absolute;
	z-index: 3;
	bottom: 10px;
	display: flex;
	flex-direction: row;
	width: 100vw;
	justify-content: center;
}
a.prev, a.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	user-select: none;
	z-index: 2;
	}
a.prev {
	left: 0vw;
	border-radius: 0 3px 3px 0;
}
a.next {
	right: 0vw;
	border-radius: 3px 0 0 3px;
}
a.prev:hover, a.next:hover {
	background-color: rgba(0,0,0,0.8);
}
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: rgba(79,38,7,1.00);
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
	border: 1px solid rgba(247,163,13,1.00);
}
.active, .dot:hover {
	background-color: rgba(247,163,13,1.00);
	position: relative;
	display: inline-block;
}
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1s;
	animation-name: fade;
	animation-duration: 1s;
}

absolute_artz-slide#home {
	background-image: url("");
}
absolute_artz-slide.home {
	background-image: url("../img/");
}
absolute_artz-slide.shed {
	background-image: url("../img/");
}
absolute_artz-slide.benches {
	background-image: url("../img/");
}
absolute_artz-slide.fence {
	background-image: url("../img/");
}
absolute_artz-slide.planter {
	background-image: url("../img/");
}
absolute_artz-slide.timber {
	background-image: url("../img/");
}

absolute_artz-heading {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 10px 50px;
	width: 100%;
	color: rgba(255,255,255,1.00);
    text-shadow: -1px 1px 3px rgba(0,0,0,.80);
}
absolute_artz-section {
	display: flex;
    justify-content: center;
    align-content: center;
	flex-wrap: nowrap;
    color: rgba(1,204,255,1.00);
	background-color: rgba(255,255,255,1.00);
    border: 1px solid rgba(1,204,255,1.00);
    border-radius: 10px 10px 0px 0px;
    padding: 5px 10px 5px;
	margin: 0px;
	width: 20vw;
}
absolute_artz-fold {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
}
absolute_artz-fold section {
	justify-content: space-around;
	flex-direction: column;
	align-items: center;
	flex-wrap: nowrap;
}
absolute_artz-fold section article {
	padding: 0px;
	margin: 0px auto;
}
absolute_artz-section.selected {
	color: rgba(255,255,255,1.00);
	background-image: url("");
	background-position: top;
}
absolute_artz-fold section.column  {
	flex-direction: column;
}
footer {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-content: center;
	color: rgba(255,255,255,1.00);
	background-color: rgba(68,68,68,1.00);
	padding: 15px 0px 0px;
}
a#footer-logo {
	background-image: url("../img/logo-footer.png");
}
a#footer-logo:hover {
	background-image: url("../img/logo-footer_hover.png");
}
a#payment-logo {
	background-image: url("../img/logo-payment.png");
}
a#payment-logo:hover {
	background-image: url("../img/payment_logos.png")
}
.social-media {
	/* [disabled]padding: 10px; */
	margin: 20px 0px;
	flex-direction: row;
	justify-content: space-between;
}
.social-media a {
	display: inline-block;
	width: 50px;
	height: 40px;
}
a#facebook {
	background-image: url(../img/social/facebook.png);
}
a#facebook:hover {
	background-image: url("../img/social/facebook_hover.png");
}
a#twitter {
	background-image: url("../img/social/twitter.png");
}
a#twitter:hover {
	background-image: url("../img/social/twitter_hover.png");
}
a#instagram {
	background-image: url("../img/social/instagram.png");
}
a#instagram:hover {
	background-image: url("../img/social/instagram_hover.png");
}
a#linkedin {
	background-image: url("../img/social/linkedin.png");
}
a#linkedin:hover {
	background-image: url("../img/social/linkedin_hover.png");
}
#address {
	flex-wrap: wrap;
	text-align: center;
	padding: 4vh 2vw;
	justify-content: space-around;
}
absolute_artz-legal {
	display: flex;
	justify-content: space-around;
	flex-wrap: nowrap;
	font-size: .9em;
	padding: 1vh 5vw 1vh;
	background-color: rgba(51,51,51,1.00);
	/* [disabled]width: 100vw; */
}
absolute_artz-legal ul {
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-direction: row;
	/* [disabled]width: 100vw; */
	align-content: space-around;
	align-items: center;
}
absolute_artz-legal ul li {
    text-decoration: none;
    display: inline-block;
    margin: 0px auto;
    padding: 5px;
}
#bottom, #company {
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 5px;
	font-size: 0.8em;
	color: rgba(255,255,255,1.00);
	background-color: rgba(34,34,34,1.00);
}
#bottom p, #company p {
	margin: 0px;
	padding: 0px;
}
form {
	padding: 0vh 1vw;
	display: flex;
	margin: 0vh 5vw;
	flex-direction: column;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
form input, form select, form textarea {
	padding: 10px 5px;
	border: 2px solid rgba(62,62,62,1.00);
	border-radius: 4px;
	margin: 3px 0px;
}
fieldset  {
    /* [disabled]display: flex; */
    /* [disabled]flex-direction: row; */
    /* [disabled]justify-content: space-between; */
    /* [disabled]align-items: center; */
    /* [disabled]flex-wrap: nowrap; */
}
form fieldset label {
    display: inline-block;
    padding: 0px 10px;
    flex-direction: column;
    width: 49%;
    /* [disabled]min-width: 40vw; */
    /* [disabled]max-width: 50vw; */
	
}
#subject, #message {
	font-weight: normal;

}
select {
	padding: 5vh 1vw;
	color: rgba(103,103,103,1.00);
	background-color: rgba(255,255,255,1.00);
}
textarea {
	max-height: 30vh;
	min-width: 25vh;
	font-weight: normal;
	text-decoration: none;
}
button {
	margin: 5px;
	padding: 10px;
	align-content: center;
	border: none;
	color: rgba(255,255,255,1.00);
	cursor: pointer;
	appearance: none;
	text-transform: uppercase;
	font-weight: bold;
	background-color: rgba(1,204,255,1.00);
}
.invalid {
	background-color: rgba(255,228,228,1.00);
	background-image: url(../img/asterik.png);
	background-size: contain;
	background-position: right center;
	background-repeat: no-repeat;
}
.valid {
	background-color: rgba(228,255,228,1.00);
}
.message {
	color: rgba(1,204,255,1.00);
	padding: 2px;
}
form fieldset input {

}

@media (max-width : 480px ) {
	
	.cookieBanner {
		padding: 5px;
	}
	.cookieBanner .cookieContainer {
		padding: 5px;
	}
	.cookieBanner .cookieContainer .button {
		padding: 5px 5px;
		margin: 5px;
	}
	.cookieBanner .cookieContainer p {
		padding: 2px;
		font-size: 0.8em;
	}
	#top {
		padding: 2vh 2vw;
	}
	header {
		flex-direction: row-reverse;
	}
	em {
		font-size: 1.2em;
		line-height: 0.8em;
	}
	absolute_artz-logo {
		padding: 5px;
		min-width: 75vw;
	}
	nav {
		min-width: 30vw;
		font-size: .8em;
		max-height: 20vw;
		/* [disabled]justify-content: space-around; */
		background-image: url("../img/threelines.png");
		background-size: contain;
		background-position: center center;
		padding: 2vw;
		background-repeat: no-repeat;
		background-origin: content-box;
	}
	.nav a {
		/* [disabled]padding: 2px 5px; */
		color: rgba(255,255,255,1.00);
		visibility: hidden;
	}
	.nav-show {
		position: fixed;
		min-width: 100vw;
		font-size: .8em;
		min-height: 100vh;
		background-image: none;
		background-color: rgba(51,204,204,0.9);
		flex-direction: column;
		align-items: center;
		top: 0px;
		justify-content: center;
	}
	.nav-show a {
		color: rgba(51,204,204,1.0);
		padding: 3vh 3vw;
		visibility: visible;
		background-color: rgba(255,255,255,1.0);
		margin: 1vh 5vw;
		width: 84vw;
	}
	absolute_artz-slide {
		padding: 30px;
	}
	absolute_artz-slide h1 {
		font-size: 2.2em;
	}
	absolute_artz-slide p {
		font-size: 1.2em;
		padding: 10px 5px;
	}
	#menu {
		padding: 5px 10px;
	}
	#menu h1 {
		font-size: 1.8em;
	}
	#menu p {
		font-size: 0.9em;
		padding: 0px 10px;
	}
	absolute_artz-item absolute_artz-title {
		font-size: 1.6em;
		padding: 2px;
	}
	absolute_artz-selection {
		font-size: 0.9em;
	}
	footer {
		padding: 20px 0px 0px;
		justify-content: space-around;
	}
	#footerForm {
		padding: 20px 0px 0px;
		justify-content: space-between;
	}
	absolute_artz-fold {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	absolute_artz-fold section {
		text-align: center;
		flex-direction: column;
		align-items: center;
	}
	absolute_artz-fold section article {
		min-width: 25vw;
		/* [disabled]max-width: 100vw; */
		text-align: center;
		padding: 5px;
		justify-content: center;
		flex-direction: column;
	}
	#address {
		padding: 1vh 2vw;
	}
	article.social-media {
		justify-content: space-around;
	}
	absolute_artz-company {
		font-size: .8em;
	}
	absolute_artz-legal {
		font-size: .8em;
		flex-direction: row;
	}
	absolute_artz-legal ul {
		
	}
	absolute_artz-legal ul li {
		cursor: pointer;
	}
	absolute_artz-legal ul, #company p, #bottom p {
		font-size: 0.9em;
	}
	#company, #bottom {

	}
	.full {
		flex-direction: row;	
	}

}
@media ( min-width : 481px ) and (max-width : 919px ){
	
	header {
		flex-direction: column;
	}
	absolute_artz-logo {
		min-width: 100%;
	}
	nav {
		padding: 0px;
		min-width: 100%;
		font-size: 1em;
	}
	nav a {
		padding: 2px 5px;
	}
	absolute_artz-slide {
		padding: 20px 30px;
	}
	absolute_artz-slide h1 {
		font-size: 3em;
	}
	absolute_artz-slide p {
		font-size: 1.4em;
		padding: 25px 10px;
	}
	footer {
		
	}
	#footer {
		margin: 0vh 0vw 2vw;
		min-width: 40vw;
	}
	#address {

	}
	absolute_artz-fold   {
		flex-direction: row;
		justify-content: space-around;
		align-items: stretch;
	}
	absolute_artz-fold section {
		text-align: center;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
		padding: 1vh 2vw;
	}
	absolute_artz-fold section article .column {
		flex-direction: column;
		justify-content: flex-start;
	}
	absolute_artz-legal {
		width: 100vw;
	}
	absolute_artz-legal ul {

	}
	absolute_artz-legal ul li {

	}
	.map {
		height: 200px;
	}
	#footerForm {
	margin: 0vh 2vw 2vh;
	justify-content: space-around;
	}
}
@media (min-width: 920px) {
	absolute_artz-slide {
		padding: 60px;
	}
	absolute_artz-slide h1 {
		font-size: 4em;
	}
	absolute_artz-slide p {
		font-size: 1.7em;
		padding: 30px 5px;
	}
	article {
		/* [disabled]display: flex; */
		justify-content: space-around;
		/*width: 25vw; */
		text-align: center;
	}
	absolute_artz-fold {
		flex-direction: row;
		justify-content: space-between;
		align-items: stretch;
		flex-wrap: nowrap;
	}
	absolute_artz-fold section {
		text-align: center;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-content: center;
		padding: 2vh 5vw;
	}
	absolute_artz-fold section article .column {
		flex-direction: column;
		justify-content: flex-start;
	}
	absolute_artz-legal {
		width: 100vw;
	}
	absolute_artz-legal ul {

	}
	absolute_artz-legal ul li {

	}
	absolute_artz-item absolute_artz-title {
		font-size: 3em;
		padding: 2px;
	}
	.map {
		height: 200px;
	}
	#footerForm {
		margin: 0vh 2vw 2vh;
		justify-content: space-between;
		min-width: 40vw;
	}
}

@-moz-keyframes spin {
	100% {
		-moz-transform:rotate(360deg);
        transform: rotate(360deg);
	}
}
@-webkit-keyframes spin {
	100% {
		-webkit-transform:rotate(360deg);
        transform:rotate(360deg);
	}
}
@keyframes spin {
	100% {
		transform:rotate(360deg);
	}
}
@-webkit-keyframes fade {
	from {
		opacity: 0.4;
	}
	to {
		opacity: 1.0;
	}
}

@keyframes fade {
	from {
		opacity: 0.4;
	}
	to {
		opacity: 1.0;
	}
}

@font-face {
	font-family: 'Neon';
	src: url('../webfonts/neon.ttf') format('truetype');
}
@font-face {
	font-family: 'Oswald';
	src: url("../webfonts/oswald.ttf") format('truetype');
}