/*** RESET ***/
:root{
	--accentColor: #cc511a;
	--accentColor500: #b44616;
	--color800: #222222;
	--color700: #333333;
	--color500: #757474;
	--color450: #999999;
	--color400: #d6d6d6;
	--color300: #eceaea;
	--color100: #f7f7f7;
	--primaryFont:'Montserrat', sans-serif;
}

html,body:not(#tinymce){
	margin:0;
	padding:0;
	font-size:16px;
	line-height:100%;
}

body{
	line-height: 100%;
	font-family: var(--primaryFont);
	color: var(--color800);
	background: var(--color100);
	letter-spacing: 1px;
}


/*** MISC ***/
#page_wrapper{
	float:left;
	width:100%;
	overflow: hidden;
	padding-top:80px;
}
*{
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5{
	width:100%;
	display: inline-block;
	margin: 0 0 10px 0;
	line-height: 100%;
}
p{
	display: inline-block;
	width: 100%;
	font-size: 14px;
	margin: 0 0 20px 0;
	line-height: 140%;
}
p:last-child{   
	margin-bottom: 0;
}
img{
	max-width: 100%;
	border:none;
	outline:none;
	max-width:100%;
}
a{
	color: currentColor;
}
a, a:hover{
	text-decoration:none
}
.svg_icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.svg_icon svg{
	width: 1em;
	height: 1em;
}
input,
select,
textarea,
button{
	font-family: var(--primaryFont);
	outline: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	appearance: textfield;
	-moz-appearance: textfield;
}

.button{
	--btnColor: var(--accentColor);
	--btnColorHover: var(--accentColor500);
	--btnTextColor: #FFF;
	display: inline-block;
	position: relative;
	line-height: 45px;
	border-radius: 99px;
	background: var(--btnColor);
	color:var(--btnTextColor);
	cursor: pointer;
	font-weight: 400;
	padding:0 30px;
	border: none;
	font-size:14px;
	border:1px solid transparent;
	transition: all 0.5s;
}
.button:hover{
	background: var(--btnColorHover);
}
.button.black_button{
	--btnColor: var(--color800);
	--btnColorHover: var(--color700);
}
.button i{
	transform: translateX(10px);
}
.button.ghost_button{
	background:none;
	border-color:var(--btnColor);
	color:var(--btnColor);
}
.button.ghost_button:hover{
	background:var(--btnColor);
	color:var(--btnTextColor);
}
.button.disabled,
.button:disabled{
	opacity:0.5;
	--btnColor:#CCC;
	pointer-events:none;
}

.spacer{
	float:left;
	width: 100%;
}

/*** SCROLL BAR ***/
body::-webkit-scrollbar {
	width: 5px;
}
body::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3);
}

/*** SWIPER ***/
:root{
	--swiper-navigation-color:var(--color500);
	--swiper-navigation-size:22px;
}

/*** HEADER ***/
#header{
	position: fixed;
	top:0;
	left:0;
	background: #FFF;
	color: var(--gray800);
	transition: all 0.5s;
	z-index: 99;
}
#header_main{
	height: 80px;
}
#header_logo{
	display: inline-block;
	max-width: 170px;
}

/** HEADER MENU **/
#header_menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
#header_menu > li {
    display: inline-block;
    position: relative;
    margin: 0 15px;
}
#header_menu > li > a {
    float: left;
    position: relative;
    color: #222;
    font-size: 12px;
    line-height: 80px;
    text-transform: uppercase;
    overflow: hidden;
}
#header_menu > li.menu-item-has-children > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% - 10px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #1a1a1a transparent;
    transform: translateY(10px);
    transition: all 0.5s;
}
#header_menu > li.menu-item-has-children:hover > a:after {
    transform: translateY(0);
}
#header_menu .sub-menu {
    position: absolute;
    top: 80px;
    left: 50%;
    width: 300px;
    margin: 0;
    padding: 10px 0;
    box-sizing: border-box;
    list-style: none;
    background: #1a1a1a;
    text-align: center;
    border-radius: 15px;
    line-height: 30px;
    transform: translateX(-50%) translatey(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
#header_menu li:hover .sub-menu {
    opacity: 1;
    transform: translateX(-50%) translatey(0);
    visibility: visible;
}
#header_menu .sub-menu li a {
    float: left;
    width: 100%;
    border-bottom: 1px solid #252525;
    line-height: 40px;
    font-size: 14px;
    color: #b2afaf;
    transition: all 0.3s;
}
#header_menu .sub-menu li:last-child a{
	border-bottom: none;
}

