.chat-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border: 1px solid rgba(35, 31, 32, 0.8);
    transition: .3s ease-in-out;
    user-select: none; 
    -webkit-user-drag: none; 
}

.chat-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

#chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 80px);
	max-height:800px;
	max-width:600px;
    z-index: 10000;
    border: 1px solid black;
	border-radius: 5px;
}

#chatbot-container #feedback {
    display: grid;
    grid-template-columns: 5% 90% 5%;
    align-items: center;
    justify-content: center;
    background-color: var(--dfs-gold);
    border-radius: 5px 5px 0 0;
    font-size: .8rem;
}

#chatbot-container #feedback button {
border:0;
border-left:1px solid;
color:var(--dfs-navy);
background-color:#fff;
border-radius: 0 5px 0 0;
padding:0;
width:100%;
text-align:center;

}

#chatbot-container #feedback #link {
text-align:center;
grid-column-start: 2;
}

#chatbot-container #feedback a {
color:var(--dfs-navy);
}

#chatbot-container iframe{
	width:100%;
	height:calc(100% - 1.3rem);
	border-radius: 0 0 5px 5px;
	
}

.chat-icon, #chatbot-container iframe, *:focus {
    outline: none;
    user-select: none; 
    caret-color: transparent; 
}
