/* PIRANHA CUSTOM STYLES  - PROJECT SPECIFIC */

/* CUSTOM */
/*.change {display:none;}*/

/* DEFAULT STYLES */
html, body {
	font-size: 16px;
	color: #2c2c2c;
	font-family: 'Nunito Sans', sans-serif;
}
a,
a:hover,
a:visited,
.alink:visited {
	text-decoration: none;
	color: inherit;
}

input:not([disabled]):focus {
	box-shadow: none;
}

.float-link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	opacity: 0;
	transition: 0.3s;
}
.float-link:hover {
	opacity: 0.2; 
}

.bttn {
	display: inline-block;
	padding: 0.6rem 2rem;
	border-radius: 25px;
	overflow: hidden!important;
}
.bttn:hover {text-decoration: none;}

.rounded-sml{ border-radius: 10px; }
.rounded-std{ border-radius: 25px; }

.d-shadow {
	-webkit-box-shadow: 0px 5px 16px -5px rgba(33,4,72,1);
	-moz-box-shadow: 0px 5px 16px -5px rgba(33,4,72,1);
	box-shadow: 0px 5px 16px -5px rgba(33,4,72,1);
}

/* Font Weights */
.normal {font-weight: 400 !important;}
.bold {font-weight: 700 !important;line-height:110%;}
.e-bold {font-weight: 800 !important;}
.black {font-weight: 900 !important;}

