/*
|--------------------------------------------------------------------------
| Global
|--------------------------------------------------------------------------
*/
:root {
	color-scheme: light;
}

html {
	background: #fff;
}

body {
	background: #fff;
}

main {
	background:#fff;
}



/*
|--------------------------------------------------------------------------
| Global > Typography
|--------------------------------------------------------------------------
*/
body, input, textarea {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #666666;

}

h1, h2, h3, h4, h5, h6, .h1-style {
	margin: 0 0 10px 0;
	color: #343434;
}

h1, .h1-style {
	font-size: 44px;
}

h2 {
	font-size: 42px;
}

h3 {
	font-size: 36px;
}

h4 {
	font-size: 30px;
}

h5 {
	font-size: 24px;
}

h6 {
	font-size: 18px;
}

p, ul, ol {
	line-height: 20px;
	margin: 0 0 15px 0;
}

ul, ol {
	margin-left:20px;
}

li {
	margin:0 0 2px 0;
}


.page-title {
	color: #e71f25;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
h2.page-title {
	font-size: 36px;
}
.page-title--lg {
	font-size: 24px;
}
.page-title--md {
	font-size: 24px;
	text-transform: capitalize;
}

.bg-grey {
	background-color: #ebebeb;
}
.bg-purple {
	background-color: #5d3385;
	color: #fff;
}

.fc-black {
	color: #000;
}
.fc-dark-grey {

}
.fc-grey {
	color: #737373;
}
.fc-white {
	color: #fff;
}



/*
|--------------------------------------------------------------------------
| Global > Links
|--------------------------------------------------------------------------
*/
a {
	color: #5d3385;
	display: inline-block;
	-webkit-transition: background .3s ease, border .3s ease, opacity .3s ease, color .3s ease;
	transition: background .3s ease, border .3s ease, opacity .3s ease, color .3s ease;
	text-decoration: none;
}

a:hover {
	color: #4a286b;
}



/*
|--------------------------------------------------------------------------
| Global > Layout
|--------------------------------------------------------------------------
*/
.row {
	margin: 0 0 15px 0;
}



/*
|--------------------------------------------------------------------------
| Global > Inputs
|--------------------------------------------------------------------------
*/
.input-grid {
	margin: 0 -15px 0 0;
}

.input-grid .input {
	padding: 0 15px 0 0;
}

.input {
	position: relative;
    clear: both;
	margin: 0 0 15px 0;
}

.input-label {
	position: absolute;
	top: 5px;
	left: 9px;
	font-size: 12px;
	color: #222;
	pointer-events: none;
}

.input-label-top {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.input input[type="text"],
.input input[type="email"],
.input input[type="search"],
.input input[type="tel"],
.input input[type="password"],
.input input[type="number"],
.input textarea,
.input-file-dummy,
.input-text-dummy {
	width: 100%;
	padding: 18px 8px 5px 8px;
	color: #222;
	border: 1px solid #d9d9d9;
	resize: none;
}
.input-darker .input input[type="text"],
.input-darker .input input[type="email"],
.input-darker .input input[type="search"],
.input-darker .input input[type="tel"],
.input-darker .input input[type="password"],
.input-darker .input input[type="number"],
.input-darker .input textarea,
.input-darker .input-file-dummy,
.input-darker .input-text-dummy {
	border: 1px solid #d9d9d9;
}
.input-white .input input[type="text"],
.input-white .input input[type="email"],
.input-white .input input[type="search"],
.input-white .input input[type="tel"],
.input-white .input input[type="password"],
.input-white .input input[type="number"],
.input-white .input textarea,
.input-white .input-file-dummy,
.input-white .input-text-dummy {
	border: 1px solid #fff;
}

.input-text-dummy {
	padding: 0;
    height: 48px;
    background: #fff;
}

#card-element {
	padding: 12px 8px;
	height: auto;
}

.input-borderless input[type="text"],
.input-borderless input[type="email"],
.input-borderless input[type="search"],
.input-borderless input[type="tel"],
.input-borderless input[type="number"],
.input-borderless input[type="password"],
.input-borderless textarea {
	border: 0;
	background-color: #fff;
}

.input-borderless select {
	border: 0;
}

.input textarea {
	min-height: 120px;
}

.input input[type="text"]:focus,
.input input[type="email"]:focus,
.input input[type="search"]:focus,
.input input[type="tel"]:focus,
.input input[type="number"]:focus,
.input input[type="password"]:focus,
.input textarea:focus,
.input .braintree-hosted-fields-focused,
.input .stripe-hosted-fields-focused,
.input input[type="text"]:focus.validate-border,
.input input[type="email"]:focus.validate-border,
.input input[type="search"]:focus.validate-border,
.input input[type="tel"]:focus.validate-border,
.input input[type="number"]:focus.validate-border,
.input input[type="password"]:focus.validate-border,
.input textarea:focus.validate-border {
	border-color: #d5d5d5!important;
}

.input input[type="text"]:focus ~ label,
.input input[type="email"]:focus ~ label,
.input input[type="search"]:focus ~ label,
.input input[type="tel"]:focus ~ label,
.input input[type="number"]:focus ~ label,
.input input[type="password"]:focus ~ label,
.input textarea:focus ~ label,
.input .braintree-hosted-fields-focused ~ label {
	/*color: #222;*/
}

.input .button, .input .button-secondary {
	position: absolute;
	top: 4px;
	right: 4px;
	bottom: 4px;
	padding: 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.input-grid .input .button, .input-grid .input .button-secondary {
	right: 19px;
}

.label-inline .input-label {
	position: absolute;
	width: 60px;
	top: 50%;
	left: 0; transform: translateY(-50%);
	text-align: center;
	padding: 0 8px;
}

.input.label-inline input[type="text"],
.input.label-inline input[type="email"],
.input.label-inline input[type="search"],
.input.label-inline input[type="tel"],
.input.label-inline input[type="number"],
.input.label-inline input[type="password"],
.input.label-inline textarea {
	padding: 10px 8px 8px 60px;
}

.input-qty {
	margin: 0 20px 0 0;
}

.textarea {
	position: relative;
}

.input textarea {
	padding-top: 30px;
}

.input-grid .input textarea ~ .input-label {
	text-align: left;
	right: 15px;
}
.input textarea ~ .input-label {
/*	position: relative;
	background-color: #fff;*/
	left: 0; right: 0; top: 0;
	padding: 9px;
	border-bottom: 0;
}

.input textarea:focus ~ .input-label {
	/*border-color: #2ab6f7;*/
}

.input textarea.validate-border ~ .input-label {
	border-color: #b62f3f;
    -webkit-animation-name: shake;
    animation-name: shake;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.input textarea.validate-border:focus {
	border-color: #b62f3f!important;
}

.required-fields {
	color: #b5121b;
}

.select2-basic--container {
	border: 1px solid #d9d9d9!important;
}

.select2-container--open .select2-basic--container {
	border: 1px solid #d9d9d9!important;
}

.select2-basic--borderless,
.select2-basic--borderless.select2-basic--container,
.select2-basic--borderless.select2-basic--dropdown {
	border: 0 !important;
}

.select2-basic--container.select2-selection--single .select2-selection__rendered {
	padding: 18px 8px 5px 8px;
}

.select2-basic--dropdown {
	border: 1px solid #d9d9d9!important;
	border-top: none!important;
}

.select2-dropdown--above {
	border-bottom: none!important;
	border-top: 1px solid #5d3385!important;
}

.select2-container--open ~ label {
	color: #5d3385;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	width: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #2d2d2d transparent transparent transparent;
}

.label-inline .select2-basic--container.select2-selection--single .select2-selection__rendered {
	padding: 10px 8px 8px 60px;
}

.label-inline .select2-basic--container {
	height:36px;
}


/* File upload input */

.no-js .input-file > input[type="file"] {
	display: block;
}

.input-file > input[type="file"] {
	display: none;
}


/* No labels */
.input.label-none input[type="text"],
.input.label-none input[type="email"],
.input.label-none input[type="search"],
.input.label-none input[type="tel"],
.input.label-none input[type="number"],
.input.label-none input[type="password"],
.input.label-none textarea,
.label-none .select2-basic--container.select2-selection--single .select2-selection__rendered {
	padding: 9px 8px;
}

/*Input Placeholders*/
::-webkit-input-placeholder { /* WebKit browsers */
	/* replace this with desired color */
	opacity: 1;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	/* replace this with desired color */
	opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    /* replace this with desired color */
	opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    /* replace this with desired color */
	opacity: 1;
}


/*
|--------------------------------------------------------------------------
| Global > Input Plain Override
|--------------------------------------------------------------------------
*/
.input.input-plain {
	display: flex;
	flex-direction: column;
	text-align: left;
}
.input.input-plain > label {
	color: #343434;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 5px;
}
.input.input-plain input[type="text"],
.input.input-plain input[type="email"],
.input.input-plain input[type="search"],
.input.input-plain input[type="tel"],
.input.input-plain input[type="password"],
.input.input-plain input[type="number"],
.input.input-plain textarea,
.input.input-plain .input-file-dummy,
.input.input-plain .input-text-dummy {
	font-size: 13px;
	color: #343434;
	font-weight: 600;
	padding: 8px 12px;
	min-height: 36px;
	border-radius: 4px;
}
.input.input-plain .input-file-dummy {
	overflow: hidden;
	padding-right: 130px;
}
.input.input-plain textarea {
	min-height: 98px;
}
.input.input-plain .button {
	height: 32px;
	bottom: 2px;
	top: auto;
	right: 17px;
	font-size: 12px;
	padding: 0 35px;
}


/*
|--------------------------------------------------------------------------
| Global > Checkboxes
|--------------------------------------------------------------------------
*/
.checkbox {
	display: inline-block;
	position: relative;
	background-color: #fff;
	width: 18px;
	height: 18px;
	border: 2px solid #c0bfbf;
	border-radius: 2px;
	margin-bottom:-4px;
	cursor: pointer;
}

.checkbox:after {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background: url(/images/style/party/icon-tick-black.png) no-repeat 1px 2px #fff;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: transform 150ms ease;
	transition: transform 150ms ease;
}

.checked .checkbox:after {
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: transform 300ms ease;
}

.checkbox-label {
	color: #2d2d2d;
	font-size: 13px;
	cursor: pointer;
	padding: 0 0 0 6px;
  -webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	 -khtml-user-select: none; /* Konqueror HTML */
	   -moz-user-select: none; /* Firefox */
		-ms-user-select: none; /* Internet Explorer/Edge */
			user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

.checkbox-label .form-note {
	display:initial;
}



/*
|--------------------------------------------------------------------------
| Global > Buttons
|--------------------------------------------------------------------------
*/
.button {
	display: inline-block;
	padding: 13px 25px 11px 25px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	background-color: #00b050;
	-webkit-transition: .3s all ease-out;
	transition: .3s all ease-out;
	cursor: pointer;
	outline: none;
	text-align:center;
	border-radius: 5px;
}

.button:hover {
	background-color: #029445;
	color: #fff;
}

.button-secondary {
	color: #e71f25;
	border: 2px solid #e71f25;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 4px;
	padding: 6px 12px;
	background: transparent!important;
}

.button-secondary:hover {
	color: #c5151b;
	border-color: #c5151b;
}
.button-secondary.button-sm {
	font-size:12px;
	padding: 4px 6px;
}

.button-secondary.button-green {
	color: #00b050;
	border-color: #00b050;
}
.button-secondary.button-green:hover {
	color: #029445;
	border-color: #029445;
}

.button-secondary.button-purple {
	color: #5d3385;
	border-color: #5d3385;
}
.button-secondary.button-purple:hover {
	color: #422260;
	border-color: #422260;
}

.button-purple {
	background-color: #5d3385;
}
.button-purple:hover {
	background-color: #422260;
}

.button-grey {
	color: #e71f25!important;
	background-color: #eee;
}
.button-grey:hover {
	background-color: #e2e2e2;
}

.button-red {
	color: #fff!important;
	background-color: #e71f25;
}
.button-red:hover {
	background-color: #c5151b;
}

.button-f-purple {
	color: #5d3385!important;
}

.button-lg {
	font-size: 16px;
	font-weight: 600;
	padding: 16px 30px;
}
.button-md {
	padding: 9px 20px 8px;
}


/* Button size modifiers */
.button-small {
    padding: 8px 15px 6px 15px;
	font-size: 12px;
}

.button-xsmall,
.button-xsmall-wide {
	padding: 8px 12px;
	font-size: 11px;
	font-weight: normal;
	line-height: normal;
}

.button-xsmall-wide {
	padding: 8px 20px;
}

.button-large {
	padding: 16px 40px 13px 40px;
	font-size: 18px;
}

.button-block {
	display: block;
	/* <buttons> need width: 100% to actually fill all the space */
    width: 100%;
}

/* Disabled Button */
.button:disabled {
    background: #8C8C8C!important;
    cursor: not-allowed;
}

.button-return {
    color: #4a4a4a!important;
    background-color: #ebebeb;
}
.button-return:hover {
	background-color: #d1d1d1;
}


.atb-box__buttons {
    padding: 10px 0 0 10px;
    border-top: 1px solid #d9d9d9;
}
.atb-box__buttons > div {
    width:50%;
	padding: 0 10px 10px 0;
}
.atb-box__buttons > div > .button {
	width: 100%;
	padding: 12px 25px;
}

/*
|--------------------------------------------------------------------------
| Global > Font Colours
|--------------------------------------------------------------------------
*/
.font-green {
	color: #00b050;
}
.font-dark {
	color: #343434;
}
.font-red {
	color: #e71f25;
}

/*
|--------------------------------------------------------------------------
| Global > Font Sizes
|--------------------------------------------------------------------------
*/
.font-11 { font-size: 11px; }
.font-12 { font-size: 12px; }
.font-13 { font-size: 13px; }
.font-14 { font-size: 14px; }
.font-15 { font-size: 15px; }
.font-16 { font-size: 16px; }
.font-18 { font-size: 18px; }
.font-20 { font-size: 20px; }


/*
|--------------------------------------------------------------------------
| Global > Stock Statuses
|--------------------------------------------------------------------------
*/
.stock-status {
	/*padding: 0 0 0 22px;
	background-size: 18px 14px;
	background-repeat: no-repeat;
	background-position: left center;*/
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
	color: #8c8c8c;
}

.in-stock {
	/*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'%3E%3Cpath fill-rule='evenodd' fill='%2337af56' d='M5.52 10.38L2.33 7.1.58 8.91l4.2 4.3.77.8L17.42 1.82 15.63 0 5.53 10.38z'/%3E%3C/svg%3E");*/
	color: #37af56;
}

.out-of-stock {
	/*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'%3E%3Cpath fill-rule='evenodd' fill='%23b32020' d='M15 1.96L13.03 0 7.49 5.57 1.96 0 0 1.96l5.58 5.55L0 13.14 1 14.16l.86.84L7.49 9.4 13.12 15l.85-.84L15 13.14 9.41 7.51l5.6-5.55z'/%3E%3C/svg%3E");*/
	/*color: #b32020;*/
}

.stock-pending {
	/*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'%3E%3Cpath fill-rule='evenodd' fill='%23fcab3e' d='M5.52 10.38L2.33 7.1.58 8.91l4.2 4.3.77.8L17.42 1.82 15.63 0 5.53 10.38z'/%3E%3C/svg%3E");*/
	color: #fcab3e;
}



/*
|--------------------------------------------------------------------------
| Global > Jumbotron
|--------------------------------------------------------------------------
*/
.jumbotron {
	position: relative;
	height: 300px;
	text-align: center;
	color: #fff;
	overflow: hidden;
	background-color: #5d3385;
	padding: 14px 0;
	display: table;
	width: 100%;
}

.jumbotron-small {
	height: 184px;
}

.jumbotron--title {
	margin: 0;
	color: #fff;
	font-size: 80px;
}

.jumbotron--content {
	width: 100%;
	padding: 10px 0 0 0;
	margin: 0 auto;
	max-width: 700px;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
}

.jumbotron--content p {
	color: #fff;
}

.jumbotron--inner {
	padding: 0 30px;
	display: table-cell;
	vertical-align: middle;
}



/*
|--------------------------------------------------------------------------
| Global > UI Elements
|--------------------------------------------------------------------------
*/
.spinner {
	margin: 0 auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(0,0,0, 0.2);
	border-right: 1.1em solid rgba(0,0,0, 0.2);
	border-bottom: 1.1em solid rgba(0,0,0, 0.2);
	border-left: 1.1em solid #5d3385;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}
.spinner,
.spinner:after {
	border-radius: 50%;
	width: 10em;
	height: 10em;
}



/*
|--------------------------------------------------------------------------
| Global > Messages
|--------------------------------------------------------------------------
*/
.message {
	position: relative;
	padding: 15px;
	margin: 30px 0 10px;
	color: #fff;
	text-align: center;
	font-size: 12px;
	background: #5d3385;
	border-radius: 4px;
}

.message a {
	color:#fff;
	text-decoration:underline;
}

.message-error {
	background: #e71f25;
}

.message-success {
	background: #00b050;
}

.message-warn {
	background: #caa53a;
}

.message-close {
	position: absolute;
	top: 0; right: 0;
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	color: #fff;
	font-size: 10px;
	cursor: pointer;
	z-index: 1;
}

.message-float {
	position: absolute;
	top: 0; right: 0; left: 0;
}

.flash-message {
	position: fixed;
	left: 10px;
	top: 10px;
	right: 10px;
	z-index: 99999;
	pointer-events: none;
}

.flash-message .message {
	max-width: 400px;
	margin: 0 auto;
	display: none;
	pointer-events: auto;
}



/*
|--------------------------------------------------------------------------
| Global > Tooltip
|--------------------------------------------------------------------------
*/
.core-tooltip {
	position: absolute;
	padding: 8px;
	background-color: #5d3385;
	color: #fff;
	font-size: 12px;
	text-align: center;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 400px;
	border-radius: 3px;
}

.core-tooltip:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #5d3385 transparent transparent transparent;
	left: 50%;
	bottom: -5px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.core-tooltip__black {
	background-color: rgba(0,0,0,0.8);
	max-width: 220px;
	font-size: 11px;
	line-height: 11px;
	padding: 8px 10px 10px;
}

.core-tooltip__black:after {
	border-color: rgba(0,0,0,0.8) transparent transparent transparent;
}



/*
|--------------------------------------------------------------------------
| Global > Navtrail
|--------------------------------------------------------------------------
*/
.page-no-breadcrumb {
	padding-top: 50px;
}
.breadcrumb-trail {
	color: #898888;
	padding-top: 25px;
	padding-bottom: 20px;
	font-size: 13px;
}

.breadcrumb-trail a,
.breadcrumb-trail span {
	margin: 0 6px;
}

.breadcrumb-trail > :first-child {
	margin-left: 0;
}

.breadcrumb-trail a {
	color: #898888;
}

.breadcrumb-trail a:hover {
	color: #e71f25;
}

.breadcrumb-trail span {
	color:#898888;
}

.mobile-breadcrumb-trail {
	display: none;
}



/*
|--------------------------------------------------------------------------
| Global > Countdown Timer
|--------------------------------------------------------------------------
*/
.countdown-timer--doughnut {
	position: relative;
	width: 60px;
	height: 60px;
	float: left;
	transition: transform 1s ease;
	margin: 0 0 0 10px;
}

.countdown-timer--doughnut-inner {
	content: '';
	position: absolute;
	left: 50%;top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 50px;
	text-align: center;
	font-weight: 700;
	color: #1e1e1e;
}

.countdown-timer--doughnut strong,
.countdown-timer--doughnut strong span {
	font-size: 21px;
	top: 0;
}

.countdown-timer--doughnut strong {
	position: relative;
	top: 8px;
	display: block;
	color: #1e1e1e;
}

.countdown-timer--doughnut span {
	display: block;
	font-size: 11px;
	position: relative;
	top: 4px;
}

.countdown-timer--doughnut svg {
	width: 60px;
	height: 60px;
	-webkit-transform: rotate(-89.9deg);
	background: #dde2e5;
	border-radius: 50%;
}

.countdown-timer--doughnut circle {
	position: relative;
	fill: #5d3385;
	stroke: #dde2e5;
	stroke-width: 6px;
	stroke-dasharray: 38 100;
	transition: stroke-dasharray 1s ease;
}

.quote-side .ui-datepicker-inline {
	background-color: #fff;
}



/*
|--------------------------------------------------------------------------
| Template
|--------------------------------------------------------------------------
*/
.vertical-padding {
	padding: 40px 20px;
}
.vertical-padding-lg {
	padding: 60px 0;
}



/*
|--------------------------------------------------------------------------
| Template > Cookie Notification
|--------------------------------------------------------------------------
*/
.cookie_note_bkg {
	background: url(/images/style/party/cookie_olay.png);
	position: fixed;
	top: 0;
	width: 100%;
	left: 0;
	height: 45px;
	color: #FFF;
	text-align: center;
	line-height: 45px;
	z-index: 10000
}



/*
|--------------------------------------------------------------------------
| Template > Header
|--------------------------------------------------------------------------
*/
header {
	background-color: #fff;
	position: relative;
	z-index: 20;
}
.header-mob--left, .header-mob--right,
.mobile-menu--btn-cont,
.mobile-cart--btn-cont {
	display: none;
}

.mobile-menu--btn {
	width: 42px;
    margin-top: 7px;
    margin-right: 30px;
}

.mobile-menu--btn div {
	margin: 0 0 7px;
	-webkit-transition: transform 300ms ease;
	transition: transform 300ms ease;
}

.mobile-menu--btn div span:first-child {
	border-radius: 2px 0 0 2px;
}

.mobile-menu--btn div span:last-child {
	border-radius: 0 2px 2px 0;
}

.mobile-menu--btn span {
	float: left;
	width: 50%;
	background-color: #222;
	height: 6px;
	display: block;
	-webkit-transition: -webkit-transform 300ms ease, opacity 300ms ease, color 300ms ease;
	transition: transform 300ms ease, opacity 300ms ease, color 300ms ease;
}

.mobile-menu--btn.open span {
	background-color: #e71f25;
}

.mobile-menu--btn.open div:nth-child(1) { -webkit-transform: translateY(7px); transform: translateY(7px); }
.mobile-menu--btn.open div:nth-child(1) span:first-child { -webkit-transform: translateX(5px) rotateZ(45deg); transform: translateX(5px) rotateZ(45deg); }
.mobile-menu--btn.open div:nth-child(1) span:last-child { -webkit-transform: translateX(-5px) rotateZ(-45deg); transform: translateX(-5px) rotateZ(-45deg); }

.mobile-menu--btn.open div:nth-child(2) span:first-child { -webkit-transform: translateX(-15px); transform: translateX(-15px); opacity: 0; }
.mobile-menu--btn.open div:nth-child(2) span:last-child { -webkit-transform: translateX(15px); transform: translateX(15px); opacity: 0; }

.mobile-menu--btn.open div:nth-child(3) { -webkit-transform: translateY(-7px); transform: translateY(-7px); }
.mobile-menu--btn.open div:nth-child(3) span:first-child { -webkit-transform: translateX(5px) rotateZ(-45deg); transform: translateX(5px) rotateZ(-45deg); }
.mobile-menu--btn.open div:nth-child(3) span:last-child { -webkit-transform: translateX(-5px) rotateZ(45deg); transform: translateX(-5px) rotateZ(45deg); }

.mobile-cart--btn-cont {
	flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: none;
    width: auto;
    font-size: 16px;
}
.mobile-cart--btn-cont a {
	display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    color: #fff;
    background-color: #5d3385;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
}
.mobile-cart--btn-cont a > span {
	margin-right: 5px;
}


/*
|--------------------------------------------------------------------------
| Template > Header > Top Bar
|--------------------------------------------------------------------------
*/
.header-top {
	height: 30px;
	background-color: #00b050;
	font-size: 13px;
	line-height: 30px;
}
.header-top, .header-top a {
	color: #fff;
}
.header-top a svg {
	margin-right: 5px;
}
.header-top--inner > *:first-child, .header-top--inner > *:last-child {
	width: 200px;
}



/*
|--------------------------------------------------------------------------
| Template > Header > Main
|--------------------------------------------------------------------------
*/
.header-main {
	padding: 18px 0;
}

.logo {
	margin-right: 5px;
}

.logo__svg {
	width: 260px;
	height: 52px;
}
.header-main--center {
	position: relative;
	padding: 0 20px;
}
.header-main .trustpilot-widget-header {
	position: absolute!important;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 7px;
}
.header-main .search-form {
	position: relative;
	width: 600px;
	max-width: 100%;
}
.header-main .search-form .input {
	margin-bottom: 0;
}
.header-main .search-form .input input {
	border-color: #b097c8;
	border-radius: 5px;
	border-width: 2px;
	height: 48px;
	padding: 15px;
	font-weight: 600;
	color: #2a2a2a;
}
.header-main .search-form button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    height: 25px;
}

.header-main .search-form .spinner {
    position: absolute;
    top: 0;
    margin: 10px;
    right: 40px;
    z-index: 100;
    width: 28px;
    height: 28px;
}
.spinner {
    border-top: 2px solid rgba(0,0,0, 0.2);
    border-right: 2px solid rgba(0,0,0, 0.2);
    border-bottom: 2px solid rgba(0,0,0, 0.2);
    border-left: 2px solid #5d3385;
}
.header-main--basket {
	background-color: #5d3385;
	padding: 14px;
	min-width: 195px;
	border-radius: 5px;
	color: #fff!important;
	font-weight: 600;
}
.header-main--basket:hover {
	background-color: #422260;
}
.header-main--basket svg {
	margin-right: 10px;
}





/*
|--------------------------------------------------------------------------
| Template > Header > Search Dropdown
|--------------------------------------------------------------------------
*/

.search_dropdown .shop--navtrail {
	display: none;
}

.search_dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
	transform: translateX(-50%);
   	width: 750px;
    padding: 0;
    margin: 0;
    opacity: 0;
	z-index: -1;
    transition: .3s ease;
    background: #fff;
    border: 2px solid #e7e7e7;
    box-shadow: 0px 13px 22px 0px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.search_dropdown .container {
	width: auto;
}

.focus ~ .search_dropdown, .focus .search_dropdown {
	opacity: 1;
	transition-delay: 0s;
    z-index: 999;
}

a.search_item_title, a.search_cat_title, a.search_suggestion_title {
	text-transform: none;
	width: 78%;
    display: inline-block;
	overflow: hidden;
}

.search_prod_title {
	color: #5a5a5a;
	font-weight: 700;
}

a.search_item_title .inner_title {
	width: 500px;
}

a.search_cat_title {
	max-width: 100%;
}

a.search_cat_title .full_cat {
	color: #a0a0a0;
}

.search_section_left, .search_section_right {
	text-align: left;
	width: 50%;
	height: 100%;
}

.search_section_left .search_section, .search_section_right .search_section {
	padding: 15px 15px 20px;
}

.search_section_right {
	float: right;
}

.search_section_left .search_section {
	border-right: 2px solid #e7e7e7;
	height: 100%;
}

.search_section_right .search_section:nth-child(2) {
	border-top: 2px solid #e7e7e7;
}

.search_dropdown, .search_dropdown a {
	color: #2d2d2d;
}

a.search_item_title, .search_cat_title, .search_suggestion_title {
	white-space: nowrap;
	position: relative;
	font-weight: 700;
}

a.search_item_title, a.search_suggestion_title {
	padding-left: 7px;
}

.search_section_title.search_suggestion_title {
	padding: 0;
    margin: 0;
    margin-top: -3px;
    margin-bottom: 8px;
}

a.search_cat_title, a.search_suggestion_title {
	width: 95%;
}

a.search_item_title span {
	color: #a0a0a0;
}

.search_dropdown .search_price {
	float: right;
    color: #666666;
	position: relative;
	font-weight: 700;
}

.search_dropdown .light {
	color: #a0a0a0;
}

.search_section_left.no_result .search_section {
	border-right: none;
}

.search_item_cont, .search_cat_cont, .search_suggestion_cont, .search_section_title {
	margin-top: 5px;
}

.search_section_title {
	padding-bottom: 4px;
}

.search_cat_cont {
	padding-left: 7px;
}

.mobile-search--input .spinner {
	right: 75px;
	height: 32px;
	width: 32px;
	top: 20px;
}

.mobile-search .search_dropdown, .search-inputs .spinner {
	display: none;
}

.changed_search, .original_search {
	text-align: center;
}

.changed_search {
	margin-bottom: 15px;
}

.original_search {
	margin-bottom: 30px;
}

.original_search a{
	text-decoration: underline;
}

a.dropdown_show_all {
	color: #fff;
	display: inline-block;
	background: #3479b1;
    box-shadow: 0 1px 1px #175e8e,0 2px 1px #175e8e;
    height: 24px;
	line-height: 24px;
	margin-top: 13px;
    padding: 0 15px;
}

.search_item_cont, .search_cat_cont {
	position: relative;
}

.search_section_left .last::after, .search_section_right .last::after {
    content: "";
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(top, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 1%, rgba(255,255,255,0.8) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.8) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,0.8) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 );
    display: block;
    position: absolute;
    bottom: 0;
}

a.search_item_title::before, .search_cat_title::before, .search_suggestion_title::before {
	content: "";
    height: 100%;
    width: 20px;
	background: -moz-linear-gradient(left, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 1%, rgba(255,255,255,0.7) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.7) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,0.7) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(255,255,255,0.7) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
    display: block;
    position: absolute;
    right: 0;
}

.header-search--mobile {
	display: none;
}

.header-search--mobile svg {
	width: 34px;
    height: 34px;
	fill: #5d3385;
}

.mobile-search-overlay {
	display: none;
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-color: #fff;
	z-index: 10000;
	height: 100px;
	background-color: #e7e7e7;
}
.mobile-search-overlay .recent-searches {
    background-color: #FFF;
}
.search-form.search-form--mobile {
	width: 100%;
    margin: 25px 70px 20px 20px;
}
.mobile-search-overlay .header-search--mobile {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
.search-form.search-form--mobile .input {
	display: flex;
	width: 100%;
	padding: 10px 15px;
	background-color: #fff;
	border-radius: 50px;
}

.search-form.search-form--mobile .input button {
	background-color: #fff;
	outline: none;
	border: none;
}

.search-form.search-form--mobile .input input {
	border: none;
	padding: 0px;
}


.search-form.search-form--mobile .spinner {
    position: absolute;
    top: 0;
    margin: 10px;
    right: 40px;
    z-index: 100;
    width: 28px;
    height: 28px;
}

.search-form.search-form--mobile .search_dropdown {
	width: 100%;
}

.mobile-search-overlay > svg {
	position: absolute;
	top: 40px;
	right: 30px;
}

.recent-searches {
	padding: 0 20px;
}

.recent-searches__header > * {
	font-weight: 700;
	font-size: 16px;
}

.recent-searches__header > :first-child {
	color: #2d2d2d;
}

.recent-searches__searches {
	padding: 10px 0;
}

.recent-searches__searches a {
	color: #5d3385;
	font-size: 16px;
	padding-bottom: 10px;
	font-weight: 700;
}


.atb-overlay__cover {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(0 0 0 / 42%);
    z-index: 99;
}
.atb-box {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100;
    transform: translate(-50%,-50%);
    background-color: #fff;
	display: flex;
	flex-direction: column;
}
.atb-box__content {
    padding: 25px 35px;
}
.atb-box__content > img {
    margin-right: 25px;
}
.atb-box__content > div {
    color: #5d3385;
    font-size: 20px;
    font-weight: 800;
}
.atb-box__content > div > small {
    font-weight: 400;
    font-size: 18px;
}
.atb-box__content .message-error {
    margin: -20px -30px -20px;
    font-size: 14px;
    font-weight: 500;
}

.mobile-header--account {
    display: none;
    border-radius: 4px;
    background: #1E1E1E;
    height: 38px;
    margin-right: 10px;
    color: #FFF !important;
    font-size: 16px;
    padding: 5px 10px;
}
.mobile-header--account > svg {
    margin-right: 5px;
}


/*
|--------------------------------------------------------------------------
| Template > Header
|--------------------------------------------------------------------------
*/
.header-nav {
	background-color: #ebebeb;
	border-radius: 5px;
	position: relative;
}
.header-nav .header-nav--item > div > a {
	padding: 16px 25px;
	flex: 1;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
}
.header-nav .header-nav--dd {
	display: grid;
	justify-content: flex-end;
}
.header-nav .header-nav--dd > div > a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border-left: 1px solid #fff;
}
.header-nav .header-nav--dd > div > a::after {
	position: relative;
	content: '';
	width: 14px;
	height: 11px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.02 8.24'%3E%3Ctitle%3Earrow-d%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath fill='%23e71f25' d='M7.56,8,13.8,1.77a.77.77,0,0,0,0-1.08L13.34.23a.77.77,0,0,0-1.08,0L7,5.47,1.77.22A.77.77,0,0,0,.68.22L.22.68a.77.77,0,0,0,0,1.08L6.47,8A.77.77,0,0,0,7.56,8Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-left:15px;
}
.header-nav .header-nav--dd > div > a,
.header-nav .header-nav--item:not(.header-nav--dd):hover > div > a,
.header-nav--col--list > a:hover,
.header-nav--col > a:hover {
	color: #e71f25;
}
.header-nav .header-nav--dd > div > a:hover {
	color: #c5151b;
}
.header-nav--dropdown, .header-nav--dd--dropdown {
	display: none;
}
.header-nav--dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	width: 100%;
	border: 1px solid #d9d9d9;
	border-radius: 5px;
	padding: 28px;
}
.header-nav--item > div:hover > .header-nav--dropdown {
	display: flex;
	justify-content: space-between;
}
.header-nav--col:not(:last-of-type) {
	padding-right: 25px;
}
.header-nav--col, .header-nav--col--list {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.header-nav--col {
	max-width: 430px;
}
.header-nav--col > a {
	font-size: 16px;
	font-weight: bold;
	line-height: 16px;
	color: #2a2a2a;
	border-bottom: 2px solid #2a2a2a;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.header-nav--col--list > a {
	color: #2a2a2a;
}
.header-nav--col--list > a:not(:last-of-type) {
	margin-bottom: 8px;
}
.header-nav--banner > a {
	background-repeat: no-repeat;
}
.header-nav--banner > a:hover {
	opacity: 0.9;
}
.header-nav--banner > a img {
	/* visibility: hidden; */
}




/*
|--------------------------------------------------------------------------
| Template > Footer
|--------------------------------------------------------------------------
*/
.footer-main {
	background-color: #ffffff;
	border: 1px solid #d9d9d9;
	border-width: 1px 0 1px 0;
}

.footer-nav {
	padding: 38px 0;
	border-bottom: 1px solid #d9d9d9;
}
.footer-nav a {
	color: #1d2771;
	font-size: 16px;
	font-weight: bold;
	padding: 0 20px;
}
.footer-nav a:hover {
	color: #161e54;
}

.footer-signup {
	display: inline-grid;
	padding: 35px 0;
}
.footer-signup--top, .footer-signup > form#nsltr, .footer-signup--top > span {
	display: block;
	margin: 0 auto;
}
.footer-signup--top {
	text-align: center;
}
.footer-signup--top > span {
	margin-bottom: 15px;
	color: #e71f25;
}
.footer-signup--top > span > strong {
	display: block;
	text-transform: uppercase;
	font-size: 24px;
	margin-bottom: 5px;
}
.footer-signup--top > span > small {
	font-size: 16px;
}
.footer-signup:not(.showForm) > form#nsltr, .footer-signup.showForm .button-signup--opener {
	display: none;
}
.footer-signup > form#nsltr .input {
	margin-bottom: 0;
}
.footer-signup > form#nsltr button {
	border-radius: 0 4px 4px 0;
}
#gototop--button {
	position: fixed;
	bottom: 40px;
	right: 30px;
	width: 50px;
	height: 50px;
	opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}
