/** Shopify CDN: Minification failed

Line 12:0 Comments in CSS use "/* ... */" instead of "//"
Line 14:0 Comments in CSS use "/* ... */" instead of "//"
Line 16:0 Comments in CSS use "/* ... */" instead of "//"
Line 34:0 Unexpected "$"

**/

/* SCSS Variables */

// black
$color1: #000;
// white
$color2: #fff;
// yellow
$color3: #ffec54;


@font-face {font-family: "Neuzeit Office SR W04 Regular";
  src: url("Neuzeit_Office_SR_W04_Regular.eot"); /* IE9*/
  src: url("Neuzeit_Office_SR_W04_Regular.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
  url("Neuzeit_Office_SR_W04_Regular.woff2") format("woff2"), /* chrome、firefox */
  url("Neuzeit_Office_SR_W04_Regular.woff") format("woff"), /* chrome、firefox */
  url("Neuzeit_Office_SR_W04_Regular.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url("Neuzeit_Office_SR_W04_Regular.svg#Neuzeit Office SR W04 Regular") format("svg"); /* iOS 4.1- */
  font-style: normal;
  font-weight: normal;
}




$font1: 'Helvetica Neue','Helvetica','Arial',sans-serif; 

$font2:  'Neuzeit Office SR W04 Regular', sans-serif;



/* This removes weird theme css that caused fonts to appear thinner and partially fuzzy */
* {
	-webkit-font-smoothing: unset;
}

select, input[type=number] {
  background: transparent;
  border: 1px solid black;
  border-radius: 0px;
}

.home-banner {
  margin: 0 auto;
  width: 90%;
  padding: 40px 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  a {
    display: block;
  }
  img {
    margin: 0 auto;
    width: 100%;
    max-width: 1600px;
    display: block;
  }
}
.feature-product-banner {
    margin: 0 auto;
    width: 100%;
    max-width: 1500px;
}
.main-menu {
	margin: 0 0 0 20px;
}
.on-sale-label, .sold-out-label, .pre-order-label {
  margin-right: 0;
}
/* css for price fix, when sold out */

.product-options {
	position: relative;
}
.price.alt-price {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
  	display: none;
    font-family: $font1;
    font-weight: 400;
    font-size: 26px;
}
.product-offer {
	border: none;
}

.slide-container {
    width: 100%;
    margin: 30px auto 48px;
    position: relative;
	max-width: 1182px;
}
.slick-slider {
	margin-bottom: 0;
}
/* 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;
}
.homepage-tour-section {
  text-align: center;
      display: flex;
    flex-direction: column;
    align-items: center;
}
.tour-img {
  max-width: 550px;
  width: 100%;
}
select, input[type=number] {
  border: 1px solid white;
  color: white;
}
.styled-select:after, .form-control>.selector-wrapper:after {
  color: white;
}
.tour-link {
  color: $color2;
  background-color: transparent;
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  font-family: $font2;
  font-size: 20px;
  text-transform: uppercase;
  border: 2px solid white;
}
.back_to_store {
	color: white;
  	font-weight: 600;
    display: inline-block;
}
.product.page .product-header .product-title {
	font-size: 41px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: $font2;
    color: white;
}
.product.page .product-header .product-brand {
  display: block;
	font-size: 30px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: $font2;
    color: #e2d90c;
}
.product.page .product-offer .product-prices {
 	font-family: $font2;
    color: white;
    font-weight: 400;
    font-size: 18px; 
}

.rte h1, .rte h2, .rte h3, .rte h4, .rte h5, .rte h6 {
	font-family: $font2;
    color: black;
}
.rte h4 {
	color: rgba(0, 0, 0, 0.7);
  font-weight: 300;
}
.container {
	padding:0;
    max-width: 1500px;
}
.collection {
	padding: 0 15px 60px;
	&.home {
		padding: 60px 15px 140px;
    }
}
.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(25% - 15px);
    margin: 0 7.5px 20px;
    padding: 0 30px 75px;
    position: relative;
    background-color: #f5f5f48c;
  	transition: background-color 0.3s;
}
.float-item-custom-1:hover {
 	background-color: transparent; 
}
.product-list .product-item-image {
    max-height: none;
    margin-bottom: 5px;
	display: block !important;
}
.product-list .overlay-container {
	height: auto;
  	padding: 0;
}
.product-button {
	font-family: $font1;
    color: $color2;
    font-weight: 700;
    font-size: 12px;
    background-color: $color1;
    padding: 7px 9px 6px;
    display: inline-block;
    margin-top: 40px;
    transition: all 0.3s;
    position: absolute;
    border: 1px solid $color2;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    min-width: 101px;
	&:hover {
      color: $color3;
    }
}
@media (max-width: 992px) {
	.float-item-custom-1 {
      width: calc(33.33% - 15px);
      margin-bottom: 30px;
      padding: 0 10px 75px;
    }

}
@media (max-width: 640px) {
  	.float-item-custom-1 {
      width: calc(50% - 15px);
      padding: 0 0 75px;
    }
  .product-list .product-item-info .product-item-title {
    padding: 5px 10px 10px;
  }
.back_to_store{
  margin-bottom: 0;
} 
    .product.page .product-header {
    padding-top: 0px;
  }
}
.product.page .product-header .product-brand {
  margin: 0;
}
.product-header {
  padding-top: 0px;
  padding-bottom: 20px;
}
.container.lp_page {
  margin-left: 0;
}
/* .back_to_store{
  margin-bottom: 0;
}  */
/* Product label styling */
.on-sale-label,
.sold-out-label {
	margin-right: 0;
}
.main-menu li {
	display: inline-block;
  	position: relative;
}
.main-menu li {
  	position: relative;
}

.nav-link.mobile-login {
	display: none;
}
.product-list .product-list-item .product-labels {
	left: initial;
}

/* Main Menu styling desktop */
.on-sale-label {
	margin-right: 0;
}
.collection.tag-page {
	background: none;
}
.product.page {
	width: 90%;
  	max-width: 1500px;
  	margin: 0 auto 140px;
  padding: 60px 40px;
  position: relative;
  background: #00000070;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
/*   background-image: url('./transparent-black-item-bg.png'); */
}
.product.page .button-add-to-cart {
	background-color: #00000090;
    font-family: $font2;
    color: white;
    transition: all 0.45s;
    font-size: 17px;
    border-radius: 0;
    font-weight: 600;
  	width: 100%;
    padding: 18px 25px;
    line-height: 1;
  opacity: 0.8;
}
.product.page .button-add-to-cart:hover {
    background-color: black;
    opacity: 1;
  	text-decoration: none;
}
.product-info .product-description .section-title {
    position: relative;
    margin: 0;
    color: white;
    font-family: $font2;
    font-weight: 400;
}
/* .product-info .product-description .section-title:after {
	content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ebebeb;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
} */
.product.page .rte {
	border-top: 1px solid white;
    padding-top: 11px;
    font-family: $font2;
    font-weight: 400;
    font-size: 16px;
    color: white;
}
.product.page .form-control label {
  color: white;
  font-family: $font2;
}
.add-to-cart .form-control input {
	color: white;
}
/* mobile nav styling */

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 200px;
    background: black;
    padding-top: 12px;
    z-index: 3;
    transition: left 0.4s ease-out;
}
.mobile-nav.active {
	left: 0;
}
.hide-mobile-nav {
	background: transparent;
    font-size: 14px;
    font-family: $font2;
  	font-weight: 400;
    text-transform: uppercase;
    padding: 20px 20px 0;
    color: #e2d90c;
  	display: none;
  opacity: 0.8;
}
.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-button.svg?v=91450120081087536031505221789);
    background-size: 30px 30px;
	background-position: center;
    position: absolute;
    padding-left: 0;
    top: 50%;
    width: 45px;
    height: 45px;
    transform: translateY(-50%);
    left: 0;
}
.menu-icon:focus {
	outline: none;
}
/* top bar toaster styling  */

