/* AB Stockholm city Trafikskola */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* Animationer */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

/* ==========================================================================
Generellt 
========================================================================== */
:root {
	/* 	Layout  */
	--col-padding: 3rem;
	--menu-height: 8rem;
	--menu-height-scrolled: 8rem;
	--section-width: 140rem;

	/* 	Colors */
	--primary-color: 106, 170, 200;
	--primary-light-color: 225, 238, 244;

	--secondary-color: 231, 147, 169;
	--secondary-light-color: 250, 233, 238;

	--white-color: 255, 255, 255;
	--black-color: 34, 34, 34;
	--gray-color: 130, 130, 130;
	--gray-light-color: 248, 248, 248;
	--gray-dark-color: 80, 80, 80;
	--red-color: 228, 35, 1;

	/* 	Typography */
	--base-size: 1.6rem;

	/* 	Mobile nav */
	--activate-mobile-menu: 1200;
	--mobile-menu-height: 6rem;
	--mobile-menu-bg: var(--white-color);
	--menu-color: var(--black-color);
}

/* Modal som öppnas automatiskt
========================================================================== */
body:not(.EditMode) .section-auto-modal {
	display: none;
	z-index: 9;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(var(--black-color), .7);
}

body:not(.EditMode) .section-auto-modal .section-block {
	position: fixed;
	top: 50%;
	left: 50%;
	width: calc(100% - 4rem);
	max-width: 75rem;
	max-height: 75vh;
	padding: 4rem;
	border-radius: 2rem;
	border: 6px solid rgb(var(--primary-color));
	border-style: dashed;
	overflow: auto;
	background: rgb(var(--white-color));
	transform: translate(-50%, -50%);
}

.section-auto-modal .close-modal {
	position: absolute;
	top: 1rem;
	right: 2rem;
	font-size: 3rem;
	cursor: pointer;
}

@media only screen and (max-width: 450px) {
	body:not(.EditMode) .section-auto-modal .section-block {
		padding: 3rem 2rem;
	}
}

/* Layout 
========================================================================== */
.section-block {
	padding: 10rem 5rem;
}

.section-block-wrapper {
	max-width: var(--section-width);
}

.width-1000 .section-block-wrapper {
	max-width: 100rem;
}

/* Paddings */
.p-2 .section-block,
.p-2:not(.section-wrapper) {
	padding: 2rem;
}

.pt-2 .section-block,
.pt-2:not(.section-wrapper) {
	padding-top: 2rem;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
	padding-top: 0;
}

.py-0 .section-block,
.py-0:not(.section-wrapper) {
	padding-top: 0;
	padding-bottom: 0;
}

.py-4 .section-block,
.py-4:not(.section-wrapper) {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
	padding-bottom: 0;
}

.pb-0 {
	padding-bottom: 0;
}

.pb-4 .section-block,
.pb-4:not(.section-wrapper) {
	padding-bottom: 4rem;
}

/* Margins */
.mt-0 {
	margin-top: 0;
}

.mb-3 {
	margin-bottom: 3rem !important;
}

.mt-3 {
	margin-top: 3rem !important;
}

.m-auto {
	margin: 0 auto;
}

/* Ovriga klasser */
.justify-between {
	justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
	.section-block {
		padding: 8rem 3rem;
	}
}

@media only screen and (max-width: 580px) {
	.section-block {
		padding: 5rem 2rem;
	}
}

/* Text och typsnitt
========================================================================== */
body {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	color: rgb(var(--black-color));
	-webkit-font-smoothing: antialiased;
}

/* rubriker */
.hero-title {
	font-size: 7rem;
	line-height: 1.2;
	font-weight: 900;
	padding-bottom: 0;
	margin-bottom: 3rem;
	color: rgb(var(--black-color));
}

.section-title {
	font-size: 4rem;
	line-height: 1.2;
	font-weight: 900;
	padding-bottom: 0;
	margin-bottom: .75em;
	color: rgb(var(--black-color));
}

.small-title {
	font-size: 2.25rem;
	line-height: 1.2;
	font-weight: 500;
	padding: 0 0 .5em;
	color: rgb(var(--black-color));
}

