/* 
=========================================================
Side Bar : Pop up container
=========================================================
*/
.popup {
	overflow-y: auto;
	overscroll-behavior: contain; /* Stops background from scrolling */
	display: flex;
    position: fixed;
    z-index: 99998;
    text-align: center;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 0;
    justify-content: left;
    align-items: flex-start;
    background-color: #FFFFFF;
    flex-direction: column;

    /* Hidden state */
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1s ease-in-out, opacity 0.3s ease-in-out;
    pointer-events: none; /* Prevent interaction when hidden */
}
.popup.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all; /* Re-enable interaction */
}

.popup .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
	flex-grow: 1;
}
@media (max-width: 1366px) {
	.popup .container{
		padding: 0 40px 0 0;
	}
}
@media (max-width: 1024px) {
	.popup .container{
		height: 80%;
		padding: 0 ;
	}
	
	.tooltip {
		display:none !important;
	}
}
.popup .innerContainer{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup .top{
    min-height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
}
@media (max-width: 1024px) {
	.popup .top{
		height: 40px;
	}
}
.popup .top .siteLogo{
    width: 100px;
    height: 40px;
}
.popup .top .siteLogo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
 .close{
    display: flex;
    height: 60px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background-color: aliceblue;
    border-radius: 50%;
	top: 60px;
    position: absolute;
    right: 108px;
	 z-index: -100;
	     opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    visibility: hidden; /* Prevent interaction */
}
.close.show {
    z-index: 99999; /* Ensure it's on top */
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}
@media (max-width: 1366px) {
	 .close{
		right: 50px;
	}
}
@media (max-width: 1024px) {
	.close{
		right: 40px;
	}
}
@media (max-width: 767px) {
	.close{
		right: 20px;
	}
}
.popup .close:hover{
    cursor: pointer;
}
.popup .bottom{
    height: 100%;
    width: 100%;
    display: flex;
	justify-content: space-between;
    row-gap: 60px;

}
@media (max-width: 1024px) {
	.popup .bottom{
		flex-direction: column-reverse;
		height: auto;
	}
}
.popup .bottom .left{
	width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
/*     background: url(/wp-content/uploads/2025/03/lock-1.png) no-repeat; */
    background-size: contain;
    background-position: bottom left;
	background-repeat: no-repeat;
    padding: 40px 108px;
/*     border-left: 2px solid black; */
}
@media (max-width: 1366px) {
	.popup .bottom .left{
		padding: 40px 50px;
	}
}
@media (max-width: 1024px) {
	.popup .bottom .left {
		padding: 40px 40px;
        width: 100%;
        background-size: contain;
        height: auto;
        aspect-ratio: 4 / 3;
	}
}
@media (max-width: 767px) {
	.popup .bottom .left {
		padding: 20px 20px;
	}
}
.popup .bottom .left .content{
	display: flex;
    flex-direction: column;
/* 	padding: 0px 108px; */
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}


.popup .iconbox2{
    display: flex;
    width: 100%;
	max-width: 550px;
    padding: 16px 24px;
    align-items: center;
    gap: 8px;

    border-radius: 999px;
    background: #FFF;

    /* drop-shadow */
    box-shadow: 10px 6px 11px 0px rgba(0, 0, 0, 0.04);
}
@media (max-width: 1024px) {
	.popup .iconbox2{
		display: none;
	}
}

.popup .bottom .right{
    width: 40%;
	max-width: 489.6px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
/* 	background-color: aliceblue; */
/* 	border-right: 2px solid black; */

}
@media (max-width: 1024px) {
	.popup .bottom .right{
        width: 100%;
        max-width: 100%;
		padding: 0 40px;
	}
}
@media (max-width: 767px) {
	.popup .bottom .right{
		padding: 0 20px;
	}
}

.popup .bottom .right .title{
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
@media (max-width: 1024px) {
	.popup .bottom .right .title{
		max-width: 70%;
	}
}
@media (max-width: 767px) {
	.popup .bottom .right .title{
/* 		max-width: 100%; */
	}
}
.popup .bottom .right .title h2{
	/* H2 */
/* 	font-family: "DM Sans"; */
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;   
	text-align: left;
}

.popup .bottom .right .form{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
/*     align-items: flex-start; */
    padding: 0px;
}
@media (max-width: 1024px) {
	.popup .bottom .right .form{
        max-width: 70%;
	}
}
/* 
=========================================================
Side Bar : General positioning & Transformation 
=========================================================
*/
.sidebar {
    background-color: #e1001b;
    top: 50%;
    transform: rotate(-90deg) translateX(50%);
    transform-origin: bottom right;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 0 10px #0000007d;
    position: fixed;
    z-index: 999;
    right: 0;
    padding: 8px 24px;
    justify-content: space-between;
	align-items: center;
    display: flex;
    flex-wrap: nowrap;
	column-gap: 16px;
}

/* 
=========================================================
Side Bar : Hover and Focus effects
=========================================================
*/

/* 
=========================================================
Side Bar : Item Design
=========================================================
*/
.sidebar .item {
    padding: 0;
    display: flex;
    align-items: center;
    margin: 0;
}

.sidebar a.link {
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
}
.sidebar .iconBox {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    flex-grow: 1;
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    text-wrap: nowrap;
	padding: 8px 12px;
    border-radius: 999px;
   background: #e1001b;
}

.sidebar .iconBox img {
    transform: rotate(70deg);
    max-width: 32px;
    max-height: 32px;
}

.sidebar .iconBox .label {
    color: white;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
	margin: 0;
	text-transform: uppercase;
}

/* 
=========================================================
Side Bar : Divider
=========================================================
*/
.sidebar .divider {
    width: 1px;
    background-color: #000000;
    height: 16px;
    display: flex;
    align-self: center;
}

/* 
=========================================================
Main Item : design
=========================================================
*/
#liveChatButton {
    height: 100% !important;
    display: flex;
    align-items: center;
}

.liveChatText {
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    column-gap: 8px;
}












/* 
=========================================================
Side Bar : Animation
=========================================================
*/
.tooltip {
    padding: 11px 25px;
    background-color: #fff !important;
    /* left: -82px; */
    /* top: -143px; */
    box-shadow: 0px 4px 5px 2px #00000057;
    font-weight: 500 !important;
    z-index: 99;
    display: block;
    margin: 0px;
    border-radius: 50px;
    font-style: normal;
    line-height: 1.5;
    text-align: left;
    /* text-align: start; */
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: 14px;
    word-wrap: break-word;
    opacity: 0;
    position: absolute;
    border: none;
    /* background: #eee; */
    color: black;
    /* will-change: opacity, transform; */
    transition: opacity 0.4sease-in-out;
    transform: rotateZ(90deg) translate(-120px, 50%);


}

#tooltip-phone.tooltip {
    transform: translateY(100%) translateX(275px) rotate(90deg);
    width: 150px;

}

