/**
 * Calculator Frontend CSS
 *
 * @package Prisberegner
 */

.pc-calculator-wizard {
	margin: 0px 0;
	max-width: none;
	width: 100%;
	padding-top: 0;
}

.pc-focus-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.65);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 99990;
}

.pc-focus-mode-active .pc-focus-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.pc-focus-mode-active .pc-calculator-wizard.pc-focus-mode-active,
.pc-focus-mode-active .prisberegner-focus-mode {
	position: relative;
	z-index: 99991;
}

.pc-wizard-container {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

/* Venstre side - Spørgsmål */
.pc-questions-area {
	flex: 1;
	min-width: 0;
}

.pc-question-container {
	background: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pc-wizard-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 25px;
}

.pc-back-button {
	background: #000;
	border-radius: 12px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: normal;
	padding: 12px 22px;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.pc-back-button:hover {
	background: #000;
	color: #fff;
}

#pc-back-button:focus {
	background: #000 !important;
}

.pc-next-button {
	background: #00a22b;
	border-radius: 12px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	margin-left: auto;
	padding: 12px 22px;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.pc-next-button:hover {
	background: #01691d;
	color: #fff;
}

.pc-next-button:disabled {
	background: #8cc79b;
	cursor: not-allowed;
}

.pc-loading,
.pc-error {
	text-align: center;
	padding: 40px;
	color: #666;
}

.pc-error {
	color: #d63638;
}

.pc-question-title {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 30px 0;
	color: #1d2327;
	line-height: 1.3;
}

.pc-question-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
}

.pc-question-progress {
	min-width: 220px;
}

.pc-question-description {
	font-size: 16px;
	color: #666;
	margin: 0 0 30px 0;
	line-height: 1.6;
}

.pc-question-header + .pc-question-description {
	margin-top: -18px;
}

.pc-answers {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.pc-question-container.pc-question-animating {
	transition: height 320ms cubic-bezier(0.22, 1, 0.36, 1);
	overflow: hidden;
}

.pc-answer-card {
	display: flex;
	align-items: flex-start;
	padding: 20px;
	border: 2px solid #ddd;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.pc-answer-card.pc-answer-enter {
	animation: pc-answer-pop 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pc-answer-pop {
	0% {
		transform: translateY(6px) scale(0.97);
		opacity: 0;
	}
	60% {
		transform: translateY(-2px) scale(1.02);
		opacity: 1;
	}
	100% {
		transform: translateY(0) scale(1);
	}
}

.pc-answer-card:hover {
	border-color: #000;
	background: #f6f9fc;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pc-answer-card.pc-selected {
	border-color: #000;
	background: #eaf0eb;
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.2);
}

.pc-answer-radio {
	margin-right: 15px;
	flex-shrink: 0;
}

.pc-answer-radio input[type="radio"] {
	display: none;
}

.pc-answer-radio label {
	display: block;
	width: 24px;
	height: 24px;
	border: 2px solid #999;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.pc-answer-card:hover .pc-answer-radio label {
	border-color: #000;
}

.pc-answer-card.pc-selected .pc-answer-radio label {
	border-color: #000;
	background: #000;
}

.pc-answer-card.pc-selected .pc-answer-radio label::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
}

.pc-answer-checkbox {
	margin-right: 15px;
	flex-shrink: 0;
}

.pc-answer-checkbox input[type="checkbox"] {
	display: none;
}

.pc-answer-checkbox label {
	display: block;
	width: 24px;
	height: 24px;
	border: 2px solid #999;
	border-radius: 6px;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.pc-answer-card:hover .pc-answer-checkbox label {
	border-color: #000;
}

.pc-answer-card.pc-selected .pc-answer-checkbox label {
	border-color: #000;
	background: #000;
}

.pc-answer-card.pc-selected .pc-answer-checkbox label::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -55%) rotate(-45deg);
	width: 10px;
	height: 6px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

.pc-answer-content {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 16px;
}

.pc-answer-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	gap: 4px;
}

.pc-answer-description {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}



.pc-answer-price {
	margin-left: auto;
	font-size: 11px;
	font-weight: 600;
	color: #1d2327;
	background: #f6f7f7;
	border: 1px solid #e4e6eb;
	border-radius: 40px;
	padding: 8px 14px;
	white-space: nowrap;
	align-self: center;
}

/* Højre side - Sidebar */
.pc-sidebar {
	width: 320px;
	flex-shrink: 0;
	position: sticky;
	top: 20px;
}