.text-title {
	font-size: var(--base-size);
	font-weight: 700;
	padding: 0 0 .5em;
}

.text-label {
	font-size: 2rem;
	margin-bottom: 3rem;
	font-weight: 400;
	letter-spacing: 0.25em;
	word-spacing: 0.25em;
	text-transform: uppercase;
	color: rgb(var(--black-color));
}

.ingress {
	font-size: calc(var(--base-size) * 1.2);
	font-weight: 700;
}

/* Text */
p,
li {
	font-weight: 300;
	color: rgb(var(--black-color));
}

a {
	font-size: inherit;
	font-weight: inherit;
	text-decoration: underline;
	color: inherit;
}

p a {
	text-decoration: underline;
	text-decoration-color: rgb(var(--primary-color));
	text-underline-offset: 3px;
	transition: all .2s ease;
}

a:hover {
	text-decoration: none;
	transition: all .2s ease;
}

/* ovriga klasser */
.text-bold {
	font-weight: 700;
}

.text-italic {
	font-style: italic;
}

.text-center {
	text-align: center;
}

.text-block {
	max-width: 75rem;
}

.text-block-center {
	max-width: 75rem;
	margin: 0 auto;
}

.text-block-center-100 {
	max-width: 100rem;
	margin: 0 auto;
}

.text-sm {
	font-size: 1.4rem;
}

/* Listor */
.list-circle {
	list-style: none;
}

.list-circle li {
	position: relative;
	margin-bottom: 1rem;
}

.list-circle li::before {
	content: '\f111';
	position: absolute;
	top: 50%;
	left: -2.5rem;
	color: rgb(var(--primary-color));
	font-weight: 700;
	font-size: .8rem;
	font-family: 'Font Awesome 5 Pro';
	transform: translateY(-50%);
}

