@charset "UTF-8";
/* CSS Document */

* {
	box-sizing: border-box; 
}

html {
	font-family: neue-haas-grotesk-text, sans-serif;
}

body {
	/* 1EM = 10PX */
	font-size: 62.5%; 
	margin: 0;
}

h1 { 
	font-size: 5.0em;
}

h2 { 
	font-size: 3em;
	text-transform: uppercase;
}

h3 { 
	font-size: 1.2em;
}

h4 { 
	font-size: 1.5em;
	font-weight: 500;
	margin-top: 7px;
	margin-bottom: 9px;
}

p { 
	font-size: 1.2em;
}

[class*="col-"] {
	float: left; 
}

.row::after {
	content: "";
	clear: both;
	display: block; 
	margin: 0 0 0em 0
}

.content {
	width: 80%;
	margin: 0 auto; 
	padding-top: 0em;
}

.box {
	min-height: 150px;
	padding: 1.5em;
	color: #ffffff;
	text-align: center;
	margin: 0 0 0em 0;  
}

.box-no-minimum {
	padding: .1em;
	color: #ffffff;
	text-align: center;
	margin: 0 0 0em 0;  
}

.BG-primary { background-image: linear-gradient(to right, #3174E1 0%, #40BBEE 100%);}
.BG-secondary { background-color: #D3DEEF;}
.BG-tertiary {background-color: #EEF4FA;}
.BG-white { background-color: #ffffff;}
.BG-black { background-color: #000000;}

/* ----------------------------- NAVIGATION - START ----------------------------- */

.nav {
	background-color: #fff;
	position: fixed;
	width: 100%;
	z-index: 3;
	box-shadow: 0 0px 40px -14px rgba(0, 0, 0, 0.10);
}

.nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	background-color: #fff;
}

.nav li a {
	font-size: 1.5em;
	font-weight: 500;
	text-transform: uppercase;
	display: block;
	padding: 15px 20px;
	height: 50px;
	line-height: 20px;
	color: #000;
	text-decoration: none;
	transition: 0.5s;
}

.nav li a:hover,
.nav .menu-btn:hover {
	background-color: #D3DEEF;
	transition: 0.5s;
}

.nav .logo {
	display: block;
	float: left;
	padding: 7px 20px;
}

.logo {
	height: 50px;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 10px;
	width: auto;
	float: left;
	transition: 0.5s;
}

.logo:hover {
	opacity: 70%;
	transition: 0.5s;
}

.nav .menu {
	clear: both;
	max-height: 0;
	transition: max-height 0.2s ease-out;
}

.nav .menu-icon {
	cursor: pointer;
	display: inline-block;
	float: right;
	padding: 26px 25px;
	position: relative;
	user-select: none;
}

.nav .menu-icon .navicon {
	background: #3174E1;
	display: block;
	height: 4px;
	position: relative;
	transition: background 0.2s ease-out;
	width: 28px;
}

.nav .menu-icon .navicon:before,
.nav .menu-icon .navicon:after {
	background: #3174E1;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all 0.2s ease-out;
	width: 100%;
}

.nav .menu-icon .navicon:before {
	top: 10px;
}

.nav .menu-icon .navicon:after {
	top: -10px;
}

.nav .menu-btn {
	display: none;
}

.nav .menu-btn:checked ~ .menu {
	max-height: 300px;
}

.nav .menu-btn:checked ~ .menu-icon .navicon {
	background: transparent;
}

.nav .menu-btn:checked ~ .menu-icon .navicon:before {
	transform: rotate(-45deg);
}

.nav .menu-btn:checked ~ .menu-icon .navicon:after {
	transform: rotate(45deg);
}

.nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
	top: 0;
}

@media (min-width: 900px) {	
	
	.nav li {
	float: left;
	}
	
	.nav li a {
	padding: 20px 30px;
	  height: 60px;
	  margin: 0;
	}
	
	.nav .menu {
	clear: none;
	float: right;
	max-height: none;
	}

	.nav .menu-icon {
	display: none;
	}
	
}

.space-after-nav {
	height: 60px;
}

/* ----------------------------- NAVIGATION - SLUT ----------------------------- */


/* ----------------------------- HERO PAGE - START ----------------------------- */

ul {
	padding: 0;
	list-style: none;
}

ul:after {
	content: "";
	display: block;
	clear: both;
}

#container {
	width: 100%;
}

#slider-container {
	width: 100%;
	position: relative;
	overflow: hidden;
}

#slider-container ul li {
	float: left;
}

#slider-container ul li img {
	width: 75%;
	float: left;
	margin-left: 12.5%;
}

#slider-container .arrow {
	display: block;
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	transform: translateY(-50%) scale(1);
	cursor: pointer;
}

#slider-container .arrow:before, #slider-container .arrow:after {
	content: "";
	display: block;
	width: 34px;
	height: 1px;
	position: absolute;
	background: white;
	border-top: 1px solid grey;
}

