/*
Theme Name: Tania Maras
Author: Five by Five
Version: 4.0
*/

:root {
    color-scheme: auto;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Cormorant Garamond', sans-serif;
	color: #000;
	font-size: 16px;
	line-height: 1.8;
    overflow-x: hidden;
}

.font-cormorant{
	font-family: 'Cormorant Garamond', sans-serif;
}

.font-montserrat{
	font-family: 'Montserrat', sans-serif;
}

h1 { font-size: 47px; }
h2 { font-size: 40px; }
h3 { font-size: 35px; }
h4 { font-size: 30px; }
h5 { font-size: 24px; }
h6 { font-size: 18px; }

p {
	margin: 0 0 20px;
    /* font-weight: 600; */
}

a {
	color: inherit;
    transition: background-color .3s ease, opacity .3s ease, color .3s ease;
}

a[role="button"] {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

select,
button,
textarea,
input {
    font-size: inherit;
    font-family: inherit;
}

.btn,
button,
input[type="submit"],
a {
    cursor: pointer;
}

.wrapper {
    width: 1420px;
	max-width: 100%;
	padding: 0 10px;
	margin: 0 auto;
}

.site-container {
    overflow-x: hidden;
}

.special-paragraph-style-1{
    font-size: 20px;
    font-weight: 400;
    line-height: 2rem;
    font-family: 'Cormorant Garamond';
}

.special-paragraph-style-2{
    font-size: 20px;
    font-weight: 600;
    line-height: 2rem;
    font-family: 'Cormorant Garamond';
    color: #F9F0ED;
}

.special-caps-listing{
    font-family: 'Montserrat';
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#breadcrumbs{
	font-family: 'Cormorant Garamond';
	font-size: 16px;
	font-weight: 600;
	line-height: 1.75rem;
}

.sub-heading,
.sub-heading h2{
    font-family: 'Cormorant Garamond';
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.875rem;
}

.content-well-2{
	border: 1px solid #000;
	font-size: 20px;
	font-weight: 600;
	line-height: 2rem;
	padding: 18px 31px 42px 38px;
}

.content-well{
	border: 1px solid #000;
	color: #fff;
	background: #000;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.75  rem;
	padding: 22px 30px 48px 31px;
}

.capitalize-text{
    text-transform: uppercase;
}

.italic-text{
    font-style: italic;
}


.p-margin-bottom-remove p:last-child{
	margin-bottom: 0px;
}

/* Site Scrollbar */
::-webkit-scrollbar {
    width: 0.7rem;
}
::-webkit-scrollbar-track {
    border: none;
	background: #e5e5e5;
}
::-webkit-scrollbar-thumb {
    /* border: 2px solid #e5e5e5;
    border-radius: 10px; */
    background: #000;
}
::-webkit-scrollbar-thumb:hover {
    background: #3b3f42; 
}

/* Keyframes */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@-webkit-keyframes fade-in-top{
    0%{-webkit-transform:translateY(-30px);transform:translateY(-30px);opacity:0}
    100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
@keyframes fade-in-top{
    0%{-webkit-transform:translateY(-30px);transform:translateY(-30px);opacity:0}
    100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
.fade-in-top {
	-webkit-animation: fade-in-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-in-bottom{
    0%{-webkit-transform:translateY(30px);transform:translateY(30px);opacity:0}
    100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
@keyframes fade-in-bottom{
    0%{-webkit-transform:translateY(30px);transform:translateY(30px);opacity:0}
    100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
}
.fade-in-bottom {
	-webkit-animation: fade-in-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation: fade-in-bottom 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-out-top{
    0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
    100%{-webkit-transform:translateY(-30px);transform:translateY(-30px);opacity:0}
}
@keyframes fade-out-top{
    0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}
    100%{-webkit-transform:translateY(-30px);transform:translateY(-30px);opacity:0}
}
.fade-out-top {
	-webkit-animation: fade-out-top 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: fade-out-top 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


/* Buttons */
.btn,
button,
input[type="button"],
input[type="submit"],
.elementor-button {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    font-weight: 700;
    padding: 10px;
    line-height: 1;
    transition: background-color .3s ease, color .3s ease, border .3s ease;
	border-radius: 0px;
	font-family: 'Montserrat';
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25rem;
	letter-spacing: 2px;
	text-transform: uppercase;
}

button,
input[type="button"],
input[type="submit"]{
	height: 50px;
}

.elementor button{
	font-family: 'Montserrat';
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
}

.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.elementor-button:hover {
    border-color: #000;
    background: #fff;
    color: #000;
}

.secondary .elementor-button,
.terrain .elementor-button,
.btn.secondary{
	border-color: #000;
    background: #fff;
    color: #000;
}

.secondary .elementor-button:hover,
.terrain .elementor-button:hover,
.btn.secondary:hover{
	border-color: #000;
    background: #000;
    color: #fff;
}

.elementor-button.elementor-size-xs,
.elementor-button.elementor-size-md,
.elementor-button.elementor-size-lg,
.elementor-button.elementor-size-xl{
	border-radius: 0px;
}

.gm-style button {
    border-radius: 0;
}

.btn, .elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    min-height: 50px;
}

.underline-button .elementor-button{
	background: transparent;
	border: none;
	padding: 0px 0px 3px;
	position: relative;
	min-height: 21px;
	color: #FFF;
}

.underline-button .elementor-button-content-wrapper:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: #FFF;
	bottom: -2px;
	left: 0px;
	transition: 0.4s;
}

.underline-button:hover .elementor-button-content-wrapper:after{
	width: 0px;
}

.underline-button-2 .elementor-button{
	background: transparent;
	border: none;
	padding: 0px 0px 3px;
	position: relative;
	min-height: 21px;
	color: #FFF;
}

.underline-button-2 .elementor-button-content-wrapper:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: #FFF;
	bottom: -2px;
	right: 0px;
	transition: 0.4s;
}

.underline-button-2:hover .elementor-button-content-wrapper:after{
	width: 125px;
}

.header-stick .underline-button-2 .elementor-button, 
.black-text-header .underline-button-2 .elementor-button{
	color: #000;
}

.header-stick .underline-button-2 .elementor-button-content-wrapper:after,
.black-text-header .underline-button-2 .elementor-button-content-wrapper:after{
	background: #000;
}

/* Header */
.elementor-location-header {
    background: transparent;
}
/* .header-stick .site-header, */
.header-stick.header-type2 .elementor-location-header,
.header-stick .elementor-location-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    animation:fade-in-top .3s cubic-bezier(.39,.575,.565,1.000) both;
}
/* .header-unstick .site-header, */
.header-unstick.header-type2 .elementor-location-header,
.header-unstick .elementor-location-header {
    animation:fade-out-top .2s cubic-bezier(.25,.46,.45,.94) both;
}

.header-type2 .site_header_con,
.header-type2 .elementor-location-header {
	position: absolute;
	width: 100%;
	z-index: 100;
}

.header-type2 .site-header {
	background: none;
	color: #fff;
}
.header-type2.header-stick .elementor-location-header {
	background: #F9F0ED;
	color: #000;;
}

.header-type2.header-stick .with-alt-logo .site-logo-main,
.header-type2 .with-alt-logo .site-logo-alt,
.black-text-header.header-type2 .with-alt-logo .site-logo-main{
    display: none;
}
.header-type2.header-stick .with-alt-logo .site-logo-alt,
.black-text-header.header-type2 .with-alt-logo .site-logo-alt{
    display: inline-block;
}

.header-type2.header-stick div.elementor-element:has(.ff-ticker-tape){
	display: none;
}

.header-type2.header-stick .elementor-nav-menu--main .elementor-nav-menu .elementor-item,
.black-text-header.header-type2 .elementor-nav-menu--main .elementor-nav-menu .elementor-item{
	color: #000;
}

.header-type2.header-stick .underline-button .elementor-button,
.black-text-header.header-type2 .underline-button .elementor-button{
	color: #000;
}


.header-type2.header-stick .underline-button .elementor-button-content-wrapper:after{
	background: #000;
}

.black-text-header.header-type2 .underline-button:hover .elementor-button{
	color: #000;
}

.black-text-header.header-type2 .underline-button .elementor-button-content-wrapper:after{
	background: #000;
}

/* Menu */
ul.menu {
    list-style: none;
    padding: 0;
}
div .elementor-nav-menu .sub-arrow {
    display: none;
}
.elementor-nav-menu .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
} 
.elementor-nav-menu .menu-item-has-children > a:after {
    content: '\e90b';
    font-family: 'icomoon';
    opacity: 1!important;
    position: relative;
}

/* Search */
.ff-search {
    background: #f8f9fa;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    transition: transform .5s cubic-bezier(0.390, 0.575, 0.565, 1.000);
    will-change: transform;
    transform: translate3d(0, -100%, 0);
}
.show_search .ff-search {
    transform: translate3d(0, 0, 0);
}
.ff-search form {
    width: 730px;
    max-width: 100%;
    position: relative;
}
.ff-search .search-input {
    width: 100%;
    background: #fff;
    border: 1px solid #ACB5BD;
    height: 60px;
    border-radius: 60px;
    padding: 5px 25px 5px 25px;
}
.ff-search .submit {
    width: 150px;
    position: absolute;
    right: 5px;
    height: 50px;
    top: 5px;
    border-radius: 50px;
}
.ff-search .close {
    position: absolute;
    top: 20px;
    right: -30px;
    font-size: 25px;
    font-weight: 400;
    opacity: .6;
    cursor: pointer;
}
.ff-search .close:hover {
    opacity: 1;
}

/* Slide Menu */
.ff-slide-menu-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 100;
    pointer-events: none;
    display: none;
}
.show_slide_menu .ff-slide-menu-mask {
    display: block;
    pointer-events: auto;
    animation: fadeIn 1s;
}
.ff-slide-menu {
    width: 100%;
    max-width: 370px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 9999999999;
    transition: transform .6s cubic-bezier(0.390, 0.575, 0.565, 1.000);
    transition-delay: .1s;
    transform: translate3d(100%, 0, 0);
    will-change: transform;
    padding: 20px;
    overflow: auto;
    font-family: 'Montserrat';
    font-size:  13px;
    font-weight:  600;
    line-height:  1.25rem;
    letter-spacing:  2px;
    text-transform:  uppercase;
}
.show_slide_menu .ff-slide-menu {
    transform: translate3d(0, 0, 0);
}
/* .show_slide_menu .site-container {
    transform: translate3d(-100px, 0, 0);
} */
body.show_slide_menu {
    overflow: hidden;
}
.ff-slide-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1;
}
.ff-slide-menu-close {
    cursor: pointer;
    font-size: 30px;
}
.ff-slide-menu-close:hover {
    opacity: .8;
}