/* List Pills */
.list-pills {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

.list-pills li {
	margin: 0 1rem 1rem 0;
}

.list-pills li a {
	background-color: rgb(var(--primary-color), .3);
	border: 1px solid rgb(var(--primary-color), .5);
	border-radius: 3rem;
	padding: 4px 20px 4px 15px;
	font-weight: 400;
	color: rgb(var(--black-color));
	text-decoration: none;
}

@media only screen and (max-width: 1200px) {
	.hero-title {
		font-size: 3.9rem;
	}

	.section-title {
		font-size: 3.3rem;
	}

	.small-title {
		font-size: 2.3rem;
	}
}

@media only screen and (max-width: 700px) {
	.hero-title {
		font-size: 2.8rem;
	}

	.section-title {
		font-size: 2.5rem;
	}

	.small-title {
		font-size: 2rem;
	}

	.text-label {
		font-size: 1.4rem;
	}
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.btn-wrapper.multiple .btn:not(:last-child) {
	margin-right: 2rem;
}

.btn-wrapper.center {
	justify-content: center;
}

/* Knappar */
.btn,
.ContactSubmit {
	padding: 1.6rem 3.5rem;
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 3rem;
	border: 2px solid;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.btn-primary-filled,
.ContactSubmit {
	color: rgb(var(--white-color));
	background-color: rgb(var(--primary-color));
	border-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.ContactSubmit:hover,
.ContactSubmit:focus {
	background-color: rgb(var(--secondary-color));
	border-color: rgb(var(--secondary-color));
}

.btn-primary-outlined {
	border-color: rgb(var(--primary-color));
	color: rgb(var(--white-color));
}

.btn-primary-outlined:hover {
	background-color: rgb(var(--secondary-color));
	border-color: rgb(var(--secondary-color));
	color: rgb(var(--white-color));
}

.btn-white-filled {
	color: rgb(var(--black-color));
	background: rgb(var(--white-color));
}

.btn-white-filled:hover {
	background: rgb(var(--gray-light-color));
}

.btn-black-filled {
	color: rgb(var(--white-color));
	background: rgb(var(--black-color));
}

.btn-black-filled:hover {
	color: rgb(var(--black-color));
	background: rgb(var(--gray-light-color));
}

/* Knappstyling */
.btn.arrow::after {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	display: inline-block;
	content: '\f054';
	margin-left: 1rem;
	opacity: 0.7;
	transition: all .4s ease;
}

.btn.arrow:hover:after {
	opacity: 1;
	transition: all .4s ease;
	transform: translateX(1rem);
}

.btn-large {
	font-size: 1.6rem;
	text-transform: none;
	letter-spacing: 0;
	text-align: left;
}

/* Arrow link */
.arrow-link {
	font-size: var(--base-size);
	padding-right: 1rem;
	color: rgb(var(--gray-dark-color));
}

.arrow-link::after {
	content: ' \f105';
	display: inline-block;
	margin-left: 1rem;
	font-weight: 400;
	font-family: 'Font Awesome 5 Pro';
	transition: transform .4s ease;
}

.arrow-link:hover::after {
	transform: translateX(1rem);
	transition: transform .4s ease;
}

/* Cirkelikon */
.circle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	padding: 0;
	margin: .5rem;
	font-size: 0;
	text-decoration: none;
	border-radius: 50%;
	background-color: transparent;
	border: 1px solid rgb(var(--gray-color));
	color: rgb(var(--gray-dark-color));
	transition: .3s ease;
}

.circle-icon:hover {
	background-color: rgb(var(--primary-dark-color));
	border-color: rgb(var(--primary-dark-color));
	color: rgb(var(--white-color));
}

.circle-icon em:before {
	font-size: var(--base-size);
}

@media only screen and (max-width: 580px) {
	.btn:not(.btn-nav) {
		display: block;
		width: 100%;
	}

	.btn-wrapper.multiple .btn:not(:last-child) {
		margin-right: 0rem;
		margin-bottom: 2rem;
	}
}

/* Farger
========================================================================== */
/* Bakgrundsfarger */
.bg-primary {
	background-color: rgb(var(--primary-color));
}

.bg-primary-light {
	background-color: rgba(var(--primary-light-color));
}

.bg-secondary {
	background-color: rgb(var(--secondary-color));
}

.bg-gray-light {
	background-color: rgb(var(--gray-light-color));
}

.gradient-white-gray {
	background-image: linear-gradient(to bottom, rgb(var(--white-color)) 50%, rgb(var(--gray-light-color)) 50%);
}

/* Textfarger */
.text-primary {
	color: rgb(var(--primary-color));
}

.text-secondary {
	color: rgb(var(--secondary-color));
}

.text-white {
	color: rgb(var(--white-color));
}

.text-black {
	color: rgb(var(--black-color));
}

.text-gray-dark {
	color: rgb(var(--gray-dark-color), .6)
}

.text-red {
	color: rgb(var(--red-color));
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
	position: relative;
	overflow: hidden;
}

.bg-image-wrapper {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Bakgrundsvideo  */
.bg-video {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.bg-video-wrapper {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.bg-video-wrapper video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Video ratio
========================================================================== */
.video-ratio {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}

.video-ratio iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Cards
========================================================================== */
.cards-wrapper {
	display: flex;
	flex-wrap: wrap;
}

/* Specifika bredder */
.cards-wrapper.w-33 .card-item {
	width: calc((100% / 3) - 2rem);
	margin: 1rem;
}

.cards-wrapper.w-50 .card-item {
	width: calc((100% / 2) - 2rem);
	margin: 1rem;
}

@media only screen and (max-width: 1050px) {
	.cards-wrapper.w-33 .card-item {
		width: calc((100% / 2) - 2rem);
	}
}

@media only screen and (max-width: 750px) {

	.cards-wrapper.w-50 .card-item,
	.cards-wrapper.w-33 .card-item {
		width: 100%;
		margin: 1rem 0;
	}
}

/* Card 1-1 */
.card-1-1 .card-item {
	border-radius: 1rem;
	overflow: hidden;
}

.card-1-1 .btn {
	margin: 0;
	border-radius: 0;
	width: 100%;
	border: none;
}

@media only screen and (max-width: 750px) {
	.card-1-1 .card-body.p-3 {
		padding-top: 0;
	}
}

/* Cards-3-1 */
.cards-3-1 .card-item {
	border-radius: 1rem;
	overflow: hidden;
}

/* Split wrapper
========================================================================== */
.split-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.split-wrapper.reverse {
	flex-direction: row-reverse;
}

.split-content {
	width: 50%;
	padding: 5rem;
}

.split-image {
	width: 50%;
}

/* Centrera content */
.split-wrapper .align-center {
	align-self: center;
}

/* Speciella bredder */
.split-wrapper .w-60 {
	width: 60%;
}

.split-wrapper .w-30 {
	width: 30%;
}

/* Sticky */
.split-wrapper .sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 50%;
	transform: translateY(-40%);
	align-self: flex-start;
}

@media screen and (max-width: 1000px) {

	.split-content,
	.split-wrapper .w-60,
	.split-wrapper .w-30 {
		width: 100%;
	}

	.split-image {
		width: 100%;
		min-height: 20rem;
	}

	/* Sticky */
	.split-wrapper .sticky {
		position: relative;
		top: auto;
		transform: none;
		align-self: flex-start;
	}
}

@media screen and (max-width: 580px) {
	.split-wrapper {
		background: transparent;
	}

	.split-content {
		padding: 0 0 3rem 0;
	}
}

/* Grafiska element
========================================================================== */
.border-l-thick {
	padding-left: 2rem;
	border-left: 3px solid #6aaac8;
}

/* Header / Navigation
========================================================================== */
/* Header */
header {
	padding: 0 1rem 0 0;
	background-color: rgb(var(--white-color));
	border-bottom: 1px solid rgb(var(--gray-light-color));
}

header .container {
	max-width: none;
}

/* Header logo */
.header-logo {
	margin: 0 2rem 0 0;
}

/* Nav */
nav.mainmenu {
	margin: 0 0 0 auto;
}

.TemplateMenu a {
	position: relative;
	font-weight: 500;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgb(var(--gray-dark-color));
	padding: 0 1rem;
}

.TemplateMenu a:hover {
	color: rgb(var(--primary-color));
}

/* Dropdown */
.TemplateMenu ul {
	width: 25rem;
	box-shadow: 0 1rem 2rem rgba(var(--black-color), .1);
	border: 1px solid rgb(var(--gray-light-color));
	border-top: none;
}

.TemplateMenu ul a {
	text-transform: none;
	line-height: 1.6;
	letter-spacing: 0;
	padding: .5rem 2rem;
	margin-bottom: 1rem;
}

.nav-tag {
	position: relative;
	font-size: 1rem;
	font-weight: 700;
	background-color: rgb(var(--secondary-color));
	color: rgb(var(--black-color));
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 2rem;
	padding: 2px 6px;
	margin: 0 0 0 5px;
}

.EditMode .TemplateMenu ul {
	height: 30rem;
	overflow: auto;
}

/* CTA  */
.header-cta-wrapper {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0 0 0 3rem;
	list-style: none;
}

.header-cta-wrapper li {
	margin: 0;
	line-height: 1;
}

.header-cta-wrapper .btn {
	padding: 1rem 2rem;
	line-height: 1;
}

/* Mobilmeny */
header.mobile-menu {
	background-color: rgb(var(--white-color));
}

.mobile-menu .container {
	padding: 0 2rem;
}

.mobile-menu .header-logo {
	flex-grow: 1;
}

.mobile-menu .header-cta-wrapper {
	margin: 0 1rem 0 0;
}

.mobile-menu .header-cta-wrapper .btn.arrow::after {
	display: none;
}

header.mobile-menu .TemplateMenu a {
	color: rgb(var(--gray-dark-color));
	padding: 0 2rem;
}

.mobile-menu .TemplateMenu ul {
	box-shadow: none;
	background-color: rgb(var(--gray-light-color));
	border: none;
	padding: 2rem 0;
}

/* ==========================================================================
Startsida 
========================================================================== */

/* Topsection
========================================================================== */
.top-section {
	position: relative;
	z-index: 1;
}

.top-section::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: "";
	background-image: url(/assets/images/raster.svg);
	background-size: cover;
	background-position: center center;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	pointer-events: none;
}

.top-section .section-block {
	display: flex;
	align-items: center;
	min-height: 80vh;
	background-color: rgba(0, 0, 0, 0.67);
}

.top-section .section-block-wrapper {
	width: 100%;
}

.top-section p {
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}

.top-section .btn {
	margin: 0 1rem 0 0;
}

@media only screen and (max-width: 580px) {
	.top-section .btn {
		display: block;
		width: 100%;
		margin: 0 0 1rem;
	}
}

.top-section-badge {
	max-width: 50rem;
	height: 20rem;
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	margin: auto;
	text-align: center;
	justify-content: center;
}

.top-badge {
	max-width: 21rem;
	padding: 2rem;
}

.top-badge img {
	border-radius: 2rem;

}

@media only screen and (max-width: 600px) {

	.top-section-badge {
		left: 0;
		padding-top: 4rem;
	}

	.top-badge {
		max-width: 15rem;
	}
}

/* Banner
========================================================================== */
.banner {
	max-width: 80rem;
	margin: 0 auto;
	padding: 3rem;
	border-radius: 1rem;
	background-color: rgb(var(--secondary-light-color));
	border: 1px solid rgb(var(--secondary-color));
	overflow: hidden;
}

.banner.bg-primary {
	background-color: rgb(var(--primary-light-color));
	border: 1px solid rgb(var(--primary-color));
}

.banner.with-img {
	display: flex;
	padding: 0;
}

.banner .text-wrapper {
	max-width: 50rem;
	align-self: center;
	padding: 3rem;
}

.banner .image-wrapper {
	max-width: 25rem;
	margin: 0 0 0 auto;
}

/* Rutor langst ner
========================================================================== */
.column-wrapper {
	columns: 3;
	column-gap: 2rem;
}


.column-wrapper .card-item {
	width: 100%;
	margin: 0 0 2rem;
	display: flex;
	flex-direction: column;
	background-color: rgb(var(--white-color));
	box-shadow: 0 1rem 1rem rgba(var(--black-color), 0.05);
	border-radius: 1rem;
	padding: 4rem;
	break-inside: avoid-column;
}

.column-wrapper .card-item img {
	margin: auto auto 2rem;
	border-radius: 0.5rem;
	border: 1px solid rgb(var(--gray-light-color));
}

.column-wrapper .card-item iframe {
	max-width: 100%;
	margin: auto;
}


@media only screen and (max-width:1340px) {
	.column-wrapper {
		columns: 2;
	}
}

@media only screen and (max-width:800px) {
	.column-wrapper {
		columns: 1;
	}
}

@media only screen and (max-width:550px) {

	.column-wrapper .card-item {
		padding: 2rem;
	}
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero
========================================================================== */
.hero {
	position: relative;
	z-index: 1;
}

.hero::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: "";
	background-image: url(/assets/images/raster.svg);
	background-size: cover;
	background-position: center top;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	pointer-events: none;
}

.hero .section-block {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 30vh 2rem 5rem;
	background-color: rgba(0, 0, 0, 0.67);
}

.hero .hero-title {
	color: rgb(var(--white-color));
	padding: 0;
	margin: 0;
}

/* Column Section
========================================================================== */
.columns {
	column-count: 2;
	column-gap: 6rem;
	column-rule: 1px solid rgba(var(--black-color), .1);
}

.columns.big {
	column-count: 3;
}

.columns div {
	break-inside: avoid-column;
}

.columns:not(:last-of-type) {
	display: block;
	padding-bottom: 4rem;
	margin-bottom: 4rem;
	border-bottom: 2rem solid rgba(var(--black-color), .025);
}

.columns .box {
	padding: 1.5rem;
	margin-bottom: 3rem;
	border: 1px solid rgb(var(--primary-color));
	background: rgb(var(--primary-color), .2);
	border-radius: 5px;
}

.columns p,
.columns .btn-wrapper {
	padding-bottom: 0.5em;
	margin-top: 0;
	margin-bottom: 1.5rem;
}

.columns .box p {
	margin-bottom: 0;
}

@media only screen and (max-width: 1000px) {
	.columns.big {
		column-count: 2;
	}
}

@media only screen and (max-width:720px) {

	.columns.big,
	.columns {
		column-count: 1;
		column-gap: 0;
	}
}

/* ==========================================================================
Undersida: Om oss
========================================================================== */
.section-gold {
	background-image: url(/assets/images/medlem-guld-bg.jpg);
	background-size: cover;
}

.section-gold .section-block {
	background-color: rgba(0, 0, 0, .25);
}

.section-gold .columns {
	column-count: 3;
	column-rule: 1px solid rgba(var(--white-color), .1);
}

.section-gold img {
	max-height: 25rem;
	margin-top: -10rem;
}

@media only screen and (max-width: 1100px) {
	.section-gold .columns {
		column-count: 1;
		column-rule: none;
	}

	.section-gold .text-center {
		text-align: left;
	}

	.section-gold img {
		margin-bottom: 3rem;
	}
}

@media only screen and (max-width: 1024px) {
	.section-gold img {
		margin-top: -8rem;
	}
}

@media only screen and (max-width: 580px) {
	.section-gold img {
		margin-top: -5rem;
	}
}

/* ==========================================================================
Undersida: Vanliga fragor
========================================================================== */
.accordion-wrapper {
	max-width: 100rem;
	margin: 0 auto;
	border-radius: 1rem;
	box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
	background-color: rgb(var(--white-color));
	overflow: hidden;
}

.accordion-header {
	appearance: none;
	position: relative;
	width: 100%;
	padding: 2rem 3rem;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgb(var(--gray-light-color));
	font-family: inherit;
	cursor: pointer;
	transition: .2s ease;
	text-align: left;
}

.accordion-header:hover {
	background-color: rgba(var(--gray-light-color), .5);
	transition: .2s ease;
}

.accordion-header::after {
	content: "\f078";
	position: absolute;
	top: 50%;
	right: 3rem;
	transform: translateY(-50%);
	font-size: 1.7rem;
	font-family: "Font Awesome 5 Pro";
	transition: .5s ease;
}

.accordion-item.active .accordion-header::after {
	transform: rotate(180deg);
}

.accordion-header p {
	padding: 0 2.5rem 0 0;
	font-weight: 500;
}

.accordion-body {
	padding: 4rem 3rem;
	background-color: rgb(var(--gray-light-color));
	border-left: 3px solid rgb(var(--primary-color));
}

@media only screen and (max-width: 580px) {
	.accordion-header {
		padding: 2rem 5rem 2rem 2rem;
	}

	.accordion-header::after {
		right: 2rem;
	}

	.accordion-body {
		padding: 3rem 2rem;
	}
}

/* ==========================================================================
Undersida > Enskilda tjanstesidor
========================================================================== */

/* Sektion Kontaktformular
========================================================================== */
.section-form .col-0 {
	max-width: 60rem;
	margin: 0 auto;
	border-radius: 1rem 1rem 0 0;
	background-color: rgb(var(--white-color));
	padding: 0;
	overflow: hidden;
}

.section-form .col-0 .text-wrapper {
	background-color: rgb(var(--primary-color));
	padding: 3rem;
}

.section-form .col-0 .small-title {
	padding: 0;
	line-height: 1;
	color: rgb(var(--white-color));
}

.section-form .Contact {
	padding: 3rem;
}

.ContactForm input[type="text"],
.ContactForm textarea {
	border-radius: 3px;
}

.ContactForm .ContactSubmit {
	font-size: 1.4rem;
}

.ContactForm p {
	position: relative;
	padding: 0.2em;
	line-height: 1;
	font-size: 1.4rem;
	display: inline-block;
	background-color: rgb(var(--white-color));
	transform: translateY(50%);
	left: 1rem;
	margin: -10px 0 0;
}

@media only screen and (max-width: 580px) {
	.section-form .col-0 .text-wrapper {
		padding: 2rem;
	}

	.section-form .Contact {
		padding: 2rem;
	}
}

/* ==========================================================================
Undersida: Priser
========================================================================== */
.table {
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
}

.row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgb(var(--gray-light-color));
}

.table .cell {
	padding: 1rem 2rem;
	border-bottom: rgb(var(--gray-light-color));
}

.table p {
	padding: 0;
}

/* Rubrikerna */
.table-heading p {
	font-weight: 500;
	color: rgb(var(--white-color));
}

@media only screen and (max-width: 750px) {
	.table-heading {
		display: none;
	}

	.table.w-50 .cell {
		width: 100%;
	}

	.cell:before {
		content: attr(data-title);
		display: block;
		font-size: 1.3rem;
		color: #666;
		text-transform: uppercase;
		margin-bottom: 13px;
	}
}

@media only screen and (max-width: 420px) {
	.row {
		flex-wrap: wrap;
	}

	.cell {
		width: 100%;
	}
}


/* ==========================================================================
Undersida > Kontakt
========================================================================== */

/* Sektion Kontaktformular
========================================================================== */
.section-contact-form .col-1 {
	border-radius: 1rem;
	box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
	background-color: rgb(var(--white-color));
	padding: 0;
	overflow: hidden;
}

.section-contact-form .col-1 .text-wrapper {
	background-color: rgb(var(--primary-color));
	padding: 3rem;
}

.section-contact-form .col-1 .small-title {
	padding: 0;
	line-height: 1;
	color: rgb(var(--white-color));
}

.section-contact-form .Contact {
	padding: 3rem;
}

@media only screen and (max-width: 580px) {

	.section-contact-form .col-1 .text-wrapper {
		padding: 2rem;
	}

	.section-contact-form .Contact {
		padding: 2rem;
	}
}


/* ==========================================================================
Webbshop
========================================================================== */

#e-handel {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

#str-ecom .card-title {
	font-size: 1.8rem !important;
	margin-top: 1rem !important;
}

#str-ecom .h6,
#str-ecom h6 {
	font-size: 1.6rem !important;
	margin-top: 1rem !important;
}


#str-ecom #testBanner {
	display: none;
}

