.redstop-actions-wrapper {
	width: 100%;
	max-width: 100%;
	margin: 20px 0;
	box-sizing: border-box;
}

.redstop-actions-row {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #e0e0e0;
}

.redstop-actions-col {
	flex: 1 1 30%;
	min-width: 220px;
	box-sizing: border-box;
	padding: 30px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.redstop-actions-col:first-child,
.redstop-actions-col:nth-child(2) {
	background: #f8f8f8;
}

.redstop-actions-col:first-child .redstop-btn-desc,
.redstop-actions-col:nth-child(2) .redstop-btn-desc {
	color: #5a5a5a;
}

.redstop-actions-col:first-child .redstop-btn-request,
.redstop-actions-col:nth-child(2) .redstop-btn-kp {
	background-color: #f8f8f8;
	color: #626262;
	border: 3px solid #dedede;
	border-radius: 0;
}

.redstop-actions-col:first-child .redstop-btn-request:hover,
.redstop-actions-col:nth-child(2) .redstop-btn-kp:hover {
	background-color: #dadada;
}

.redstop-actions-col:first-child .col-icon,
.redstop-actions-col:nth-child(2) .col-icon {
	position: absolute;
	bottom: 33px;
	left: 50px;
	font-size: 99px;
	color: rgb(29 29 29 / 15%);
	line-height: 1;
}

.redstop-actions-col.redstop-contacts {
	background: #fff;
	text-align: left;
}

.redstop-contacts p {
	margin: 0 0 8px;
	font-size: 14px;
	color: #333;
}

.redstop-contacts a {
	color: #c0392b;
	text-decoration: none;
}

.redstop-contacts a:hover {
	text-decoration: underline;
}

.redstop-contact-phone a {
	font-size: 18px;
	font-weight: 700;
}

.redstop-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.redstop-popup {
	position: relative;
	background: #fff;
	border-radius: 0;
	padding: 30px;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 10px 40px rgba(0,0,0,0.25);
	animation: redstopPopupIn 0.25s ease;
}

@keyframes redstopPopupIn {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.redstop-popup-close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	color: #888;
	cursor: pointer;
	padding: 0;
	width: 32px;
	height: 32px;
}

.redstop-popup-close:hover {
	color: #333;
}

.redstop-popup-title {
	margin: 0 0 20px;
	font-size: 22px;
	font-weight: 700;
	color: #222;
}

.redstop-form-group {
	margin-bottom: 16px;
	text-align: left;
}

.redstop-form-group label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.redstop-required {
	color: #c0392b;
}

.redstop-form-group input[type="text"],
.redstop-form-group input[type="email"],
.redstop-form-group input[type="number"] {
	width: 100%;
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 0;
	box-sizing: border-box;
	transition: border-color 0.2s ease;
}

.redstop-form-group input:focus {
	border-color: #c0392b;
	outline: none;
}

.redstop-field-hint {
	margin: 6px 0 0;
	font-size: 13px;
	color: #777;
	line-height: 1.4;
}

.redstop-captcha-group input {
	max-width: 120px;
}

.redstop-form-message {
	margin-bottom: 14px;
	padding: 10px 12px;
	border-radius: 0;
	font-size: 14px;
	font-weight: 600;
}

.redstop-form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.redstop-form-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.redstop-btn-submit {
	width: 100%;
	background-color: #c0392b;
	color: #fff;
	font-size: 16px;
	padding: 14px;
	border-radius: 0;
}

.redstop-btn-submit:hover {
	background-color: #a93226;
}

@media (max-width: 768px) {
	.redstop-actions-col {
		flex: 1 1 100%;
	}

	.redstop-popup {
		padding: 20px;
		max-width: 100%;
	}
}
