body {
	font-family: "config-mono-vf", sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #FFF;
	color: #030304;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 0.2px;
}

:focus {
	outline:none;
}

::-moz-focus-inner {
	border:0;
}

a {
	color: #918a8b;
	text-decoration: none;
}

a:hover {
	color: #8B8485;
	text-decoration: none;
}

a:active {
	color: #8B8485;
	text-decoration: none;
}

#wrapper {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
}

#navbar-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 40px;
	margin-bottom: 20px;
	gap: 40px;
	border-bottom: 1px solid #000;
}

#navbar-utility {
	position: absolute;
	right: 0;
	bottom: 11px;
}

#navbar-utility ul {
	display: flex;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

#navbar-utility a {
	font-family: "config-mono-vf", sans-serif;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 14px;
	font-weight: 700;
	letter-spacing: 0.3px;
	color: #030304;
}

#navbar {
	position: relative;
	width: 100%;
	margin-top: 40px;
}

#navbar-logo {
	position: relative;
	width: 100%;
	margin-bottom: 8px;
}

#navbar-logo a {
	display: flex;
	align-items: stretch;
	text-decoration: none;
	color: inherit;
}

#navbar-logo a img {
	height: 37px;
}

.nav-logo-address {
	display: flex;
	flex-direction: column;
	text-align: left;
	margin-top: 10px;
	font-size: 15px;
	line-height: 18px;
	padding-left: 5px;
}

@media (max-width: 992px) {
	#navbar {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 90px;
		margin-top: 0px;
		padding-top: 15px;
		z-index: 9;
	}

	#navbar-logo {
		position: relative;
		left: 30px;
		width: calc(100% - 120px);
		margin-bottom: 0px;
	}
	
	.nav-logo-main {
		font-size: clamp(38px, 6vw, 38px);
	}
	
	#navbar-top {
		margin-top: 15px;
		border-bottom: none;
	}
	
	#navbar-utility {
		display: none;
	}
}

@media (max-width: 767px) {
	#navbar-logo {
		left: 30px;
		width: calc(100% - 60px);
	}
	
	#navbar-logo a img {
		height: 30px;
	}
	
}

#navbar-nav {
	position: relative;
	transition: ease margin 700ms;
}

#navbar-nav ul {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#navbar-nav ul li {
	text-align: center;
	cursor: pointer;
}

#navbar-nav ul li.active {
	margin-top: 7px;
	padding-bottom: 5px;
	border-bottom: 2px solid #030304;
}

#navbar-nav ul li:first-child {
	text-align: left;
}

#navbar-nav ul li:last-child {
	text-align: right;
}

#navbar-nav ul li a {
	font-family: "config-mono-vf", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #030304;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 20px;
	cursor: pointer;
}

@media (max-width: 992px) {
	#navbar-nav {
		position: fixed;
		top: 0px;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #FFF;
		z-index: 4;
		display: flex;
        flex-direction: column;
		opacity: 0;
		margin-top: -110vh;
	}
	
	#navbar-nav.open {
		margin-top: 0;
		opacity: 1;
	}
	
	#navbar-nav ul {
		display: flex;
        flex-direction: column;
        flex: 1;
        margin: 0;
        padding: 0;
        list-style: none;
	}

	#navbar-nav ul li {
		flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        cursor: pointer;
	}
	
	#navbar-nav ul li.active {
		margin-top: 0;
		padding-bottom: 0;
		border-bottom: 0;
		text-decoration: underline;
	}

	#navbar-nav ul li:first-child {
		text-align: center;
	}

	#navbar-nav ul li:last-child {
		text-align: center;
	}

	#navbar-nav ul li a {
		font-size: 22px;
		line-height: 22px;
	}
}

#hamburger-btn {
	position: absolute;
	top: 32px;
	right: 30px;
    width: 32px;
    height: 26px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000;
}

#hamburger-btn span {
    display: block;
    width: 100%;
    height: 4px;
    background: #030304;
    border-radius: 2px;
    transition: 0.25s ease-in-out;
}

#hamburger-btn.open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

#hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

#hamburger-btn.open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 992px) {
    #hamburger-btn {
        display: flex;
    }
}

#navbar-icons {
	position: absolute;
	left: 0px;
	bottom: 10px;
	display: flex;
	gap: 22px;
}

.nav-icon img {
	width: 26px;
	cursor: pointer;
}

@media (max-width: 1029px) {
	#navbar-icons {
		display: none;
	}
}

#navbar-search {
	display: none;
	align-items: center;
	gap: 20px;
	margin-bottom: -2px;
}

#navbar-search.active {
	display: flex;
}

#navbar-search-input {
	display: block;
	width: 190px;
	padding: 0 0 0 0;
	border: none;
	background: transparent;
	outline: none;
	font-family: "config-mono-vf", sans-serif;
	font-size: 14px;
	line-height: 14px;
	text-transform: none;
	color: #030304;
}

#search-close {
	font-family: "config-mono-vf", sans-serif;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 14px;
	color: #030304;
	text-decoration: none;
}