#gototop--button.visible {
	opacity: 1;
	pointer-events: all;
	cursor: pointer;
}
#gototop--button svg {
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0.7;
}
#gototop--button:hover svg {
	opacity: 0.9;
}


/*
|--------------------------------------------------------------------------
| Tempalte > Social > Floater
|--------------------------------------------------------------------------
*/
.social-float {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	margin-top: -100px;
	background-color: #e71f25;
	overflow: hidden;
	border-radius: 4px 0 0 4px;
	z-index: 100;
}
.social-float a {
	height: 47px;
	width: 36px;
}
.social-float a:hover {
	background-color: #c1141a;
}

/*
|--------------------------------------------------------------------------
| Template > Footer > Bottom
|--------------------------------------------------------------------------
*/
.footer-bottom {
	padding: 38px 0;
}
.footer-payment img {
	max-width: 312px;
	height: 28px;
	margin-bottom: 20px;
}
.footer-bottom, .footer-bottom a {
	font-size: 11px;
	color: #a9a9a9;
}
.footer-bottom a:hover {
color: #e71f25;
}
.footer-bottom > div > div > div:not(.footer-payment):not(:last-of-type) {
	margin-bottom: 5px;
}



/*
|--------------------------------------------------------------------------
| Template > Mobile Menu
|--------------------------------------------------------------------------
*/
@-webkit-keyframes mobileMenuOpen {
	from  {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
	to {
		-webkit-transform: translateX(390px);
		transform: translateX(390px);
	}
}

@keyframes mobileMenuOpen {
	from {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
	to {
		-webkit-transform: translateX(390px);
		transform: translateX(390px);
	}
}

@-webkit-keyframes mobileMenuClose {
	from  {
		-webkit-transform: translateX(390px);
		transform: translateX(390px);
	}
	to {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
}

@keyframes mobileMenuClose {
	from  {
		-webkit-transform: translateX(390px);
		transform: translateX(390px);
	}
	to {
		-webkit-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
	}
}

.page-slide-container {
	overflow: hidden;
}

.page-slide {
	position: relative;
	/* transform: translate(0, 0);
	-webkit-transform: translate(0, 0); */
}

.mobile-menu {
	position: absolute;
	top: 0; left: -390px; bottom: 0;
	display: none;
	width: 390px;
	background:#fff;
	background-size: 515.5px 511.5px;
	z-index: 999;
}

.mobileMenuItemFade {
	-webkit-animation: mobileMenuItemFade 1s ease forwards; /* Safari 4+ */
	-moz-animation:    mobileMenuItemFade 1s ease forwards; /* Fx 5+ */
	-o-animation:      mobileMenuItemFade 1s ease forwards; /* Opera 12+ */
	animation:         mobileMenuItemFade 1s ease forwards; /* IE 10+, Fx 29+ */
}

.mobile-search {

}
.mobile-search > form {
	position: relative;
}

.mobile-search--input {
	overflow: hidden;
}
div.mobile-search--input {
	padding: 15px 25px;
}
input.mobile-search--input {
	/* border-radius: 4px;  */
	background-color: #fff;
}
.mobile-search--submit {
	position: absolute;
	right: 45px;
	top: 50%;
	transform: translateY(-50%);
	background-color: transparent;
	z-index: 1;
	display: flex;
}

.mobile-store {
	padding: 20px 0 0 20px;
	display: none;
}

.mobile-nav .mobile-store--link {
	display: block;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #c0bfbf;
	padding: 6px 0;
	margin: 0 0 8px;
}

.mobile-store--link:last-child {
	color: #5d3385;
}

.mobile-store--link:nth-last-child(2) {
	color: #5d3385;
}

.mobile-store--cont > a {
	display: block;
	position: relative;
}
.mobile-store--cont > a::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 25px;
	width: 25px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 7'%3E%3Cpath fill='%23e71f25' fill-rule='evenodd' d='M4.97 6.28L.5 1.75A.75.75 0 01.5.71a.72.72 0 011.03 0l3.95 4 3.95-4a.72.72 0 011.03 0c.28.29.28.76 0 1.04L6 6.29a.72.72 0 01-1.03 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 25px;
	transition: ease-in-out .2s;
}
.mobile-store--cont.open > a::after {
	transform: translateY(-50%) rotate(180deg);
}

.mobile-store--cont.open .mobile-store {
	display: block;
}

.mobile-search--input {
	/*width: 100%;
	color: #c0bfbf;
	font-size: 21px;
	background: none;
	line-height: 55px;
	padding: 18px 30px 17px;*/
}

.onpage-search__input, .mobile-search--input {
	width: 100%;
	font-size: 18px;
	background: none;
	line-height: 35px;
	padding: 6px 20px;
}

.onpage-search__submit {
	height: 50px;
	width: 60px;
	background: #5d3385;
}

.onpage-search__submit svg {

}

.mobile-nav,
.mobile-action {

}

.mobile-nav {
	padding-top: 0;
}

.static-mobile-nav {
	border-bottom: 0;
}



ul.mobile-nav--brands,
.mobile-nav--brands ul,
ul.mobile-nav--multi,
.mobile-nav--multi ul {
	list-style: none;
	margin: 0;
}
.mobile-nav--brands a,
.mobile-nav--multi a,
.mobile-nav--brands li > span {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
}
.mobile-nav--brands li > span::after,
.mobile-nav--toggle > a::after,
.mobile-nav--brands li > span::before,
.mobile-nav--toggle > a::before {
	content: '';
	position: relative;
	width: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.mobile-nav--multi li > ul,
.mobile-nav--brands li > ul,
.mobile-nav--brands li.open > span::after,
.mobile-nav--toggle.open > a::after,
.mobile-nav--brands li > span::before,
.mobile-nav--toggle > a::before {
	display: none;
}
.mobile-nav--brands li.open > span::before,
.mobile-nav--toggle.open > a::before {
	display: block;
	margin-right: 8px;
}


.mobile-nav--brands {
	background-color: #ebebeb;
}
.mobile-nav--brands, .mobile-nav--brands a {
	color: #e71f25;
	font-size: 18px;
}
.mobile-nav--brands li > span,
.mobile-nav--brands a {
	padding: 22px 30px;
	cursor: pointer;
}
.mobile-nav--brands li > span::after, .mobile-nav--brands li > span::before {
	height: 12px;
	width: 22px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.02 8.24'%3E%3Ctitle%3Earrow-d%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath fill='%23e71f25' d='M7.56,8,13.8,1.77a.77.77,0,0,0,0-1.08L13.34.23a.77.77,0,0,0-1.08,0L7,5.47,1.77.22A.77.77,0,0,0,.68.22L.22.68a.77.77,0,0,0,0,1.08L6.47,8A.77.77,0,0,0,7.56,8Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mobile-nav--brands li.open > span {
	color: #898888;
	padding: 20px 30px;
	justify-content: left;
	font-size: 16px;
	border-bottom: 1px solid #d9d9d9;
}
.mobile-nav--brands li.open > span::before {
	height: 10px;
	width: 22px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.02 8.24'%3E%3Ctitle%3Earrow-d%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath fill='%23898888' d='M7.56,8,13.8,1.77a.77.77,0,0,0,0-1.08L13.34.23a.77.77,0,0,0-1.08,0L7,5.47,1.77.22A.77.77,0,0,0,.68.22L.22.68a.77.77,0,0,0,0,1.08L6.47,8A.77.77,0,0,0,7.56,8Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mobile-nav--brands li > span::before {
	transform: rotate(180deg);
}
.mobile-nav--brands ul a {
	border-bottom: 1px solid #d9d9d9;
}

.mobile-nav--multi {

}
.mobile-nav--multi a {
	padding: 22px 30px;
	border-bottom: 1px solid #d9d9d9;
}
.mobile-nav--toggle > a::after {
	height: 22px;
	width: 22px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.24 14.02'%3E%3Ctitle%3Earrow-r%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath fill='%235d3385' d='M8,6.46,1.77.22A.77.77,0,0,0,.69.22L.23.68a.77.77,0,0,0,0,1.08L5.47,7,.22,12.25a.77.77,0,0,0,0,1.08l.46.46a.77.77,0,0,0,1.08,0L8,7.55A.77.77,0,0,0,8,6.46Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mobile-nav--toggle > a::before {
	height: 18px;
	width: 18px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.24 14.02'%3E%3Ctitle%3Earrow-l%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath fill='%23898888' d='M0,7a.76.76,0,0,0,.22.54L6.47,13.8a.77.77,0,0,0,1.08,0L8,13.34a.77.77,0,0,0,0-1.08L2.77,7,8,1.77A.77.77,0,0,0,8,.68L7.55.22a.77.77,0,0,0-1.08,0L.22,6.46A.76.76,0,0,0,0,7Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mobile-nav--multi,
.mobile-nav--multi a {
	color: #5d3385;
	font-size: 20px;
}
.mobile-nav--toggle.open > a {
	padding: 20px 30px;
	color: #898888;
	font-size: 18px;
	justify-content: left;
}


.mobile-menu--login {
	padding: 15px 30px;
	background-color: #03B050;
}
.mobile-menu--login > a {
	font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    font-weight: 600;
}
.mobile-menu--login > a > span {
	margin: 0 5px 0 15px;
}


.mobile-action a {
	display: block;
	color: #c0bfbf;
	margin: 0 0 10px 0;
}

.mobile-action a:last-child {
	margin: 0;
}

.mobile-action a[href^="tel:"] {
	color: #00b050;
}

.mobile-action .icon {
	padding: 0 0 0 34px;
}

.mobile-action .icon-user {
	background: url(/images/style/party/mbl-icon-user.png) no-repeat center left;
	background-size: 20px 20px;
}

.mobile-action .icon-box {
	background: url(/images/style/party/mbl-icon-box.png) no-repeat center left;
	background-size: 20px 20px;
}

.mobile-action .icon-phone {
	background: url(/images/style/party/mbl-icon-phone.png) no-repeat center left;
	background-size: 18px 18px;
}

.mobile-social-title {
	font-size:24px;
	color:#fff;
	text-align:center;
	padding-bottom:15px;
}

.mobile-social {
	padding: 14px 30px 5px 30px;
	text-align: justify;
}

.mobile-social a {
	width: 40px;
	float: none;
	display: inline-block;
	background-position: center center;
}

.mobile-social:after {
	content: '';
	width: 100%;
	display: inline-block;
}

#page_numbers {
	text-align: center;
}

.page_numbers_inner {
	padding: 32px 0;
}

.page_number_sel,
.previous_page,
.page_number,
.next_page {
	display: inline-block;
}

#page_numbers a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px;
	min-width: 33px;
	color: #00b050;
	background-color: #fff;
	font-size: 14px;
	font-weight: 700;
	margin: 0 5px;
	border: 2px solid #d9d9d9;
	border-radius: 5px;
}

#page_numbers .page_number_sel a {
	color: #1d2771;
}
#page_numbers .previous_page a, #page_numbers .next_page a {
	background-color: #00b050;
	border-color: #00b050;
	color: #fff;
	padding-left: 20px;
	padding-right: 20px;
}
#page_numbers .previous_page a:hover, #page_numbers .next_page a:hover {
	background-color: #029445;
	border-color: #029445;
}
#page_numbers .disabled_page_num a {
	background-color: #ebebeb!important;
	border-color: #ebebeb!important;
	color: #898888!important;
	pointer-events: none;
}

.lazy-load {
	clear: both;
	padding: 15px 0;
}

.lazy-load .spinner {
	border-top: 1.1em solid rgba(0, 0, 0, 0.2);
    border-right: 1.1em solid rgba(0, 0, 0, 0.2);
    border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
    border-left: 1.1em solid #000000;
}

.onpage-search {
	background-color: #fff;
	position: relative;
	border: 1px solid #eaeaea;
	display: flex;
	width: 500px;
	max-width: 100%;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 25px;
}

#mbl-filters-sub {
	display:block;
}



/*
|--------------------------------------------------------------------------
| Template > Overlay
|--------------------------------------------------------------------------
*/
#olay {
	display: none;
}

#olay_back {
	background: #000;
	position: fixed;
	top: 0; bottom: 0; left: 0; right: 0;
	z-index: 10000;
	filter: alpha(opacity=70);
	opacity: .7;
	width: 100%;
}

