
.webchat-container {
    bottom:45px;
}

.webchat-container {
	position: fixed;
	bottom: -400px;
	right: 148px;
	z-index: 9999;
	width: 370px;
}

.webchat-container .chat-open-button-container {
	text-align: right
}

.webchat-container .chat-form-chat-window-container,
.webchat-container .chat-open-button-container #btnOpenChat {
    background: #00a9ac;
    border: 0 none;
    font-size: 16px;
    font-weight: normal;
    border-radius: 5px 5px 0 0;
    padding: 11px 16px;
    color:#fff;
    letter-spacing:1px;
}
.webchat-container .chat-form-chat-window-container, .webchat-container .chat-open-button-container #btnOpenChat:hover {
    color: #32004b;
    cursor:pointer;
}

.webchat-container h3 {
    color: #32004b;
    font-size: 26px;
    margin: 8px 0 25px;
    letter-spacing: 0.2px;
    font-weight: 600;
}

.webchat-container label {
    color: #00a9ac;
    font-size: 18px;
    margin-bottom:5px;
}

.webchat-container .input-wrapper {
    display: grid;
    column-gap: 0.5rem;
}

.input-wrapper input {
    padding: 13px;
    font-size: 18px;
}

.webchat-container .chat-form-chat-window-container .chat-form-container .button-wrapper #start-chat span.text,
.webchat-container .chat-open-button-container #btnOpenChat span.btn-icon,
.webchat-container .chat-open-button-container #btnOpenChat span.text {
	font-weight: 700
}

.webchat-container .chat-form-chat-window-container {
    padding:0;
	height: 400px;
	width: 100%;
	/*box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .2)*/
	
}

.webchat-container .chat-form-chat-window-container .chat-header-container {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: #00a9ac;
	height: 40px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center
}

.webchat-container .chat-form-chat-window-container .chat-header-container .text-container {
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding-left: 20px
}

.webchat-container .chat-form-chat-window-container .chat-header-container .text-container span {
	color: #fff;
	font-weight: 700
}

.webchat-container .chat-form-chat-window-container .chat-header-container .button-container button.close {
    background-color: #32004b;
    border:1px solid #32004b;
	padding: 7px 15px 7px 20px
	
}

.webchat-container .chat-form-chat-window-container .chat-header-container .button-container button.close .close-icon {
	color: #fff;
	font-size:16px;
}

.webchat-container .chat-form-chat-window-container .chat-form-container {
	padding: 20px;
	height: calc(100% - 40px);
	background-color: #fff;
	position: relative;
	display: none
}

.webchat-container .chat-form-chat-window-container .chat-form-container.active {
	display: block
}

.webchat-container .chat-form-chat-window-container .chat-form-container .input-wrapper {
	margin-bottom: 15px
}

.webchat-container .chat-form-chat-window-container .chat-form-container .button-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0
}

.webchat-container .chat-form-chat-window-container .chat-form-container .button-wrapper #start-chat {
	width: 100%;
	border:1px solid #32004b;
	background-color: #32004b;
    color: #fff;
	height: 55px
}

.webchat-container .chat-form-chat-window-container .chat-form-container .button-wrapper #start-chat:hover {
    background-color:#00a9ac;
}

.webchat-container .chat-form-chat-window-container .chat-window-container {
	height: calc(100% - 40px);
	width: 100%;
	display: none
}

.webchat-container .chat-form-chat-window-container .chat-window-container.active {
	display: block
}

@media (max-width:779px) {
    
    .webchat-container {
        bottom:-404px;
    }
    
	.webchat-container {
		right: 0;
		width: 100%;
	}
	.webchat-container .chat-open-button-container {
		margin-right: 20px
	}
	.webchat-container .chat-form-chat-window-container,
	.webchat-container .chat-form-chat-window-container .chat-header-container {
		border-top-left-radius: 0;
		border-top-right-radius: 0
	}
}