/* ====================================
   KARRIERE PAGE STYLES
   ==================================== */

/* Hero section overrides for karriere page */
.hero-section {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 150px 0 100px;
	background: #1a1a1a;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.2;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(26, 26, 26, 0.005) 0%,
		rgba(50, 47, 42, 0.005) 100%
	);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: white;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.hero-subtitle {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 3px;
	color: var(--primary-color);
	display: block;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.hero-title {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 24px;
	color: white;
}

.hero-description {
	font-size: 20px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-btn {
	padding: 16px 40px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-btn.primary {
	background: var(--primary-color);
	color: #1a1a1a;
}

.hero-btn.primary:hover {
	background: #e5aa31;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(244, 185, 66, 0.3);
}

.hero-btn.secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.hero-btn.secondary:hover {
	background: white;
	color: #1a1a1a;
	transform: translateY(-2px);
}

/* ====================================
   BENEFITS SECTION
   ==================================== */

.benefits-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.benefits-section .section-header {
	text-align: center;
	margin-bottom: 60px;
}

.benefits-section .section-subtitle {
	color: var(--primary-color);
}

.benefits-section .section-title {
	color: white;
}

.benefits-section .section-description {
	color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 60px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.benefit-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 40px;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.benefit-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 32px rgba(244, 185, 66, 0.2);
	border-color: var(--primary-color);
	background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color) 0%, #e5aa31 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	box-shadow: 0 4px 20px rgba(244, 185, 66, 0.3);
}

.benefit-icon svg {
	width: 40px;
	height: 40px;
	color: #1a1a1a;
}

.benefit-title {
	font-size: 22px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
}

.benefit-description {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
}

/* ====================================
   JOBS SECTION
   ==================================== */

.jobs-section {
	padding: 100px 0;
	background: #322f2a;
}

.jobs-section .section-header {
	text-align: center;
	margin-bottom: 60px;
}

.jobs-section .section-subtitle {
	color: var(--primary-color);
}

.jobs-section .section-title {
	color: white;
}

.jobs-section .section-description {
	color: rgba(255, 255, 255, 0.8);
}

.job-filters {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.05);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.filter-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	background: rgba(244, 185, 66, 0.1);
}

.filter-btn.active {
	background: var(--primary-color);
	color: #1a1a1a;
	border-color: var(--primary-color);
}

.jobs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.job-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 35px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.job-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(244, 185, 66, 0.2);
	border-color: var(--primary-color);
	background: rgba(255, 255, 255, 0.08);
}

.job-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
	gap: 20px;
}

.job-badge {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(244, 185, 66, 0.15);
	color: var(--primary-color);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	flex-shrink: 0;
}

.job-title {
	font-size: 24px;
	font-weight: 700;
	color: white;
	margin-bottom: 12px;
	line-height: 1.3;
}

.job-meta {
	display: flex;
	gap: 20px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.job-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.job-meta-item svg {
	width: 18px;
	height: 18px;
	color: var(--primary-color);
}

.job-description {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
}

.job-tags {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.job-tag {
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.9);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.job-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.job-salary {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
}

.job-apply-btn {
	padding: 10px 24px;
	background: var(--primary-color);
	color: #1a1a1a;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.job-apply-btn:hover {
	background: #e5aa31;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(244, 185, 66, 0.4);
}

.no-jobs {
	text-align: center;
	padding: 60px 20px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 18px;
}

/* ====================================
   JOB MODAL
   ==================================== */

.job-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	align-items: center;
	justify-content: center;
}

.job-modal.active {
	display: flex;
}

.job-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(5px);
}

.job-modal-content {
	position: relative;
	background: #2d2d2d;
	border-radius: 20px;
	max-width: 800px;
	width: 90%;
	max-height: 85vh;
	overflow-y: auto;
	padding: 50px;
	z-index: 10001;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.job-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10002;
}

.job-modal-close:hover {
	background: var(--primary-color);
	transform: rotate(90deg);
}

.job-modal-close svg {
	width: 20px;
	height: 20px;
	color: white;
}

.job-modal-header {
	margin-bottom: 30px;
}

.job-modal-badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(244, 185, 66, 0.15);
	color: var(--primary-color);
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.job-modal-title {
	font-size: 36px;
	font-weight: 700;
	color: white;
	margin-bottom: 20px;
	line-height: 1.2;
}