.whatsapp_button{
	--btnColor:#128c7e;
	line-height:40px;
	padding:0 15px 0 20px;
}
.whatsapp_button i{
	transform: translateX(-5px);
	font-size:18px;
}

/*** FOOTER ***/
#footer{
	background: var(--color800);
	color: #FFF;
}
#footer_main{
	padding: 60px 0;
}
#footer_logo img{
	width: 60px;
}
#footer_bar{
	height: 50px;
	font-size: 12px;
	color: var(--color500);
}
#footer_social_icons{
	gap: 5px;
}
#footer_social_icons a{
	width: 30px;
	height: 30px;
	color: #FFF;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}
#footer_menu {
    margin-top: 30px;
	gap:30px
}
#footer_menu a {
    font-size: 12px;
    color: #d6d6d6;
}

/*** LIGHTBOXES ***/
.lightbox{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	visibility:hidden;
	opacity:0;
	transition:all 0.5s;
	z-index:98;
}
.lightbox_active.lightbox{
	visibility:visible;
	opacity:1;
}
.lightbox.after_header{
	top:80px;
	height:calc(100vh - 80px);
}
.lightbox_overlay{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.8);
}
.lightbox_content{
	position:absolute;
	top:50%;
	left:50%;
	width:calc(100% - 40px);
	max-width:500px;
	padding:60px 40px 40px;
	background:#FFF;
	border-radius:10px;
	transform:translate(-50%, -50%);
}
.admin_lightbox .lightbox_content{
	top:inherit;
	transform:translateX(-50%);
}
.close_lightbox{
	position:absolute;
	display:inline-block;
	top:10px;
	right:10px;
	width:30px;
	height:30px;
	cursor:pointer;
	border:1px solid var(--color800);
	border-radius:50%;
}
.close_lightbox::before{
	content:'';
	position:absolute;
	top:50%;
	left:50%;
	width:20px;
	height:1px;
	background:var(--color800);
	transform:rotate(45deg) translate(-7px, 7px);
}
.close_lightbox::after{
	content:'';
	position:absolute;
	top:50%;
	left:50%;
	width:20px;
	height:1px;
	background:var(--color800);
	transform:rotate(-45deg) translate(-7px, -7px);
}
.lightbox_content .section_subtitle{
	font-size: 16px;
	line-height:150%;
	margin-bottom:20px;
}
.lightbox_content .section_title{
	font-size: 24px;
    margin-bottom: 30px;
}
#limit_date{
	text-transform: capitalize;
}

/*** SLIDER SECTION ***/
.slider_section {
	padding:15px;
}
.slider_section img{
	border-radius: 15px;
}

/*** QUOTATION STEPS SECTION ***/
.quotation_steps_section{
	padding:80px 0;
}
.quotation_steps_section .section_header{
	margin-bottom: 60px;
}
.quotation_steps{
	gap: 45px;
	position: relative;
}
.quotation_steps::before{
	content: '';
	position: absolute;
	top:22px;
	left:calc(var(--itemPercent) / 2);
	width: calc(100% - var(--itemPercent));
	height: 1px;
	background: var(--color500);
}
.quotation_step_item{
	width:calc(var(--itemPercent) - 45px);
	gap:15px;
	font-size:14px;
	color: var(--color500);
}
.quotation_step_icon{
	position: relative;
	width: 45px;
	height: 45px;
	border:1px solid;
	border-radius: 50%;
	background: var(--color100);
}
.quotation_step_icon img{
	width: 55%;
}