#olay_box_container {
	width: 90%;
	max-width: 720px;
	position: fixed;
	top: 10%; left: 50%;
	z-index: 10010;
}

#olay_box {
	background: #fff;
	width: 100%;
	padding: 30px;
	margin: 0 0 0 -50%;
	border-radius:10px;
    -webkit-box-shadow: 0px 0px 12px #333;
    box-shadow: 0px 0px 12px #333;
}

#olay_close,
#search_results_close {
	background:url(/images/style/party/olay_close.jpg) no-repeat;
	width:26px;
	height:25px;
	float: right;
	cursor: pointer;
}



/*
|--------------------------------------------------------------------------
| Home > Slider
|--------------------------------------------------------------------------
*/
.home-slide {
	min-height: 420px;
}

.home-slider .slick-list {
	width: 100%;
}

.home-slider .home-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.no-js .home-slider .home-slide {
	display: none;
}

.no-js .home-slider .home-slide:first-child {
	display: flex;
}

/* Home Slick Slider arrows */
.home-slider .slick-arrow {}
.home-slider .slick-next {}
.home-slider .slick-arrow:after {}
.home-slider .slick-next:after {}
.home-slider .slick-disabled {}

/* Home Slick Slider dots */
.home-slider .slick-dots {}
.home-slider .slick-dots li {}
.home-slider .slick-dots .slick-active button {}
.home-slider .slick-dots button {}


/*
|--------------------------------------------------------------------------
| Home > Top Features
|--------------------------------------------------------------------------
*/
.home-feature {
	padding: 20px 0;
	justify-content: space-between;
}
.home-feature--main {
	width: 66.43333%;
}
.home-feature--side {
	justify-content: space-between;
	width: 33.572%;
	padding-left: 20px;
}
.home-feature a {
	display: flex;
	background-size: cover;
}


/*
|--------------------------------------------------------------------------
| Home > Bottom
|--------------------------------------------------------------------------
*/
.home-welcome {}

.home-welcome__title {
	font-size: 32px;
}

.home-welcome__action {
	margin: 12px 0 0 0;
}

/*
|--------------------------------------------------------------------------
| Home > Instagram Feed
|--------------------------------------------------------------------------
*/
.instafeed > * {
	flex: 1;
}
.instafeed--title {
	width: 360px;
	padding: 20px;
	background-color: #b52226;
	color: #fff!important;
	transition: ease-in-out .2s;
}
.instafeed--title:hover {
	background-color: #a61d21;
}
.instafeed--title svg {
	margin-bottom: 15px;
}
.instafeed--title > div > span {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 5px;
}
.instafeed--title > div > small {
	font-weight: normal;
	font-size: 14px;
}

/*
|--------------------------------------------------------------------------
| Home > New home > Flash Deals
|--------------------------------------------------------------------------
*/

.home-flash--deals {
	padding: 30px 0;
	background: url(/images/style/party/flash-deals-bg.jpg) no-repeat center center / cover #e10e1d;
}

.container.flash-single {
	max-width: 1440px;
}

.flash-text-col {
	width: 360px;
	flex-shrink: 0;
	color: #fff;
}

.flash-banner {
	display: inline-block;
	background-color: #5D3385;
	padding: 10px 15px;
	font-size: 20px;
	font-family: 'Viga', sans-serif;
	color: #fff;
	border-radius: 3px;
}

.flash-banner svg {
	height: 25px;
	fill: #fff;
	margin-right: 3px;
}

.flash-banner span {
	margin-left: 3px;
}

.mobile-ftitle {
	display: none;
}

.home-upsells .featured-brand-image {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.flash-titles-cont + .button,
.flash-title + .flash-subtitle,
.flash-banner + .flash-title,
.flash-titles-cont {
	margin-top: 16px;
}

.flash-title {
	font-family: 'Viga', sans-serif;
	line-height: 1;
	font-size: 40px;
	text-transform: uppercase;
}

.flash-subtitle {
	font-size: 21px;
	line-height: 1.2;
}

.flash-deal--item {
	background-color: #fff;
}

.flash-deal--full .flash-deal--image {
	width: 43.992%;
}

.flash-deal--full .flash-deal--details {
	flex: 1 ;
}

.flash-deal--image {
	position: relative;
	margin: 10px;
}

.flash-deal--image img {
	display: block;
	width: 100%;
}

.flash-deal--full .flash-deal--details {
	border-left: 1px solid #ededed;
	padding: 45px;
}

.flash-deal--title {
	font-family: 'Viga', sans-serif;
	color: #131313;
}

.flash-deal--subtitle {
	color: #767676;
}

.flash-deal--full .flash-deal--title {
	font-size: 26px;
	line-height: 1.2;
}

.flash-deal--full .flash-deal--subtitle {
	font-size: 16px;
	line-height: 1.3;
}

.flash-deal--full .flash-deal--title + .flash-deal--subtitle {
	margin-top: 20px;
}

.flash-deal--full .flash-deal--details {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.flash-deal--full .product-price-web {
	font-size: 36px;
}

.flash-deal--full .product-price-web-ex {
	font-size: 18px;
}

.flash-deal--full .product-vat {
	padding-bottom: 4px;
}

.flash-deal--full .product-price-rrp strong {
	font-size: 18px;
}

.flash-deal--full .stock-status {
	font-size: 16px;
	background-size: 13px 12px;
}

.home-flash--deals .product-overlay-top--button {
	display: none !important;
}

.flash-deals .product-grid--item {
	padding: 10px;
	background-color: #fff;
}

.flash-deals .product-grid--item,
.flash-deals .category-grid--item {
	border-right: 1px solid #f1f1f1!important;
}

.flash-deal--full .stock-status {
	padding: 0 0 0 16px;
}


/*
|--------------------------------------------------------------------------
| CMS > Size Guide
|--------------------------------------------------------------------------
*/
.size-guide {
	margin-top: -15px;
	margin-bottom: 50px;
}
.size-guide--tabs {
	margin-bottom: 35px;
}
.size-guide--tabs > div {
	font-size: 18px;
	margin: 0 20px;
	padding: 6px 15px;
	cursor: pointer;
	border-radius: 4px;
	color: #5d3385;
}
.size-guide--tabs > div:hover {
	color: #422260;
}
.size-guide--tabs > div.sel {
	background-color: #ebebeb;
	color: #343434;
	cursor: default;
}
.size-guide--table:not(.show) {
	display: none;
}
.size-guide--row {
	display: flex;
	justify-content: space-between;
}
.size-guide--row > div {
	display: inline-grid;
	align-items: center;
	min-height: 56px;
	font-size: 15px;
	line-height: 16px;
}
.size-guide--row strong {
	font-weight: 600;
}
.size-guide--row small {
	font-size: 12px;
}
.size-guide--row > div:first-of-type {
	width: 148px;
}
.size-guide--row:not(.sgr-headers) > div {
	color: #2a2a2a;
	border-right: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	padding: 10px;
}
.size-guide--row:not(.sgr-headers) > div:not(:first-of-type) {
	width: 14%;
}
.size-guide--row:not(.sgr-headers) > div:first-of-type {
	background-color: #ebebeb;
	border-left: 1px solid #d9d9d9;
}
.size-guide--row:not(.sgr-headers):not(:last-of-type) > div:first-of-type {
	border-bottom-color: #fff;
}
.size-guide--row.sgr-headers {
	background-color: #5d3385;
	color: #fff;
}
.size-guide--row.sgr-headers > div:not(:first-of-type) {
	display: grid;
	width: 28.1111%;
	min-height: 76px;
	border-left: 1px solid #fff;
}
.size-guide--row.sgr-headers > div:not(:first-of-type) span {
	display: grid;
	height: 45px;
	align-content: center;
}
.size-guide--row.sgr-headers > div:not(:first-of-type) > span {
	border-bottom: 1px solid #fff;
}
.sgr-header--subs {
	display: flex;
}
.sgr-header--subs span {
	width: 50%;
	height:34px!important;
	font-size: 12px;
}
.sgr-header--subs span:last-of-type {
	border-left: 1px solid #fff;
}


/*
|--------------------------------------------------------------------------
| CMS > Contact Us
|--------------------------------------------------------------------------
*/

.pin-icon {
	margin-top: 2px;
	flex-shrink: 0;
}

.contact-page .content-page--content {
	margin-top: -10px;
}
.contact-page--info {
	margin-top: 35px;
	color: #5d3385;
	font-weight: 600;
}
.contact-page--info > * {
	padding: 0 26px;
}
.contact-page--info > * > svg {
	margin-right: 6px;
}
form#contact_us {
	margin-top: 40px;
	padding: 30px;
	background-color: #ebebeb;
}
form#contact_us .input.input-plain input[type="text"],
form#contact_us .input.input-plain input[type="email"],
form#contact_us .input.input-plain input[type="search"],
form#contact_us .input.input-plain input[type="tel"],
form#contact_us .input.input-plain input[type="password"],
form#contact_us .input.input-plain input[type="number"],
form#contact_us .input.input-plain textarea,
form#contact_us .input.input-plain .input-file-dummy,
form#contact_us .input.input-plain .input-text-dummy {
	border-color: #d9d9d9;
	background-color: #fff;
}
form#contact_us button#contact_submit {
	margin-top: 10px;
}


/*
|--------------------------------------------------------------------------
| CMS > Blogs
|--------------------------------------------------------------------------
*/
.blog-title-img {
	margin-bottom: 20px;
}
.blog-cat--cat-list {
	margin-bottom: px;
}
.category-tabs--item {
	font-size: 18px;
	margin: 5px 12px;
	padding: 6px 15px;
	border-radius: 4px;
	color: #5d3385;
}
.category-tabs--item:hover {
	color: #422260;
}
.category-tabs--item.sel {
	background-color: #ebebeb;
	color: #343434;
	cursor: pointer;
	pointer-events: none;
	margin: 5px 28px;
	font-weight: 600;
}
.article-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.article-list--img {
	height: 220px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-bottom: 10px;
}
.article-list--title {
	font-size: 15px;
	font-weight: 600;
	color: #2a2a2a;
	margin-bottom: 8px;
}
.article-list--details > p {
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 10px;
}

.article--top, .article--title {
	text-align: center;
}
.article--top {
	text-transform: uppercase;
	color: #898888;
	padding: 10px 0 15px;
}
.article--top a {
	font-weight: 700;
	color: #e71f25;
}
.article--title {
	font-size: 42px;
	margin-bottom: 40px;
}
.article--image {
	align-self: center;
	width: 896px;
	margin-bottom: 40px;
}
.article-content {
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 25px;
}
.article-content h1, .article-content h2, .article-content h3, .article-content-h4, .article-content h5 {
	color: #5d3385;
}
.article-content h1 {font-size: 22px;}
.article-content h2 {font-size: 20px;}
.article-content h3 {font-size: 18px;}
.article-content h4 {font-size: 16px;}
.article-content h5 {font-size: 14px;}
.article-content hr {
	height: 1px;
	background-color: #d9d9d9;
	margin: 25px 0 40px 0;
}
.article .comments {
	background-color: #ebebeb;
	padding: 45px 0 65px;
}

h2.comments-title {
	font-size: 30px;
	text-align: center;
}
.comments-form--inner {
	background-color: #fff;
	padding: 38px 30px 30px;
}

.article-content--social {
	margin-bottom: 20px;
}
.article-content--social .at-share-btn {
	padding: 0!important;
}

.article-comments .comment-list {
	margin-bottom: 40px
}
.article-comments .comment-list .comment {
	background-color: #fff;
	padding: 20px;
	font-size: 13px;
	margin-bottom: 5px;
}
.article-comments .comment-list--info {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 10px;
	color: #e71f25;
}
.article-comments .message {
	margin-top: 0;
}


/*
|--------------------------------------------------------------------------
| CMS > Template > Content Page
|--------------------------------------------------------------------------
*/
.content-page {
	padding: 0 0 70px;
}
.content--title {
	font-size: 48px;
	line-height: 48px;
	border-bottom: 2px solid #343434;
	text-transform: uppercase;
	padding-bottom: 40px;
	font-weight: 700;
	margin-bottom: 50px;
}
.content-page--content {

}
.content-page--content h1 {
	font-size: 24px;
}
.content-page--content h2 {
	font-size: 21px;
}
.content-page--content h3 {
	font-size: 18px;
}
.content-page p {
	color: #2a2a2a;
}

.content-page--side-blocks {
	width: 382px;
	margin-right: 55px;
}
.content-page--side-block {
	padding: 25px;
	border-radius: 4px;
}
.content-page--side-block:not(:last-of-type), .content-page--side-block.flex-col img {
	margin-bottom: 10px;
}
.content-page--side-block.bg-purple {
	min-height: 200px;
}
.content-page--side-block.bg-purple p {
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
}

.content-page--bottom-buttons:last-of-type {
	margin-top: 30px;
}
.content-page--bottom-buttons > div:not(:first-of-type) .button {
	margin-left: 10px;
}


/*
|--------------------------------------------------------------------------
| CMS > Template > Delivery Page
|--------------------------------------------------------------------------
*/

.delivery-block--text {
	color: #343434;
	margin-right: -5px;
}
.delivery-block--text:not(:first-child) {
	margin-left: 20px;
}
.delivery-block--title, .delivery-block--price {
	font-size: 16px;
	font-weight: 700;
}
.delivery-block--title {
	color: #5d3385;
	margin-bottom: 4px;
}
.delivery-block--text small {
	font-size: 11px;
	margin-bottom: 5px;
	color: #222;
}


/*
|--------------------------------------------------------------------------
| CMS > Template > Feature Collage
|--------------------------------------------------------------------------
*/
.feature-collage {
	padding: 40px 0 25px 0;
}
.feature-collage a {
	background-size: cover;
	background-repeat: no-repeat;
}
.feature-collage img {
	visibility: hidden;
}
.feature-collage--row {

}
.feauture-collage--row > div {

}
.feature-collage--lg {
	width: 34.333333%;
}
.feature-collage--row > .flex:not(.flex-rev) .feature-collage--lg {
	padding-right: 25px;
}
.feature-collage--row > .flex.flex-rev .feature-collage--lg {
	padding-left: 25px;
}
.feature-collage--lg > a {

}
.feature-collage--sm {
	display: flex;
    flex-wrap: wrap;
	margin-right: -25px;
	width: 68.5%;
}
.feature-collage--sm > div {
	display: inline-block;
	width: 50%;
	padding-right: 25px;
	padding-bottom: 22px;
}


/*
|--------------------------------------------------------------------------
| CMS > Template > Category Block Row
|--------------------------------------------------------------------------
*/

.category-row {
	padding: 40px 0;
	margin-bottom: 20px;
}
a.category-row--block {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background: linear-gradient(180deg, rgba(225,225,225,1) 0%, rgba(255,255,255,1) 100%);
}
a.category-row--block:hover {
	opacity: .8;
}
a.category-row--block > span {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	text-align: center;
	padding: 15px;
	font-weight: bold;
	text-transform: uppercase;
}


/*
|--------------------------------------------------------------------------
| CMS > Template > Trust Pilot Review Slider
|--------------------------------------------------------------------------
*/
.trust-review--slider {
	padding: 15px 20px 30px;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 20px;
}

/*
|--------------------------------------------------------------------------
| CMS > Template > Content Block w Button
|--------------------------------------------------------------------------
*/
.content-block {
	margin-bottom: 50px;
}
.content-block--button {
	margin-top: 25px;
}



/*
|--------------------------------------------------------------------------
| CMS > Template
|--------------------------------------------------------------------------
*/
.page-subtitle {
	text-align: center;
	font-size: 21px;
	color: #5d3385;
}



/*
|--------------------------------------------------------------------------
| CMS > Template >
|--------------------------------------------------------------------------
*/
.category-list {
	text-align: center;
	font-size: 21px;
	background-color: rgba(0,0,0,0.08);
	padding: 10px 0;
}

.category-list__item {
	padding: 10px 0;
}

.category-list__link {
	font-size: 18px;
}


/*
|--------------------------------------------------------------------------
| CMS > Contact Us
|--------------------------------------------------------------------------
*/



/*
|--------------------------------------------------------------------------
| CMS > FAQ
|--------------------------------------------------------------------------
*/
.dd-section {
	padding: 40px 0 0 0;
}

.dd-section--title {
	font-size: 18px;
	color: #2d2d2d;
}

li.dd-block {
	margin: 0 0 4px;
	background-color: #5d3385;
	border-radius: 2px;
}

.dd-title {
	position: relative;
	color: #fff;
	font-size: 18px;
	padding: 18px 20px;
	cursor: pointer;
}

.dd-title:after {
	content: '';
	position: absolute;
	top: 24px; right: 28px;
	height: 13px;
	width: 3px;
	background: #fff;
	-webkit-transition: .5s all ease-out;
	transition: .5s all ease-out;
}

.dd-title:before {
	content: '';
	position: absolute;
	top: 29px; right: 23px;
	height: 3px;
	width: 13px;
	background: #fff;
	-webkit-transition: .5s all ease-out;
	transition: .5s all ease-out;
}

.dd-open:before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	opacity: 0;
}

.dd-open:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.dd-text {
	padding: 0 20px 20px 20px;
	color: #fff;
	font-size: 12px;
}

.dd-text p {
	color: #fff;
	font-size: 12px;
}

.dd-title span {
	display: block;
	padding: 0 20px 0 0;
}



/*
|--------------------------------------------------------------------------
| Shop > Category
|--------------------------------------------------------------------------
*/
.category-main {
	flex: 1;
}

.sidebar {
	width: 310px;
	flex-shrink: 0;
	background-color: #fff;
}

.sidebar__segment {
	padding: 12px 15px;
	border-bottom: 1px solid #e7e7e7;
}

.sidebar-content {
	overflow: hidden;
	width: 100%;
}

/* Category grid */
.category-grid {
	margin: 0 0 30px;
}

.category-item {}

.cat-grid--round {
	margin: 15px 0 25px;
}
.category-grid--title {
	display: none;
}
.cat-grid--round a {
	display: flex;
	flex-direction: column;
	font-size: 15px;
	font-weight: 600;
	max-width: 120px;
	padding: 10px 0;
}
.cat-grid--round a:hover {
	opacity: .8;
}
.cat-grid--round a > img {
	margin-bottom: 15px;
	border-radius: 100px;
	border: 1px solid #d9d9d9;
}

.category-grid--inner:not(.show-overflow) .overflow-cat {
	display: none;
}
.cat-overflow-btn {
	margin-top: 20px;
}
.cat-overflow-btn > svg {
	margin-left: 5px;
	transition: ease-in-out .2s;
}
.cat-overflow-btn.opened > svg {
	transform: rotate(-180deg);
}

/*
|--------------------------------------------------------------------------
| Shop > Category Alternative
|--------------------------------------------------------------------------
*/
.altcat-header {
	height: 740px;
	margin-bottom: 75px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.altcat-header h1 {
	font-size: 60px;
	color: #fff;
	text-shadow: 3px 3px 20px #000;
	margin-bottom: 20px;
}
.altcat-header--text {
	width: 630px;
	max-width: 100%;
	display: block;
	margin: 130px auto 0 auto;
}
.altcat-header--text p {
	color: rgba(255,255,255,0.5);
	font-size: 15px;
	line-height: 1.4;
}
.altcat-header--categories {
	margin-bottom: -75px;
	width: 1200px;
	max-width: 100%;
}
.altcat-header--categories h2 {
	font-size: 26px;
	color: #000;
	margin-bottom: 30px;
	text-transform: uppercase;
}
.altcat-header--categories > div > div {
	width: 25%;
	background-size: cover;
	background-position: center;
}
.altcat-header--categories > div a {
	padding: 8px;
	position: relative;
}
.altcat-header--categories a > span, .altcat-categories--bordered a > span {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	position: absolute;
	bottom: 8px;
	left: 0;
	text-align: center;
	width: 100%;
	text-transform: uppercase;
	padding: 10px 15px;
	background-image: url(/images/style/party/halloween-category-text-background.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	min-height: 58px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.altcat-header--categories a > span span {
	font-size: 36px;
	line-height: 36px;
}
.altcat-header--categories a > span small {
	font-size: 18px;
	color: #e71e24;
}

.altcat-categories, .altcat-favs {
	padding: 80px 0;
	background-size: cover;
}
.altcat-categories > div > p {
	text-align: center;
	font-size: 15px;
	color: #000;
	margin-bottom: 40px;
}
.altcat-categories.halloween-bg-dark > div > p {
	color: rgba(255,255,255,.5);
}

.altcat-categories > div > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.altcat-categories a {
	position: relative;
	font-size: 15px;
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}
.altcat-categories--bordered a {
	padding: 8px;
}
.altcat-categories--bordered a > span {
	font-size: 15px;
}

.altcat-favs .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.altcat-favs .slick-arrow.slick-prev {
	left: -84px;
}
.altcat-favs .slick-arrow.slick-next {
	right: -98px;
}
.halloween-page .altcat-favs .slick-arrow {
	height: 74px;
	width: 74px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-color: transparent;
	text-indent: -1000px;
	overflow: hidden;
}
.halloween-page .altcat-favs .slick-arrow.slick-prev {
	background-image: url(/images/style/party/halloween-arrow-left.png);
}
.halloween-page .altcat-favs .slick-arrow.slick-next {
	background-image: url(/images/style/party/halloween-arrow-right.png);
}

.halloween-page .altcat-favs .product-grid--item-inner {
	display: flex;
    background-color: transparent;
    padding: 14px;
	background-image: url(/images/style/party/halloween-texture.png)
}
.halloween-page .altcat-favs .product-inner {
    background-color: #fff;
}




/*
|--------------------------------------------------------------------------
| Halloween new (2022)
|--------------------------------------------------------------------------
*/

.halloween {
    padding: 0 0 40px;
    background-color: #181818;
    color: #FFF;
    margin: 10px 0 0;
}
.halloween-title--block {
	padding: 20px 0 80px;
	font-size: 50px;
	font-weight: 700;
	color: #00b050;
	text-align: center;
}

.halloween-title--block > span {
	font-size: 120px;
	font-weight: 400;
	font-family: 'Creepster', sans-serif;
	color: #7339ab;
	position: relative;
	top: 20px;
	padding: 0 15px;
}

.halloween-cat--inner {
	position: relative;
	display: block;
	padding: 0 0 100%;
	overflow: hidden;
	border-radius: 4px;
}

.halloween-cat--inner img {
	display: block;
	width: 100%;
	position: absolute;
	top: 50%;right: 0;bottom: 0;left: 50%;
	transform: translate(-50%, -50%);
}

.halloween-cat--text {
	position: absolute;
	right:20px;bottom: 0;left: 20px;
	padding: 20px;
	text-align: center;
	color: #fff;
	border-radius: 8px 8px 0 0;
}

.halloween-cat--text > span {
	font-size: 18px;
	font-weight: 700;
}

.halloween-cat--text > div {
	font-size: 36px;
}

.halloween-cats .segment-33:nth-child(6n+1) .halloween-cat--text {
	background-color: rgba(209, 150, 153, 0.9);
}

.halloween-cats .segment-33:nth-child(6n+2) .halloween-cat--text {
	background-color: rgba(160, 192, 221, 0.9);
}

.halloween-cats .segment-33:nth-child(6n+3) .halloween-cat--text {
	background-color: rgba(171, 201, 138, 0.9);
}

.halloween-cats .segment-33:nth-child(6n+4) .halloween-cat--text {
	background-color: rgba(210, 49, 33, 0.9);
}

.halloween-cats .segment-33:nth-child(6n+5) .halloween-cat--text {
	background-color: rgba(97, 41, 135, 0.9);
}

.halloween-cats .segment-33:nth-child(6n+6) .halloween-cat--text {
	background-color: rgba(146, 181, 213, 0.9);
}

.halloween-cat--text {
	background-color: #000000!important;
	color: #00b050!important;
}
.halloween-cat--text > div {
	font-family: 'Creepster', sans-serif;
}

.halloween-cats + .halloween-content {
	padding: 60px 0 0;
}

.halloween-content {
	max-width: 750px;
	margin: 0 auto;
}

.halloween-themes .halloween-cat--inner {
	border-radius: 22px;
}
.halloween-themes .halloween-cat--inner::after {
	content: '';
	position: absolute;
	top: 0;right: 0;bottom: 0;left: 0;
	border-radius: 24px;
}

.halloween-themes .segment-33:nth-child(6n+1) .halloween-cat--inner::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='24' ry='24' stroke='%23a4c1e2' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.halloween-themes .segment-33:nth-child(6n+2) .halloween-cat--inner::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='24' ry='24' stroke='%23c9dfb6' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.halloween-themes .segment-33:nth-child(6n+3) .halloween-cat--inner::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='24' ry='24' stroke='%23b02418' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.halloween-themes .segment-33:nth-child(6n+4) .halloween-cat--inner::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='24' ry='24' stroke='%23f0ccb0' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.halloween-themes .segment-33:nth-child(6n+5) .halloween-cat--inner::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='24' ry='24' stroke='%2368349a' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.halloween-themes .segment-33:nth-child(6n+6) .halloween-cat--inner::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='24' ry='24' stroke='%23163bb9' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.halloween-themes .halloween-cat--text {
	right: 15px;bottom: 15px;left: 15px;
	border-radius: 9px;
}

.halloween-cats.halloween-themes .segment-33:nth-child(6n+1) .halloween-cat--text {
	background-color: #a4c1e2;
}

.halloween-cats.halloween-themes .segment-33:nth-child(6n+2) .halloween-cat--text {
	background-color: #c9dfb6;
}

.halloween-cats.halloween-themes .segment-33:nth-child(6n+3) .halloween-cat--text {
	background-color: #b02418;
}

.halloween-cats.halloween-themes .segment-33:nth-child(6n+4) .halloween-cat--text {
	background-color: #f0ccb0;
}

.halloween-cats.halloween-themes .segment-33:nth-child(6n+5) .halloween-cat--text {
	background-color: #68349a;
}

.halloween-cats.halloween-themes .segment-33:nth-child(6n+6) .halloween-cat--text {
	background-color: #163bb9;
}


/*
|--------------------------------------------------------------------------
| Shop > Filters
|--------------------------------------------------------------------------
*/
.filter-subcategories .filter-title, #sidebar--mbl-filters {
	display: none;
}

.grid-filters-subcategories {
	display: block;
}

.filter-subcategories {
	display: none;
}

.filters .sidebar__segment {
	padding: 0;
}

.filters__title {
	height: 64px;
	padding: 0 15px;
}

.filters__title svg {
	display: none;
	flex-shrink: 0;
	fill: #666;
	width: 11px;
	height: 7px;
}

#mbl-filters, .filter-title {
	padding: 15px;
	cursor: pointer;
}

#mbl-filters span, .filter-title span {
	display: block;
	position: relative;
	flex: 1;
}