.ff-slide-menu-trigger {
    background: none;
    border: none;
    padding: 2px;
    width: 38px;
    height: 34px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 7px;
}
.ff-slide-menu-trigger span {
    height: 1px;
    width: 100%;
    background: #000;
}
.ff-slide-menu-trigger:hover {
    background: none;
}
.ff-slide-menu-trigger .l1 {
    width: 70%;
    transition: width .5s ease;
    will-change: width;
}
.ff-slide-menu-trigger:hover .l1 {
    width: 100%;
}

.ff-slide-menu .sub-menu {
    /* overflow: hidden;
    transition: all .5s ease;
    height: 0;
    display: flex; */
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.2;
    padding: 0;
    margin-top: 10px;
    /* margin-bottom: 10px; */
}
/* .ff-slide-menu .show-sub .sub-menu {
    height: initial;
    padding-bottom: 12px;
    animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
} */

.ff-slide-menu .menu-item-has-children > a {
    position: relative;
    display: flex;
	justify-content: space-between;
	align-items: center;
}
.ff-slide-menu .menu-item-has-children > a:after {
	content: '';
	background: url('/wp-content/uploads/2024/01/submenu-icon.svg');
	width: 10px;
	height: 6px;
	display: block;
	transform: rotate(180deg);
	transition: 0.4s ease;
}
.ff-slide-menu .menu-item-has-children > a.toggle_switch:after {
    transform: rotate(0deg);
}
.ff-slide-menu .toggle_height_el_con {
    transition: height 500ms ease;
}
.ff-slide-menu .search-form{
    position: relative;
} 
.ff-slide-menu .search-button{
    position: absolute;
    right: 0;
    background: none;
    border: 0;
    color: #000;
    padding: 10px 10px;
    font-size: 24px;
}