/*** EVENT TYPE SELECTION ***/
.event_type_selection_section{
	padding:80px 0;
}
.section_header{
	margin-bottom: 60px;
}
.event_type_item .spacer{
	padding-top:130%;
}
.event_type_bg{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: all 0.5s;
}
.event_type_title{
	position: absolute;
	bottom:0;
	left:0;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: bold;
	padding:30px;
	z-index: 2;
	transition: all 0.5s;
}
.event_type_item:hover .event_type_title{
	bottom:20px
}

/*** PRODUCT ITEM ***/
.product_item{
	background: #FFF;
	border-radius: 15px;
	padding:10px;
}
.product_selector input{
	display: none;
}
.product_selector .product_item{
	border:3px solid transparent;
	cursor: pointer;
	transition: all 0.3s;
}
.product_selector input:checked + .product_item{
	border-color: var(--accentColor);
}
.product_item_title {
    position: relative;
	font-size: 12px;
    padding: 15px 0;
}
.product_item_title::before{
	content: '';
	position: absolute;
	top:0;
	left: calc(50% - 25px);
	width: 50px;
	height: 1px;
	background:var(--color400);
	transition: all 0.3s;
}
.product_selector input:checked + .product_item .product_item_title::before,
.product_item:hover .product_item_title::before{
	background: var(--accentColor);
}

.products_carousel .product_item_title{
	overflow: hidden;
}

.product_item_price {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}
.product_item_add_buttons .button{
	line-height:30px;
	padding:0;
	width:100%;
}

/*** FORMS ***/
.form_field_label{
	font-weight: bold;
    color: #000;
	font-size: 13px;
    margin-bottom: 10px;
    text-align: center;
}
.text-input,
select{
	float:left;
	width:100%;
	height: 45px;
	padding:0 15px;
	border:none;
	background: var(--color300);
	outline: none;
}
select{
	appearance: none;
    -webkit-appearance: none;
	background-image: url(../images/down.svg);
    background-position: calc(100% - 10px) center;
    background-repeat: no-repeat;
    background-size: 20px;
	cursor: pointer;
}
.error_message{
	font-weight:bold;
	color:var(--accentColor);
}

/*** QUOTATION STEP 1 ***/
.step_section_wrapper{
	padding:60px 0 80px;
}
.products_grid_wrapper h3 {
    font-size: 16px;
    font-weight: bolder;
}
.products_grid_wrapper h4 {
	font-size: 14px;
    font-weight: normal;
	color:var(--color500);
	margin-bottom: 0;
}

/*** QUOTATION STEP 2 ***/
.order_summary_wrapper{
	border:1px solid var(--color450);
	color: var(--color700);
	border-radius: 15px;
}
.summary_item:not(:last-child){
	border-right: 1px solid var(--color450);
}
.summary_item_title{
	text-transform: uppercase;
	font-size: 12px;
}
.summary_item_value{
	font-weight: bold;
	color: var(--color700);
	margin-top: 5px;
}
.select_products_wrapper h3{
	font-size: 22px;
	font-weight: bolder;
	margin-bottom: 10px;
}
.select_products_wrapper h4{
	font-size: 16px;
	font-weight: normal;
	margin: 0;
	color: var(--color500);
}
.product_item_qty{
	display: inline-block;
    width: 100%;
    height: 35px;
	padding:0;
    border-radius: 99px;
    border: 1px solid var(--color400);
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}
.product_item_total_wrapper{
	background: var(--color300);
    text-transform: uppercase;
    margin: 10px -10px -10px;
    padding: 10px 0;
    width: calc(100% + 20px);
    border-radius: 0 0 15px 15px;
    font-size: 12px;
    font-weight: bold;
}
.select_products_search{
	display: inline-block;
	width:100%;
	height: 40px;
	border-radius: 99px;
	border:none;
	background-color: var(--color300);
	background-image:url(../images/search.svg);
	background-size: 15px;
	background-position: calc(100% - 15px) center;
	background-repeat: no-repeat;
	padding: 0 15px;
}
.select_products_search.loading{
	opacity:0.5;
	background-color:#666;
}