@media (max-width: 680px) {
	#slider-container .arrow {
	transform: translateY(-50%) scale(0.5);
	}
}

#slider-container .arrow.a-left {
	left: 15px;
}

#slider-container .arrow.a-left:before {
	top: 0;
	left: 0;
	margin-top: 0;
	transform: rotate(-45deg);
	transform-origin: 100% 0;
}

#slider-container .arrow.a-left:after {
	bottom: 0;
	left: 0;
	margin-bottom: 0;
	transform: rotate(45deg);
	transform-origin: 100% 0;
}

#slider-container .arrow.a-right {
	right: 15px;
}

#slider-container .arrow.a-right:before {
	top: 0;
	right: 0;
	margin-top: 0;
	transform: rotate(45deg);
	transform-origin: 0 0;
}

#slider-container .arrow.a-right:after {
	bottom: 0;
	right: 0;
	margin-bottom: 0;
	transform: rotate(-45deg);
	transform-origin: 0 0;
}

#slider-container .bullets-container {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
}

#slider-container .bullets-container .bullet {
	width: 15px;
	height: 15px;
	display: inline-block;
	border-radius: 50%;
	border: 1px solid grey;
	cursor: pointer;
	margin: 0 8px;
}

#slider-container .bullets-container .bullet.active {
	background: grey;
}

/* ----------------------------- HERO PAGE - SLUT ----------------------------- */


/* ----------------------------- PRODUCTS - START ----------------------------- */

.product-photo {
	width: 130px;
	min-height: auto;
	position: relative;
    bottom: 4em;
    left: 1.6em;
	transition: 0.5s;
}

.eclipse-shadow {
	background-color: rgba(0,0,0,0.35);
	height: 15px;
	width: 100px;
	border-radius: 50%;
	-webkit-filter: blur(7px);
  	-moz-filter: blur(7px);
 	-o-filter: blur(7px);
 	-ms-filter: blur(7px);
 	filter: blur(7px);
	position: relative;
	bottom: 10%;
	margin: 0 auto;
	margin-bottom: 20px;
	transition: 0.5s;
}

