.elementor-location-header{
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
	max-width: 100vw;
}
.elementor-location-header.XNThide,.elementor-location-header.XNThide2{
	position:absolute;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

/*Remove margin on last p text widget*/
.elementor-widget-text-editor .elementor-widget-container p:last-child, .elementor-widget-text-editor p:last-child{
	margin-bottom:0;
}

/*Elementor form messages*/
.elementor-message {
    background-color: #FFF;
    padding: 20px;
    line-height: 1.2;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}
.elementor-message.elementor-message-success {
    background-color: #a7de9c;
}


/*Set max width for full-width elements*/
@media screen and (min-width:1920px){
	body > .elementor > .elementor-element, body > .elementor > .elementor-section-wrap > .elementor-element-edit-mode,body main > .elementor > .elementor-element, body main > .elementor > .elementor-section-wrap > .elementor-element-edit-mode {
		max-width: 1920px;
		margin-left: auto;
		margin-right: auto;
		left: 0;
		right: 0;
		background-color:#FFF;
		inset-inline-start: 0 !important;
		position:relative;
	}
	body {
		background-color:#F3F3F3;
	}
}

@keyframes fadeInLeftXNT {
    from {
        opacity: 0;
        transform: translate3d(-70px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeftXNT !important;
}

@keyframes fadeInRightXNT {
    from {
        opacity: 0;
        transform: translate3d(70px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRightXNT !important;
}



.product-highlight {
    transition:
        transform 350ms cubic-bezier(.2,.8,.2,1),
        box-shadow 350ms ease;
    will-change: transform;
}

.product-highlight:hover {
    transform: perspective(1000px)
               translateY(-8px)
               rotateY(-10deg)
               scale(1.04);
    box-shadow: 0 24px 48px rgba(0,0,0,.2);
}

.product-highlight .imghover {
    inset: 0; /* or top/right/bottom/left */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition:
        opacity .35s ease,
        transform .35s ease,
        visibility 0s linear .35s;
    pointer-events: none;
}

.product-highlight:hover .imghover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition:
        opacity .35s ease,
        transform .35s ease,
        visibility 0s;
}

.avitems > div {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 10px;
}

.avitems .item {
    text-align: center;
    padding: 2px;
    border: 1px solid #000;
    border-radius: 10px;
}

.details-table .item {
    display: grid;
    grid-template-columns: 70% 30%;
	color:var(--e-global-color-secondary);
	font-size:14px;
    position: relative;
	padding: 4px 0;
}

.details-table .item .col.value {
	text-align:right;
}

.details-table .item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    height: 1px;
    background: rgba(0,0,0,0.2);
}

.commodity-table .item {
    display: grid;
    grid-template-columns: 35% 65%;
	color:var(--e-global-color-secondary);
	font-size:12px;
    position: relative;
	padding: 0;
	text-align:center;
	gap:5px;
	margin-bottom:5px;
}

.commodity-table .item .col{
	padding:7px;
	border-radius:10px;
	background-color:#C79A4A4D;
	color:#0F2344;
	line-height: 1;
}

@media (max-width: 1024px){
	.commodity-table .item .mbhide{
		display:none;
	}
	.commodity-table .item {
		grid-template-columns: 25% 75%;
	}
}


.bv-related-categories{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:10px;
}

.bv-related-category{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    border: none;
    border-radius: 10px;
    background: #F9F4ED;
    color: #0F2344;
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    transition: .25s ease;
}

.bv-related-category:hover{
    background:#333;
    color:#fff;
    border-color:#333;
}

@media (max-width: 767px){
    .bv-related-categories{
        grid-template-columns:1fr;
    }
}