.ff-slide-menu .book a{
    text-decoration: none;
    width: 100%;
    margin-bottom: 20px;
}

.ff-slider-menu-inner .ff-slide-menu-body #menu-main-menu .botanica a,
.ff-slider-menu-inner .ff-slide-menu-body #menu-mobile-menu .botanica a{
	font-size: 0px;
	text-indent: -9999px;
	position: relative;
}

.ff-slider-menu-inner .ff-slide-menu-body #menu-main-menu .botanica a:after,
.ff-slider-menu-inner .ff-slide-menu-body #menu-mobile-menu .botanica a:after{
	content: '';
	background: url(/wp-content/uploads/2024/03/Botanica-burgundy.webp);
	background-size: cover;
	width: 99px;
	height: 15px;
	opacity: 1 !important;
	position: absolute;
	transition: none;
	display:block;
	top: -8px;
}

/* FOR indention mobile menu */
.ff-slide-menu .ff-level-1 > a:before,
.ff-slide-menu .ff-level-2 > a:before,
.ff-slide-menu .ff-level-3 > a:before{
    content:'';
    background-color: #00000080;
    height: 2px;
    width: 10px;
    position: absolute; 
    top: 0;
    bottom: 0;
    margin: auto;
}
.ff-slide-menu .ff-level-1 > a{
    padding-left: 21px;
    position: relative;
}
.ff-slide-menu .ff-level-2 > a{
    padding-left: 39px;
    position: relative;
}
.ff-slide-menu .ff-level-3 > a{
    padding-left: 57px;
    position: relative;
}
.ff-slide-menu .ff-level-1 > a:before{
    left: 3px;
}
.ff-slide-menu .ff-level-2 > a:before{
    left: 21px;
}
.ff-slide-menu .ff-level-3 > a:before{
    left: 39px;
}

