:root {
	--indent-right: 25px;
	--indent-bottom: 28px;
}

.feedback-popup *,
.feedback-popup *::before,
.feedback-popup *::after {
	box-sizing: border-box;
	margin: 0;
}

div.comagic-o-rack i {
	display: none;
}
div.comagic-o-rack .comagic-c-sitephone-label__bubble {
	background-image: url("../img/phone-icon.svg");
	background-repeat: no-repeat;
	background-position: 12px 15px;
	filter: drop-shadow(-1px 4px 18px #6e3bc6);
	box-shadow: none;
	border: none;
	animation: none;
}

.feedback-popup {
	position: fixed;
	right: var(--indent-right);
	bottom: var(--indent-bottom);
	width: 60px;
	height: 60px;
	z-index: 999999;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}
.feedback-popup.active {
	opacity: 1;
}

.feedback-popup__open {
	position: absolute;
	left: 0;
	right: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #7e57c2;
	background-image: url("../img/message-icon.svg");
	background-repeat: no-repeat;
	background-position: 12px 15px;
	filter: drop-shadow(-1px 4px 18px #6e3bc6);
	cursor: pointer;
}
.feedback-popup__open.disable {
	display: none;
}

.feedback-popup__container {
	display: none;
	position: absolute;
	width: 460px;
	bottom: 0;
	right: 0;
	border-radius: 28px;
	border-bottom-left-radius: 31px;
	border-bottom-right-radius: 31px;
	background-color: #b04bea;
	filter: drop-shadow(-1px 4px 18px #6e3bc6);
}
.feedback-popup__container.active {
	display: block;
}
.feedback-popup__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 18px 8px;
}
.feedback-popup__head-title {
	font-family: Manrope, sans-serif !important;
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	color: #fff;
}
.feedback-popup__head-close {
	cursor: pointer;
}
.feedback-popup__body {
	background-color: #fff;
	padding: 43px 25px 29px;
	border-radius: 28px;
}
.feedback-popup__descr {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 20px;
	font-family: Manrope, sans-serif !important;
	font-size: 18px;
	line-height: 25px;
	color: #000;
}
.feedback-popup__descr b {
	font-weight: 600;
}
.feedback-popup__descr .with-icon img {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}
.feedback-popup__items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 28px;
}
.feedback-popup__item {
	display: flex;
	align-items: center;
	gap: 13px;
	border-radius: 17px;
	border: 1px solid #d9d9d9;
	padding: 11px 29px;
	font-family: Manrope, sans-serif !important;
	font-size: 18px;
	line-height: 25px;
	color: #000;
}
.feedback-popup__item:last-child:nth-child(odd) {
	grid-column: span 2;
	width: 100%;
	max-width: 190px;
	justify-self: center;
	display: flex;
	justify-content: center;
}
.feedback-popup__item:hover {
	color: #000;
}

@media (max-width: 767px) {
	.feedback-popup__container {
		width: 100vw;
		right: calc(-1 * var(--indent-right));
		bottom: calc(-1 * var(--indent-bottom));
		border-radius: 18px;
	}
	.feedback-popup__body {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		padding: 30px 15px 30px;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
	.feedback-popup__descr {
		font-size: 16px;
		line-height: 22px;
	}
	.feedback-popup__items {
		gap: 10px;
	}
	.feedback-popup__item {
		font-size: 16px;
		line-height: 22px;
		gap: 10px;
		padding: 8px 6px;
	}
	.feedback-popup__item img {
		width: 30px;
		height: 30px;
	}
}