@font-face {
	font-family: 'Open Sans';
	src: url('https://static-assets.freosanstudios.com/fonts/open-sans-v18-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2');
}

body {
	font-family: 'Open Sans';
	font-size: 88%;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	margin: 0em;
}

h1 {
	text-align: center;
}

#simplyduo_logo {
	float: left;
}

.content {
	flex: 1;
	margin: 0.8em;
	margin-left: 1.4em;
	margin-right: 1.4em;
}

.center {
	text-align: center;
}

.l_top_row_promo_navbar {
	display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.l_top_row_category a {
    display: block;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
}

.l_top_row_category {
    float: left;
}

l_top_row_category a:link {
	color: #ffffff !important;
	text-decoration: none;
}

l_top_row_category a:link:visited {
	color: #ffffff !important;
	text-decoration: none;
}

.l_top_row_category a:hover {
    background-color: #000099;
}

#s_header {
	background-color: #4d4dff;
	color: #ffffff;
	font-size: 115%;
}

.footer {
	background-color: #262626;
	color: #ffffff;
	text-align: center;
	font-size: 95%;
}

.footer_modules {
	display: flex;
	justify-content: center;
}

.footer_module {
	padding: 1em;
	padding-left: 1.5em;
	padding-right: 1.5em;
}

a.footer_link {
	color: #eeeeee;
}

a.footer_link:visited {
	color: #dddddd;
}

.nodisplay {
	display: none;
}

/* Styles for the shop catalogue. */
.all_items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.catalogue_item {
	flex: 0 0 16em;
    border: 2px solid #ff9900;
	text-align: center;
	padding: 1em;
	margin: 1em;
}

.ahdaw_item {
	flex: 0 25 32em;
    border: 2px solid #ff9900;
	text-align: center;
	padding: 1em;
	margin: 1em;
}

.item_details_description {
	display: inline-block;
	text-align: left;
}

.index_item {
	flex: 0 15 32em;
    border: 2px solid #00;
	text-align: center;
	padding: 1em;
	margin: 1em;
	background: rgba(0, 0, 0, 0.75)
}

.catalogue_item_image {
	width: min(13em, 75vw);
}

.ahdaw_item_details_image {
	width: min(50em, 90vw);
}

.cart_table {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.center {
	text-align: center;
}

.small {
	font-size: smaller;
}

.centered_left_child {
	display: inline-block;
	text-align: left;
}

.index_background {
	background-image: url('https://static-assets.freosanstudios.com/images/pinclite/welcome_to_freosan_studios.jpeg');
	background-color: #111111;
	height: 500px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	color: #ffffff;
}

.thedragonfire123_background {
	background-image: url('https://static-assets.freosanstudios.com/images/pinclite/welcome_to_thedragonfire123.JPG');
	background-color: #111111;
	height: 500px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	color: #ffffff;
}

a.footer_link {
	color: #eeeeee;
}

a.footer_link:visited {
	color: #dddddd;
}

input {
	font-family: Open Sans, sans-serif;
}

input.pinclite_input {
	width: 15em;
}

select {
	font-family: Open Sans, sans-serif;
}

button {
	font-family: Open Sans, sans-serif;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#l-snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 46em; /* Set a default minimum width */
    margin-left: -23em; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#l-snackbar.l-snackbar-show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 4.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.50s 5.55s;
    animation: fadein 0.5s, fadeout 0.5s 5.55s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@media (prefers-color-scheme: dark) {
	body {
		background: #282828;
		color: #ffffff;
	}
	
	/*
	a:link { 
		color: lightskyblue;
	}
	
	a:visited { 
		color: #6d4b8d;
	}
	
	a:hover { 
		color: #ffffff;
	}
	
	a:active { 
		color: #ff4040; text-decoration:none; font-weight:normal;
	}*/
	
	.footer {
		background-color: #0d0d0d;
		color: #ffffff;
	}

}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}