/* poppins-300 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/poppins-v5-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Poppins Light'), local('Poppins-Light'),
	   url('fonts/poppins-v5-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	   url('fonts/poppins-v5-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
	   url('fonts/poppins-v5-latin-300.woff') format('woff'), /* Modern Browsers */
	   url('fonts/poppins-v5-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
	   url('fonts/poppins-v5-latin-300.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-500 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/poppins-v5-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Poppins Medium'), local('Poppins-Medium'),
	   url('fonts/poppins-v5-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	   url('fonts/poppins-v5-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
	   url('fonts/poppins-v5-latin-500.woff') format('woff'), /* Modern Browsers */
	   url('fonts/poppins-v5-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
	   url('fonts/poppins-v5-latin-500.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-600 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/poppins-v5-latin-600.eot'); /* IE9 Compat Modes */
  src: local('Poppins SemiBold'), local('Poppins-SemiBold'),
	   url('fonts/poppins-v5-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	   url('fonts/poppins-v5-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
	   url('fonts/poppins-v5-latin-600.woff') format('woff'), /* Modern Browsers */
	   url('fonts/poppins-v5-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
	   url('fonts/poppins-v5-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-700 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/poppins-v5-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Poppins Bold'), local('Poppins-Bold'),
       url('fonts/poppins-v5-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/poppins-v5-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/poppins-v5-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/poppins-v5-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/poppins-v5-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}








body { 
	background-color: white;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	margin: 0;
}

h1, h2, h3, h4 {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
}

h3 {
	text-transform: uppercase;
}

.login-box { 
	max-width: 350px; 
	padding: 20px; 
	background: #fff; 
	border-radius: 8px; 
	box-shadow:0 0 10px rgba(0,0,0,0.1); 
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.login-box img {
	display: block;
	margin: 0 auto;
	width: 200px;
}
 
h2 { 
	text-align: center; 
	margin-bottom: 20px; 
}
   
input { 
	width: 100%; 
	padding: 10px; 
	margin: 8px 0; 
	border:1px solid #ccc; 
	border-radius: 4px; 
	box-sizing: border-box;
}

button { 
	width: 100%; 
	padding: 10px; 
	background: #cc0001; 
	color: #fff; 
	border:none; 
	border-radius: 4px; 
	cursor:pointer; 
}

button:hover { 
	background: #ac0001; 
}

.error { 
	color:red; 
	text-align:center; 
	margin-top:10px; 
}







/* DASHBOARD */

.head {
	background-color: #2c2c2c;
    height: 118px;
    position: relative;
}

.head .logo {
	background-color: white;
    border-radius: 0 50px 50px 0;
    height: 60%;
    padding: 10px 40px 10px 10%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.head .headerlinks {
	align-items: center;
	color: white;
	display: flex;
	position: absolute;
	right: 10%;
	top: 50%;
	transform: translateY(-50%);
}

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

.backlink {
	margin: 0 10px;
	position: relative;
}

.backlink::after,
.backlink::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.backlink::before {
  top: -5px;
  transform-origin: left;
}

.backlink:hover::after,
.backlink:hover::before {
  transform: scaleX(1);
}




/* CONTENT */

#content {
	margin: 80px auto 120px auto;
	max-width: 90%;
	width: 1200px;
}

#content h1 {
	color: #cc0001;
	font-size: 50px;
	margin: 0;
	text-align: center;
}

#content h2 {
	margin-top: 0;
}


#orderlist {
	background-color: white;
    box-shadow: 5px 5px 16px 0px #0000002b;
    margin-bottom: 50px;
    padding: 30px 50px;
}

#orderlist table {
	border-collapse: seperate;
	border-spacing: 0;
	width: 100%;
}

#orderlist th {
	padding-right: 40px;
	text-align: left;
}

#orderlist td {
	border-bottom: 1px solid #00000024;
	padding: 10px 0;
}

#orderlist tr:last-child td {
  border-bottom: none;
}



#notifications {
	background-color: white;
    box-shadow: 5px 5px 16px 0px #0000002b;
    margin-bottom: 50px;
    padding: 30px 50px;
}

.checkboxinput {
	align-items: center;
	display: flex;
}

#enable-notifications {
	display: inline-block;
	height: 20px;
	margin-right: 7px;
	width: 20px;
}

#notifications button {
	margin-top: 15px;
	padding: 10px 50px;
    width: fit-content;
}



footer {
	background-color: #2c2c2c;
	font-size: 14px;
    padding: 40px 0;
}

footer .footer-content {
	color: white;
	text-align: center;
}

footer .footer-content a {
	color: white;
}