#str-ecom .filter.mb-2 {
	display: none !important;
}

#str-ecom p {
	padding-bottom: 0;
}

#str-ecom .btn {
	font-size: 1.5rem !important;
	padding: 2rem !important;
	min-width: 0 !important;
}

#str-ecom .card.product .card-body,
#str-ecom .card.product .card-img {
	margin: 0 auto;
}


#str-ecom #top-nav>.flickity-enabled .btn {
	color: rgb(var(--primary-color)) !important;
}

#str-ecom .menu-buttons .btn>svg {
	font-size: 1.5rem !important;
}

#str-ecom .menu-buttons .btn {
	color: rgb(var(--secondary-color)) !important;
	background-color: #343a40 !important;
	border-color: #343a40 !important;
}

#str-ecom .product-timeslots li.week-header {
	font-size: 1.8rem !important;
	text-transform: capitalize !important;
}

#str-ecom .product-timeslots li:not(.week-header) {
	border: 1px solid #eee !important;
	padding: 2rem !important;
	border-radius: 1rem !important;
}

#str-ecom .product-timeslots li.week-header::marker {
	display: none !important;
}

#str-ecom .collapsible.show .selected-item {
	display: block !important;
	margin-top: 2rem !important;
}

#str-ecom .product-info.mb-5 p span {
	font-size: 1.4rem !important;
}