.job-modal-meta {
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.job-modal-meta-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
}

.job-modal-meta-item svg {
	width: 20px;
	height: 20px;
	color: var(--primary-color);
}

.job-modal-section {
	margin-bottom: 35px;
}

.job-modal-section-title {
	font-size: 24px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
}

.job-modal-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.job-modal-section ul li {
	padding: 10px 0 10px 30px;
	position: relative;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
}

.job-modal-section ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 18px;
	width: 8px;
	height: 8px;
	background: var(--primary-color);
	border-radius: 50%;
}

.job-modal-section p {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 15px;
}

.job-modal-salary {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 30px;
	display: block;
}

.job-modal-apply {
	padding: 16px 50px;
	background: var(--primary-color);
	color: #1a1a1a;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	width: 100%;
	display: block;
}

.job-modal-apply:hover {
	background: #e5aa31;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(244, 185, 66, 0.4);
}

/* ====================================
   APPLICATION PROCESS SECTION
   ==================================== */

.process-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
	position: relative;
}

.process-section .section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 80px;
}

.process-section .section-subtitle {
	color: #f4b942;
}

.process-section .section-title {
	color: white;
}

.process-section .section-description {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 15px;
	line-height: 1.6;
}

.process-timeline {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	padding: 20px 0;
}

/* Timeline line */
.process-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(
		to bottom,
		#f4b942 0%,
		#f4b942 100%
	);
	transform: translateX(-50%);
	opacity: 0.3;
}

.process-step {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 80px;
	position: relative;
}

.process-step:last-child {
	margin-bottom: 0;
}

.process-step:nth-child(odd) {
	flex-direction: row;
}

.process-step:nth-child(even) {
	flex-direction: row-reverse;
}

.step-number {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #322f2a 0%, #1a1a1a 100%);
	border: 3px solid #f4b942;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	font-weight: 700;
	color: #f4b942;
	position: relative;
	z-index: 2;
	box-shadow: 0 10px 30px rgba(244, 185, 66, 0.3);
}

.step-content {
	flex: 1;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	border: 2px solid rgba(244, 185, 66, 0.2);
}

.step-content:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(244, 185, 66, 0.3);
	border-color: #f4b942;
	background: rgba(255, 255, 255, 0.08);
}

.step-icon {
	width: 50px;
	height: 50px;
	background: rgba(244, 185, 66, 0.15);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border: 1px solid rgba(244, 185, 66, 0.3);
}

.step-icon svg {
	width: 28px;
	height: 28px;
	color: #f4b942;
}

.step-title {
	font-size: 24px;
	font-weight: 600;
	color: white;
	margin-bottom: 12px;
	line-height: 1.3;
}

.step-description {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin: 0;
}

/* ====================================
   CTA SECTION
   ==================================== */

.cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #322f2a 100%);
	color: white;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
	max-width: 700px;
	margin: 0 auto;
	padding: 0 20px;
}

.cta-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
	color: white;
}

.cta-description {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
}

.cta-button {
	display: inline-block;
	padding: 18px 50px;
	background: var(--primary-color);
	color: #1a1a1a;
	text-decoration: none;
	border: none;
	outline: none;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
}

.cta-button:hover {
	background: #e5aa31;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(244, 185, 66, 0.4);
}

/* ====================================
   RESPONSIVE STYLES
   ==================================== */