.box-card {
	height: 200px;
	padding: 1em;
	background: linear-gradient(to bottom, #D3DEEF 55%, #ffffff 45%);
	text-align: center;
	margin: 0 0 0em 0; 
	border-radius: 20px;
	box-shadow: 12px 12px 12px rgba(0,0,0,0.02);
	transition: 0.5s;
}

.box-card p {
	font-size: 2.1em;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: #fff;
}

.price {
	background-image: linear-gradient(to right, #3174E1 0%, #40BBEE 100%);
	border-radius: 30px;
	padding-top: 5px;
	padding-bottom: 5px;
	width: 75%;
	box-shadow: 2px 2px 8px rgba(0,143,255,0.25);
	position: relative; 
	left: 13%;
	top: -3%;
	transition: 0.5s;
}

.more {
	font-size: 1.7em;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	background-image: linear-gradient(to right, #3174E1 0%, #40BBEE 100%);
	box-shadow: 2px 2px 8px rgba(0,143,255,0.25);
	border-radius: 30px;
	padding-top: 12px;
	padding-bottom: 12px;
	width: 270px;
	position: relative; 
	margin: 0 auto;
	margin-top: 30px;
	margin-bottom: 0px;
	top: -6%;
	transition: 0.5s;
}

.more:hover {
	width: 300px;
	box-shadow: 2px 2px 8px rgba(0,143,255,0.5);
	transition: 0.5s;
}

.box-card:hover .price {
	width: 85%;
	left: 8%;
	box-shadow: 2px 2px 8px rgba(0,143,255,0.5);
	transition: 0.5s;
}

.box-card h3 {
	color: #000;
	font-size: 1.5em;
	font-weight: 400;	
	margin-block-start: 0em;
	margin-block-end: 0em;
	text-overflow: ellipsis;
	text-decoration: none;
}

.box-card:hover .product-photo {
    bottom: 6em;
	transition: 0.5s;
}

.box-card:hover .rotate30 {
	-webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
	transition: 0.5s;
}

.box-card:hover .eclipse-shadow {
	background-color: rgba(0,0,0,0.17);
	transition: 0.5s;
}

.product-card {
	padding: 60px 25px 40px 25px;
}

.rotate30 {
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.mobilepadding{
	margin-bottom: 75px;
}

/* ----------------------------- PRODUCTS - SLUT ----------------------------- */


/* ----------------------------- PRODUCT PAGE - START ----------------------------- */

.product-page h1 {
	font-size: 3.2em;
	color: #000;
	text-align: left;
	text-transform: uppercase;
	font-weight: normal;
	margin-top: 15px;
	margin-bottom: 0px;
}

.product-page h2 {
	font-size: 4em;
	color: #3174E1;
	text-align: left;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 1px;
	margin-top: 15px;
}

.product-page-p {
	font-size: 1.5em;
	color: #000;
	text-align: left;
}

.product-page-p strong {
	font-weight: 500;
}

.padding {
	padding: 50px;
}

.padding2 {
	padding: 25px;
}

.add-to-cart {
	font-size: 1.7em;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	background-image: linear-gradient(to right, #3174E1 0%, #40BBEE 100%);
	border-radius: 30px;
	padding-top: 12px;
	padding-bottom: 12px;
	width: 95%;
	position: relative; 
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 50px;
	top: -6%;
	box-shadow: 2px 2px 8px rgba(0,143,255,0.25);
	transition: 0.5s;
}

.add-to-cart:hover {
	width: 100%;
	box-shadow: 2px 2px 8px rgba(0,143,255,0.5);
	transition: 0.5s;
}

select {
	width: 95%;
	color: #3174E1;
	border: solid 3px #3174E1;
	text-transform: uppercase;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center; 
	text-align: -webkit-center;
	background-color: rgba(255,255,255,0.00);
	border-radius: 30px;
	padding: 5px 5px 5px 5px;
	margin: 15px 0px 0px;
	appearance: none;
	-webkit-appearance:none;
	-moz-appearance: none;
}

hr {
	opacity: 20%;
}

.related-products h2{
	color: #000;
	font-size: 3.1em;
}

/* ----------------------------- PRODUCT PAGE - SLUT ----------------------------- */


/* ----------------------------- LOG IN + CART - START ---------------------- */

.log-in-card {
	width: 100%;
	min-height: 400px;
	padding: 0em;
	text-align: center;
	margin: 0em 0 0 0; 
	transition: 0.5s;
}

.log-in-card h1 {
	font-size: 4em;
	margin-bottom: 40px;
	color: #3174E1;
	text-transform: uppercase;
}

.log-in-card h3 {
	font-weight: normal;
	color: #000;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.log-in-card h4 {
	text-align: left;
	font-weight: normal;
	color: #3174E1;
	text-transform: uppercase;
}

.log-in-card a {
	font-size: 1.5em;
	color: #3174E1;
	margin-top: 0px;
	margin-bottom: 30px;
	text-decoration: none;
}

.log-in-card li {
	list-style-type: none;
}

.log-in-card input {
	color: #3174E1;
	width: 92%;
	text-align: center;
	height: 40px;
	font-size: 2em;
	border: none;
	border-radius: 20px;
	margin: 10px 0px;
}

.log-in-card button {
	background-image: linear-gradient(to right, #3174E1 0%, #40BBEE 100%);
	box-shadow: 2px 2px 8px rgba(0,143,255,0.25);
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	width: 92%;
	text-align: center;
	height: 40px;
	font-size: 2em;
	border: none;
	border-radius: 20px;
	margin: 30px 0px 75px;
	transition: 0.5s;
}
	
.log-in-card button:hover {
	width: 95%;
	box-shadow: 2px 2px 8px rgba(0,143,255,0.5);
	cursor: pointer;
	transition: 0.5s;
}

.log-in-card hr {
	margin: 10px 0px 10px;
}

.log-in-btn {
	margin: 30px 0px 20px !important;
}

.height1px {
	height: 1px;
}

.subtotal h3 strong {
	color: #3174E1;
}

/* ----------------------------- LOG IN + CART - SLUT ----------------------- */


/* ----------------------------- FOOTER - START ----------------------------- */

#page-container {
	position: relative;
	min-height: 100vh;
}

#content-wrap {
	padding-bottom: 11.9rem;    /* Footers højde */
}

#footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 11.9rem;            /* Footers højde */
}

.logo-footer {
	height: 45px;
	width: auto;
	margin: 15px auto 20px;
	transition: 0.5s;
}

.logo-footer:hover {
	opacity: 70%;
	transition: 0.5s;
}

.terms p{
	font-size: 1.5em;
	color: #000;
	font-weight: bold;
}

.SoMe img {
	width: 18px;
	margin: 8px;
	transition: 0.5s;
}

.SoMe img:hover {
	opacity: 70%;
	transition: 0.5s;
}

.SoMe a {
	text-decoration: none;
}

.SoMe p {
	color: #fff;
}

/* ----------------------------- FOOTER - SLUT ----------------------------- */


/* ----------------------------- TITLES - START ---------------------------- */

.brand {
	font-size: 4em;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	color: #3174E1;
	padding-top: 12px;
	width: 100%;
	position: relative; 
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 5px;
	top: -6%;
	transition: 0.5s;
}

.icon {
	height: 28px;
	padding-left: 15px;
	transform: translate(0%, 1px);
}

.new-arrivals{
	margin-bottom: 25px; 
}

/* ----------------------------- TITLES - SLUT ---------------------------- */