#str-ecom .list-inline,
#str-ecom .list-unstyled {
	overflow: hidden;
}

#str-ecom .product-timeslots li>* {
	line-height: 2.25rem !important;
}

#str-ecom .product.product-detail .product-price {
	font-size: 2rem !important;
}

#str-ecom #menu-navigation .menu {
	padding-bottom: 8rem !important;
}

#str-ecom #cart .cart-items .product-item .price-discount,
#str-ecom #cart .total-price {
	font-size: 2rem !important;
}

#str-ecom .menu-buttons .cart {
	min-width: 6rem !important;
}

#str-ecom #menu-navigation .menu .btn.cart {
	padding: 0 !important;
}

#str-ecom .h5 {
	font-size: 1.4rem !important;
}

#str-ecom .close.page-close {
	z-index: 5 !important;
}

#str-ecom .product-timeslots li .date-time span {
	margin-right: 1rem !important;
	text-transform: capitalize !important;
	border-right: 1px solid #ccc !important;
	padding-right: 1rem !important;
}

#str-ecom .menu-buttons .btn.cart>svg {
	width: 3rem !important;
	height: 3rem !important;
}

#str-ecom .menu-buttons {
	z-index: 5 !important;
}

/*
#str-ecom #top-nav>.flickity-enabled .btn.active {
	
}

#str-ecom #top-nav>.flickity-enabled .btn.active {
	color: #e793a9 !important;
}
*/