@media (max-width: 992px) {
	#navbar-search {
		display: none !important;
	}
}

.top-img {
	position: relative;
	background-color: #f5f5f5;
	width: 100%;
	height: calc(100vh - 250px);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	overflow-x: hidden;
}

#home-img {
	background-image: url(../img/svg/bricklane-bricktype-red-2.svg);
}

#home-img-1 {
	background-image: url(../img/svg/bricklane-bubble-1.svg);
}

.carousel {
	margin-bottom: 20px;
}

.carousel-overlay {
	position: absolute;
	bottom: 15px;
	right: 15px;
	z-index: 10;
}

.carousel-overlay a {
	color: #030304;
	text-decoration: underline;
	text-transform: lowercase;
}

.carousel-fade .carousel-item {
	transition: opacity 1s ease-in-out;
}

#hero-view-all {
	color: #030304;
  	text-transform: lowercase;
  	font-size: 19px;
  	line-height: 19px;
	text-decoration: underline;
  	cursor: pointer;
	border: none;
	background-color: transparent;
}

@media (max-width: 992px) {
	#hero-view-all {
		font-size: 16px;
		line-height: 16px;
	}
}

#sidebar-img {
	position: sticky;
	text-align: center;
	top: 20px;
	left: 0px;
	width: 100%;
	max-width: 220px;
	margin-bottom: 20px;
}

#sidebar-img img {
	width: 100%;
	max-width: 170px;
}

@media (max-width: 992px) {
	#sidebar-img {
		display: none;
	}
}

#sidebar-nav {
	width: 100%;
	max-width: 220px;
	flex-shrink: 0;
	position: sticky;
	top: 225px;
}

#sidebar-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#sidebar-nav li {
	text-align: center;
	margin-bottom: 20px;
}

#sidebar-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 34px;
	font-family: "config-mono-vf", sans-serif;
	font-size: 14px;
	line-height: 14px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	color: #030304;
	background: #fff;
	border: 2px solid #000;
	border-radius: 999px;
	box-shadow: 4px 4px 0 #000;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#sidebar-nav a:hover, #sidebar-nav a.active, #sidebar-nav .current-menu-item a {
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 #000;
}

#sidebar-utility{
	display: none;
}

@media (max-width: 992px) {
	#sidebar-nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		max-width: none;
		height: 100%;
		background-color: #FFF;
		z-index: 7;
		margin-top: -110vh;
		transition: all ease 900ms;
	}	
	
	#sidebar-nav.open {
		margin-top: 0;
		transition: all ease 900ms;
	}
	
	#sidebar-nav ul {
		display: flex;
		flex-direction: column;
		flex: 1;
		margin-top: 90px;
	}
	
	#sidebar-nav li {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		list-style: none;
	}
	
	#sidebar-utility{
		display: block;
    }

   #sidebar-utility-links {
		margin-top: 30px !important;
		text-align: center;
	}

	#sidebar-utility-links li {
		display: inline-block;
		flex: none;
		height: auto;
	}
	
	#sidebar-utility-links li a {
		width: auto !important;
		height: auto !important;
		box-shadow: none !important;
		border: none !important;
	}
}

#mobile-search{
    position: fixed;
    left: 0;
    right: 0;
    bottom: -90px;
    padding: 20px;
    background: #fff;
    border-top: 1px solid #000;
    transition: .3s;
    z-index: 20;
}

#mobile-search.open{
    bottom: 0;
}

#mobile-search input{
    width: 100%;
    border: none;
    outline: none;
    font: inherit;
}

#product-grid-wrapper {
	padding-top: 0;
	min-height: calc(100vh - 100px);
	padding-bottom: 50px;
}

#product-view-wrapper {
	display: none;
	position: relative;
	margin-top: 30px;
  	padding-bottom: 20px;
	min-height: calc(100vh - 100px);
}

#product-title {
	text-transform: capitalize;
	color: #030304;
  	font-size: 24px;
  	line-height: 24px;
	margin-left: 7px;
	margin-bottom: 30px;
}

@media (max-width: 992px) {
	#product-view-wrapper {
		margin-top: 90px;
	}
	
	#product-title {
		margin-left: 7px;
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {
	#product-grid-wrapper {
		margin-top: 70px;
	}
	
	#product-view-wrapper {
		margin-top: 70px;
	}
	
	#product-title {
		font-size: 20px;
		margin-bottom: 0px;
	}
}

.subheading {
	color: #030304;
  	text-transform: lowercase;
  	font-size: 20px;
  	line-height: 20px;
	margin-left: 7px;
	margin-top: 15px;
	margin-bottom: 0px;
}

@media (max-width: 992px) {
	.subheading {
		margin-left: 7px;
		margin-bottom: 0px;
	}
}

@media (max-width: 767px) {
	.subheading {
		font-size: 18px;
		margin-bottom: 0px;
	}
}

.product-card {
	background-color: #fff;
	margin-bottom: 20px;
	text-align: center;
	font-size: 20px;
	text-transform: lowercase;
	cursor: pointer;
	transition: all 0.3s ease;
}