.filter-title svg {
	width: 11px;
	height: 7px;
	flex-shrink: 0;
	fill: #666666;
}

.filter-open .filter-title svg {
	transform: rotate(-180deg)
}

.filter ul {
	padding: 0 15px 15px 15px;
}

.filter--links a {
	position: relative;
	padding: 5px 0 4px 20px;
	font-weight: 700;
	font-size: 13px;
}

.filter--links a:before {
	content: '';
	position: absolute;
	height: 14px;
	width: 14px;
	top: 6px;
	left: 0;
	background-color: #fff;
	border: 2px solid #dde2e5;
}

.filter--links .filter-selected a {
	color: #1e1e1e;
}

.filter--links .filter-selected a:before {
	background: url(/images/style/party/icon-tick-2x.png) no-repeat center center #5d3385;
	background-size: 10px 8px;
	border: none;
}

#slider-range.ui-widget-content {
	background-color: #ffffff;
	height: 8px;
	border: 1px solid #e7e7e7;
	margin: 0 8px;
}

#slider-range .ui-widget-header {
	background-color: #e7e7e7;
	/*transition: left 300ms ease, width 300ms ease;*/
}

#slider-range .ui-slider-handle {
	height: 14px;
	width: 14px;
	border-radius: 14px;
	background-color: #5d3385;
	border: none;
	color: #666666;
	font-weight: 700;
	cursor: pointer;
	/*transition: left 300ms ease;*/
}

#slider-range .ui-slider-handle:last-of-type .tooltip {
	right:0!important;
}

#price_filter {
	padding: 14px 0 0 0;
}

#price_filter .tooltip {
	float: left;
	font-weight: 700;
	margin-bottom: 5px;
}

#price_filter #range-tooltip-2 {
	float: right;
}

#price_submit {
	clear: both;
}

.filter-swatch {
	padding: 0 2px 2px 0;
}

.filter-swatch--inner {
	position: relative;
	border: 1px solid #dde2e5;
	padding: 1px;
	height: 30px;
	border-radius: 3px;
	transition: background 300ms ease;
	background: url(/images/style/party/icon-swatch-tick.png) no-repeat center right 8px;
}

.filter-swatch.sel .filter-swatch--inner {

}

.filter-swatch.sel .filter-swatch--swatch {
	background: url(/images/style/party/icon-swatch-tick.png) no-repeat center;
    background-size: 12px;
}

.filter-swatch--swatch {
	position: absolute;
	top: 2px;
	left: 2px;
	bottom: 2px;
	width: 24px;
	background-color: #e7e7e7;
	border-radius: 3px;
	border: 2px solid rgba(0,0,0,.2);
}



/*
|--------------------------------------------------------------------------
| Shop > Navtrail
|--------------------------------------------------------------------------
*/
.shop--navtrail {
}

.shop--navtrail .breadcrumb-trail {
	max-width: 60%;
	float: left;
}

.sort-by-container {
	padding: 0 0 0 16px;
}

.sort-by {
	position: relative;
}

.sort-by label {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #343434;
	text-transform: none;
}

.sort-by .select2-container--default .select2-selection--single .select2-selection__rendered,
.sort-by .select2-container .select2-selection--single {
	height: 38px;
}

.sort-by .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 8px;
	top: 16px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.02 8.24'%3E%3Ctitle%3Earrow-d%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath fill='%23343434' d='M7.56,8,13.8,1.77a.77.77,0,0,0,0-1.08L13.34.23a.77.77,0,0,0-1.08,0L7,5.47,1.77.22A.77.77,0,0,0,.68.22L.22.68a.77.77,0,0,0,0,1.08L6.47,8A.77.77,0,0,0,7.56,8Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center;
}

.sort-by .select2-selection__arrow b {
	display: none;
}

.sort-by .select2-container--default .select2-selection--single .select2-selection__rendered {
	display: flex;
	align-items: center;
	font-size: 13px;
	line-height: 1.25;
	padding-right: 70px;
	border: 2px solid #d9d9d9;
	border-radius: 4px;
}

.sort-by .select2-container--default .select2-selection--single {
	background-color: transparent;
}

.shop-topbar {
	border-bottom: 2px solid #d9d9d9;
	padding-bottom: 10px;
}
.shop-topbar--filter {
	width: auto;
}
.shop-topbar .filters__title {
	display: none;
}
.shop-topbar .filter_option {
	margin-right: 4px;
	margin-bottom: 8px;
	width: 150px;
}
.shop-topbar .filter_option_title {
	font-size: 13px;
	line-height: 1.25;
	font-weight: 600;
	color: #e71f25;
	margin-bottom:8px;
}
.shop-topbar .filter_option .filter {
	position: relative;
}
.shop-topbar .filter_option .filter ul {
	padding: 0;
	position: absolute;
	top: 100%;
	max-height: 120px;
    overflow-y: auto;
	background-color: #fff;
	z-index: 1;
	min-width: 100%;
	width: max-content;
	max-width: 250px;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
	display: none;
}
.shop-topbar .filter-title {
	border: 2px solid #d4d4d4;
	border-radius: 4px;
	font-size: 13px;
	line-height: 1.1;
	padding: 10px;
}
.shop-topbar .filter-sel .filter-title {
	border-color: #e71f25;
	color: #e71f25;
}
.shop-topbar .filter-title svg {
	margin-top: 1px;
	margin-left: 10px;
	height: 8px;
	width: auto;
	fill: #343434;
}
.shop-topbar .filter-sel .filter-title svg {
	fill:  #e71f25;
}
.shop-topbar .filter_option .filter:not(.filter--slider):not(.filter-colors) ul {
	padding: 10px 0;
}
.shop-topbar .filter_option .filter:not(.filter--slider):not(.filter-colors) ul li {
	padding: 2px 10px;
}
.shop-topbar .filter_option .filter.filter--links a {
	padding: 0 0 0 20px;
	line-height: 1.1;
	font-weight: 600;
}
.shop-topbar .filter_option .filter.filter--links a::before {
	top: 50%;
	transform: translateY(-50%);
}
.shop-topbar .filter.filter--slider ul {
	padding: 20px 10px 10px;
}
.shop-topbar .filter.filter-colors ul {
	padding: 10px;
}
.shop-topbar .filter-swatch {
	width: 32px;
}
.shop-topbar .filter-swatch--inner {
	height: 30px;
}
.shop-topbar .filter-swatch--swatch {
	width: 24px;
}
/*

.shop-topbar .sidebar__segment {
	border-bottom: 0;
	margin-right: 4px;
	width: 200px;
}

.shop-topbar--filter {
	flex: 1;
	padding-top: 16px;
}
.shop-topbar--filter .filters {
	display: flex;
}
.shop-topbar .filter-title {
	border: 2px solid #d9d9d9;
	padding: 7px 15px;
	border-radius: 4px;
}*/

.radio-opts {
	display: flex;
	position: relative;
}
.radio-opts > input[type="radio"] {
	opacity: 0;
	position: absolute;
	width: 0;
}
.radio-opts > label {
	display: flex;
	align-items: center;
	padding: 0 20px;
	font-size: 13px;
	border: 2px solid #d9d9d9;
	color: #5d3385;
	border-radius: 4px;
	cursor: pointer;
	transition: ease-in-out .2s;
	height: 38px;
	text-transform: none!important;
	font-weight: normal!important;
	margin-right: 4px;
}
.radio-opts > input[type="radio"]:not(:checked) + label:hover {
	border-color: #e3e3e3;
}
.radio-opts > input[type="radio"]:checked + label {
	background-color: #ebebeb;
	border-color: #ebebeb;
	color: #222;
}



/*
|--------------------------------------------------------------------------
| Shop > Category Page > Category Display
|--------------------------------------------------------------------------
*/
.product-grid {
	margin-left:-15px;
}

.product-grid--item {
	padding: 0 0 15px 15px;
}

.product-inner--image {
	padding-bottom: 15px;
}

.product-image__link,
.product-inner--image img {
	display: block;
	width: 100%;
}
a.product-image__link {
    display: flex;
    justify-content: center;
}
.product-inner--image img {
	/*border: 1px solid #e9e9e9;*/
	max-width: 264px;
}