/* Swiper / Carousel */
.swiper-slide {
    width: auto;
}
.transition-linear {
    transition-timing-function: linear;
}
.swiper-pagination-bullet {
	font-size: 0;
	line-height: 1;
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: transparent;
    border: 1px #000 solid;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
}

.swiper-pagination.numeric .swiper-pagination-bullet {
	font-size: 15px;
	font-weight: bold;
	color: #a4a7aa;
	letter-spacing: 1px;
    width: 40px ;
    height: 15px;
    display: inline-flex;
	justify-content: center;
	align-items: center;
    border-radius: 0;
    background: transparent;
    border: 0px;
	border-right: 2px #a4a7aa solid;
	margin: 0;
}
.swiper-pagination.numeric .swiper-pagination-bullet:last-of-type {
	border-right: 0px;
}
.swiper-pagination.numeric .swiper-pagination-bullet-active {
    background: transparent;
	color: #000;
}

.custom-style-dots .swiper-pagination{
    position: relative;
	display: flex;
	justify-content: center;
}

.custom-style-dots .swiper-pagination .swiper-pagination-bullet {
	font-size: 0;
	line-height: 1;
    width: 70px;
    height: 4px;
    display: inline-block;
    border-radius: 0%;
    background: #E9ECEF;
    border: none;
    opacity: 1;
    margin: 0;
} 
.custom-style-dots .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
}

/* Toggle Height */
.toggle_height_el_con {
    height: 0;
    overflow: hidden;
    transition: height 600ms ease;
}

/* Others */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { 
    display: none; 
}

.NOIntersectionObserver .elementor-invisible {
	visibility: visible;
}

body.admin-bar .dialog-lightbox-widget {
    min-height: 100vh;
}

body:not(.elementor-editor-active) .defer-bg-image div,
body:not(.elementor-editor-active) .defer-bg-image section,
body:not(.elementor-editor-active) .defer-bg-image {
	background-image: none!important;
}

.section-with-border-top:before,
.section-with-border-bottom:before {
	content: '';
	position: absolute;
	width: 1400px;
    max-width: 100%;
	left: 50%;
	translate: -50%;
	height: 2px;
    background: #eff0f1;
}
.section-with-border-bottom:before {
    top: initial;
    bottom: 0;
}
.section-with-border-top:before {
    bottom: initial;
	top: 0;
}

.elementor-video-wrapper iframe {
    height: 100%;
}

.flex {
    display: flex;
}
.items-no-shrink .item {
    flex-shrink: 0;
}

.color-white {
    color: #fff;
}

.hide {
    display: none!important;
}

.option.show {
    display: block!important;
}

.text-center { text-align: center; }

