
.ht-ctc-chat
{
	display: none !important;	
}

/* popup_notification */
.ysa_popup_notification
{
	z-index: 2500000001 !important;
	box-sizing: border-box;
	display: block !important;
	width: 400px;
	height:auto;
	padding:25px;
	padding-right:80px;
	background-color: rgba(255,255,255,0.95);
	color:#000000;
	border-radius: 20px;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
	position: fixed;
	
		right:20px;
		font-family: "Open Sans", Tahoma;
	bottom:30px;
	font-size:14px;
	line-height:20px;
	cursor: pointer;
	backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
	
		opacity: 0; /* Make it transparent initially */
		transform: translateX(100%); /* Start from outside the screen */
		transition: opacity 0.5s, transform 0.5s; /* Adjust timing as necessary */
		transition: transform 0.5s ease, opacity 0.5s ease; /* Add transform transition */
		
}

.chat_creator_label
{
    display: block !important;
    position: absolute;
    background-color: #333333;
    color: #ffffff;
    border-radius: 0px 0px 10px 10px;
    height: auto;
    top: 100%;
    
		right:20px;
		
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
	box-shadow: inset 0px 3px 3px 0px rgba(0,0,0,0.15);
	opacity: 1;
	
	padding: 3px 7px 7px 7px !important;;
    font-size: 10px !important;;
    font-family: Tahoma !important;;
	line-height: 0px !important;
	
	transition: opacity 0.0s, transform 0.5s; /* Adjust timing as necessary */
	transition: transform 0.0s ease, opacity 0.5s ease; /* Add transform transition */
}

	.chat_creator_label:hover
	{
		opacity: 1;
		cursor:pointer;
		background: linear-gradient(129deg, #1d94a0, #2a65a4);
		background: linear-gradient(129deg, #1d94a0, #348ece);
	}

	.chat_creator_label_image
	{
		display: inline-block;
		width: 14px;
		height: 14px;
		background-image: url(https://app.youshouldask.ai/img/chat_icon.webp);
		background-size: 100%;
		background-position: center center;
		background-repeat: no-repeat;
		margin-bottom:-3px;
		margin-left:4px;
	}

	.chat_creator_label.chatwindow
	{
		display: none;
		
		/*transition: opacity 0.5s, transform 0.5s;
   		transition: transform 0.5s ease, opacity 0.5s ease;*/
	}

	.maximized .chat_creator_label.chatwindow
	{
		transform: rotate(90deg);
		display: block !important;
		position: fixed;
		
			right: 384px;
			
		bottom: 97px;
		top:auto;
		height:auto;
		opacity: 1;
		padding: 3px 7px;
		font-size: 10px;
		font-family: arial;
	}
	
	.chat_creator_label.left.chatwindow
	{
		transform: rotate(270deg) !important;
	}

		.maximized .chat_creator_label.chatwindow:hover
		{
			opacity: 1;
			cursor:pointer;
			background: linear-gradient(45deg, #be01b3, #9c75a7);
			background: linear-gradient(129deg, #1d94a0, #348ece);
		}


/* Final (visible) state of the popup */
.ysa_popup_notification.visible {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Align it with the right edge of the screen */
}

/* Final (visible) state of the popup */
.ysa_popup_notification.small {
    opacity: 1; /* Fully visible */
	transform: translateX(0); /* Align it with the right edge of the screen */
	
		right:-320px;
		
}

.ysa_status
{
	box-sizing: border-box;
    border-radius: 100px;
    display: block !important;
    width: 15px;
    height: 15px;
    position: absolute;
    margin-top: -45px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    vertical-align: middle;
    font-size: 10px;
    left: 43px;
    margin-left: 0px;
    background-color: rgb(232 54 101);
	/*background-color: #70be01;*/
}

	.ysa_status_counter
	{
		display: block !important;
		margin-top: -2px;
		font-weight: bold;
	}

.ysa_persona_avatar
{
	box-sizing: border-box;
	border-radius: 100px;
	display: block !important;
	width:40px;
	height:40px;
	background-size:cover;
	background-position: center center;
	position: absolute;
	margin-top:-45px;
	left:10px;
	margin-left:0px;
	box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.1);
}

.ysa_title
{
	font-weight: 600;
    padding-bottom: 5px;
    font-size: 16px;
	padding-top:5px;
	font-family: "Open Sans", Tahoma;
}

.ysa_collapse_icon
{
	box-sizing: border-box;
	border-radius: 100px;
	display: block !important;
	width:40px;
	height:40px;
	background-image:url(https://app.youshouldask.ai/img/chat_icon.webp);
	background-size:50%;
	background-position: center center;
	background-repeat: no-repeat;
	background-color:#be01b3;
	position: absolute;
	top:50%;
	margin-top:-20px;
	right:20px;
	text-align: center;
	padding-top:10px;
	padding-right:2px;
	font-size:17px;
	color:#ffffff;
}

.ysa_hided_popup_div
{
	position: fixed;
    
		right:-120px;
		
    bottom: 20px;
    width:50px;
	height:50px;
    z-index: 2500000000 !important;
    overflow: hidden;
	box-sizing: border-box;
	border-radius: 100px;
	background-size:cover;
	box-shadow: 0px 0px 0px 4px rgb(255 255 255 / 12%);
	opacity: 0; /* Make it transparent initially */
	transform: translateX(100%); /* Start from outside the screen */
	transition: opacity 0.5s, transform 0.5s; /* Adjust timing as necessary */
	transition: transform 0.5s ease, opacity 0.5s ease; /* Add transform transition */
	cursor: pointer;
	display:block !important;
}

	.ysa_hided_popup_div:hover
	{
		box-shadow: 0px 0px 0px 4px rgb(255 255 255 / 32%);
	}

	.ysa_hided_popup_div.visible 
	{
		
			right:20px;
			
		display:block !important;
		opacity: 1; /* Fully visible */
		transform: translateX(0); /* Align it with the right edge of the screen */
		transition: opacity 0.5s, transform 0.5s; /* Adjust timing as necessary */
		transition: transform 0.5s ease, opacity 0.5s ease; /* Add transform transition */
	}

	.ysa_status_hided
	{
		z-index: 3000000001 !important;
		box-sizing: border-box;
		border-radius: 100px;
		display: block !important;
		width:9px;
		height:9px;
		position: fixed;
		
			right:-121px;
			
    	bottom: 58px;
		background-color: #70be01;
		opacity: 0; /* Make it transparent initially */
		transform: translateX(150px); /* Start from outside the screen */
		transition: opacity 0.5s, transform 0.5s; /* Adjust timing as necessary */
		transition: transform 0.5s ease, opacity 0.5s ease; /* Add transform transition */
	}

	.ysa_status_hided.visible
	{
		
			right:21px;
			
		opacity: 1; /* Fully visible */
		transform: translateX(0); /* Align it with the right edge of the screen */
		transition: opacity 0.5s, transform 0.5s; /* Adjust timing as necessary */
		transition: transform 0.5s ease, opacity 0.5s ease; /* Add transform transition */
	}
	
	
.ysa_hided_popup_div_title
{
	position: fixed;
    
		right:-160px;
		
    position: fixed;
    bottom: 50px;
    width: auto;
    height: auto;
    z-index: 2200000000 !important;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 80%;
    padding: 10px;
    background-color: #fcdc1e;
    box-shadow: 0px 0px 0px 4px rgb(255 255 255 / 12%);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s, transform 0.5s;
    transition: transform 0.5s ease, opacity 0.5s ease;
    cursor: pointer;
}

	.ysa_hided_popup_div_title.visible 
	{
		
			right:60px;
			
		opacity: 1; /* Fully visible */
		transform: translateX(0); /* Align it with the right edge of the screen */
		transition: opacity 0.5s, transform 0.5s; /* Adjust timing as necessary */
		transition: transform 0.5s ease, opacity 0.5s ease; /* Add transform transition */
	}
	
	.ysa_letter {
		display: inline-block; /* Needed for fading each letter individually */
		opacity: 0;
		transition: opacity 0.5s ease-in; /* Adjust duration and easing as needed */
	}
	

/* popup-styles.css */
.ysa_popup-div {
    position: fixed;
    
		right:20px;
		
    bottom: 20px;
	top:auto;
    width: 400px;
    height: 0px; /* Start with 0px height */
    z-index: 3000000000 !important;
    background-color: transparent;
    border-radius: 20px 20px 20px 20px;
    overflow: hidden;
    transition: height 1s;
}

.ysa_toggle-button {
    position: fixed;
    
		right:25px;
		
    bottom: 25px; /* Adjust for the minimized state */
    width: 40px;
    height: 40px;
    background-image: url("https://app.youshouldask.ai/img/chat_icon.webp"); /* Initial image */
    background-size: cover;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3000000002 !important;
	-webkit-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	-kthtml-transition: all 0.5s linear;
	transition: all 0.5s linear;
	display:none;
}

/* Class for when the popup is maximized */
.ysa_toggle-button-maximized {
	background-color:#ffffff;
    background-image: url("https://app.youshouldask.ai/img/close-circle.svg"); /* Update with the actual image URL */
	width: 30px;
    height: 30px;
	display:block;
	background-size:99%;
	background-position: center center; 
	
	display:none;
}

.ysa_close_button_small_popup {
	position: fixed;
    right:10px;
    top: -15px; /* Adjust for the minimized state */
    width: 30px;
    height: 30px;
	background-color:#ffffff;
    background-image: url("https://app.youshouldask.ai/img/close-circle.svg");
	background-size:99%;
	background-position: center center; 
    border-radius: 50%;
    cursor: pointer;
    z-index: 3000000000 !important;
	-webkit-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	-kthtml-transition: all 0.5s linear;
	transition: all 0.5s linear;
	display:block !important;
}

.ysa_iframe {
    width: 100%;
    height: 100%;
    border: none;
	
		background-color:rgb(25, 69, 79);
		
	background-image: url("https://app.youshouldask.ai/img/chat_icon.webp");
	background-size:50px;
	background-position: center center; 
	background-repeat:no-repeat;
	
	border-radius: 20px 0px 0px 20px;
}



.ysa_popup-div.centered 
{
    left: 50% !important;
    right: 0px !important;
    top: 60px !important;
    bottom: 70px !important;
    height: auto !important;
    border-radius: 20px;
    width: 600px !important;
    margin-left: -300px;
}

.ysa_popup-div.centered .chat_creator_label.chatwindow
{
	transform: rotate(0deg);
	display: block !important;
	position: fixed;
	left: 50%;
	margin-left:130px;
	bottom: 47px;
	opacity: 1;
	padding: 3px 7px;
	font-size: 10px;
	right:auto;
	font-family: arial;
}

.ysa_popup-div.maximized
{
	box-shadow: 0 0px 10px 10px rgba(0, 0, 0, 0.1);
}

.ysa_popup-product-div 
{
    position: fixed;
    
		right:420px;
		
    bottom: auto;
	top:auto;
	padding-top: 60px;
    width: 80px;
    height: 0px; /* Start with 0px height */
    z-index: 1900000000 !important;
    background-color: transparent;
    border-radius: 0px;
    overflow: hidden;
    transition: height 1s;
}

	.ysa_product_tile
	{
		background-color: #ffffff;
		padding: 10px 10px 10px 10px;
		margin-left: 10px;
		border-radius: 10px 0px 0px 10px;
		box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
		margin-bottom:5px;
		
		position: relative;
		opacity: 0;
		transform: translateX(100%); /* Start off-screen to the right */
		transition: transform 1s ease, opacity 1s ease; /* Animate both position and opacity */
	}
	
    .ysa_slide_in {
      transform: translateX(0); /* Slide into view */
      opacity: 1; /* Make it visible */
    }
	
		.ysa_product_tile a img
		{
			border-radius:5px;
			width: 50px;
		}

		.ysa_product_tile .title,
		.ysa_product_tile .description,
		.ysa_product_tile .price,
		.ysa_product_tile .button
		{
			display:none;
		}


@media (max-height:860px)  
{
	.ysa_popup-div.maximized
	{
		top: 0px !important;
        bottom: 0px !important;
        height: auto !important;
        border-radius: 20px 0px 0px 20px;
        
			right:0px;
			
		box-shadow: 0 0px 10px 10px rgba(0, 0, 0, 0.1);
	}
	
	.ysa_popup-div.maximized .chat_creator_label.chatwindow
	{
		
			right:364px;
			
	}
	
	.ysa_popup-product-div.maximized
	{
		top: 0px !important;
        bottom: auto !important;
		height: auto !important;
		
			right:400px;
			
	}
}

@media (max-width:600px)  
{
	.ysa_popup-div.maximized
	{
		width: auto !important;
		left: 0px !important;
		right:0px !important;
		top:0px !important;
		bottom:0px !important;
		height:auto !important;
		border-radius: 0px;
		box-shadow: 0 0px 10px 10px rgba(0, 0, 0, 0.1);
	}
	
	.chat_creator_label
	{
		display: none !important;
	}
	
	.ysa_popup_notification
	{
		width: auto;
		left: 0px;
		right:0px;
		bottom:0px;
		border-radius: 20px 20px 0px 0px;
	}
	
	.ysa_iframe
	{
		border-radius: 0px;
	}
}

.ysa_popup-div.maximized.bottomized
{
	top:auto !important;
}

.ysa_popup-div.maximized.bottomized .chat_creator_label.chatwindow
{
	display: none !important;
}


/* Z-index corrections for all elements */

/*
.ysa_popup_notification {
    z-index: 2147483647 !important;
}

.chat_creator_label {
    z-index: 2147483646 !important;
}

.ysa_hided_popup_div {
    z-index: 2147483645 !important;
}

.ysa_status {
    z-index: 2147483644 !important;
}

.ysa_popup-div {
    z-index: 2147483643 !important;
}

.ysa_toggle-button {
    z-index: 2147483642 !important;
}

.ysa_hided_popup_div_title {
    z-index: 2147483641 !important;
}

.ysa_status_hided {
    z-index: 2147483640 !important;
}

.ysa_popup-product-div {
    z-index: 2147483639 !important;
}

.ysa_close_button_small_popup {
    z-index: 2147483638 !important;
}
*/
