/*UNIVERSAL*/

body {
	margin: 0px;
	padding: 0px;
  	font-family: arial; sans-serif;
  	background-color: /*white;*/ #E8E8E8;
}

div.header_container {
	position: relative;
	width: 100%;
	height: 50px;
	background-color: transparent;
}

div.header {
	position: fixed;
	width: 100%;
	background-color: white;
	height: 50px;
	top: 0;
	left: 0;
	vertical-align: center;
	/*border-bottom: 2px solid black;*/
}

div.link_container {
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translate(0, -50%);
}

img.header {
	height: 75%;
	position: absolute;
	top: 50%;
	left: 6px;
	transform: translate(0, -50%);
}

#more_hider {
	display: none;
}

div.sizestable table tr td {
	border: 1px solid black;
	padding: 5px;
}

table.sizestable {
	border-collapse: collapse;
}

div.loading {
	background-image: url(images/loading.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40px;
}

div.loading2 {
	background-image: url(images/loading2.png);
	background-position: top;
	background-repeat: no-repeat;
	background-size: 200px;
	height: 1000px;
}

p.header {
	padding-right: 12px;
	float: right;
	color: black;
}

p.cursorclick {
	cursor: pointer;
	color: white;
}

div.popupdiv {
	position: fixed;
	display: none;
	background-color: black;
	left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
	top: 50px;
	/*left: 5%;*/
	width: 90%;
	max-width: 1025px;
	height: 100vh;
}

p.popupdivheader {
	color: white;
	font-weight: bold;
}

div.popupform {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.7);
	color: white;
}

p.whitetext {
	color: white;
}

a.whitetext {
	color: white;
}

input.formelement {
	background-color: white;
	color: black;
	border: none;
	height: 20px;
}

input.email {
	background-color: white;
	color: black;
	border: none;
	height: 20px;
}

img.formheader {
	height: 10vh;
	margin: 6px;
	margin-top: 5%;
}

div.popuptext {
	width: 90%;
	overflow: scroll;
}

select.selectmenu {
	background-color: white;
	border: 2px white;
	width: 75px;
}

a.sizeselect {
	padding: 5px;
	cursor: pointer;
}

a.sizeselect:hover {
	background-color: grey;
	color: black;
}

div.productdivs {
	width: 90%;
	padding-left: 5%;
}

a.fa fa-instagram {
	color: white;
}

a {
	color: white;
	text-decoration: none;
}

#products {
	width: 100vw;
	display: flex;
	flex-wrap: wrap;
	margin-top: 70px;
	justify-content: center;
	min-height: calc(100vh - 70px);
	align-items: space-between;
}

.product_container {
	width: 25vw;
	margin-top: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product_img {
	max-width: 90%;
	max-height: 90%;
}

#tablesticker {
	width: 70%;
}

#more {
	width: 200px;
	height: calc(100vh - 50px);
	background-color: black;
	position: fixed;
	right: -200px;
	top: 50px;
	display: none;
	z-index: 999;
}

.container {
	width: 100%;
	height: 100%;
	position: relative;
}

.more_links {
	position: absolute;
	left: 50%;
	top: 40px;
	transform: translate(-50%, 0);
}

.closemenu {
	color: white;
	cursor: pointer;
	position: absolute;
	left: 20px;
	top: 0px;
}

.copyright {
	color: white;
	font-size: 8px;
	position: absolute;
	bottom: 5px;
	right: 20px;
}

.logo {
	height: 50px;
	position: absolute;
	bottom: 10px;
	left: 20px;
}

.product_page {
	margin-top: 60px;
	margin-bottom: 60px;
	background-image: url(images/loading3.png);
	background-position: 50% 100px;
	background-repeat: no-repeat;
	background-size: 200px;
	min-height: calc(100vh - 50px);
	max-width: 90vw;
}

.back_button {
	color: black;
}

.back_button_link {
	width: 100%;
	text-align: left;
}

@media only screen and (max-width: 1050px) {
	.product_container {
		width: 33.333vw;
	}
}

@media only screen and (max-width: 850px) {
	.product_container {
		width: 50vw;
	}
}

@media only screen and (max-width: 650px) {
	.product_container {
		width: 100vw;
	}
}

@media only screen and (max-width: 950px) {
	.nonmobile {
		display: none;
	}
}
@media only screen and (min-width: 951px) {
	.mobile {
		display: none;
	}
}

/*END*/