:root {
	--puppy-trigger-size: 70px;
	--puppy-chat-width: 400px;
	--puppy-chat-height: 600px;

	--c-primary: #000000;
	--c-secondary: #d11242;
	--c-grey: #727272;
	--c-white: #fff;
	--c-black: #000;
}

@media (max-width: 768px) {
	:root {
		--puppy-trigger-size: 50px;
		--puppy-chat-width: 340px;
		--puppy-chat-height: 70vh;
	}
}

.puppy-bot {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 999999999;
}
.puppy-bot .puppy-bot__inner {
	padding: 10px 20px 20px;
	position: relative;
}

.puppy-bot .puppy-bot__trigger {
	background-color: var(--c-white);
	width: var(--puppy-trigger-size);
	height: var(--puppy-trigger-size);
	border-radius: 100%;
	overflow: hidden;
	border: 2px solid var(--c-black);
	cursor: pointer;
	transition: all 100ms ease-out;
	will-change: transform;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.puppy-bot .puppy-bot__trigger img {
	width: var(--puppy-trigger-size);
	height: var(--puppy-trigger-size);
	object-fit: cover;
	object-position: center;
}
.puppy-bot .puppy-bot__trigger:hover {
	transform: translateY(-3px);
	border-color: var(--c-primary);
}
.puppy-bot .puppy-bot__trigger:active {
	transform: scale(0.99);
}

.puppy-bot .puppy-bot__chat {
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	position: absolute;
	bottom: 100%;
	right: 20px;
	z-index: 10;
	width: var(--puppy-chat-width);
	height: var(--puppy-chat-height);
	border-radius: 10px;
	overflow: hidden;
	transition: all 100ms ease-out;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.puppy-bot .puppy-bot__chat iframe {
	width: 100%;
	height: 100%;
}

.puppy-bot.puppy-bot--visible .puppy-bot__trigger {
	border-color: var(--c-secondary);
}
.puppy-bot.puppy-bot--visible .puppy-bot__chat {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