.home-title {
 	font-family: $font1;
    color: #000;
    font-size: 25px;
    text-transform: uppercase; 
  	margin-left: 15px;
    font-weight: 400;
    margin-top: 18px !important;
}

/* Top Header Newsletter Styling */

.required-fields {
    font-family: $font1;
    font-weight: 600;
	text-align: right;
    font-size: 10px;
    line-height: 10px;
    color: rgba(0, 0, 0, 0.7);
}
.lp_footer_h {
  font-size: 18px;
  font-weight: 800;
text-transform: uppercase;
  padding: 0 0 20px;
}
.lp_footer_h a {
  vertical-align: middle;
}
.footer-terms {
    background: transparent;
    border: none;
  border-bottom: 1px solid transparent;
    color: white;
    opacity: 0.8;
    text-transform: uppercase;
    font-size: 14px;
    margin: 4px 0;
    padding: 0;
    font-family: $font1;
  transition: 0.4s;
}
.footer-terms:focus,
.footer-terms:hover {
	outline: none;
  opacity: 1;
  border-bottom: 1px solid white;
}
.footer-terms-copy {
    display: none;
    color: white;
  opacity: 0.8;
  	line-height: 16px;
    font-size: 14px;
    font-family: $font1;
}
.footer-terms-copy.active {
  	display: block;
}
.error-text {
	margin: 0 0 5px;
    font-size: 12px;
    font-family: $font2;
    font-weight: 400;
    display: none;
  	color: black;
}
.header-signup-container {
	width: 100%;
}
.header-signup-wrapper {
    padding: 15px;
    background: $color1;
}
.signup-max-width {
	max-width: 595px;
	margin: 0 auto;
}
.close-bar {
    background: $color1;  
}
.close-bar-inner {
    max-width: 1130px;
    margin: 0 auto;
    padding: 8.5px 40px;;
    text-align: right;
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
}
.header-newsletter-close {
	background: transparent;
    border: none;
    color: $color3;
    font-size: 15px;
    font-weight: bold;
}
.header-newsletter-close:focus {
	outline: none;
}
.header-form-button {
	background-color: $color3;
    border-radius: 0;
    color: $color2;
    font-family: $font1;
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 auto 15px;
    display: block;
    padding: 11px 13px;
    width: 100%;
    letter-spacing: 0px;
    transition: all 0.3s ease-in-out;
    border: none;
    &:hover {
		background-color: $color2;
        color: $color3;
    }
}
.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: $color2;
    font-family: $font1;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 0px;
    padding-top: 5px;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.form-subscribe-header p {
	color: white;
    font-size: 18px;
    font-family: $font1;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 10px;
}
.v-fix {
	clear: both;
}
.v-fix label {
	color: white;
    font-size: 14px;
    font-family: $font1;
    font-weight: 600;
    display: block;
    line-height: 1;
    letter-spacing: 0px;
}
.v-fix input {
	background: #fff;
    border: 1px solid $color2;
    color: $color1;
    font-family: $font1;
    font-weight: 600;
    padding: 5px 5px;
    line-height: 12px;
    font-size: 16px;
    margin-bottom: 10px;
    border-radius: 0;
    width: 100%;
}
.v-fix input:focus {
  outline: none;
  color: black;
  border-color:black;
}
.form-success {
    display: none;
	color: black;
    font-size: 16px;
    text-transform: uppercase;
    font-family: $font1;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    line-height: 24px;
  
}
.dobDay, 
.dobMonth,
.yearSelect {
    background: url(https://canada-a.akamaized.net/images/sort-arrow.svg) no-repeat scroll 98% center #fff !important;
    color: black;
    height: 33px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    font-size: 14px;
    text-overflow: '';
    border-radius: 0;
    font-weight: 600;
    font-family: $font1;
    font-style: normal;
    border: 1px solid $color2;
}
.dobDay,
.dobMonth {
    margin-bottom: 10px;
}
.month-wrapper,
.day-wrapper {
	float: left;
    width: 49%;
}
.dobDay:focus,
.dobMonth:focus,
.yearSelect:focus {
	border-color: black;
}

.month-wrapper {
	margin-right: 2%;
}
.yearSelect {
	width: 100%;
}
.terms-container {
	font-size: 11px;
    padding: 10px 0;
    line-height: 11px;
    color: rgba(0, 0, 0, 0.7);
    font-family: $font1;
    font-weight: 600;
}
.terms-container a {
	color: black;
}
.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: 2;
}