.product-grid--item-inner {
	position: relative;
	background-color: #fff;
	overflow: hidden;
	border: 1px solid #ececec;
    padding: 15px;
}
.product-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-inner .prod_button {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.product-inner--price-container .prod_button {
    justify-content: flex-end;
}

.listing-message .message {
    margin: -25px -35px!important;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    padding: 20px 45px;
}

.product-inner--titles {

}
.product-inner--title {
	font-size: 15px;
	color: #2a2a2a;
	font-weight: 600;
}

.product-inner--subtitle,
.product-inner--row {
	/*padding: 0 0 8px 0;*/
}

.product-inner--subtitle {
	font-size: 13px;
}

.product--option-names {
	display: block;
	color: #444;
}

.product--option-name {
	margin: 0 8px 0 0;
}

.product-inner--swatches {
	float: right;
	width: 50%;
}

.product-inner--swatch {
	float: right;
	height: 18px;
	width: 18px;
	margin: 1px 1px 0 0;
	border-radius: 2px;
	border: 2px solid #e7e7e7;
}

.product-inner--price-container {
	margin: 12px 0 0;
}

.product-price {
	min-height:26px;
	font-weight: 700;
}

.product-inner--price-container .product-price {
	min-height: unset;
}

.product-price-web {
	font-weight: normal;
	font-size: 13px;
	color: #2a2a2a;
}

.price-sale {
    color: #b43e46;
    font-size: 18px;
    font-weight: 800;
}

.product-inner--price-container .product-price-web {
	min-height: unset;
	font-size: 18px;
	font-weight: 600;
}

.product-price-rrp {
	font-size: 13px;
	font-weight: normal;
	text-transform: uppercase;
	text-decoration: line-through;
	margin-left: 5px;
}

.product-inner .stock-status {
    margin-bottom: 10px;
}

.product-inner--price-container .stock-status {
	margin: 4px 0 0;
	text-align: left;
}

.on-offer-badge {
	position: absolute;
	top: 10px; left: 10px;
	width: 56px;
	height: 56px;
	border-radius: 28px;
	background-color: #5d3385;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.1em;
	font-weight: 700;
	text-align: center;
	pointer-events: none;
}

.comparison-bar {
	display: none;
	position: fixed;
	right: 0; bottom: 0; left: 0;
	background-color: #666666;
	padding: 10px 30px;
	z-index: 60;
	color: #fff;
}

.comparison-bar--title {
	display: block;
	margin: 11px 50px 0 0;
	width: 160px;
	font-weight: 700;
	font-size: 16px;
	line-height: 14px;
	float: left;
}

.animate .comparison-bar--product:last-child {
    -webkit-animation: comparisionProductEntrance .5s;
	animation: comparisionProductEntrance .5s;
}

@-webkit-keyframes comparisionProductEntrance {
	0%   { opacity: 0;transform: translateX(10px); }
	100% { opacity: 1;transform: translateX(0px); }
}
@-moz-keyframes comparisionProductEntrance {
	0%   { opacity: 0;transform: translateX(10px); }
	100% { opacity: 1;transform: translateX(0px); }
}
@-o-keyframes comparisionProductEntrance {
	0%   { opacity: 0;transform: translateX(10px); }
	100% { opacity: 1;transform: translateX(0px); }
}
@keyframes comparisionProductEntrance {
	0%   { opacity: 0;transform: translateX(10px); }
	100% { opacity: 1;transform: translateX(0px); }
}

.comparison-bar--products {
	overflow: hidden;
}

.comparison-bar--product {
	padding: 0 4px 0 0;
}

.comparison-bar--product-inner {
	position: relative;
	background-color: rgba(0,0,0,0.3);
	height: 50px;
}

.comparison-bar--product-image {
	float: left;
}

.comparison-bar--product-title-cont {
	display: block;
	padding: 10px 14px;
	font-weight: 700;
	float: none;
	overflow: hidden;
}

.comparison-bar--product-title {
	margin: 0 4px 0 0;
	float: left;
	height: 20px;
}

.comparison-bar--product-option-name {
	display: none;
	opacity: 1;
	font-size: 11px;
	padding: 2px 6px;
	margin: 0 4px 0 0;
	background: rgba(0,0,0,0.2);
	border-radius: 2px;
	white-space: nowrap;
	float: left;
}

.comparison-bar--product-option-name:empty {
	display: none;
}

.comparison-bar--product-overlay {
	display: none;
	cursor: pointer;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(30, 30, 30, 0.9);
	z-index: 10;
}

.comparison-bar--product-inner:hover .comparison-bar--product-overlay {
	display: block;
}

.comparison-bar--product-overlay-inner {
	display: table;
    width: 100%;
    height: 100%;
	text-align: center;
}

.comparison-bar--product-overlay-inner .dblc {
	vertical-align: middle;
	font-weight: 700;
	font-size: 12px;
}


.comparison-bar--product-overlay-inner span {
	padding: 2px 0 0 20px;
}

.comparison-bar--loading {
	display: none;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(30, 30, 30, 0.9);
	color: #fff;
	text-align: center;
}

.comparison-bar.loading .comparison-bar--loading {
	display: block;
}



/*
|--------------------------------------------------------------------------
| Shop > Category Page > Category Display Hover
|--------------------------------------------------------------------------
*/
@-webkit-keyframes fadeIn {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
@-moz-keyframes fadeIn {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
@-o-keyframes fadeIn {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes fadeIn {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}

.product-grid--item-inner:hover .product-overlay {
	animation: 300ms fadeIn forwards;
}

.product-overlay {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	overflow: hidden;
	z-index: 20;
	opacity: 0;
	transition: transform 300ms ease;
}

.product-overlay-top {
	position: absolute;
	color: #c0bfbf;
	height: 34px;
	padding: 10px;
	top: 0;	right: 0; left: 0;
	z-index: 999;
}

.product-overlay-top--button {
	float: left;
	background-color: #5d3385;
	border-radius: 5px;
	padding: 4px 5px 3px;
	font-size: 11px;
	color: #fff;
	cursor: pointer;
	transition: background .3s ease;
}

.product-overlay-top--button:last-child {
	float: right;
}

.product-overlay-top--button:hover {
	background-color: #02a1c7;
}

.product-overlay-content {
	position: absolute;
	top: 34px; right: 0; bottom: 80px; left: 0;
}

.product-overlay-content-inner {
	padding: 20px;
	text-align: center;
}

.product-overlay--title {
	padding: 6px 0 0 0;
}

.product-overlay--title a {
	color: #fff;
	text-align: center;
	font-size: 15px;
}

.product-overlay-bottom {
	position: absolute;
	bottom: 0; left: 0; right: 0;
}



/*
|--------------------------------------------------------------------------
| Category Model
|--------------------------------------------------------------------------
*/
.modal {
	display: none;
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 100;
}

.modal--inner {
	width: 100%;
	max-width: 1100px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #e7e7e7;
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

.modal--open .modal--inner {
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.modal--close {
	position: absolute;
	top: -55px;
	right: 0;
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	cursor: pointer;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	transform: translateY(30px);
	transition: transform 0.4s cubic-bezier(0.25, 0, 0.25, 1.75) 1s;
}

.modal--open .modal--close {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
}


.modal--backdrop {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(0, 0, 0, 0.85);
	transition: background-color 300ms ease;
}

.modal--backdrop:hover {
	cursor: pointer;
}

.modal--inner {
	transition: opacity 300ms ease;
}

.modal--content {
	overflow: hidden;
}

.modal--image {
	float: right;
}

.modal--image img {
	width: 100%;
}

.listing--info {
	padding: 30px 30px 30px 30px;
	border: 4px solid #e7e7e7;
	border-top: 0;
	border-bottom: none;
	background: rgb(238,238,238);
	background: -moz-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(238,238,238,1) 0%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#ffffff',GradientType=0 );
}

.listing--other {
	float: right;
}

.listing--review {
	text-align: right;
	padding: 8px 0;
}

.listing--price {
	float: left;
}

.listing--price strong {
	display: block;
	font-weight: 700;
	font-size: 30px;
	color: #1e1e1e;
}

.listing--price span {
	display: block;
	font-weight: 700;
	font-size: 13px;
	color: #666666;
}

.listing--points {
	color: #5d3385;
	font-weight: 700;
	font-size: 13px;
}

.listing--points span {
	color: #1e1e1e;
}

.listing-pricebreaks table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	margin-top: 20px;
}

.listing-pricebreaks th,
.listing-pricebreaks td {
	border: 1px solid #aaa;
	padding: 5px;
}

.listing-pricebreaks th {
	text-align: left;
}

.modal--button {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 18px;
}

.modal--button-details {
	background-color: #b34834;
	font-size: 12px;
}

.modal-overview--cont {
	padding: 30px 30px 0;
}

.modal-overview {
	height: 510px;
	width: 420px;
	padding: 0 0 124px 0;
	overflow: scroll;
}

.modal-action {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 420px;
}

.modal--view-full-details {
	display: block;
	width: 100%;
	background-color: #01a4cd;
	color: #fff;
	padding: 11px 10px;
	font-weight: 700;
	font-size: 12px;
	text-align: center;
}

.modal--view-full-details:hover {
	background-color: #0284a5;
	color: #fff;
}



/*
|--------------------------------------------------------------------------
| Listing
|--------------------------------------------------------------------------
*/
.listing-mobile--title {
	display: none;
}
.listing-side {
	position: relative;
	width: 46.5%;
	float: right;
	z-index: 2;
}

.listing-main {
	position: relative;
	width: 53.5%;
	float: left;
	z-index: 2;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.listing-side--inner {
	position: relative;
	width: 100%;
	float: right;
}

.listing-main {
	padding-right: 50px;
}
.listing-main--inner {
	width: 100%;
	float: left;
}
.listing-main--inner .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-indent: -1000px;
	width: 50px;
	height: 50px;
	background-color: #ebebeb;
	border-radius: 100px;
	overflow: hidden;
	z-index: 1;
	transition: ease-in-out .2s;
}
.listing-main--inner .slick-arrow:hover {
	background-color: #cfcfcf;
}
.listing-main--inner .slick-arrow::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-size: cover;
	background-repeat: no-repeat;
	width: 16px;
	height: 28px;
}
.listing-main--inner .slick-arrow.slick-prev {
	left: 0;
}
.listing-main--inner .slick-prev::after {
	margin-left: -1px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.24 14.02'%3E%3Ctitle%3Earrow-l%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath fill='%23e71f25' d='M0,7a.76.76,0,0,0,.22.54L6.47,13.8a.77.77,0,0,0,1.08,0L8,13.34a.77.77,0,0,0,0-1.08L2.77,7,8,1.77A.77.77,0,0,0,8,.68L7.55.22a.77.77,0,0,0-1.08,0L.22,6.46A.76.76,0,0,0,0,7Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.listing-main--inner .slick-arrow.slick-next {
	right: 0;
}
.listing-main--inner .slick-next::after {
	margin-left: 1px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.24 14.02'%3E%3Ctitle%3Earrow-r%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath fill='%23e71f25' d='M8,6.46,1.77.22A.77.77,0,0,0,.69.22L.23.68a.77.77,0,0,0,0,1.08L5.47,7,.22,12.25a.77.77,0,0,0,0,1.08l.46.46a.77.77,0,0,0,1.08,0L8,7.55A.77.77,0,0,0,8,6.46Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.listing-overview--top-inner h1 {
	margin-bottom: 5px;
	line-height: 50px;
	text-align: left;
}
.listing-overview--top-inner h2, .listing-mobile--title h2 {
	font-size: 21px;
	font-weight: normal;
	color: #e71f25;
	margin-bottom: 0;
	width: 100%;
}

.listing-details {
	padding: 20px 0 0 0;
}

.form-options {
	position: relative;
	padding: 0 0 15px 0;
	z-index: 1;
	background-color: #fff;
}
.listing-price--outer {
    text-align: left;
    justify-content: flex-start;
}
.listing-price--outer > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.listing-price--outer .stock {
    width: 100%;
    text-align: left;
    padding: 0;
}
.listing-price--outer .stock-status {
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 400;
    text-align: left;
}
.listing-price {
	display: block;
    font-weight: 700;
    font-size: 20px;
    color: #2d2d2d;
    text-align: left;
}
.listing-notify {
    text-align: left;
	display: flex;
    align-items: center;
}
.listing-notify .button {
    width: 100%;
    margin-top: 14px;
    padding: 14px;
    font-size: 14px;
}
.listing-buy {
    justify-content: flex-start;
	border-bottom: 2px solid #051923;
    padding-bottom: 20px;
}

.listing-rrp,
.listing-save {
	display: inline-block;
	font-size: 15px;
	color: #abadae;
}
.listing-rrp {
	margin: 3px 0;
}
.listing-rrp > span {
	text-decoration: line-through;
}

.listing-save {
	color: #51ac5c;
	text-decoration: none;
}

.input-listing-qty {
	display: flex;
}
.input-listing-qty span {
	position: relative;
	background-color: #ebebeb;
	width: 40px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px auto;
	border-radius: 3px;
	transition: ease-in-out .2s;
}
.input-listing-qty span:hover {
	background-color: #ccc;
}
.input-listing-qty span.input-qty--less {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.01 4.04'%3E%3Ctitle%3Eminus%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath fill='%232a2a2a' d='M16,4V0H0V4Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	margin: 3px -43px 3px 0;
}
.input-listing-qty span.input-qty--more {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.01 15.97'%3E%3Ctitle%3Eplus%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpolygon fill='%232a2a2a' points='16.01 5.97 10.03 5.97 10.03 0 5.98 0 5.98 5.97 0 5.97 0 10.01 5.98 10.01 5.98 15.97 10.03 15.97 10.03 10.01 16.01 10.01 16.01 5.97'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	margin: 3px 0 3px -43px;
}
.input.input-listing-qty input[type="number"] {
	padding: 10px 47px;
    text-align: center;
    border: 2px solid #d9d9d9;
    border-radius: 4px;
    width: 150px;
}

.rating-star {
	width: 20px;
	height: 18px;
	display: inline-block;
	margin: 0 1px;
}

.rating-star svg {
	width: 20px;height: 18px;
}

.rating-star svg {
	fill: #ffd700;
}

.rating-star--empty svg {
	fill: #bbbbbb;
}

.listing-personalise {
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	color: #1e1e1e;
	background-color: #dde2e5;
	line-height: 24px;
	padding: 3px 0px;
	cursor: pointer;
	transition: background 300ms ease;
}

.listing-personalise:hover {
	background-color: #e7e7e7;
}

.listing-personalise.disabled {
	opacity: 0.4;
}

.listing-subscribe {
    background-color: rgba(0,0,0,0.05)
}

.listing-subscribe__bottom {
	background: rgba(0,0,0,0.1);
	padding: 6px 10px;
}

.listing-subscribe__inner {
    padding: 22px 22px 18px 22px
}

.listing-subscribe .percent {
    opacity: 0.4;
    font-size: 13px;
    padding: 3px 0 0 0
}

.listing-subscribe__button.open {
    background-color: #fa5400;
    color: #fff;
	border-radius: 0px;
	border: 1px solid #fa5400;
}

.listing-subscribe__button span {
	padding: 0 0 0 18px;
}

.listing-subscribe__button.open span {
	background: url(/images/style/party/icons/refresh@2x.png) center left / 12px 12px no-repeat;
}

.listing-offer {
	padding: 20px;
	margin: 10px 0 0 0;
	background: #37af56;
	background-size: 515.5px 511.5px;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	border-radius: 2px;
}

.listing-offer-product {
	position: relative;
	margin: 15px 0 0 0;
	background-color: rgba(0,0,0,0.1);
}

.listing-offer-details {
	padding: 10px;
	overflow: hidden;
}

.listing-offer--image {
	float: left;
}

.listing-offer--image img {
	display: block;
}

.listing-offer--price {
	position: absolute;
	bottom: 10px;
	left: 92px;
	font-size: 18px;
	opacity: 0.8;
}

.listing-deadline {
	margin: 10px 0 25px 0;
}

.listing-deadline--details {
	text-align: center;
	float: left;
}

.listing-deadline--title ~ .listing-deadline-doughnuts {
	padding-top: 8px;
}

.listing-deadline--title {
	font-size: 12px;
	color: #666666;
	text-transform: uppercase;
}

.listing-deadline--subtitle {
	color: #5d3385;
}

.listing-deadline--date {
	font-size: 19px;
	color: #1e1e1e;
}

.pulse-animation {
/*
	-webkit-animation: pulse 1s infinite;
	-moz-animation: pulse 1s infinite;
	-o-animation: pulse 1s infinite;
	animation: pulse 1s infinite;
*/
}

.listing-deadline-doughnuts {
	float: right;
}

.listing-deadline-doughnut {
	position: relative;
	width: 60px; height: 60px;
	float: left;
	transition: transform 1s ease;
	margin: 0 0 0 10px;
}

.listing-deadline-doughnut--inner {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 50px;
	text-align: center;
	font-weight: 700;
	color: #1e1e1e;
}

.listing-deadline-doughnut strong {
	display: block;
	font-size: 21px;
	position: relative;
	top: 8px;
	color: #1e1e1e;
}

.listing-deadline-doughnut span {
	display: block;
	font-size: 11px;
	position: relative;
	top: 4px;
}

.listing-deadline-doughnuts svg {
  width: 60px; height: 60px;
  -webkit-transform: rotate(-89.9deg);
  transform: rotate(-89.9deg);
  background: #dde2e5;
  border-radius: 50%;
}

.listing-deadline-doughnuts circle {
	position: relative;
	fill: #5d3385;
	stroke: #dde2e5;
	stroke-width: 6px;
	stroke-dasharray: 38 100; /* for 38% */
	transition: stroke-dasharray 1s ease;
}

.listing-deadline-doughnut:hover circle {
	stroke-dasharray: 100 100; /* for 100% */
}

.listing-side-blocks > div.listing-side-block--del:first-child:last-child {
    max-width: 250px;
}

.listing-side-block {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	color: #5d3385;
	padding: 10px;
	border: 1px solid #ececec;
}

.listing-side-block > svg {
	margin-bottom: 5px;
	fill: #5d3385;
}
.listing-side-block.trustpilot-widget-container .trustpilot-widget-logo {
	margin-bottom: 5px;
}
.listing-side-block.trustpilot-widget-container iframe {
	width: 100%!important;
}
.listing-side-block .listing-rating {
	margin-bottom: 2px;
}

.listing-share {
	padding: 25px;
}

.listing-share .addthis_inline_share_toolbox {
	margin-bottom: -5px;
}
.listing-share .at-share-btn {
	margin: 0!important;
	padding: 2px!important;
}

.listing-image {
	position: relative;
}

.listing-image__brand {
	position: absolute;
	top: 15px;
	right: 15px;
}

.listing-image__link {
	display: block;
	position: relative;
}

.listing-image__img {
	display: block;
}

.listing-image__link:hover .listing-image__zoom__svg {
	height: 40px;
	width: 40px;
}

.listing-image__zoom {
	position: absolute;
	height: 50px;
	width: 50px;
	bottom: 30px;
	left: 30px;
}

.listing-image__zoom__svg {
	fill: #5d3385;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 35px;
	width: 35px;
	transition: height 200ms ease, width 200ms ease;
	transform: translate(-50%, -50%);
}

.stock {
	width:64%;
	text-align: right;
	padding:12px 0 24px 0;
}

#listing_options {
	padding: 12px 0 0 0;
}
.options-loading {
	display: none;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background: rgba(255,255,255, 0.6);
	z-index: 9999;
}

.options-loading > .dbl {
	height: 100%;
}

.options-loading .dblc {
	vertical-align: middle;
}

.options_container_radio {
	position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 5px;
    margin-bottom: 0;
    max-height: 350px;
    overflow: auto;
}
.options_container_radio::after {
	content: '';
	position: absolute;
	height: 1px;
	background-color: #E3E3E3;
	bottom: 0; left: 0; right: 10px;
}
.options_container_radio + .options_text {
    margin-top: 25px;
    text-align: left;
}
.options-radios .cf {
	display: flex;
	padding: 10px 0 0 0;
	margin: 0 0 10px;
	flex-wrap: wrap;
}

.option-radio {
	flex: 1;
    min-width: 50%;
}

.option-radio:hover .option-radio__inner {
	opacity: .8;
}

.option-radio__inner {
	position: relative;
    padding: 8.5px 45px 8.5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
    cursor: pointer;
    color: #5d3385;
    transition: ease-in-out .2s;
    border: 1px solid #E3E3E3;
}
.option-radio__inner::before, .option-radio__inner::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.option-radio__inner::before {
    right: 15px;
    background-color: #F8F8F8;
    height: 20px;
    width: 20px;
    border-radius: 4px;
    border: 1px solid #e9e8e8;
}

.option-radio__inner strong {
	font-size: 13px;
	text-transform: capitalize;
	font-weight: 600;
}
.option-radio__inner small {
	display: block;
	margin-top: -2px;
	font-size: 11px;
}

.option-radio.checked .option-radio__inner {
	background: #5d3385;
	border-color: #5d3385;
	color: #fff;
	pointer-events: none;
	opacity: 1!important;
}
.option-radio.checked .option-radio__inner::before {
	background-color: #4d2870;
	border-color: #4d2870;
	background-image: url('data:image/svg+xml,<svg width="10" height="8" viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.76764 0.634387C9.45824 0.324573 8.95582 0.324768 8.64601 0.634387L3.59787 5.68272L1.35419 3.43906C1.04438 3.12924 0.542174 3.12924 0.23236 3.43906C-0.0774534 3.74887 -0.0774534 4.25107 0.23236 4.56089L3.03684 7.36537C3.19165 7.52017 3.39464 7.59777 3.59765 7.59777C3.80067 7.59777 4.00386 7.52037 4.15867 7.36537L9.76764 1.7562C10.0775 1.4466 10.0775 0.944181 9.76764 0.634387Z" fill="white"/></svg>'); 
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px auto;
}
.options_container_radio + .listing-checkboxes--container {
	margin-top: 25px;
}

.product-inner--price-container .multibuy-options--container {
	min-width: 100%;
}

.product-sale-sash, .listing-sale-sash {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b62f3f;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFF;
	pointer-events: none;
    z-index: 1;
}
.product-sale-sash {
	height: 60px;
    width: 60px;
	font-size: 15px;
}
.listing-sale-sash {
	height: 80px;
    width: 80px;
	font-size: 18px;
}

.listing-options--multibuy {
    margin-top: 20px;
}

.product-inner--price-container .listing-options--multibuy {
    margin-top: 0;
}

.options-multibuy--container {
    display: flex;
    justify-content: center;
	margin: 0 -10px 0 0;
	flex-wrap: wrap;
}
.options-multibuy {
	padding: 0 10px 10px 0;
}
.options-multibuy--inner {
    border: 1px solid #00b050;
    color: #00b050;
    border-radius: 4px;
    cursor: pointer;
	display: flex;
	align-items: center;
	padding:5px 10px;
}
.sel > .options-multibuy--inner {
    background-color: #00b050;
    color: #fff;
}
.options-multibuy--qty {
    font-weight: 600;
    margin-right: 3px;
}

.product-inner--price-container .options--multibuy {
    padding: 0 0 5px 0;
}

.listing-options--multibuy .options-multibuy {
    /* width: 100%;
    max-width: 280px; */
	flex: 1 0 33.3333%;
    font-weight: 600;
    font-size: 15px;
}
.listing-options--multibuy .options-multibuy--inner {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
	flex-wrap: wrap;
	cursor: default;
}

.option-radio__inner input {
	display: none;
}

.opt_radio {
	width:initial;
	vertical-align: middle;
    margin: 0 6px .25em 10px;
}

.options_text {
	width: 100%;
    color: #051923;
    padding: 0 0 8px;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid #051923;
    padding-bottom: 12px;
    margin: 10px 10px 15px 0;
    text-align: left;
}

.options_text.selection-message {
	margin: 20px auto 0;
    padding: 10px;
    background-color: #5d3385;
    color: #fff;
    max-width: 420px;
}

.options_container_radio.grid--10 > .options_text {
    margin: 10px 0 6px;
    text-align: left;
}

.listing-options-required {
	width:100%;
	background:#414141;
	padding:15px 20px;
	color:#fff;
	border-radius:3px;
    font-weight: 700;
	text-align: center;
	position: absolute;
	margin-bottom:15px;
	z-index:1000;
	top:-60px;
}

.listing-options-required:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-top-color: #414141;
	border-width: 10px;
	margin-left: -10px;
}

.button.heart {
	margin: 0 0 0 4px;
	display: block;
	width: 41px;
	height: 41px;
	padding: 0;
	background-image: url(/images/style/party/icon-heart-white-2x.png);
	background-size: 23px 18px;
	cursor: pointer;
	transition: transform 300ms cubic-bezier(0.25, 0, 0.25, 1.75);
}

.button.heart:hover {
	transform: scale(1.1);
}

.listing-checkboxes--container .options_text {
    margin-top: 25px;
}
.listing-checkboxes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0 -5px;
    padding: 0!important;
}
.listing-checkbox {
    display: flex;
    padding: 10px 20px;
    min-height: 36px;
    font-size: 15px;
    align-items: center;
    width: 100%;
    max-width: unset;
    cursor: pointer;
    flex: 1 0 50%;
    text-align: left;
    border-top: 1px solid #f1f1f1;
}
*:not(:first-child) + .listing-checkboxes--container {
	margin-top: 0;
}
*:not(:first-child) + .listing-checkboxes--container .listing-checkbox:first-child {
	border-top: 0;
}
.listing-checkbox > img {
    width: 75px;
}

.listing-checkbox.active {
	background-color: #f1f1f1;
}

.listing-checkbox--title {
    font-size: 15px;
    color: #00b050;
    font-weight: 600;
    padding: 0 0px 2px 0;
}

.listing-checkbox input,
.listing-checkbox span {
	flex-shrink: 0;
}

.listing-checkbox--info {
	margin-left: 15px;
}

.listing-checkbox--checkbox {
	position: relative;
    height: 35px;
    width: 35px;
    border: 2px solid #029445;
    border-radius: 4px;
    margin: 0 15px 0 0;
    flex-shrink: 0;
    background: #fff;
}

.listing-checkbox--price {

	color: #0d0d0d;
	font-weight: 700;
	margin: 0;
	flex-shrink: 0;
	font-size: 15px;
}

.listing-checkbox input {
	display: none;
}

.listing-checkbox input:checked + .listing-checkbox--checkbox:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 19px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='19px' height='14px'%3E%3Cpath fill-rule='evenodd' fill='%2300b050' d='M15.572,0.007 L6.621,9.007 L2.935,5.337 L0.478,7.784 L6.621,13.989 L18.028,2.541 L15.572,0.007 Z'/%3E%3C/svg%3E");
}


.listing-swatches {
	display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.listing-swatch {
	padding: 0 10px 10px 0;
	width: 16.666666%;
	max-width: 75px;
}

.listing-swatch__inner {
	position: relative;
    height: 0;
    padding: 0px 0 70% 0;
    cursor: pointer;
    border: 1px solid #c0c0c0;
}

.listing-swatch__content {
	position: absolute;
    top: 5px; right: 5px; bottom: 5px; left: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0;
}

.listing-swatch__content::after {
	content: '';
    position: absolute;
    top: 1px; right: 1px; bottom: 1px; left: 1px;
    border: 2px solid transparent;
}

.listing-swatch.sel .listing-swatch__content, .listing-swatch__inner:hover .listing-swatch__content {
    border-color: #2d2d2d;
}


.listing-swatch.sel .listing-swatch__content::after,
.listing-swatch__inner:hover .listing-swatch__content::after {
	border-color: #fff;
}

.listing-description ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: 0;
}
.listing-description ul li {
	width: fit-content;
}

.listing-related--products .product-grid {
	display: flex;
	justify-content: center;
}

.listing-comments-response {
	background-color: #e7e7e7;
	margin: 15px 0 0 0;
	padding: 20px;
}

.listing-reviews {
	margin-top: 40px;
}
.listing-reviews--slider {
	text-align: center;
	font-size: 13px;
	line-height: 18px;
	color: #2a2a2a;
}
.listing-reviews--slider .slick-arrow {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
	z-index: 1;
	width: 40px;
    height: 100%;
	background-color: #f1f1f1;
	text-indent: -1000px;
	overflow: hidden;
	background-position: center;
    background-repeat: no-repeat;
	background-size: 14px auto;
	transition: ease-in-out .2s;
}
.listing-reviews--slider .slick-arrow:hover {
	background-color: #ddd;
}
.listing-reviews--slider .slick-arrow.slick-prev {
	left: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.24 14.02'%3E%3Ctitle%3Earrow-l%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath fill='%23e71f25' d='M0,7a.76.76,0,0,0,.22.54L6.47,13.8a.77.77,0,0,0,1.08,0L8,13.34a.77.77,0,0,0,0-1.08L2.77,7,8,1.77A.77.77,0,0,0,8,.68L7.55.22a.77.77,0,0,0-1.08,0L.22,6.46A.76.76,0,0,0,0,7Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.listing-reviews--slider .slick-arrow.slick-next {
	right: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.24 14.02'%3E%3Ctitle%3Earrow-r%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath fill='%23e71f25' d='M8,6.46,1.77.22A.77.77,0,0,0,.69.22L.23.68a.77.77,0,0,0,0,1.08L5.47,7,.22,12.25a.77.77,0,0,0,0,1.08l.46.46a.77.77,0,0,0,1.08,0L8,7.55A.77.77,0,0,0,8,6.46Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.listing-reviews--slider:not(.slick-no-arrow) {
	padding: 0 40px;
}
.listing-reviews--slider .slick-track {
	display: flex;
}
.listing-reviews--slider.slick-no-arrow .slick-track {
	display: flex;
	justify-content: center;
	width: 100%!important;

}
.listing-reviews--slider.slick-no-arrow .slick-slide {
	flex: 1;
}
.listing-reviews--slider .slick-slide {
	display: flex;
	padding: 45px;
	height: auto!important;
	background-color: #ebebeb;
	border: 1px solid #fff;
	border-width: 0 1px 0 1px;
	justify-content: center;
}
.listing-reviews--slider .listing-review-stars {
	margin-bottom: 10px;
}
.listing-review--name {
	text-transform: uppercase;
	font-weight: 700;
	color: #5d3385;
	margin-top: 10px;
}

.hidden-tooltip {
    display: none;
    padding: 10px;
    border-radius: 5px;
    background-color: #e71f25;
    color: #fff;
    font-size: 15px;
    position: absolute;
    bottom: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    text-align: center;
    z-index: 5;
}
.listing-swatch__inner:hover .hidden-tooltip {
    display: block !important;
}

/*
|--------------------------------------------------------------------------
| Listing > Flash Deals
|--------------------------------------------------------------------------
*/

.listing-flash-banner {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .02em;
}

.listing-main--flash {
	/*border: 5px solid #f1bf12;*/
}

.listing-main--flash .flash-deal-price {
	display: inline-block;
	margin-bottom: 10px;
}

.listing-title--flash {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.listing-title--flash > h1 {
	flex: 1;
	padding-right: 5px;
}

.listing-title--flash .flashdeal-listing {
	position: relative;
	margin-top: 2px;
}

.listing-title--flash .flashdeal-listing--svg svg {
}

.listing-title--flash .flashdeal-listing--svg {
	/*margin-top: 0;*/
}

.flashdeal-listing {
	background-color: #EBEBEB;
    color: #5D3385;
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0px;
    right: 0px;
	font-weight: 600;
}

.home-brands .flashdeal-listing {
	top: 10px;
	right: 10px;
}

.flashdeal-listing--svg {
	margin: 4px 4px 0 0;
}

.flashdeal-listing--svg svg {
	/* fill: white; */
	fill: #5D3385;
}

.flash-deal-price {
    background-color: #5D3385;
    padding: 6px 10px;
    font-size: 12px;
    color: #fff;
    border-radius: 3px;
}

.product-grid--item .flash-deal-price {
	display: inline-block;
	margin-bottom: 3px;
}

.flash-deal-save {
	display: block;
	padding: 3px 2px;
}


/*
|--------------------------------------------------------------------------
| Listing > Thumbnails
|--------------------------------------------------------------------------
*/
.listing-thumbnails {
	position: relative;
	padding: 4px 0 0 0;
}

.listing-thumbnails.has-arrows .listing-thumbnails--slider {
	padding: 0 44px;
}

.listing-thumbnail {
	margin: 0 2px;
}

.listing-thumbnail--link {
	display: block;
}

.listing-thumbnails .slick-arrow {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	width: 40px;
	background: #5d3385;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	color: transparent;
	transition: background 300ms ease;
}

.listing-thumbnails .slick-prev {
	right: auto;
	left: 0;
}

.listing-thumbnails .slick-arrow:after {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background: url(/images/style/party/icon-chevron-right.png) no-repeat center center;
	transition: opacity 300ms ease;
}

.listing-thumbnails .slick-prev:after {
	background: url(/images/style/party/icon-chevron-left.png) no-repeat center center;
}

.listing-thumbnails .slick-disabled {
	background-color: #777777;
	cursor: not-allowed;
}

.listing-thumbnails .slick-disabled:after {
	opacity: 0.4;
}




/*
|--------------------------------------------------------------------------
| Listing > Tabs
|--------------------------------------------------------------------------
*/
.listing-tabs {
	margin: 20px 0 0 0;
}

.listing-tabs-buttons {
	display: table;
    table-layout:fixed;
	width: 100%;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(238,238,238,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(238,238,238,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e7e7e7',GradientType=0 );
}

.listing-tabs-button {
	position: relative;
	display: table-cell;
	color: #666666;
	font-weight: 700;
	font-size: 18px;
	cursor: pointer;
	transition: color 300ms ease;
	padding: 19px 6px;
	text-align: center;
	width: 1px;
	border-right: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.04);
}

.listing-tabs-button:last-child {
	border-right: none;
}

.listing-tabs-button.sel {
	color: #2d2d2d;
}

.listing-tabs-button.sel::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -1px;
	margin-left: -3px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 7px 8px 7px;
	border-color: transparent transparent #ffffff transparent;
	z-index: 99;
}

.listing-tab {
	display: none;
	padding: 25px 20px;
	background-color: #fff;
}

.listing-tab:first-child {
	display: block;
}

.mobile-tab-title {
	padding: 15px 25px;
	color: #fff;
	font-weight: 700;
	margin: 14px 0 0 0;
}

.mobile-tab-title {
	display: none;
}



/*
|--------------------------------------------------------------------------
| Listing > Tabs > Comments
|--------------------------------------------------------------------------
*/
.listing-comments-form {
	padding: 20px;
	margin: 20px 0 0 0;
	background-color: #666666;
}

.listing-comments-title {
	font-weight: 700;
	font-size: 21px;
	color: #fff;
	float: left;
}

.listing-comment:first-child {
	border-top: 2px solid #e7e7e7;
}

.listing-comment {
	padding: 20px;
	border: 2px solid #e7e7e7;
	border-top: none;
}

.listing-comment-title {
	text-transform: uppercase;
	font-weight: 700;
	padding: 0 0 6px 0;
}

.listing-comments-stars {
	float: right;
}

.listing-comments-stars .rating-star {
	float: right;
	cursor: pointer;
}

.listing-comments-stars .rating-star:hover svg,
.listing-comments-stars .rating-star:hover + .rating-star svg,
.listing-comments-stars .rating-star:hover + .rating-star + .rating-star svg,
.listing-comments-stars .rating-star:hover + .rating-star + .rating-star + .rating-star svg,
.listing-comments-stars .rating-star:hover + .rating-star + .rating-star + .rating-star + .rating-star svg {
	fill: rgba(81, 172, 92, 0.47);
}

.listing-comment-author {
	float: left;
	font-weight: 700;
	text-transform: uppercase;
}

.listing-review-stars {
	float: right;
}

.listing-buy--buttons {
	margin-bottom: -10px;
}
.listing-buy--buttons > *:not(:last-child) {
	margin-right: 20px;
}
.listing-buy--buttons > * {
	margin-bottom: 15px;
}

.listing-price--outer + div .listing-buy--buttons {
	width: unset;
}
.listing-price--outer + div .listing-buy--buttons > *:not(:last-child) {
    margin-right: 0;
}
.listing-price--outer + div .listing-buy--buttons > .listing-notify {
    margin-left: 20px;
}
.listing-price--outer.flex-col + div .input-listing-qty {
    margin: 0 20px 5px 0;
}

.listing-option-list {
    border-top: 2px solid #051923;
    border-bottom: 2px solid #051923;
    padding: 0;
    margin: 22px 0 10px;
    max-height: 480px;
    overflow-y: auto;
    overflow-x: visible;
}
.listing-option-list > div {
    padding: 8px 0;
    color: #051923;
}
.listing-option-list > div:not(:last-child) {
    border-bottom: 1px solid #e3e3e3;
}
.option-row--ofs {
    color: #b62f3f;
}
.option-row--image {
    margin-right: 20px;
}
.option-row--image > img {
    max-width: 60px;
    max-height: 60px;
}
.option-row--title {
    font-size: 15px;
    line-height: 1.3;
    margin-right: 15px;
}
.option-row--title > small {
    color: #00b050;
    font-weight: 500;
}
.option-row--price {
    font-size: 16px;
    font-weight: 500;
    margin-right: 20px;
}
.option-row--qty {
    margin-right: 0;
    width: 140px;
}
.option-row--qty .input-qty--less, .option-row--qty .input-qty--more {
    width: 40px;
}
.option-row--qty.input-listing-qty span.input-qty--less {
    margin: 3px -43px 3px 0;
}
.option-row--qty.input-listing-qty span.input-qty--more {
    margin: 3px 0 3px -43px;
}
.option-row--qty.input.input-listing-qty input[type="number"] {
	padding: 8px;
    text-align: center;
    border: 2px solid #d9d9d9;
    border-radius: 4px;
    width: 140px;
}
.mini--options-multibuy--container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    margin: 5px 0 -3px -6px;
}
.mini--options_text {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    padding: 0 3px 5px 0;
    color: #00b050;
}
.mini--options-multibuys {
    flex-direction: row-reverse;
}
.mini--options-multibuy {
    padding: 0 0 6px 6px;
}
.mini--options-multibuy--inner {
    font-size: 13px;
    padding: 5px 10px;
    border: 1px solid #00b050;
    color: #00b050;
    font-weight: 600;
    border-radius: 4px;
    cursor: default;
    text-align: center;
}
.listing-options-summary {
    font-size: 15px;
    font-weight: 500;
}
.option-summary--selected {
    margin-right: 20px;
    flex: 1;
}
.listing-summary--buy {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -15px;
}
.listing-summary--buy:not(:first-child) {
    margin-top: 15px;
}
.listing-summary--buy > .button {
    margin-right: 20px;
}
.listing-summary--buy .button {
    margin-bottom: 15px;
}
.listing-summary--buy .listing-notify .button {
    margin: 0 0 15px;
    padding: 11px 20px;
    font-size: 13px;
}

/*
|--------------------------------------------------------------------------
| Listing > Related
|--------------------------------------------------------------------------
*/
.listing-related {
	padding: 40px 0 0 0;
}

.listing-related--title {
	display: block;
	text-align: center;
}

.listing-related--products {
	padding-top: 20px;
}



/*
|--------------------------------------------------------------------------
| Listing > Price Breaks
|--------------------------------------------------------------------------
*/
.price-bands {
	display: none;
	background-color: #2d2d2d;
	margin: 20px 0 0 0;
	color: #fff;
}

.price-bands--table-cont {
	padding: 10px;
}

.price-bands--table {
	border-spacing: 16px 10px;
}

.price-bands--header {
	color: #abadae;
}



/*
|--------------------------------------------------------------------------
| Listing > Overlay
|--------------------------------------------------------------------------
*/
.overlay {
	display: none;
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(102, 102, 102, 0.85);
	z-index: 100;
}

.overlay-personalise {
	background-color: rgba(0, 0, 0, 0.85);
}

.overlay.open {
	display: block;
}

.overlay--close {
	position: absolute;
	top: -30px;
	right: 0;
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	cursor: pointer;
	transition: transform 0.4s cubic-bezier(0.25, 0, 0.25, 1.75) 1s;
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0, 0.25, 1.75) 1s;
}

@-webkit-keyframes overlayEntrance {
  0%   { -webkit-transform: translate(-50%, -50%) rotateX(70deg) scale(0.7); transform: translate(-50%, -50%) rotateX(70deg) scale(0.7); opacity: 0; }
  80%   { -webkit-transform: translate(-50%, -50%) scale(1.04); transform: translate(-50%, -50%) scale(1.04); }
  90%   { -webkit-transform: translate(-50%, -50%) scale(0.98); transform: translate(-50%, -50%) scale(0.98); }
  100% { -webkit-transform: translate(-50%, -50%);  transform: translate(-50%, -50%); opacity: 1; }
}

@keyframes overlayEntrance {
  0%   { -webkit-transform: translate(-50%, -50%) rotateX(70deg) scale(0.7); transform: translate(-50%, -50%) rotateX(70deg) scale(0.7); opacity: 0; }
  80%   { -webkit-transform: translate(-50%, -50%) scale(1.04); transform: translate(-50%, -50%) scale(1.04); }
  90%   { -webkit-transform: translate(-50%, -50%) scale(0.98); transform: translate(-50%, -50%) scale(0.98); }
  100% { -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); opacity: 1; }
}

@keyframes overlayEntranceNotVerticallyCentered {
  0%   { -webkit-transform: translateX(-50%) rotateX(70deg) scale(0.7); transform: translateX(-50%) rotateX(70deg) scale(0.7); opacity: 0; }
  80%   { -webkit-transform: translateX(-50%) scale(1.04); transform: translateX(-50%) scale(1.04); }
  90%   { -webkit-transform: translateX(-50%) scale(0.98); transform: translateX(-50%) scale(0.98); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); opacity: 1; }
}

.overlay--inner {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 446px;
	padding: 30px 20px;
	background-color: #fff;
	transition: all 1s cubic-bezier(0.25, 0, 0.25, 1.75);
	border-radius: 5px;
}

.overlay__blue .overlay--inner {
	background-color: #5d3385;
}

/*.overlay.open .overlay--inner {
	-webkit-animation: overlayEntrance 1s forwards;
	-moz-animation: overlayEntrance 1s forwards;
	-o-animation: overlayEntrance 1s forwards;
	animation: overlayEntrance 1s forwards;
}*/

.overlay-personalise .overlay--inner {
	background-color: #c0bfbf;
	padding: 5px 5px 0 5px;
}

.overlay--title {
	display: block;
	text-align: center;
	font-weight: 700;
	font-size: 21px;
	color: #222;
	text-transform: uppercase;
}

.overlay-personalise .overlay--title {
	color: #1e1e1e;
	padding: 14px 0 14px;
}

.overlay--input-group {
	padding: 0 0 8px;
}
.overlay--input-group > label {
	margin-bottom: 2px;
	display: block;
}

.overlay--input-group-padded {
	padding: 10px 0 4px;
}

.overlay--submit-group {
	text-align: center;
	padding: 10px 0 0 0;
}

.overlay--input {
	width: 100%;
	padding: 6px 8px;
	border-radius: 2px;
	border: 1px solid rgba(0,0,0,0.2);
	background-color: #fff;
	text-align: left;
	font-size: 13px;
	color: #1e1e1e;
}

.overlay--text-input {
	height: 120px;
}

.overlay--form {
	padding: 10px 0 0 0;
}

#ask-a-question,
#bulk {
	cursor: pointer;
}