@media (min-width: 768px) {
	#str-ecom .product-timeslots li .price {
		margin-right: 2.7rem !important;
	}

	#str-ecom .col-sm-8 {
		flex: 0 0 66.66% !important;
		max-width: 66.66% !important;
	}
}

@media only screen and (max-width: 768px) {
	#str-ecom .col-sm-8 {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}

	#str-ecom .product-timeslots li:not(.week-header) {
		padding-right: 0 !important;
	}

	#str-ecom .product-timeslots li .price {
		position: static !important;
		display: inline !important;
	}

	#str-ecom svg.checkbox.right.center {
		position: static !important;
		display: inline !important;
		-webkit-transform: translate(-15px, 3px) !important;
		transform: translate(-15px, 3px) !important;
	}

	#str-ecom .product-timeslots li .employees {
		display: block !important;
		margin-bottom: 1rem !important;
	}
}

@media screen and (min-width: 576px) {
	#str-ecom .menu-buttons {
		top: 3.5rem;
	}

}

@media screen and (max-width: 576px) {
	#str-ecom .h5 {
		font-size: 1.4rem !important;
	}


}

/* ==========================================================================
Footer 
========================================================================== */
.footer {
	padding: 0 5rem;
	background-color: rgb(var(--white-color));
}

/* Footer top */
.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 8rem 0 4rem;
}