/* Footer Form notification styling */
.footer-success {
    display: none;
    padding: 15px 0;
    color: black;
    font-weight: 400;
    font-family: $font1;
    font-size: 16px;
}
.footer-failure {
	display: none;
    font-weight: 400;
    font-family: $font1;
    padding: 15px 0;
    color: $color1;
    font-size: 16px;
}

/* footer form styling */
.form-block {
	width: 100%;
  padding: 5px 0;
}
input[type="email"].footer-input {
  background: transparent;
  margin: 0;
  border: none;
  color: $color1;
  font-weight: 400;
  font-family: $font1;
  font-size: 16px;
  height: auto;
  border-radius: 0;
  border: none;
}
input[type="email"].footer-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-family: $font1;
  font-size: 16px;
}
input[type="email"].footer-input::-moz-placeholder { /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-family: $font1;
  font-size: 16px;
}
input[type="email"].footer-input:-ms-input-placeholder { /* IE 10+ */
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-family: $font1;
  font-size: 16px;
}
input[type="email"].footer-input:-moz-placeholder { /* Firefox 18- */
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-family: $font1;
  font-size: 16px;
}
.form-2 {
  display: flex;
  border: 1px solid #ffffff99;
}
#footer-form {
    height: 39px;
    padding: 5px 15px;
    background: transparent;
    border-left: solid 1px #ffffff99;
    font-size: 15px;
    text-transform: uppercase;
    color: white;
    font-weight: 400;
    border-radius: 0;
  transition: 0.4s;
}
#footer-form .fa-arrow-right {
    position: relative;
    top: 4px;
    right: 2px;
}
#footer-form:hover,
#footer-form:focus {
	outline: 0;
  background: white;
  color: black;
}
.home-page-item:nth-child(1) {
	margin-left: 0 !important;
    clear: both;
}
.header-width-container {
	padding: 0;
    width: 100%;
  	margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    
}
.back-link.top-nav-style {
	display: none;
}
figure {
	margin: 0;
}
.product-offer .product-prices {
	margin-top: 30px;
}
.product-offer {
	border:none;
}
.add-to-cart {
	border: none;
}
ul {
	padding-left: 0;
}
.home-page-title {
	color: black;
    font-family: $font1;
    font-weight: 700;
    max-width: 1212px;
    padding: 0 15px;
    font-size: 22px;
    margin: 31px auto 10px;
}
.rslides {
	max-width: 1182px;
    margin: 15px auto 0;
    border: 1px solid #f1f2f6;
}
/* 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-info .product-item-title {
	font-size: 17px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 8px;
}
.product-list .overlay-container:before {
	display: none;
}
.product-list .product-item-title {
	width: calc(100% + 20px);
    height: calc(100% + 20px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: absolute;
    padding: 10px;
    opacity: 0;
    z-index: 2;
    font-family: $font1;
    background-image: url('./transparent-black-item-bg.png');
  background-size: contain;
  background-repeat: no-repeat;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
}
.product-list .product-item-title:hover {
	opacity: 1;
}
.product-list .product-item-info .price {
	font-size: 14px;
    font-weight: 700;
  	display: block;
}
.overlay-title,
.product-item-info .price{
    font-family: $font2;
}
.product_vendor {
  color: #e2d90c;
  font-weight: 600;
  font-size: 15px;
}
.overlay-title {
	font-size: 17px;
  	color: white;
    font-weight: 400;
 	margin-bottom: 2px;
    line-height: 1.2;
}
/* overlay title styling for overlay-1-style(tag page, when 4 items per row on desktop) */
.overlay-item-1-style .overlay-title {
	font-size: 15px;
}
.overlay-price {
 	margin: 0;
}
.product-item-title .overlay-price,
.product-item-title .price {
    color: white;
    font-weight: 400;
    margin: 0;
    font-family: $font2;
    font-size: 16px;
}

