#ws-chat {
	position: fixed;
	left: 15px;
	bottom: 15px;
	font-family: 'Titillium Web', sans-serif;
	z-index: 99997;
}

#ws-chat .ws-show {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

#ws-chat .ws-idle {
	opacity: .5;
}

#ws-chat .visibility-visible {
	visibility: visible;
}

#ws-chat .visibility-hidden {
	visibility: hidden;
}

#ws-badge {
	position: relative;
	z-index: 99999;
	width: 150px;
	height: 50px;
	background-color: #0d8742;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	letter-spacing: .5px;
	font-weight: 600;
	font-size: 14px;
	border-radius: 10px;
	cursor: pointer;
	transition: transform .6s ease, opacity .6s ease, background .3s ease;

	transform: translateY(50px);
	opacity: 0;
}

#ws-badge:hover {
	background-color: #2b2b2b;
}

#ws-badge svg {
	fill: #fff;
	margin-right: 10px;
	width: 20px;
	height: 20px;
}

#ws-call-to-action {
	z-index: 99998;
	width: 290px;
	position: absolute;
    bottom: 60px;
    left: 0;
    box-shadow: 0px 0px 10px rgba(0,0,0,.3);
    border-radius: 10px;
    transition: transform .6s ease, opacity .6s ease;

    transform: translateY(50px);
	opacity: 0;
}

#ws-call-to-action-trigger {
	display: flex;
}

#ws-call-to-action-image {
	line-height: 0;
}

#ws-call-to-action-image img {
	width: 100px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

#ws-call-to-action-content {
	background-color: #fff;
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

#ws-call-to-action-title {
	font-weight: 600;
	color: #0d8742;
	margin-bottom: 5px;
}

#ws-call-to-action-text {
	font-size: 14px;
	line-height: 20px;
}

#ws-call-to-action-text span {
	background-color: #0d8742;
	color: #fff;
	padding: 1px 4px;
}

#ws-call-to-action-close {
	position: absolute;
    right: 0px;
	top: -22px;
    width: 16px;
    height: 16px;
    display: block;
}

#ws-call-to-action-close svg {
	width: 16px;
	height: 16px;
	fill: #000;
	transform: rotate(0deg);
	transition: transform .5s ease, fill .5s ease;
}

#ws-call-to-action-close:hover svg {
	fill: #888;
	transform: rotate(180deg);
	cursor: pointer;
}

#ws-policy {
	z-index: 99999;
	position: absolute;
	bottom: 60px;
	left: 0;
	width: 280px;
	background: #fff;
	padding: 15px;
	box-shadow: 0 0 10px rgba(0,0,0,.3);
	transition: transform .6s ease, opacity .6s ease;

	transform: translateY(50px);
	opacity: 0;
}

#ws-policy p {
	font-size: 11px;
	color: #000;
	margin: 0;
	line-height: 12px;
}

#ws-policy a {
	color: #000;
	text-decoration: underline;
}

#ws-policy #ws-read-more,
#ws-policy .ws-link {
	text-decoration: underline;
	cursor: pointer;
	font-weight: bolder;
	color: #3d89ba;
}

#ws-policy #ws-hidden-content {
	display: none;
}

#ws-inner-policy {
	width: 100%;
	padding-right: 15px;
}

#ws-inner-policy-first-paragraph {
	margin-bottom: 15px !important;
}

#ws-choices {
	width: 100%;
	display: flex;
	margin-top: 20px;
	justify-content: space-around;
}

#ws-choices .ws-choices-col {
	width: 45%;
	text-align: center;
}

#ws-choices .ws-choices-col p {
	font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 600;
}

#ws-choices #ws-accept,
#ws-choices #ws-decline {
	width: 100%;
	display: block;
	text-transform: uppercase;
	padding: 6px 10px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin: 0 auto;
	border-radius: 4px;
	border: 0;
	cursor: pointer;
	transition: background .3s ease;
	font-family: 'Titillium Web', sans-serif;
}

#ws-choices #ws-accept {
	background-color: #0d8742; 
}

#ws-choices #ws-accept:hover {
	background-color: #b2b2b2; 
}

#ws-choices #ws-decline {
	background-color: #0d8742;
}

#ws-choices #ws-decline:hover {
	background-color: #b2b2b2;
}

#ws-choices #ws-decline-note {
	color: #7c0000;
}

#ws-choices #ws-accept-note {
	color: #0d8742;
}

#ws-close {
	position: absolute;
	right: 4px;
	top: 4px;
	cursor: pointer;
	width: 16px;
	height: 16px;
}

#ws-close svg {
	position: absolute;
	width: 16px;
	height: 16px;
	fill: #000;
	transform: rotate(0deg);
	transition: transform .5s ease, fill .5s ease;
}

#ws-close:hover svg {
	fill: #888;
	transform: rotate(180deg);
}

@media screen and (min-width: 360px) {
	#ws-policy {
		width: 320px;
	}

	#ws-policy p {
	    font-size: 11.5px;
	    line-height: 13px;
	}
}

@media screen and (min-width: 420px) {
	#ws-badge {
		width: 160px;
		font-size: 16px;
	}

	#ws-call-to-action img {
		width: 100px;
	}

	#ws-policy {
		width: 360px;
	}

	#ws-policy p {
	    font-size: 12.5px;
		line-height: 15px;
	}
}

@media screen and (min-width: 600px) {
	#ws-chat {
		left: 30px;
		bottom: 30px;
	}

	#ws-policy {
		width: 500px;
	}

	#ws-policy p {
	    font-size: 14px;
		line-height: 17px;
	}
}