.pc-progress-section {
	background: #fff;
	padding: 14px 20px 20px 20px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.pc-progress-text {
	font-size: 14px;
	font-weight: 600;
	color: #1d2327;
	margin-bottom: 10px;
}

.pc-progress-bar {
	height: 8px;
	background: #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
}

.pc-progress-fill {
	height: 100%;
	background: #00a22b;
	transition: width 0.3s ease;
}

.pc-simple-design {
	max-width: none;
}

.pc-simple-design .pc-wizard-container {
	gap: 0;
	padding-top: 0;
}

.pc-simple-design .pc-question-container {
	background: none;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	width: 100%;
}

.pc-simple-design .pc-question-title {
	margin-bottom: 30px;
}

.pc-simple-design .pc-question-header {
	margin-bottom: 0;
}

.pc-simple-design .pc-question-header + .pc-question-description {
	margin-top: -18px;
}

.pc-simple-design .pc-answers {
	flex-direction: row;
	flex-wrap: wrap;
}

.pc-simple-design .pc-answer-card {
	flex: 1 1 0;
	min-width: calc(25% - 15px);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 190px;
}

.pc-simple-design .pc-answer-content {
	flex-direction: column;
	justify-content: center;
	text-align: center;
	align-items: center;
	order: 1;
	width: 100%;
}

.pc-simple-design .pc-answer-body {
	align-items: center;
	text-align: center;
	justify-content: center;
}

.pc-simple-design .pc-answer-price {
	margin-left: 0;
	align-self: center;
}

.pc-simple-design .pc-answer-radio {
	display: none;
}

.pc-simple-design .pc-answer-checkbox {
	margin-right: 0;
	margin-top: 12px;
	order: 2;
}

.pc-simple-design .pc-simple-choices {
	margin-top: 24px;
	width: 100%;
}

@media (min-width: 769px) {
	.pc-simple-design .pc-simple-choices {
		-webkit-mask-image: linear-gradient(to right, #000 0%, #000 90%, transparent 100%);
		mask-image: linear-gradient(to right, #000 0%, #000 90%, transparent 100%);
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-size: 100% 100%;
		mask-size: 100% 100%;
	}
}

@media (max-width: 1000px) and (min-width: 769px) {
	.pc-calculator-wizard:not(.pc-simple-design) .pc-answer-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.pc-calculator-wizard:not(.pc-simple-design) .pc-answer-body {
		width: 100%;
	}

	.pc-calculator-wizard:not(.pc-simple-design) .pc-answer-price {
		margin-left: 0;
		align-self: flex-start;
		margin-top: 8px;
	}
}

@media (max-width: 600px) {
	.pc-calculator-wizard:not(.pc-simple-design) .pc-answer-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.pc-calculator-wizard:not(.pc-simple-design) .pc-answer-body {
		width: 100%;
	}

	.pc-calculator-wizard:not(.pc-simple-design) .pc-answer-price {
		margin-left: 0;
		align-self: flex-start;
		margin-top: 8px;
	}
}

.pc-simple-design .pc-simple-choices .pc-choices-list {
	display: flex;
	flex-direction: row;
	gap: 12px;
	max-height: none;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 6px;
}

.pc-simple-design .pc-simple-choices .pc-choices-list::before {
	content: none;
}

.pc-simple-design .pc-simple-choices .pc-choice-item {
	flex: 0 0 260px;
	margin-bottom: 0;
	width: 260px;
	background: #fff !important;
	opacity: 0.5;
	transition: opacity 0.2s ease;
}

.pc-simple-design .pc-simple-choices .pc-choice-item:hover {
	opacity: 1;
}

.pc-simple-design .pc-simple-choices .pc-choice-item:first-child {
	opacity: 1;
}

.pc-choices-section {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pc-choices-section h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 15px 0;
	color: #1d2327;
}

.pc-choices-list {
	display: flex;
	flex-direction: column;
	max-height: 340px;
	overflow-y: auto;
}

.pc-choices-list::before {
	content: '';
	flex: 1 0 auto;
}

.pc-no-choices {
	color: #999;
	font-size: 14px;
	text-align: center;
	padding: 20px;
	margin: 0;
}

.pc-choice-item {
	padding: 12px;
	margin-bottom: 10px;
	background: #f6f7f7;
	border-radius: 12px;
	cursor: pointer;
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 10px;
	row-gap: 0px;
	transition: background 0.2s ease;
	transform-origin: top center;
}

.pc-choice-icon {
	font-size: 12px;
	color: #fff;
	grid-row: span 3;
	margin-top: 2px;
	background: #00a22b;
	padding: 4px 5px;
	border-radius: 99em;
	height: 18px;
	line-height: 0.8;
	width: 18px;
}

.pc-choice-item.pc-choice-new {
	animation: pc-choice-pop 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pc-choice-item.pc-choice-updated {
	animation: pc-choice-expand 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pc-choice-pop {
	0% {
		transform: translateY(8px) scale(0.96);
		opacity: 0;
	}
	60% {
		transform: translateY(-2px) scale(1.02);
		opacity: 1;
	}
	100% {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
}

@keyframes pc-choice-expand {
	0% {
		transform: scale(0.985);
	}
	70% {
		transform: scale(1.02);
	}
	100% {
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.pc-choice-item.pc-choice-new {
		animation: none;
	}
	.pc-choice-item.pc-choice-updated,
	.pc-answer-card.pc-answer-enter {
		animation: none;
	}
	.pc-question-container.pc-question-animating,
	.pc-choices-list.pc-choices-animating {
		transition: none;
	}
}

.pc-choices-list.pc-choices-animating {
	transition: height 300ms cubic-bezier(0.22, 1, 0.36, 1);
	overflow: hidden;
}

.pc-choice-question {
	font-size: 13px;
	font-weight: 600;
	color: #1d2327;
	margin-bottom: 0px;
}

.pc-choice-answer {
	font-size: 12px;
	color: #666;
}

.pc-choice-answers,
.pc-choice-prices {
	list-style: none;
	margin: 2px 0 0 0 !important;
	padding: 0 !important;
	font-size: 12px;
	color: #666;
}

.pc-choice-answer-text {
	color: #1d2327;
}

.pc-choice-answer-price {
	color: #6b6f76;
	font-size: 10px;
}

.pc-choice-prices {
	color: #1d2327;
	font-weight: 600;
}

.pc-choice-answers li,
.pc-choice-prices li {
	margin: 2px 0 0 0;
}

.pc-choice-price {
	margin-top: 0px;
	font-size: 10px;
	font-weight: 600;
	color: #1d2327;
}

.pc-choices-total {
	margin-top: 15px;
	padding-top: 12px;
	border-top: 1px solid #e4e6eb;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	font-weight: 600;
	color: #1d2327;
}

.pc-choices-periodic {
	margin-top: 10px;
	display: grid;
	gap: 6px;
}

.pc-periodic-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: #1d2327;
}

.pc-periodic-label {
	text-transform: capitalize;
}

.pc-modal-totals {
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid #e4e6eb;
	display: grid;
	gap: 8px;
}

.pc-modal-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	font-weight: 600;
	color: #1d2327;
}

/* Modal */
.pc-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
}

.pc-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999998;
}

.pc-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	max-width: 760px;
	width: 92%;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 999999;
}

.pc-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 25px;
	border-bottom: 1px solid #ddd;
}

.pc-modal-title {
	margin: 0;
	font-size: 26px;
	color: #1d2327;
}

.pc-modal-subtitle {
	margin: 0 0 20px 0;
	color: #6b6f76;
	font-size: 15px;
}

.pc-modal-header h2 {
	margin: 0;
	font-size: 24px;
	color: #1d2327;
}

.pc-modal-close {
	background: none;
	border: none;
	font-size: 32px;
	color: #999;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s;
}

.pc-modal-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 12px;
}