/* Colours */
.text-c-base {color: #2c2c2c !important;}
.text-c-pink {color: #e30a5f !important;}
.text-c-purple {color: #4a0c9b !important;}

.bg-c-base {background-color: #2c2c2c !important;}
.bg-c-pink {background-color: #e30a5f !important;}
.bg-c-purple {background-color: #4a0c9b !important;}

/* Icons */
.sp-icon {
	display: inline-block;
	content: '';
	background-image: url('../images/sprite-sheet.png');
	background-repeat: no-repeat;
	flex-grow: 0;
	flex-shrink: 0;
}
.sp-icon.delivery-icon {
	background-position: 0px -50px;
	height: 42px;
	width: 50px;
}
.sp-icon.star-icon {
	background-position: -94px -50px;
	height: 42px;
	width: 50px;
}
.sp-icon.family-icon {
	background-position: -50px -50px;
	height: 42px;
	width: 50px;
}
.sp-icon.gear-icon {
	background-position: -144px -51px;
	height: 42px;
	width: 50px;
}
.sp-icon.pointer-icon {
	background-position: -90px -0px;
	height: 33px;
	width: 21px;
}
.sp-icon.phone-icon {
	background-position: -64px -0px;
	height: 33px;
	width: 24px;
}
.sp-icon.email-icon {
	background-position: -28px -0px;
	height: 25px;
	width: 34px;
}
.sp-icon.account-icon {
	background-position: -0px -0px;
	height: 26px;
	width: 26px;
}

.minicart-wrapper .action.showcart::before{
	flex-shrink: 0;
	content: '';
	background-image: url('../images/sprite-sheet.png');
	background-repeat: no-repeat;
	background-position: -115px 2px;
	height: 34px;
	width: 34px;
}

.sticky-top {
	position: fixed;
	top: 0;
}

/* Button Animation Effects */
/* Btn 1  */

.bttn{
	display: inline-block;
	padding: 0.6rem 2rem;
	border-radius: 25px;
	overflow: hidden!important;
	cursor: hand;
	position: relative;
	z-index:10;
	background-color: #e30a5f
}

.bttn::before {
	content: '';
	width: 0%;
	height: 105%;
	display: block;
	background: #be0189;
	position: absolute;
	-ms-transform: skewX(-20deg);
	-webkit-transform: skewX(-20deg); 
	transform: skewX(-20deg);   
	left: -10%;
	opacity: 1;
	top: -2px;
	z-index: -12;
	-moz-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
	-o-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
	-webkit-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
	transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
	box-shadow:2px 0px 14px rgba(0,0,0,.6);
}

.bttn::after {
	content: '';
	width: 0%;
	height: 105%;
	display: block;
	background: #e6e6e6;
	position: absolute;
	-ms-transform: skewX(-20deg);
	-webkit-transform: skewX(-20deg); 
	transform: skewX(-20deg);   
	left: -10%;
	opacity: 0;
	top: -2px;
	z-index: -15;
	-webkit-transition: all .94s cubic-bezier(.2,.95,.57,.99);
	-moz-transition: all .4s cubic-bezier(.2,.95,.57,.99);
	-o-transition: all .4s cubic-bezier(.2,.95,.57,.99);
	transition: all .4s cubic-bezier(.2,.95,.57,.99);
	box-shadow: 2px 0px 14px rgba(0,0,0,.6);
}
.bttn:hover::before, .bttn:hover::before{
	opacity:1;
	width: 116%;
}
.bttn:hover::after, .bttn:hover::after{
	opacity:1;
	width: 120%;
}

button.bttn { border: none; }

.bttn2{background-color: #4a0c9b}
.bttn2::before {background: #e30a5f;}
.bttn2::after {background: #e6e6e6;}

.bttn3{background-color: #2c2c2c;}
.bttn3::before {background: #4a0c9b;}
.bttn3::after {background: #e6e6e6;}

/* Header */
.page-header{ border: none; margin: 0; }

.logo { margin: 0; max-width: 100%; }
.logo img {
	max-width: 200px;
	height: auto;
}

.link-block a {
	display: flex;
	align-items: center;
	color: #2c2c2c;
}
.modal-popup .modal-inner-wrap { width: 55%; }
.fieldset.login {
	margin-bottom: 0;
}

.nav-block {
	background:#2c2c2c;
}

.nav-block .navigation {background:#2c2c2c;max-width:100%;clear:both;float:left;width:100%;}

.nav-block .nav-sections {border-bottom:0px;}

.navigation .level0 > .level-top {color:#fff;}
.navigation span {color:#fff;}
nav.navigation ul {display: flex; justify-content: space-around;
}
.block-search .action.search:before {
	color:#fff;
}

.navigation .level0 .submenu {background:#2c2c2c;}
.navigation .level0 .submenu a:hover, .navigation .level0 .submenu a.ui-state-focus {
	background: #393939;
}

.search input[type=text]:not(.browser-default) {color:#fff;}

.navigation span {text-transform:uppercase;}

.navigation .level1.submenu span {
	font-weight: 400;
	text-transform: none;
}
.checkout-index-index .nav-sections, .checkout-index-index .nav-toggle {
	display: block;
}
.minicart-wrapper .action.showcart {
	display: flex;
	align-items: flex-end;
	border-radius: 33px;
	background:#4a0c9b;
	padding: 3px 10px 6px;

	-webkit-box-shadow: 0px 5px 18px -5px rgba(33,4,72,1);
	-moz-box-shadow: 0px 5px 18px -5px rgba(33,4,72,1);
	box-shadow: 0px 5px 18px -5px rgba(33,4,72,1);
}

.minicart-wrapper .action.showcart:before {margin-left: 0.25rem;}
.minicart-wrapper .action.showcart:hover:before {color:#fff;opacity:0.8;}
.minicart-wrapper .action.showcart .text {
	position: relative;
}
.minicart-wrapper a.action.showcart,
.minicart-wrapper a.action.showcart:visited {
	color: #fff;
}

.minicart-wrapper .action.showcart.active {
	display: flex;
}
.minicart-wrapper .action.showcart.active:before {
	display: block;
	margin-left: 0.25rem;
	content: '';
}

.qty-container,
.qty-container span {
	line-height: 1.2;
}

.minicart-wrapper .action.showcart .counter.qty {
	background: transparent;
	line-height: initial;
	display: initial;
	padding: 0;
	margin: 0;
	line-height: 1.2;
}
.minicart-wrapper .block-minicart {
	z-index: 99;
}

.block-minicart .block-content > .actions > .primary .action.primary {
	font-size: 1.4rem;
	line-height: 1.2;
}

.header.links {
	float: right;
		margin-right: 15%;
		margin-top: 20px;
}

#header-cta {
	background-color: #cacaca;
}
#header-cta .cta-item {
	font-weight: 700;
	color: #2c2c2c;
}
#header-cta .cta-item span {
	max-width: 205px;
}

/* Footer */
.footer.content {
	border-top: none;
	font-weight: 300;
	color: #fff;
}

.footer .footer-block h3 {
	font-size: 1.12rem;
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.footer a:hover {text-decoration:underline;}
#footer-address span {
	display: block;
}
#footer-newsletter { flex-grow: 2; }
#footer-newsletter ul {
	display: flex;
}
#footer-newsletter ul li:not(:first-child) {
	margin-left: 1rem;
}
#footer-newsletter .field.newsletter input[type="email"] {
	height: 40px;
}
#footer-newsletter .field.newsletter input[type="email"]::placeholder {
	color: #cacaca;
	font-size: 1rem;
	opacity: 1;
}
.block.newsletter {margin-bottom: 20px;}
.block.newsletter .actions {
	width: auto;
}
.block.newsletter .action.subscribe {
	font-size: 1rem;
	text-transform: uppercase;
	white-space: nowrap;
}
.block.newsletter .field .control::before {
	content: none;
}
.footer-social li {font-size: 2rem;}
.footer-social li a {transition: 0.2s;}
.footer-social li a:hover {color: #e30a5f;}

.footer-copyright img {
	padding: 10px 0;
	max-width: 200px;
}
.footer-copyright small {
	text-align: right;
}

/* Home */
.cms-index-index
.our-prod-right { margin-bottom: 2rem; }
.our-products-block {
	min-height: 300px;
	background-size: cover;
	background-position: center;
}

.our-products-block.block-lrg {
	background-image: url(../images/home/Our_Products_Large1.jpg);
}
.our-products-block.block-rect {
	background-image: url(../images/home/Our_Products_Rectangle1.jpg);
}
.our-products-block.block-small-1 {
	background-image: url(../images/home/Our_Products_Small_1.jpg);
}
.our-products-block.block-small-2 {
	background-image: url(../images/home/Our_Products_Small_2.jpg);
}

#tech-center-top > .col > .row,
#tech-center-bottom > .col > .row {
	min-height: 205px;
}
#tech-center-top > div > .row,
#tech-center-bottom > div > .row {min-height: 200px;}

#tech-center-top > div:nth-child(2) > .row { background-color: #630094; }
#tech-center-top > div:nth-child(3) > .row { background-color: #9b018d; }

#tech-center-bottom > div:nth-child(1) > .row { background-color: #be0189; }

#custom-pc-banner {
	background-size: cover;
	background-position: center;
	background-image: url(../images/home/tech_centre/custom_pc_banner.jpg);
}

.product-image {
	padding: 2rem;
}
.product-info {
	color: #fff;
	padding: 2rem;
	border-radius: 0 0 10px 10px;
}
.product-info h4 {
	font-size: 1.25rem;
}
.product-info ul {
	padding-left: 1rem;
	margin: 0;
}
.product-info ul li,
.product-info span {
	margin-bottom: 0.125rem;
	font-weight: 300;
}
.product-info .price {
	font-weight: 800;
}
.product-info .old-price {
	font-weight: 300;
	text-decoration: line-through;
	margin-right: 0.5rem;
}
.product-info .price,
.product-info .old-price {
	font-size: 1.25rem;
}
form.add-to-cart {
	text-align: center;
}

/* Category Page */
.container-wrap {
  position: relative;
  padding: 10px 20px;
background: rgb(244,244,244);
background: -moz-linear-gradient(90deg, rgba(244,244,244,1) 0%, rgba(255,255,255,1) 60%);
background: -webkit-linear-gradient(90deg, rgba(244,244,244,1) 0%, rgba(255,255,255,1) 60%);
background: linear-gradient(90deg, rgba(244,244,244,1) 0%, rgba(255,255,255,1) 60%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4f4f4",endColorstr="#ffffff",GradientType=1);
}
#header-cta{
	margin-bottom: 0px !important;
}
.breadcrumbs li, .breadcrumbs a{
	font-size: 12px;
}
.breadcrumbs {
	margin-bottom: 0px;
}
.breadcrumbs strong {
	color: #000000;
}
.catalog-category-view .sidebar .block-subtitle {
	display: none;
}
.catalog-category-view .block-title strong{
	text-transform: uppercase;
}
.catalog-category-view .price-container .price-label{
	display: none;
}
.catalog-category-view #narrow-by-list dt{
	border-top: 1px solid #000000;
	padding: 6% 0 2% 0;
	text-transform: uppercase;
	font-size: 14px;
}

.catalog-category-view .cat-top-desc{
	background-color: #2c2c2c;
	float: left;
	padding: 2% 2% 2% 2%;
	margin-bottom: 2%;
	width: 100%;
}
.catalog-category-view  h1{
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: bold;
}
.catalog-category-view  .category-description{
	color: #FFFFFF;
}
.catalog-category-view .category-image{
	float: right;
	margin: 0 0 0 2%;
}
.catalog-category-view .modes .modes-label{
	display: none;
}
.catalog-category-view .sorter .sorter-label{
	display: none;
}
.catalog-category-view .sorter {
    float: left;
}
.catalog-category-view .toolbar-amount {
    float: right;
    margin-right: 45%;
}

/* DISABLE PRODUCT HOVER */
.catalog-category-view .products-grid .product-item-info {
    box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.3);
    background-color: #cacaca;
    transition: 0.2s;
}
.catalog-category-view .products-grid .product-item-info:hover, .catalog-category-view .products-grid .product-item-info:active{
    border:0;
    padding:0;
    margin:0;
    background-color: #cacaca;
    position: initial;
}
.catalog-category-view .products-grid .product-item-info:active{
	box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.3);
}
.products-grid .product-item-inner {
    margin: 0px;
    padding: 0px;
    border: none;
    position: initial;
    right: initial;
    box-shadow: initial;
    background: initial;
    background-color: #cacaca;
}
.products-grid .product-item-info:not(:hover):not(.active) .product-item-inner {
	margin: 0px;
	position: initial;
}
.products-grid .product-item-inner .product-item-actions{
	box-shadow: initial;
	border: none;
	margin: 0px;
	padding: 0px;
	position: initial;
	display: block;
}
.products-grid .product-item-info:not(:hover):not(.active) .product-item-inner {
    position: initial;
    height: auto;
    width: auto;
    border: none;
    margin-top: 0px;
    padding-top: 0px;
}
.product-item .price-box {
	margin: 0px;
	padding: 0px;
}
/* DISABLE PRODUCT HOVER */

.action.primary span{
	font-family: 'Nunito Sans', sans-serif;
}

.page-products .search.results .product-item-info,
.page-products .products-grid .product-item, .catalog-category-view .products-grid .product-item-info {
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px; /* future proofing */
	-khtml-border-radius: 25px; /* for old Konqueror browsers */
}

.product-item-details{
	padding: 4%; 
}
.product-item-name > a:hover, .product.name a > a:hover {
	text-decoration: none;
}
.product-item-name a{
	font-size: 16px;
	display: block;
	font-weight: bold !important;
}
.product-item .old-price{
	float: left;
	margin-right: 5px;
}
.product-item .stock{
	/*display: none;*/
	padding-bottom: 3px;
}
.product-item .stock span{
	display: block;	
	text-align: center;
}
.product-item .tocompare::before {
	content: initial;
}
.product-item .special-price{
	margin-top: 5px;
	display: inline-block;
	width: 40%;
}
.product-item .price-box .price{
	font-size: 16px;
}
.abs-visually-hidden-desktop-s, .products-grid .product-item-info:not(:hover):not(.active) .product-item-inner{
	overflow: initial;
}
.product-item-actions .actions-secondary > .action span{
	overflow: initial;
	position: relative;
	margin: initial;
	font-size: 14px;
}
.actions-secondary{
	display:block;
	width: 100%;
}
.actions-secondary a.tocompare{
	text-align: center !important;
	display: block;
	width: 100% !important;
}
.actions-secondary a.tocompare span{
	text-align: center;
	width: 100%;
}
.product-item-actions .actions-primary {
	width: 100%;
}
.product-item-actions .actions-primary + .actions-secondary {
	width: 100%;
}
.product-item-actions .actions-primary button{
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.product-item .tocart{
	background-color: #000000;
	border: none;
	padding-top: 5px;
	box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.3);
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px; /* future proofing */
	-khtml-border-radius: 15px; /* for old Konqueror browsers */
}
.product-item .tocart:hover {
	background-color: #000000;
	border: none;
}
.product-item .tocart span{
	font-size: 13px;
	text-transform: uppercase;
}
.products-grid .product-item-inner .product-item-actions{
	padding-top: 7%;
}
.product-item-link{
	height: 69px;
	overflow: hidden;
}
.products-grid .product-item {
	margin-bottom: 20px;
}
.page-products .products-grid .product-item-inner::before {
	background: none;
}


/* Product Page */

.catalog-product-view .breadcrumbs.container {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.product.media .gallery-placeholder {
	width: 100%;
}
.fotorama__nav--thumbs {
  display: flex;
}
.fotorama__nav__shaft {
  margin: auto;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left,
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right {
  top: calc(50% - 15px);
  height: 30px;
  border-radius: 15px;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left{
	left: 10px;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right{
	right: 10px;
}
.fotorama__thumb__arr {
  background-color: rgb(240, 14, 102);
}
.fotorama__thumb__arr--left .fotorama__thumb--icon,
.fotorama__thumb__arr--right .fotorama__thumb--icon {
	background-image: none;
}
.fotorama__thumb__arr--left .fotorama__thumb--icon:after,
.fotorama__thumb__arr--right .fotorama__thumb--icon:after {
	position: absolute;
	top: 2px;
	left: 8px;
	width: 30px;
	height: 30px;
	content: '>';
	font-size: 1.5rem;
	line-height: 1;
	color: #fff;
}
.fotorama__thumb__arr--left .fotorama__thumb--icon:after {
	content: '<';
}
.fotorama__stage.fotorama__shadows--right::after,
.fotorama__nav.fotorama__shadows--right::after {
	background-image: none;
}

.page-title-wrapper.product .page-title {
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.2;
}
.product-info-price .price-box.price-final_price {
	display: flex;
	margin-top: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #000;
}
.product-info-price .special-price {order: 2; margin: 0;}
.product-info-price .special-price .price-wrapper .price {
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.1;
	color: #e30a5f;
}
.product-info-price .old-price {order: 1; padding-right: 1rem;}
.product-info-price .old-price .price-wrapper .price {
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.1;
}

.product.attribute.overview {border-bottom: 1px solid #000;}
.product.attribute.overview .table {margin-bottom: 0;}
.more-info {
	display: block;
	padding-left: 0.75rem;
	padding-bottom: 1rem;
	text-decoration: underline;
}

#addQty, #minusQty {
  background: #f4f4f4;
  border: none;
  color: #000;
  vertical-align: baseline;
  height: 52px;
  width: 52px;
  transition: 0.2s;
}
#addQty:hover, #minusQty:hover {
	color: #fff;
	background-color: #7b7b7b;
}
.product-options-bottom #qty {
	border-color: #000;
}
#product-addtocart-button {
	font-size: 1rem;
	line-height: 1.1;
	padding: 0.6rem 2rem;
	border: none;
	margin-bottom: 15px;
}
.product-options-bottom .box-tocart .fieldset{display: block;}
#maincontent .product-info-main .box-tocart .actions,
.product-options-bottom .box-tocart .actions {
	display: block;
}
.paypal.checkout {
	display: flex;
	align-items: center;
}
.product-options-bottom .box-tocart{margin-bottom: 0;}

.product-social-links {text-align: left;}
.product-info-main .product-addto-links {margin-top: 0;}
.product-info-main .action.tocompare {
	position: relative;
	background: none;
	color: #2c2c2c;
	font-size: 1rem;
	text-transform: uppercase;
	border: none;
	margin-left: 1rem;
}
.product-info-main .action.tocompare:before {
	content: '+';
	position: absolute;
	left: -1rem;
	font-size: 1rem;
}
.product-info-main .action.tocompare:hover {
	background: none;
	border: none;
	color: #e30a5f;
}
.product-info-main .action.tocompare:hover:before {
	color: #e30a5f;
}
.stock-sku-container {border-bottom: 1px solid #000;}
.product-info-stock-sku {
	display: inline-block;
	padding-right: 0.75rem;
	border-right: 2px solid #000;
	margin-right: 0.75rem;
}
.product-info-main .product.attribute.sku {	color: #2c2c2c;}

#product-details {
	background-color: #f4f4f4;
}
.data.item.title.nav-item {
	max-width: 20rem;
	color: #2c2c2c;
	text-transform: uppercase;
	background-color: #c2c2c2;
	padding: 0.6rem 2rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 800;
}
.data.item.title.nav-item.active {
	color: #fff;
	background-color: #2c2c2c;
	-webkit-box-shadow: 0px 5px 16px -8px rgba(0,0,0,1);
	-moz-box-shadow: 0px 5px 16px -8px rgba(0,0,0,1);
	box-shadow: 0px 5px 16px -8px rgba(0,0,0,1);
}
.product.data.items .item.title > .switch {
	display: block;
}
.product.data.items > .item.content {
	background: none;
	border: none;
	padding: 0;
}
.table.split tr td:first-child {
	font-weight: 800;
	text-transform: uppercase;
}
table.split td {border-top: none;}

.block.related .block-title strong {font-size: 2rem;}
.page-layout-1column .products-grid .item.product-item {
	width: calc((100% - 9% ) / 4);
	margin-left: 3%;
}
.page-layout-1column .products-grid .item.product-item:nth-child(4n+1) {margin-left: 0;}
.products-grid .product-item-info {width: 100%;}
.products-grid .product-item-info .product-image-container{ margin: auto; }
.products-grid .product-item-info .product-item-photo {
	display: flex;
	padding: 4%;
	background-color: #fff;
	border-radius: 23px 23px 0 0;
}
.products-grid .product-item-info:hover {
	background: none;
	box-shadow: 0px 1px 6px 2px rgba(74, 12, 155, 0.5);
	border: none;
	margin: 0;
	padding: 0;
}
.products-grid .product-item-name a {
	font-size: 1rem;
	font-weight: 800 !important;
}
.products-grid .product-item-details > a h4 {
	font-size: 1.25rem;
	font-weight: 800;
}
.products-grid .product-item-details > a span {
	font-size: 1rem;
}

/* Cart */
.checkout-cart-index .price-including-tax,
.checkout-cart-index .price-excluding-tax {
	font-size: 1.4rem;
}
.checkout-cart-index .paypal.checkout {
	flex-direction: column;
}

/* New css 12-11-25 */
.block-minicart .block-content button:focus{
	color: #000;
}
.block-search .label:hover:before{
	color: #fff;
}
/* delete popup ok button */
footer.modal-footer button:focus {
    color: #555;
}
.catalogsearch-result-index .modes .modes-label{
	display: none;
}
.catalog-category-view .toolbar-amount{
	margin-right: 0;
}
.block-collapsible-nav .content .nav{
	display: block;
}



/* Min Width Media Queries */
@media (min-width:640px) {
	.page-layout-1column .block.widget .products-grid .product-item {
		width: calc((100% - 4%)/2);
	}
}
@media (min-width:769px) {

	.nav-toggle {
		display: none;
	}
	.nav-block { position: relative; }
	.nav-sections {
		-webkit-flex-basis: auto;
		flex-basis: auto;
	}
	.nav-sections-item-title {
		display: none;
	}
	.nav-sections-item-content {
		display: block !important;
	}
	.nav-sections-item-content > * {
		display: none;
	}
	.nav-sections-item-content > .navigation {
		display: block;
	}
	.navigation {
		background: #f5f5f5;
		font-weight: 700;
		height: inherit;
		left: auto;
		overflow: inherit;
		padding: 0;
		position: static;
		top: 0;
		width: 100%;
		z-index: 3;
	}
	.navigation:empty {
		display: none;
	}
	.navigation ul {
		margin-top: 0;
		margin-bottom: 0;
		padding: 0;
		position: static;
	}
	.navigation li.level0 {
		border-top: none;
	}
	.navigation li.level1 {
		position: relative;
	}
	.navigation .level0 {
		margin: 0 10px 0 0;
		display: inline-block;
		position: static;
	}
	.navigation .level0:last-child {
		margin-right: 0;
		padding-right: 0;
	}
	.navigation .level0:hover:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 100%;
		width: 10px;
		height: calc(103%);
		z-index: 1;
	}
	.navigation .level0 > .level-top {
		color: #575757;
		line-height: 47px;
		padding: 0 12px;
		text-decoration: none;
		box-sizing: border-box;
		position: relative;
		display: inline-block;
	}
	.navigation .level0 > .level-top:hover,
	.navigation .level0 > .level-top.ui-state-focus {
		color: #333333;
		text-decoration: none;
	}
	.navigation .level0.active > .level-top,
	.navigation .level0.has-active > .level-top {
		border-color: #e30a5f;
		border-style: solid;
		border-width: 0 0 3px;
		color: #333333;
		text-decoration: none;
		display: inline-block;
	}
	.navigation .level0.parent:hover > .submenu {
		overflow: visible !important;
		display:block;
	}
	.navigation .level0.parent > .level-top {
		padding-right: 20px;
	}
	.navigation .level0.parent > .level-top > .ui-menu-icon {
		display: none;
		position: absolute;
		right: 0;
		text-decoration: none;
	}
	.navigation .level0.parent > .level-top > .ui-menu-icon > span {
		border: 0;
		clip: rect(0, 0, 0, 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
	.navigation .level0.parent > .level-top > .ui-menu-icon:after {
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		font-size: 12px;
		line-height: 20px;
		color: inherit;
		content: '\e622';
		font-family: 'icons-blank-theme';
		vertical-align: middle;
		display: inline-block;
		font-weight: normal;
		overflow: hidden;
		speak: none;
		text-align: center;
	}
	.navigation .level0 .submenu {
		font-weight: 900;
		min-width: 230px;
		display: none;
		column-count: 3;
		left: 0 !important;
		right: 0 !important;
		margin: 0 !important;
		padding: 0 0 20px;
		position: absolute;
		z-index: 100;
	}
	.navigation .level1.submenu {
		position: static;
		display: flex !important;
		flex-direction: column;
		flex-wrap: nowrap;
	}
	.navigation .level0 .submenu > ul {
		margin-top: 11px;
	}
	.navigation .level0 .submenu > ul:before,
	.navigation .level0 .submenu > ul:after {
		content: '';
		display: block;
		overflow: hidden;
		position: absolute;
	}
	.navigation .level0 .submenu > ul:before {
		color: #ffffff;
		left: 20px;
		top: -20px;
		border: 10px solid transparent;
		height: 0;
		width: 0;
		border-bottom-color: #ffffff;
		z-index: 4;
	}
	.navigation .level0 .submenu > ul:after {
		border: 11px solid transparent;
		height: 0;
		width: 0;
		border-bottom-color: #d1d1d1;
		color: #d1d1d1;
		left: 19px;
		top: -22px;
		z-index: 3;
	}
	.navigation .level0 .submenu:before {
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		height: 4px;
		left: 0;
		top: -4px;
		z-index: 1;
	}
	.navigation .level0 .submenu a {
		display: block;
		line-height: inherit;
		color: #575757;
		padding: 8px 20px;
		margin-left: 10px;
	}
	.navigation .level0 .submenu a:hover,
	.navigation .level0 .submenu a.ui-state-focus {
		background: #e8e8e8;
		color: #333333;
		text-decoration: none;
	}
	.navigation .level0 .submenu .active > a {
		border-color: #ff5501;
		border-style: solid;
		border-width: 0 0 0 3px;
	}
	.navigation .level1.submenu a { border-radius: 8px; }

	.navigation .level0 .submenu .submenu {
		top: 0 !important;
		left: 0% !important;
	}
	.navigation .level0 .submenu .submenu-reverse {
		left: auto !important;
		right: 100%;
	}
	.navigation .level0 .submenu li {
		break-inside: avoid;
		margin: 0;
	}
	@supports not (break-inside: avoid-column) {
		.navigation .level0 .submenu li {display: table;}
	}
	.navigation .level0 .submenu li.parent > a > .ui-menu-icon {
		display: none;
	}
	.navigation .level0.more {
		position: relative;
		display: inline-block;
		text-decoration: none;
	}
	.navigation .level0.more:after {
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		font-size: 26px;
		line-height: inherit;
		color: inherit;
		content: '\e607';
		font-family: 'icons-blank-theme';
		vertical-align: middle;
		display: inline-block;
		font-weight: normal;
		overflow: hidden;
		speak: none;
		text-align: center;
	}
	.navigation .level0.more:before {
		display: none;
	}
	.navigation .level0.more:after {
		cursor: pointer;
		padding: 8px 12px;
		position: relative;
		z-index: 1;
	}
	.navigation .level0.more:hover > .submenu {
		overflow: visible !important;
	}
	.navigation .level0.more li {
		display: block;
	}
	.navigation .level0 .submenu a.ui-state-focus {background: none;}
	.navigation .level0 .submenu a:hover {background: #4a0c9b;}
	.navigation .level1.submenu a:hover, .navigation .level1.submenu a.ui-state-focus {background-color: #e30a5f;}
	.checkout-index-index .nav-toggle {	display: none;}

	.panel.header .links,
	.panel.header .switcher {
		display: inline-block;
	}


	.block-search {padding-top:0px; z-index: 1;}
	.search input[type=text]:not(.browser-default) {
		background: transparent;
		border: none;
		border-bottom: 1px solid #fff;
		height:40px;
		color: #fff;
		font-size: 1rem;
		font-weight: 700;
		text-transform: uppercase;
	}
	.search input[type="text"]::placeholder {
		color: #fff;
		font-size: 1rem;
		font-weight: 700;
		opacity: 1;
	}
	.block-search .control {
		border-top: none;
		margin: 0;
	}
	.block-search input {
		position: static;
		margin: 0;
	}
	.block-search .label {
		position: absolute;
		right: 15px;
		margin: 3px;
	}
	.block-search .label::before {
		color: #fff;
	}

	#tech-center-top,
	#tech-center-bottom {
		margin-left: -2rem !important;
		margin-right: -2rem !important;
	}
	/*Category Page*/
	#mob-filter {
		display: none;
	}
	/*Product Page*/
	#product-top{ display: flex; }
	
	.page-layout-1column .product-info-main {
		width: 48%;
		margin-left: 2%;
	}
	.page-layout-1column .product.media {
		width: 48%;
		margin-right: 2%;
	}
}
@media (min-width:992px) {
	.logo img {
		max-width: 280px;
	}
	.navigation .level0 .submenu {
		column-count: 4;
	}
	.minicart-wrapper .action.showcart::before {
		margin-left: 1.5rem;
	}
	.minicart-wrapper .action.showcart.active:before {
		margin-left: 1.5rem;
	}

}
@media (min-width: 1200px) {
	.nav-block .nav-sections {float:left;width:80%;}
	.nav-block .block-search {float:left;width:20%;}
	.minicart-items .product > .product-item-photo,
	.minicart-items .product > .product-image-container { padding-top: 23px; }
}

/* Max Width Media Queries */

@media (max-width: 1200px) {
	.nav-block {position: relative;}
	.block-search {position: absolute; right: 0;}
	#search {display: none;}
	#search_mini_form.focus #search {display: block; background: #2c2c2c;}
	.block-search .label {
		position: absolute;
		right: 10px;
		margin: 3px;
		top: -20px;
	}
	#search_mini_form.focus .label {
		top: 0;
	}
}
@media (max-width:991px) {
	nav.navigation ul {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.link-block {
		width: 100%;
		padding: 0 15px;
	}
	.minicart-wrapper a.action.showcart {
		align-items: center;
	}
	.store-info {justify-content: space-around; width: 57%;}
	.account-container {width: 19%;}
	.account-container a { margin: auto; }
	.minicart-wrapper {
		display: flex;
		justify-content: center;
		width: 24%;
		margin-top:0px;
	}
	#header-cta .cta-item span {font-size: 14px;}
}
@media (max-width:768px) {
	.logo-block {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.header.content {max-width:100%;}
	.block-search {
		padding-top:0px;
		margin-top:0px;
		right: initial;
		top: 0;
		left: 0;
		width: 100%;
		height: 47px;
	}
	#search {
		display: block;
		position: static;
		border: none;
	}
	.search input[type="text"]:not(.browser-default) {
		color: #2c2c2c;
	}

	.nav-toggle {top:5px;}
	.page-header {margin-bottom:0px;}
	.block-search .label {display: none;}
	.nav-sections { background-color: #2c2c2c; }
	.nav-sections-item-content { padding-top: 0; }
	.nav-sections-item-title {
		display: none;
	}
	.nav-sections-item-title a {
		color: #fff;
		text-transform: uppercase;
		font-size: 1.2rem;
		font-weight: 700;
		padding-top: 22px;
	}
	nav.navigation ul {
		flex-direction: column;
	}
	.navigation .level0 .submenu a.ui-state-focus { color: #fff; }
	.navigation .level0 { font-size: 1.2rem; }
	.navigation .level0 > .level-top:hover { color: #fff; }
	.navigation .level0 .submenu { background: #444; }
	.navigation li.level1 {border-top: 1px solid #fff; padding-top: 5px; margin-bottom: 5px;}
	.navigation li.level2 a { padding-top: 4px; padding-bottom: 4px; }
	.navigation .submenu:not(:first-child) ul { padding-left: 0; }
	.navigation .submenu:not(:first-child) ul li a { padding-left: 30px; }
	.navigation .level1.submenu span {font-size: 1rem;}
	.navigation .level0.active > a:not(.ui-state-active),
	.navigation .level0.has-active > a:not(.ui-state-active) {
		border-color: #e30a5f;
		padding-left: 22px;
	}
	.mst-searchautocomplete__autocomplete .mst-searchautocomplete__close {top: -8px;font-size: 2rem;}

	/* .page-main { padding: 0; } */
	#mob-filter { display: block; }
	.block.filter { display: none; }

	.product-info-main .box-tocart .actions .action.tocart {
		width: auto;
	}

	.page-layout-1column .products-grid .item.product-item {
		width: calc((100% - 3% ) / 2);
		margin-left: 3%;
	}
	.page-layout-1column .products-grid .item.product-item:nth-child(2n+1) {margin-left: 0;}
	.modal-header { padding: 2rem 1rem; }
	.modal-custom .action-close {
		margin: 0;
		padding: 15px;
	}
	.authentication-wrapper {
		position: absolute;
		margin-top: 0;
		top: 70px;
		left: 15px;
	}
	.home-page-section{
		margin: auto 15px;
	}
	.opc-wrapper{
		margin: auto 15px;
	}
	/* .block-search .form.minisearch .control{
        margin: 0;
        padding: 0;
    } */
	/* .block-search .control{
		margin: 0 !important;
	} */
	.block-search{
		position: relative;
	}
	.block-search .form.minisearch .control{
		border-bottom: 1px solid #d1d1d1;
	}
	.block-search .block-content{
		background: #fff;
	}
	.block-search{
		z-index: 9;
	}
	#mob-filter{
		margin-bottom: 1rem !important;
		margin-top: 1rem !important;
	}
}
@media (max-width: 575px) {
	.fnt-sm { font-size: 0.875rem; }

	#maincontent .product-info-main .box-tocart .actions,
	.product-options-bottom .box-tocart .actions,
	.paypal.checkout {
		flex-direction: column;
	}
	.mst-searchautocomplete__item.magento_catalog_product {flex-wrap: wrap;}
	.mst-searchautocomplete__item.magento_catalog_product .meta {width: calc(100% - 6rem);}
	.mst-searchautocomplete__item.magento_catalog_product .store {margin-left: auto;}
	.mst-searchautocomplete__item.magento_catalog_product .store .price-box {display: flex;}
	
	.products-grid .product-item { width: 100%; margin: 0 auto 20px; }
	.catalog-category-view .products-grid .product-item-info {
		display: flex;
		background-color: #fff;
	}
	.page-products .search.results .product-item-info { display: flex; }
	.products-grid .product-item-info .product-item-photo {
		border-radius: 23px 0 0 23px;
		width: 35%;
	}
	.products-grid .product-item-inner {
		background-color: #fff;
	}
	.catalog-category-view .products-grid .product-item-info:hover,
	.catalog-category-view .products-grid .product-item-info:active {
		background-color: #fff;
	}

	.product-info-main .box-tocart, .product-options-bottom .box-tocart {
		text-align: center;
	}
}

/* Min to Max Width Media Queries */
@media (min-width: 769px) and (max-width: 1400px) {
	.navigation span {
		text-transform: capitalize;
	}
}
@media (min-width: 769px) and (max-width: 1200px) {
	.opc-block-summary .product-item .product-item-inner {
		display: flex;
		flex-direction: column;
	}
	.product-item-inner {
		display: flex;
		flex-direction: column;
	}
}
@media (max-width: 769px){
	.block-collapsible-nav{
		position: relative;
	}
	.account .columns .column.main{
		order: 2;
	}
	.account .columns .sidebar-additional{
		order: 3;
	}
}
@media (min-width: 640px) and (max-width: 769px) {
	.page-products .products-grid .product-item {
		margin-left: 2%;
	}
}

/* Container Formatting */
@media (min-width: 1600px) {
    .container{ max-width: 1520px; }
}
@media (min-width: 1400px) and (max-width: 1599px) {
    .container{ max-width: 1330px; }
}
@media (max-width: 767px) {
	.container, .container-sm {
		max-width: 90%;
	}
}

/* TOM PIR TWEAKS */
.jumbotron {
    padding: 20px 0px;
}

/* CHECKOUT */
.opc-progress-bar-item._active > span:before,
.opc-progress-bar-item._active:before {
	background: #4a0c9b;
}

.opc-wrapper .step-title, .opc-block-shipping-information .shipping-information-title, .opc-block-summary > .title, .checkout-agreements-items .checkout-agreements-item-title {
	font-size:24px;
}

.checkout-container {position:relative; margin-top:20px;}

.opc-progress-bar-item > span {font-size:14px;}
.minicart-items .product-item-name, 
.opc-block-summary .product-item .price,
.product-item {font-size:16px;}
.authentication-wrapper {
	margin-top: 0;
}

legend {font-size:20px;}
/* BASKET */

.checkout-cart-index .table td, .checkout-cart-index .table th {border-top:0px;}
.checkout-cart-index #maincontent {margin-top:15px;}
.block-cart-failed .action.continue, .cart-container .form-cart .action.continue,
button, .cart.table-wrapper .actions-toolbar > .action, .action-gift {font-size:14px;}
.checkout-cart-index h1.page-title {font-size:28px;}
.mark, mark {background-color: #fff;}
.column.main .cart-summary .block > .title strong, .column.main .paypal-review-discount .block > .title strong {font-size:16px;}

/* CMS */

.cms-page-view  .breadcrumbs {margin:10px auto;}
.cms-page-view .row {width:100%;}
.cms-page-view .col-lg-6,
.cms-page-view .col-lg-12 {
	padding:20px;
}

.cms-page-view .container > .row.paddingVert > .col-lg-12 {border-bottom:1px solid #e5e5e5;text-align: center;}
.data-table {margin-bottom:15px;}

.data-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.googlemap{
    overflow:hidden;
    padding-bottom:30%;
    position:relative;
    height:0;
}
.googlemap iframe{
	left:0;
	top:0;
	height:100%;
	width:100%;
	position:absolute;
}

/* ACCOUNT */

/* SEARCH */

/* TOP CATEGORY PAGE */
.page-layout-top_category {}
.page-layout-top_category .container-wrap  {background:none;}
.page-layout-top_category .breadcrumbs .items {padding:0px 15px;}

.pirTopCat.row {background-color: #2c2c2c;margin:0px;}
.pirTopCatContent {width:90%;color:#fff;max-width:1520px;margin:auto;padding:2% 15px;}
.pirTopCatContent h1 {
	margin: 0;
    color: #fff!important;
    text-align: left;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    top: initial;
    left: initial;
    padding: 0px;
    background:none;
    font-size: 2.5rem;
    display: block;
    padding-bottom: 0px;
    padding-top:0px;

}
.pirTopCatContent p {margin:0px;padding:10px 0px;color:#fff;}

.top-category-header {margin:0px;padding:0px;}
.top-category-header li {
	width:21%;
	list-style:none;
	padding: 10px 2%;
	padding-top:0px;
	margin:10px 2%;
	margin-top:0px;
	float:left;
	display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid #fff;
}
.top-category-header li a {
	text-align: center;
}

.top-category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.top-category-child p {
    font-family: 'Nunito Sans', sans-serif;
    font-size:20px;
    text-transform:uppercase;
    margin-bottom:0px;
    margin-top:15px;
    text-align:center;
    font-weight: 600;
    line-height: 110%;
}

.top-category-header li:hover {border:1px solid #eee;}

@media (max-width: 1550px) {

}

@media (max-width: 1300px) {
	.top-category-header li {width:29%;}
	.page-layout-top_category .breadcrumbs {margin-top:10px;margin-bottom: -20px;}
	.page-layout-top_category .container-wrap {padding:0px 0px;}

}

@media (max-width: 700px) {
	.top-category-header li {width:46%;}
	.top-category-child p {font-size:14px;}
	.pirTopCatContent h1 {font-size:24px;text-align: center;}
	.pirTopCatContent {text-align:center;}
	.page-layout-top_category #maincontent.container {padding:0px;}
}

/* TOM | PIR | 04-09-20 */
.page-title-wrapper.product .page-title {line-height:1.1em;}
.product.attribute .table td, .product.attribute .table th {padding:2px;}
.product.attribute ul li {margin-bottom:2px;}
#header-cta .cta-item span {line-height:120%;}
.account-nav .item {width:100%;}
.navigation .level0 .submenu .active > a {border-color:#e30a5f;}
.page-products .search.results .product-item-info {border:1px solid #ccc;}
.search.results .products-grid .product-item-inner .product-item-actions {background:#fff;}

.product-item .stock.unavailable span {color:red;font-size:12px;font-weight:bold;}

.opc-block-summary,
.cart-summary {background:transparent;}
.cart-summary .block .fieldset {margin:5px 0px;}
.cart-summary .table td, .cart-summary .table th {padding:0px;background:none;}
.cart-totals .grand .mark, .cart-totals .grand .amount, .opc-block-summary .table-totals .grand .mark, .opc-block-summary .table-totals .grand .amount {padding:0px;}
.action.primary span {text-transform:uppercase;}

.cart-summary .block > .title, .paypal-review-discount .block > .title {border-top:1px solid #000;}

.cart-summary > .title,
.checkout-cart-index h1.page-title {text-transform:uppercase;font-family: 'Nunito Sans', sans-serif;}
.cart-totals {border-top:none;}

.block-discount-heading .action.apply.primary {font-size:12px;}

.opc-progress-bar-item._active > span:after,
.opc-progress-bar-item._complete > span::after {font-size:26px;}
.opc-progress-bar-item > span:after {font-size:19px;}
.opc-wrapper .shipping-address-item.selected-item {border-color:#4a0c9b;}
.opc-wrapper .shipping-address-item.selected-item:after {background:#4a0c9b;}
.table-checkout-shipping-method tbody td:first-child {padding-left:25px;}

.opc-wrapper .step-title, .opc-block-shipping-information .shipping-information-title, .opc-block-summary > .title, .checkout-agreements-items .checkout-agreements-item-title {
	text-transform:uppercase;font-family: 'Nunito Sans', sans-serif;
}

.opc-block-summary {margin-bottom:0px;}
.modal-header { border-bottom: none; }

#carrier-office-list-wrapper > div > div,
#carrier-office-list-wrapper p, 
#carrier-office-list-wrapper select {display:none !important;}

.table-checkout-shipping-method {width:100%;}

.message.warning, 
.field-error span {font-size:12px;}

.homeban .banner {
	min-height:400px;
	position: relative;
	display: flex;
    align-items: center;
    justify-content: left;
}
.homeban .banner h2 {z-index:10;margin:0px;padding:5%;font-size:60px;text-transform:uppercase;color:#fff;font-weight: 900 !important;position: relative;}
.full-link {position: absolute;top:0px;left:0px;height:100%;width:100%;background:rgba(0, 0, 0, 0.3);z-index:5;}

/*.modal-slide, .modal-popup {z-index: 100000 !important;}*/
.modal-popup.confirm .modal-inner-wrap .modal-content {padding:10px;}
.modal-popup .modal-header {
    padding-bottom: 0px;
    padding-top: 10px;
    height: 49px;
}
.modal-popup .modal-footer {padding:0px;}

@media (max-width: 700px) {
	.homeban .banner h2 {font-size:36px;}
	.homeban .banner {background-position: 69% 69% !important;}

	.h1, h1 {
	    font-size: 24px;
	}

	.h2, h2 {
	    font-size: 20px;
	}

	.mb-3, .my-3 {margin-bottom:0px !important;margin-top:0px !important;}
	.container, .container-sm {
	    max-width: 100%;
	}

	.cms-page-view .breadcrumbs {margin:5px;}
	.breadcrumbs .items, .breadcrumbs .items li {line-height:100%;}
	.jumbotron {padding:5px;margin-bottom:5px;}

	.bundle-actions .action.primary, .bundle-options-container .block-bundle-summary .box-tocart .action.primary, .product-info-main .box-tocart .action.tocart, .product-options-bottom .box-tocart .action.tocart, .cart-container .checkout-methods-items .action.primary, .block-minicart .block-content > .actions > .primary .action.primary, .methods-shipping .actions-toolbar .action.primary, .block-authentication .action.action-register, .block-authentication .action.action-login, .checkout-payment-method .payment-method-content > .actions-toolbar > .primary .action.primary, .form-address-edit .actions-toolbar .action.primary, .multicheckout .action.primary {
		font-size:14px;line-height:14px;text-transform:uppercase;
	}

	.checkout-cart-index h1.page-title {text-align: center;}

	.fieldset > .legend {font-size:20px;}
	.googlemap {height:400px;}

	.my-5 {margin:20px 10px 20px 10px;}
}


.proSku {
	text-align: center;
    float: left;
    margin: 10px auto;
    width: 100%;
    font-size: 10px;
    color: #e30a5f;
}

.shareBox h3 {font-size:30px;margin-bottom:10px;}
.shareBox > ul {
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   margin-bottom:20px;
   margin:0px;
   padding: 0px;
   list-style: none;
}

.shareBox > ul li {
	list-style: none;
	margin:0px;
	padding:0px;
}

.shareBox > ul li a {
	position: relative;
	line-height: 1.2rem;
	background: none;
	color: #2c2c2c;
	font-size: 1rem;
	text-transform: uppercase;
	border: none;
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.shareBox > ul li a:hover {
	background: none;
    border: none;
    color: #e30a5f;
}

.shareBox > ul li a i {
	margin-right:2px;
	font-size:15px;
}

.fotorama__thumb-border {
    border: 1px solid #e30a5f;
}

.modal._show {
	display:block !important;
}

#modal-content-1,
#modal-content-1 .modal-content {
	border:0px;padding-bottom: 20px;
}

#modal-content-1 ul {margin:0px;padding:0px;}

.product-info-main .product-addto-links {margin-bottom:0px;}

.modal-share {

}

.modal-share ul {

}
.modal-share > ul li {
	padding:0px 5px;
	display:inline-block;
}

.modal-share > ul li a i {
	margin-right:2px;
	font-size:30px;
}

.modal-share > ul li a:hover i {
	color:#4a0c9b;
}

.modal-popup.modal-slide {left:0px;}

.modal-slide._inner-scroll .modal-header, .modal-slide._inner-scroll .modal-footer {
	background-color:#fff;;
}

.modal-slide._inner-scroll .modal-footer {margin-top:0px;}

.sliderSlick {margin-bottom:20px;}

/*  Slick arrows */

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;
	z-index: 50;
    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:active,
.slick-prev:active,
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent !important;
    outline: none !important;
    background: transparent !important;
	border: 0px !important;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'Font Awesome 5 Pro';
    font-size: 30px;
    line-height: 1;

    opacity: .75;
    color: #e30a5f !important;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: 5px;
}
[dir='rtl'] .slick-prev
{
    right: 0px;
    left: auto;
}
.slick-prev:before
{
    content: '>';
	content: "\f104";
}
[dir='rtl'] .slick-prev:before
{
    content: '<';
	content: "\f104";
}

.slick-next
{
    right: 5px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: 0px;
}
.slick-next:before
{
    content: '→';
	content: "\f105";
}
[dir='rtl'] .slick-next:before
{
    content: '←';
	content: "\f105";
}


button.slick-arrow:active {
	background:none;
	border:0px;
}

.page-layout-1column .product.media {flex-direction: column;}

.shareit {width:100%;}
.shareit ul {
	display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0px;
    margin: 10px 0px;
    width: 100%;
}
.shareit ul li {
	list-style: none;
    padding: 0px;
    margin: 0px 5px;
    border: 1px solid #575757;
    width: 100%;
    text-align: center;
}
.shareit ul li a {display:block;width:100%;padding:5px 5px;margin:0px;}
.shareit ul li a, .shareit ul li a i {color:#575757;}

.fotorama__active .fotorama__dot {
    background-color: #4a0c9b;
    border-color: #4a0c9b;
}

.old-price {
	text-decoration: none;
}

.product-info-price .old-price .price-wrapper .price {
	text-decoration: line-through;
}

.product-items .old-price .price-wrapper .price {
	text-decoration: line-through;
}

.product-items .product-item .old-price {
	float:none;
	margin-left:0px;
}

.product-items .product-item .special-price {
	width:auto;
}
.product-items .product-item .price-box {
	text-align:center;
}

/* New css 5-11-25 */
/* =============== */
.slick-prev:active, .slick-next:active, .slick-prev:focus, .slick-next:focus, .slick-prev:not(.primary), .slick-next:not(.primary){
	background: transparent;
}

@media (max-width: 375px){
	.catalog-category-view .toolbar-products p.toolbar-amount{font-size: 12px;}
	.catalog-category-view .toolbar-products .sorter-options{margin: 0; width: 90px !important;}
}