@media only screen and (max-width: 768px) {
#header {
	position: relative;
	justify-content: space-between;
	z-index: 1000;
}

#header::before, #header::after {
	content: none;
	flex: unset;
}

#site-branding, #hamburger-menu {
    z-index: 1010;
}

#hamburger-menu {
	display: block;
	font-size: 24px;
	cursor: pointer;
	color: #fff;
}

#menu-wrapper {
	display: none; 
	position: absolute;
	flex-direction: column;
	top: 100%; 
	left: 0;
	width: 100%; 
	height: 100%;
	background-color: #131313; 
	z-index: 1005;
	border-bottom: 1px solid #888;
	padding: 10px 0 30px 0;
}

#primary-menu, #nav-menu {
	position: static;
	display: block; 
	width: 100%;
	max-width: 100%;
	margin: 0;
	text-align: center;
}

#primary-menu a, #nav-menu a {
	display: block; 
	padding: 10px 0; 
}

.custom-select-wrapper{
	flex-direction: column;
	align-items: center;
	gap: 0px;
}

.custom-select, .select-item-button{
	width: 90%;
}

#item-selection-overlay{
	padding-top: 10px;
}

#close-overlay{
	right: 0px;
	top: 10px;
	padding: 0 10px;
}

#overlay-items-container {
	width: 90%;
	height: auto;
	min-height: 50vh;
	max-height: 80vh;
}

.overlay-item {
	grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
}

.display-outfits{
	justify-content: center;
}

.outfit-wrapper {
	flex-direction: column;
	margin-bottom: 30px;
}

.content-area{
	padding: 0px;
}

.featured-outfit-image{
	width: 80%;
	max-width: 80%;
	flex: none;
	margin: 0 auto;
}

h1.outfit-heading{
	margin-bottom: 30px;
    text-align: center;
}

.outfit-body{
	padding: 0;
	margin: 10px;
}

.outfit-item-display{
	font-size: 0.9em;
	margin: 5px;
}

.outfit-item-display img{
	width: 100px;
}

.outfit-description{
	padding: 0;
}

.outfit-item-set-wrapper, .item-to-item-wrapper{
	padding: 10px; 
	text-align: center;
}

.comment-form input[type="text"],
.comment-form textarea {
	width: 90%;
}

.reply-form-container .cancel-reply-btn{
	content: "Cancel";
}

}

@media only screen and (min-width: 769px) and (max-width: 1366px) {
.outfit-description p{
	font-size: 0.95em;
	font-weight: 450;
}
.outfit-item-display p{
	font-size: 0.9em;
}

.outfit-item-set-wrapper, .item-to-item-wrapper{
	padding: 20px 35px; 
}
  
}