/** Shopify CDN: Minification failed

Line 17:0 Unexpected "$"
Line 711:2 "text-tranform" is not a known CSS property
Line 795:4 Comments in CSS use "/* ... */" instead of "//"
Line 801:4 Comments in CSS use "/* ... */" instead of "//"
Line 1349:2 Comments in CSS use "/* ... */" instead of "//"
Line 1350:2 Comments in CSS use "/* ... */" instead of "//"
Line 1838:2 Comments in CSS use "/* ... */" instead of "//"
Line 1842:2 Comments in CSS use "/* ... */" instead of "//"

**/


/* SCSS Variables for Font and colors */

$font: courier-prime, monospace;



/* $color1: #41b6e6; */
$color1: #000;

.lower-banner {
	width: 100%;
    text-align: center;
    padding: 0 15px 100px;
    img {
		max-width: 100%;
    }
}
select {
  background: transparent;
  color: white;
  border: 1px solid rgba(255 255 255 / 55%);
}
input[type=number] {
  background: transparent;
  color: white;
  border: 1px solid rgba(255 255 255 / 55%);
}
.mobile-logo {
  display: none;
}
.menu_login {
  font-size: 14px;
  color: white;
  margin-right: 10px;
}
.menu_login:hover, .menu_login:focus {
  color: white;
  text-decoration: underline;
}
/* Below overwrites theme styling to allow css transitions for hover */
* {
	-moz-transition-property: unset !important;
    -webkit-transition-property: unset !important;
    -o-transition-property: unset !important;
    transition-property: unset !important;
}

.banner-slider {
   .banner-slide:not(:first-of-type) {
      display: none;
    }
    &.slick-initialized .banner-slide:not(:first-of-type) {
      display:block;
    } 
}

.product-options {
	position: relative;
}
.price.alt-price {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    Display:none; 
}
.product-offer {
	border: none;
}
.product-list .overlay-container:before {
	display: none;
}
/* Product label styling */
.on-sale-label,
.sold-out-label {
	margin-right: 0;
}
/** CUSTOM ITEM styling for tag pages **

- product float issue overwrite (using float-item-custom-1 class, added to items in collection file, for tag pages only)
- this is 3 on desktop, 3 on tablet, 2 on mobile

*/