.overlay--text {
	text-align: center;
	color: #fff;
	font-size: 12px;
	padding: 10px 0 0 0;
	margin: 0;
}

.addthis_sharing_toolbox {
	padding-top:4px;
	float: right;
}

#product_add_content h2 {
	font-size: 16px;
}

#product_add_content,
#product_add_upsell {
	padding: 4px 0 10px;
	text-align: center;
}

#engraving_img_container {
	text-align: center;
	padding-top: 14px;
}

#add-new-address-overlay .overlay--inner {
	background-color: #fff;
	padding: 40px;
	max-width: 460px;
}

#add-new-address-overlay .overlay--title {
	color: #2d2d2d;
	padding: 0 0 20px 0;
	display: block;
}

#add-new-address-overlay .checkout-form--has-button {
	padding: 10px 0 20px 0;
}

#click-and-collect-overlay .overlay--inner {
	background-color: #fff;
	padding: 20px;
	max-width: 980px;
}

/*
|--------------------------------------------------------------------------
| Compare
|--------------------------------------------------------------------------
*/
.compare-table--row {
	display: table-row;
	position: relative;
	font-weight: 700;
	color: #fff;
}

/*.compare-table--row:after {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background: -moz-linear-gradient(top, rgba(213,86,62,0) 1%, rgba(54,22,16,0) 75%, rgba(0,0,0,0.2) 100%);
	background: -webkit-linear-gradient(top, rgba(213,86,62,0) 1%,rgba(54,22,16,0) 75%,rgba(0,0,0,0.2) 100%);
	background: linear-gradient(to bottom, rgba(213,86,62,0) 1%,rgba(54,22,16,0) 75%,rgba(0,0,0,0.2) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005d3385', endColorstr='#33000000',GradientType=0 );
}*/

.compare-table--cell {
	display: table-cell;
	padding: 15px;
	background-color: #5d3385;
	font-weight: 700;
	color: #fff;
	text-align: center;
	width: 20.83333333333333%;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.compare-table--cell:nth-child(3),
.compare-table--cell:nth-child(5) {
	background-color: #cc523b;
}

.compare-table--row-header {
	width: 16.66666666666667%;
	background-color: #666666;
	text-align: right;
}

.compare-table--head-cell-first {
	width: 16.66666666666667%;
}

.compare-listing--image {
	display: block;
}

.compare-listing--image img {
	display: block;
    width: 100%;
}

.compare-table--title-cont {
	padding: 5px;
	text-align: center;
}

.compare-table--title {
	font-size: 36px;
	color: #fff;
	margin: 0;
	padding: 60px 10px;
}

.compare-table--head {
	display: table-row;
}

.compare-table--head .compare-table--cell {
	padding: 0;
	text-align: left;
	vertical-align: top;
	background-color: #dde2e5;
}

.compare-table--head .compare-table--cell:first-child {
	padding: 10px;
	vertical-align: middle;
}

.compare-table--cell.compare-table--head-cell-empty {
	text-align: center;
	vertical-align: middle;
}

.compare-table--head-cell-empty i {
	font-size: 270px;
	font-style: normal;
}

.compare-undo--form {
	display: inline-block;
}



/*
|--------------------------------------------------------------------------
| Basket
|--------------------------------------------------------------------------
*/
.basket-page h1 {
	margin-bottom: 30px;
}
.cart--heading {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 18px;
	color: #222;
	padding: 0 0 15px 0;
}

.cart-segment {
	border: 1px solid #f2f2f2;
	background-color: #fff;
	margin-bottom:20px;
}
.cart-segment .message {
	margin-top: 0;
}

.cart-main .cart-segment:last-child {
	margin-bottom:0;
}

.cart-side .cart-segment {
	margin-bottom:0;
}

.cart-segment--inner {
	padding: 15px;
}

.cart-main {
	width: 62%;
	float: left;
}

.cart-option--images-cont {
    padding: 18px 0 12px;
}

.cart-option--image-cont {
    position: relative;
    display: inline-block;
	padding-left: 12px;
	background-image: url(/images/style/party/plus.png);
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 8px 8px;
}

.cart-option--image {
    border: 1px solid #efefef;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
}

.cart-option--image img {
	max-height: 100%;
}

.cart-option--image-text {
    display: none;
    position: absolute;
	bottom: calc(100% + 10px);
	text-align: center;
	width: 250px;
	left: -88px;
	color: #fff;
}

.cart-option--image-text::after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 7px 0 7px;
	border-color: #2d2d2d transparent transparent transparent;
}

.cart-option--image-text-inner {
    padding: 7px 15px 5px;
	font-size: 13px;
	display: inline-block;
	background: #2d2d2d;
}

.cart-option--image-text span {
    display: block;
	padding-bottom: 3px;
	color: #fec800;
}

.cart-option--image-cont:hover .cart-option--image-text {
    display: block;
}

.cart-option--image-qty {
    position: absolute;
    background: #06387f;
    font-size: 10px;
    height: 17px;
    width: 17px;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    right: 0;
}

.paypal-checkout {
	display: block;
    width: 100%;
    max-width: 100%;
    padding: 11.5px 115px;
    margin: 2px auto 0 auto;
    background-color: #019dc3;
    background-size: 90px;
    background-repeat: no-repeat;
    background-position: center;
	margin-top: 5px;
	border-radius: 5px;
	text-indent: -2000px;
}



/*
|--------------------------------------------------------------------------
| Basket > Side
|--------------------------------------------------------------------------
*/
.cart-side {
	float: right;
	width: 38%;
	padding: 0 0 0 40px;
}

.cart-side--option {
	font-size: 13px;
	font-weight: 700;
	margin: 25px 0 15px 0;
}

.cart-side--option span {
	display: block;
	padding: 0;
}

.cart-side--option-trigger {
	padding: 0 15px;
}

.cart-side--option__gift {
	color: #51ac5c;
}

.cart-side--option__gift.sel {
	background: #51ac5c;
	color: #fff;
	border: 2px solid #3F9649;
}

.cart-side--option__gift.sel span {
	background-image: url(/images/style/party/icon-gift-white.png);
}

.cart-side--option-inner {
	display: none;
	padding: 0 20px 20px 20px;
}


/*
|--------------------------------------------------------------------------
| Basket > Flash Deals
|--------------------------------------------------------------------------
*/

.basket-flash-cont > div {
	margin-bottom: 10px;
}

.basket-flash-banner.flash-banner {
	padding: 3px 6px;
	font-size: 12px;
    height: 24px;
    display: flex;
	margin-right: 10px;
}

.basket-flash-banner.flash-banner svg {
	height: 12px;
}

.basket-flash-cont + .cart-item-title {
	display: block;
	margin-top: 3px;
}

.flashdeal-basket.flashdeal-listing {
	position: relative;
	font-size: 12px;
	height: 24px;
}


/*
|--------------------------------------------------------------------------
| Basket > Totals
|--------------------------------------------------------------------------
*/
.cart-totals {
	background: rgb(238,238,238);
	background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#ffffff',GradientType=0 );
	font-size: 13px;
	font-weight: 600;
	color: #666666;
	border-top:none;
	text-transform: uppercase;
}

.cart-totals .dblr {
	display: flex;
}
.cart-totals .dblc {
	padding: 4px 0 0;
}
.cart-totals .dblc.cart-total--label {
	flex: 1;
}
.cart-total--price {
	text-align: right;
}

.cart-total {
	color: #1e1e1e;
	font-weight: 700;
	font-size: 20px;
}
.cart-total--small {
	color: #1e1e1e;
}

.cart-segment .basket-submit {
	margin-top: 15px;
}

.cart-side--delivery-option {
	background-color: #e7e7e7;
	font-weight: 700;
	color: #1e1e1e;
	padding: 15px;
	margin-top:2px;
	transition: padding 300ms ease;
	cursor: pointer;
	border-radius: 4px;
}

.cart-side--delivery-option:hover {
	padding: 15px 20px;
}

.cart-side--delivery-option.sel {
	background-color: #e71f25;
	color: #fff;
}

.cart-side--delivery-option.sel span {
	color: #fff;
}

.cart-side--delivery-option strong {
	font-size: 13px;
	display: block;
}

.cart-side--delivery-option span {
	display: block;
	font-size: 11px;
}

.cart-side--delivery-option span {
	color: #666666;
}

span.cart-side--delivery-cost,
span.cart-side--delivery-cost--original {
	float: right;
	font-weight: 700;
	color: #1e1e1e;
}

span.cart-side--delivery-cost--original {
	text-decoration: line-through;
	padding-right: 8px;
	font-weight: normal;
}



/*
|--------------------------------------------------------------------------
| Basket > Items
|--------------------------------------------------------------------------
*/
.cart-items {
	width: 100%;
	padding: 15px;
	position: relative;
}

.cart-item {
	position: relative;
	margin: 0 0 15px 0;
	border-bottom: 1px solid #f2f2f2;
	display: flex;
}

.cart-item:last-child {
	border-bottom: 0;
	margin:0;
	padding:0;
}

.cart-item-image {
	width: 130px;
	margin: 0 0 15px 0;
}

.cart-item-image a {
	border: 1px solid #f2f2f2;
}

.cart-item:last-child .cart-item-image {
	margin:0;
}

.cart-item-content {
	padding: 0 90px 0 15px;
}

.cart-item-title a {
	font-weight: 700;
	font-size: 16px;
	color: #414141
}

.cart-item-content .label-inline {
	width:104px;
}

.cart-item-right {
	width:110px;
	position: absolute;
	top: 0; right: 0; bottom: 0;
	float: right;
	text-align: right;
}

.cart-item-price {
	font-weight: 700;
	font-size: 21px;
	color: #414141;
}

.cart-item-stock-cont {
	padding-top: 7px;
}

.cart-item-unitprice, .cart-item-option, .cart-item-stock {
	display: block;
	color: #666666;
	font-size: 12px;
}
.cart-item-option {
	color: #e71f25;
}

.cart-item-stock.stock-status {
	background-size: 14px auto;
}

.cart-item-stock {
	margin-top: 3px;
    background-repeat: no-repeat;
	background-position: left center;
	text-align: left;
}

.cart-item-stock-cross-amber {
	background-image: url(/images/style/party/icon-cross-amber.png);
}

.cart-item-stock-van-green {
	background-image: url(/images/style/party/icon-dispatch-van-green.png);
}

.cart-item-stock-warning {
	background-image: url(/images/style/party/icon-cart-warning.png);
}

.cart-item-stock-van-orange {
	background-image: url(/images/style/party/icon-dispatch-van-orange.png);
}

.cart-item-stock-box {
	background-image: url(/images/style/party/icon-dispatch-box-orange.png);
}

#cart--vat-declaration-details {
	display:none;
}

.remove {
	background: url(/images/style/party/cart-remove.png) left center no-repeat;
	padding: 0 0 0 15px;
	cursor: pointer;
	font-size: 12px;
	text-transform: uppercase;
	color: #b52025;
	font-weight: 700;
}

.cart-item-right .remove, .cart-item-right .button-small {
	position: absolute;
	bottom: 15px;
	right: 0;
}

.cart-item:last-child .cart-item-right .button-small {
	bottom:0;
}

.cart-item--stock {
	padding: 0 0 0 10px;
}

.cart-segment .basket-wl-btn {
	margin: 0 10px;
}

.cart-free-item .cart-item-image {
	width: 80px;
	margin-bottom: 0;
}

.cart-free-items-title {
	padding: 10px 8px;
	background-color: #51ac5c;
	color: #fff;
	font-size: 13px;
}

.cart-free-items-block {
	margin: 0 0 15px;
}

.cart-free-item {
	padding: 4px;
	border: 2px solid #e7e7e7;
	border-top: 0;
}

.cart-free-item-inner {
	display: flex;
	align-items: center;
}

.cart-free-item-inner .cart-overview--item-inner {
	width: 100%;
}

.cart-free-item .cart-item-price {
	font-size: 16px;
}

.cart-free-item-right {
	margin-left: auto;
	text-align: right;
	padding-right: 10px;
}

.cart-free-item .cart-item-variant,
.cart-free-item .cart-item-price {
	display: block;
	margin-bottom: 5px;
}

.cart-free-item .cart-item-variant {
	font-size: 12px;
}

.cart-overview--item.cart-free-item-inner {
	border: 0;
	padding: 0;
	margin-bottom: 0;
}



/*
|--------------------------------------------------------------------------
| Basket > Datepicker
|--------------------------------------------------------------------------
*/
 .ui-datepicker-inline {
    margin: 30px auto 0 auto;
    border-radius: 0;
    border-color: #e7e7e7;
    padding: 4px;
}
 .ui-datepicker-title {
	color: #5d3385;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	color: #5d3385;
}
 .ui-widget-header,
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border-color: #5d3385;
}
 .ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-datepicker-title {
	color: #5d3385;
}
 .ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #5d3385;
	background-color: #5d3385;
    font-weight: bold;
    color: #fff;
}
 .ui-datepicker td a {
	text-align: center;
}
 .ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	background-color: #5d3385;
	width: 28px;height: 28px;
	cursor: pointer;
	top: 2px !important;
}
 .ui-datepicker .ui-datepicker-prev {
	left: 2px !important;
}
 .ui-datepicker .ui-datepicker-next {
	right: 2px !important;
}
 .ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
	position: absolute;
	top: 50%;left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: url(/images/style/party/icon-chevron-left.png) no-repeat center center;
	margin: 0;
}
 .ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border-color: #019cc2;
}
 .ui-datepicker .ui-datepicker-next .ui-icon {
	background-image: url(/images/style/party/icon-chevron-right.png);
}



/*
|--------------------------------------------------------------------------
| Brands
|--------------------------------------------------------------------------
*/
.brand-letters--grid {
	margin: 0 -1px 0 0;
	padding: 14px 0;
}

.brand-letter {
	text-align: center;
	width: 3.703703703703704%;
	float: left;
	padding: 0 1px 0 0;
}

.brand-letter.disabled {
	opacity: 0.4;
}

.brand-letter.disabled .brand-letter--inner {
	cursor: not-allowed;
}

.brand-letter.disabled .brand-letter--inner:hover {
	border: 2px solid #e7e7e7;
	color: #5d3385;
	background-color: #fff;
}

.brand-letter--inner {
	display: block;
	border: 2px solid #e7e7e7;
	color: #5d3385;
	font-weight: 700;
	font-size: 21px;
	padding: 4px 0;
	cursor: pointer;
}

.brand-letter--inner.sel,
.brand-letter--inner:hover {
	background-color: #5d3385;
	color: #fff;
	border: 2px solid rgba(0,0,0,0.2);
}

.brands-list--item {
	text-align: center;
	width: 16.6666666666666666666%;
	float: left;
	padding: 0 4px 4px 0;
}

.brands-list--letter {
	position: relative;
	color: #ffffff;
	font-weight: 700;
	font-size: 60px;
}

.brands-list--letter .brands-list--inner {
	background-color: #1e1e1e;
}

.brands-list--letter span {
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	bottom: 0;
	left: 50%;
	right: 0;
	height: 60px;
	line-height: 60px;
}

.brands-list--inner {
	position: relative;
	height: 0;
	padding: 0 0 100% 0;
}

.brands-list--image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 34px;
	background-size: 60%;
	background-color: #fff;
}

.brands-list--image img {
	display: none;
}

.brands-list--text {
	position: absolute;
	right: 0; bottom: 0; left: 0;
	background-color: #e7e7e7;
	font-weight: 700;
	font-size: 12px;
	color: #5d3385;
	padding: 10px 0;
}



/*
|--------------------------------------------------------------------------
| Checkout
|--------------------------------------------------------------------------
*/
.checkout-header {
	border-bottom: 2px solid #e7e7e7;
	min-height: auto;
	padding: 20px 0;
}

.checkout {
	position: relative;
	overflow:hidden;
}

.checkout-main {
	width: 60%;
	padding: 45px 70px 0 0;
	background-color: #fff;
	float: left;
	border-right: 2px solid #e7e7e7;
}

#checkout-container, #confirm-container {
	max-width:1400px;
}

#checkout-container {
	padding:0 100px 0 120px;
}

#confirm-container {
	padding:0 100px 0 170px;
}

.payment-methods {
	margin: 0 0 15px 0;
}

.checkout-segment {
	padding: 0 0 15px 0;
}

.checkout-title {
	font-size: 20px;
	padding: 0 0 10px 0;
	margin: 0 0 15px 0;
	border-bottom: 2px solid #e7e7e7;
}

.checkout-subtitle {
	font-size: 18px;
	padding: 0 0 15px 0;
	margin: 0;
}

.checkout-breadcrumbs {
	display:none;
}

.checkout-breadcrumb {
	position: relative;
	padding: 0 20px 0 0;
	font-size: 16px;
	color: #2d2d2d;
}

.checkout-breadcrumb:after {
	position: absolute;
	top: 50%;
	right: 8px;
	margin: -4px 0 0 0;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 4px;
	border-color: transparent transparent transparent #2d2d2d;
}

.checkout-breadcrumb:last-child:after {
	display: none;
}

.checkout-breadcrumb__green {
	color: #00b050;
}

.checkout-breadcrumb__green:after {
	border-color: transparent transparent transparent #00b050;
}

.checkout-breadcrumb__grey {
	color: #666666;
}

.checkout-breadcrumb__grey:after {
	border-color: transparent transparent transparent #666666;
}

.checkout-side {
	width: 40%;
	float: right;
	position: relative;
	z-index: 1;
}

.checkout-side:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 300%;
    background: #f6f6f6;
    z-index: -1;
}

.checkout-action {
	border-top: 2px solid #e7e7e7;
	padding: 24px 0;
}

.return-to-basket {
	background-color: #fff;
	color: #2d2d2d;
	text-transform: none;
	padding: 12px 25px 11px 15px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.24 14.02'%3E%3Ctitle%3Earrow-l%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath fill='%232d2d2d' d='M0,7a.76.76,0,0,0,.22.54L6.47,13.8a.77.77,0,0,0,1.08,0L8,13.34a.77.77,0,0,0,0-1.08L2.77,7,8,1.77A.77.77,0,0,0,8,.68L7.55.22a.77.77,0,0,0-1.08,0L.22,6.46A.76.76,0,0,0,0,7Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center left;
	font-size: 15px;
	background-size: 6px auto;
}

