:root {
	--scc-accent: #b41935;
	--scc-accent-dark: #9e1430;
	--scc-soft: #eef2f4;
	--scc-border: #d9d9d9;
	--scc-text: #5b5b5b;
	--scc-text-strong: #6a6a6a;
	--scc-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.scc-banner[hidden] {
	display: none !important;
}

.scc-banner {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background: rgba(255, 255, 255, 0.97);
	border-top: 1px solid #cfcfcf;
	box-shadow: 0 -8px 18px rgba(0, 0, 0, 0.12);
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.scc-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: 100%;
	margin: 0 auto;
	padding: 20px 40px;
}

.scc-banner__content {
	flex: 1 1 auto;
	min-width: 0;
}

.scc-banner__text {
	margin: 0 200px 0.7rem 0;
	color: #5d5d5d;
	font-size: 14px;
	line-height: 1.48;
}

.scc-banner__text:last-child {
	margin-bottom: 0;
}

.scc-banner__text--muted {
	color: #666;
}

.scc-banner__actions {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.8rem;
}

.scc-pill-button,
.scc-action-button {
	border: 0;
	background: var(--scc-accent);
	color: #fff;
	font-weight: 500;
	line-height: 1.1;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.scc-pill-button:hover,
.scc-pill-button:focus,
.scc-action-button:hover,
.scc-action-button:focus {
	background: var(--scc-accent-dark);
	color: #fff;
}

.scc-pill-button {
	min-width: 132px;
	padding: 0.9rem 1.2rem;
	border-radius: 999px;
	font-size: 14px;
	text-align: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.scc-pill-button--dotted {
	outline: 2px dotted var(--scc-accent);
	outline-offset: 2px;
}

.scc-modal .modal-dialog {
	max-width: 660px;
}

.scc-modal .modal-content {
	border: 0;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: var(--scc-shadow);
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.scc-modal .modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 1.35rem 1rem;
	border-bottom: 1px solid #e9e9e9;
}

.scc-modal .modal-title {
	margin: 0;
	color: #727272;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.scc-modal .btn-close {
	margin: 0;
	padding: 0.4rem;
	font-size: 0.9rem;
	opacity: 0.75;
	box-shadow: none;
}

.scc-modal .modal-body {
	padding: 1.25rem;
	background: #fff;
}

.scc-modal .modal-footer {
	justify-content: flex-end;
	gap: 0.45rem;
	padding: 1rem 1.2rem;
	background: var(--scc-soft);
	border-top: 1px solid #dfe4e7;
}

.scc-action-button {
	min-width: 72px;
	padding: 0.7rem 1rem;
	border-radius: 3px;
	font-size: 15px;
}

.scc-accordion .accordion-item {
	margin-bottom: 0.75rem;
	border: 1px solid var(--scc-border);
	border-radius: 3px;
	overflow: hidden;
	background: #fff;
}

.scc-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.scc-accordion .accordion-header {
	margin: 0;
}

.scc-accordion .accordion-button {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1.05rem 1rem;
	background: #fff;
	color: var(--scc-text-strong);
	font-size: 15px;
	font-weight: 700;
	box-shadow: none;
}

.scc-accordion .accordion-button::after {
	display: none;
}

.scc-accordion .accordion-button:not(.collapsed) {
	background: var(--scc-accent);
	color: #fff;
}

.scc-accordion .accordion-button:focus {
	box-shadow: none;
}

.scc-accordion__icon {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}

.scc-accordion__icon::before,
.scc-accordion__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	transform: translate(-50%, -50%);
}

.scc-accordion__icon::before {
	width: 10px;
	height: 2px;
}

.scc-accordion__icon::after {
	width: 2px;
	height: 10px;
}

.scc-accordion .accordion-button:not(.collapsed) .scc-accordion__icon::after {
	display: none;
}

.scc-accordion .accordion-body {
	padding: 1rem 1rem 0.9rem;
	background: #fff;
}

.scc-accordion__copy {
	color: var(--scc-text);
	font-size: 14px;
	line-height: 1.62;
}

.scc-accordion__copy p {
	margin: 0 0 1rem;
}

.scc-accordion__copy p:last-child {
	margin-bottom: 0;
}

.scc-switch-row {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 2rem;
	margin-top: 1.35rem;
}

.scc-switch-row__label {
	color: #666;
	font-size: 14px;
	font-weight: 600;
}

.scc-form-switch {
	margin-bottom: 0;
	padding-left: 0;
}

.form-switch .form-check-input{
  background-position: 0px 1px !important;
}
.form-switch .form-check-input:checked {
  background-position: 35px 1px !important;
}



.scc-form-switch .form-check-input {
	float: none;
	width: 50px;
	height: 25px;
	margin: 0;
	background-color: #d8d8d8;
	border: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 16 16'%3E%3Ccircle r='6' fill='%23ffffff'/%3E%3C/svg%3E");
	box-shadow: none;
	background-size: 25px 35px;
	right: -8px;
}

.scc-form-switch .form-check-input:focus {
	box-shadow: none;
}

.scc-form-switch .form-check-input:checked {
	background-color: #d993a0;
	border-color: #d993a0;
}

.scc-form-switch .form-check-input:disabled {
	opacity: 1;
}

body.modal-open .scc-banner {
	z-index: 1030;
}

@media (max-width: 991.98px) {
	.scc-banner__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.scc-banner__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 767.98px) {
	.scc-modal .modal-dialog {
		max-width: none;
		margin: 1rem;
	}

	.scc-modal .modal-title {
		font-size: 1.55rem;
	}

	.scc-banner__inner {
		padding: 1rem;
	}

	.scc-banner__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.scc-pill-button,
	.scc-action-button {
		width: 100%;
	}

	.scc-modal .modal-footer {
		flex-direction: column;
	}

	.scc-accordion .accordion-button {
		padding-right: 0.8rem;
	}

	.scc-switch-row {
		justify-content: space-between;
	}
}