.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: '';
}
/* CUSTOM ITEM GRID STYLING FOR 3 PER ROW ON DESKTOP */
.custom-item-css {
	margin: 10px 15px 30px;
    width: calc(33.33% - 30px);
    float: left;
    position: relative;
}
.custom-item-css:nth-child(3n + 1) {
	clear: both; 
}
.custom.container {
  	width: 90%;
  	margin: 0 auto;
	max-width: 1500px;
    padding: 0;
}
.custom.inner {
  padding: 0;
}
.header-section {
  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;
  border-bottom: none;
}
.outer-header-wrapper {
    width: 90%;
    color: $color3;
    background-color: transparent;
    transition: color 0.15s ease-in-out;
    max-width: 1500px;
    position: relative;
    padding: 25px 0;
}
.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;
}

.footer-section {
  padding: 50px 0 0;
  position: relative;
  background: #f1d7e1;
  color: white;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.footer-container {
  position: relative;
  background: #000000;
  color: white;
  padding: 100px 0 0;
}
.footer-top-img {
position:absolute;
  top: -10px;
  height: 20px;
  width: 100vw;
 background-image: url(//store.warnermusic.ca/cdn/shop/t/42/assets/bg-header-compress.png?v=47737420057267763761689873153);
}
/* .footer-logo {
   height: 40px;
} */
.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;
}
.site-title {
  text-align: center;
  position: relative;
  line-height: 100px;
  left: -10px;
  display: inline-block;
}
.site-title img {
  width: 140px;
  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;
}
.background {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

body {
  font-size: 16px;
  font-weight: 400;
  background-image: url('./Youtube-ext.png');
  background-attachment: fixed;
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
}

.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: #fff;
  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: #fff;
  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: 1600px;
  margin-right: auto;
  margin-left: auto;
}

.footer-width-container {
  padding: 0 15px;
  width: 90%;
  max-width: 1560px;
  margin: 0 auto;
}
.footer-signup-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.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: #fff;
  text-decoration: none;
}