.container {
	padding: 0;
}
.collection {
	padding: 0;
}
.collection .inner {
	padding: 0;
}
.product-list {
	margin: 0 -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.float-item-custom-1 {
	float: left;
    width: calc(33.333333% - 10px);
    margin: 0 5px 30px;
    position: relative;
    text-align: center;
  	overflow: hidden;
}
.product-item-image-link {
  display: block;
  position: relative;
}
.product-list .product-item-info {
  position: relative;
}
.product-list .product-item-info:after {
    content: "";
    display: none;
    width: 60px;
    background-image: url(//store.warnermusic.ca/cdn/shop/t/42/assets/ed-sheeran-right-arrow.svg?v=171514123930580945971629134821);
  	background-position: center right;
  	background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    opacity:0;
    transition: opacity .3s;
}
.float-item-custom-1 figure:hover + .product-item-info:after {
  opacity: 1 !important;
}
.float-item-custom-1:hover .product-button {
 	border-color: $color1;
    background-color: $color1;
    color: #EEE9E2;
}
.float-item-custom-1:hover .product-item-info .product-item-title {
      text-decoration: underline;
    }
.float-item-custom-1:hover .product-item-image-link {
      transform: scale(1.05);
    }
.product-list .product-item-image {
 transition: transform 0.3s, filter 0.3s; 
}
.float-item-custom-1 .product-item-image-link:focus {
  transform: scale(1.05);
}
.float-item-custom-1 .product-item-info .product-item-title:focus {
  text-decoration: underline;
}
/* .float-item-custom-1 .sold-out .overlay-container .product-item-image {
  filter: blur(2px);
}
.float-item-custom-1 .sold-out .overlay-container:hover > .product-item-image {
  filter: blur(0px);
  transform: scale(1);
} */
/* .product-label.signed-label {
  background: white;
    margin: 0;
    color: #EEE9E2;
    border-radius: 0;
    transform: rotate(45deg);
    position: relative;
    top: 15px;
    width: 200px;
    text-align: center;
    right: -69px;
} */
@media (max-width: 640px) {
  	.float-item-custom-1 {
      width: calc(50% - 30px);
      margin-bottom: 30px;
    }
}


/* mobile nav styling */

.header-content.mobile {
	display: none;
}
.link.lp_tag.mobile-login {
	display: none;
}
.main-menu li {
	display: inline-block;
  	position: relative;
}
.main-menu {
	margin-bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 200px;
    background: white;
    padding-top: 12px;
    z-index: 3;
    transition: left 0.4s ease-in-out;
}
.mobile-nav.active {
	left: 0;
}
.mobile-nav-link,
.mobile-login-link {
	color: #EEE9E2;
    font-family: courier-prime, monospace;
    font-size: 15px;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 12px 24px;
    border-bottom: 1px solid #EEE9E2;
    font-weight: 500;
    transition: all 0.3s;
}
.mobile-nav-link:hover,
.mobile-login-link:hover {
	color: white;
    background: #EEE9E2;
}
.hide-mobile-nav {
	background: transparent;
    font-size: 13px;
    font-family: courier-prime, monospace;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px 20px;
    text-align: left;
    width: 100%;
    color: white;
    display: none;
}
.hide-mobile-nav:focus {
	outline: none;
}
.menu-icon {
	display: none;
  	background-color: transparent;
  	background-repeat: no-repeat;
  	background-image: url(//store.warnermusic.ca/cdn/shop/t/42/assets/menu-white.svg?v=20852405905110077481510598790);
    background-size: 20px 20px;
	background-position: center;
    position: absolute;
    top: 50%;
    width: 45px;
    height: 45px;
    transform: translateY(-50%);
    left: 0;
}
.menu-icon:focus {
	outline: none;
}
.lp_cart.mobile {
	display: none;
}

/* top bar toaster styling  */
.toaster-container {
	background: white;
    width: 100%;
    color: #EEE9E2;
    padding: 8px 15px;
    font-family: courier-prime, monospace;
    font-weight: 500;
}
.toaster-wrapper {
	max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.toaster-copy {
	font-size: 16px;
    color: #EEE9E2df8;
    display: inline-block;
    letter-spacing: -1px;
    padding-top: 0px;
    margin: 0 15px 0 0;
    font-weight: 700;
}
.toaster-button {
	letter-spacing: 0px;
    font-size: 16px;
    background-color: transparent;
    color: #EEE9E2;
    padding: 2px 0 0;
    font-weight: bold;
    transition: all 0.3s;
	border-bottom: 2px solid #EEE9E2
}
/* .toaster-button:hover {
	border-color: transparent;
    color: $color1;
} */
.toaster-button:focus {
	outline: none;
}
.home-title {
  	display: none;
 	font-family: courier-prime, monospace;
    color: #000;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 24px;
    text-align: center;
    border-bottom: 1px solid white;
    padding: 0px 0 15px;
}

/* Top Header Newsletter Styling */

.required-fields {
    font-family: courier-prime, monospace;
    font-weight: bold;
	text-align: right;
    font-size: 10px;
    line-height: 10px;
    color: #9e3535;
}
.footer-terms {
    background: transparent;
    border: none;
    color: #EEE9E2;
    text-transform: Capitalize;
    font-size: 12px;
    margin: 4px 0;
    padding: 0;
   font-weight: 700;
   font-family: courier-prime, monospace;
}
.footer-terms:focus, .footer-terms:hover {
	outline: none;
  text-decoration: underline;
}
.footer-terms-copy {
    display: none;
  	line-height: 11px;
    font-size: 11px;
    font-family: courier-prime, monospace;
    font-weight: 500;
    color: #EEE9E2BF;
}
.footer-terms-copy.active {
  	display: block;
}
.error-text {
	margin: 0 0 5px;
    color: #9e3535;
    font-size: 12px;
    font-family: courier-prime, monospace;
    font-weight: bold;
    display: none;
}
.header-signup-container {
	width: 100%;
}
.header-signup-wrapper {
    padding: 15px;
    background: #EEE9E2df8;
}
.signup-max-width {
	max-width: 595px;
	margin: 0 auto;
}
.close-bar {
    background: #000;  
}
.close-bar-inner {
    max-width: 1130px;
    margin: 0 auto;
    padding: 10px 40px;;
    text-align: right;
    font-family: courier-prime, monospace;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
}
.header-newsletter-close {
	background: transparent;
    border: none;
    color: #EEE9E2;
    font-family: courier-prime, monospace;
}
.header-newsletter-close:focus {
	outline: none;
}
.header-form-button {
	background-color: transparent;
    color: white;
    font-family: courier-prime, monospace;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid white;
    margin: 0 auto 15px;
    display: block;
    padding: 9px 13px;
    width: 100%;
    transition: color 0.3s;
}
.header-form-button:hover {
	background-color: $color1;
    border-color: $color1;
    color: #EEE9E2;
}
.header-form-button:focus {
	outline: none;
}
.signup-fixed-container {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: transparent;
    bottom: 0;
    z-index: 2;
}
.form-subscribe-header {
	text-align: center;
}
.form-subscribe-header h2 {
	color: white;
    font-family: courier-prime, monospace;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 0px;
    padding-top: 5px;
    text-transform: uppercase;
}
.form-subscribe-header p {
	color: white;
    font-size: 16px;
    font-family: courier-prime, monospace;
    line-height: 1;
    margin: 0 0 10px;
}
.v-fix {
	clear: both;
}
.v-fix label {
	color: white;
    font-size: 14px;
    font-weight: 400;
    font-family: courier-prime, monospace;
    display: block;
    line-height: 24px;
    letter-spacing: 1px;
}
.v-fix input {
	background: transparent none repeat scroll 0 0 !important;
    border: 1px solid white;
    color: white;
    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 8px 5px;
    line-height: 12px;
    font-size: 14px;
    margin-bottom: 10px;
    border-radius: 0;
    width: 100%;
}
.v-fix input:focus {
  outline: none;
  color: white;
  border-color: white;
}
.form-success {
    display: none;
	color: white;
    font-size: 14px;
    text-transform: uppercase;
    font-family: courier-prime, monospace;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    line-height: 24px;
  
}
.dobDay, 
.dobMonth,
.yearSelect {
  	background-image: url(https://canada-a.akamaized.net/images/sort-arrow.svg);
    background-position: 97%;
    background-color: transparent;
    background-repeat: no-repeat;
    color: white;
    height: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    font-size: 14px;
    text-overflow: '';
    border-radius: 0;
    font-family: courier-prime, monospace;
    font-weight: 400;
    font-style: normal;
    border: 1px solid white;
}
.yearSelect {
	background-position: 98%;
}
.dobDay,
.dobMonth {
    margin-bottom: 10px;
}
.month-wrapper,
.day-wrapper {
	float: left;
    width: 49%;
}
.dobDay:focus,
.dobMonth:focus,
.yearSelect:focus {
	border-color: white;
    border-width: 2px;
}

.month-wrapper {
	margin-right: 2%;
}
.yearSelect {
	width: 100%;
}
.terms-container {
	font-size: 11px;
    padding: 10px 0;
    line-height: 11px;
    font-family: courier-prime, monospace;
    color: white;
}
.terms-container a {
	color: white;
}
.terms-container a:hover {
	color: grey;
}

/* form site overlay */
.form-site-overlay {
	position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.46);
    z-index: 1;
}

/* Footer Form notification styling */
.footer-success {
    display: none;
    padding: 15px 0;
    color: #EEE9E2;
    font-size: 14px;
}
.footer-failure {
	display: none;
    padding: 15px 0;
    color: #b60e0e;
    font-size: 14px;
}

/* footer form styling */
.form-block {
	width: 100%;
}
.form-2 {
  display: flex;
}
input[type="email"].footer-input {
	background: transparent;
    border: 1px solid #eee9e2bf;
    color: #eee9e2;
    font-family: courier-prime, monospace;
    border-radius: 0;
    font-weight: 500;
    font-size: 16px;
  width: 60%;
}
input[type="email"].footer-input:hover, input[type="email"].footer-input:focus {
  border: 1px solid #eee9e2;
}
.w-input {
  margin-bottom: 0;
}
.footer-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #eee9e2bf;
  font-family: courier-prime, monospace;
  font-size: 16px;
  font-weight: 500;
}
.footer-input::-moz-placeholder { /* Firefox 19+ */
  color: #eee9e2bf;
  font-family: courier-prime, monospace;
  font-size: 16px;
  font-weight: 500;
}
.footer-input:-ms-input-placeholder { /* IE 10+ */
  color: #eee9e2bf;
  font-family: courier-prime, monospace;
  font-size: 16px;
  font-weight: 500;
}
.footer-input:-moz-placeholder { /* Firefox 18- */
  color: #eee9e2bf;
  font-family: courier-prime, monospace;
  font-size: 16px;
  font-weight: 500;
}
#footer-form {
	width: 130px;
    padding: 5px;
    background-color: transparent;
    border: 1px solid #EEE9E2BF;
    font-family: courier-prime, monospace;
    font-weight: 400;
    color: #EEE9E2BF;
    text-transform: capitalize; 
    transition: all 0.3s;
}
#footer-form:hover {
    background-color: #EEE9E2;
    color: black;
}
#footer-form:focus {
	outline: 0;
}
.home-page-item:nth-child(1) {
	margin-left: 0 !important;
    clear: both;
}
.header-padding-wrapper {
	padding: 30px 15px 0;
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
}
figure {
	margin: 0;
}
.collection {
	padding-bottom: 48px;
}
.section {
  position: relative;
  width: 100%;
}