@media (max-width: 1200px) {
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 1024px) {
	.hero-section {
		padding: 120px 0 80px;
	}

	.hero-title {
		font-size: 48px;
	}

	.hero-description {
		font-size: 18px;
	}

	.jobs-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero-section {
		padding: 100px 0 60px;
		min-height: 60vh;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-description {
		font-size: 16px;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 15px;
	}

	.hero-btn {
		padding: 14px 35px;
		font-size: 15px;
		width: 100%;
		max-width: 300px;
	}

	.benefits-section,
	.jobs-section,
	.cta-section {
		padding: 70px 0;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.benefit-card {
		padding: 30px;
	}

	.job-filters {
		gap: 10px;
	}

	.filter-btn {
		padding: 10px 20px;
		font-size: 14px;
	}

	.job-card {
		padding: 25px;
	}

	.job-title {
		font-size: 20px;
	}

	.job-meta {
		flex-direction: column;
		gap: 10px;
	}

	.job-footer {
		flex-direction: column;
		gap: 15px;
		align-items: flex-start;
	}

	.job-apply-btn {
		width: 100%;
	}

	.job-modal-content {
		padding: 30px 25px;
		max-height: 90vh;
	}

	.job-modal-title {
		font-size: 28px;
	}

	.job-modal-meta {
		flex-direction: column;
		gap: 15px;
	}

	.job-modal-salary {
		font-size: 24px;
	}

	/* Process Section Mobile */
	.process-section {
		padding: 60px 0;
	}

	.process-section .section-header {
		margin-bottom: 50px;
	}

	.process-timeline::before {
		left: 30px;
	}

	.process-step {
		flex-direction: column !important;
		align-items: flex-start;
		gap: 20px;
		margin-bottom: 50px;
		padding-left: 80px;
	}

	.step-number {
		position: absolute;
		left: 0;
		width: 60px;
		height: 60px;
		font-size: 24px;
	}

	.step-content {
		padding: 25px;
		width: 100%;
	}

	.step-title {
		font-size: 20px;
	}

	.step-description {
		font-size: 15px;
	}

	.cta-title {
		font-size: 32px;
	}

	.cta-description {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 28px;
	}

	.benefit-title {
		font-size: 20px;
	}

	.job-title {
		font-size: 18px;
	}

	.cta-title {
		font-size: 26px;
	}
}

/* ====================================
   APPLICATION MODAL
   ==================================== */

.application-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	align-items: center;
	justify-content: center;
}

.application-modal.active {
	display: flex;
}

.application-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(5px);
}

.application-modal-content {
	position: relative;
	background: #2d2d2d;
	border-radius: 20px;
	max-width: 600px;
	width: 90%;
	max-height: 85vh;
	overflow-y: auto;
	padding: 50px;
	z-index: 10001;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.application-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10002;
}

.application-modal-close:hover {
	background: var(--primary-color);
	transform: rotate(90deg);
}

.application-modal-close svg {
	width: 20px;
	height: 20px;
	color: white;
}

.application-modal-title {
	font-size: 32px;
	font-weight: 700;
	color: white;
	margin-bottom: 10px;
}

.application-modal-subtitle {
	font-size: 16px;
	color: var(--primary-color);
	margin-bottom: 30px;
	font-weight: 600;
}

.application-form .form-group {
	margin-bottom: 25px;
}

.application-form label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: white;
	margin-bottom: 8px;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form textarea {
	width: 100%;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: white;
	font-size: 15px;
	transition: all 0.3s ease;
	font-family: inherit;
}

.application-form input:focus,
.application-form textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	background: rgba(255, 255, 255, 0.08);
}

.application-form textarea {
	resize: vertical;
	min-height: 100px;
}

.file-upload-area {
	position: relative;
}

.file-upload-area input[type="file"] {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

.file-upload-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 2px dashed rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.file-upload-label:hover {
	border-color: var(--primary-color);
	background: rgba(244, 185, 66, 0.05);
}

.file-upload-label svg {
	width: 40px;
	height: 40px;
	color: var(--primary-color);
	margin-bottom: 12px;
}

.file-upload-label span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.file-name {
	display: none;
	color: var(--primary-color) !important;
	font-weight: 600;
	margin-top: 8px;
	font-size: 13px !important;
}

.form-actions {
	display: flex;
	gap: 15px;
	margin-top: 35px;
}

.btn-primary,
.btn-secondary {
	flex: 1;
	padding: 16px 30px;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-primary {
	background: var(--primary-color);
	color: #1a1a1a;
}

.btn-primary:hover {
	background: #e5aa31;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(244, 185, 66, 0.4);
}

.btn-primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive for application modal */
@media (max-width: 768px) {
	.application-modal-content {
		padding: 30px 25px;
		max-height: 90vh;
	}
	
	.application-modal-title {
		font-size: 26px;
	}
	
	.form-actions {
		flex-direction: column;
	}
	
	.btn-primary,
	.btn-secondary {
		width: 100%;
	}
}