.pc-modal-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.pc-modal-close:hover {
	color: #fff;
}


.pc-modal-body {
	padding: 25px;
}

.pc-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 20px;
}

.pc-form-group {
	flex: 1;
}

.pc-form-group-full {
	grid-column: 1 / -1;
}

.pc-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #1d2327;
}

.pc-form-group input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	box-sizing: border-box;
}

.pc-form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 16px;
	box-sizing: border-box;
	resize: vertical;
	min-height: 120px;
}

.pc-form-group input:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.1);
}

.pc-form-group textarea:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.1);
}

.pc-choices-summary {
	background: #f6f7f7;
	border-radius: 12px;
	padding: 18px;
	margin: 10px 0 20px 0;
}

.pc-choices-summary h3 {
	margin: 0 0 12px 0;
	font-size: 16px;
}

.pc-modal-choices-summary {
	padding: 12px 18px;
}

.pc-modal-choices-details summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 16px;
	font-weight: 600;
}

.pc-modal-choices-details summary::-webkit-details-marker {
	display: none;
}

.pc-modal-choices-summary .pc-choices-toggle-text {
	flex: 1;
	text-align: left;
}

.pc-modal-choices-summary .pc-choices-toggle-label {
	font-size: 13px;
	font-weight: 600;
	color: #1d2327;
	white-space: nowrap;
}

.pc-modal-choices-summary .pc-choices-toggle-icon {
	display: inline-flex;
	transition: transform 0.2s ease;
	color: #1d2327;
}

.pc-modal-choices-summary .pc-choices-content {
	margin-top: 12px;
}

.pc-modal-choices-summary .pc-close {
	display: none;
}

.pc-modal-choices-details[open] .pc-choices-toggle-icon {
	transform: rotate(90deg);
}

