* {
	margin: 0;
	padding: 0;
	font-size: 1em;
	line-height: 1.25em;
	font-family: 'Mulish', sans-serif;
}

:root {
	--primary: #046d77;
	--primary-light: #77bec5;
	--primary-dark: #012428;
	--white: #fafafa;
	--black: #050505;
	--grey: #808080;
	--grey-light: #dcdcdc;
	--grey-dark: #242424;
	--red: #e53424;
	--red-light: #ec675b;
	--red-dark: #b72315;
	--orange: #f58216;
	--orange-light: #f8a04f;
	--orange-dark: #c46308;
	--yellow: #e5d824;
	--yellow-light: #ece25b;
	--yellow-dark: #b7ac15;
	--green: #2dcc45;
	--green-light: #68de7a;
	--green-dark: #25a738;
	--blue: #2f79da;
	--blue-light: #639be3;
	--blue-dark: #1f5cad;
	--purple: #7144c1;
	--purple-light: #9775d1;
	--purple-dark: #583399;
}

body {
	min-width: 320px;
}

.under {
	width: 100%;
	min-height: 100vh;
	position: absolute;
	z-index: -2;
	background: url('../images/index.jpg') 50%/cover no-repeat;
}

.outer {
	width: 100%;
	min-height: 100vh;
	background: radial-gradient(ellipse at center, rgb(255 255 255 / 60%) 10%,
			rgba(0, 0, 0, 0) 60%) 50% -100px no-repeat;
}

.within {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-height: 100vh;
}

.login_block {
	align-self: flex-end;
	margin-right: 5%;
	margin-bottom: 10%;
}

#login {
	padding: 5px;
	background-color: rgba(255, 255, 255, 0.6);
	display: flex;
}

#login a {
	text-decoration: none;
	display: flex;
	align-items: center;
	line-height: 1.6em;
	font-size: 1.2em;
	padding: 0px 10px;
	color: var(--primary);
}

#login a:HOVER {
	color: var(--primary-dark);
}

#login a>img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.cartnumber {
	font-size: .75rem;
	min-width: 14px;
	border-radius: 8px;
	background-color: var(--primary-light);
	color: var(--black);
	position: absolute;
	right: 10px;
	top: 0;
	padding: 1px;
	text-align: center;
}

.inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
}

.inner>img {
	width: 100%;
	max-width: 346px;
	margin-bottom: 25px;
}

.inner>div>div:last-child {
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

nav {
	background-color: var(--grey-dark);
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	padding: 0px 20px;
}

nav a {
	color: var(--white);
	padding: 15px 20px;
	transition: all ease .2s;
}

nav a:HOVER {
	background-color: rgb(0 0 0 / 40%);
	color: var(--primary-light);
}

a {
	text-decoration: none;
	color: var(--white);
}

.search {
	width: calc(100% - 40px);
	background-color: rgb(0 0 0 / 40%);
	border: 20px solid var(--grey-dark);
	border-top: none;
	border-bottom: none;
}

#search {
	width: 90%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 5%;

}

.search_field {
	height: 40px;
	width: 100%;
	border: none;
	background-color: transparent;
	color: var(--white);
}

.search_btn {
	padding: 10px 15px;
	background: var(--primary);
	border: none;
	border-radius: 5px;
	color: var(--white);
	transition: all ease .2s;
}

.search_btn:HOVER {
	background-color: var(--primary-dark);
	cursor: pointer;
}

::placeholder {
	color: var(--white);
	opacity: 1;
}

:FOCUS {
	outline: none;
}

.quote {
	background-color: var(--grey-dark);
	padding: 10px 20px;
}

.quote p {
	color: var(--white);
	text-align: center;
	margin-bottom: 5px;
}

.within>div:last-child {
	margin: 10% 0px;
	display: flex;
	justify-content: center;
}

.motd {
	background-color: rgb(0 0 0 / 75%);
	color: var(--white);
	border-radius: 10px;
	padding: 10px 20px;
	max-width: 768px;
	width: calc(90% - 40px);
}

@media (max-width : 768px) {
	.inner>div {
		width: 100%;
		max-width: 425px;
	}

	nav {
		width: calc(100% - 40px);
		flex-direction: column;
	}

	nav a {
		width: 50%;
		text-align: center;
	}

	.search_field {
		width: 60%;
	}
}

@media (max-width : 425px) {
	.login_block {
		align-self: center;
		margin-right: 0;
	}
}