/* Chat Support */
.support-embed-container {
    position: fixed;
    right: 25px;
    bottom: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 24px 0;
    border-radius: 16px 16px 0 0;
 /*   display: none;*/
    width: 100%;
    max-width: 412px;
    height: 100%;
    max-height: 630px;
    border: 0;
    background: #ad0b0b;
    z-index: 100000;	
}

.chatRow {
/*
    position: fixed;
    right: 25px;
	background-color: #f1f1f1;
	margin-bottom: 10px;
*/
	position: relative;
	padding: 5 5 5 5;
    z-index: 100005;		
}

.chatRowSpan {
	float:right;
	padding-top:8px;
	padding-right:15px;
	color:white;
	cursor: pointer;
	position: relative;	
}

.chatRowSpan::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 35px;  /* Adjust size as needed */
  height: 35px; /* Adjust size as needed */
  border-radius: 50%; /* Makes the background a circle */
  z-index: -1; /* Places the background behind the icon */
  transition: background-color 0.3s; /* Smooth transition for background color change */
  background-color: transparent; /* No initial background color */
}

.chatRowSpan:hover::before {
  background-color: rgba(0, 0, 0, 0.2); /* Darker background color on hover */
}


.support-iframe {
    position: fixed;
    right: 25px;
    bottom: 0;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 24px 0;
    border-radius: 16px 16px 0 0;
/*   display: none;*/
    width: 100%;
    max-width: 412px;
    height: 100%;
    max-height: 630px;
    border: 0;
/*    background: #ad0b0b; */
	padding-top: 40px;
	overflow-x: hidden;
}
.btn-container {
    position: fixed;
    z-index: 10050;
    right: 0;
    bottom: 0;
}

.floating-button {
    width: 192px;
    height: 64px;
    margin-right: 24px;
    margin-bottom: 24px;
    padding: unset;
    border-radius: 32px;
    background-size: cover;
    background-position: center;
    float: right;
	color: white;
    background: #ad0b0b;;
    border: none;
    box-shadow: 0 0 0 3px #fff, 0 0 6px 6px rgba(50, 50, 50, 0.1490196078);
}

.cs-button-text {
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    margin-left: 10px;
}