@media (max-width: 992px) {
	.product-card {
		padding: 0px;
		padding-top: 0px;
		padding-bottom: 0px;
		margin-bottom: 0px;
	}
}

@media (max-width: 992px) {
	.product-card {
		padding-bottom: 0px !important;
		margin-bottom: 0px !important;
	}
}

.product-card:hover {
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-card-img {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 110%;
	background-color: #E5E5E5;
	background-size: cover;
	background-position: center;
}

@media (max-width: 992px) {
	.product-card-img {
		padding-top: 100%;
	}
}

.product-card-info {
	position: relative;
	display: block;
	width: 100%;
}

.product-card-info div {
	display: block;
	text-align: left;
}

#product-view .shopify-buy-frame,
#product-view .shopify-buy-frame iframe {
    width: 100% !important;
    max-width: 100% !important;
}

#product-view .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top-color: #030304;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 40px auto;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#back-to-products {
	margin-top: 20px;
	text-align: center;
  	font-size: 14px;
  	line-height: 14px;
  	letter-spacing: 1px;
  	padding-top: 15px;
  	padding-bottom: 15px;
  	padding-left: 15px;
  	padding-right: 15px;
  	text-transform: uppercase;
	font-weight: 700;
  	color: #030304;
  	border: 1px solid #030304;
  	border-radius: 5px;
  	margin-right: 5px;
  	background-color: #FFF;
  	outline: none;
}

.shopify-buy__btn:focus,
.shopify-buy__btn:active,
.shopify-buy__icon:focus,
.shopify-buy__icon:active,
.shopify-buy__close:focus,
.shopify-buy__close:active,
.shopify-buy-frame iframe:focus {
    outline: none !important;
    box-shadow: none !important;
}

.shopify-buy__cart-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background-color: #555555 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    cursor: pointer;
    z-index: 100000 !important;
    border: none !important;
    outline: none !important;
}

.shopify-buy__cart-toggle .shopify-buy__count {
    font-size: 14px;
    color: #fff;
}

.shopify-buy__cart {
    z-index: 100000 !important;
}

.shopify-buy__cart-toggle:focus,
.shopify-buy__cart-toggle:focus-visible,
.shopify-buy__cart-close:focus,
.shopify-buy__cart-close:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(85,85,85,0.18) !important;
}

.product-card {
    background: #fff;
    padding: 0px 20px 20px 20px;
    margin-bottom: 10px;
    transition: box-shadow .25s ease;
    text-transform: none;
}
.product-card .product-card-info { 
	margin-top: 12px; 
}

.product-card .product-title { 
	font-size: 14px; 
	line-height: 18px;
	font-weight: 700;
	text-transform: capitalize;
}

.product-card .product-price { 
	font-size: 14px; 
	line-height: 18px;
	text-transform: uppercase;
}

.highlight {
    background-color: #F3FFB2;
    font-weight: bold;
}

#footer {
	font-family: helvetica-lt-pro, sans-serif;
	padding-bottom: 20px;
	font-size: 12px;
	line-height: 15px;
	text-align: center;
}

@media (max-width: 767px) {
	#footer {
		font-size: 12px;
		line-height: 15px;
	}
}

#footer .container {
	border-top: 1px solid #D1D1D1;
	padding-top: 20px;
}

.newsletter-modal {
  	background: #fff;
  	border: 1px solid #000;
  	border-radius: 0;
	font-size: 14px;
	line-height: 20px;
}

.newsletter-modal h4 {
	font-family: "config-mono-vf", sans-serif;
	font-weight: 600;
	font-size: 40px;
	line-height: 40px;
	text-transform: uppercase;
}

.newsletter-modal input {
	text-align: center;
  	border: 1px solid #000;
  	border-radius: 0;
	padding-top: 22px;
	padding-bottom: 22px;
	font-family: "config-mono-vf", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #030304;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 0.2px;
	text-transform: uppercase;
}

.newsletter-modal button {
  	border-radius: 0;
	text-transform: uppercase;
	padding-top: 14px;
	padding-bottom: 14px;
	font-family: "config-mono-vf", sans-serif; 
	font-weight: 700;
	font-style: normal;
	color: #FFFFFF;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 0.2px;
}

#about {
	display: none;
	padding-top: 40px;
	min-height: calc(100vh - 140px);
}

#about strong {
	text-transform: uppercase;
}

@media (max-width: 992px) {
	#about {
		padding-top: 110px;
	}
}

#privacy-policy {
	display: none;
	padding-top: 40px;
}

#privacy-policy strong {
	text-transform: uppercase;
}

@media (max-width: 992px) {
	#privacy-policy {
		padding-top: 110px;
	}
}

.custom-newsletter-modal {
	z-index: 99;
}

.footer-left {
	text-align: left;
}

.footer-right {
	text-align: right;
}

@media (max-width: 767px) {
	.footer-left, .footer-right {
		text-align: center;
	}
}

.footer-right ul {
	list-style-type: none;
	padding-left: none;
	padding-right: none;
}

.footer-right ul li {
	display: inline-block;
}

.footer-right ul li img {
	height: 13px;
}