/*Controllers*/

:root {
	--colour-red: #DB1935;

	--colour-black: #161C20;
	--colour-dark: #161C20;
	--colour-grey: #BEC5CF;
	--colour-light: #F5F3F2;
	--colour-white: #FFFFFF;

	--colour-text: #45494D;

	--font-heading: "europa", sans-serif;
	--font-body: "europa", sans-serif;
	--font-tall: "rift", sans-serif;
	--font-awesome: "Font Awesome 6 Pro", 'Font Awesome 5 Pro';
	--font-awesome-kit: "Font Awesome Kit";

	--frame-width: calc(100% - 200px);
	--frame-max-width: 1400px;
	--frame-pad: 100px;
	--frame-expad: 50px;

	--pad-small: 30px;
	--pad-mid: 50px;
	--pad-big: 90px;
	--pad-huge: 120px;

	--transition-fast: all 0.15s cubic-bezier(0,0,0.1,0.9);
	--transition: all 0.3s cubic-bezier(0,0,0.1,0.9);
	--transition-slow: all 0.65s cubic-bezier(0.15, 0.05, 0.1, 0.9);
}

.cb.plain {
	position: absolute !important;
	opacity: 0.3;
}
.cb.plain:hover {
	opacity: 1;
}
.cb.plain .cb-link .button {
	padding: 6px 12px !important;
}
.global-danger {
    display: none;
}