.products_grid_wrapper .openbar_pack_item_title{
	font-size: 22px;
	font-weight: bolder;
	margin-bottom: 5px;
}
.openbar_pack_header h4{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}
.openbar_pack_header h5{
	margin: 0;
}

/*** CART ADD EXTRAS ***/
.cart_add_extras_section {
	padding:80px 0;
}

/*** CONTACT SECTION ***/
.contact_section{
	padding:80px 0;
}
.contact_section .gform_footer {
	justify-content:center;
}

/*** DATEPICKER ***/
.ui-datepicker{
    width: 300px;
    background: #FFF;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    border-radius: 10px;
    margin-top: 10px;
}
.ui-datepicker-header{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.ui-datepicker-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}
.ui-datepicker-prev,
.ui-datepicker-next{
    position: relative;
    width: 30px;
    height: 30px;
    text-indent: 100%;
    overflow: hidden;
}
.ui-datepicker-prev:after,
.ui-datepicker-next:after{
    content:'\f104';
    font-family: fontawesome;
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    text-indent: 0;
}
.ui-datepicker-next:after{
    content: '\f105';
}
.ui-datepicker-calendar{
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    color: var(--color800);
    text-align: center;
    font-size: 14px;
    border-collapse: collapse;
}
.ui-datepicker-calendar a{
    color: currentColor;
}
.ui-datepicker-calendar th,
.ui-datepicker-calendar td{
    padding:6px;
}

.ui-datepicker-calendar th{
    border-bottom:1px solid var(--color400);
}
.ui-datepicker-unselectable{
    opacity: 0.5;
    pointer-events: none;
}
.ui-datepicker-today{
    color: var(--accentColor);
    font-weight: bold;
}
.ui-datepicker-current-day{
    border:1px solid var(--accentColor);
}
.ui-datepicker-calendar td{
    transition: all 0.3;
}
.ui-datepicker-calendar td:hover{
    background: var(--color300);
    cursor: pointer;
}

/*** PAGES ***/
.page_content_wrapper{
	padding: 80px 0;
}
.alert_message{
	float:left;
	width:100%;
	display: none;
	color:var(--accentColor);
	font-size: 12px;
	margin-top:10px;
	font-weight: bold;
	text-align: center;
}

/*** TABS ***/

.open_bar_title{
	font-size:22px;
	font-weight:bold;
	margin-bottom:20px;
}
.tabs{
	border-bottom:2px solid var(--accentColor);
	gap:10px;
}
.tab{
	width: 25%;
	border-width:2px 2px 0 2px;
	border-style:solid;
	border-color:var(--accentColor);
	background:var(--color100);
	opacity:0.4;
	padding:15px 0;
	border-radius:5px 5px 0 0;
	cursor:pointer;
	transition:all 0.3s;
}
.tab.current{
	opacity:1;
	transform:translateY(2px);
}
.tab h3{
	font-size:16px;
	text-transform:uppercase;
	margin:0 0 5px;
}
.tab h4{
	font-size:22px;
	margin:0;
	color:var(--accentColor);
}
.tab_content{
	float:left;
	width:100%;
	display:none;
}
.tab_content:first-of-type{
	display:inline-block;
}

.search_input{
	float:left;
	width:100%;
	height:40px;
	border-radius:5px;
	border:1px solid #CCC;
	padding:0 10px;
}
.search_input + i{
	position:absolute;
	top:0;
	right:0;
	width:40px;
	height:40px;
	display:inline-flex;
	align-items:center;
    justify-content: center;
	color:#CCC;
}
.search_input.loading{
	background:#CCC;
}
.search_input.loading + i::before{
	content:'\f110';
	color:#eb3d34;
	animation: loadingRotate 1s infinite ease;
}