.nav-link {
  display: inline-block;
  padding: 0;
  margin: 0 10px;
  font-family: $font2;
  font-size: 16px;
  color: black;
  opacity: 0.7;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
  &:hover {
    border-color: black;
    opacity: 1;
  }
}
.footer-link {
  margin-bottom: 3px;
  padding-bottom: 0px;
  font-family: $font1;
  font-weight: 600;
  color: black;
  font-size: 15px;
  transition: border-color 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
  &:hover {
/*     border-color: $color3; */
  }
}
.icon.lp_cart {
  font-family: Fontawesome, sans-serif;
}

.footer-social-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  -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-radius: 50%;
  background-color: transparent;
  font-family: Fontawesome, sans-serif;
  font-size: 20px;
  line-height: 100%;
  text-decoration: none;
  transition: all 0.3s;
  color: rgba(0, 0, 0, 0.8);
  &:hover {
    color: black;
  }
}

.icon.lp_menu {
  font-family: Fontawesome, sans-serif;
}
.cart-icon {
	display: inline-block;
    color: black;
    font-size: 18px;
    margin: 0 1px 0 0px;
    position: relative;
}
.cart_qty {
  position: absolute;
  top: -13px;
  right: -14px;
  width: 22px;
  height: 22px;
  padding-top: 2px;
  border-radius: 50%;
  background: $color2;
  color: $color1;
  font-size: 11px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
  font-size: 10px;
  line-height: 100%;
}