.checkout-addressbook .input {
	display: none;
}

.checkout-addressbook-button {
	color: #5d3385;
	font-size: 13px;
	margin-bottom: 15px;
	cursor: pointer;
}



/*
|--------------------------------------------------------------------------
| Checkout > Delivery Address
|--------------------------------------------------------------------------
*/
.delivery-address {
	display: block;
	width: 100%;
	margin: 0 0 4px 0;
	border: 2px solid #e7e7e7;
	cursor: pointer;
}

.delivery-address:hover {
	background-color: #019dc3;
}

.delivery-address.sel {
	border: 2px solid #019dc3;
}

.delivery-address:hover .delivery-address--title,
.delivery-address:hover .delivery-address--location {
	color: #fff;
}

.delivery-address.sel .delivery-address--checkbox:after {
	background-color: #2d2d2d;
	border: 4px solid #fff;
	transition: background 300ms ease;
}

.delivery-address.sel .delivery-address--title,
.delivery-address.sel .delivery-address--location {

}

.delivery-address--checkbox {
	float: left;
	position: relative;
	height: 46px;
	width: 46px;
}

.delivery-address--checkbox:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	height: 20px;
	width: 20px;
	-webkit-transform: translate(-10px, -10px);
	transform: translate(-10px, -10px);
	background-color: #e7e7e7;
	border-radius: 20px;
}

.delivery-address--content {
	padding: 7px;
	overflow: hidden;
}

.delivery-address--title {
	display: block;
	font-weight: 700;
	font-size: 15px;
	color: #2d2d2d;
}

.delivery-address--location {
	display: block;
	font-size: 12px;
	color: #666666;
}

.button-locate {
	background-image: url(/images/style/party/icon-zoom-white.png);
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position:center center;
	width: 42px;
}

.button-locate.loading {
	background-image: url(/images/style/party/gps.svg);
}

.no-js .button-locate,
.no-js #postcode_lookup_results_container_del {
	display: none;
}

.no-js .billing-address-form {
	display: block !important;
}



/*
|--------------------------------------------------------------------------
| Basket > Sidebar
|--------------------------------------------------------------------------
*/
.cart-overview.fixed {
	position: fixed;
	top: 0;
}

.cart-overview.absolute {
	position: absolute;
	bottom: 0;
	top: auto;
}

.checkout-side {
	padding: 45px 0 0 60px;
}

.cart-overview--item {
	padding: 0 0 10px 0;
	margin: 0 0 10px 0;
	font-weight: 700;
	color: #2d2d2d;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cart-overview--item-image {
	position: relative;
	max-width: 70px;
	float: left;
}

.cart-overview--item-image__subscription {
	display: none;
	position: absolute;
	height: 13px;
	width: 13px;
	left: 10px;
	top: 10px;
	background: url(/images/style/party/icon-calendar-blue.png) no-repeat center center;
	background-size: 13px 13px;
}

.cart-overview--item-inner {
	padding: 0 14px 14px 14px;
	overflow: hidden;
}

#invoice-container .cart-overview--item-inner {
	padding: 0;
}

.cart-overview--item-content {
	overflow: hidden;
	padding: 0 20px 0 0;
}

.cart-overview--item-info {
	float: right;
	text-align: right;
}

.cart-overview--item-qty,
.cart-overview--item-options {
	color: #666;
	font-size: 11px;
}

.cart-overview--item-options i {
	font-style: normal;
}

.cart-overview--item-options i:last-child {
	display: none;
}

.cart-overview--item-option__blue {
	color: #019dc3;
}

.cart-overview--item-option__blue span {
	padding: 0 4px 0;
}

.cart-overview--item-qty {
	display: block;
}

.cart-promo {
	padding: 10px 0 20px 0;
	margin: 0 0 20px 0;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cart-promo--button {
	position: relative;
	display: block;
	color: #e71f25;
	background-color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	padding: 16px;
	cursor: pointer;
}

.cart-promo--button span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cart-promo--button span:before {
	content: '';
	position: relative;
	left: 0;
	height: 16px;
	width: 16px;
	background: url(/images/style/party/icon-tag.png) no-repeat center center;
	transform-origin: top right;
	margin-right: 8px;
}

@keyframes tagWiggle {
  0%   { transform: rotate(0); }
  25%   { transform: rotate(15deg); }
  50%   { transform: rotate(-15deg); }
  75%   { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

.cart-promo--button:hover span:before {
	-webkit-animation: tagWiggle 1s;
	-moz-animation: tagWiggle 1s;
	-o-animation: tagWiggle 1s;
	animation: tagWiggle 1s;
}

.cart-promo--button:hover {
	color: #c5151b;
}

.cart-promo--button:active {
	top: 1px;
}

.cart-promo--form {
	padding: 10px 0 0;
}
.cart-promo--form .input {
	margin: 0;
}

.cart-overview-totals {
	background: none;
}

.cart-overview--item-gift {
	padding: 10px 0 0 0;
}

.cart-overview--item-checkbox label {
	display: inline-block;
	font-size: 11px;
	color: #666666;
}

.checkout-login--inner {
	padding:30px 0;
	border-bottom: 1px solid #e7e7e7;
}

.cart-overview--item-option {
	display: block;
}

.checkout-login--btn {
	padding-bottom: 10px;
	transition: opacity 300ms ease;
	color: #666;
}

#checkout-hide-login-form {
	font-size: 13px;
	opacity: 1;
	transition: color 300ms ease;
	padding-top: 12px;
	font-weight: 600;
}

#checkout-hide-login-form:hover {
	color: #444;
}



/*
|--------------------------------------------------------------------------
| Confirm v2
|--------------------------------------------------------------------------
*/
.payment-method {
}

.payment-method--button {
	position: relative;
	padding: 21px 20px 21px 50px;
	font-weight: 700;
	font-size: 18px;
	color: #2d2d2d;
	border: 2px solid #e7e7e7;
	margin-top: -2px;
	cursor: pointer;
}

.payment-method--title {
	padding: 3px 0;
}

.payment-method--button:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
	width: 18px;
	height: 18px;
	background-color: #e7e7e7;
	border-radius: 18px;
}

.payment-method.open .payment-method--button:after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 24px;
	width: 10px;
	height: 10px;
	background-color: #2d2d2d;
	border-radius: 18px;
}

.payment-method--content {
	display: none;
}

.payment-method__card .payment-method--title {
	background: url(/images/style/party/card-logos.png) no-repeat center right;
}

.payment-method__paypal .payment-method--title {
	background: url(/images/style/party/paypal-logo-color.png) no-repeat center right;
}

.payment-method--content {
	background-color: #e7e7e7;
	padding: 40px;
	text-align: center;
	font-size: 18px;
}

.payment-method--content .input:last-child {
	margin-bottom: 0;
}

#form_stripe {
	width:100%;
	max-width: 400px;
	margin: 0 auto;
	text-align:center;
	padding: 50px 0;
}

#form_stripe #card-errors {
	text-align: left;
    margin-bottom: 15px;
}

.button-stripe {
	width: 100%;
}

.button-stripe:disabled {
	opacity: .5;
}

.button-stripe:disabled,
.button-stripe:disabled:hover {
	background-color: #5d3385;
}

.button-stripe .spinner {
	font-size: 2px;
	margin-top: -2px;
	margin-bottom: -2px;
	display: none;
}

.button-stripe:disabled .spinner {
	display: block;
}

.button-stripe span {
	line-height: 16px;
}

.button-stripe:disabled span {
	display: none;
}

.stripe-cancel {
	text-align: left;
	padding: 25px 0 0;
	margin-bottom: -8px;
}

.stripe-cancel a {
	color: #000;
	padding-top: 0;
	padding-bottom: 0;
	opacity: 0.5;
}

.stripe-cancel a:hover {
	opacity: 0.8;
}

#braintree-paypal-loggedin,
#braintree-paypal-credit-loggedin,
#braintree-card-stored {
	display: none;
	max-width: 500px;
	overflow: hidden;
	padding: 16px;
	margin: 0 auto;
	border-top: 1px solid #d1d4d6;
	border-bottom: 1px solid #d1d4d6;
	text-align: left;
}

.bb-pp-container,
.bb-card-container {
	display: table;
	width: 100%;
}

.bb-pp-container > div,
.bb-card-container > div {
	display: table-cell;
	vertical-align: middle;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

.bt-pp-name,
.bt-pp-cancel,
.bt-card-cancel {
	width: 1px;
}

.bt-pp-name {
	padding-left: 36px;
	background-image: url("/images/style/party/paypal-small.svg"), none;
	background-size: 13px 15px;
	background-position: 4px center;
	background-repeat: no-repeat;
	color: #283036;
	font-size: 13px;
	font-weight: 800;
}

.bt-pp-email,
.bt-card-details {
	padding: 0 10px;
	color: #6e787f;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 0;
}

.bt-card-details {
	padding-left: 0;
}

.bt-pp-cancel button,
.bt-pp-cancel a,
.bt-card-cancel a {
	float: right;
	color: #3d95ce;
	font-size: 11px;
	line-height: 20px;
	padding: 0px;
	margin: 0;
	border: 0px;
	cursor: pointer;
	text-decoration: underline;
	background-color: transparent;
}

.bt-pp-cancel button:hover,
.bt-pp-cancel a:hover,
.bt-card-cancel a:hover {
	color: #215b83;
}

.braintree-change-method {
	padding: 20px 0 0;
	font-size: 11px;
	color: #666;
}

.braintree-change-method a {
	color: #666;
	padding-bottom: 1px;
}

.braintree-change-method a:hover {
	color: #333;
}



/*
|--------------------------------------------------------------------------
| Checkout > Success > Order Summary
|--------------------------------------------------------------------------
*/
.order-summary {
	border: 2px solid #e7e7e7;
}

.order-summary .cart-overview--item {
	padding: 0;
	margin: 0;
}

.order-summary .cart-overview--item-gift {
	background-color: #e7e7e7;
	padding: 0;
}

.order-summary .cart-overview--item-checkbox {
	padding: 5px 10px;
	background: #e7e7e7;
}

.order-summary .cart-overview--item {
	padding: 10px;
}

.order-summary .cart-overview--item:last-child {
	border-bottom: none;
}

.order-delivery {
	padding: 18px 24px;
	font-weight: 700;
	border-bottom: 2px solid #e7e7e7;
}

.order-delivery--title {
	font-size: 18px;
	color: #666;
	display: block;
}

.order-delivery--address {
	font-size: 12px;
	color: #abadae;
	display: block;
}

.order-details {
	padding: 18px 24px;
	font-weight: 700;
	color: #666;
	border-top: 2px solid #e7e7e7;
}

.order-detail {
	padding: 4px 0;
}

.order-detail--title {
	color: #abadae;
	text-transform: uppercase;
	font-size: 12px;
}

.order-detail__green {
	color: #51ac5c;
}

.order-detail__red {
	color: #5d3385;
}



/*
|--------------------------------------------------------------------------
| Checkout > Stages
|--------------------------------------------------------------------------
*/
.checkout-stages {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	font-weight: 700;
}

.checkout-stage {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50px;
	color: #666666;
	background:#fff;
	border-right:2px solid #e7e7e7;
}

.checkout-stage span {
	display: block;
	padding: 0 20px 0 0;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	font-weight: 700;
	height: 50px;
	width: 300px;
	text-transform: uppercase;
	position: absolute;
	left: -126px;
	top: 126px;
	line-height: 50px;
	text-align: right;
}

.checkout-stage.dark,
.checkout-stage.darker,
.checkout-stage.darkest,
.checkout-stage.failed {
	color: #fff;
}

.checkout-stage.dark {
	background: #00b050;
	border-right:2px solid #00b050;
}

.checkout-stage.darker {
	background: #019544;
	border-right:2px solid #019544;
}

.checkout-stage.darkest {
	background: #007837;
	border-right:2px solid #007837;
}

.checkout-stage.failed {
	background: #e71f25;
	border-right:2px solid #e71f25;
}

.checkout-stage:nth-child(2) {
	left: 50px;
}

.checkout-stage:nth-child(3) {
	left: 100px;
}

.checkout-stage:nth-child(4) {
	left: 150px;
}

.account-overlay-form {
	padding: 20px 0;
}



/*
|--------------------------------------------------------------------------
| Account > Forms
|--------------------------------------------------------------------------
*/

.account-box.full {
	width: 100%;
}

.account-box-centered {
	max-width:580px;
	margin:0 auto;
	padding:0;
}

.account-box h2 {
	font-size: 18px;
}

.account-box h3, #account-box-trade h3 {
	font-size: 16px;
}

.account-box.fl {
	padding-right:10px;
}

.account-box.fr {
	padding-left:10px;
}

.newacc-intro {
	text-align: center;
	margin: 0 0 30px;
}

.newacc-title {
	margin: 20px 0 10px 0;
	font-size: 30px;
}

.form-note {
	display: block;
	padding: 8px 0 0;
	font-size: 11px;
	color: #7a7a7a;
}

.account a.form-note:hover {
	color: #7a7a7a;
	text-decoration: underline;
}

.account-box .uppercase {
	max-width: 150px;
}



/*
|--------------------------------------------------------------------------
| Account > Wishlist
|--------------------------------------------------------------------------
*/
.select2-account .select2-results {
	border: 1px solid #019dc3;
}

.select2-options-dropdown {
	border: 2px solid #019dc3;
}

.select2-account:before {
	display: none;
}

.wishlist {
	background-color: #2d2d2d;
	margin: 0 0 4px;
	padding: 20px;
}

.wishlist .dbl {
	table-layout: auto;
}

.wishlist .dblc:first-child {
	vertical-align: top;
	width: 100%;
}

.wishlist .dblc:nth-child(2) {
	vertical-align: middle;
	white-space: nowrap;
}

.wishlist-title a {
	text-transform: none;
}

.wishlist .wishlist-title a:hover {
	color: #5d3385;
	text-decoration: underline;
}

.wishlist-desc {
	font-size: 12px;
}

.wishlist-desc {
	font-size: 12px;
	color: #fff;
}

.wishlist-items,
.wishlist-del {
	padding-left: 10px;
	display: inline-block;
	line-height: 20px;
}

.wishlist-del,
.wishlist-prod-del-button span {
	cursor:pointer;
	color: #5d3385;
	font-weight: 700;
}

.wishlist-del:hover,
.wishlist-prod-del-button span:hover {
	color: #019cc2;
}

.wishlist-del {
	padding-left: 10px;
}

.wishlist-prod-del-button span {
	float: right;
}

.wishlist-items {
	font-size: 11px;
	text-transform: uppercase;
	opacity: 0.4;
}

.wishlist-top {
	width: 100%;
	table-layout: auto;
	margin-bottom: 40px;
}