.lh-0 { line-height: 0; }
.lh-1 { line-height: 1; }

.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.limit-lines-4,
.limit-lines-3,
.limit-lines-2,
.limit-lines {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.limit-lines-2 {
    -webkit-line-clamp: 2;
}
.limit-lines-3 {
    -webkit-line-clamp: 3;
}
.limit-lines-4 {
    -webkit-line-clamp: 4;
}

.fa-twitter:before{ 
    content: '\e935' !important;
    font-family: 'icomoon' !important;
    font-weight: 400 !important;
}

/*Bullet List Styling - Add to FF List Widget use .bullet-list-style class*/
.bullet-list-style .item-list{
	border-bottom: 1px solid #000;
	padding-bottom: 11px;
	padding-top: 9px;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-family: 'Montserrat';
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	display: flex;
	gap: 25px;
	align-items: center;
}

.bullet-list-style .item-list:before{
	content: '';
	background: url('/wp-content/uploads/2024/01/ai-tm-bullet_icon.svg');
	width: 12px;
	height: 2px;
	display: block;
	flex-shrink: 0;
}

/*Tab styling*/
.elementor-widget-n-tabs.tab-styling .e-n-tabs {
    gap: 30px;
}

.elementor-widget-n-tabs.tab-styling .e-n-tabs-heading{
    justify-content: start;
    gap: 0;
}

.elementor-element.elementor-widget-n-tabs.tab-styling .e-n-tab-title{
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    background-color: transparent!important;
    border-bottom: 2px #CCC solid!important;
	font-size: 13px;
	line-height: 1.25rem;
	letter-spacing: 2px;
	padding-bottom: 21px;
	padding-top: 0px;
	background-color: #FFF;
	padding-left: 15px;
	padding-right: 15px;
	font-family: 'Montserrat';
	min-width: 160px;
	padding-top: 20px;
}

.elementor-widget-n-tabs.tab-styling .e-n-tab-title:hover{
    color: #000!important;
    background-color: transparent!important;
    border-bottom: 2px #23262a solid;
}

.elementor-widget-n-tabs.tab-styling .e-n-tab-title[aria-selected=true]{
    background-color: transparent!important;
    border-bottom: 2px #000 solid!important;
}

.elementor-widget-n-tabs.tab-styling .e-n-tab-title-text{
    font-size: 13px;
}


/*Sidetab Styling*/
.sidetab-styling .e-n-tabs {
    align-items: flex-start;
	gap: 0 !important;
}

.sidetab-styling .e-n-tabs-heading{
	overflow: hidden;
	gap: 0 !important;
}

.sidetab-styling .e-n-tabs-heading,
.sidetab-styling .e-n-tabs-content {
    background: #fff;
	box-shadow: 0px 0px 13px rgba(2, 6, 19, 0.09);
}

.sidetab-styling .e-n-tab-title{
    background-color: #fff !important;
}

.sidetab-styling .e-n-tab-title:hover,
.sidetab-styling .e-n-tab-title[aria-selected=true]{
    background-color: #23262a !important;
}

/*Mobile Menu Styling*/
.ff-slider-menu-inner{
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* .ff-slider-menu-inner > div{
    flex: 0 0 auto;
} */

.ff-slider-menu-inner .ff-slide-menu-body{
    /*flex: 1 0 auto;*/
    margin-bottom: 20px;

}

.ff-slider-menu-inner .ff-slide-menu-body #menu-main-menu,
.ff-slider-menu-inner .ff-slide-menu-body #menu-mobile-menu{
	margin-top: 30px;
}

.ff-slider-menu-inner .ff-slide-menu-body #menu-main-menu > li,
.ff-slider-menu-inner .ff-slide-menu-body #menu-mobile-menu > li{
	padding-top: 5px;
	padding-bottom: 5px;
}

.ff-slider-menu-inner .ff-slide-menu-body #menu-main-menu li a,
.ff-slider-menu-inner .ff-slide-menu-body #menu-mobile-menu li a{
	font-family: 'Cormorant Garamond';
	font-size: 24px;
	font-weight: 400;
	line-height: 2.65rem;
	text-transform: none;
	text-decoration: none;
	letter-spacing: 0px;
}