.footer-signup {
  width: 100%;
  max-width: 300px;
}
.footer-support-links {
    width: 100%;
	margin-bottom: 30px;
  	text-align: center;
  	.footer-link {
		font-size: 14px;
        margin: 0 10px;
        font-family: $font2;
        color: rgba(0, 0, 0, 0.7);
    }
}
.footer-heading {
  width: 100%;
  margin-bottom: 20px;;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-family: $font2;
  color: black;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  transition: color 0.15s ease-in-out;
}

.footer-social-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  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;
  justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-top: 20px;
}

.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;
}


.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: Montserrat, sans-serif;
  color: #fff;
  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 #fff;
  font-family: Montserrat, sans-serif;
  color: #fff;
  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: #fff;
}

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

.link-3 {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  color: #e2e2e2;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  text-transform: lowercase;
}
.link-3:hover {
  text-decoration: underline;
}
.checkout {
  top: 55px;
  right: 0px;
  display: inline-block;
  margin-right: 13px;
  float: right;
  border: 1px none #dbcbcb;
}
.hidden-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.link-4 {
  margin-left: 20px;
}
.top-nav-style {
  font-family: $font2;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0;
  text-transform: uppercase;
  color: black;
  &:hover {
    text-decoration: none;
  }
}
.image-2 {
  margin-left: 9px;
  width: 17px;
  transition: filter 0.15s ease-in-out;
  height: auto;
}
.lp_cart {
  position: relative;
  display: block;
  float: none;
}
.text-block-4 {
  float: left;
  font-family: $font1;
  color: white;
  font-size: 10px;
}
.lp_container.lp_footer {
  display: flex;
}
.lp_footercol {
  width: 25%;
  padding: 0px;
  display: flex;
flex-direction: column;
}
.lp_footercol.col-margin {
  width: 25%;
  padding-right: 5%;
}
.lp_footercol.newsletter-column {
  width: 50%;
  padding-left: 5%;
}
.footer-copyright-container {
    width: 100%;
    margin: 0 auto;
    padding: 18px 15px;
    max-width: 1560px;
}
.footer-primary-link {
  text-transform: uppercase;
  padding: 5px 0;
  opacity: 0.7;
  transition: 0.4s;
}
.footer-primary-link:focus,
.footer-primary-link:hover {
  opacity: 1;
}
.new-copyright-wrapper {
	padding: 35px 0 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 35px;
}
.copyright-list-item {
  padding-right: 10px;
  border-right: 1px solid white;
  font-family: $font1;
  color: white;
  font-size: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.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 #fff;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

.content-wrapper {
  position: static;
}

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

.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: #fff;
  background-color: transparent;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  color: #fff;
}

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

.submit-button {
  padding: 2px 15px;
  float: none;
  border-style: solid;
  border-width: 3px;
  border-color: #fff #fff #e2e2e2;
  background-color: transparent;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  color: white;
  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: Helvetica Neue,Helvetica,Arial,sans-serif;
  color: #fff;
  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: Helvetica Neue,Helvetica,Arial,sans-serif;
  color: #fff;
  font-size: 11px;
  text-indent: 1.5px;
  text-transform: uppercase;
}

.button {
  background-color: transparent;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  color: #fff;
  text-transform: uppercase;
}

.button:hover {
  text-decoration: underline;
}

.top-header-wrapper {
  position: absolute;
  top: 50px;
  right: 0%;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  ::before {
    color: black;
  }
}

/* .login-link {
  float: right;
} */
.login_wrap.sub-theme {
  
  li {
    margin: 0 3px;
    float: left;
  }
}
.login_wrap.sub-theme.mobile {
    display: none;
}
.a-busi-logo {
  margin-left: 15px;
  float: right;
  width: 52px;
}