#tooltip-email.tooltip {
    transform: translateY(-50%) translateX(170px) rotate(90deg);
    width: 280px;
}

#tooltip-quote.tooltip {
    transform: translateY(85%) translateX(170px) rotate(90deg);
    width: 166px;
}

#tooltip-chat.tooltip {
    transform: translateY(150%) translateX(170px) rotate(90deg);
    width: 110px;
}

/*Green Markers */
.greenmarker {
    display: flex;
    background: #201547;
    border-width: 1px;
    border-style: solid;
    border-radius: 500px;
    border-color: rgba(255, 255, 255, .5);
    width: 8px;
    height: 8px;
    box-sizing: border-box;
    align-self: center;
    justify-self: center;
    cursor: pointer;
    animation: ownpulse 2s ease infinite both;
    position: relative;
}

.greenmarker:focus-within .marker__card,
.greenmarker:focus .marker__card {
    display: block;
}

/*********** ANIMATIONS *************/

@keyframes ownpulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #fff;
        box-shadow: 0 0 0 0 #fff;
    }

    50% {
        -webkit-box-shadow: 0 0 0 20px rgba(92, 112, 214, 0);
        box-shadow: 10px 0 0 20px rgba(92, 112, 214, 0);
    }

    0% {
        -webkit-box-shadow: 0 0 0 0 #fff;
        box-shadow: 0 0 0 0 #fff;
    }

    50% {
        -webkit-box-shadow: 0 0 0px 20px rgba(255, 112, 214, 0);
        box-shadow: 0 0 0 20px rgba(92, 112, 214, );
    }
}


/******** ANIMATION END *************/

@media only screen and (min-width: 1421px) {
    .sidebar {
        display: none;
    }
}


@media only screen and (max-width: 767px) {
    /* 
    =========================================================
    Side Bar : General positioning & Transformation 
    =========================================================
    */
    .sidebar {
        display: none;

    }

}