.wishlist-top .wishlist-top-left h1 {
	margin: 0; padding: 0;
	float: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wishlist-top-left {
	max-width: 0;
}

.wishlist-top-left,
.wishlist-top-right {
	vertical-align: middle;
}

.wishlist-top-right {
	white-space: nowrap;
	width: 1px;
}ac

.wishlists p {
	margin-bottom: 30px;
}

.account-wishlist .message-error {
	margin-bottom: 0
}

.account a:not(.button):hover {
	color: #2d2d2d;
}

.wishlist-edit,
.wishlist-return {
	display:inline-block;
	color:#5d3385;
	font-size:11px;
	font-weight: 700;
	text-transform:uppercase;
	cursor:pointer;
	margin-left:10px;
}

.wishlist-edit span:hover,
.wishlist-return a:hover {
	color: #5d3385;
	text-decoration: underline;
}

.address-blocks--grid {
	margin: 0 -10px 0 0;
}

.wishlist-stock {
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
	color: #2d2d2d;
	padding-top: 8px;
	display: block;
}

.wishlist-stock img {
	width: 15px;
}

.cart_customfield {
	font-size: 12px;
	font-weight: 700;
	color: #666666;
}

.create-wishlist {
	float: right;
}

.wishlist-prod td {
	padding: 20px;
	background: #fff;
	border-bottom: 4px solid #2d2d2d;
}

.wishlist-prod .wishlist-prod-image {
	padding-right: 0;
	width: 100px;
}

.wishlist-prod-image a,
.wishlist-prod-image img {
	display: block;
}

.wishlist-prod-image img {
	border: 1px solid #e9e9e9;
}

.wishlist-prod a {
	font-weight: 600;
	font-size: 16px;
	color: #5d3385;
}

.wishlist-prod a:hover {
	text-decoration: underline;
	color: #5d3385;
}

.wishlist-prod-move-button {
	width: 1px;
}

.wishlist-prod-move-button span {
	cursor: pointer;
	color: #5d3385;
}

.wishlist-prod-move-button span:hover {
	text-decoration: underline;
}

.wishlist-prod .wishlist-prod-add-button {
	width: 1px;
	padding-left: 0;
	padding-right: 0;
}

.wishlist-prod-add-button button {
	/*font-family: 'Poppins', sans-serif;*/
	letter-spacing: -0.025em;
	line-height: 1;
	white-space: nowrap;
}

.wishlist-prod-del-button {
	width: 1px;
}

.wishlist-choose-container {
	max-height: 300px;
	overflow-y: auto;
}

.wishlist-choose {
	background-color: #5d3385;
	margin: 4px 0;
	padding: 15px;
	cursor: pointer;
	line-height: 1.3;
	color: #fff;
	-webkit-transition: .3s all ease-out;
	transition: .3s all ease-out;
}

.wishlist-choose:hover {
	background-color: #019cc2;
}

.wishlist-choose:first-child {
	margin-top: 0;
}

.wishlist-choose:last-child {
	margin-bottom: 0;
}

.wishlist-choose-title {
	font-size: 15px;
}

.wishlist-choose-desc {
	font-size: 12px;
	opacity: .5;
}



/*
|--------------------------------------------------------------------------
| Offer Overlay
|--------------------------------------------------------------------------
*/
.offer-overlay {
	position: fixed;
	top: 0;right: 0;bottom: 0;left: 0;
	z-index: 999;
}

.offer-overlay--bg {
	position: absolute;
	top: 0;right: 0;bottom: 0;left: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

.offer-overlay--block {
	position: absolute;
	top: 50%;left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 620px;
	width: 95%;
	border: 10px solid #fff;
	border-radius: 2px;
	z-index: 1;
}

.offer-overlay--upper {
	background-color: #5d3385;
	padding: 60px 50px;
	position: relative;
	z-index: 1;
}

.offer-overlay--action {
	display: block;
	border-top: 10px solid #fff;
	background-color: #5e9732;
	padding: 10px;
	text-align: center;
	font-size: 21px;
	color: #fff;
	cursor: pointer;
}

.offer-overlay--title {
	display: block;
	text-align: center;
	font-size: 48px;
	line-height: 50px;
	color: #fff;
	margin-bottom: 25px;
}

.offer-overlay--sub {
	display: block;
	font-size: 17px;
	color: #fffcd9;
	margin-bottom: 30px;
	text-align: center;
}

.no-js .offer-overlay {
	display: none;
}

.overlay-offer--input {
	width: calc(100% - 98px);height: 50px;
	border: 1px solid #e6e6e6;
	padding: 0 12px;
}

.offer-overlay--upper .message {
	position: absolute;
	top: 20px;right: 50px;left: 50px;
}



/*
|--------------------------------------------------------------------------
| Account > Order History
|--------------------------------------------------------------------------
*/
.order-history {
	width: 100%;
	margin: 0 0 30px;
	background-color: #fff;
}

.order-history th {
	background: #5d3385;
	color: #ffffff;
	padding: 15px;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
}

.order-history td {
	padding: 15px;
	color: #444;
}

.order-history tr:nth-child(even) {
	background-color: #e7e7e7;
}

.order-history .button {
	float: right;
}



/*
|--------------------------------------------------------------------------
| Account > Order Info
|--------------------------------------------------------------------------
*/
.order-address {
	margin: 0 0 30px;
	overflow: hidden;
}

.oa-del,
.oa-bil {
	width: 50%;
	float: left;
}

.oa-del {
	padding: 0 20px 0 0;
}

.order-sub {
	text-align: right;
}

.order-total {
	float: right;
}



/*
|--------------------------------------------------------------------------
| Account > Order Tracking
|--------------------------------------------------------------------------
*/
.tracked-order {
	width: 100%;
	max-width: 800px;
	margin: 30px 0;
}

.tracked-qty {
	width: 95px;
	text-align: center;
}

.tracked-date {
	text-align: right;
}

.track-again {
	margin: 30px auto 0;
}



/*
|--------------------------------------------------------------------------
| Sitemap
|--------------------------------------------------------------------------
*/
.sitemap-page {
	font-size: 13px;
}

.sitemap-left,
.sitemap-right {
	width: 50%;
	max-width: 450px;
	padding: 0 15px;
	float: left;
}

.sitemap-right {
	padding-right: 0;
}

.shop-sitemap .sitemap-cat {
	margin: 15px 0 0;
}

.shop-sitemap h2 {
	margin-top: 30px;
}
.sitemap ul {
	margin-bottom: 5px;
}
.sitemap a {
	color: #222;
}





/*
|--------------------------------------------------------------------------
| Account v2
|--------------------------------------------------------------------------
*/
.account {}

.account-subtitle {
	font-size: 18px;
	padding: 0 0 20px;
	color: #2d2d2d;
}

.account-sidebar--mobile-title {
	display: none;
	position: relative;
	padding: 20px;
	font-size: 16px;
	color: #707070;
}

.account-sidebar--mobile-title svg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 16px;
	transform-origin: center;
}

.account-sidebar--mobile-title svg path {
	fill: #707070;
}

.account-sidebar--mobile-title.open svg {
	transform: rotate(-180deg) translateY(4px);
}

.account-sidebar {
	width: 280px;
	background-color: #ebebeb;
	float: left;
	margin: 0 20px 0 0;
	border-radius: 5px;
}

.account-sidebar nav {
	padding: 20px 24px;
}

.account-sidebar-btm.mobile {
	display: none;
}

.loyalty-points-dblc {
	display: none;
}

.account-sidebar nav li {
	padding: 5px 0;
}

.account-sidebar a {
	font-size: 16px;
	color: #707070;
	border-bottom: 1px solid transparent;
}

.account-sidebar a:hover,
.account-sidebar .sel {
	color: #e71f25;
}

.account-sidebar .sel {
	border-bottom: 1px solid #e71f25;
}

.account-sidebar-btm {
	border-top: 1px solid #aaa;
	padding: 18px 24px;
}

.account-sidebar-btm div {
	font-size: 14px;
	padding: 0 0 4px;
	color: #2d2d2d;
}

.account-sidebar-btm a {
	text-transform: uppercase;
	font-size: 11px;
}

.account-main {
	background-color: #ebebeb;
	overflow: hidden;
	padding: 40px;
	color: #2d2d2d;
	line-height: 1.3;
	border-radius: 5px;
}

.account-main .message {
	margin-top: 0;
}

.account-main h1 {
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #2d2d2d;
	padding: 0 0 20px;
	margin: 0;
	float: left;
}

.account-main-filter {
	float: right;
	height: 40px;
	color: #2d2d2d;
	padding: 0 20px;
	background-color: transparent;
	border: 1px solid #aaa;
}

.account-main .input input:focus ~ label {
	color: #2d2d2d;
}

.account-main .input input:focus {
	border-color: #e7e7e7 !important;
}

.account-panels {
	padding: 0 0 20px;
}

.account-panels--grid {
	margin: 0 -10px 0 0;
}

.account-panel {
	width: 33.3333333333%;
	float: left;
	padding: 0 10px 10px 0;
}

.account-panel--inner {
	display: block;
	border: 1px solid #aaa;
	padding: 12px 15px;
	color: #2d2d2d;
}

.account-panel--inner:hover {
	text-decoration: none;
}

.account-panel--label {
	font-size: 12px;
	color: #707070;
	padding: 0 0 5px;
	text-transform: uppercase;
	display: block;
}

.account-panel:hover .account-panel--svg {
	background: #555;
}

.account-panel--svg {
	width: 20px;
	height: 20px;
	float: right;
	background-color: #5d3385;
	border-radius: 10px;
	transition: .3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.account-panel--svg svg path {
	fill: #fff;
}

.account-panels--wide .account-panel {
	width: 25%;
}

.account-table {
	width: 100%;
	border: 1px solid #aaa;
	table-layout: auto;
	margin: 0 0 30px;
}

.account-table a {
	color: #707070;
}

.account-table a:hover {
	color: #2d2d2d;
}

.account-table .button-xsmall,
.account-table .button-xsmall:hover {
	color: #e71f25;
	text-decoration: none;
}

.account-table.no-margin {
	margin: 0;
}

.account-table .dblc {
	padding: 12px 15px;
	color: #2d2d2d;
	font-size: 12px;
	border-bottom: 1px solid #aaa;
}

.account-table .dblr:last-child .dblc {
	border-bottom: none;
}

.account-table .dblc.small {
	width: 1px;
}

.account-table .dblc.full {
	width: 100%;
}

.account-table .dblr:first-child .dblc {
	color: #707070;
	text-transform: uppercase;
    white-space: nowrap;
}

.account-table--label {
	color: #707070;
	font-size: 12px;
	text-transform: uppercase;
}

.account-table--value {
	color: #2d2d2d;
	line-height: 15px;
	padding: 4px 0 0;
	font-size: 12px;
}

.account-invoices h1 {
	margin: 0;
}

.account-invoices .message-error {
	margin: 0;
}

.account-invoices-outstanding {
	padding-bottom: 10px;
}

.account-invoices-outstanding .account-table-invoices {
	margin: 15px 0;
}

.account-invoices-outstanding .pay-btn {
	margin-bottom: 10px;
}

.account-table-invoices .dblc:first-child {
	padding-right: 0;
	vertical-align: middle;
}

.account-table-invoices [type="checkbox"] {
	display: block;
}


.account-latest-orders {
	border: 1px solid #aaa;
	font-size: 11px;
	color: #5d3385;
	text-align: center;
	padding: 12px;
	border-top: none;
}

.order-totals {
	border: 1px solid #aaa;
	padding: 15px 24px;
	text-align: right;
	font-size: 13px;
	color: #707070;
	text-transform: uppercase;
	margin: 0 0 30px;
	border-top: 0;
}

.order-totals .dbl {
	width: 140px;
	float: right;
}

.order-totals .dblc {
	padding: 5px 0;
}

.order-totals .dblc:first-child {
	text-align: left;
}

.order-totals .dblr:last-child {
	color: #2d2d2d;
	font-weight: 600;
}

.order-panels {
	padding: 0 0 30px;
}

.order-panels--grid {
	margin: 0 -10px 0 0;
}

.order-panels .message-error {
	margin: -10px 0 30px;
}

.order-panel {
	width: 33.3333333%;
	padding: 0 10px 0 0;
	font-size: 12px;
	float: left;
}

.order-panel--inner {
	border: 1px solid #aaa;
	padding: 12px 15px;
}

.order-panel--data {
	padding: 0 0 10px;
}

.order-panel--data:last-child {
	padding: 0;
}

.order-btns {
	margin: 30px 0 0 0;
}

.loyalty-table-cont {
	overflow: hidden;
}

.loyalty-table {
	table-layout: auto;
	margin-bottom: 20px;
	border: 1px solid #aaa;
}

.loyalty-table .dblc {
	padding: 12px 15px;
	font-size: 12px;
}

.loyalty-table .dblc:not(:last-child) {
	border-right: 1px solid #aaa;
}

.loyalty-table .full {
	width: 100%;
}

.loyalty-table .small {
    white-space: nowrap;
}

.loyalty-point--cont {
	width: 160px;
	float: left;
	text-align: center;
}

.loyalty-point {
	margin: 16px auto 0;
	border: 1px solid #aaa;
	border-radius: 30px;
	padding: 10px 15px;
	color: #2d2d2d;
	font-size: 12px;
	display: inline-block;
	background-color: #e7e7e7;
	line-height: normal;
}

.top-loyalty {
	position: relative;
	padding: 0 0 40px;
	z-index: 1;
}

.loyalty {
	position: relative;
	z-index: 1;
}

.top-loyalty--text {
	border: 1px solid #aaa;
	overflow: hidden;
	font-size: 13px;
    padding: 12px 15px;
	color: #707070;
}

.top-loyalty--text span {
	color: #2d2d2d;
}

.top-loyalty:before,
.loyalty:before {
	content: '';
	z-index: -1;
	width: 1px;
	position: absolute;
	left: 80px;
	top: 0; bottom: 0;
	background-color: #aaa;
}

.top-loyalty .loyalty-point {
	font-size: 14px;
	color: #2d2d2d;
	margin: 0;
}

.account-login--checkbox-cont span {
	display: block;
	font-size: 11px;
	padding: 8px 0 0;
}

.account-details--title-text {
	font-size: 12px;
	color: #707070;
	padding: 0 0 20px;
	clear: both;
}

.account-details--block {
	border: 1px solid #aaa;
	padding: 12px 15px;
	margin: 0 0 10px;
}

.account-details--block .dblc {
	padding: 5px;
}

.account-details--block-action {
	padding: 5px 0 5px 0;
}

.account-login .container {
	max-width: 620px;
}

.account-login--block {
	padding: 30px 40px 35px;
	background: #ebebeb;
	margin: 20px 0;
	color: #707070;
}
.account-login--block .message {
	margin-top: 0;
}

.account-login--block h3 {
	font-size: 24px;
	font-weight: normal;
	padding-bottom: 8px;
	color: #2d2d2d;
}

.account-login--block p {
	font-size: 13px;
	margin-bottom: 20px;
}

.account-login--section {
	margin-bottom: 20px;
}

.account-login--block .input {
}

.account-login--block .input > .input-label {
	width:100%;
	padding-right: 32px;
	pointer-events: all;
}

.account-login--block .form-note {
	padding: 0;
}

.account-login--buttons {

}

.account-login--buttons .form-note {
	text-transform: uppercase;
}

.login-toggle {
	margin-left: 10px;
	cursor: pointer;
}

.account-signup {

}

.form-forgot .input {
	margin: 0;
}
.form-forgot input[type="submit"] {
	margin-left: 10px;
}

.account-login--trade {
	margin: 15px 0 -2px;
}

.account-comms--preferences-subtitle {
	margin-bottom: 8px;
}

.account-comms--preferences {
	padding: 20px;
}

.account-comms--preferences .input-grid {
	padding-left: 8px;
}

.account-comms--preferences-inner {
	padding: 0 0 10px 10px;
}

.quote-side {
	width: 50%;
	float: right;
}

.quote-side .cart-segment {
	margin-bottom: 20px;
	border: 1px solid #1e1e1e;
	background: none;
}

.quote-side .cart--heading {
	color: #fff;
}

.quote-side .cart-segment {
	margin-bottom: 0;
}

.quote-side .cart-segment + .cart-totals {
	border-top: 0;
}

.quote-side .cart-totals {
	color: #707070;
}

.quote-side .cart-total {
	color: #fff;
}



/*
|--------------------------------------------------------------------------
| Account v2 > Overlays
|--------------------------------------------------------------------------
*/
.modal-account .modal--inner {
	max-width: 476px;
}

.account-modal {
	background-color: #2d2d2d;
	padding: 30px;
}

.account-modal .checkbox-label {
	color: #fff;
}

.account-modal .input {
	margin: 0 0 4px;
}

.account-modal--title {
	font-size: 21px;
	color: #fff;
	padding: 0 0 20px;
}

.account-modal--action {
	text-align: right;
	padding: 16px 0 0 0;
}

.account-modal--action .button {
	font-size: 14px;
}

.address-block--grid {
	margin: 0 -10px 0 0;
}

.address-block,
.address-block--add {
	float: left;
	padding: 0 10px 10px 0;
	color: #2d2d2d;
}

.address-block--title {
	font-size: 11px;
	color: #707070;
	padding: 0 0 4px;
}

.address-block--inner {
	border: 1px solid #aaa;
	padding: 12px 15px;
}

.address-block__primary .address-block--inner {
	border-color: #2d2d2d;
}

.address-block--address {
	font-size: 12px;
}

.address-block--action {
	padding: 20px 0 0 0;
}

.address-block--action a,
.address-block--action button,
.address-block--action {
	font-size: 10px;
	color: #707070;
}

.address-block--action button {
	background: 0;
	font-family: inherit;
	text-align: left;
}

.address-block--action button:hover {
	text-decoration: underline;
}

.account-modal--checkboxes {
	padding: 14px 0 0 0;
}

.account-modal--checkboxes-title {
	font-size: 11px;
	color: #707070;
	text-transform: uppercase;
	padding: 0 0 4px;
}

.address-block--add-inner {
	position: relative;
	border: 1px solid #aaa;
	text-align: center;
	height: 100px;
	cursor: pointer;
}

.address-block--add-wrap {
	position: absolute;
	top: 50%;
	left: 0; right: 0;
	transform: translateY(-50%);
}

.address-block--add-wrap,
.address-block--add-wrap svg path {
	transition: .3s ease;
}

.address-block--add-title {
	font-size: 14px;
	color: #666;
}

.address-block--add-wrap svg path {
	fill: #666;
}

.address-block--add-inner:hover {
	border-color: #999;
}

.address-block--add-inner:hover .address-block--add-title {
	color: #555;
}

.address-block--add-inner:hover svg path {
	fill: #555;
}

.no-margin {
	margin: 0;
}

.mobile-cats {
	display: none;
	padding: 0 0 20px;
}

.mobile-cats--title {
	position: relative;
	font-size: 24px;
	padding: 10px 16px;
	background-color: #2d2d2d;
	margin: 0 0 10px;
}

.mobile-cats--title svg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 16px;
	transform-origin: center;
}

.mobile-cats a {
	padding: 10px;
	color: #fff;
}

.mobile-cats a.sel {
	color: #5d3385;
}

.mobile-cats--cats {
	display: none;
}

.mobile-cats--title.open {
	color: #5d3385;
}

.mobile-cats--title.open svg {
	transform: rotate(-180deg);
}

.mobile-cats--title.open ~ .mobile-cats--cats {
	display: block;
}



/*
|--------------------------------------------------------------------------
| Account v2 > Vouchers
|--------------------------------------------------------------------------
*/
 .button.voucher_remove {
	border-radius: 0;
	padding: 12px 12px;
	visibility: middle;
	background-image: url(/images/style/party/cross-white.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	background-color: #707070;
}

.button.voucher_remove:hover {
	background-color: #2f2f2f;
}

.voucher.dblr .dblc {
	vertical-align: middle;
}

.voucher.dblr .dblc:last-child {
	text-align: right;
}

.vouchers-wrapper {
	padding-top: 20px;
}

.voucher_add {
	/*height: 50px;*/
}

.input #voucher_add {
	right: 4px;
}

.checkout-title.no_border {
	border: none;
}

.account-box--voucher .account-subtitle {
	padding: 0 0 10px;
}

.account-box--voucher {
	border: 1px solid #aaa;
	padding: 12px 15px;
	margin-bottom: 12px;
}

.account-box--voucher .input {
	margin-bottom: 0;
}

.account-box .xvc_input {
    max-width: none;
}

.account-table.vouchers .dblc span {
	display: none;
}

.account-table.vouchers .dblc.small {
	width: auto;
}

.account-table.vouchers {
	margin: 0 0 20px;
}

.account-modal--text {
	margin-bottom: 10px;
}

.account-table.vouchers .dblc .voucher-code--small {
	display: block;
	font-size: 10px;
	color: #717171;
	line-height: normal;
}

.page_numbers_inner {
	display: flex;
	justify-content: center;
}

.page-num-cont {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
}

.page-num-cont .page_number {
	margin-bottom: 5px;
}



/*
|--------------------------------------------------------------------------
| Listing > Video
|--------------------------------------------------------------------------
*/

.listing-video {
	padding: 4px;
	margin: 20px 0 0 0;
	background-color: #fff;
}

.listing-video--inner {
	position: relative;
	padding-bottom: 56.25%;
	cursor: pointer;
}

.listing-video iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}

#listing-options-overlay.overlay {
	/* position: absolute; */
    background: none;
	overflow-y: auto;
}

#listing-options-overlay .overlay--backdrop {
	position: fixed;
	top: 0;right: 0;bottom: 0;left: 0;
    background-color: rgba(102, 102, 102, 0.85);
}

#listing-overlay .overlay--inner, #listing-options-overlay .overlay--inner {
	width: 760px;
    max-width: 95%;
	padding: 0;
}
#listing-overlay .overlay--header {
    display: flex;
	background-color: transparent;
}
#listing-overlay .overlay--basket .overlay--header--text {
    flex-direction: row;
    align-items: center;
	text-align: center;
}
#listing-overlay .overlay--header--text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	flex-wrap: wrap;
}
.overlay--basket-header {
    display: flex;
    align-items: center;
    background-color: transparent;
    width: 100%;
    padding: 25px 35px;
	border-bottom: 1px solid #d9d9d9;
}
#listing-overlay .overlay-tick-icon {
    height: auto;
}
#listing-overlay .overlay-tick-icon svg {
	fill: #fff;
}
.overlay-tick-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
}
#listing-overlay .overlay--basket-title {
	flex: 1;
	color: #5d3385;
	font-size: 18px;
	font-weight: 400;
}
#listing-overlay .overlay--basket-title span {
	font-weight: 700;
}
.overlay--header-action {
    display: flex;
    margin: 10px 0 0 0;
    justify-content: space-between;
}
.overlay--header-action.center {
	justify-content: center;
}
.overlay--header-action > .button {
    width: calc(50% - 5px);
    text-transform: uppercase;
    padding: 12px 15px;
}
.overlay--header-action > .button.button-secondary {
    padding: 10px 15px;
}
.overlay--basket--error {
    background-color: #e71f25!important;
	border-radius: 5px 5px 0 0;
}
.overlay--basket--error > div {
    flex-direction: column!important;
    text-align: center;
    align-items: center!important;
    width: 100%;
    padding: 20px;
}
.overlay--basket--error .message-error {
    background-color: transparent;
	padding: 0;
	margin: 10px 0 0;
}
#listing-overlay .overlay--basket--error .overlay--basket-title {
	color: #fff!important;
}
.overlay--basket ~ .overlay--header-action {
    padding: 0 10px 10px 10px;
}

.overlay--header-upsells {
    width: 100%;
}

#listing-options-overlay .overlay-listing--main {
    padding: 25px;
}
#listing-options-overlay .listing-overview--top-inner h2, #listing-options-overlay .options_container_radio.grid--10 > .options_text {
    margin-bottom: 10px;
}
#listing-options-overlay .options_container_radio.grid--10 > .options_text {
	margin-bottom: 5px;
	margin-left: 0;
	font-size: 13px;
}
#listing-options-overlay .listing-share {
	display: none
}
#listing-options-overlay .options_text.selection-message {
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
}
#listing-options-overlay .listing-price--outer {
    padding-top: 0;
	margin-bottom: 10px;
}
#listing-options-overlay .listing-overview--top-inner h1 {
    font-size: 26px;
    line-height: 1.2;
}
#listing-options-overlay .listing-buy {
    margin-top: 20px;
	width: 100%;
}
#listing-options-overlay .listing-deadline > svg {
    margin-right: 5px;
}
#listing-options-overlay .listing-deadline {
    margin: 15px 0;
	width: 100%;
	display: flex!important;
}
#listing-options-overlay .form-options {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
#listing-options-overlay .listing-checkboxes--container, 
#listing-options-overlay .options_text.selection-message + .listing-overlay--stock {
    display: none;
}
.listing-overlay--stock {
	margin-top: 10px;
    padding-bottom: 0;
    text-align: center;
}


.listing-overview--left, .listing-overview--right {
	display: flex;
    flex-direction: column;
	align-items: flex-start;
}
.listing-overview--right {
	text-align: left;
	flex: 1;
}
.listing-overview--left {
	text-align: right;
}
.listing-overview--left > div {
    width: 100%;
}
.listing-overview--left .listing-price--outer {
	text-align: right!important;
	justify-content: flex-end!important;
}
.listing-overview--right > h1 {
	font-size: 18px;
}
.listing-overview--right .listing-swatches {
    justify-content: flex-start!important;
}
.listing-overview--right .listing-swatch {
    padding: 0 5px 5px 0;
    width: 30px;
}
.listing-overview--right .listing-swatch__content::after {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}
.listing-overview--left {
    width: 345px;
    margin-right: 20px;
}
.listing-overview--left h1 {
    font-size: 16px;
    text-align: left;
	margin-bottom: 5px;
}
.listing-overview--left h2 {
    font-size: 15px;
    text-align: left;
    color: #e6007e;
    font-weight: 500;
	margin-bottom: 5px;
}

.listing-overview--left .listing-price {
    font-size: 28px;
}

.listing-overview--right > div {
    width: 100%;
}
.listing-overview--right .listing-details {
	padding: 0 0 10px 0;
	font-size: 13px;
}
.listing-overview--right .options_container_radio {
    justify-content: flex-start;
}
.listing-overview--right .input-listing-qty span {
    width: 35px;
}
.listing-overview--right .input.input-listing-qty input[type="number"] {
    width: 145px;
	padding: 10.5px 47px;
}
.listing-overview--right .input-listing-qty span.input-qty--more {
  	margin: 3px 0 3px -38px;
}
.listing-overview--right .input-listing-qty span.input-qty--less {
    margin: 3px -38px 3px 0;
}
.listing-overview--right .option-radio-adjust .option-radio__inner {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 10px;
}
.listing-overview--right .add-to-basket-button {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    flex: 1;
}
.listing-overview--right .add-to-basket-button:disabled > span {
    display: none;
}
.listing-overview--right .add-to-basket-button:disabled::after {
	content: 'OUT OF STOCK'; 
	position: relative;
}
.listing-overview--right .listing-side-blocks {
    width: 100%;
}
.listing-overview--right .listing-side-block {
    border: 1px solid #ececec!important;
}
.listing-overview--img {
	margin-bottom: 12px;
}
.listing-overview--right .listing-notify .button {
    margin-top: 15px;
    margin-bottom: 0;
	width: 100%;
}
.listing-overview--right .option-radio {
    width: 100%;
    max-width: 100%;
    flex: auto;
}
.listing-overview--left .listing-rrp {
	margin: 0;
}

.account-wallet-passes {
	margin: 0 0 30px;
}

.account-wallet-passes .apple img {
	width: 193px;
    height: 61px;
}

.account-wallet-passes .apple {
	margin-right: 10px;
}

.account-wallet-passes .android img {
    height: 61px;
}

.account-wallet-passes .flex {
	margin-top: 10px;
}

.content-container:last-child {
    margin-bottom: 20px;
}
.mob-rm--toggle {
    display: none;
	cursor: pointer;
}
.mob-rm--toggle::before {
	content: 'Read More';
	position: relative;
}
.mob-rm.open + .mob-rm--toggle::before {
	content: 'Read Less';
}
.mob-rm--toggle::after {
	content: ''; 
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.02 8.24"><title>arrow-d</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path d="M7.56,8,13.8,1.77a.77.77,0,0,0,0-1.08L13.34.23a.77.77,0,0,0-1.08,0L7,5.47,1.77.22A.77.77,0,0,0,.68.22L.22.68a.77.77,0,0,0,0,1.08L6.47,8A.77.77,0,0,0,7.56,8Z"></path></g></g></svg>') no-repeat center center;
	background-size: contain;
	width: 12px; height: 12px;
	-webkit-transition: ease-in-out .2s;
	transition: ease-in-out .2s;
}
.mob-rm.open + .mob-rm--toggle::after {
	transform: rotate(180deg);
}


.mc-signup-popup {
	display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
	z-index: 10000;
}
.mc-signup-popup--backdrop {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-color: rgba(0, 0, 0, 0.6);
}
.mc-signup-popup--inner {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(180deg, #8B4BC4 0%, #7540A6 50%, #5E3385 75%, #321B47 100%);
	padding: 50px 80px;
	max-width: 861px;
	width: calc(100% - 40px);
	border: 4px solid #FFF;
	border-radius: 12px;
	color: #FFF;
}
.mc-signup-popup--inner::before {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	background-image: url('data:image/svg+xml,<svg width="1003" height="614" viewBox="0 0 1003 614" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="108" cy="324" r="108" fill="url(%23paint0_linear_1564_141)" fill-opacity="0.1"/><circle cx="281" cy="108" r="108" fill="url(%23paint1_linear_1564_141)" fill-opacity="0.1"/><circle cx="596" cy="334.796" r="108" fill="url(%23paint2_linear_1564_141)" fill-opacity="0.1"/><circle cx="775" cy="117.796" r="108" fill="url(%23paint3_linear_1564_141)" fill-opacity="0.1"/><circle cx="895" cy="373.796" r="108" fill="url(%23paint4_linear_1564_141)" fill-opacity="0.1"/><circle cx="330" cy="505.796" r="108" fill="url(%23paint5_linear_1564_141)" fill-opacity="0.1"/><defs><linearGradient id="paint0_linear_1564_141" x1="108" y1="216" x2="108" y2="432" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="0.9087" stop-color="white" stop-opacity="0"/></linearGradient><linearGradient id="paint1_linear_1564_141" x1="281" y1="0" x2="281" y2="216" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="0.9087" stop-color="white" stop-opacity="0"/></linearGradient><linearGradient id="paint2_linear_1564_141" x1="596" y1="226.796" x2="596" y2="442.796" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="0.9087" stop-color="white" stop-opacity="0"/></linearGradient><linearGradient id="paint3_linear_1564_141" x1="775" y1="9.7959" x2="775" y2="225.796" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="0.9087" stop-color="white" stop-opacity="0"/></linearGradient><linearGradient id="paint4_linear_1564_141" x1="895" y1="265.796" x2="895" y2="481.796" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="0.9087" stop-color="white" stop-opacity="0"/></linearGradient><linearGradient id="paint5_linear_1564_141" x1="330" y1="397.796" x2="330" y2="613.796" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="0.9087" stop-color="white" stop-opacity="0"/></linearGradient></defs></svg>');
	background-position: center center;
}
.mc-signup-popup--inner > * {
	position: relative;
	z-index: 1;
}
.mc-signup-popup--close {
    position: absolute;
    display: flex;
    top: 6px; right: 6px;
    cursor: pointer;
    -webkit-transition: ease-in-out .2s;
    transition: ease-in-out .2s;
}
.mc-signup-popup--titles {
	text-align: center;
}
.mc-signup-popup--title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}
.mc-signup-popup--subtitle {
    font-size: 16px;
    margin-bottom: 24px;
}
.mc-signup-popup--inner > form {
    width: 100%;
    max-width: 530px;
}
.mc-signup-popup--inner > form .input input {
    font-size: 14px;
    border-radius: 4px;
    padding: 12px !important;
}
.mc-signup-popup--inner > form p {
	font-size: 12px;
}
.mc-signup-popup--action {
    margin-top: 20px;
}
.mc-signup-popup .input-grid {
    margin: 0;
}
.mc-signup-popup .input-grid .input {
	padding: 0;
}
.mc-signup-popup--action > input[type="text"] {
	display: none!important;
}
.mc-signup-popup--action > input[type="submit"] {
    font-weight: 600;
    background-color: #E71F25;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 0.02em;
    padding: 11px 32px 12px;
}
.mc-signup-popup--action > input[type="submit"]:hover {
	background-color: #b5191e;
}
.mc-signup-popup.mc-signup-success .mc-signup-popup--titles, 
.mc-signup-popup.mc-signup-success form .input-grid > *:not(#mce-responses) {
    display: none;
}
.mc-signup-popup--success {
    font-size: 16px;
    text-align: center;
}
.mc-signup-popup--error {
    font-size: 16px;
    text-align: center;
    background-color: #6B0505;
    padding: 10px;
    margin-bottom: 10px;
}
.asterisk {
    color: #FB2C36;
}