.footer-menu {
	margin: 1.5rem 0;
}

.footer-menu:first-child {
	width: 40%;
}

.footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer p,
.footer a,
.footer li {
	color: rgb(var(--gray-dark-color));
	font-weight: 400;
	font-size: 1.4rem;
}

.footer a:hover {
	color: rgb(var(--black-color));
}

.footer-top li {
	padding: 0 0 1rem;
}

.footer p.small-title {
	margin-bottom: 1rem;
	font-size: 1.4rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 600;
	color: rgb(var(--primary-color));
}

/* Partners */
.partners {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 1rem;
}

.partners a {
	text-decoration: none;
}

.partner-logo {
	height: 3.5rem;
	border-radius: 8px;
	border: 1px solid rgb(var(--gray-color));
	padding: 4px;
	margin: 0 1rem 1rem 0;
}

.partner-logo img {
	height: 100%;
}

.footer .circle-icon {
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 1rem 1rem 0;
}

.partners a:hover {
	border-color: rgb(var(--black-color));
}

/* Footer bottom */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 0;
	border-top: 1px solid rgb(var(--gray-color), .2);
}

.footer-bottom p,
.footer-bottom a {
	font-size: 1.2rem;
}

.footer-bottom .circle-icon,
.footer-bottom .circle-icon:hover {
	color: rgb(var(--white-color));
}

/* WebbEss Stamp  */
.webbess-stamp {
	display: flex;
	align-items: center;
	padding: 0;
	font-size: 1.2rem;
}

.webbess-stamp img {
	width: 2.5rem;
	opacity: .7;
	margin-left: 1rem;
}


@media only screen and (max-width: 1024px) {

	.footer {
		padding: 0 3rem;
	}

	/* Footer top */
	.footer-menu {
		width: 48%;
	}

	.footer-menu-large {
		width: 100%;
	}

	.footer-menu-large p {
		max-width: 55rem;
	}
}

@media only screen and (max-width: 750px) {

	/* Footer top */
	.footer-menu,
	.footer-menu-large {
		width: 100%;
	}
}

@media only screen and (max-width: 580px) {
	.footer {
		padding: 0 2rem;
	}

	/* Footer bottom */
	.footer-bottom {
		flex-direction: column;
	}
}