.ff-slider-menu-inner .ff-slide-menu-body #menu-main-menu li.menu-item-has-children .sub-menu li,
.ff-slider-menu-inner .ff-slide-menu-body #menu-mobile-menu li.menu-item-has-children .sub-menu li{
	padding-top: 5px;
	padding-bottom: 5px;
}

.ff-slider-menu-inner .ff-slide-menu-body #menu-main-menu li.menu-item-has-children .sub-menu li a,
.ff-slider-menu-inner .ff-slide-menu-body #menu-mobile-menu li.menu-item-has-children .sub-menu li a{
	font-family: 'Montserrat';
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25rem;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.ff-slide-menu-header a + div{
	cursor: pointer;
}

/* Custom-scrollbar */
.custom-scrollbar,
.custom-scrollbar.elementor-widget {
    overflow-y: auto;
    overflow-x: hidden;
	padding-right: 15px;
	backface-visibility: hidden;
	/* transform: translateY(0px); */
}
.custom-scrollbar::-webkit-scrollbar,
.custom-scrollbar.elementor-widget::-webkit-scrollbar {
    width: 2px;
}
.custom-scrollbar::-webkit-scrollbar-track,
.custom-scrollbar.elementor-widget::-webkit-scrollbar-track {
	-webkit-border-radius: 1.250em;
	border-radius: 1.250em;
	border: none;
	background-color: #E9ECEF;
	/* box-shadow: inset 0 0 6px rgba(0,0,0,0.2); */
}
.custom-scrollbar::-webkit-scrollbar-thumb,
.custom-scrollbar.elementor-widget::-webkit-scrollbar-thumb {
    -webkit-border-radius: 1.250em;
    border-radius: 1.250em;
    background-color: #495056;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover,
.custom-scrollbar.elementor-widget::-webkit-scrollbar-thumb:hover {
    background-color: #495056;
}

.custom-scrollbar.style-white::-webkit-scrollbar-track,
.custom-scrollbar.style-white.elementor-widget::-webkit-scrollbar-track {
	background-color: #ffffff50;
}
.custom-scrollbar.style-white::-webkit-scrollbar-thumb,
.custom-scrollbar.style-white.elementor-widget::-webkit-scrollbar-thumb {
    background-color: #fff;
}
.custom-scrollbar.style-white::-webkit-scrollbar-thumb:hover,
.custom-scrollbar.style-white.elementor-widget::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
}


@media(max-width: 767px){
    .sidetab-styling .e-n-tabs {
        align-items: stretch;
        box-shadow: 0px 0px 13px rgba(2, 6, 19, 0.09);
    }
    
    .sidetab-styling .e-n-tab-title{
        background-color: transparent !important;
        border-bottom: 4px #dedede solid;
        margin: 0px !important;
    }
    
    .sidetab-styling .e-n-tab-title:hover,
    .sidetab-styling .e-n-tab-title[aria-selected=true]{
        background-color: transparent !important;
        border-bottom: 4px #23262a solid;
        color: #23262a !important;
    }
}

@media(max-width: 1023px){
    .tab-styling .e-n-tabs {
        gap: 10px;
    }
    
    .tab-styling  .e-n-tab-title{
        padding: 10px 20px;
    }
}


@media(max-width:1023px){
    .tablet-ml-auto { margin-left: auto; }
    .tablet-mr-auto { margin-right: auto; }
    .tablet-mx-auto { margin-left: auto; margin-right: auto; }
    .tablet-text-center { text-align: center; }

    .tablet-cols-fullwidth.e-con > .e-con-inner {
        flex-wrap: wrap;
    }
    .tablet-cols-fullwidth.e-con > .e-con-inner > .e-con {
        width: 100%;
    }
}
@media(max-width:767px){
    .mobile-ml-auto { margin-left: auto; }
    .mobile-mr-auto { margin-right: auto; }
    .mobile-mx-auto { margin-left: auto; margin-right: auto; }
    .mobile-text-center { text-align: center; }

    iframe#tidio-chat-iframe{
        inset: auto -7px 20px auto !important;
    }
}

/* @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    
} */

/*Swiper Button Styling*/
.custom-navigation .swiper-button-wrapper{
	display: flex;
	justify-content: center;
	gap: 20px;
}

.custom-navigation .swiper-button-wrapper .swiper-button-next,
.custom-navigation .swiper-button-wrapper .swiper-button-prev{
	position: relative;
	left: 0px;
	right: 0px;
}