.product-offer .product-prices {
	margin-top: 30px;
}
.product.page {
  font-family: courier-prime, monospace;
}
.product.page .product-offer .product-prices {
	font-weight: 400;
    font-size: 16px;
    font-family: courier-prime, monospace;
}

ul {
	padding-left: 0;
}
.product.page .product-header .product-title {
	font-family: courier-prime, monospace;
    font-weight: 400;
    font-size: 42px;
  color: white;
}
.product.page .product-offer .product-prices {
  color: white;
}
.breadcrumbs-container.product-crumbs {
	display: none;
}
.add-to-cart {
	border-bottom: 0;
}
.product.page .add-to-cart .form-control label {
  text-tranform: capitalize;
  color: white;
}
.rte ul, .rte ol {
	margin-left: 0;
}
.product-info .product-description .section-title {
  display: none;
	padding: 8px 17px;
    position: relative;
    font-size: 14px;
    font-family: courier-prime, monospace;
    color: #EEE9E2;
    background: #000;
    font-weight: 400;
    margin-bottom: 0;
  	&:after {
  		content: '';
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #000;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
}
.product.page .product-description .rte {
    border-top: none;
    padding-top: 15px;
    font-family: courier-prime, monospace;
  color: white;
}
.product.page .button-add-to-cart {
	font-family: courier-prime, monospace;
    background-color: #00000042;
    border: 1px solid white;
    transition: all 0.3s;
    color: white;
    border-radius: 0;
    font-weight: 400;
  width: 100%
}
.product.page .button-add-to-cart:hover {
    text-decoration: none;
    color: white;
  background-color: #f67538;
  border: 1px solid #f67538;
    transform: scale(1.02);
}
.product-list .product-item-image {
    max-height: none;
    margin-bottom: 0px;
	display: block !important;
}
.product-list .overlay-container {
	height: auto;
  	padding: 0;
  	overflow: hidden;
  	margin-bottom: 15px;
}
.product-labels {
  right: 0;
    top: 10px;
  width: fit-content;
}
.product-label {
  background: black;
}
/* custom styling starts here, this was added in mainly for item overlay after exporting webflow code in  */

.product-list-item {
	position: relative;
}
.product-list .product-item-title {
	width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding: 10%;
    //position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
    //opacity: 0;
    transition:opacity 0.4s ease-in-out;
    font-family: courier-prime, monospace;
    font-size: 16px;
}
.product-list .product-item-title:hover {
	color: $color1;
}
.overlay-title,
.product-item-info .price{
    font-family: courier-prime, monospace;
    letter-spacing: 0px;
}
.product-list .product-item-info .product-item-title {
  	font-size: 14px;
	padding: 0;
    margin: 0 0 5px;
    font-weight: 400;
}
.product-button {
	font-family: courier-prime, monospace;
    color: white;
    background-color: transparent;
    font-size: 15px;
    font-weight: 400;
    padding: 6px 8px;
    border: 1px solid white;
    margin: 11px 0 0;
    display: none;
    transition: all 0.3s;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* overlay title styling for overlay-1-style(tag page, when 4 items per row on desktop) */
.overlay-item-1-style .overlay-title {
	font-size: 17px;
}
.product-list .overlay-item-1-style .product-item-title {
	padding: 20px;
}
.product-list .product-item-info .price {
	font-size: 16px;
 	margin: 0;
    font-weight: 400;
    text-align: left;
    display: none;
}
.product-list {
	padding-left: 0;
}

.image-wrapper .image {
	background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.image-wrapper:after {
	padding-top: 100%;
    display: block;
    content: '';
}
.lp_page.container {
  display: none;
}
/* CUSTOM ITEM GRID STYLING FOR 3 PER ROW ON DESKTOP */
.custom-item-css {
	margin: 0 15px 30px;
    width: calc(25% - 30px);
    float: left;
    position: relative;
}
.custom-item-css:nth-child(4n + 1) {
	clear: both; 
}
.custom.container {
	max-width: 1100px;
    padding: 0;
}
.custom.inner {
  padding: 0;
}






.section.lp_logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.4s;
  position: fixed;
  top: 0;
  z-index: 2;
}

.section.lp_blurb {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #000;
}

.section.top_bar {
  padding-top: 7px;
  background-color: #000;
}

.section.lp_tag_bar {
  padding-top: 0px;
  padding-right: 0px;
  padding-left: 0px;
}

.section.lp_footer {
  position: relative;
  left: 0px;
  bottom: 0px;
  padding: 30px 15px;
  background-color: #000;
}

.section.lp_footer.footer-container {
  position: relative;
}

.section.lp_slide {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 240px;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  border-right: 3px solid hsla(0, 0%, 100%, .24);
  background-color: #000;
}

.section.hero-banner {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.image.lp_logo {
      width: 238px;
    height: auto;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.image.lp_icon {
  width: 90px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.image.lp_cart {
  width: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  opacity: 0.49;
}

.shape.lp_hero {
  position: relative;
  width: 100%;
  padding-top: 44.79%;
}

.background {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.background.lp_hero {
  background-image: url('../images/banner.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
body {
	background: black;
  color: white;
  	background-image: url(//store.warnermusic.ca/cdn/shop/t/42/assets/Bkgd-alt.png?v=115767014219813874671692884300);
  	background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
.background-image {
    background-image: url(//store.warnermusic.ca/cdn/shop/t/42/assets/Bkgd-alt.png?v=115767014219813874671692884300);
  	background-position: 50% 50%;
    background-size: cover;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;

}
.body {
  font-family: courier-prime, monospace;
  font-size: 16px;
  font-weight: 400;
}

.row.lp_blurb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.row.lp_topbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.row.copyright {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.text.lp_blurb {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #EEE9E2;
  font-weight: 300;
}

.text.lp_cart {
  margin-right: 5px;
  padding-top: 3px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 100%;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text.copyright {
  width: 100%;
  color: hsla(0, 0%, 100%, .56);
  font-size: 10px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text.lp_menu {
  color: #EEE9E2;
  font-size: 12px;
  line-height: 100%;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.col.lp_blurb_icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 264px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.lp_container {
  display: block;
  width: 90%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.lp_container.lp_tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  max-width: 1100px;
  position: relative;
    top: 5px;
    margin-left: 10px;
}

.lp_container.lp_footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1100px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.lp_footercol.newsletter-column {
  width: 50%;
}

.lp_container.topbar {
  width: 95%;
  max-width: none;
}

.link.lp_cart {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #EEE9E2;
  text-decoration: none;
}

.link.lp_website {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #EEE9E2;
  font-size: 12px;
  line-height: 100%;
  font-weight: 300;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.link.lp_website.nav {
  height: auto;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.link.lp_tag {
  margin:0 7px;
  font-family: courier-prime, monospace;
  color: white;
  line-height: 1;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.link.lp_tag:hover {
  text-decoration: underline;
  color: white;
}

.link.lp_footer {
  width: 100%;
  margin-bottom: 0px;
  padding-bottom: 9px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-family: courier-prime, monospace;
  color: #EEE9E2;
  font-size: 15px;
  letter-spacing: 1px;
  text-decoration: none;
  text-indent: 0em;
  text-transform: none;
}

.link.lp_footer.cart {
  display: block;
  margin-bottom: 22px;
}

.link.lp_footer.footer-primary-link {
  font-family: courier-prime, monospace;
  font-size: 14px;
  color: #EEE9E2BF;
  font-weight: 400;
  letter-spacing: 0;
  transition: all 0.3s;
}

.link.lp_footer.footer-primary-link:hover {
  text-decoration: underline;
  color: #EEE9E2;
}

.icon.lp_cart {
  font-family: Fontawesome, sans-serif;
}

.icon.lp_social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  margin-bottom: 8px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border:1px solid $color1;
  border-radius: 50%;
  background-color: transparent;
  font-family: Fontawesome, sans-serif;
  color: #EEE9E2;
  font-size: 20px;
  line-height: 100%;
  text-decoration: none;
}

.icon.lp_social:hover {
  //background-color: $color1;
  //color: #EEE9E2;
  transform: scale(1.1);
}

.icon.lp_social.nav {
  width: 30px;
  height: 30px;
  font-size: 20px;
}

.icon.lp_menu {
  font-family: Fontawesome, sans-serif;
}

.cart_qty {
  position: absolute;
  top: -3px;
  right: -13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  padding-top: 1px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: 10px;
  line-height: 100%;
}

.lp_footercol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  padding-right: 25px;
  padding-left: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.lp_footercol.footer-newsletter-col {
  width: 25%;
  padding-right: 25px;
  padding-left: 0px;
}

.lp_footer_h {
  width: 100%;
  margin-bottom: 18px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-family: courier-prime, monospace;
  color: #EEE9E2;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
}

.lp_footer_h.nav {
  margin-bottom: 8px;
  color: hsla(0, 0%, 100%, .46);
  font-size: 14px;
}

.group.footer_icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 11px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.group.lp_slide_icon {
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 10px;
  cursor: pointer;
}

.group.lp_slide_icon.overlay_open {
  left: 7px;
  top: 1px;
  display: none;
  padding-top: 14px;
  padding-bottom: 5px;
}

.group.lp_slide_icon.overlay_close {
  left: 7px;
  top: 5px;
}

.frame.lp_slide {
  width: 100%;
  height: 100%;
  min-height: 458px;
  padding-top: 11px;
  padding-right: 16px;
  padding-left: 24px;
}

.lp_navgroup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 22px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.trans {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}

.trans.overlay_close {
  display: none;
}

.lp_slide.section {
  overflow: auto;
  width: 220px;
  -webkit-transform: translate(-100%, 0px);
  -ms-transform: translate(-100%, 0px);
  transform: translate(-100%, 0px);
}

.top-bar-newsleter {
  padding-right: 15px;
  padding-bottom: 6px;
  padding-left: 15px;
  border: 1px none #000;
  background-image: -webkit-linear-gradient(270deg, #000, #000);
  background-image: linear-gradient(180deg, #000, #000);
}

.text-block {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: courier-prime, monospace;
  color: #EEE9E2;
  font-size: 15px;
}

.top-bar-newsletter-wrapper {
  position: relative;
  max-width: 1182px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 5px;
  padding-left: 0px;
  border: 1px none #aa2b2b;
}

.div-block {
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
}

.link-2 {
  margin-left: 30px;
  padding: 5px 13px 6px;
  border: 1px solid #EEE9E2;
  font-family: courier-prime, monospace;
  color: #EEE9E2;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.link-2:hover {
  border-color: #e2e2e2;
  background-image: -webkit-linear-gradient(270deg, #e2e2e2, #e2e2e2);
  background-image: linear-gradient(180deg, #e2e2e2, #e2e2e2);
  color: #000;
}

.top-bar-newsletter-close {
  position: absolute;
  top: 0px;
  right: 40px;
  width: 30px;
  height: 30px;
  border: 1px solid transparent;
  background-color: transparent;
  background-image: url('../images/pvris-x-button.png');
  background-position: 50% 50%;
  background-size: auto 11px;
  background-repeat: no-repeat;
}

.top-bar-newsletter-close:hover {
  border-color: #EEE9E2;
}

.text-block-2 {
  max-width: 869px;
  text-align: center;
}

.header-wrapper {
  position: relative;
  width: 100%;
  margin-top: 10px;
  padding: 0;
    width: 100%;
    max-width: 1130px;
    margin: 12px auto 45px;
  display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.link-3 {
  display: inline-block;
  font-family: courier-prime, monospace;
  color: #e2e2e2;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  text-transform: lowercase;
}

.link-3:hover {
  text-decoration: underline;
}

.header-content {
  position: static;
  display: flex;
  border: 1px none #dbcbcb;
}

.link-4 {
  display: inline-block;
  margin-left: 7px;
  font-family: courier-prime, monospace;
  color: white;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}
.link-4:hover {
  color: white;
  text-decoration: underline;
}
.image-2 {
  margin-left: 9px;
  width: 18px;
}
.lp_cart {
  position: relative;
  display: block;
  float: none;
}

.cart_qty {
  position: absolute;
  top: -11px;
  right: -12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: $color1;
  color: #EEE9E2;
  font-size: 11px;
}

.text-block-4 {
  display: block;
  margin-top: 6px;
  float: left;
  clear: none;
  font-family: courier-prime, monospace;
  font-weight: bold;
  color: #EEE9E2;
  font-size: 11px;
}

.footer-copyright-container {
  width: 100%;
  margin-top: 24px;
}

.copyright-list-item {
  padding-right: 10px;
  border-right: 1px solid #EEE9E2;
  font-family: courier-prime, monospace;
  font-weight: bold;
  color: #EEE9E2;
  font-size: 11px;
  text-decoration: none;
}

.copyright-list-item:hover {
  text-decoration: underline;
}

.copyright-list-item.no-border-right {
  padding-right: 0px;
  border-right-style: none;
}

.footer-copyright-link {
  padding-right: 5px;
  border-right: 1px solid #EEE9E2;
  font-family: courier-prime, monospace;
  font-weight: bold;
  color: #EEE9E2;
  font-size: 11px;
  text-decoration: none;
  text-transform: uppercase;
}

.copyright-list {
  margin: 6px 0 0;
  float: right;
}

.copyright-list-style {
  display: inline-block;
  margin-right: 4px;
}

.content-wrapper {
  position: static;
}

.text-block-5 {
  min-height: 600px;
  color: #000;
  text-align: center;
}

.back-link {
  display: inline-block;
  padding-bottom: 10px;
  float: left;
  font-family: courier-prime, monospace;
  color: white;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
}

.back-link:hover {
  color: $color1;
}

.form {
  width: 100%;
}

.email-input {
  width: 225px;
  height: 30px;
  margin-right: 20px;
  float: left;
  border-style: none none solid;
  border-width: 1px 1px 3px;
  border-color: #EEE9E2;
  background-color: transparent;
  font-family: courier-prime, monospace;
  color: #EEE9E2;
}

.email-input:focus {
  border-color: #e2e2e2;
}

.submit-button {
  padding: 2px 15px;
  float: none;
  border-style: solid;
  border-width: 3px;
  border-color: #EEE9E2 #EEE9E2 #e2e2e2;
  background-color: transparent;
  font-family: courier-prime, monospace;
  color: #EEE9E2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.submit-button:hover {
  background-color: #e2e2e2;
  color: #000;
  font-weight: 700;
}

.terms-link {
  display: inline-block;
  margin-bottom: 5px;
  font-family: courier-prime, monospace;
  color: #EEE9E2;
  font-size: 10px;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
}

.terms-link:hover {
  text-decoration: underline;
}

.terms-content-container {
  display: block;
}

.terms-copy {
  width: 60%;
  font-family: courier-prime, monospace;
  color: #EEE9E2;
  font-size: 11px;
  text-indent: 1.5px;
  text-transform: uppercase;
}

.button {
  //padding: 0px 0px 5px;
  background-color: transparent;
  font-family: courier-prime, monospace;
  color: #EEE9E2;
  //font-size: 11px;
  text-transform: capitalize;
}

.button:hover {
  text-decoration: underline;
}
.top-header-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.login_wrap.sub-theme {
  float: right;
  margin: 0;
  li {
    margin: 0 3px;
    float: left;
    font-family: courier-prime, monospace;
    color: white;
    font-size: 13px;
    font-weight: 400;
  }
  a {
    &:hover  {
      color: $color1;
    }
  }
}
.login_wrap.sub-theme.mobile {
	display: none;
}
.a-busi-logo {
  margin-left: 15px;
  float: right;
}

.breadcrumbs-container {
  max-width: 1100px;
  margin-bottom: 25px;
  margin-top: 0px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 0;
  border: 1px none #000;
}
.lp_main.section {
	padding: 200px 15px 0;
  background: #ffffff1a;
}
.crumbs-list {
  margin-bottom: 0px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0px;
  padding-left: 15px;
  font-family: courier-prime, monospace;
  font-weight: 400;
  list-style-type: none;
  font-size: 17px;
}

.crumb-li {
  float: left;
}

.link-5 {
  font-family: courier-prime, monospace;
  color: #EEE9E2;
  text-decoration: none;
  text-transform: none;
}

.current-li {
  text-transform: capitalize;
  font-weight: bold;
}

.breadcrumb-slash {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
  color: #000;
}

.breadcrumb-home-link {
  font-weight: 400;
  color: #000;
  text-decoration: none;
}

.breadcrumb-home-link:hover {
  color: $color1;
}
.float-item-custom-1 .old-price,
.float-item-custom-1 .new-price {
	display: block;
}
.collection-title {
  display: none;
  padding-left: 15px;
  margin-top: 5px;
  margin-bottom: 0px;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  font-family: courier-prime, monospace;
  color: #000;
  text-transform: capitalize;
  font-size: 24px;
  font-weight: bold;
}
html.w-mod-js *[data-ix="hide-terms-on-initial"] {
  display: none;
  height: 0px;
}


/* featured slider (home page) styles */
.featured-slider .float-item-custom-1:nth-child(4n+1) {
	clear: none;
} 

.slide-container {
	max-width: 1100px;
    margin: 0 auto 60px;
    position: relative;
}
@media (max-width: 1170px) {
  	.lp_container.lp_tag {
       padding-left: 15px;
       padding-right: 15px;
    }
}
@media (max-width: 991px) {
  .lp_footercol.newsletter-column {
    width: 60%;
  }
      .slide-container {
    margin: 0 auto 40px;
}
  .copyright-list {
    display: block;
    width: 100%;
    margin-top: 0px;
    float: left;
  }
  .a-busi-logo {
    margin-bottom: 15px;
    margin-left: 0px;
    float: left;
  }
  .custom-item-css {
	margin: 0 15px 30px;
    width: calc(33.33% - 30px);
    float: left;
    position: relative;
  }
  .custom-item-css:nth-child(4n + 1) {
      clear: none; 
  }
  .custom-item-css:nth-child(3n + 1) {
      clear: both; 
  }
  .overlay-item-1-style .overlay-title {
	font-size: 12px;
  }
  .section.lp_tag_bar {
    padding-right: 0px;
    padding-left: 0px;
  }
  .shape.lp_hero {
    padding-top: 62.79%;
  }
  .col.lp_blurb_icon {
    width: 200px;
  }
  .link.lp_tag:hover {
    text-decoration: none;
  }
  .lp_footercol {
    width: 50%;
  }
  .lp_footercol.footer-newsletter-col {
    width: 50%;
  }
  .lp_footer_h {
    padding-top: 48px;
    font-size: 16px;
  }
  .header-content {
    position: static;
    display: flex;
    margin-right: 15px;
    padding-top: 0px;
    float: right;
  }
  .lp_cart {
    display: inline-block;
    float: right;
  }
  .copyright-list-style.last-child {
    margin-right: 0px;
  }
  .back-link {
    float: left;
  }
  .product-list .product-item-title {
    opacity: 1;
    position: static;
    padding: 20px;
  }
  .product-list .product-item-title, 
  .product-list .overlay-item-1-style .product-item-title {
  	padding: 10px 0;
  
  }
  .overlay-title {
 	font-size: 12px;
  }
  
}
@media only screen and (max-width: 641px) and (min-width: 480px) {
  
 .product-list .grid-item:nth-child(3n+1) {
	clear: none !important;
   border-bottom: 1px solid white;
 }
  .lp_footercol.newsletter-column {
    width: 100%;
  }
  
}
@media (max-width: 767px) {
  .lp_main.section {
	padding: 100px 15px 0;
}
  .lp_footercol.newsletter-column {
    width: 70%;
  }
  body {
  	background-image: url(//store.warnermusic.ca/cdn/shop/t/42/assets/oil-paint-BG-mobile.png?v=181213048372003073881677615811);
    background-size: cover;
    background-attachment: initial;
  }
      .mobile-logo {
  display: block;
}
      .main-menu li.desktop-logo {
  display: none;
}
  .login_wrap.sub-theme.desktop {
      display: none;
  }
  .login_wrap.sub-theme.mobile {
      display: block;
      float: none;
      padding: 15px;
  }
  .collection-title {
	text-align: center;
  }
  .lp_container.lp_tag {
	position: fixed;
    width: 100vw;
    background-image: url(//store.warnermusic.ca/cdn/shop/t/42/assets/Bkgd-alt.png?v=115767014219813874671692884300);
    background-size: cover;
    top: 0;
    left: -100%;
    bottom: 0;
    z-index: 4;
    padding: 24px 0 0;
    transition: left 0.4s ease-in-out;
    display: block;
    margin: 0;
  }
  .lp_container.lp_tag.active {
	left: 0;
  }
  .link.lp_tag {
	padding: 14px 20px;
    display: block;
    color: white;
    width: 100%;
    font-size: 16px;
    margin: 0;
  }
  .link.lp_tag:hover, .link.lp_tag:focus {
    background: rgba(18, 18, 18, 0.04);
  }
  .main-menu {
	text-align: left;
  width: 100%;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  }
  .main-menu li {
	display: block;
    width: 100%;
    float: none;
  }
  .link.lp_tag.mobile-login {
      display: block;
  }
  .hide-mobile-nav {
	display: block;
  }
   .header-content.mobile {
      display: block;
      position: absolute;
      top: 4px;
      right: 5px;
  }
  .header-content.desktop {
		display: none;
  }
  .login-link {
      display: none;
  }
  .dobDay, 
  .dobMonth,
  .yearSelect {
  	  background-position: 98%;
  }
  .menu-icon {
	display: block;
  }
  .lp_cart.desktop {
	display: none;
  }
  .header-padding-wrapper {
 	padding-top: 15px;
  }
  .lp_cart.mobile {
	display: block;
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);
    right: 24px;
  }
  .month-wrapper, .day-wrapper {
	width: 100%;
  }
  .back-link {
	display: none;
  }
  .login-link {
	display: none;
  }
  .month-wrapper {
	margin-right: 0;
  }
  .section.lp_logo {
    padding-bottom: 17px;
  }
  .section.lp_tag_bar {
    display: block;
  }
  .image.lp_logo {
    width: 165px;
  }
  .header-wrapper {
     -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
  }
  .shape.lp_hero {
    padding-top: 58.79%;
  }
  .row.lp_topbar {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .lp_container.topbar {
    width: 92%;
  }
  .link.lp_website {
    display: none;
  }
  .link.lp_tag.last-tag {
    margin-right: 0px;
  }
  .icon.lp_social {
    -webkit-transition: background-color 300ms ease, color 300ms ease;
    transition: background-color 300ms ease, color 300ms ease;
  }
  .lp_footercol {
    width: 48%;
    margin-bottom: 0px;
  }
  .lp_footercol.footer-newsletter-col {
    width: 100%;
  }
  .lp_footercol.col-margin {
    margin-left: 4%;
  }
  .top-header-wrapper {
    display:none;
  }
  .group.lp_slide_icon.overlay_open {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .text-block {
    display: block;
  }
  .div-block {
    text-align: center;
  }
  .link-2 {
    display: inline-block;
    margin-left: 0px;
  }
  .header-wrapper {
    margin: 20px 0;
    text-align: center;
  }
  .text-block-5 {
    color: #EEE9E2;
  }
  .back-link {
    text-align: center;
  }
  .custom-item-css {
	width: calc(50% - 30px);
  }
  .custom-item-css:nth-child(3n + 1) {
	clear: none; 
  }
  .custom-item-css:nth-child(odd) {
	clear: both; 
  }
  .toaster-wrapper {
	flex-direction: column;
  }
  .toaster-copy {
    font-size: 14px;
    margin: 0 0 5px;
  }
  .toaster-button {
	font-size: 13px;
    padding: 3px 12px;
  }
  
}

@media (max-width: 479px) {
  .float-item-custom-1 {
    width: 90%;
    margin: 0 auto 30px;
  }
  .slide-container {
    margin: 0 auto 40px;
}
  .lp_main.section {
	padding: 100px 15px 0;
}
  .lp_footercol.newsletter-column {
    width: 100%;
  }
  .product-list .product-item-info .product-item-title {
  	font-size: 16px;
  }
  .breadcrumbs-container {
	margin-bottom: 15px;
  }
  .header-content.mobile {
	top: 10px;
  }
  .shape.lp_hero {
    padding-top: 78.78999999999999%;
  }
  .row.lp_blurb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .text.lp_blurb {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .col.lp_blurb_icon {
    width: 100%;
    margin-bottom: 12px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .lp_container.topbar {
    width: 85%;
  }
  .link.lp_tag {
    margin-right: 10px;
    font-size: 16px;
    letter-spacing: 2px;
  }
  .link.lp_tag.last-tag {
    margin-right: 0px;
  }
  .lp_footercol {
    width: 100%;
  }
  .lp_footercol.col-margin {
    margin-left: 0%;
  }
  .link-2 {
    display: inline-block;
  }
  .top-bar-newsletter-close {
    right: 0px;
  }
  .header-wrapper {
    margin: 12px 0;
  }
  .header-content {
    float: right;
  }
  .text-block-4 {
    margin-top: 24px;
  }
  .copyright-list-item {
    border-right-style: none;
  }
  .copyright-list-style {
    display: block;
  }
  .text-block-5 {
    color: #EEE9E2;
  }
  .login-link {
    float: none;
  }
  
}