.pc-modal-choices-details[open] .pc-open {
	display: none;
}

.pc-modal-choices-details[open] .pc-close {
	display: inline;
}

.pc-modal-totals-always {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #e4e6eb;
}

.pc-modal-choices .pc-no-choices {
	padding: 10px 0;
	text-align: left;
}

.pc-modal-choice-item {
	display: flex;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid #e4e6eb;
}

.pc-modal-choice-item:last-child {
	border-bottom: none;
}

.pc-modal-choice-icon {
	font-size: 16px;
	color: #1d2327;
	line-height: 1.4;
}

.pc-modal-choice-question {
	font-size: 13px;
	color: #6b6f76;
	margin-bottom: 4px;
}

.pc-modal-choice-answer {
	font-size: 15px;
	font-weight: 600;
	color: #1d2327;
}

.pc-modal-choice-answers,
.pc-modal-choice-prices {
	list-style: none;
	margin: 4px 0 0 0 !important;
	padding: 0 !important;
	font-size: 14px;
}

.pc-modal-choice-answer-text {
	color: #1d2327;
}

.pc-modal-choice-answer-price {
	color: #6b6f76;
	font-size: 12px;
	font-weight: 400;
	margin-left: 4px;
}

.pc-choice-answer-price {
	color: #6b6f76;
	font-size: 10px;
	margin-left: 4px;
}

.pc-modal-choice-prices {
	font-weight: 600;
	color: #1d2327;
}

.pc-modal-choice-answers li,
.pc-modal-choice-prices li {
	margin: 2px 0 0 0;
}

.pc-form-actions {
	margin-top: 25px;
}

.pc-submit-button {
	width: 100%;
	padding: 15px;
	background: #00a22b;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.pc-submit-button:hover {
	background: #01691d;
}

.pc-submit-button:disabled {
	background: #999;
	cursor: not-allowed;
}

.pc-form-disclaimer {
	margin: 12px 0 0 0 !important;
	color: #6b6f76;
	font-size: 13px;
	text-align: center;
}

.pc-form-message {
	padding: 12px;
	margin-top: 15px;
	border-radius: 4px;
	font-size: 14px;
}

.pc-form-message.pc-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.pc-form-message.pc-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.pc-form-message.pc-info {
	background: #d1ecf1;
	color: #0c5460;
	border: 1px solid #bee5eb;
}

/* Responsive */
@media (max-width: 768px) {
	.pc-focus-overlay {
		display: none;
	}

	.pc-focus-mode-active .pc-calculator-wizard.pc-focus-mode-active,
	.pc-focus-mode-active .prisberegner-focus-mode {
		z-index: auto;
	}

	.pc-wizard-container {
		flex-direction: column;
		width: 100%;
		max-width: none;
	}
	
	.pc-sidebar {
		width: 100%;
		position: static;
	}

	.pc-questions-area,
	.pc-question-container {
		width: 100%;
		max-width: none;
		box-sizing: border-box;
	}
	
	.pc-question-container {
		padding: 25px;
	}
	
	.pc-question-title {
		font-size: 22px;
	}
	
	.pc-form-grid {
		grid-template-columns: 1fr;
	}
	
	.pc-modal-content {
		width: 95%;
	}

	.pc-simple-design .pc-questions-area {
		width: 100%;
		min-width: 100%;
	}

	.pc-simple-design .pc-answers {
		flex-direction: column;
	}

	.pc-simple-design .pc-answer-card {
		flex: 1 1 auto;
		flex-basis: 100%;
		max-width: none;
		min-width: 100%;
		width: 100%;
		min-height: 140px;
	}

	.pc-simple-design .pc-questions-area {
		display: flex;
		flex-direction: column;
	}

	.pc-simple-design #pc-question-container,
	.pc-simple-design .pc-question,
	.pc-simple-design .pc-question-header {
		display: contents;
	}

	.pc-simple-design .pc-question-title {
		order: 1;
	}

	.pc-simple-design .pc-question-description {
		order: 2;
	}

	.pc-simple-design .pc-answers {
		order: 3;
	}

	.pc-simple-design .pc-wizard-actions {
		order: 4;
	}

	.pc-simple-design .pc-question-progress {
		order: 5;
		width: 100%;
		min-width: 0;
		margin-top: 24px;
	}

	.pc-simple-design .pc-question-progress .pc-progress-text {
		text-align: center;
	}

	.pc-simple-design .pc-simple-choices {
		order: 6;
		margin-top: 16px;
	}

	.pc-simple-design .pc-simple-choices .pc-choices-list {
		flex-direction: column;
		max-height: 340px;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.pc-simple-design .pc-simple-choices .pc-choice-item {
		flex: 1 1 auto;
		width: 100%;
	}
}