/***Main CSS***/
body {
	background-color:#FFF;
}
.body {
	padding: 80px 0;
}
.frame {
	width: 1400px;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, .h5, h5 {
}
h1,.h1 {
	font-size: 42px;
	line-height: 38px;
}
.text-black{
	color: #000;
}

.button {
	background: none;
	border-radius: 0;
	border: 2px solid #aaa;
    font-family: "europa", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #aaa;
}
.button:hover {
	background: #888;
	border: 2px solid #888;
	color: #fff;
}

/*Header*/
.header {
	padding: 22px 25px;
    border-bottom: 1px solid #ddd;
}
.header .frame {
	width: 100%;
}
.header .logo-wrap {
	text-align: center;
}
.header .head-cart-data .fa {
	color:#90469b;
}
.header .col-slogan {
	text-align: right;
}
.header-title {
	padding: 40px 0;
	background-color: #EEE;
}
.header-title h1 {
	margin: 0;
}
.copyright {
	background-color:#9e46ab;
	color: #FFF;
	border-bottom: none;
}

.header .coltable > .col {
    vertical-align: middle;
}
.header .coltable .col-logo {
	width: 300px;
    min-width: 300px;
}
.header .coltable .col-nav {
	width: 100%;
    text-align: right;
}
.header .logo-wrap {
	text-align: left;
}
.header .logo {
	height: 40px;
	max-width: 300px;
    position: relative;
    bottom: -8px;
}

/* Navigation */
.navigation {
	background-color: #fff !important;
	border: none;
}

.col-nav ul.menu,
.col-nav .search-button {
    display: inline-block;
    vertical-align: middle;
}

ul.menu .fab {
	font-size: 24px;
}
ul.menu .mobile-nav + li {
	background-color: unset!important;
	border: none!important;
}
ul.menu li .menulink {
	color: #666;
	background-color: unset!important;
	border: none;
	padding: 10px 0px 11px;
    margin: 0 20px;
    letter-spacing: 2px;
    position: relative;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    font-family: "europa", sans-serif;
}
ul.menu .menulink::after {
    position: absolute;
	display: block;
	content: '';
    bottom: -25px;
    left: 50%;
	width: 0%;
	height: 4px;
    transform: translateX(-50%);
	margin: 0 auto;
	background-position: center;
	background-color: #DF1F39;
	transition: all 0.6s cubic-bezier(.09, .29, .28, .99) 0s;
}
ul.menu .menulink:hover::after {
	width: 100%;
    transition: all 0.2s cubic-bezier(.09, .29, .28, .99) 0s;
}
ul.menu .menulink:hover {
	color: #111;
}

.search-button .button-wrapper {
	padding-left: 25px;
}
.search-button .button {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    font-family: "europa", sans-serif;
	background-color: #fff;
	border: 2px solid #ccc;
	border-radius: 100px;
	padding: 10px 50px 12px;
	background-image: url("images/button-bg.png")!important;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.search-button .button:hover
{
    border-radius: 100px!important;
}
.search-button .button.gradient-animation::before
{
    border-radius: 100px!important;
}

/*Dropdown*/
ul.menu ul {
	top:43px;
	left: 0;
	width: 100%;
}
ul.menu ul li {
	text-align: center;
	border-color:#ccc;
	background-color: #ddd;
	width: 100%;
}
ul.menu ul li a {
	color: #999;
	font-size: 12px;
	font-weight: 100px;
	letter-spacing: 0.5px;
}
ul.menu ul li:hover,
ul.menu ul li:hover a {
	background-color: #fff !important;
}

/*Banner*/
.banner {
	background-image: url(images/bg-banner.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding:0;
}
.banner > .frame {
	padding:0;
}
.banner h1,
.banner .h1 {
	color:#fff;
	font-weight:700;
	font-size:50px;
	text-transform: uppercase;
	letter-spacing: -1px;
	margin: 0 0 10px;
}
.banner h2,
.banner .h2 {
	font-weight: 100;
	font-size: 26px;
	line-height: 26px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.banner .bt .button {
	background-color:rgba(0,0,0,0);
	font-size:18px;
	padding:10px 20px;
	border:2px solid #eee;
	text-decoration:none;
	font-weight: 500;
	letter-spacing: 2px;
	color: #fff;
}
.banner .bt .button .fa {
	position: relative;
	top:-2px;
}
.banner .bt .button:hover {
	border:2px solid #FFF;
	background-color:#fff;
	color:#333;
}

.banner .slide .slide-inner {
	background-color: rgba(0,0,0,0.3);
	text-shadow: none;
}
.banner .slider-wrapper {
    box-shadow: none;
}

.sssnext, .sssprev {
    width: 50px !important;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    background-image: url('/web/template/default/assets/sss/images/brr.png') !important;
    z-index: 1000;
	transition: all 0.2s ease-out 0s;
}
.sssprev {
    left: 3%;
    background-position: 0 50% !important;
}
.sssnext {
    right: 3%;
    background-position: -50px 50% !important;
}
.sssprev:hover {
    left: 2.7%;
}
.sssnext:hover {
    right: 2.7%;
}
.sssprev:active {
    left: 2%;
}
.sssnext:active {
    right: 2%;
}

/* Main Slider Controls */
.slider-wrapper .tns-outer {
	position: relative;
}
.slider-wrapper .tns-controls {
	position: absolute;
	top: calc(50% - 25px);
	left: 0;
	right: 0;
	display: flex;
	transition: var(--transition);
	justify-content: space-between;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
}
.slider-wrapper:hover .tns-controls {
	left: -10px;
	right: -10px;
	visibility: visible;
	opacity: 1;
}
.slider-wrapper .tns-controls button {
	pointer-events: all;
	padding: 0;
	width: 50px;
	height: 50px;
	font-size: 0px;
	border: none !important;
	border-radius: 35px;
	text-indent: -9999px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
	background-color: var(--colour-white);
	color: var(--colour-red);
}
.slider-wrapper .tns-controls button[disabled=""] {
	pointer-events: none;
	color: #aaa;
}
.slider-wrapper .tns-controls button:hover {
	border-radius: 35px !important;
	background-color: var(--colour-red);
	color: var(--colour-white) !important;
}
.slider-wrapper .tns-controls button::before {
	content: "";
	font-family: var(--font-awesome);
	text-indent: 0;
	font-size: 18px;
	font-weight: 500;
}
.slider-wrapper .tns-controls button:first-of-type::before {
	content: "\f060";
}
.slider-wrapper .tns-controls button:last-of-type::before {
	content: "\f061";
}

/*Elements*/
.html-style ul li::before, ul.bullet li::before, ul.bullet-list li::before {
	color: #CCC;
}
.faq:hover {
	border-color:#068ed0;
}
.faq:hover h3,
.faq:hover h3::before {
	color:#068ed0;
}

/*Index Assets*/
.homebox  {

}
.homebox .col {
	padding: 10px;
}
.homebox .col img {
	vertical-align: top;
	width: 100%;
}
.homebox .col .hb-text {
	padding: 35px 40px;
	background: linear-gradient(to top, #fff, #f3f3f3);
}
.homebox .col .hb-text h3 {
	font-size: 22px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0 0 10px;
	font-weight: 600;
}
.homebox .col .hb-text p {
	text-align: justify;
	font-size: 12px;
	line-height: 24px;
	color: #888;
}
.homebox .col .hb-text p a.button {
	padding: 5px 15px;
	border-radius: 0;
	border-color: #bbb;
}

/* Global Footer */
.global-contact {
	background-color: #EEE;
	padding: 5px;
	font-size: 14px;
}
.global-contact .item {
	overflow: hidden;
}
.global-contact .item li {
	list-style: none;
	float: left;
	margin-right: 10px;
	color: #999;
}
.global-contact .item li a {
	color: #999;
}

/* Footer */
.footer {
	background-color:#90469b;
/*	background: url(images/bg-foot-glass-right.png) bottom right, url(images/bg-foot-glass-left.png) bottom left #90469b;*/
	background-repeat: no-repeat;
	background-size: contain;
	color: #FFF;
	padding:60px 0 70px;
	border-top: 1px solid #9e46ab;
}
.footer .foot-menu {
	border: none;
}
.footer .h4,
.footer p {
	color:#FFF;
}
.footer .h4 {
	font-size: 24px;
	margin: 0;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #888;
}
.footer .break {
	width: 80px;
	height: 2px;
	margin: 20px 0 20px;
	border-radius: 10px;
	background-color: #999;
}
.footer .foot-menu {
	margin: 0;
	padding-top: 0;
	padding-right:20px;
}
.footer .foot-menu > li a {
	padding: 8px 0;
	border: none;
	font-weight: 400;
	letter-spacing: 1px;
	border-color:#0d63a1;
	font-size: 14px;
	color: #888;
}
.footer .foot-menu > li a:hover {
	border: none !important;
	color: #DF1F39;
}
.footer .foot-product-wrap {
	background-color: #FFF;
	box-sizing: border-box;
	border-radius: 8px;
	overflow: hidden;
	color: #000;
}
.footer .foot-product-wrap .h4 {
	font-size: 24px;
	color: #90469b;
}
.footer .foot-product-wrap a {
	color: #068ed0;
	text-decoration: none;
}
.footer .foot-product-wrap p {
	color:#999;
	margin: 0;
}
.copyright a {
	color: #FFF;
}

/* Buttons */
.button {
	padding:8px 20px 9px;
	border-radius: 4px;
}
.button:hover {
	text-decoration: none !important;
	text-shadow: none !important;
}
.button.bt-outline {
	border-color: #90469b;
	color:#90469b;
}
.button.bt-outline:hover {
	border-color: #90469b !important;
	background-color:#90469b !important;
	color:#FFF !important;
}
input[type="submit"], button {
	background: linear-gradient(to right, #DF1F39, #FF4939);
    border: 1px solid #df1f39;
    color: #fff;
    transition: all 0.2s ease-in-out 0s;
}
input[type="submit"]:hover, button:hover {
	background-color:#652D90;
	border-radius: 0;
	color: #FFF;
	box-shadow: none;
}

.popup-content h2 {
	font-size: 28px;
	font-weight: 300;
}

.hr-mini {
	background-color:#90469b;
	width:50px;
	height:4px;
	border-radius:5px;
	margin:10px 0 20px;
}
.feature-box {
	text-align:center;
}
.feature-box h2 {
	font-size:20px;
}
.feature-box img {
	width:80%;
	vertical-align:top;
}
.feature-box:hover {
	transform:scale(1.1,1.1);
	transition:all 0.2s ease-in-out 0s;
}

/*Section*/
.section-feature {
	padding: 80px 0;
}
.section-variant3 {
	background-color:#006cb9;
}
.section-variant2 {
	background-color:#DDD;
}
.section-variant1 {
	background-color:#EEE;
}
.body .frame > *:last-child {
	margin-bottom:0;
}
.section-feature.sf-variant3 * {
	color:#FFF;
}
.section-feature.sf-variant3 .divide {
	background-color:#FFF;
}
.section-contact-form {
	background-color: #068ed0;
	background-image: url(images/bg-contact.jpg);
}
.section-feature .button.bt-outline {
	color: #FFF;
	border-color:#FFF;
	margin: 0;
	border: 2px solid #FFF;
}
.payment-summary {
	border: none;
	background-color: #652D90;
}
.payment-summary .button {
	border: none;
	background-color: #068ed0;
	color: #FFF;
}
.payment-summary .button:hover {
	background-color: #FFF;
	color: #652D90;
}

/*Element Overrides*/
.product-image-container {
	box-shadow: none;
}

/* Animations */
.gradient-animation
{
	background-size: 100%;
	background-image: linear-gradient(#aaa, #aaa);
	position: relative;
	z-index: 100;
}
.gradient-animation::before
{
	background-image: linear-gradient(to right, #DF1F39, #FF4939);
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	top: 0; left: 0;
	opacity: 0;
	width: 100%;
	z-index: -100;
	transition: opacity 0.2s;
}
.gradient-animation:hover::before
{
	opacity: 1;
}

/*** Button Variants ***/
/* Variant 1 */
.button.btn-variant-1
{
	background: linear-gradient(to right, #DF1F39, #FF4939);
	border: 1px solid #df1f39;
	color: #fff;
	transition: all 0.2s ease-in-out 0s;
}
.button.btn-variant-1:hover
{
	background-color: #aaa!important;
	border: 1px solid #df1f39;
}
/* Variant 2 */
.button.btn-variant-2
{
	background-color: #aaa;
	background-size: 100%;
	border: 1px #999;
	color: #fff;
	transition: all 0.2s ease-in-out 0s;
}
.button.btn-variant-2::before
{
	border-radius: inherit;
	background-image: linear-gradient(to right, #DF1F39, #FF4939);
	content: '';
	display: block;
	height: 100%;
	width: 100px;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.45s;
	opacity: 0;
	z-index: -10;
}
.button.btn-variant-2:hover::before
{
	opacity: 1;
}
.button.btn-variant-2:hover
{
	border-color: #df1f39;
}
/* Variant 3 */
.button.btn-variant-3
{
	background-color: unset;
	border: 2px solid #999!important;
	color: #999;
}
.button.btn-variant-3:hover
{
	background-color: #999;
	color: #eee;
}
/* Variant 5 */
.button.btn-variant-5
{
	border-color: #aaa;
	color: #fff
}

/****** BANNERS ******/
/* Home Banner *//* MAIN */
.page-banner-section {
	/* text-align: center;
    background-position: bottom center !important; */
	background-color: rgba(0, 0, 0, 0.5);
	background-blend-mode: darken;
}
.page-banner-section h1 {
	font-size: 50px;
	line-height: 50px;
	color: #fff;
	font-family: 'poppins', sans-serif;
	font-weight: 600;
}
.page-banner-section .button-wrapper{
	text-align: center;
}

.page-banner-section > .col-sm-12 {
    /* background-color: rgba(0,0,0,0.3); */
    height: 600px;
	padding: 0;
}
.page-banner-section .pb-column {
	position: absolute;
    padding: 25px;
    width: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(50%);

}
.page-banner-section h2 {
	text-transform: uppercase;
	color: #fff;
	font-family: 'poppins', sans-serif;
	font-weight: 400;
    font-size: 32px;
    line-height: 32px;
}
.page-banner-section h2 em {
	font-style: normal;
    margin: 0 8px;
    font-weight: 200;
}

.page-banner-section .button.nz-alt {
    background: #DE223C;
    border-color: #DE223C;
}


/*** PAGES ***/
/* Home */
.subtitle-section
{
    padding: 45px 120px!important;
}
.subtitle-section .col-sm-12
{
    padding: 0;
}
.subtitle-section h3
{
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.subtitle-section h3 strong
{
    font-weight: bold;
    color: #DF1F39;
}
.listing-section .col-sm-12
{
    padding: 0;
}

/* Footer */
.footer
{
	padding: 0;
	background-color: #fff;
	border: none;
}
.footer .frame
{
	width: 100%;
}
.footer .col.foot-left
{
	width: 35%;
	padding: 75px;
}
.footer .foot-btn
{
	display: flex;
}
.footer .foot-btn .break
{
	width: 45%;
	margin-left: 45px;
	background-color: #E5E5E5;
}
.footer .foot-left .column
{
	/* margin-top: 75px; */
}
.footer .head.h4
{
	text-transform: capitalize;
	letter-spacing: 1px;
	font-weight: normal;
	color: #666;
}
.footer .head.h4 b
{
	font-weight: normal;
	color: #DF1F39;
}
.footer .foot-menu
{
	padding-top: 35px;
}
.footer .foot-menu > li a
{

}
.footer .col.foot-right
{
	width: 65%;
	padding: 35px;
	background-image: url('images/footer-bg.png');
	background-repeat: no-repeat;
	background-size: 50%;
	background-position: bottom right;
	text-align: right;
}
.footer .foot-right .logo-wrap
{
	max-width: 380px;
	margin-right: 75px;
	margin-left: auto;
	margin-top: 35px;
	text-align: left;
}
.footer .bottom-break
{
	background-color: #DF1F39;
	width: 100%;
	height: 6px;
	margin: 0;
}
.copyright
{
	background-color: unset!important;
	padding-top: 35px;
}
.copyright p
{
	display: flex;
	flex-direction: column;
	text-align: left;
	color: #666;
}
.copyright p a
{
	color: #aaa;
}
.header {
	border-bottom: 1px solid #eee;
}

/** Franchise Finder CSS **/

.zulu-search .frame {

}
.zulu-search .body {
	padding: 0px;
}
.zulu-search .page-structure {
	/* display: flex;
	flex-direction: column; */
}
.coltable.page-structure > .col.col-sidebox {
	/* width: 100%; */
	padding-right: 0px!important;
	/*display: flex;*/
}
.coltable.page-structure > .col.col-sidebox .sidebox {
	margin: 0px;
}
.coltable.page-structure > .col.col-sidebox .sidebox:first-child .form-block {
	display: flex;
}
.coltable.page-structure > .col.col-sidebox .sidebox:first-child {
	flex: 0 0 75%;
	order: 1;
}
.coltable.page-structure > .col.col-sidebox .sidebox:last-child {
	flex: 0 0 25%;
}
.coltable.page-structure > .col.col-sidebox .sidebox:first-child .form-block .field:first-child {
	display: flex;
	flex: 0 0 250px;
}
.coltable.page-structure > .col.col-sidebox .sidebox:first-child .form-block .field:last-child {
	display: flex;
}
.sidebox .sidebox-top {
	padding: 15px;
	margin: 0px;
	font-family: "europa";
	letter-spacing: 0px;
	color: #000;
	font-size: 18px;
}
.coltable.page-structure > .col.col-sidebox .sidebox:first-child .form-block .field:first-child label {
	padding: 15px 30px;
	background: linear-gradient(30deg, #DF1F39, #FF4939);
	color: #FFF;
	font-weight: 500;
	font-family: "europa";
}
.coltable.page-structure > .col.col-sidebox .sidebox:first-child .form-block .field:first-child select {
	text-indent: 10px;
	font-family: "europa";
}
.coltable.page-structure > .col.col-sidebox .sidebox:first-child .form-block .field:last-child input {
	text-indent: 10px;
	font-family: "europa";
	background-color: #F2F2F2;
	letter-spacing: 0px;
	width: 95%;
}
.coltable.page-structure > .col.col-sidebox .sidebox:first-child .form-block .field:last-child button {
	/* width: 5%; */
}
.coltable.page-structure > .col.col-sidebox .sidebox:first-child .sidebox-top,
.coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links:first-child {
	/* display: none; */
}
.coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 10px;
}
.coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li {
	/* flex: 0 0 10%; */
	width: 100%;
	margin: 10px 10px 0px 10px;
}
.coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li > a {
	border: 1px solid #DDD;
	padding: 10px 20px;
	border-radius: 100px;
	text-align: center;
	transition: all 0.2s ease-in-out 0s;
	background: linear-gradient(to right, #DF1F39 0%, #FF4939 50%, #FFF 50%, #FFF 100%);
	background-size: 200%;
	background-position: right;
	box-shadow: unset;
	font-family: "europa";
}
.coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li > a:hover,
.coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li > a.active
 {
	background-position: left;
}
.pro-main h1:first-of-type {
	text-transform: uppercase;
	font-family: "europa";
	color: #888;
	letter-spacing: 8px;
	font-size: 24px;
	text-align: center;
	margin: 0px;
	padding: 10px;
	border-bottom: 1px solid #EEE;
	display: none;
}
.pro-main .sort-box {
	background-color: #FFF;
	border-top: 0px;
	border-bottom: 1px solid #DDD;
	margin: 0px;
}
.pro-main .sort-box .coltable {
	display: flex;
	align-items: center;
}
.pro-main .sort-box .coltable > .col {
	/* width: 50%; */
}
.pro-main .sort-box .coltable > .col:first-child {
	display: flex;
	justify-content: flex-end;
}
.pro-main .sort-box .coltable > .col:first-child .form-block {
	display: flex;
	font-family: "europa", "sans-serif";
}
.pro-main .sort-box .coltable > .col:first-child .form-block .field select,
.pro-main .sort-box .coltable > .col:first-child .form-block .field input {
	font-family: "europa", "sans-serif";
}
.pro-main .sort-box .coltable > .col:first-child .form-block .field input {
	font-size: 16px;
	font-weight: 500;
	padding: 5px 30px;
	border-radius: 100px;
	margin-left: 10px;
	transition: all 0.2s ease-in-out 0s;
	background: linear-gradient(to right, #DF1F39 0%, #FF4939 50%, #FFF 50%, #FFF 100%);
	background-size: 200%;
	background-position: right;
	border: 1px solid #DDD;
	color: #888;
	letter-spacing: 2px;
}
.pro-main .sort-box .coltable > .col:first-child .form-block .field input:hover {
	background-position: left;
	color: #FFF;
}
.pro-main .sort-box .coltable > .col:first-child .form-block .field select {
	padding: 8px!important;
	border-radius: 5px;
	text-transform: capitalize;
}
.pro-main .sort-box .coltable > .col:first-child {
	padding-right: 10px;
	order: 1;
}
.pro-main .sort-box .coltable > .col:last-child {
	padding-left: 10px;
}
.sort-box .col:nth-child(2) p {
	font-family: "proxima-soft", "sans-serif";
}

.zulu-search .product-box.row5 > li {
	width: 20%;
}
.zulu-search .product-box.row4 > li {
	width: 25%;
}
.zulu-search .product-box.row3 > li {
	width: 33.33%;
}

ul.product-box {
	margin: 0px;
	padding: 0px;
    background:none;
	display: flex;
	flex-wrap: wrap
}
ul.product-box > li {
	display: flex;
}
.product-box > li > .box {
    margin: 12px;
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border: 1px solid #DDD;
    background-color: #fff;
}
.product-box .image {
	margin-bottom: 0px;
}
.product-box .pro-body {
    width: 100%;
    padding: 20px;
    border-top: 1px solid #ddd;
}
.product-box .options {
	margin:20px 0 0;
	padding:15px 0 0;
	border-top:1px solid #EEE;
}
.product-box .options-price,
.product-box .options-flag {
	width:50%;
	text-align:left;
}
.product-box .options-price span {

}
.product-box .options-flag {
	width:50%;
	text-align:right;
}
.product-box .options-flag img {
	max-width:48px;
	border-radius:8px;
}
.product-box .options-price {
    font-family: "proxima-soft";
	color: #888;
}
.product-box .title {
	color: #888;
    min-height: 0;
}
.product-box > li .box .title a {
	font-family: "europa", "sans-serif";
	text-transform: capitalize;
	font-weight: 400;
	color: #888;
	font-size: 20px;
}
.product-box > li:hover .box {
	box-shadow: unset;
	border-color: #f2334d;
}
.product-box > li:hover .title a {
	color: #000;
}
.zulu-product .listing-header h1 {
	font-family: "proxima-soft", "sans-serif";
	text-transform: capitalize;
	border-bottom: 1px solid #DDD;
	padding-bottom: 15px;
	font-size: 28px;
	font-weight: 500;
	color: #888;
	padding: 20px 0px;
}
.zulu-product .body {
	padding-top: 0px;
	padding-bottom: 0px;
}
p.breadcrumb {
	display: none;
}
.zulu-product .location {
	display: flex;
	align-items: center;
	font-family: "proxima-soft", "sans-serif";
	text-transform: capitalize;
	color: #888;
}
.zulu-product .location i {
	width: 35px;
	height: 35px;
	border-radius: 100px;
	border: 1px solid #DDD;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f2334d;
}
.zulu-product .product-content .col {
	padding: 0px;
}
.price-box .attribute-label {
	display: table;
	padding: 5px 30px;
	border-radius: 100px;
	margin-left: auto;
	font-family: "proxima-soft", "sans-serif";
	color: #FFF;
	background: linear-gradient(to right, #DF1F39, #FF4939);
}
.product-image-container,
.product-image-container .main-link {
	padding: 0px;
}
.contact-info-wrap {
	padding: 40px;
}
.contact-info-wrap i {
	width: 35px;
	height: 35px;
	border: 1px solid #DDD;
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	color: #f2334d;
	font-size: 14px;
}
.contact-info-wrap p {
	font-family: "proxima-soft", "sans-serif";
}
.contact-info-wrap p span,
.contact-info-wrap p a {
	color: #888;
}
.contact-info-wrap h4 {
	font-weight: 500;
	font-family: "europa", "sans-serif";
	font-size: 21px;
}
.zulu-product .form-outer-wrapper {
	padding-left: 40px;
	margin-bottom: 20px;
}
.zulu-product .form-outer-wrapper h2 {
	font-family: "europa", "sans-serif";
	font-weight: 400;
	font-size: 21px;
}
.zulu-product .form-outer-wrapper .form-block {
	border: 1px solid #DDD;
	padding: 20px;
}
.zulu-product .form-outer-wrapper .form-block .field label {
	font-family: "proxima-soft", "sans-serif";
	color: #888;
}
.zulu-product .form-outer-wrapper .form-block .field input,
.zulu-product .form-outer-wrapper .form-block .field textarea {
	border: 0px;
	border-bottom: 1px solid #DDD;
	font-family: "proxima-soft", "sans-serif";
	padding: 15px;
	background-color: transparent;
}
.zulu-product .form-outer-wrapper .form-block .field button {
	border-radius: 100px;
	transition: all 0.2s ease-in-out 0s;
    background: linear-gradient(to right, #DF1F39 0%, #FF4939 50%, transparent 50%, transparent 100%);
    background-size: 201%;
    background-position: right;
	border: 1px solid #DDD;
	color: #888;
	font-family: "europa", "sans-serif";
	font-weight: 400;
	font-size: 16px;
}
.zulu-product .form-outer-wrapper .form-block .field button:hover {
	background-position: left;
	color: #FFF;
}

.zulu-product .product-content .col.product-description {
    color: #777;
    font-weight: 300;
	font-family: "proxima-soft", "sans-serif";
	padding: 30px 0;
    padding-right: 50px;
}
.zulu-product .product-description p strong {
    font-weight: 600;
    color: #555;
}
.zulu-product .product-description ul {
	margin: 0 0 20px;
    list-style: none;
}
.zulu-product .product-description ul li {
	font-size: 16px;
    line-height: 18px;
    margin-bottom: 10px;
    font-weight: 300;
    position: relative;
    padding-left: 25px;
    font-size: inherit;
}
.zulu-product .product-description ul li::before {
	font-family: "Font Awesome 5 Pro";
    content: "\f138";
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 18px;
    font-weight: 200;
    color: #aaa;
}

.zulu-product .body .frame {
	background-color: rgba(255,255,255,0.9);
}
.image-wrap img {
	padding: 0px;
}
.zulu-product hr {
	border-bottom: 1px solid #DDD;
}
.zulu-product .additional-wrap {
	padding: 20px;
	border: 1px solid #DDD;
	border-bottom: 0px;
	padding-bottom: 40px;
}
.zulu-product .additional-wrap h4 {
	font-family: "europa", "sans-serif";
    font-weight: 400;
    font-size: 21px;
}
.zulu-product .additional-wrap td {
	padding: 15px;
	background-color: transparent;
	border-bottom: 1px solid #DDD;
	font-family: "proxima-soft", "sans-serif";
	text-transform: lowercase;
	color: #888;
}
.zulu-product .wrapper-content {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
/*.zulu-product .wrapper-content::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(images/bg-product.jpg);
	background-size: cover;
	background-position: left;
	filter: blur(40px);
	opacity: 0.66;
	z-index: -1;
	transform: scale(1.1);
}*/
.footer {
	position: relative;
	z-index: 10;
}
.country-label {
	text-align:right;
	display:inline-block;
}
.listing-header .col:last-child {
	text-align:right;
}
.listing-header .flag {
	width:70px;
	margin-left:20px;
	border-radius:8px;
}
.zulu-product table.product a {
	padding: 5px 30px;
	border: 1px solid #DDD;
	border-radius: 100px;
	color: #888;
	transition: all 0.2s ease-in-out 0s;
    background: linear-gradient(to right, #DF1F39 0%, #FF4939 50%, transparent 50%, transparent 100%);
    background-size: 200%;
    background-position: right;
}
.zulu-product table.product a:hover {
	color: #FFF;
	background-position: left;
}
.product-image-container {
	background-color: transparent;
/*	background-color: #fff;
*/}
.product-image-container .bx-wrapper{
    margin-bottom: 0;
}
.section-price-contact-form{
    position: relative;
    margin-top: -50px;
    margin-bottom: 20px;
    background-color: #F2F3F6;
    padding: 20px;
    border-radius: 6px;
    z-index: 1;
}
.section-price-contact-form .price-box{
    position: absolute;
    right: 20px;
    margin: 0;
}
.section-price-contact-form .contact-info-wrap{
    padding: 0;
}
.section-price-contact-form .form-outer-wrapper{
    padding-left: 0;
}
.productSlider li{
    height: 100%;
    background-color: #fff;
}
.productSlider img{
    width: 100%;
}
.contact-info-wrap ul > li{
    list-style: none;
    display: inline-block;
    min-width: 49%;
}
.zulu-product .body .frame{
    background-color: #fff;
}
.zulu-product .location{
    font-size: 1.2rem;
}
.zulu-product h1{
    font-size: 3rem !important;
    padding: 40px 0 !important;
    text-transform: uppercase !important;
}
.zulu-product .form-outer-wrapper .form-block{
    border: none;
    padding: 0;
}
.zulu-product .form-outer-wrapper .form-block .field input, .zulu-product .form-outer-wrapper .form-block .field textarea{
    background-color: #fff;
    border: 1px solid #ced4da;
}
.img-count{
    position: absolute;
    z-index: 100;
    margin-top: -40px;
    background-color: #DE1F39;
    padding: 10px 15px;
}

.flip-card {
    border-radius: 5px;
    padding: 40px;
    box-sizing: border-box;
	position: relative;
	border: 1px solid #DDD;
    background-color: #fff;
	margin: 15px 0px;
	flex-grow: 1;
	transition: all 0.2s ease-in-out 0s;
}
.flip-card h3,
.flip-card h5,
.flip-card .h3,
.flip-card .h5 {
	text-align: center;
}
.flip-card h3.fal,
.flip-card h3.fas,
.flip-card h3.far {
	display: block;
	margin: 0 auto;
	margin: 0 0 20px;
}
.flip-card img {
	width: 100%;
	border: 1px solid #DDD;
    border-radius: 5px;
	margin: 30px 0px;
}
.flip-card a {
	text-align: center;
	padding: 10px 20px;
    border-radius: 100px;
    background-color: transparent;
    text-transform: capitalize;
}
.flip-card:hover a {
	background-color: #DE1F39;
	color: #FFF;
}
.flip-card:hover {
	border-color: #DE1F39;
	transform: translateY(-5px);
}
.flip-card:hover p {
	color: #333;
}
.flip-card h3 {
	color: #DF1F39;
}
.flip-card h5 {
	font-family: "europa", "sans-serif";
    text-transform: capitalize;
    font-weight: 400;
    font-size: 20px;
	color: #888;
}
.flip-card p {
    color: #666;
    font-size: 14px;
    line-height: 22px;
    font-family: "proxima-soft";
	transition: all 0.2s ease-in-out 0s;
}
.flip-card p:last-child {
	margin: 0px;
}
.flip-cards-section .pb-row {
	display: flex;
}
.flip-cards-section .pb-row .col-sm-4 {
	display: flex;
	flex-direction: column;
}
.flip-cards-section h2 {
	text-align: center;
	font-weight: 600;
	margin-bottom: 30px;
}
.flip-cards-section .pb-row.pb-row-column-3:not(:last-child) {
	margin-bottom: 40px;
}

.flip-card-row .pb-column {
	width: 100%;
	perspective: 1000px;
	border-radius: 10px;
	padding: 20px;
	box-sizing: border-box;
}
.flip-card-row .pb-column {
	position: relative;
	width: 100%;
	height: 100%;
	/*text-align: center;*/
	transition: transform 0.6s;
	transform-style: preserve-3d;
	vertical-align: top;
}
.flip-card-row .pb-column {
    flex-direction: column;
    background: linear-gradient(to right, #F93045, #CE081A);
    z-index: 100;
    position: relative;
    padding: 30px!important;
    border-radius: 15px;
    margin: 0px 10px;
}
.flip-card-row .pb-column:first-child {
    margin-left: 0px;
}
.flip-card-row .pb-column:last-child {
    margin-right: 0px;
}
.flip-card-row .pb-column:hover::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
}
.flip-card-row .pb-column::before {
 	position: absolute;
	content: "";
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	border-radius: 10px;
	transition: all 0.3s cubic-bezier(.11, .29, .25, 1) 0s;
	background-color: #FFF;
    z-index: -1;
    box-shadow: 0 5px 12px 0 rgba(0,0,0,0.1), 0 2px 3px 0 rgba(0,0,0,0.1);
}
.flip-card-row {
    padding: 0px 20px;
    display: flex;
}
.flip-card-row .pb-column {
    padding: 20px!important;
    margin: 20px;
}

.subtitle-section p,
.blurb p {
	color: #666;
    font-size: 14px;
    line-height: 22px;
    font-family: "proxima-soft";
}
.subtitle-section h1 {
	font-family: "europa", "sans-serif";
	font-weight: 500;
	font-size: 36px;
	color: #333;
}
.blurb p:first-child {
	margin: 70px 0px 40px;
}
.blurb div.fal {
	display: table;
	margin: 0 auto;
	color: #DF1F39;
	font-size: 24px;
	margin-bottom: 40px;
	transition: all 0.2s ease-in-out 0s;
	animation: arrow-anim 3s ease-in-out infinite;
}

@keyframes arrow-anim {
	0% {
		transform: translateY(-100%);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translateY(100%);
		opacity: 0;
	}
}
.pb-block ul:not([class]) {
    margin: 0 0 20px;
    list-style: none;
    font-family: "proxima-soft";
}
.pb-block ul:not([class]) > li{
    font-size: inherit;
    line-height: 18px;
    margin-bottom: 10px;
    font-weight: 300;
    position: relative;
    padding-left: 25px;
}
.pb-block ul:not([class]) li::before{
    font-family: "Font Awesome 5 Pro";
    content: "\f138";
    position: absolute;
/*    left: 0px;
*/    top: 0px;
    font-size: 18px;
    font-weight: 200;
    color: #aaa;
    margin-left: -30px;
}
    /*
.image-slider-wrapper{
    width: 30%;
    display: block;
    margin: 0 auto;
}*/
/** END **/

/*Pop up*/
.popup-content h2{
    text-align: center;
}
.zl-popup .popup-bt-close{
    font-size: 20px;
    border: none;
}
.zl-popup .popup-bt-close:hover {
    background-color: transparent;
    color: #494949;
}
.popup_wrapper.popup_wrapper_visible{
    padding: 20px;
}

.flip-card.ff-icon figure:first-child {
	width: 45px;
	padding: 0px;
	display: flex;
	margin: 0 auto;
}
.flip-card.ff-icon figure:first-child img {
	border: 0px;
	margin: 0px 0px 20px;
}

.form-break-title {
    text-align: center;
    margin-top: 10px;
}
.form-break {
    margin: 20px auto 30px;
}

/** Franchise Page Updates **/

.franchise-page .button,
.franchise-page h4,
.franchise-page .category-box p,
.franchise-page .category-box .category-info select,
.dropdown-content a {
	font-family: "proxima-soft", "sans-serif";
}
.franchise-page .wrapper-content {
	z-index: 10;
	overflow: visible;
}
.franchise-page .title-section {
	background-color: #F2F2F2;
	padding: 70px;
}
.franchise-page .button {
	border-radius: 100px;
	border: 2px solid #CCC;
	background-color: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #888888;
	text-transform: capitalize;
	letter-spacing: 0px;
	padding: 15px 40px;
}
.franchise-page .button span {
	margin-left: 15px;
	color: #CCC;
}
.franchise-page .button:hover,
.franchise-page .button:hover span {
	color: #FFF;
}
.franchise-page .title-section h1 {
	text-transform: capitalize!important;
	font-weight: 400;
	padding: 0px!important;
	border: 0px;
}
.franchise-page .title-section .frame {
	background-color: transparent;
}
.franchise-page .product-content .col.product-description {
	width: 50%;
	padding: 70px;
}
.franchise-page .col.product-image-container {
	width: 50%;
}
.franchise-page .product-content .col.product-description h2 {
	font-weight: 400;
	color: #555555;
	margin-bottom: 30px;
}
.franchise-page .product-content .col.product-description h2:not(:first-of-type) {
	margin: 30px 0px;
}
.franchise-page .product-content .col.product-description p {
	color: #777777;
}
.franchise-page .product-content .col.product-description li {
	display: flex;
	align-items: center;
	line-height: 24px;
	padding-left: 0px;
}
.franchise-page .product-content .col.product-description ul {
	margin-top: 40px;
}
.franchise-page .product-content .col.product-description li::before {
	content: '';
	height: 15px;
	flex: 15px 0 0;
	border: 2px solid #b3b3b3;
	border-radius: 100px;
	background-color: transparent;
	margin-right: 10px;
	position: unset;
}
.franchise-page .img-count {
	display: none;
}
.franchise-page .key-details-bar {
	background-color: #f2f2f2;
	padding: 30px 70px;
	display: flex;
	flex-wrap: wrap;
}
.franchise-page h4 {
	font-weight: 400;
	color: #555555;
	margin: 0px;
}
.franchise-page .key-details-bar h4:not(:first-child) {
	margin-left: 20px;
}
.franchise-page .key-details-bar h4 span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	border-radius: 100px;
	color: #de1f39;
	background-color: #FFF;
	font-size: 18px;
	margin-right: 10px;
}
.franchise-page .key-details-bar a {
	color: #555555;
}
.franchise-page .franchise-key-points {
	padding: 70px;
	border-right: 1px solid #DDD;
}
.franchise-page .coltable.product-content {
	display: flex;
}
.franchise-page .franchise-key-points .button span {
	font-weight: 300;
	color: #888;
}
.franchise-page .franchise-key-points .button:hover span {
	color: #FFF;
}
.franchise-page .franchise-key-points .listing-buttons {
	margin: 70px 0px;
}
.franchise-page .franchise-key-points .share-buttons {
	margin-top: 70px;
}
.franchise-page .franchise-key-points .share-buttons .social-media-buttons span {
	height: 60px;
	width: 60px;
	border-radius: 100px;
	display:flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-size: 24px;
}
.franchise-page .franchise-key-points .share-buttons .social-media-buttons a {
	text-decoration: none;
}
.franchise-page .franchise-key-points .share-buttons .social-media-buttons a:not(:last-child) span {
	margin-right: 20px;
}
.franchise-page .franchise-key-points .share-buttons .social-media-buttons {
	display: flex;
}
.franchise-page .franchise-key-points .share-buttons .social-media-buttons span.fa-facebook {
	background-color: #1977f3;
}
.franchise-page .franchise-key-points .share-buttons .social-media-buttons span.fa-twitter {
	background-color: #1ca1f3;
}
.franchise-page .franchise-key-points .share-buttons .social-media-buttons span.fa-linkedin-in {
	background-color: #0173b2;
}
.franchise-page .franchise-key-points .share-buttons h4 {
	margin-bottom: 30px;
}
.franchise-page .category-boxes {
	display: flex;
	flex-wrap: wrap;
}
.franchise-page .category-box {
	padding: 40px;
	background-color: #f2f2f2;
	flex: 50% 1 1;
	border: 2px solid #FFF;
	display: flex;
	align-items: center;
}
.franchise-page .category-box p {
	color: #777777;
}
.franchise-page .category-box p:last-of-type,
.franchise-page .category-box *:last-child {
	margin: 0px;
}
.franchise-page .category-box img {
	width: 70px;
	filter: grayscale(1);
	opacity: 0.8;
	transition: all 0.2s ease-in-out 0s;
}
.franchise-page .category-box .category-icon span {
	width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	font-weight: 100;
	color: #797979;
	opacity: 0.8;
	transition: all 0.2s ease-in-out 0s;
}
.franchise-page .category-box:hover .category-icon span {
	color: #DE1F39;
	opacity: 1;
}
.franchise-page .category-box:hover img {
	opacity: 1;
	filter: grayscale(0);
}
.franchise-page .category-box .category-icon {
	margin-right: 20px;
}
.franchise-page .category-box .category-info select {
	width: 200px;
    appearance: none;
    border: 0px;
    padding: 10px 20px!important;
	background-color: #e5e5e5;
	color: #777777;
	font-weight: 400;
}
.franchise-page .franchise-profile {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.franchise-page .product-description .franchise-profile .profile-details h2 {
	color: #de1f39;
	margin: 0px;
	line-height: 32px;
	font-size: 38px;
    letter-spacing: -1px;
}
.franchise-page .product-description .franchise-profile .profile-image-wrapper {
	height: 200px;
	width: 200px;
	margin-right: 40px;
	border-radius: 100%;
	position: relative;
	overflow: hidden;
	border: 1px solid #DDD;
}
.franchise-page .product-description .franchise-profile .profile-image-wrapper img {
	object-fit: cover;
    font-family: "object-fit: cover";
    left: 50%;
    vertical-align: middle;
    max-height: 105%;
    max-width: none;
    min-height: 102%;
    min-width: 102%;
    position: absolute;
    top: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
    width: 105%;
    opacity: 1;
    transform-origin: left;
}
.franchise-page .slick-arrow,
.franchise-page .slick-arrow:active {
	font-size: 0px;
    height: 50px;
    width: 110px;
    position: absolute;
    top: unset;
    bottom: 70px;
    z-index: 10;
    background-image: url(images/icon-arrow-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 0px;
    padding: 0px;
    filter: drop-shadow(0px 0px 0px rgba(0,0,0,0.66));
}
.franchise-page .slick-arrow:hover {
	background-color: unset;
}
.franchise-page .slick-arrow:focus {
	outline: 0px;
}
.franchise-page .slick-arrow.slick-prev {
	left: 70px;
	background-image: url("images/icon-arrow-left.png");
}
.franchise-page .slick-arrow.slick-next {
	right: 70px;
}
.franchise-page .read-less {
	position: relative;
}
.franchise-page .read-less::before {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	bottom: 0;
	height: 300px;
	background: linear-gradient(to bottom, transparent, #FFF);
	z-index: 100;
}
.franchise-page .btn-read-more {
	font-weight: 400;
	margin-top: 30px;
	display: inline-block;
}
.franchise-page .product-image-container img.main:hover {
	border-color: #DE1F39!important;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: transparent;
	border: 0px solid #DDD;
	min-width: 160px;
	z-index: 1;
	text-align: left;
	width: 100%;
	padding-top: 68px;
}

.dropdown-content a {
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	background-color: #F2F2F2;
	color: #888888!important;
	font-weight: 300;
}

.dropdown-content a:hover {
	background-color: #ddd;
}

.dropdown:hover .dropdown-content {
	display: block;
}
.dropdown-content a span {
	margin-right: 10px;
	color: #de1f39;
}

.dropdown:hover .dropbtn {
	background-color: #3e8e41;
}
#productSliderNav .slick-slide img{
	height:300px;
}
.read-less{
	max-height: 500px;
	overflow-y: hidden;
}
.btn-read-more{
	color: #DE1F39;
	font-weight: bold;

}

/*Video Align Block*/
.video-align {
    display: flex;
    align-items: stretch;
}
.video-align::before,
.video-align::after {
    display: none;
}
.video-align > .pb-column {
    display: block;
    float: none;
    padding: 0;
}
.video-align > .pb-column.col-sm-8 {
    width: 64%;
}
.video-align > .pb-column.col-sm-4 {
    width: 36%;
}

.listing-nav-buttons .button{
	padding: 10px 40px;
}
.footer .col.foot-mid{
	padding: 75px;
}
.footer .col.foot-mid .form-block{
	border: none;
	    padding-top: 20px;
}
.footer .col.foot-mid .form-block .field,
.footer .col.foot-mid .form-block .field.w50{
	width: 100%;
	padding: 0 0 10px 0;
}
.footer .col.foot-mid .form-description{
	display: none;
}


/**--- Browse Overrides / Search ---**/
body.zulu-search .frame-search {
	width: 100%;
	max-width: 100%;
	background-color: #F2F2F2;
}
body.zulu-search .frame-search > form {
	max-width: 900px;
	margin: 0 auto;
	padding: 35px 0;
}
body.zulu-search .frame-search > form .form-block {
	padding: 0;
	border: none;
	overflow: visible;
	display: flex;
	align-items: center;
}
body.zulu-search .frame-search > form .form-block .field {
	position: relative;
	padding: 0;
	flex: auto 1 1;
}
body.zulu-search .frame-search > form .form-block .field.country-select {
	flex: 165px 0 0;
	margin-left: 15px;
}
body.zulu-search .frame-search > form .form-block .field.country-select::before {
	content: "\f107";
	position: absolute;
	font-family: "Font Awesome 5 Pro";
	top: 13px;
	right: 16px;
	color: #DF1F39;
	pointer-events: none;
}
body.zulu-search .frame-search .field i {
	position: absolute;
	top: 23px;
	left: 24px;
	font-size: 18px;
}
body.zulu-search .frame-search .field input,
body.zulu-search .frame-search .field select {
	background: #fff;
	padding: 20px 60px 21px;
	padding-right: 140px;
	border-radius: 50px;
	border: none;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.04rem;
	font-family: "europa", "sans-serif";
}
body.zulu-search .frame-search .field select {
	padding: 14px 30px 15px 40px !important;
	appearance: none;
	font-size: 14px;
	font-weight: 300;
	background: transparent;
	border: 1px solid #ccc;
	cursor: pointer;
	color: #000;
}
body.zulu-search .frame-search .field select:hover,
body.zulu-search .frame-search .field select:focus {
	border-color: #000;
}
body.zulu-search .frame-search .field.country-select i {
	top: 13px;
	left: 16px;
}
body.zulu-search .frame-search .field.country-select label {
	display: none;
}
body.zulu-search .frame-search .field input:focus,
body.zulu-search .frame-search .field select:focus {
	outline: 2px solid #DF1F39;
	border-color: #DF1F39;
}
body.zulu-search .frame-search .field button {
	position: absolute;
	top: 11px;
	right: 11px;
	border: none;
	background: #000;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	font-size: 12px;
	font-weight: 400;
	border-radius: 40px;
	padding: 13px 28px;
}
body.zulu-search .frame-search .field button:hover {
	background: #DF1F39;
}


/*Search Page Structure*/
.zulu-search .page-structure {
	padding: 60px 0;
}
.listing-area .pb-container {
	padding-top: 30px;
}

.zulu-search .page-structure .sidebox,
.listing-area .pb-row-column-2 .col-sm-3 {
	padding-right: 30px;
}
.zulu-search .page-structure .pro-main,
.listing-area .pb-row-column-2 .col-sm-9 {
	padding-left: 70px;
}

.zulu-search .sidebox .sidebox-top,
.zulu-search .sort-box {
	padding: 10px 2px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	min-height: 60px;
	border: none;
}
.listing-area .pb-row-column-2 .col-sm-3 h3,
.zulu-search .sidebox .sidebox-top span,
.zulu-search .sort-box .col > p,
.zulu-search .sort-box #filter label,
.zulu-search .sort-box #filter select,
.zulu-search .sort-box #filter input {
	font-family: "europa", "sans-serif";
	letter-spacing: 0.15rem;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	color: #111;
	text-transform: uppercase;
}

.zulu-search .sort-box .col > p,
.zulu-search .sort-box #filter label,
.zulu-search .sort-box #filter select,
.zulu-search .sort-box #filter input {
	font-size: 13px;
	letter-spacing: 0.1rem;
}
.zulu-search .sort-box .col > p .res-found {
	color: #111;
}
.zulu-search .sort-box #filter label,
.zulu-search .sort-box .col > p .res-showing {
	color: #999;
}
.zulu-search .sort-box .col > p .res-showing::before {
	content: "•";
	margin: 0 8px;
}
.zulu-search .sort-box #filter select {
	min-width: 100px;
}
.zulu-search .sort-box #filter input {
	padding: 6px 10px;
	border: none;
	color: #fff;
	background: #DF1F39;
}
.zulu-search .sort-box #filter input:hover {
	color: #fff;
	background: #111;
}
.zulu-search .sort-box #filter .filter {
	align-items: center;
}

ul.product-category-list > li,
.zulu-search .coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li {
	margin:  0;
	list-style: none;
}
ul.product-category-list > li > a,
.zulu-search .coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li > a {
	display: block;
	text-align: left;
	color: #666;
	font-family: "europa", "sans-serif";
	letter-spacing: 0.1rem;
	font-size: 11px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
	border-radius: 20px;
	border: none;
	padding: 12px 0;
	padding-right: 50px;
	background: transparent;
	transition: all 0s cubic-bezier(0,0,0.1,0.9);
	position: relative;
}
ul.product-category-list > li > a:hover,
ul.product-category-list > li > a:active,
.zulu-search .coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li > a:hover,
.zulu-search .coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li > a.active {
	background: #111;
	color: #fff;
	padding-right: 35px;
	padding-left: 15px;
	text-decoration: none;
}
ul.product-category-list > li > a:hover,
.zulu-search .coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li > a:hover {
	background: #DF1F39;
}
ul.product-category-list > li > a:active::after,
.zulu-search .coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li > a.active::after {
	content: "\f058";
	font-size: 18px;
	font-weight: 300;
	font-family: "Font Awesome 5 Pro";
	position: absolute;
	right: 8px;
	top: 8px;
}

/*Product Box Override*/
.zulu-search .body {
	border-bottom: 1px solid #eee;
	padding-bottom: 70px;
}
.zulu-search .product-box,
.pb-block .product-box {
	margin: 0px -15px;
	overflow: visible;
}
.pb-block .product-box > li {
	width: 33.333%;
}
.zulu-search .product-box > li > .box,
.pb-block .product-box > li > .box {
	border: none;
	margin: 0 25px 65px;
	align-items: start;
}
.zulu-search .product-box > li > .box .image img,
.pb-block .product-box > li > .box .image img {
	border-radius: 15px;
	filter: brightness(0.95);
	transition: all 0.1s ease, filter 0.35s cubic-bezier(0,0,0.1,0.9);
}
.zulu-search .product-box > li > .box .image:hover img,
.pb-block .product-box > li > .box .image:hover img {
	filter: brightness(1);
	box-shadow: 0 0 0 2px #eee;
}
.zulu-search .product-box .pro-body,
.pb-block .product-box .pro-body {
	padding: 0px;
	border-top: none;
}
.zulu-search .product-box .pro-body .title,
.pb-block .product-box .pro-body .title {
	padding: 30px 15px;
}
.zulu-search .product-box .pro-body .title a,
.pb-block .product-box .pro-body .title a {
	color: #000;
	display: block;
	margin-bottom: 5px;
	font-family: "europa", "sans-serif";
}
.zulu-search .product-box .pro-body .title a:hover,
.pb-block .product-box .pro-body .title a:hover {
	color: #DF1F39;
}
.zulu-search .product-box .pro-body .title p,
.pb-block .product-box .pro-body .title p {
	font-family: "europa", "sans-serif";
	font-weight: 400;
	font-size: 14px;
	color: #808080;
}
.zulu-search .product-box > li .box .options,
.pb-block .product-box > li .box .options {
	border-top: 0;
	margin: 0;
	padding: 0;
	margin-top: auto;
}
.zulu-search .product-box > li .box .options .options-price,
.pb-block .product-box > li .box .options .options-price {
	display: block;
	width: 100%;
	border-top: 0;
	padding: 15px 20px;
	border-radius: 35px;
	border: 1px solid #ddd;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: #111;
	transition: all 0.1s ease;
}
.zulu-search .product-box > li .box .options .options-price span,
.pb-block .product-box > li .box .options .options-price span {
	opacity: 0.6;
}
.zulu-search .product-box > li .box .options .options-price:hover,
.pb-block .product-box > li .box .options .options-price:hover {
	color: #fff;
	border: 1px solid #DF1F39;
	background-color: #DF1F39;
}

.section-variant-1 .pb-block .product-box > li > .box {
	background: none;
}
.section-variant-1 .pb-block .product-box > li > .box .image img {
	filter: brightness(1) !important;
}
.section-variant-1 .pb-block .product-box > li > .box .image img:hover {
	box-shadow: 0 0 0 2px #DF1F39;
}
.section-variant-1 .pb-block .product-box > li .box .options .options-price:not(:hover) {
	background-color: #fff;
}

.page-controls {
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-controls::before,
.page-controls::after {
	content: "";
	display: block;
	flex: auto 1 1;
	height: 1px;
	background: #ddd;
}
.page-controls ul.pagination {
	margin: 0 15px;
	display: flex;
}
.page-controls ul.pagination li {
	margin: 0 4px;
}
.page-controls ul.pagination li a {
	width: 45px;
	height: 45px;
	font-size: 16px;
	border-radius: 100%;
	border: 1px solid #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
}
.page-controls ul.pagination li.active a {
	background-color: #000;
	border-color: #000;
	color: #fff;
}
.page-controls ul.pagination li:first-child a,
.page-controls ul.pagination li:last-child a {
	font-size: 0px;
	letter-spacing: 0;
	border-color: #000;
	color: #000;
}
.page-controls ul.pagination li:first-child a:hover,
.page-controls ul.pagination li:last-child a:hover {
	background-color: #DF1F39;
	border-color: #DF1F39;
	color: #fff;
}
.page-controls ul.pagination li:first-child a::before,
.page-controls ul.pagination li:last-child a::before {
	content: "\f060";
	font-family: "Font Awesome 5 Pro";
	font-size: 16px;
}
.page-controls ul.pagination li:last-child a::before {
	content: "\f061";
}


.show-all {
	margin-top: 50px;
}
.show-all a.button {
	padding: 12px;
	font-family: "europa", "sans-serif";
	letter-spacing: 0.15rem;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	color: #111;
	border: none;
	background: none;
	position: relative;
}
.show-all a.button::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 0;
	height: 4px;
	background-color: #111;
	transition: all 0.25s cubic-bezier(0,0,0.1,0.9);
}
.show-all a.button:hover::after {
	left: 5px;
	right: 5px;
	background-color: #DF1F39;
}

@media screen and (min-width: 1650px) {
	.zulu-search .main-frame {
		width: 1600px;
	}
	.listing-area > .frame {
		width: 1600px;
	}
}
@media screen and (max-width: 1500px) {
	.listing-area .pb-container {
	 	padding-left: 20px;
		padding-right: 20px;
	}
}

/*Listing Buttons*/
.button-container {
	padding: 40px 0 !important;
	background-color: #DF1F39;
	background: linear-gradient(to right, #DF1F39, #FF4939);
	text-align: center;
}
.button-container .button-wrapper {
	text-align: center;
}
.button-container .button-wrapper .button {
	width: 100%;
	max-width: 350px;
	border: 0;
	padding: 18px 30px;
	border-radius: 35px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: #DF1F39;
	transition: all 0.15s ease;
	background: #fff;
}
.button-container .button-wrapper .button:hover {
	background: #DF1F39 !important;
	box-shadow: 0 0 0 2px #fff;
	color: #fff;
}

/****---- RESOURCES ----****/
/****----- WRAPPER ----****/
.resource-wrapper {
	/* padding: 100px 0 50px; */
	/* background-color: var(--colour-light); */
	overflow-x: hidden;
}
.resource-wrapper:first-child {
	/* padding-top: 180px; */
}

.resource-wrapper .resource-heading .coltable {
	display: flex;
	align-items: center;
}
.resource-wrapper .resource-heading .coltable > .col:first-child {
	padding-left: 0;
}
.resource-wrapper .resource-heading .coltable > .col:last-child {
	padding-right: 0;
}
.resource-wrapper .resource-heading h1 {
	margin-bottom: 0.2em;
}
.resource-wrapper .resource-heading .quick-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left: auto;
}
.resource-wrapper .resource-heading .quick-nav p {
	margin-bottom: 0.2em;
	opacity: 0.5;
	margin-right: 15px;
}
.resource-wrapper .resource-heading .quick-nav a.button {
	margin-left: 5px;
	display: block;
	font-size: 14px;
	padding: 9px 18px 11px;
}

/*title*/
.resource-wrapper .row.title {
	padding-right: 120px;
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid var(--colour-grey);
}
.resource-wrapper .row.title h2 {
	font-size: 20px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 35px;
}

/*Faq*/
.resource-wrapper.faq-wrapper {
	background-color: var(--colour-white);
	padding-bottom: 35px;
}
.resource-wrapper.faq-wrapper .row.title {
	border-top: 0;
	padding-top: 0;
	margin-top: 0;
}

.popup_visible body {
	overflow: hidden;
}
.faq-popup {
	padding: 50px 0;
}
.faq-popup button.popup-bt-close {
	padding: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0px;
	margin: 0 auto 50px;
	border-color: var(--colour-white);
	background-color: var(--colour-white);
	color: var(--colour-black)
}
.faq-popup button.popup-bt-close:hover {
	border-color: var(--colour-red);
	background-color: var(--colour-red);
}
.faq-popup button.popup-bt-close i {
	font-size: 25px;
}
.faq-popup .popup-content {
	max-width: 700px;
	margin: 0 auto;
	padding: 30px;
	border-radius: 30px;
	background-color: var(--colour-white)
}
.faq-popup .popup-content img {
	width: 100%;
	vertical-align: top;
	border-radius: 15px;
	margin-bottom: 15px;
}
.faq-popup .popup-content .popup-text {
	padding: 20px;
}
.faq-popup .popup-content .popup-text h5 {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--colour-red);
	margin-bottom: 10px;
}
.faq-popup .popup-content .popup-text h4 {
	color: var(--colour-black);
}

hr {
	border-bottom: 2px solid var(--colour-grey);
}

/*Resource Slider*/
.resource-wrapper .slider-wrapper .tns-controls {
	position: absolute;
	left: auto !important;
	right: 0 !important;
	top: -60px;
	opacity: 1;
	visibility: visible;
}
.resource-wrapper .slider-wrapper .tns-controls button {
	box-shadow: none;
	height: 30px;
}
.resource-wrapper .slider-wrapper .tns-controls button:not(:hover) {
	background-color: transparent;
	background: none;
}
.resource-wrapper .slider-wrapper .tns-controls button:hover {
	color: var(--colour-white);
}
.resource-wrapper .slider-wrapper .tns-controls button::before {
	font-size: 22px;
	font-weight: 300;
}
.resource-wrapper .slider-wrapper .tns-controls button:first-of-type::before {
	font-family: "Font Awesome 5 Pro";
	content: "\f177"
}
.resource-wrapper .slider-wrapper .tns-controls button:last-of-type::before {
	font-family: "Font Awesome 5 Pro";
	content: "\f178"
}

.resource-wrapper .row.re-slider {
	padding-bottom: 35px;
}
.resource-wrapper .slider-wrapper .tns-ovh {
	overflow: visible;
}
.resource-wrapper .slider-wrapper .tns-inner {
	margin: 0 -25px 0 0 !important;
}
.resource-wrapper .slider-wrapper .slider .slide {
	padding-right: 25px !important;
	transition: var(--transition);
}
.resource-wrapper .slider-wrapper .slider .slide:not(.tns-slide-active) {
	filter: grayscale(1);
	opacity: 0.5;
}
.resource-wrapper .post-wrap .post-item {
	border: none !important;
}

.resource-wrapper .post-wrap .post-item .post-image {
	border-radius: 20px;
	overflow: hidden;
	transition: var(--transition);
}
.resource-wrapper .post-wrap .post-item .post-image img {
	transition: var(--transition);
}
.resource-wrapper .post-wrap .post-item:hover .post-image {
	box-shadow: 0 0 0 2px var(--colour-red);
}
.resource-wrapper .post-wrap .post-item:hover .post-image img {
	transform: scale(1.05);
}
.resource-wrapper .post-wrap .post-item .post-body {
	padding: 25px 20px;
}
.resource-wrapper .post-wrap .post-item .post-body h4 {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--colour-red);
	margin-bottom: 10px;
}
.resource-wrapper .post-wrap .post-item .post-body h3 {
	font-size: 22px;
	font-weight: 500;
	color: var(--colour-black);
}


/*News Post*/
.news-banner {
    background-image: url("images/backgrounds/tmc-franchise.jpg");
    background-position: bottom center;
    background-size: cover;
    background-color: #D11D2E;
    background-blend-mode: soft-light;
    padding: 50px 0;
}
.news-banner .frame {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.news-banner h1 {
    color: #fff;
    font-weight: 600;
    letter-spacing: -2px;
}

.post-wrap.post-type-news .post-item {
    border: 2px solid #fff;
    transition: all 0.2s ease-in-out 0s;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.post-wrap.post-type-news .post-item .post-body {
    height: auto;
    display: table;
    width: 100%;
    text-align: left;
    position: absolute;
    border-radius: 0;
    bottom: 0;
    left: 0;
    padding: 12px 20px 15px;
    background-color: rgba(0,0,0,0.8);
    transition: all 0.2s ease-in-out 0s;
}
.post-wrap.post-type-news .post-item .post-body h3 {
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    text-transform: none;
    letter-spacing: -0.5px;
}
.post-item .post-image.date-label .date {
    transition: all 0.2s ease-in-out 0s;
    font-size: 14px;
    line-height: 18px;
    color: #666;
}

.post-wrap.post-type-news .post-item:hover {
    border: 2px solid #D11D2E;
}
.post-wrap.post-type-news .post-item:hover .post-image.date-label .date {
    background-color: #D11D2E;
    color: #fff;
}
.post-wrap.post-type-news .post-item:hover .post-body {
    opacity: 0;
}

/*News Page*/
.news-header {
	margin: 0;
    padding: 0;
    background-position: center;
	position: relative;
	z-index: 1;
}
.news-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
    background-color: rgba(10,10,10,0.8);
	backdrop-filter: blur(15px);
}
.news-header .frame {
    padding-top: 200px;
	padding-bottom: 150px;
    position: relative;
}

.news-header .breadcrumb {
    position: static;
	text-align: center;
	padding: 0 0 10px;
	background: transparent;
	color: var(--colour-white);
}
.news-header .breadcrumb a {
	color: var(--colour-white);
	font-weight: 400;
}
.news-header .breadcrumb b {
	color: var(--colour-red);
	font-weight: 400;
}
.news-header .breadcrumb .divide {
	color: var(--colour-white);
	font-weight: 400;
	opacity: 0.25;
}

.news-header .news-intro {
    text-align: center;
	background: none;
	padding: 0;
	border: none;
}
.news-header .news-intro h1 {
    color: #fff;
    margin: 0;
    position: relative;
    top: 3px;
}

.capsule-container .wrap .capsule {
    border: none;
    border-radius: 25px;
    color: #333;
    padding: 8px 16px 10px;
    background-color: rgba(255,255,255,0.8);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.2;
}
.capsule-container .wrap .capsule i {
    margin-right: 5px;
}

.news-header .news-intro.capsule-container .wrap {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 25px 0 0;
}
.news-header .news-intro.capsule-container .wrap .capsule {
	float: none;
    background: none;
	border: 1px solid #fff;
	color: var(--colour-white);
}

.news-header .news-intro.capsule-container .wrap .social-links{
	margin: 0 0 0 10px;
}

.post-type-news .image-container {
    padding: 30px 0;
}
.post-type-news .image-container .image-wrap img {
    padding: 0px;
    border-radius: 5px;
    filter: brightness(0.9);
    border: 1px solid #eee;
}
.post-type-news .image-container .image-wrap img:hover {
    filter: brightness(1);
    border-color: #D11D2E;
}

.post-type-news .post-content {
	max-width: 900px;
	padding: 35px;
	margin: -100px auto 0;
	border-radius: 35px;
	background-color: var(--colour-white);
	position: relative;
	z-index: 2;
}
.post-type-news .post-content iframe {
    border-radius: 15px;
    display: table;
    margin: 5px auto 35px;
    width: 100% !important;
    height: auto !important;
    min-height: 500px !important;
	aspect-ratio: 16/9;
}
.pad-frame {
    padding: 15px 0 35px;
}

.post-page-controls {
	width: calc(100% - 50px);
	max-width: 900px;
	padding: 25px;
	margin: 0 auto 0;
	border-radius: 35px;
	background-color: var(--colour-light);
	position: relative;
	z-index: 2;
}
.post-page-controls .coltable {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.post-page-controls .coltable > .col {
	width: auto;
}
.post-page-controls .coltable > .col:first-child {
	padding-left: 0;
}
.post-page-controls .coltable > .col:last-child {
	padding-right: 0;
	flex: auto 1 1;
}

@media screen and (max-width: 1000px) {
	.post-type-news .post-content iframe {
		min-height: 300px !important;
	}
}
@media screen and (max-width: 600px) {
	.post-page-controls {
		width: calc(100% - 20px);
		padding: 25px;
		border-radius: 15px;
	}
	.post-page-controls .coltable {
		flex-direction: column;
		justify-content: center;
	}
	.post-page-controls .coltable > .col {
		padding: 0;
	}
	.post-page-controls .coltable > .col:first-child {
		padding-bottom: 25px;
	}
}



/******RESPONSIVE OVERRIDE*****/
@media screen and (max-width:1440px) {
    iframe {
        width: 100%!important;
    }
    .header .col-logo
    {
/*        width: 34%!important;
*/        width: auto !important;
    }
    .header .col-nav
    {
/*        width: 39%!important;
*/        width: auto !important;
    }
    .row-container > .pb-section.section-pad-0
    {
        /* background-size: contain!important; */
    }
    .page-banner-section > .col-sm-12{
        height: auto;
    }
    .page-banner-section .pb-column{
        position: relative;
        padding: 25px;
        width: 100%;
        top: unset;
        transform: none;
        height: auto;
    }
    .button.btn-variant-3
    {
        font-size: 14px;
    }
    .footer .col.foot-left
    {
        padding-bottom: 30px;
    }
    .footer .foot-left .column
    {
        margin-top: 45px;
    }
	.frame {
		width: 100%;
	}
	.body .frame,
	.wrapper-content .frame {
		padding-left:20px;
		padding-right:20px;
	}
	#productSliderNav .slick-slide img {
		height: 200px;
	}
	.franchise-page .category-box {
		flex: 55% 1 1;
	}
	.franchise-page .product-description .franchise-profile .profile-image-wrapper {
		flex: 150px 0 0;
		height: 150px;
	}
}
@media screen and (max-width:1280px) {
	.zulu-search .product-box > li {
		width: 25%;
	}
	iframe {
		width:100% !important;
	}
    .header .coltable > .col{
        display: inline-block;
        width: 100% !important;
    }
    .header .logo-wrap,
    .header .coltable .col-nav{
        text-align: center;
    }
    /*
    .header .col-logo
    {
        width: 25%!important;
    }
    .header .col-nav
    {
        width: 29%!important;
    }
    .header .col-search
    {
        width: 15%!important;
    }*/
    .header .logo
    {
        max-width: 250px;
        display: block;
        margin: 0 auto;
    }
    ul.menu .menulink
    {
        padding: 38px 20px 0px;
        font-size: 12px;
    }
    ul.menu .menulink::after
    {
        margin: 26px auto 0px;
    }
    .col-search .button
    {
        padding: 8px 46px;
        font-size: 12px;
    }
    .button.btn-variant-3
    {
        font-size: 12px;
    }
    .flip-cards-section .pb-row{
        display: block;
    }
    .footer .foot-btn .break
    {
        margin-left: 30px;
    }
    .footer .head.h4
    {
        font-size: 20px;
    }
    .footer .foot-menu > li a
    {
        font-size: 12px;
    }
    .copyright
    {
        font-size: 12px;
    }
    .footer .foot-menu
    {
        padding-top: 20px;
    }
    .footer .col.foot-left
    {
        padding: 45px;
        width: 60%;
    }
    .footer .col.foot-right
    {
        background-size: 55%;
        width: 40%;
    }
    .footer .foot-right .logo-wrap
    {
        margin-right: 50px;
        margin-top: 40px;
    }
    .footer .col.foot-right .logo
    {
        max-width: 340px;
    }
	#productSliderNav .slick-slide img {
		height: 175px;
	}
	.franchise-page .title-section {
		padding: 40px 70px;
	}
	#productSliderNav .slick-slide img {
		height: 240px;
	}

	/*Product*/
	.zulu-search .product-box,
	.pb-block .product-box {
		margin-left: -5px;
		margin-right: -5px;
	}
	.zulu-search .product-box > li > .box,
	.pb-block .product-box > li > .box {
		margin-left: 15px;
		margin-right: 15px;
	}
}
@media screen and (max-width:1100px) {
	/*Product*/
	.zulu-search .page-structure .sidebox,
	.listing-area .pb-row-column-2 .col-sm-3 {
	  	padding-right: 0px;
	}
	.zulu-search .sort-box .col > p, .zulu-search .sort-box #filter label, .zulu-search .sort-box #filter select, .zulu-search .sort-box #filter input {
		font-size: 12px;
		letter-spacing: 0.05rem;
	}
	.section-content-image-columns .row,
	.resource-wrapper .row {
		margin: 0px -15px;
	}
	.resource-wrapper .resource-heading .coltable > .col:first-child {
		width: fit-content;
	}
	.resource-wrapper .resource-heading .coltable > .col:last-child {
		width: max-content;
		margin-left: auto;
	}
}
@media screen and (max-width:1024px) {
	.product-box .pro-body {
		padding: 10px;
	}
    ul.menu li .menulink{
        padding: 10px 15px 11px;
        margin: 0;
    }

    .flip-card-row {
		flex-wrap: wrap;
		flex-direction: column;
	}
    .flip-card-row .pb-column {
        margin: 10px 0px;
    }
	.franchise-page .coltable.product-content {
		flex-direction: column-reverse;
	}
	.franchise-page .product-content .col.product-description,
	.franchise-page .col.product-image-container {
		width: 100%;
	}
	.franchise-page .category-box {
		flex: 50% 1 1;
	}
}
@media screen and (max-width:900px) {
	.zulu-search .page-structure {
	  	padding: 40px 0;
	}
	.zulu-search .coltable.page-structure > .col.col-sidebox.col-sidebox-left,
	.zulu-search .coltable.page-structure > .col.pro-main,
	.listing-area .pb-row-column-2 .col-sm-3,
	.listing-area .pb-row-column-2 .col-sm-9 {
		width: 100% !important;
		display: block !important;
	}
	.listing-area .pb-row-column-2 .col-sm-3,
	.listing-area .pb-row-column-2 .col-sm-9 {
		padding: 0;
	}
	.zulu-search .page-structure .pro-main {
	  	padding-left: 0px;
		padding-right: 20px;
	}

	.zulu-search .sidebox-body,
	.pb-block-type-product_category_list {
		position: relative;
	}
	.zulu-search .sidebox-body::after,
	.pb-block-type-product_category_list::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 60px;
		background: linear-gradient(to right, transparent, #fff 80%);
	}
	ul.product-category-list,
	.zulu-search .coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body ul.links {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: scroll;
		-ms-overflow-style: none;
        scrollbar-width: none;
		max-width: 100vw;
		margin-left: -20px;
		padding-left: 20px;
		padding-right: 20px;
	}
	ul.product-category-list::-webkit-scrollbar,
	.zulu-search .coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body ul.links::-webkit-scrollbar {
		display: none;
	}
	ul.product-category-list > li,
	.zulu-search .coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li {
	  	margin: 0 2px;
	}
	ul.product-category-list > li > a,
	.zulu-search .coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li > a {
		letter-spacing: 0.05rem;
		white-space: nowrap;
		background: #eee;
		padding: 10px 20px 11px !important;
	}
	ul.product-category-list > li > a.active::after,
	.zulu-search .coltable.page-structure > .col.col-sidebox .sidebox:last-child .sidebox-body .links li > a.active::after {
		display: none;
	}

	.zulu-search .product-box .pro-body .title a,
	.pb-block .product-box .pro-body .title a {
		font-size: 18px;
		letter-spacing: 0.05px;
	}
	.zulu-search .product-box .pro-body .title p,
	.pb-block .product-box .pro-body .title p {
		font-size: 12px;
	}
	.zulu-search .product-box > li .box .options .options-price,
	.pb-block .product-box > li .box .options .options-price {
		padding: 10px 15px;
	}

	.pb-block .product-box {
		margin-left: -15px;
		margin-right: -15px;
	}
	.pb-block-type-product_category_list {
		padding-bottom: 30px;
	}
	.section-variant-1 ul.product-category-list > li > a:not(:hover) {
		background: #fff;
	}
	.section-variant-1 .pb-block-type-product_category_list::after {
		background: linear-gradient(to right, transparent, #eee 80%);
	}
}
@media screen and (max-width:800px) {
	.zulu-search .product-box > li,
	.pb-block .product-box > li {
		width: 50%;
	}
	.h2, h2, .h3, h3 {
		font-size: 22px;
		line-height: 30px;
	}

    .header .coltable
    {
        display: flex;
        flex-direction: column;
    }
    .header .col-logo
    {
        width: 100%!important;
    }
    .header .logo-wrap
    {
        text-align: center;
    }
    .header .logo
    {
        max-width: 375px;
    }
    .header .col-nav
    {
        width: 70%!important;
        margin-left: 0;
    }
    ul.menu .menulink
    {
        padding: 10px 20px;
        text-align: left;
    }
    ul.menu .menulink::after
    {
        display: none;
    }
    ul.menu .mobile-nav .menulink{
        text-align: center;
    }
    .header .col-search
    {
        width: 30%!important;
        position: absolute;
        right: -12px;
        top: 120px;
    }
    .col-search .button
    {
        padding: 8px 32px;
    }

    .row-container > .pb-section.page-banner-section
    {
        padding: 0!important;
    }
    .page-banner-section h2
    {
        margin-top: 75px;
        font-size: 20px;
    }
    .listing-header{
        text-align: center;
    }
    .zulu-product .location{
        display: inline-flex;
    }
    .country-label {
        text-align: center;
        display: block;
        margin: 10px 0;
    }
    .button.btn-variant-5
    {
        font-size: 12px;
    }
    .foot-left .coltable
    {
        display: flex;
        flex-direction: column;
    }
    .foot-left .coltable .col
    {
        width: 100%;
    }
    .footer .foot-left .column
    {
        margin-top: 0;
    }
    .head.h4
    {
        margin-top: 35px;
    }
    .footer .foot-btn .break
    {
        display: none;
    }
    .footer .foot-menu
    {
        padding: 0!important;
    }
    .copyright
    {
        padding: 35px 0 0;
    }
    .footer .col.foot-right
    {
        background-size: 100%;
        background-position: 30px bottom;
    }
    .pro-main .sort-box .coltable > .col:first-child{
        display: block;
    }
    .sort-box .form-block .field{
        float: none;
    }
	.zulu-search .sort-box #filter .filter {
		justify-content: flex-end;
	}
    .sort-box .col:nth-child(2) p{
        text-align: start;
    }
	#productSliderNav .slick-slide img {
		height: 180px;
	}
	.franchise-page .category-box {
		flex: 55% 1 1;
	}

    .video-align {
        display: flex;
        flex-direction: column;
    }
    .video-align > .pb-column.col-sm-8,
    .video-align > .pb-column.col-sm-4 {
        width: 100%;
    }
    .video-align > .pb-column .pb-block-content {
        margin: 0;
        padding: 0;
    }
    .video-align > .pb-column .pb-block-content video {
        vertical-align: top;
    }

    .subtitle-section {
        padding: 40px 40px !important;
    }

	.resource-wrapper:first-child {
		padding-top: 120px;
	}
	.resource-wrapper .resource-heading .coltable {
		flex-direction: column;
		align-items: flex-start;
	}
	.resource-wrapper .resource-heading .coltable > .col:last-child {
		margin: 10px 0 0;
		padding: 0px;
	}

}
@media screen and (max-width:700px) {
	.zulu-search .product-box.row3 > li {
	  	width: 50%;
	}

	body.zulu-search .frame-search > form .form-block {
		flex-direction: column;
	}
	body.zulu-search .frame-search > form .form-block .field {
		position: relative;
		padding: 0;
		flex: 100% 1 1;
	}
	body.zulu-search .frame-search > form .form-block .field.country-select {
		margin-top: 15px;
		margin-left: 0px;
		max-width: 200px;
		flex: auto;
	}
	body.zulu-search .frame-search > form .form-block .field.country-select::before {
		top: 12px;
	}
	body.zulu-search .frame-search .field.country-select i {
	  	top: 10px;
	  	left: 13px;
	}
	body.zulu-search .frame-search .field select {
		padding: 11px 25px 12px 35px !important;
		font-size: 13px;
	}
}
@media screen and (max-width:600px) {
	.sidebox .sidebox-top .js-toggle {
		display: none !important;
	}
	.zulu-search .sidebox-body {
	  	display: block !important;
	}
	.zulu-search .pro-main .sort-box .coltable > .col {
		width: 100%;
		padding: 0 !important;
	}
	.zulu-search .sort-box .col > p, .zulu-search .sort-box #filter label, .zulu-search .sort-box #filter select, .zulu-search .sort-box #filter input {
		letter-spacing: 0;
	}
	.sort-box .col:nth-child(2) p {
		text-align: center;
	}
	.zulu-search .sort-box #filter .filter {
	  	justify-content: center;
		padding: 10px 0;
	}
	.zulu-search .product-box .pro-body .title {
		padding: 20px 10px;
	}

	.page-controls::before, .page-controls::after {
		display: none;
	}
	.page-controls ul.pagination {
		flex-wrap: wrap;
		justify-content: center;
	}
	.page-controls ul.pagination li {
		margin: 4px;
	}

    .row-container > .pb-section{
        padding: 0;
    }
    .flip-card{
        padding: 20px;
    }
	.pro-main .sort-box .coltable.col3 {
		flex-direction: column;
	}
	.product-box > li {
		width: 100%;
	}
    .product-box .options-flag {
        text-align: center;
    }
    .product-box .options-flag img{
        display: inline-block;
        border-radius: 0;
    }
    .product-box .options-price{
        text-align: center;
    }
	.footer {
		text-align: center;
	}
    .footer .h4
    {
        margin-top: 0px!important;
    }
	.footer .h4.head2 {
		margin-top: 40px!important;
	}
    .header .logo-wrap
    {
        margin: 0 auto;
/*        margin: 30px 25px 0;
*/  }
    .header .logo
    {
        max-width: 300px;
    }
    .header .col-nav
    {
        width: 100% !important;
        margin-left: 10px;
    }
    .header .col-search
    {
        width: 60%!important;
        right: 18px;
        top: 95px;
        text-align: right;
    }
    .row-container > .pb-section.page-banner-section
    {
        /* background-size: 140%!important; */
        background-position: top center!important;
    }
	.page-banner-section > .col-sm-12 {
		/* background-color: rgba(0,0,0,0.15); */
	}
	.page-banner-section .pb-column {
		padding: 15px 25px;
	}
    .page-banner-section h2 {
        margin-top: 0!important;
        padding-top: 0px;
		color: #333;
		font-weight: 600;
		padding-bottom: 130px;
    }
    .subtitle-section
    {
        padding: 45px 35px!important;
    }
    .row-container .pb-block > .pb-block-content
    {
        margin: 0;
    }
    .subtitle-section h3
    {
        display: flex;
        flex-direction: column;
        font-size: 20px;
    }
    .subtitle-section h3 strong
    {
        font-size: 18px;
    }
    .footer .coltable.main-coltable
    {
        display: flex;
        flex-direction: column-reverse;
    }
    .footer .foot-btn
    {
        text-align: center;
        display: block;
        margin-bottom: 35px;
    }
    .footer .col.foot-right
    {
        background-position: 20px bottom;
    }
    .footer .foot-right .logo-wrap
    {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 110px;
    }
    .copyright p
    {
        text-align: center;
    }
    .zulu-product .product-content .col{
        margin-top: 25px;
    }
    .zulu-product .product-content .col.product-description{
        padding-right: 0px;
    }
	.franchise-page .title-section h1 {
		margin-bottom: 20px;
	}
	.franchise-page .button {
		padding: 15px 30px;
		width: 100%;
	}
	.franchise-page .title-section,
	.franchise-page .product-content .col.product-description {
		padding: 40px;
	}
	.listing-header .col:last-child {
		text-align: center;
	}
	.franchise-page .franchise-profile {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.franchise-page .product-description .franchise-profile .profile-image-wrapper {
		margin: 0px;
		margin-bottom: 20px;
		flex: 200px 0 0;
	}
	.franchise-page .franchise-profile .profile-details {
		text-align: center;
	}
	.zulu-product h1 {
		font-size: 2.5rem!important;
	}
	.franchise-page .slick-arrow, .franchise-page .slick-arrow:active {
		width: 70px;
		height: 32px;
		bottom: 30px;
	}
	.franchise-page .slick-arrow.slick-next {
		right: 30px;
	}
	.franchise-page .slick-arrow.slick-prev {
		left: 30px;
	}
	#productSliderNav .slick-slide img {
		height: 80px;
	}
	.franchise-page .key-details-bar,
	.franchise-page .franchise-key-points {
		padding: 30px;
	}
	.franchise-page .key-details-bar h4:not(:first-child) {
		margin: 0px;
		margin-top: 20px;
	}
	.franchise-page .category-box {
		padding: 20px;
	}
	.franchise-page .category-box img {
		width: 60px;
	}
	.franchise-page .category-box .category-info select {
		width: 180px;
	}
	.franchise-page .category-box .category-icon span {
		width: 50px;
		font-size: 38px;
	}
	.franchise-page .franchise-key-points .share-buttons h4 {
		text-align: center;
	}
	.franchise-page .franchise-key-points .share-buttons .social-media-buttons {
		justify-content: center;
	}
	.section-content-image-columns .row, .resource-wrapper .row {
		margin: 0px;
	}

	.resource-wrapper .resource-heading .coltable {
		justify-content: center;
		align-items: center;
	}
	.resource-wrapper .resource-heading .coltable > .col:first-child {
		padding-right: 0;
		width: 100%;
		text-align: center;
	}
	.resource-wrapper .resource-heading .quick-nav {
		justify-content: center;
		flex-wrap: wrap;
		width: 100%;
		text-align: center;
	}
	.resource-wrapper .resource-heading .quick-nav > p {
		width: 100%;
		margin-right: 0;
		margin-bottom: 8px;
	}
	.resource-wrapper .resource-heading .quick-nav a.button {
		margin: 2px;
	}
}
@media screen and (max-width:600px) {
    .form-block .field.single, .form-block.single .field{
        padding: 0;
    }
	.zulu-search .page-structure {
	  	padding: 20px 0;
	}
}
@media screen and (max-width:500px) {

	.resource-wrapper {
		padding: 60px 0 20px;
	}
	.resource-wrapper:first-child {
		padding-top: 100px;
	}
	.resource-wrapper .resource-heading .quick-nav a.button {
		font-size: 12px;
		padding: 6px 14px 8px;
	}
	.resource-wrapper .post-wrap .post-item .post-body h4 {
		font-size: 13px;
	}
	.resource-wrapper .post-wrap .post-item .post-body h3 {
		font-size: 18px;
		line-height: 1.2;
	}

	.faq-popup .popup-content {
		padding: 25px;
	}
	.faq-popup .popup-content .popup-text {
		padding-left: 0;
		padding-right: 0;
	}
}
@media screen and (max-width:450px) {
    .zulu-search .product-box.row3 > li,
    .pb-block .product-box > li {
  		width: 100%;
	}
	body.zulu-search .frame-search .field input {
		padding-right: 25px;
	}
	body.zulu-search .frame-search .field button {
		position: static;
		margin-top: 10px;
		width: 100%;
	}

	.subtitle-section {
	  	padding: 0px !important;
	}
	.subtitle-section .pb-block.pb-block-type-image .pb-block-content img {
	  	margin: 15px 0;
	}
}
@media screen and (max-width:400px) {
    .zulu-search .sort-box #filter .filter {
		flex-wrap: wrap;
		text-align: center;
	}
	.zulu-search .sort-box #filter select {
		background-color: #eee;
		text-align: center;
	}
	.zulu-search .sort-box #filter input {
		margin-left: 0;
	}

    .page-banner-section h2 {
		padding-bottom: 100px;
    }
	.resource-wrapper .row.title h2 {
		font-size: 16px;
	}
	.resource-wrapper .post-wrap .post-item .post-body {
		padding: 20px 15px;
	}
	.resource-wrapper .post-wrap .post-item .post-body h4 {
		margin-bottom: 6px;
	}
	.resource-wrapper .post-wrap .post-item .post-body h3 {
		font-size: 16px;
	}
}