.tailormade_price_line{
	font-size:18px;
	text-transform:uppercase;
}
#tailormade_no_results{
	background: #e6e6e6;
    font-style: italic;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: 30px;
}
#tailormade_slider{
	display:none;
}
#tailormade_added_wrapper{
	display:none;
}
.start_form_list {
	gap:20px;
}

/*** QUOTE SEARCH ***/
#quote_search_input{
	width: 100%;
	height: 50px;
    padding: 0 20px;
    border: 1px solid var(--color400);
	background-color:#FFF;
	border:1px solid #CCC;
	border-radius: 5px;
	background-image:url(../images/search.svg);
	background-size: 20px;
	background-position: right 15px center;
	background-repeat: no-repeat;
}
#quote_search_input.loading{
	opacity: 0.5;
	background-color:#CCC;
	pointer-events: none;
}

/*** QUOTE SECTION ***/
.quote_section{
	padding:80px 0;
}
#quote_table{
	width: 100%;
	background: #FFF;
	border:1px solid var(--color400);
	border-collapse: collapse;
}
#quote_table th,
#quote_table td{
	padding:15px;
}
#quote_table th{
	background: var(--color700);
	color: #FFF;
}
#quote_table tbody tr:nth-child(even) td{
	background: var(--color100);
}
#quote_table tfoot .quote_total td,
#quote_table tfoot .quote_total_products td{
	padding: 15px;
	border-top: 1px solid var(--color400);
}
#quote_table tfoot .quote_total td{
	font-size: 18px;
	font-weight: bold;
}
#quote_table .product_image{
	width: 80px;
	padding:15px 5px;
}
#quote_table .product_image img{
	width: 100%;
}
#quote_table .product_name{
	width: calc(100% - 480px);
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 5px;
}
#quote_table .product_quantity,
#quote_table .product_price,
#quote_table .product_total{
	width: 130px;
}
#quote_search_results{
	position: absolute;
    bottom:10px;
    left: 0;
    width: calc(100% - 120px);
	display: flex;
	flex-direction: column;
	gap: 5px;
    background: #FFF;
    border-radius: 15px;
    transform: translateY(100%);
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    max-height: 300px;
	overflow: hidden auto;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
}
#quote_search_results.active{
	visibility: visible;
	opacity: 1;
	bottom: -10px;
}
.product_quote_quantity_wrapper{
	border: 1px solid var(--color400);
	border-radius: 5px;
	overflow: hidden;
}
.product_quote_quantity_button{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #FFF;
	color: var(--color500);
	cursor: pointer;
}
.product_quote_quantity_input{
	width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none;
}
.product_quote_remove{
	position: absolute;
	top:0;
	left:0;
	width: 20px;
	height: 20px;
	background: var(--accentColor500);
	color: #FFF;
	border-radius: 50%;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}


#quote_search_results::-webkit-scrollbar {
	width: 5px;
}
#quote_search_results::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}
#quote_search_results::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3);
}
#quote_search_results li{
	padding: 10px 15px;
	border-bottom: 1px solid var(--color400);
	cursor: pointer;
	transition: all 0.3s;
}
#quote_search_results li:hover{
	background: #f7f7f7;
}
.product_list_name{
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 5px;
}
.product_list_price{
	font-size: 14px;
	color: var(--color500);
}

@media(max-width:992px) {
	#footer_menu{
		gap:10px;
		line-height:170%;
	}
	.quotation_steps {
    	gap: 30px;
	}
	.quotation_step_item{
		width:33.33%;
	}
	.quotation_steps::before{
		display:none;
	}
	.section_title{
		font-size:22px;
	}
	.whatsapp_button i {
    	transform: translateX(0);
	}
	.whatsapp_button{
		padding:0;
		width:40px;
		height:40px;
		display:inline-flex;
		align-items:center;
		justify-content:center;
	}
	.tab {
    	width: calc(50% - 5px);
	}
	.start_form_list .button{
		padding:0;
		width:33%;
	}
}