.f4y-toralarm {
	align-items: center;
	background: #fff;
	border: 1px solid #e4e4e4;
	border-left: 5px solid #d20a11;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(35, 35, 35, .08);
	display: grid;
	gap: 14px;
	grid-template-columns: 44px minmax(0, 1fr) auto;
	margin: 0 0 18px;
	padding: 14px 16px;
}

.f4y-toralarm__icon {
	align-items: center;
	background: #d20a11;
	border-radius: 50%;
	display: flex;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.f4y-toralarm__icon svg {
	fill: #fff;
	height: 25px;
	width: 25px;
}

.f4y-toralarm__copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.f4y-toralarm__copy strong {
	color: #202020;
	font-size: 16px;
	line-height: 1.25;
}

.f4y-toralarm__copy span,
.f4y-toralarm__copy small {
	color: #5e5e5e;
	font-size: 13px;
	line-height: 1.35;
}

.f4y-toralarm__copy small {
	color: #333;
	margin-top: 5px;
}

.f4y-toralarm__button {
	background: #d20a11;
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	padding: 13px 18px;
	white-space: nowrap;
}

.f4y-toralarm__button:hover,
.f4y-toralarm__button:focus-visible {
	background: #aa0007;
	color: #fff;
}

.f4y-toralarm__button:disabled {
	cursor: wait;
	opacity: .65;
}

.f4y-toralarm[data-state="active"] {
	border-left-color: #16823b;
}

.f4y-toralarm[data-state="active"] .f4y-toralarm__icon {
	background: #16823b;
}

.f4y-toralarm[data-state="active"] .f4y-toralarm__button {
	background: #333;
}

.f4y-toralarm[data-state="error"] {
	background: #fff4f4;
}

@media (max-width: 620px) {
	.f4y-toralarm {
		align-items: start;
		grid-template-columns: 40px minmax(0, 1fr);
		padding: 13px;
	}

	.f4y-toralarm__icon {
		height: 40px;
		width: 40px;
	}

	.f4y-toralarm__button {
		grid-column: 1 / -1;
		text-align: center;
		width: 100%;
	}
}