.breadcrumbs-container {
  width: 90%;
  max-width: 1500px;
  margin: 25px auto 40px;
}
.breadcrumbs-container.product-crumbs {
	margin-bottom: 20px;
}
.crumbs-list {
  margin-bottom: 0px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0px;
  list-style-type: none;
  font-size: 17px;
  font-weight: 400;
  font-family: $font2;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
  transition: color 0.15s ease-in-out;
  max-width: 1500px;
  margin: 0 auto;
}
.crumb-li {
  float: left;
}
.link-5 {
  font-family: $font2;
  color: #fff;
  text-decoration: none;
  text-transform: none;
}
.breadcrumb-slash {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}
.breadcrumb-home-link {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.breadcrumb-home-link:hover {
  color: $color1;
}

.collection-title {
  margin-top: 5px;
  margin-bottom: 0px;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  font-family: $font1;
  color: #000;
  font-size: 25px;
  text-transform: uppercase;
}

html.w-mod-js *[data-ix="hide-terms-on-initial"] {
  display: none;
  height: 0px;
}

@media (max-width: 991px) {
  .lp_container.lp_footer {
    flex-wrap: wrap;
  }
  .lp_footercol {
    width: 50%;
  }
  .lp_footercol.col-margin {
    width: 50%;
    padding-right: 10%;
  }
  .lp_footercol.newsletter-column {
    width: 100%;
    padding-left: 0;
    padding-top: 60px;
  }
  .product.page .product-header .product-brand {
	font-size: 24px;
    letter-spacing: 1px;

}
  .container.lp_page {
    display: none;
  }

  .collection.home {
    padding: 0;
  }
  .custom.container {
    margin: 0 auto 140px;
  }
  .custom.inner {
    padding: 30px 40px;
        background: #00000054;
    backdrop-filter: blur(1px);
  }
  .home-page {
	margin-top: -74px;
  }
  .product.page .product-header .product-title {
	font-size: 29px;
  }
  .section.lp_tag_bar {
    padding-right: 0px;
    padding-left: 0px;
  }
  .shape.lp_hero {
    padding-top: 62.79%;
  }
  .col.lp_blurb_icon {
    width: 200px;
  }
  .main-nav {
	padding-top: 4px;
  }
  .nav-link:hover {
    text-decoration: none;
  }
  .footer-heading {
    padding-top: 24px;
    font-size: 16px;
  }
  .checkout {
    display: block;
    margin-right: 15px;
    padding-top: 0px;
  }
  .lp_cart {
    display: inline-block;
    float: right;
  }
  .copyright-list-style.last-child {
    margin-right: 0px;
  }
  .back-link {
    float: left;
  }
  .product-list .product-item-title {
    display: block;
    position: static;
    padding: 20px;
    background: transparent;
    opacity: 1;
  }
  .overlay-title {
 	font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }
}

@media (max-width: 767px) {
  .product.page {
    padding: 40px;
  }
.product.page .product-showcase {
  float: none;
  width: auto;
  margin-right: auto;
}
  .product.page .product-header {
    float: none;
    width: 100%;

    padding-top: 40px;
  }
  .product.page .product-options {
    float: none;
    width: 100%;
  }

  .footer-signup-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer-signup {
    text-align: center;
  }
  .site-title {
    left: 0;
    padding-left: 50px;
  }
  .top-header-wrapper {
    position: static;
  }
  .footer-support-links.footer-column {
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
  }
  .footer-copyright-container {
	text-align: center;
  }
  .header-section {
	position: relative;
  }
  .custom.inner {
    padding: 10px 20px;
  }
  body {
  font-size: 16px;
  font-weight: 400;
  background-image: url('./mobile-bg.png');
  background-attachment: scroll;
  background-position: center center;
  background-size: 50%;
  background-repeat: repeat;
}
  .home-banner {
    position: relative;
    overflow: hidden;
/*     height: 500px; */
    padding: 80px 0;
    img {
      width: 800px;
      position: absolute;
	  left: -100%;
	  right: -100%;
    }
  }
    .home-banner {
    background-image: url('./Youtube-ext.png');
    background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  }
  .login_wrap.sub-theme.desktop {
    float: none;
    display: none;
  }
  .login_wrap.sub-theme.mobile {
    display: block;
    color: #e2d90c;
    height: 50px;
    padding: 15px;
  }
  .top-nav-style.menu_login {
    color: #e2d90c;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.8;
  }
  .collection.home {
    padding-top: 30px;
  }
  .slide-container {
	margin-top: 4px;
  }
  .home-page {
	margin-top: 0;
  }
  .product-list .overlay-item-1-style .product-item-title {
      padding: 10px;
  }
  .breadcrumbs-container {
    margin: 20px auto 30px;
  }
  .outer-header-wrapper {
    padding: 20px 0;
  }
  .product.page .product-header .product-title {
	font-size: 25px;
  }
  .nav-link.mobile-login{
      display: block;
  }
  .hide-mobile-nav {
	display: block;
  }
  .back-link {
	display: none;
  }
  .menu-icon {
	display: block;
  }
  .login-link {
	display: none;
  }
  .header-wrapper {
	 width: 100%;
     text-align: center;
     position: relative;
  }
  .month-wrapper, .day-wrapper {
	width: 100%;
  }
  .month-wrapper {
	margin-right: 0;
  }
  .section.lp_tag_bar {
    display: block;
  }
  .row.lp_topbar {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  /* STYLING FOR MOBILE MAIN MENU ((move to shared css))  */
  .color-change-container {
     margin-left: 11px;
     padding-top: 25px;
  }
  .main-nav {
    position: fixed;
    width: 280px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(1px);
    top: 0;
    left: 0;
    transform: translateX(-100%);
    bottom: 0;
    z-index: 4;
    padding: 24px 0 0;
    visibility: hidden;
    transition: transform 0.4s ease-in-out, visibility 0.4s ease-in-out;
  }
  .main-nav.active {
	transform: translateX(0);
    visibility: visible;
  }
  .main-menu {
	text-align: left;
    display: block;
    margin: 0;
  }
  .main-menu li {
	display: block;
  }
  .nav-link {
    color: #e2d90c;
	padding: 15px;
    margin: 0;
    width: 100%;
    font-size: 15px;
    border-bottom: none;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
    &:hover {
		background-color: rgba(0, 0, 0, 0.8);
    }
  }
  
/*  End of mobile main menu styling  */
  
  .lp_container.topbar {
    width: 92%;
  }
  .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;
  }
  .copyright-list {
    display: block;
    width: 100%;
    margin-top: 0px;
    float: none;
  }
  .text-block-4 {
	float: none;
  }
  .text-block-5 {
    color: #fff;
  }
  .back-link {
    text-align: center;
  }
  .a-busi-logo {
    margin-bottom: 15px;
    margin-left: 0px;
    float: none;
  }
  .custom-item-css {
	width: calc(50% - 30px);
  }
  .custom-item-css:nth-child(3n + 1) {
	clear: none; 
  }
  .custom-item-css:nth-child(odd) {
	clear: both; 
  }

}
@media (max-width: 640px) {
    .product.page .product-header {
    padding-top: 0px;
  }
}

@media (max-width: 599px) {
  .custom-item-css {
    width: 100%;
  }
  .product_vendor {
    font-size: 17px;
  }
  .overlay-title {
    font-size: 16px;
  }


}

@media (max-width: 479px) {
    .lp_footercol {
    width: 100%;
  }
  .lp_footercol.col-margin {
    display: none;
  }
  .product.page .product-header .product-title {
    font-size: 18px;
}
  .product.page .product-header .product-brand {
    font-size: 16px;
}
  .product-list .product-item-title {
   		padding: 10px 0 0;
  }
  .product-list .product-item-info .product-item-title {
	font-size: 15px;
    line-height: 1.3;
  }
  .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%;
  }

  .footer-column {
    width: 100%;
  }
  .footer-column.col-margin {
    margin-left: 0%;
  }
  .link-2 {
    display: inline-block;
  }
  .top-bar-newsletter-close {
    right: 0px;
  }
  .text-block-4 {
    margin-top: 24px;
  }
  .copyright-list-item {
    border-right-style: none;
  }

  .text-block-5 {
    color: #fff;
  }
  .login-link {
    float: none;
  }
  .home-banner {
    padding: 30px 0;
  }
}