.custom-navigation .swiper-button-next, 
.custom-navigation .swiper-button-prev{
    display: none;
    padding: 5px;
}


.custom-navigation .swiper-button-next{
    width: fit-content;
}

.custom-navigation .swiper-button-next:after{
    content: '';
    background: url('/wp-content/uploads/2024/01/hi-tm-button_right.svg');
    width: 30px;
    height: 8px;
}

.custom-navigation .swiper-button-prev{
    width: fit-content;
}

.custom-navigation .swiper-button-prev:after{
    content: '';
    background: url('/wp-content/uploads/2024/01/hi-tm-button_left.svg');
    width: 30px;
    height: 8px;
}

.woo-variation-items-wrapper:has(.woo-variation-raw-select) .ff-custom-dropdown-style{
    display: none;
}


@media(max-width:1023px){
    .custom-navigation .swiper-button-next, 
    .custom-navigation .swiper-button-prev{
        display: flex;
    }
}

.hidden-menu-service .line-menu h2{
	width: fit-content;
}

.hidden-menu-service .line-menu .item-list{
	width: fit-content;
	display:block;
	font-size: 12px;
	fontw-weight: 400;
	line-height: 1.25rem;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.hidden-menu-service .line-menu .item-list:hover:after{
	transform: scale(1);
	transition: 0.2s;
}

.hidden-menu-service .line-menu .item-list:after{
	width: 100%;
	height: 1px;
	content: '';
	background: #000;
	display: block;
	transform: scale(0);
	transition: 0.2s;
}

.fa-facebook:before{
    content: "\e905" !important;
    font-family: icomoon !important;
}

#single_product_summary .ff-wishlist .like_button{
	height: 50px;
	display: flex;
    width: fit-content;
}

#single_product_summary .ff-wishlist .like_button .show-mobile-prompt{
    display: none;
}

#single_product_summary .ff-wishlist .like_button .on:after{
	content: '';
	background: url('/wp-content/uploads/2024/03/wishlist_off.svg');
	width: 24px;
	height: 23px;
	margin-left: 20px;
}

#single_product_summary .ff-wishlist .like_button .off:after{
	content: '';
	background: url('/wp-content/uploads/2024/03/wishlist_on.svg');
	width: 24px;
	height: 23px;
	margin-left: 20px;
}

/*12 column layout*/

@media(max-width: 1023px){
    .ajax-loop.cols-3{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width: 767px){
    .ajax-loop.tablet-cols-2{
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 10px;
    }

	#single_product_summary .ff-wishlist{
		width: 100%;

	}

	#single_product_summary .ff-wishlist .like_button{
		height: 50px;
		display: flex;
		width: 100%;
		justify-content: center;
		border: 1px solid #000;
	}

    #single_product_summary .ff-wishlist .like_button .show-mobile-prompt{
        display: block;
    }

	#single_product_summary .ff-wishlist .like_button span{
		font-family: 'Montserrat';
		font-size: 15px;
	}

			
	#single_product_summary .ff-wishlist .like_button .on:after{
		content: '';
		background: url('/wp-content/uploads/2024/03/wishlist_off.svg');
		width: 24px;
		height: 23px;
		margin-left: 20px;
	}
	
	#single_product_summary .ff-wishlist .like_button .off:after{
		content: '';
		background: url('/wp-content/uploads/2024/03/wishlist_on.svg');
		width: 24px;
		height: 23px;
		margin-left: 20px;
	}
}

@media(max-width: 425px){
    .ajax-loop.mobile-cols-1{
        grid-template-columns: 1fr;
    }
}


.ff-alert-popup{
    position: fixed;
    left: 0px;
    bottom: 0px;
    padding:10px ; 
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
    pointer-events: none;
}

.ff-alert-popup .item{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 10px;
    border:2px solid #000;
    background-color: #fff;
    width: fit-content;
    z-index: 999;
    pointer-events: auto;

}
.ff-alert-popup .item .s2{
    font-weight: 600;
}
.ff-alert-popup .item .s1,
.ff-alert-popup .item .s3{
    line-height: 1;
}

.ff-alert-popup .item .s3{
    cursor: pointer;
    border-radius: 100%;
    background-color: #000;
    color: #fff;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}