*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
    --font-family-default: "Toyota Type Book",arial,helvetica,sans-serif; 
    --font-size-default: 15px;
    --font-weight-default: normal;
    --line-height-default: 20px;
    --text-color-default: #282830;
    --background-color-default: #fff;
    --text-align-default: left;
    --gutter-x: 1.5rem;
    --gutter-y: 0;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  font-weight: var(--font-weight-default);
  line-height: var(--line-height-default);
  color: var(--text-color-default);
  text-align: var(--text-align-default);
  background-color: var(--background-color-default);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body.layout-lfs {
	font-family: "Nobel-Book",arial,helvetica,sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 23px;
	color: #000;
}
@media (min-width: 1200px) {
	body {
		font-size:20px;
		line-height:27px;
	}
	body.layout-lfs {
		font-size:20px;
		line-height:27px;
	}
	
}


.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {  
  width: 100%;
  padding-right: calc(var(gutter-x) * 0.5);
  padding-left: calc(var(gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.container {
	margin-left:28px;
	margin-right:28px;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
	margin-left:auto;
	margin-right: auto;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1480px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1440px;
  }
}

.row {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-0.5 * var(--gutter-x));
  margin-left: calc(-0.5 * var(--gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--gutter-y);
}


.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --gutter-x: 0;
}

.g-0,
.gy-0 {
  --gutter-y: 0;
}

.g-1,
.gx-1 {
  --gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
.gx-sm-0 {
    --gutter-x: 0;
  }

  .g-sm-0,
.gy-sm-0 {
    --gutter-y: 0;
  }

  .g-sm-1,
.gx-sm-1 {
    --gutter-x: 0.25rem;
  }

  .g-sm-1,
.gy-sm-1 {
    --gutter-y: 0.25rem;
  }

  .g-sm-2,
.gx-sm-2 {
    --gutter-x: 0.5rem;
  }

  .g-sm-2,
.gy-sm-2 {
    --gutter-y: 0.5rem;
  }

  .g-sm-3,
.gx-sm-3 {
    --gutter-x: 1rem;
  }

  .g-sm-3,
.gy-sm-3 {
    --gutter-y: 1rem;
  }

  .g-sm-4,
.gx-sm-4 {
    --gutter-x: 1.5rem;
  }

  .g-sm-4,
.gy-sm-4 {
    --gutter-y: 1.5rem;
  }

  .g-sm-5,
.gx-sm-5 {
    --gutter-x: 3rem;
  }

  .g-sm-5,
.gy-sm-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
.gx-md-0 {
    --gutter-x: 0;
  }

  .g-md-0,
.gy-md-0 {
    --gutter-y: 0;
  }

  .g-md-1,
.gx-md-1 {
    --gutter-x: 0.25rem;
  }

  .g-md-1,
.gy-md-1 {
    --gutter-y: 0.25rem;
  }

  .g-md-2,
.gx-md-2 {
    --gutter-x: 0.5rem;
  }

  .g-md-2,
.gy-md-2 {
    --gutter-y: 0.5rem;
  }

  .g-md-3,
.gx-md-3 {
    --gutter-x: 1rem;
  }

  .g-md-3,
.gy-md-3 {
    --gutter-y: 1rem;
  }

  .g-md-4,
.gx-md-4 {
    --gutter-x: 1.5rem;
  }

  .g-md-4,
.gy-md-4 {
    --gutter-y: 1.5rem;
  }

  .g-md-5,
.gx-md-5 {
    --gutter-x: 3rem;
  }

  .g-md-5,
.gy-md-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
.gx-lg-0 {
    --gutter-x: 0;
  }

  .g-lg-0,
.gy-lg-0 {
    --gutter-y: 0;
  }

  .g-lg-1,
.gx-lg-1 {
    --gutter-x: 0.25rem;
  }

  .g-lg-1,
.gy-lg-1 {
    --gutter-y: 0.25rem;
  }

  .g-lg-2,
.gx-lg-2 {
    --gutter-x: 0.5rem;
  }

  .g-lg-2,
.gy-lg-2 {
    --gutter-y: 0.5rem;
  }

  .g-lg-3,
.gx-lg-3 {
    --gutter-x: 1rem;
  }

  .g-lg-3,
.gy-lg-3 {
    --gutter-y: 1rem;
  }

  .g-lg-4,
.gx-lg-4 {
    --gutter-x: 1.5rem;
  }

  .g-lg-4,
.gy-lg-4 {
    --gutter-y: 1.5rem;
  }

  .g-lg-5,
.gx-lg-5 {
    --gutter-x: 3rem;
  }

  .g-lg-5,
.gy-lg-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
.gx-xl-0 {
    --gutter-x: 0;
  }

  .g-xl-0,
.gy-xl-0 {
    --gutter-y: 0;
  }

  .g-xl-1,
.gx-xl-1 {
    --gutter-x: 0.25rem;
  }

  .g-xl-1,
.gy-xl-1 {
    --gutter-y: 0.25rem;
  }

  .g-xl-2,
.gx-xl-2 {
    --gutter-x: 0.5rem;
  }

  .g-xl-2,
.gy-xl-2 {
    --gutter-y: 0.5rem;
  }

  .g-xl-3,
.gx-xl-3 {
    --gutter-x: 1rem;
  }

  .g-xl-3,
.gy-xl-3 {
    --gutter-y: 1rem;
  }

  .g-xl-4,
.gx-xl-4 {
    --gutter-x: 1.5rem;
  }

  .g-xl-4,
.gy-xl-4 {
    --gutter-y: 1.5rem;
  }

  .g-xl-5,
.gx-xl-5 {
    --gutter-x: 3rem;
  }

  .g-xl-5,
.gy-xl-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
.gx-xxl-0 {
    --gutter-x: 0;
  }

  .g-xxl-0,
.gy-xxl-0 {
    --gutter-y: 0;
  }

  .g-xxl-1,
.gx-xxl-1 {
    --gutter-x: 0.25rem;
  }

  .g-xxl-1,
.gy-xxl-1 {
    --gutter-y: 0.25rem;
  }

  .g-xxl-2,
.gx-xxl-2 {
    --gutter-x: 0.5rem;
  }

  .g-xxl-2,
.gy-xxl-2 {
    --gutter-y: 0.5rem;
  }

  .g-xxl-3,
.gx-xxl-3 {
    --gutter-x: 1rem;
  }

  .g-xxl-3,
.gy-xxl-3 {
    --gutter-y: 1rem;
  }

  .g-xxl-4,
.gx-xxl-4 {
    --gutter-x: 1.5rem;
  }

  .g-xxl-4,
.gy-xxl-4 {
    --gutter-y: 1.5rem;
  }

  .g-xxl-5,
.gx-xxl-5 {
    --gutter-x: 3rem;
  }

  .g-xxl-5,
.gy-xxl-5 {
    --gutter-y: 3rem;
  }
}


.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

@media (min-width: 576px) {  
  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }
}
@media (min-width: 768px) {  
  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 992px) {  
  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 1200px) { 
  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }
}
@media (min-width: 1480px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}
@media (min-width: 576px) {
.order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }
}
@media (min-width: 768px) {
  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }
}
@media (min-width: 992px) {
  .order-md-last {
    order: 6 !important;
  }
  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }
}
@media (min-width: 1200px) {
.order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }
}
@media (min-width: 1480px) {
  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }
}

.card {
  --card-spacer-y: 1rem;
  --card-spacer-x: 1rem;
  --card-title-spacer-y: 0.5rem;
  --card-border-width: 1px;
  --card-border-color: var(--border-color-translucent);
  --card-border-radius: 0.375rem;
  /*--card-box-shadow: ;*/
  --card-inner-border-radius: calc(0.375rem - 1px);
  --card-cap-padding-y: 0.5rem;
  --card-cap-padding-x: 1rem;
  --card-cap-bg: rgba(0, 0, 0, 0.03);
  /*--card-cap-color: ;*/
  /*--card-height: ;*/
  /*--card-color: ;*/
  --card-bg: #fff;
  --card-img-overlay-padding: 1rem;
  --card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--card-height);
  word-wrap: break-word;
  background-color: var(--card-bg);
  background-clip: border-box;
  border: var(--card-border-width) solid var(--card-border-color);
  border-radius: var(--card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--card-inner-border-radius);
  border-top-right-radius: var(--card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--card-inner-border-radius);
  border-bottom-left-radius: var(--card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--card-spacer-y) var(--card-spacer-x);
  color: var(--card-color);
}

.card-title {
  margin-bottom: var(--card-title-spacer-y);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--card-title-spacer-y));
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--card-spacer-x);
}

.card-header {
  padding: var(--card-cap-padding-y) var(--card-cap-padding-x);
  margin-bottom: 0;
  color: var(--card-cap-color);
  background-color: var(--card-cap-bg);
  border-bottom: var(--card-border-width) solid var(--card-border-color);
}
.card-header:first-child {
  border-radius: var(--card-inner-border-radius) var(--card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--card-cap-padding-y) var(--card-cap-padding-x);
  color: var(--card-cap-color);
  background-color: var(--card-cap-bg);
  border-top: var(--card-border-width) solid var(--card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--card-inner-border-radius) var(--card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-0.5 * var(--card-cap-padding-x));
  margin-bottom: calc(-1 * var(--card-cap-padding-y));
  margin-left: calc(-0.5 * var(--card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--card-bg);
  border-bottom-color: var(--card-bg);
}

.card-header-pills {
  margin-right: calc(-0.5 * var(--card-cap-padding-x));
  margin-left: calc(-0.5 * var(--card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--card-img-overlay-padding);
  border-radius: var(--card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: var(--card-inner-border-radius);
  border-top-right-radius: var(--card-inner-border-radius);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--card-inner-border-radius);
  border-bottom-left-radius: var(--card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --dropdown-min-width: 10rem;
  --dropdown-padding-x: 0;
  --dropdown-padding-y: 0.5rem;
  --dropdown-spacer: 0.125rem;
  --dropdown-font-size: 1rem;
  --dropdown-color: #212529;
  --dropdown-bg: #fff;
  --dropdown-border-color: var(--border-color-translucent);
  --dropdown-border-radius: 0.375rem;
  --dropdown-border-width: 1px;
  --dropdown-inner-border-radius: calc(0.375rem - 1px);
  --dropdown-divider-bg: var(--border-color-translucent);
  --dropdown-divider-margin-y: 0.5rem;
  --dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --dropdown-link-color: #212529;
  --dropdown-link-hover-color: #1e2125;
  --dropdown-link-hover-bg: #e9ecef;
  --dropdown-link-active-color: #fff;
  --dropdown-link-active-bg: #0d6efd;
  --dropdown-link-disabled-color: #adb5bd;
  --dropdown-item-padding-x: 1rem;
  --dropdown-item-padding-y: 0.25rem;
  --dropdown-header-color: #6c757d;
  --dropdown-header-padding-x: 1rem;
  --dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: var(--dropdown-min-width);
  padding: var(--dropdown-padding-y) var(--dropdown-padding-x);
  margin: 0;
  font-size: var(--dropdown-font-size);
  color: var(--dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--dropdown-bg);
  background-clip: padding-box;
  border: var(--dropdown-border-width) solid var(--dropdown-border-color);
  border-radius: var(--dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--dropdown-spacer);
}

.dropdown-menu-start {
  --position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-end {
    --position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-end {
    --position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-end {
    --position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-end {
    --position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-end {
    --position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--dropdown-item-padding-y) var(--dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--dropdown-link-hover-color);
  background-color: var(--dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--dropdown-header-padding-y) var(--dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--dropdown-item-padding-y) var(--dropdown-item-padding-x);
  color: var(--dropdown-link-color);
}

.dropdown-menu-dark {
  --dropdown-color: #dee2e6;
  --dropdown-bg: #343a40;
  --dropdown-border-color: var(--border-color-translucent);
  /*--dropdown-box-shadow: ;*/
  --dropdown-link-color: #dee2e6;
  --dropdown-link-hover-color: #fff;
  --dropdown-divider-bg: var(--border-color-translucent);
  --dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --dropdown-link-active-color: #fff;
  --dropdown-link-active-bg: #0d6efd;
  --dropdown-link-disabled-color: #adb5bd;
  --dropdown-header-color: #adb5bd;
}




.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: 0.375rem;
}
.form-control-color::-webkit-color-swatch {
  border-radius: 0.375rem;
}
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #282830;
  border-color: #282830;
}
.layout-lfs .form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #282830;
  border-color: #282830;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.layout-lfs .form-check-input[type=checkbox]:indeterminate {
    background-color: #000;
    border-color: #000;
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: 1px 0;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.form-floating):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.375rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.375rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #282830;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.layout-lfs .btn {
    --bs-btn-color: #000;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check:focus + .btn, .btn:focus {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, .btn-check:active + .btn, .btn:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus, .btn-check:active + .btn:focus, .btn:active:focus, .btn.active:focus, .btn.show:focus {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #282830;
  --bs-btn-border-color: #282830;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #484850;
  --bs-btn-hover-border-color: #484850;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #484850;
  --bs-btn-active-border-color: #484850;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #999;
  --bs-btn-disabled-bg: #282830;
  --bs-btn-disabled-border-color: #282830;
}

.layout-lfs .btn-primary {
    --bs-btn-bg: #000;
    --bs-btn-border-color: #000; 
    --bs-btn-hover-bg: #222;
    --bs-btn-hover-border-color: #222;
    --bs-btn-active-bg: #222;
    --bs-btn-active-border-color: #222;
    --bs-btn-disabled-color: #999;
    --bs-btn-disabled-bg: #222;
    --bs-btn-disabled-border-color: #222;
    
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: 0.5rem;
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: 0.25rem;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}




  

.logo {
    width:687px;
	max-width:100%;
	height:68px;
    margin-top:40px;
    margin-bottom:40px;    
}
.layout-tfs .logo {
    width:247px;
	max-width:100%;
	height:39px;
    margin-top:40px;
    margin-bottom:80px;
}

.layout-lfs .logo {
    width:263px;
	max-width:100%;
	height:28px;
    margin-top:40px;
    margin-bottom:89px;
}

.logo img {
	max-width:95%;
    height:auto;
}

.layout-lfs .logo img {
    margin-top:8px;
    max-width:90%;
}

@media (min-width: 1200px) {
    .logo {
        height:68px;
        margin-top:67.15px;
        margin-bottom:56.12px;
    }
    
    .logo img {
        max-width:100%;
        height:auto;
    }
    .layout-lfs .logo img {
        max-width:100%;
        margin-top:0;
    }
    
    .layout-tfs .logo {
        width:272px;
        height:43px;
        margin-top:84px;
        margin-bottom:63px;
    }
	
	.layout-lfs .logo {
        width:385px;
        height:38px;
        margin-top:14px !important;
        margin-bottom:63px;
        max-width:80%;
    }
}

footer {
    background-color:#282830;
    color:#fff;
    font-size:11.25pt;
    padding-top:36px;
    padding-bottom:106px;
	margin-top:25px;
	text-align:center;
}

.layout-lfs footer {
    background-color:#000;
}


.logo-footer {
	margin-bottom:20px;
}

.menu-service-left {
	font-size:19px;
	line-height:38px;
	margin-bottom:20px;
}

@media (min-width: 576px) {
	footer {
		text-align:left;
	}
	.menu-service-left {		
		margin-bottom:0;
	}
}

@media (min-width: 1200px) {
	footer {
		margin-top:115px;	
		margin-bottom:36px;
	}	
	.logo-footer {
		margin-bottom:30px;
	}
	.menu-service-left {
		font-size:15px;
		line-height:23px;
	}
}

.logo-footer {
    width:100%;    
}

.logo-footer img {
    max-width:100%;
    height:auto;
}

@media (min-width: 1200px) {
    footer {
        padding-top:100px;
        padding-bottom:100px;
    }
    .logo-footer {
        width:430px;        
    }
}

h1 {
	font-family: "Toyota Type",arial,helvetica,sans-serif;
	font-size:26px;
	line-height:29px;
	font-weight:normal;
}
h1::after {
	content: "";
	margin-top:20px;
	margin-bottom:60px;
	height:2px;
	width:80px;
	background-color:#ff0022;
	display:block;	
}

.layout-lfs h1 {
	font-family: "Nobel",arial,helvetica,sans-serif;
	font-size:26px;
	line-height:29px;
	margin-bottom:42px;
	text-transform: uppercase;
	
}

.layout-lfs h1::after {
	content: "";
	margin-top:0px;
	margin-bottom:0px;
	height:0;
	width:0;
	background-color:transparent;
	display:none;	
}

h2 {
	font-family: "Toyota Type",arial,helvetica,sans-serif;
	font-size:24px;
	line-height:27px;
	font-weight:normal;
}
.layout-lfs h2 {
	font-family: "Nobel",arial,helvetica,sans-serif;
	font-size:24px;
	line-height:27px;
	text-transform: uppercase;
	font-weight:normal;
	margin-bottom:30px;
}
h2::after {
	content: "";
	margin-top:20px;
	margin-bottom:60px;
	height:2px;
	width:80px;
	background-color:#ff0022;
	display:block;	
}
.layout-lfs h2::after {
	content: "";
	margin-top:0;
	margin-bottom:0;
	height:0;
	width:0;
	background-color:transparent;
	display:none;	
}

h3 {
	font-family: "Toyota Type",arial,helvetica,sans-serif;
    font-size:22px;
    line-height:26px;
    margin-bottom:7px;
    font-weight:normal;
    margin-top:0;
}
.layout-lfs h3 {
	font-family: "Nobel",arial,helvetica,sans-serif;
    font-size:22px;
    line-height:26px;
    margin-bottom:6px;
    font-weight:normal;
	text-transform: uppercase;
}

@media (min-width: 1200px) {
	h1 {
		font-size:35px;
		line-height:49px;
	}
	.layout-lfs h1 {
		font-size:35px;
		line-height:49px;
		text-transform: uppercase;
	}
	
	h1::after {
		height:5px;
		width:124px;
	}
	.layout-lfs h1::after {
		height:0;
		width:0;
	}
    h2 {
		font-size:30px;
		line-height:35px;
	}
	.layout-lfs h2 {		
		font-size:30px;
		line-height:35px;
	}
	h2::after {
		height:5px;
		width:124px;
	}
	.layout-lfs h2::after {
		height:0;
		width:0;
	}
    h3 {
        font-size:30px;
        line-height:35px;
        margin-bottom:19px;
    }
	.layout-lfs h3 {
        font-size:30px;
        line-height:35px;
        margin-bottom:20px;
    }
}


b, strong {
	font-weight:700;
}

nav ul {
    list-style: none;
    padding:0;
    margin:0;
}

nav ul li a {
    text-decoration:none;
}

footer nav a {
    color: #fff;
    
}

.mece-image {
	position:relative;	
}

.mece-image.layout-0 img {	
	max-width:100%;
	height:auto;
}

.mece-image.layout-1 img,
.mece-image.layout-2 img {
	margin-top:27px;
	max-width:100%;
	height:auto;
}

.mece-image.layout-3 img {	
	max-width:100%;
	height:auto;
}

.mece-image.layout-1 .caption,
.mece-image.layout-2 .caption {
	width:90%;	
	height:54px;	
	position:absolute;
	top:0;
	right:50%;		
}

.mece-image.layout-1 .caption:hover,
.mece-image.layout-1 .caption:focus {
	filter: invert(10%);     
}
.mece-image.layout-2 .caption:hover,
.mece-image.layout-2 .caption:focus {
	filter: invert(20%);     
}

.mece-image.layout-3 .caption {
    background-color:#EFF0F0;
	padding:30px;
    font-size:14px;
    line-height:18px;
    color:#282830;    
}

.layout-lfs .mece-image.layout-3 .caption {
    background-color:#000;
	padding:30px;
    font-size:16px;
    line-height:18px;
    color:#fff;    
}

.mece-image.layout-3 .caption .text {
    overflow:hidden;
    /*height:7em;*/
	/*height:98px;*/
	height:127px;
	white-space:normal;
	text-overflow: ellipsis;
}

.mece-image.layout-3 .caption ul {
    padding-left:1.5em;
    margin-top: 0;    
}

.mece-image.layout-1 .caption a,
.mece-image.layout-2 .caption a {
	display:block;
	position:relative;
	right:-50%;
	background-color: #a3a2a2;
	color:#fff;
	/*font-size:21px;*/
	font-size:17px;
	line-height:51px;
    padding--bottom:3px;
	padding-right:55px;
	padding-left:15px;
	text-decoration:none;
	height:54px;
	width:100%;
    background-image:url(../Images/Pfeil_weiss.svg);
    background-repeat:no-repeat;
    background-size:25px 14px;
    background-position: right 15px center; 
}

.mece-image.layout-1 .caption:hover a,
.mece-image.layout-1 .caption:focus a,
.mece-image.layout-2 .caption:hover a,
.mece-image.layout-2 .caption:focus a {
    background-position: right 10px center; 
}

@media (min-width: 576px) {
	.mece-image.layout-1 .caption,
	.mece-image.layout-2 .caption {
		width:60%;	
	}
	
	.mece-image.layout-1 .caption a,
	.mece-image.layout-2 .caption a {
		font-size:21px;
	}
}

@media (min-width: 768px) {
	.mece-image.layout-1 .caption,
	.mece-image.layout-2 .caption {
		width:45%;	
	}
}

@media (min-width: 992px) {
	.mece-image.layout-1 .caption,
	.mece-image.layout-2 .caption {
		width:35%;	
	}
}

@media (min-width: 1200px) {
	.mece-image.layout-1 .caption,
	.mece-image.layout-2 .caption {
		width:70%;	
	}
	
	.mece-image.layout-1 .caption a,
	.mece-image.layout-2 .caption a {
		font-size:21px;
	}
}
@media (min-width: 1480px) {
	.mece-image.layout-1 .caption,
	.mece-image.layout-2 .caption {
		width:55%;	
	}
	
	.mece-image.layout-1 .caption a,
	.mece-image.layout-2 .caption a {
		font-size:20px;
	}
}


.layout-lfs .mece-image.layout-1 .caption a,
.layout-lfs .mece-image.layout-2 .caption a {	
	background-color: #fff;
	color:#000;
	font-size:21px;
	line-height:51px;
    padding--bottom:3px;
	padding-right:55px;
	padding-left:15px;
	text-decoration:none;
	height:54px;
	width:100%;
    background-image:url(../Images/Pfeil_schwarz.svg);
    background-repeat:no-repeat;
    background-size:25px 14px;
    background-position: right 15px center; 
}

.mece-image.layout-2 .caption a {
	background-color:#000;
}

.layout-lfs .mece-image.layout-2 .caption a {
	background-color:#fff;
}

.mece-image.layout-3 .caption a.link {    
	display:block;
    background-color:#fff;
    color:#282830;
    /*font-size:20px;*/
	font-size:18px;
    line-height:32px;
    padding-bottom:3px;
    height:47px;
    padding: 6px 57px 6px 18px;
    overflow:hidden;
    text-decoration:none;
    width:60%;
    margin-bottom:-17px;
    z-index:1000;
    position:absolute;
    /*top:135px;*/
	top:165px;
    margin-left:calc(20% - 30px);   
    background-image:url(../Images/Pfeil_schwarz.svg);
    background-repeat:no-repeat;
    background-size:21px 12px;
    background-position: right 18px center; 
}

.layout-lfs .mece-image.layout-3 .caption a.link {
	font-family: "Nobel",arial,helvetica,sans-serif;
    padding-bottom:6px;
    line-height:35px;
}


.mece-image.layout-3 .caption a.link:hover,
.mece-image.layout-3 .caption a.link:focus {
	filter: invert(10%);
    background-position: right 13px center; 

}

@media (min-width: 576px) {
	.mece-image.layout-3 .caption a.link {
		font-size:20px;
		top:135px;
        width:40%;
        margin-left:calc(30% - 30px);   
	}
	.mece-image.layout-3 .caption .text {				
		height:98px;
		/*height:128px;*/
	}
}

@media (min-width: 768px) {
   .mece-image.layout-3 .caption a.link {
       width:30%;
       margin-left:calc(35% - 30px);   
   }
}

@media (min-width: 992px) {
   .mece-image.layout-3 .caption a.link {
       width:25%;
       margin-left:calc(37.5% - 30px);   
   }
}

@media (min-width: 1200px) {
	.mece-image.layout-1 img,
    .mece-image.layout-2 img {
		margin-top:0px;		
		margin-bottom:32px;
	}

	.mece-image.layout-1 .caption,
    .mece-image.layout-2 .caption {		
		height:70px;
		bottom:0;
		top:auto;
	}
    
    .mece-image.layout-3 {
        padding-bottom:320px;
    }
    
    .mece-image.layout-3 .caption {        
        padding:30px 40px;
        font-size:16px;
        line-height:23px;
        position:absolute;
        margin-top:220px;
        width:90%;
        margin-left:5%;
        padding-bottom:0;        
    }
	.layout-lfs .mece-image.layout-3 .caption {        
        padding:30px 40px;
        font-size:16px;
        line-height:23px;
        position:absolute;
        margin-top:250px;
        width:90%;
        margin-left:5%;
        padding-bottom:0;        
    }
    .mece-image.layout-3 .caption .text {
        height:450px;
    }
    .mece-image.layout-3 .caption a.link {
        display:block;
        background-color:#fff;
        color:#282830;
        font-size:23px;
        line-height:37px;       
        height:53px;
        padding: 5px 59px 9px 18px;
        text-decoration:none;
        width:50%;
        margin-bottom:-17px;
        z-index:1000;
        position:absolute;
        top:auto;
        bottom:40px;
        right:30px;
        margin-left:20%;   
        background-image:url(../Images/Pfeil_schwarz.svg);
        background-repeat:no-repeat;
        background-size:23px 13px;
        background-position: right 18px center; 
    }
    
    .layout-lfs .mece-image.layout-3 .caption a.link {
        padding-bottom:4px;
        line-height:44px;
    }
    
    .mece-image.layout-3 .caption a.link:hover,
    .mece-image.layout-3 .caption a.link:focus {
        filter: invert(10%);
        background-position: right 13px center; 

    }
    
    

	.mece-image.layout-1 .caption a,
    .mece-image.layout-2 .caption a{		
		
		line-height:57px;
        padding-bottom:6px;
		padding-right:80px;
		padding-left:30px;
		text-decoration:none;
		height:63px;		
        background-image:url(../Images/Pfeil_weiss.svg);
        background-repeat:no-repeat;
        background-size:38px 21px;
        background-position: right 30px center; 
	}
    
    .mece-image.layout-1 .caption:hover a,
    .mece-image.layout-1 .caption:focus a,
    .mece-image.layout-2 .caption:hover a,
    .mece-image.layout-2 .caption:focus a {
        background-position: right 25px center; 
    }
	
	.layout-lfs .mece-image.layout-1 .caption a,
    .layout-lfs .mece-image.layout-2 .caption a{		
		font-size:32px;
		line-height:78px;
        padding-bottom:3px;
		padding-right:80px;
		padding-left:30px;
		text-decoration:none;
		height:81px;		
        background-image:url(../Images/Pfeil_schwarz.svg);
        background-repeat:no-repeat;
        background-size:38px 21px;
        background-position: right 30px center; 
	}
    
    .layout-lfs .mece-image.layout-1 .caption:hover a,
    .layout-lfs .mece-image.layout-1 .caption:focus a,
    .layout-lfs .mece-image.layout-2 .caption:hover a,
    .layout-lfs .mece-image.layout-2 .caption:focus a {
        background-position: right 25px center; 
    }
    
    
}

@media (min-width: 1480px) {
	.mece-image.layout-3 {
        padding-bottom:230px;
    }
    
    .mece-image.layout-3 .caption {        
        padding:30px 40px;
        font-size:16px;
        line-height:23px;
        position:absolute;
        margin-top:280px;
        width:90%;
        margin-left:5%;
        padding-bottom:0px;        
    }
	.layout-lfs .mece-image.layout-3 .caption {        
        padding:30px 40px;
        font-size:16px;
        line-height:23px;
        position:absolute;
        margin-top:280px;
        width:90%;
        margin-left:5%;
        padding-bottom:0px;        
    }
    
    .mece-image.layout-3 .caption a.link {
        width:40%;
    }
    
    .mece-image.layout-3 .caption .text {
        height:400px;
    }
	
	.layout-lfs .mece-image.layout-3 .caption .text {
		height:400px;
	}
	
}

.frame-default{
	margin-bottom:45px;
}

.frame.frame-space-after-large {
	margin-bottom:125px;
}

.mec-2cols.layout-3 {
    color:#fff;
    padding:20px 20px;
    background-size:cover;
    
}
.mec-2cols.layout-3 h2 {
    margin-top:0;
    font-family: "Toyota Type Book",arial,helvetica,sans-serif; 
    font-size:26px;
}
.mec-2cols.layout-3 h2::after {
    display:none;
}

.mec-2cols.layout-3 h3 {    
    font-family: "Toyota Type Book",arial,helvetica,sans-serif; 
    font-size:22px;
}

.mec-2cols.layout-3 ul {
    list-style:none;
    padding:0;
}
.mec-2cols.layout-3 ul li {
    background-image:url(/typo3conf/ext/me_tfs_template/Resources/Public/Images/li-pointer.svg);
    background-repeat:no-repeat;
    background-position: left center;
    padding-left:30px;    
    margin-bottom:1em;
}

.mec-2cols.layout-3 ul li:before {
    display:none;
}


p a {	
    color:#ff0022;    
}
.layout-lfs p a {
	color:#20365C;
}


.mec-2cols.layout-3 a.mebtn {
    display:inline-block;
    padding:20px 20px;
    border: 2px solid #fff;
    color:#fff;
    font-size:18px;
    text-decoration:none;    
    display:inline-block;
    margin:16px auto 0 auto;
    width:auto;    
}


@media (min-width: 1200px) {
    .mec-2cols.layout-3 {        
        padding:60px 40px;
    }
    .mec-2cols.layout-3 .mec-2cols-col2 {
        text-align:right;
        display:flex;
        align-items: center;
        justify-content: right;
    }
    .mec-2cols.layout-3 h2 {
        font-size:48px;
        margin-bottom:0;
    }
    .mec-2cols.layout-3 h3 {
        font-size:40px;
        line-height:45px;
        margin-bottom:30px;
    }
    .mec-2cols.layout-3 a.mebtn {        
        padding:20px 60px;
        border: 4px solid #fff;        
        font-size:25px;        
        margin-top:30px;
        margin:30px 0 0 0;
    }
}


@media (min-width: 1200px) {
	.frame.frame-space-after-large {
		margin-bottom:200px;
	}
	
	.mec-2cols.layout-1 .mec-2cols-col2 {
		padding-left:5%;
	}
	
}

.page-switcher {
    position:fixed;   
    bottom:0px;
    right:0px;           
       
}
.page-switcher a {
    display:block;
    background-color:#000;
    color:#fff;
    height:70px;
    /*width:434px;*/
    padding: 10px 5px 10px 5px;
    overflow:hidden;
    width:70px;  
    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
    
}

.layout-lfs .page-switcher a {
    display:block;
    background-color:#A3A2A2;
    color:#fff;
    height:70px;
    /*width:434px;*/
    padding: 10px 5px 10px 5px;
    overflow:hidden;
    width:70px;  
    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
    
}

.page-switcher a:hover,
.page-switcher a:focus {
    width:434px;
    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

.layout-lfs .page-switcher a:hover,
.layout-lfs .page-switcher a:focus {
    width:378px;
    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}


.page-switcher a img.nav-logo-hover {
    width:340px;
    height:auto;
    display:none;
	margin-top:-5px;
	margin-left:-10px;
	
}

.page-switcher a img.nav-logo {
    width:41px;
    height:auto;
    display:inline-block;
    margin-left:10px;
    margin-top:10px;
    
}
.layout-lfs .page-switcher a img.nav-logo {
    width:46px;
    height:auto;
    display:inline-block;
    margin-left:7px;
    margin-top:10px;
    
}

.page-switcher a:hover::after,
.page-switcher a:focus::after {
	background-image:url(../Images/Pfeil_weiss.svg);
	background-repeat:no-repeat;
	background-size: 25px 14px;
	background-position: right 0px center;
	margin-right:27px;
	content: "";
	display:block;
	width:25px;
	height:50px;
	float:right;
	

	
}

.page-switcher a:hover img.nav-logo,
.page-switcher a:focus img.nav-logo {        
    display:none;
}


.page-switcher a:hover img.nav-logo-hover,
.page-switcher a:focus img.nav-logo-hover {    
    display:inline-block;
}

.layout-lfs .page-switcher a:hover img.nav-logo-hover,
.layout-lfs .page-switcher a:focus img.nav-logo-hover {    
    display:inline-block;
	height:36px;
	width:auto;
	margin-left:5px;
	margin-top:8px;
	
}

.page-switcher a img {
    display: inline-block;
    vertical-align: middle;
}
.page-switcher a img.pointer {
    width:25px;
    height:auto;
    margin-left:20px;
    display:none;
}
.page-switcher a:hover img.pointer,
.page-switcher a:focus img.pointer{    
    display:inline-block;
}

.page-switcher a {
    text-decoration:none;
}

@media (min-width: 1200px) {
    .page-switcher {        
        bottom:auto;
        top:120px;
        right:0; 
    }
	
	.layout-lfs .page-switcher {
		top:120px;
	}				
}

.mec-2cols.layout-2 .row {
    --gutter-x: 6px;
}

.header-image {
    min-height:200px;
    text-align: center;
    overflow:hidden;
    width:100%;
}

.header-image img {
    position:relative;
    height:200px;
    width:auto;
    left:100%;
    margin-left:-200%;
    
}

@media (min-width: 768px) {
    .header-image img {
        max-width:100%;
        height:auto;
        width:auto;
        left:auto;
        margin-left:0;

    }
}

@media (min-width: 1200px){
	.header-image {
		margin-bottom:135px;
	}
}

.lottie::before {
    float: left;
    padding-top: 56.25%;
    content: "";
}

.mec-6elements .row {
    --gutter-x:6px;
    --gutter-y:6px;
}

.mec-6elements > .row > div {
    display:flex;
}

.frame-type-mece_card {
    display:flex;
	width:100%;
	height:100%;
}
.card.mece-card {
    --card-border-radius: 0;
    --card-border-width: 0;
    --card-inner-border-radius: 0;
    --card-color: #494950;
    --card-bg: #EFF0F0;
    --card-spacer-x: 9px;
    --card-spacer-y:15px;       
    width:100%;
}

.layout-lfs .card.mece-card {    
    --card-color: #000;
    --card-bg: #B9C0C2;    
}

.card.mece-card .card-image {
    height:67px;
    width:73px;
    margin-top:23px;
    align-self: center;
}

.card.mece-card .card-body {
    text-align:left;
    font-size:14px;
    line-height:17px;
}

.layout-lfs .card.mece-card .card-body {
		font-size:16px;
		line-height:18px;
}

@media (min-width: 768px) {
	.mec-6elements .card-text {
		padding:0 22%;
	}
}

@media (min-width: 882px) {
	.mec-6elements .card-text {
		padding:0 30%;
	}
}

@media (min-width: 1200px) {
	.mec-6elements .card-text {
		padding:0;
	}
    .mec-6elements .row {
        --gutter-x:38px;
        --gutter-y:38px;
    }
    .card.mece-card {        
        --card-spacer-x: 40px;
        --card-spacer-y:40px;        
    }
    .card.mece-card .card-image {
        height:169px;
        width:185px;
        margin-top:57px;        
    }
    .card.mece-card .card-body {        
        font-size:18px;
        line-height:25px;
    }
	.layout-lfs .card.mece-card .card-body {        
		font-size:18px;
        line-height:25px;
	}
}

ul.contentList {
     padding-left: 1em;
     margin-top: 0;
} 

.lottie-wrap,
.mece-lottie {
	position:relative;
	height:0;
}

.lottie-wrap.sv-834x739,
.mece-lottie.sv-834x739 {
	padding-top:88.61%;	
}
.lottie-wrap.sv-1480x520,
.mece-lottie.sv-1480x520 {
	padding-top:35.14%;	
}
.lottie-wrap .lottie,
.mece-lottie .lottie {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.mece-imagetext img {
	width:60px;
	height:auto;
	float:left;	
}
.mece-imagetext .caption{
	/*
    font-size:18px;
	line-height:25px;
    */
	margin-left:90px;
}



.layout-lfs .mece-imagetext .caption {
    /*
    font-size:20px;
	line-height:25px;
    */
}

@media (min-width: 1200px) {
    .mece-imagetext img {
        width:70px;
        height:auto;
        float:left;	
    }
    .mece-imagetext .caption{
        /*
        font-size:18px;
        line-height:25px;
        */
        margin-left:100px;
    }

    
    .mece-imagetext .caption{
        font-size:18px;
        line-height:25px;        
    }

    .layout-lfs .mece-imagetext .caption {
        font-size:20px;
        line-height:25px;
    }    
}

.frame-type-text.frame-layout-1 {
		font-size: 16px;
		line-height:21px;
		color:#fff;
		background-color:#707070;
		padding: 18px 24px;
}

.layout-lfs .frame-type-text.frame-layout-1 {
	font-size: 20px;
	line-height:27px;
	color:#000;
	background-color:#B9C0C2;
}

.frame-type-text.frame-8 {
	/* graue Box */
	background-color:#EFF0F0;
	padding: 35px 17px;
	font-family: "Toyota Type Book",arial,helvetica,sans-serif; 
	font-size:16px;
	line-height:20px;
}

.frame-type-text.frame-8.frame-space-after-extra-small {
	padding: 17px 17px;
}
.frame-type-text.frame-8.frame-space-after-extra-small > p {
	margin:0;
}

.frame-type-text.frame-8 h2 {
	margin-top:0;
	margin-bottom:30px;
}
.frame-type-text.frame-8 h2::after {	
	display:none;	
}
.frame-type-text.frame-8 a {
	color:#FF0022;
}

.frame-type-bullets.frame-6 {
	background-color:#EFF0F0;
	padding: 35px 17px;
	font-family: "Toyota Type Book",arial,helvetica,sans-serif; 
	font-size:16px;
	line-height:20px;
}

.layout-lfs .frame-type-text.frame-8 {
	background-color:#B9C0C2;
	padding: 35px 17px;
	font-family: "Nobel",arial,helvetica,sans-serif; 
	font-size:20px;
	line-height:25px;		
}

.layout-lfs .frame-type-bullets.frame-6 {
	background-color:#B9C0C2;
	padding: 35px 17px;
	font-family: "Nobel",arial,helvetica,sans-serif; 
	font-size:20px;
	line-height:25px;		
}

.frame-type-bullets ul {
	margin:0;
	padding:0 0 0 1em;
	list-style:none;
}

.frame-type-bullets ul li {
	margin-bottom:0.8em;
}

.frame-type-bullets ul li:before {
	content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: inherit; /* Change the color */
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 1em; /* Also needed for space (tweak if needed) */
	margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.layout-lfs .frame-type-bullets ul li:before {	
	color: #000; /* Change the color */	
}

ul.contentList {
    margin:0;
	padding:0 0 0 1em;
	list-style:none; 
}
ul.contentList li {
	margin-bottom:0.8em;
}
ul.contentList li:before {
	content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: inherit; /* Change the color */
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 1em; /* Also needed for space (tweak if needed) */
	margin-left: -1em; /* Also needed for space (tweak if needed) */
}



@media (min-width: 1200px) {
	.frame-type-text.frame-8 {
		padding: 63px 39px;
		font-size:20px;
		line-height:27px;		
	}
	
	.frame-type-text.frame-8.frame-space-after-extra-small {
		padding: 39px 39px;
	}
	
	.frame-type-text.frame-8 h2 {
		margin-bottom:50px;
	}
	.layout-lfs .frame-type-text.frame-8 {
		padding: 63px 39px;
		font-size:25px;
		line-height:27px;		
	}
	
	.frame-type-bullets.frame-6 {		
		padding: 63px 39px;
		font-size:20px;
		line-height:27px;
		max-width:85%;
	}
	.layout-lfs .frame-type-bullets.frame-6 {				
		padding: 63px 39px;
		font-size:25px;
		line-height:27px;
		max-width:85%;
	}
}

.mec-accordion .accordion-item {
	padding:15px 0 15px 0;
	border-top:1px solid #707070;
	/*
    font-size:16px;
	line-height:20px;
    */
}

.layout-lfs .mec-accordion .accordion-item {
	/*
    font-size:20px;
	line-height:25px;
    */
}

.mec-accordion .accordion-item ul {
	margin:0;
	padding:0 0 0 1em;
	list-style:none;
}

.mec-accordion .accordion-item li {
    margin-bottom:0.8em;
}
.mec-accordion .accordion-item li:before {
	content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	/*color: #FF0022;*/ /* Change the color */
    color: inherit;
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 1em; /* Also needed for space (tweak if needed) */
	margin-left: -1em; /* Also needed for space (tweak if needed) */    
}

.layout-lfs .mec-accordion .accordion-item li:before {	
	color: #000; /* Change the color */	
}

.mec-accordion .accordion-item:last-child {
	border-bottom:1px solid #707070;
}

.mec-accordion .accordion-item .accordion-body > .frame > h3,
.mec-accordion .accordion-item > h3{
	font-size:16px;
	line-height:20px;
	font-weight:normal;
	padding-right:55px;	
	margin:0;
    position:relative;
}
.mec-accordion .accordion-item .accordion-body > .frame > h3:before,
.mec-accordion .accordion-item > h3:before{
    background-image: url(../Images/Pfeil_Toggle_grau_toyota.svg);
    background-repeat:no-repeat;
    background-size: 15px 10px;
    background-position: right center;  
    content:'';
    width:15px;
    height:100%;
    position:absolute;
    right:15px;
}
.mec-accordion .accordion-item .accordion-body > .frame >  h3.collapsed:before,
.mec-accordion .accordion-item > h3.collapsed:before{
    transform:scaleY(1);
    transition:transform 300ms ease-in-out;
}
.mec-accordion .accordion-item .accordion-body > .frame >  h3:before,
.mec-accordion .accordion-item h3:before{
    transform:scaleY(-1);
    transition:transform 300ms ease-in-out; 
}


.layout-lfs .mec-accordion .accordion-item .accordion-body > .frame >  h3,
.layout-lfs .mec-accordion .accordion-item >  h3
{
	font-size:20px;
	line-height:25px;
    text-transform:none;
}

.mec-accordion .accordion-collapse.show {
		margin-top:15px;
	}


@media (min-width: 1200px) {
	.mec-accordion .accordion-item {
		padding:33px 0 33px 0;		
		font-size:18px;
		line-height:26px;
	}
	
	.layout-lfs .mec-accordion .accordion-item {
		font-size:18px;
		line-height:26px;
	}

	.mec-accordion .accordion-item .accordion-body > .frame >  h3,
    .mec-accordion .accordion-item >  h3{
		font-size:20px;
		line-height:29px;				
		padding-right:145px;				
		
	}
    
    .mec-accordion .accordion-item .accordion-body > .frame >  h3:before,
    .mec-accordion .accordion-item >  h3:before{
        background-size: 25px 17px;
		background-position: right center; 
        width:30px;
        right:30px;
    }
	
	.layout-lfs .mec-accordion .accordion-item .accordion-body > .frame >  h3,
    .layout-lfs .mec-accordion .accordion-item >  h3{
		font-size:20px;
		line-height:29px;
	}
	
	.mec-accordion .accordion-collapse.show {
		margin-top:33px;
	}
}

@media (max-width: 1199px) {
    .mec-tabs > .tab-content > .tab-pane:first-child {
        display:none !important;
    }
    .mec-tabs > .tab-content > .tab-pane:last-child {
        display:block !important;
        opacity: 1;
    }
}

.mec-tabs > .nav-tabs > .row > .nav-item > a.nav-link {
    font-size: 20px;
    outline: 0 none;
    cursor:pointer;
}

.layout-lfs .mec-tabs > .nav-tabs > .row > .nav-item > a.nav-link { 
	font-size: 20px;
	line-height:33px;
}

.mec-tabs > .nav-tabs {
	margin-bottom:54px;
}

.mec-tabs > .nav-tabs > .row > .nav-item > a.nav-link.active {
   font-weight: 600; 
   outline: 0 none;
   
}

.mec-table .mec-table-header .dropdown-toggle:after {
    display:none;
}
.mec-table .mec-table-header {
    position:relative;
    
}
.mec-table .mec-table-header .dropdown-toggle {
    position:absolute;
    right:30px;
    top:0;
    height:100%;
    width:30px;    
    background-repeat: no-repeat;
    background-size: 20px 30px;
    background-position: right center;    
    background-image: url(../Images/Pfeil_Toggle_grau_toyota.svg);
    transform:scaleY(-1);
    transition:transform 300ms ease-in-out;    
}
.mec-table .mec-table-header .dropdown-toggle.collapsed {
    transform:scaleY(1);
    
}

.mec-table .mec-table-header {
    background-color:#EFF0F0;    
}

@media screen and (min-width: 1200px) { /* screen: safari fix */
	.mec-table h3 {
        font-size:15px;
		line-height:20px;
        text-transform: uppercase;
        margin:0;
    }
    .layout-lfs .mec-table h3 {
		font-size:16px;
		line-height:20px;
        text-transform: uppercase;  
        margin:0;
	}
    	
	.mec-table  .row {
		--gutter-x: 60px;		        
	}
    .mec-table > div > div > .row > div {
        border-bottom:1px solid #A3A2A2;
    }
    
    .mec-table.layout-4 > div > div > .row > div {
        border-bottom:0px none;
    }
    .mec-table.layout-4 > div > div > .row > div > .row > div {
        border-bottom:1px solid #A3A2A2;
    }
	
	.mec-table.layout-8 > div > div > .row > div {
        border-bottom:0px none;
    }
    .mec-table.layout-8 > div > div > .row > div > .row > div {
        border-bottom:0px none;
		border-top:1px solid #A3A2A2;
    }
	.mec-table.layout-8 > div > div > .row:last-child > div {
        border-bottom:1px solid #A3A2A2;
    }
	
	.mec-table.layout-9 > div > div > .row > div {
        border-bottom:0px none;
    }
    .mec-table.layout-9 > div > div > .row > div {
        border-bottom:0px none;
		border-top:1px solid #A3A2A2;
    }
	.mec-table.layout-9 > div > div > .row:last-child > div {
        border-bottom:1px solid #A3A2A2;
    }
    
    
    
    .mec-table > div > div >  .row-header > div > h3 {
        font-size:35px;
        font-weight: normal;        
        margin:0;
		color:#494950;
    }
    .mec-table > div > div >  .row-header > div:first-child {        
		padding-top:25px;
		padding-bottom:25px;
    }
    .mec-table > div > div > .row > div > div.frame-default {
        margin:0;
    }
    .mec-table > div > div > .row > div p {
        margin: 0;
    }
    .mec-table > div > div > .row > div {
        font-size:16px;
        line-height: 21px;        
		padding-top:25px;
		padding-bottom:25px;
		display: flex; 
		/*justify-content: center; */
		align-items: center;
		
    }
    
	.mec-table.layout-4 > div > div > .row > div {
        display:block;
        align-items: unset;
        padding-top:0;
        padding-bottom:0;   
    }
    .mec-table.layout-4 > div > div > .row > div > .row {
        height:100%;
    }
    .mec-table.layout-4 > div > div > .row > div > .row > div {
        display:flex;
        align-items: center;        
        justify-content: center;
        border-left:1px solid #A3A2A2;
        padding-top:25px;
        padding-bottom:25px;        
    }    
    .mec-table.layout-4 > div > div > .row > div:last-child > .row > div:last-child {
        border-right:1px solid #A3A2A2;
    }
    .mec-table.layout-4 > div > div > .row > div:last-child {
        background-color:transparent;
    }
    
    .mec-table.layout-4 > div > div > .row > div:last-child {
        border-left: 0px none;
    }
    .mec-table.layout-4 > div > div > .row > div:last-child .row > div:nth-child(2){
        background-color:#EFF0F0;
    }
    .mec-table.layout-4 > div > div > .row > div:last-child .row > div:nth-child(3){
        background-color:#A3A2A2;
        color:#fff;
    }    
    .mec-table.layout-4 > div > div > .row > div:last-child .row > div:nth-child(4){
        background-color:#494950;
        color:#fff;
    }            
    .mec-table.layout-4 > div > div > .row > div:last-child > .row > div:nth-child(3){
        border-bottom:1px solid #fff;
    }
    .mec-table.layout-4 > div > div > .row > div:last-child > .row > div:nth-child(4){
        border-bottom:1px solid #fff;
    }
	
	
	
	
	.mec-table.layout-8 > div > div > .row > div {
        display:block;
        align-items: unset;
        padding-top:0;
        padding-bottom:0;   
    }
    .mec-table.layout-8 > div > div > .row > div > .row {
        height:100%;
    }
    .mec-table.layout-8 > div > div > .row > div > .row > div {
        display:flex;
        align-items: center;        
        justify-content: left;
        border-left:1px solid #A3A2A2;
        padding-top:25px;
        padding-bottom:25px;        
    }    
	.mec-table.layout-8 > div > div > .row > div > .row > div.border-mobile-only {
		border-top:0px none;
	}
	.mec-table.layout-8 > div > div > .row > div > .row > div.mobile-only {
		display:none;
	}
    .mec-table.layout-8 > div > div > .row > div:last-child > .row > div:last-child {
        border-right:0px none;
    }
	.mec-table.layout-8 > div > div > .row > div:last-child > .row > div:nth-child(4) {
        border-left:0px none;
    }
	.mec-table.layout-8 > div > div > .row > div:first-child > .row > div:first-child {
        border-left:0px none;
    }
    .mec-table.layout-8 > div > div > .row > div:last-child {
        background-color:transparent;
    }
    
    .mec-table.layout-8 > div > div > .row > div:last-child {
        border-left: 0px none;
    }
    .mec-table.layout-8 > div > div > .row > div:last-child .row > div:nth-child(2){
        background-color:transparent;
    }
    .mec-table.layout-8 > div > div > .row > div:last-child .row > div:nth-child(3){
        background-color:transparent;
    }    
    .mec-table.layout-8 > div > div > .row > div:last-child .row > div:nth-child(4){
        background-color:#EFF0F0;       
    } 
	
	
	.mec-table.layout-9 > div > div > .row > div {
        display:block;
        align-items: unset;
        padding-top:0;
        padding-bottom:0;   
    }
	/*
    .mec-table.layout-9 > div > div > .row > div > .row {
        height:100%;
    }
 */
    .mec-table.layout-9 > div > div > .row > div {
        display:flex;
        align-items: center;        
        justify-content: left;
        border-left:1px solid #A3A2A2;
        padding-top:25px;
        padding-bottom:25px;        
    }    
	.mec-table.layout-9 > div > div > .row > div.border-mobile-only {
		border-top:0px none;
	}
	.mec-table.layout-9 > div > div > .row > div.mobile-only {
		display:none;
	}
    .mec-table.layout-9 > div > div > .row > div:last-child {
        border-right:0px none;
    }
	.mec-table.layout-9 > div > div > .row >  div:nth-child(6) {
        border-left:0px none;
    }
	.mec-table.layout-9 > div > div > .row >  div:first-child {
        border-left:0px none;
    }
    .mec-table.layout-9 > div > div > .row > div:last-child {
        background-color:transparent;
    }
    
    .mec-table.layout-9 > div > div > .row > div:last-child {
        border-left: 0px none;
    }
	.mec-table.layout-9 > div > div > .row > div:nth-child(2){
        background-color:transparent;
    }
    .mec-table.layout-9 > div > div > .row > div:nth-child(3){
        background-color:transparent;
    }
    .mec-table.layout-9 > div > div > .row > div:nth-child(4){
        background-color:transparent;
    }    
    .mec-table.layout-9 > div > div > .row > div:nth-child(6){
        background-color:#EFF0F0;       
    } 
    
	
    
    
        
	.layout-lfs .mec-table > div > div > .row > div {
		font-size:16px;
		line-height:29px;
	}
    .mec-table > div > div > .row > div.col-header {
        /*padding: 25px 30px 25px 0;*/
    }
    .mec-table > div > div > .row > div:nth-child(2) {
        background-color:#EFF0F0;
    }
		
	
	.mec-table.layout-2 > div > div > .row > div:nth-child(2),
	.mec-table.layout-6 > div > div > .row > div:nth-child(2),
	.mec-table.layout-7 > div > div > .row > div:nth-child(2) {
        background-color:transparent;
    }
	
	.mec-table.layout-6 > div > div > .row > div,
	.mec-table.layout-6 > div > div > .row > div:nth-child(2) {
		background-color:#EFF1F1;
	}
	
	.mec-table.layout-7 > div > div > .row > div,
	.mec-table.layout-7 > div > div > .row > div:nth-child(2) {
		background-color:#282830;
		color:#fff;
	}
	
	
	
	.mec-table.layout-3 > div > div > .row > div:nth-child(2) {
        background-color:#EFF0F0;
    }
	.mec-table.layout-3 > div > div > .row > div:nth-child(3) {
        background-color:#494950;
		color:#fff;
    }
	.mec-table.layout-3 > div > div > .row > div:nth-child(3) img {
		filter: invert(100%);
	}
    
    
    .layout-lfs .mec-table.layout-3 > div > div > .row > div:nth-child(2) {
        background-color:#A3A2A2;
        border-bottom:1px solid #bab9b9;
        color:#fff;
    }
    .layout-lfs .mec-table.layout-3 > div > div > .row > div:nth-child(2) img {
       filter: invert(100%); 
    }
	.layout-lfs .mec-table.layout-3 > div > div > .row > div:nth-child(3) {
        background-color:#000;
		color:#fff;
    }
	
    
    
    .mec-table.layout-4 > div > div > .row.row-header > div {
        border-top:0px none;
    }    
    
    .mec-table.layout-4 > div > div > .row:first-child > div:first-child > .row > div {
        border-top:1px solid #A3A2A2;
    }
    .mec-table.layout-4 > div > div > .row:first-child > div:last-child > .row > div {
        border-top:1px solid #A3A2A2;
    }
	
    .mec-table.layout-4 > div > div > .row:first-child > div:last-child > .row > div:nth-child(3), 
    .mec-table.layout-4 > div > div > .row:first-child > div:last-child > .row > div:nth-child(4) {
        border-top:1px solid #fff;
    }
	
	.mec-table.layout-5 > div > div > .row > div:nth-child(2) {
		background-color: #494950;
		color:#fff;				
	}
	.mec-table.layout-5 > div > div > .row > div:nth-child(3) {
		background-color: #a2a1a1;				
		color:#fff;
		border-bottom:1px solid #bab9b9;
	}
	.mec-table.layout-5 > div > div > .row > div:nth-child(4) {
		background-color: #eff1f1;
		border-bottom: 1px solid #dcdddd;
	}
	
	.layout-lfs .mec-table.layout-5 > div > div > .row > div:nth-child(2) {
		background-color: #000000;
		color:#fff;				
	}
	.layout-lfs .mec-table.layout-5 > div > div > .row > div:nth-child(3) {
		background-color: #A3A2A2;				
		color:#fff;
		border-bottom:1px solid #bab9b9;
	}
	.layout-lfs .mec-table.layout-5 > div > div > .row > div:nth-child(4) {
		background-color: #ffffff;
		border-bottom: 1px solid #A3A2A2;
	}
	
	
    
    
    
    
    
    
	
	.layout-lfs .mec-table > div > div > .row > div:nth-child(2) {
        background-color:#B9C0C2;
    }
	.layout-lfs .mec-table.layout-2 > div > div > .row > div:nth-child(2),
	.layout-lfs .mec-table.layout-6 > div > div > .row > div:nth-child(2),
	.layout-lfs .mec-table.layout-7 > div > div > .row > div:nth-child(2) {
        background-color:transparent;
    }
	.layout-lfs .mec-table.layout-6 > div > div > .row > div,
	.layout-lfs .mec-table.layout-6 > div > div > .row > div:nth-child(2) {
		background-color:#A3A2A2;
		color:#fff;		
	}
	.layout-lfs .mec-table.layout-7 > div > div > .row > div,
	.layout-lfs .mec-table.layout-7 > div > div > .row > div:nth-child(2) {
		background-color:#000;
		color:#fff;		
	}
	
	
    .mec-table > div > div > .row > div:last-child {
        border-left: 1px solid #A3A2A2;
    }
	.mec-table.layout-2 > div > div > .row > div:last-child,
	.mec-table.layout-6 > div > div > .row > div:last-child,
	.mec-table.layout-7 > div > div > .row > div:last-child {
        border-left: 0px none;
    }
    .mec-table > div > div > .row > div img {
        display:block;
        margin: 0 auto;
    }
	.mec-table.layout-2 > div > div > .row > div img,
	.mec-table.layout-6 > div > div > .row > div img,
	.mec-table.layout-7 > div > div > .row > div img {        
        margin: 0;
    }
    .mec-table > div > div > .row > div.col-header h4 {
        font-size:15px;		
        line-height: 20px;
        font-weight: 600;
        margin:0;
		color:#494950;
    }
	.mec-table.layout-7 > div > div > .row > div.col-header h4 {
		color:#fff;
	}
	.layout-lfs .mec-table > div > div > .row > div.col-header h4 {
		font-size:16px;
		line-height:20px;
		font-family: "Nobel",arial,helvetica,sans-serif;
		font-weight:normal;
        color:#000;
	}
	.layout-lfs .mec-table.layout-6 > div > div > .row > div.col-header h4 {
		color:#fff;
	}
	.layout-lfs .mec-table.layout-6 > div > div > .row > div {
		border-bottom:1px solid #bab9b9;
	}
	.layout-lfs .mec-table.layout-7 > div > div > .row > div.col-header h4 {
		color:#fff;
	}
    .mec-table.layout-1 > div > div > .row > div {
        font-size:16px;
        line-height: 25px;
    }
	
	.mec-table .col-header > div,
	.mec-table .row-header > div {
		position:relative;
	}
	
	.mec-table .frame-7::after {
		content:'';
		width:90px;
		height:90px;
		background-image:url(../Images/Neu_ab_Q3_23.svg);
		background-size:90px 90px;
		background-repeat:no-repeat;	
		display:block;
		position:absolute;
		top:0;
		right:0;
		margin-top:-45px;
	}
	
	.layout-lfs .mec-table .frame-7::after {
		background-image:url(../Images/Neu_ab_Q3_Lexus.svg);
	}
	
	.mec-table .frame-6::after {
		content:'';
		width:45px;
		height:45px;
		background-image:url(../Images/Neu.svg);
		background-size:45px 45px;
		background-repeat:no-repeat;	
		display:block;
		position:absolute;
		top:50%;
		right:0;
		margin-top:-22px;
		margin-right:-41px;
	}
	
	.layout-lfs .mec-table .frame-6::after {
		background-image:url(../Images/Neu_Lexus.svg);
	}
    
    
}
.mec-table .dropdown {
	background-color:#EFF0F0;
	padding: 19px 30px;
	text-align:left;
	border-bottom:1px solid #A3A2A2;
}
.mec-table .dropdown .dropdown-toggle {
	font-size:18px;
	line-height: 22px;	
	color: #494950;
	text-decoration:none;
	width:100%;		
    display:block;
    max-width:100%;
    overflow:hidden;
}

.layout-lfs .dropdown .dropdown-toggle {
	font-family: "Nobel",arial,helvetica,sans-serif;
	font-size:18px;
	line-height: 22px;	
    color: #000;
}



.mec-table .dropdown .dropdown-toggle::after {
    display:none;
}

.mec-table .dropdown .dropdown-toggle::before {
    content:'';
	position:absolute;
    top:0;
    right:30px;
    height:100%;		
	width:30px;	
	background-image:url(../Images/Pfeil_Toggle_grau_toyota.svg);
	background-repeat:no-repeat;	
    background-position: right center;
}

.mec-table .dropdown .dropdown-toggle.show::before {
    transform:scaleY(-1);
    transition:transform 300ms ease-in-out;
}
.mec-table .dropdown .dropdown-toggle::before {
    transform:scaleY(1);
    transition:transform 300ms ease-in-out;
}

@media screen and (min-width: 1200px) {
    .mec-table .dropdown .dropdown-toggle {
        font-size:30px;
        line-height: 35px;	
    }
    .layout-lfs .dropdown .dropdown-toggle {
        font-size:30px;
        line-height: 35px;	
    }
    .mec-table .dropdown-menu {
        --dropdown-font-size: 30px;
    }
    
    .layout-lfs .mec-table .dropdown-menu .dropdown-item {
        font-family: "Nobel",arial,helvetica,sans-serif;
        font-size:30px;
        line-height: 35px;	
    }
}

.mec-table .dropdown-menu {
	--dropdown-min-width: 100%;
	--dropdown-padding-x: 0;
	--dropdown-padding-y: 0.5rem;
	--dropdown-spacer: 0.125rem;
	--dropdown-font-size: 16px;
	--dropdown-color: #494950;
	--dropdown-bg: #EFF0F0;
	--dropdown-border-color: #A3A2A2;
	--dropdown-border-radius: 0;
	--dropdown-border-width: 0;
	--dropdown-inner-border-radius: 0;
	--dropdown-divider-bg: #A3A2A2;
	--dropdown-divider-margin-y: 0.5rem;
	--dropdown-box-shadow: none;
	--dropdown-link-color: #494950;
	--dropdown-link-hover-color: #494950;
	--dropdown-link-hover-bg: #fff;
	--dropdown-link-active-color: #494950;
	--dropdown-link-active-bg: #fff;
	--dropdown-link-disabled-color: #adb5bd;
	--dropdown-item-padding-x: 0;
	--dropdown-item-padding-y: 0;
	--dropdown-header-color: #494950;
	--dropdown-header-padding-x: 19px;
	--dropdown-header-padding-y: 19px;
	transform: translate(0px, 78px) !important;
	padding:0;
    max-width:100%;
}
.mec-table .dropdown-menu .dropdown-item {
	padding-top:19px;
	padding-bottom:19px;
	padding-left: 30px;
	padding-right: 30px;
	border-bottom:1px solid #A3A2A2;	
	line-height: 35px;	
    display:block;
    max-width:100%;
    overflow:hidden;
}

.layout-lfs .mec-table .dropdown-menu .dropdown-item {
	font-family: "Nobel",arial,helvetica,sans-serif;
	font-size:18px;
	line-height: 22px;	
}

.mec-table .accordion-item {
	padding:20px 0 20px 0;
	border-bottom:1px solid #A3A2A2;
	font-size:16px;
	line-height:20px;
}

.layout-lfs .mec-table .accordion-item {
	font-size:16px;
	line-height:25px;
}

.mec-table .accordion-item ul {
	margin:0;
	padding:0 0 0 1em;
	list-style:none;
}

.mec-table .accordion-item li {
    margin-bottom:0.8em;
}

.mec-table .accordion-item li:before {
	content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: inherit; /* Change the color */
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 1em; /* Also needed for space (tweak if needed) */
	margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.layout-lfs .mec-table .accordion-item li:before {	
	color: #000; /* Change the color */	
}

.mec-table .accordion-item:last-child {
	border-bottom:1px solid #A3A2A2;
}

.mec-table .accordion-item .frame-default {
	margin:0;
}

.mec-table .accordion-item h4 {
	font-size:16px;
	line-height:20px;
	font-weight:normal;
	padding-right:50px;	
	margin:0;
}
.mec-table .accordion-item h4:after {
    content:'';
    width:30px;
    height:100%;
    position:absolute;
    right:30px;
    background-image:url(../Images/Pfeil_Toggle_grau_toyota.svg);
	background-repeat:no-repeat;	
	background-size: 20px 30px;
	background-position: right center;	
    
}
.mec-table .accordion-item .accordion-header h4:after {
    transform:scaleY(-1);
    transition:transform 300ms ease-in-out;        
}
.mec-table .accordion-item .accordion-header.collapsed h4:after {
    transform:scaleY(1);
    transition:transform 300ms ease-in-out;        
}


.layout-lfs .mec-table .accordion-item h4 {
	font-size:20px;
	line-height:25px;
}

.mec-table .accordion-collapse {
	padding-right:30px;
}
.mec-table .accordion-collapse.show {
		margin-top:30px;
		
}
.mec-table .accordion-item .accordion-header {
	position:relative;
}
.mec-table .accordion-item .accordion-header .frame-6::after {
	content:'';
	width:36px;
	height:36px;
	background-image:url(../Images/Neu.svg);
	background-size:36px 36px;
	background-repeat:no-repeat;	
	display:block;
	position:absolute;
	top:0;
	right:0;
	margin-top:-32px;
	margin-right:0px;
}

.layout-lfs .mec-table .accordion-item .accordion-header .frame-6::after {
	background-image:url(../Images/Neu_Lexus.svg);
}


.mec-table .mobile-only {
	display:block;
}
@media screen and (min-width: 1200px) { 
	.mec-table .mobile-only {
		display:none;
	}
}





.frame-type-text.frame-layout-2 {
	font-family: "Toyota Type Book",arial,helvetica,sans-serif; 
	font-size:12px;
	line-height:16px;
	text-color:#A3A2A2;
}

.layout-lfs .frame-type-text.frame-layout-2 {
	font-size:12px;
	line-height:16px;
}

@media (min-width: 1200px) {
	.frame-type-text.frame-layout-2 {		
		font-size:14px;
		line-height:18px;		
	}

	.layout-lfs .frame-type-text.frame-layout-2 {
		font-size:14px;
		line-height:20px;
	}
}

main p,
main h1, 
main h2,
main h3, 
main h4,
main h5 {
	hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
}

@media screen {
	.printonly {
		display:none;
	}
}

@media print {
	.container {
		max-width:800px;
	}
	
	.menu-service-left {
		display:none;		
	}
	
	.mec-accordion .accordion-item .collapse {
		display:block !important;
	}
	
	.mec-table .dropdown {
		display:none;
	}
	
	.mec-table .tab-content .tab-pane {
		display:block !important;
		margin-bottom:45px;
		opacity:1;
	}
	
	.mec-table .tab-content .tab-pane .accordion .accordion-item .accordion-collapse.collapse {
		display:block !important;
	}
	h2 {
		page-break-before:always;
	}
	footer {
		display:none;
	}
	
}

.waconcookiemanagement {
	z-index:1200;
}

#CookieBox {
	border-radius:0;
	max-width:650px;
	font-size:11pt;
	left:50%;
	transform: translateX(-50%);
}

@media (max-width: 1000px){
	#CookieBox {
		transform:none;
		max-width:unset;
		left:2%;
	}
}

#CookieBox p {
	font-size:14px;
	line-height:18px;
}

#CookieBox .cookieclose {
	color:#282830;
	padding:0;
	background: none transparent;
	border:0px none;
}
#CookieBox h3 {
	margin-top:0;
	margin-bottom:20px;
	font-size:18px;
	line-height:21px;
}
#CookieBox .intro p {
	width:auto;
}


#CookieBox .cookie-fix {
	float:none;
	margin:0;
} 
#CookieBox .cookie-management, 
#CookieBox .cookie-refuse, 
#CookieBox .cookie-accept,
#CookieBox .cookie-fix .cookie-save, 
#CookieBox .cookie-fix .text-back-right {
	border-radius:0;
	background-color:#EFF0F0;
	padding:10px 20px;
	font-size:14px;
	font-weight:normal;
	color:#333;
	background:#EFF0F0;
	display:inline-block;	
	width:100%;
	margin:10px auto;
	float:none;
	
}

#CookieBox .box-cookie-management-in > p {
	width:auto;
}

#CookieBox .category {
	margin:25px 0;
	padding:20px;
	background:#EFF0F0;
}

#CookieBox .cookie-on, #CookieBox .cookie-off {
	margin-right:15px;
	margin-top:0;
}

@media (min-width: 768px) {
	#CookieBox .cookie-management, 
	#CookieBox .cookie-refuse, 
	#CookieBox .cookie-accept,
	#CookieBox .cookie-fix .cookie-save, 
	#CookieBox .cookie-fix .text-back-right {
		width:auto;
	}
}

#CookieBox .cookie-management a, 
#CookieBox .cookie-refuse a, 
#CookieBox .cookie-accept a.cookie-btn,
#CookieBox .cookie-save a.cookie-btn, 
#CookieBox .text-back-right a.cookieback {
	dispplay:inline-block;
	margin:0;
	padding:0;
	background-color:transparent;
	background:none-transparent;
	border-radius:0;
	font-size:14px;
	font-weight:normal;
	color:#333;
}

#CookieBox .buttons-left {	
	text-align:left;
}

#CookieBox .buttons-right {
	text-align:right;
} 

.mec-table > div > div > .row > div img.minus {
    margin-top:13px;
}


.frame-type-mece_card.frame-6 .mece-card{
	background-image:url(../Images/Tarif_Plus_Toyota.svg);	
	background-repeat:no-repeat;
	background-size:45px 45px;
	background-position: top 6px right 6px;	
}

.layout-lfs .frame-type-mece_card.frame-6 .mece-card{
	background-image:url(../Images/Tarif_Plus_Lexus.svg);
}

@media (min-width: 768px) {
	.frame-type-mece_card.frame-6 .mece-card{
		background-size:60px 60px;
		background-position: top 20px right 20px;
	}
}

.frame-indent-right {
    margin-right:20%;
}


.mec-3cols.layout-1 > .row {
	--gutter-x: 12px;
}
.mec-3cols.layout-1 > .row > div {
	margin-bottom:30px;
}
.mec-3cols.layout-1 {
	margin-bottom:0px;
}

.mece-image-detail {
	background: #EFF0F0;
	position:relative;
	display:flex;
	flex-direction:column;
}
.mece-image-detail .image-title {	
	display:block;
	position:relative;	
}
.mece-image-detail .image-title .image {
	overflow:hidden;
	height:170px;
}
.mece-image-detail .image-title .image img {
	max-width:100%;
	height:auto;
	display:block;
	margin-top:-30px;	
}
.mece-image-detail .image-title h5.title {
	margin:0;
	line-height:25px;
	font-size:18px;
	font-family: "Toyota Type",arial,helvetica,sans-serif;
	font-weight:normal;
	height:50px;
	padding:10px 20px 15px 20px;
}

.layout-lfs .mece-image-detail .image-title h5.title {
	font-size:16px;
    padding:12px 20px 13px 20px;
}
.mece-image-detail .image-title h5.title a {
	text-decoration:none;
	color:inherit;
}
.mece-image-detail .detail {
	display:none;
}
.mece-image-detail .detail h5.title {
	font-family: "Toyota Type",arial,helvetica,sans-serif;
}
.mece-image-detail .detail a.link {
	font-family: "Toyota Type",arial,helvetica,sans-serif;
}

.layout-lfs .mece-image-detail .image-title h5.title {
	font-family: "Nobel",arial,helvetica,sans-serif;
	text-transform: uppercase;
	color:#fff;
}
.layout-lfs .mece-image-detail .detail h5.title {
	font-family: "Nobel",arial,helvetica,sans-serif;
	text-transform: uppercase;
	color:#fff;
}
.layout-lfs .mece-image-detail .detail a.link {
	font-family: "Nobel",arial,helvetica,sans-serif;
    text-transform: uppercase;
}
.layout-lfs	.mece-image-detail {
	background: #000;
}

.layout-lfs .mece-image-detail .detail .text {
	color:#fff;
}

@media (min-width: 576px) {	
	.mece-image-detail .image-title h5.title {
		font-size:20px;
	}
	.layout-lfs .mece-image-detail .image-title h5.title {
		font-size:20px;
	}
}

@media (min-width: 768px) {	
	
	.mec-3cols.layout-1 > .row {
		--gutter-x: 12px;
	}
	.mec-3cols.layout-1 > .row > div {
		margin-bottom:6px;
	}
	.mec-3cols.layout-1 {
		margin-bottom:54px;
	}
	
	.mece-image-detail .image-title {			
		opacity:1;
		transition: opacity 0.3s ease-in-out;
	}
	
	.mece-image-detail .image-title .image{
		height:auto;
	}
	
	.mece-image-detail .image-title .image img {
		max-width:100%;
		height:auto;
		display:block;
		margin-top:0;
		
	}
		
	.mece-image-detail .image-title h5.title {
		margin:0;
		line-height:30px;
		/*font-size:25px;*/
		font-size:20px;		
		font-weight:normal;
		height:70px;
		padding:17px 20px 23px 20px;
	}
	.layout-lfs .mece-image-detail .image-title h5.title {
		font-size:19px;		
        padding:20px 20px 20px 20px;
	}

	.mece-image-detail .detail {
		padding:15px 20px 20px 20px;	
		position:absolute;
		display:block;
		opacity:0;
		width:100%;
		height:100%;
		transition: opacity 0.3s ease-in-out;
	}
	.mece-image-detail .detail h5.title {
		margin-top: 0;
		margin-bottom:10px;
		line-height:30px;
		/*font-size:25px;*/
		font-size:20px;		
		font-weight:normal;
		height:30px;
	}
	.layout-lfs .mece-image-detail .detail h5.title {
		font-size:19px;
	}
	.mece-image-detail .detail .text {
		/*
		font-size:16px;
		line-height:21px;
		*/
		font-size:12px;
		line-height:16px;
		color:#494950;	
	}
	.layout-lfs .mece-image-detail .detail .text {
		font-size:13px;
		line-height:17px;
		
	}
	.mece-image-detail .detail .text ul {
		margin-top:0;
		margin-bottom:0;
	}
	.mece-image-detail .detail .text ul p {
		display:none;
	}
	.mece-image-detail .detail .text ul li {
		margin:0;
        margin-bottom:0.2em;
	}
	.mece-image-detail .detail a.link {
		display: block;
		background-color: #282830;
		color: #fff;
		font-size: 20px;
		line-height: 37px;
		height: 53px;
		padding: 5px 59px 9px 18px;
		text-decoration: none;
		width: 240px;
		margin-bottom: -17px;
		z-index: 1000;
		position: absolute;
		top: auto;
		bottom: 40px;
		left:50%;
		margin-left: -120px;
		background-image: url(../Images/Pfeil_weiss.svg);
		background-repeat: no-repeat;
		background-size: 23px 13px;
		background-position: right 18px center;
        opacity: 1;
        transition: all 200ms ease-in;
            
	}
    .layout-lfs .mece-image-detail .detail a.link {
        padding: 7px 59px 7px 18px;
        background-color: #fff;
        background-image: url(../Images/Pfeil_schwarz.svg);
        color:#000;
        font-size:18px;
    }
	.mece-image-detail .detail a.link:hover,
    .mece-image-detail .detail a.link:focus {
		opacity: 0.8;
		background-position: right 13px center; 
	}
    
    .layout-lfs .mece-image-detail .detail a.link:hover,
    .layout-lfs .mece-image-detail .detail a.link:focus {
		background-color:#b0b8c0;
        opacity:1;
		
	}

	.mece-image-detail:hover .image-title {
		opacity:0;
	}
	.mece-image-detail:hover .detail {
		position:absolute;
		width:100%;
		height:100%;
		opacity:1;
	}
	
}

@media (min-width: 992px) {	
	.mece-image-detail .image-title h5.title {				
		/*font-size:25px;*/
		font-size:20px;		
	}
	.layout-lfs .mece-image-detail .image-title h5.title {						
		font-size:18px;		
	}
	.mece-image-detail .detail h5.title {
		font-size:20px;
	}
	.layout-lfs .mece-image-detail .detail h5.title {
		font-size:20px;
	}
	.mece-image-detail .detail .text {
		/*
		font-size:16px;
		line-height:21px;
		*/
		font-size:16px;
		line-height:21px;	
	}
	.layout-lfs .mece-image-detail .detail .text {
		font-size:16px;
		line-height:21px;	
	}
}

@media (min-width: 1200px) {	
	.mece-image-detail .image-title h5.title {				
		/*font-size:25px;*/
		font-size:20px;		
	}
	.layout-lfs .mece-image-detail .image-title h5.title {						
		font-size:18px;		
	}        
    
	.mece-image-detail .detail h5.title {
		font-size:20px;
        margin-bottom:0.25em;
        
	}
	.layout-lfs .mece-image-detail .detail h5.title {
		font-size:20px;
	}
	.mece-image-detail .detail .text {
		/*
		font-size:16px;
		line-height:21px;
		*/
		font-size:14px;
		line-height:18px;	
	}
	.layout-lfs .mece-image-detail .detail .text {		
		font-size:14px;
		line-height:18px;	
	}
    ul.contentList > p {
        display:none;
    }
    
    .mece-image-detail .detail .text p {		
		margin-top:0;
        margin-bottom:0.25em;
	}
}

@media (min-width: 1480px) {	
	.mece-image-detail .image-title h5.title {				
		/*font-size:25px;*/
		font-size:20px;		
	}
	.layout-lfs .mece-image-detail .image-title h5.title {						
		font-size:18px;		
	}
	.mece-image-detail .detail h5.title {
		font-size:20px;
	}
	.layout-lfs .mece-image-detail .detail h5.title {
		font-size:20px;
	}
	.mece-image-detail .detail .text {
		/*
		font-size:16px;
		line-height:21px;
		*/
		font-size:16px;
		line-height:21px;	
	}
	.layout-lfs .mece-image-detail .detail .text {		
		font-size:16px;
		line-height:21px;	
	}
}

.mece-image-detail-2cols > .row {
	--gutter-x: 12px;
}
.mece-image-detail-2cols > .row > div {
	margin-bottom:30px;
}
.mece-image-detail-2cols {
	margin-bottom:0px;
}

.mece-image-detail-2cols .col-left {
	
	
}

.mece-image-detail-2cols .image-title {
	display: block;
	position:relative;
	background: #EFF0F0;	
}

.layout-lfs .mece-image-detail-2cols .image-title {
	background-color:#000;
	color:#fff;	
}

.mece-image-detail-2cols .image-title h5.title {
	margin: 0;
	line-height: 25px;
	font-size: 18px;
	font-family: "Toyota Type",arial,helvetica,sans-serif;
	font-weight: normal;
	height: 50px;
	padding: 10px 20px 15px 20px;
}
.layout-lfs .mece-image-detail-2cols .image-title h5.title {
	font-family: "Nobel",arial,helvetica,sans-serif;
	font-size:18px;
}


.mece-image-detail-2cols .image-title h5.title a {
	text-decoration: none;
	color: inherit;
}
.mece-image-detail-2cols .image-title .image {
	overflow: hidden;
	height: 170px;
    position:relative;		
}
.mece-image-detail-2cols .image-title .image .badge {
    position:absolute;
    width:74px;
    height:74px;
    top:10px;
    right:10px;
    background-image:url(../Images/Neu.svg);
    background-size:74px 74px;
    background-repeat:no-repeat;
}
.mece-image-detail-2cols .image-title .image img {
	max-width: 100%;
	height: auto;
	display: block;
	margin-top: 0;
	object-fit:cover;
	min-height:170px;           
} 

.mece-image-detail-2cols .detail {
	display: block;
	position:relative;
	background: #EFF0F0;	
	padding: 15px 20px 20px 20px;		
}

.layout-lfs .mece-image-detail-2cols .detail {
	background-color:#000;
	color:#fff;
}
.mece-image-detail-2cols .detail .title {
	display:none;
	
}
.layout-lfs .mece-image-detail-2cols .detail .title {
	text-transform:uppercase;
	font-family: "Nobel",arial,helvetica,sans-serif;
}

.mece-image-detail-2cols .detail .link {
	display:none;
}
.layout-lfs .mece-image-detail-2cols .detail .link {
	text-transform:uppercase;
	font-family: "Nobel",arial,helvetica,sans-serif;
}
.mece-image-detail-2cols .detail .text {
	font-size: 12px;
	line-height: 16px;
	color: #494950;
}
.layout-lfs .mece-image-detail-2cols .detail .text {
	color:#fff;
}



@media (min-width: 576px) {	
	.mece-image-detail-2cols .image-title h5.title {
		font-size:20px;
	}
	.layout-lfs .mece-image-detail-2cols .image-title h5.title {
		font-size:20px;
	}
}

@media (min-width: 768px) {	
	
	.mece-image-detail-2cols > .row {
		--gutter-x: 12px;
	}
	.mece-image-detail-2cols > .row > div {
		margin-bottom:6px;
	}
	.mece-image-detail-2cols {
		margin-bottom:54px;
	}
	
	.mece-image-detail-2cols .image-title .image {
		height:auto;
	}
	
	.mece-image-detail-2cols .image-title h5.title {
		margin:0;
		line-height:30px;		
		font-size:20px;		
		font-weight:normal;
		height:70px;
		padding:17px 20px 23px 20px;
	}
	.layout-lfs .mece-image-detail-2cols .image-title h5.title {
		font-size:19px;		
        padding:20px 20px 20px 20px;
	}

	.mece-image-detail-2cols .detail {
		padding:15px 20px 20px 20px;	
		position:relative;
		display:block;		
	}
	.mece-image-detail-2cols .detail h5.title {
		margin-top: 0;
		margin-bottom:10px;
		line-height:30px;		
		font-size:20px;		
		font-weight:normal;
		height:30px;
	}
	.layout-lfs .mece-image-detail-2cols .detail h5.title {
		font-size:19px;
	}
	.mece-image-detail-2cols .detail .text {		
		font-size:12px;
		line-height:16px;
		color:#494950;	
	}
	.layout-lfs .mece-image-detail-2cols .detail .text {
		font-size:13px;
		line-height:17px;
		
	}
	.mece-image-detail-2cols .detail .text ul {
		margin-top:0;
		margin-bottom:0;
	}
	.mece-image-detail-2cols .detail .text ul p {
		display:none;
	}
	.mece-image-detail-2cols .detail .text ul li {
		margin:0;
        margin-bottom:0.2em;
	}
	
	.mece-image-detail-2cols .detail a.link:hover,
    .mece-image-detail-2cols .detail a.link:focus {
		opacity: 0.8;
		background-position: right 13px center; 
	}
    
    .layout-lfs .mece-image-detail-2cols .detail a.link:hover,
    .layout-lfs .mece-image-detail-2cols .detail a.link:focus {
		background-color:#b0b8c0;
        opacity:1;		
	}	
	
	
}

@media (min-width: 992px) {	
	.mece-image-detail-2cols .image-title h5.title {						
		font-size:20px;		
	}
	.layout-lfs .mece-image-detail-2cols .image-title h5.title {						
		font-size:20px;		
	}
	.mece-image-detail2-cols .detail h5.title {
		font-size:20px;
	}
	.layout-lfs .mece-image-detail-2cols .detail h5.title {
		font-size:20px;
	}
	.mece-image-detail-2cols .detail .text {		
		font-size:16px;
		line-height:21px;	
	}
	.layout-lfs .mece-image-detail-2cols .detail .text {
		font-size:16px;
		line-height:21px;	
	}
}

@media (min-width: 1200px) {	
    
    .mece-image-detail-2cols .image-title .image .badge {
        top: 15px;
        left:15px;
        right:unset;
    }
    
	.mece-image-detail-2cols .image-title h5.title {						
		font-size:20px;	
		display:none;
	}
	.layout-lfs .mece-image-detail-2cols .image-title h5.title {						
		font-size:18px;	
		display:none;
	}        
    
	.mece-image-detail-2cols .col-right {
		display:flex;
	}
	
	.mece-image-detail-2cols .detail {
		flex:1;
	}
	
	.mece-image-detail-2cols .detail h5.title {
		font-size:20px;
        margin-bottom:0.25em;
		display:block;
        
	}
	.layout-lfs .mece-image-detail-2cols .detail h5.title {
		font-size:20px;
	}
	.mece-image-detail-2cols .detail .text {		
		font-size:13px;
		line-height:18px;	
	}
	.layout-lfs .mece-image-detail-2cols .detail .text {		
		font-size:14px;
		line-height:18px;	
	}    
    
    .mece-image-detail-2cols .detail .text p {		
		margin-top:0;
        margin-bottom:0.25em;
	}
	
	.mece-image-detail-2cols .detail .link {
		display:block;
	}
	
	.mece-image-detail-2cols .detail a.link {
		display: block;
		background-color: #282830;
		color: #fff;
		font-size: 20px;
		line-height: 37px;
		height: 53px;
		padding: 5px 59px 9px 18px;
		text-decoration: none;
		width: 240px;
		margin-bottom: -17px;
		z-index: 1000;
		position: absolute;
		top: auto;
		bottom: 40px;
		left:50%;
		margin-left: -120px;		
		background-image: url(../Images/Pfeil_weiss.svg);
		background-repeat: no-repeat;
		background-size: 23px 13px;
		background-position: right 18px center;
        opacity: 1;
        transition: all 200ms ease-in;
            
	}
    .layout-lfs .mece-image-detail-2cols .detail a.link {
        padding: 7px 59px 7px 18px;
        background-color: #fff;
        background-image: url(../Images/Pfeil_schwarz.svg);
        color:#000;
        font-size:18px;
    }
}

@media (min-width: 1480px) {	
	.mece-image-detail-2cols .image-title h5.title {						
		font-size:20px;		
	}
	.layout-lfs .mece-image-detail-2cols .image-title h5.title {						
		font-size:20px;		
	}
	.mece-image-detail-2cols .detail h5.title {
		font-size:20px;
	}
	.layout-lfs .mece-image-detail-2cols .detail h5.title {
		font-size:20px;
	}
	.mece-image-detail-2cols .detail .text {		
		font-size:16px;
		line-height:21px;	
	}
	.layout-lfs .mece-image-detail-2cols .detail .text {		
		font-size:16px;
		line-height:21px;	
	}
}







/* mece-image-detail-2cols2 */

.mece-image-detail-2cols2 h2 {
	margin:0;
}

.layout-lfs .mece-image-detail-2cols2 h2 {
	margin-bottom:20px;
}

.mece-image-detail-2cols2 h2:after {
	margin-bottom: 20px;
}

.mece-image-detail-2cols2 > .row {
	--gutter-x: 12px;
}
.mece-image-detail-2cols2 > .row > div {
	margin-bottom:30px;
}
.mece-image-detail-2cols2 {
	margin-bottom:0px;
}

.mece-image-detail-2cols2 .image-title {
	display: block;
	position:relative;
	background: #EFF0F0;	
}

.layout-lfs .mece-image-detail-2cols2 .image-title {
	background-color:#000;
	color:#fff;	
	transition: opacity 0.3s ease-in-out;
	opacity:1;
}

.mece-image-detail-2cols2 .image-title .image {
	position:relative;
}


.mece-image-detail-2cols2 .col-right .detail {
	position:relative;
}

.mece-image-detail-2cols2 .col-right .detail .badge {
    position:absolute;
    width:74px;
    height:74px;
    top:10px;
    right:10px;
    background-image:url(../Images/Neu.svg);
    background-size:74px 74px;
    background-repeat:no-repeat;
}

.mece-image-detail-2cols2 .col-left {
	position:relative;
}

.mece-image-detail-2cols2 .col-left .detail {
	transition: opacity 0.3s ease-in-out;
	opacity:0;
	position:absolute;
	left:0;
	top:0;	
	height:100%;
	margin-left: 6px;
	margin-right: 6px;
}

.mece-image-detail-2cols2 .image-title h5.title {
	margin: 0;
	line-height: 25px;
	font-size: 18px;
	font-family: "Toyota Type",arial,helvetica,sans-serif;
	font-weight: normal;
	height: 50px;
	padding: 10px 20px 15px 20px;
}
.layout-lfs .mece-image-detail-2cols2 .image-title h5.title {
	font-family: "Nobel",arial,helvetica,sans-serif;
	font-size:18px;
}
.mece-image-detail-2cols2 .col-left .detail h5.title {
	line-height: 25px;
	font-size: 18px;
	font-family: "Toyota Type",arial,helvetica,sans-serif;
	font-weight: normal;
	margin:0;
}
.mece-image-detail-2cols2 .col-left .detail h5.title a {
	text-decoration:none;
	color:inherit;
}
.layout-lfs .mece-image-detail-2cols2 .col-left .detail h5.title {	
	font-size: 18px;
	font-family: "Nobel",arial,helvetica,sans-serif;
	text-transform:uppercase;
}


.mece-image-detail-2cols2 .image-title h5.title a {
	text-decoration: none;
	color: inherit;
}
.mece-image-detail-2cols2 .image-title .image {
	overflow: hidden;
	height: 170px;
	background-size:cover;
	background-position-x: center;
	background-position-y: top;
	background-repeat:no-repeat;
	
}
.mece-image-detail-2cols2 .image-title .image img {
	max-width: 100%;
	height: auto;
	display: block;
	margin-top: 0;
	object-fit:cover;
	min-height:170px
} 

.mece-image-detail-2cols2 .col-left .detail {	
	background-color:#eff0f0;;
}
.layout-lfs .mece-image-detail-2cols2 .col-left .detail {	
	background-color:#000;
}
.mece-image-detail-2cols2 .col-left .detail .text {
	
}

.mece-image-detail-2cols2 .col-right .detail {
	display: block;
	position:relative;
	background: #282830;
	color:#fff;	
	padding: 15px 20px 20px 20px;		
}

.layout-lfs .mece-image-detail-2cols2 .col-right .detail {
	background-color:#000;
	color:#fff;
}
.mece-image-detail-2cols2 .col-left .detail .title {

}
.layout-lfs .mece-image-detail-2cols2 .col-left .detail .title {
	text-transform:uppercase;
	font-family: "Nobel",arial,helvetica,sans-serif;
	color:#fff;
}
.mece-image-detail-2cols2 .col-right .detail h5 {
	color:#fff;
	font-size:18px;
	font-family: "Toyota Type",arial,helvetica,sans-serif;
	font-weight: normal;
	margin-top:0;
	margin-bottom:1em;
}
.layout-lfs .mece-image-detail-2cols2 .col-right .detail h5 {
	text-transform:uppercase;
	font-family: "Nobel",arial,helvetica,sans-serif;
}


.mece-image-detail-2cols2 .col-left .detail .link {

}
.layout-lfs .mece-image-detail-2cols2 .col-left .detail .link {
	text-transform:uppercase;
	font-family: "Nobel",arial,helvetica,sans-serif;
}
.mece-image-detail-2cols2 .col-right .detail .text {
	font-size: 12px;
	line-height: 16px;
	
	color:#fff;
}
.mece-image-detail-2cols2 .col-right .detail .text p {
	margin-bottom:1em;
}


.layout-lfs .mece-image-detail-2cols2 .col-right .detail .text {
	color:#fff;
}

.layout-lfs .mece-image-detail-2cols2 .detail .text p a {
	color:#fff;
}

@media (min-width: 576px) {	
	.mece-image-detail-2cols2 .image-title h5.title {
		font-size:20px;
	}
	.layout-lfs .mece-image-detail-2cols2 .image-title h5.title {
		font-size:20px;
	}
	.mece-image-detail-2cols2 .col-right .detail h5 {
		font-size:20px;
	}
}

@media (min-width: 768px) {	
	
	.mece-image-detail-2cols2 > .row {
		--gutter-x: 12px;
	}
	.mece-image-detail-2cols2 > .row > div {
		margin-bottom:6px;
	}
	.mece-image-detail-2cols2 {
		margin-bottom:54px;
	}
	
	.mece-image-detail-2cols2 .image-title .image {
		height:auto;
	}
	
	.mece-image-detail-2cols2 .col-left:hover .image-title {
		opacity:0;
	}
	.mece-image-detail-2cols2 .col-left:hover .detail {
		opacity:1;
		
	}
	
	.mece-image-detail-2cols2 .image-title h5.title {
		margin:0;
		line-height:30px;		
		font-size:20px;		
		font-weight:normal;
		height:70px;
		padding:17px 20px 23px 20px;
	}
	.layout-lfs .mece-image-detail-2cols2 .image-title h5.title {
		font-size:19px;		
        padding:20px 20px 20px 20px;
		text-transform:uppercase;
	}

	.mece-image-detail-2cols2 .detail {
		padding:15px 20px 20px 20px;	
		position:relative;
		display:block;		
	}
	.mece-image-detail-2cols2 .col-left .detail h5.title,
	.mece-image-detail-2cols2 .col-right .detail h5 {
		margin-top: 0;
		margin-bottom:10px;
		line-height:30px;		
		font-size:20px;		
		font-weight:normal;
		height:30px;
	}
	.layout-lfs .mece-image-detail-2cols2 .col-left .detail h5.title,
	.layout-lfs .mece-image-detail-2cols2 .col-right .detail h5 {
		font-size:19px;
	}
	
	.mece-image-detail-2cols2 .detail .text {		
		font-size:12px;
		line-height:16px;
		color:#494950;	
	}
	.mece-image-detail-2cols2 .col-right .detail .text {		
		font-size:12px;
		line-height:16px;		
	}
	.layout-lfs .mece-image-detail-2cols2 .detail .text {
		font-size:13px;
		line-height:17px;
		color:#fff;		
	}
	.layout-lfs .mece-image-detail-2cols2 .col-right .detail .text {
		font-size:13px;
		line-height:17px;		
	}
	.mece-image-detail-2cols2 .detail .text ul {
		margin-top:0;
		margin-bottom:0;
	}
	.mece-image-detail-2cols2 .detail .text ul p {
		display:none;
	}
	.mece-image-detail-2cols2 .detail .text ul li {
		margin:0;
        margin-bottom:0.2em;
	}
	
	.mece-image-detail-2cols2 .detail a.link:hover,
    .mece-image-detail-2cols2 .detail a.link:focus {
		opacity: 0.8;
		background-position: right 13px center; 
	}
    
    .layout-lfs .mece-image-detail-2cols2 .detail a.link:hover,
    .layout-lfs .mece-image-detail-2cols2 .detail a.link:focus {
		background-color:#b0b8c0;
        opacity:1;		
	}	
	
	.mece-image-detail-2cols2 .col-left .detail a.link {
		display: block;
		background-color: #282830;
		color: #fff;
		font-size: 20px;
		line-height: 37px;
		height: 53px;
		padding: 5px 59px 9px 18px;
		text-decoration: none;
		width: 240px;
		margin-bottom: -17px;
		z-index: 1000;
		position: absolute;
		top: auto;
		bottom: 40px;
		left:50%;
		margin-left: -120px;		
		background-image: url(../Images/Pfeil_weiss.svg);
		background-repeat: no-repeat;
		background-size: 23px 13px;
		background-position: right 18px center;
        opacity: 1;
        transition: all 200ms ease-in;
            
	}
    .layout-lfs .mece-image-detail-2cols2 .col-left .detail a.link {
        padding: 7px 59px 7px 18px;
        background-color: #fff;
        background-image: url(../Images/Pfeil_schwarz.svg);
        color:#000;
        font-size:18px;
    }
	
	.mece-image-detail-2cols2 .detail a.link:hover,
    .mece-image-detail .detail a.link:focus {
		opacity: 0.8;
		background-position: right 13px center; 
	}
    
    .layout-lfs .mece-image-detail-2cols2 .detail a.link:hover,
    .layout-lfs .mece-image-detail-2cols2 .detail a.link:focus {
		background-color:#b0b8c0;
        opacity:1;
		
	}
}

@media (min-width: 992px) {	
	.mece-image-detail-2cols2 .image-title h5.title {						
		font-size:20px;		
	}
	.layout-lfs .mece-image-detail-2cols2 .image-title h5.title {						
		font-size:18px;		
	}
	.mece-image-detail-2cols2 .col-left .detail h5.title,
	.mece-image-detail-2cols2 .col-right .detail h5 {
		font-size:20px;
	}
	.layout-lfs .mece-image-detail-2cols2 .col-left .detail h5.title,
	.layout-lfs .mece-image-detail-2cols2 .col-right .detail h5 {
		font-size:20px;
	}
	.mece-image-detail-2cols2 .detail .text,
	.mece-image-detail-2cols2 .col-right .detail .text{		
		font-size:16px;
		line-height:21px;	
	}
	.layout-lfs .mece-image-detail-2cols2 .detail .text,
	.layout-lfs .mece-image-detail-2cols2 .col-right .detail .text {
		font-size:16px;
		line-height:21px;	
	}
}

@media (min-width: 1200px) {	
	.mece-image-detail-2cols2 .image-title h5.title {						
		font-size:20px;	
		display:block;
	}
	.layout-lfs .mece-image-detail-2cols2 .image-title h5.title {						
		font-size:18px;	
		display:none;
	}        
    
	.mece-image-detail-2cols2 .col-right {
		display:flex;
	}
	
	.mece-image-detail-2cols2 .detail {
		flex:1;
	}
	
	.mece-image-detail-2cols2 .col-left .detail h5.title,
	.mece-image-detail-2cols2 .col-right .detail h5 {
		font-size:20px;
        margin-bottom:0.25em;
		display:block;
        
	}
	.layout-lfs .mece-image-detail-2cols2 .col-left .detail h5.title,
	.layout-lfs .mece-image-detail-2cols2 .col-right .detail h5 {
		font-size:20px;
	}
	.mece-image-detail-2cols2 .detail .text,
	.mece-image-detail-2cols2 .col-right .detail .text {		
		font-size:13px;
		line-height:18px;	
	}
	.layout-lfs .mece-image-detail-2cols2 .detail .text,
	.layout-lfs .mece-image-detail-2cols2 .col-right .detail .text {		
		font-size:14px;
		line-height:18px;	
	}    
    
    .mece-image-detail-2cols2 .detail .text p {		
		margin-top:0;
        margin-bottom:0.25em;
	}
	
	.mece-image-detail-2cols2 .detail .link {
		display:block;
	}
	
	.mece-image-detail-2cols2 .col-right .detail .badge {
        top: 15px;
        right: 15px;       
    }
	
	
}

@media (min-width: 1480px) {	
	.mece-image-detail-2cols2 .image-title h5.title {						
		font-size:20px;		
	}
	.layout-lfs .mece-image-detail-2cols2 .col-right .image-title h5.title {						
		font-size:20px;		
	}
	.mece-image-detail-2cols2 .col-left .detail h5.title,
	.mece-image-detail-2cols2 .col-right .detail h5 {
		font-size:20px;
	}
	.layout-lfs .mece-image-detail-2cols2 .col-left .detail h5.title,
	.layout-lfs .mece-image-detail-2cols2 .col-right .detail h5.title {
		font-size:20px;
	}
	.mece-image-detail-2cols2 .detail .text {		
		font-size:16px;
		line-height:21px;	
	}
	.layout-lfs .mece-image-detail-2cols2 .detail .text {		
		font-size:16px;
		line-height:21px;	
	}
	.mece-image-detail-2cols2 .col-right .detail .text {		
		font-size:16px;
		line-height:21px;	
	}
	.layout-lfs .mece-image-detail-2cols2 .col-right .detail .text {		
		font-size:16px;
		line-height:21px;	
	}
	
}

body {
    position:relative;
}

#menu-right {
    position:fixed;
    bottom:0;
    left:0;
    width:calc(100% - 85px);
	display:fley;
	flex-direction:column;
	justify-content:flex-start;
}

#menu-right-control {
    display:block;
    background: #000;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    height:70px;
    line-height:70px;
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    text-align:center;
	cursor: pointer;
}
.layout-lfs #menu-right-control {
	background: #707070;
}
#menu-right-control[aria-expanded="true"] {
    display:none;
}

#menu-right-collapse {
    background:#000;
    color:#fff;
    position:absolute;
    bottom:0;
    left:0;
	padding:0 20 0 20px;	
	box-sizing: border-box;
	width:100%;
	overflow:hidden;	
	max-height:0px;   
	transition: max-height 400ms ease-in;	
}

.layout-lfs #menu-right-collapse {
	background:#707070;
}

#menu-right-collapse.active {	
	max-height:300px;
	transition: max-height 400ms ease-out;
}
	
#menu-right-collapse h5 {
	display:none;
	margin-top:20px;
	font-size:18px;
	text-align:center;
}
#menu-right-collapse.active h5 {
	display:block;		
}

#menu-right-collapse .menu-right {
	display:none;
}
#menu-right-collapse.active .menu-right{
	display:block;
}

#menu-right-collapse .menu-right li {
	font-size:18px;
	margin-bottom:1em;
	text-align:center;
	
}

#menu-right-collapse .menu-right li a {
	color:#fff;
}

#menu-right-collapse .menu-right-footer {
	display:none;
	margin-bottom:20px;
	text-align:center;
	font-size:14px;
	color:#A3A2A2;
	margin-top:3em;	
}

.layout-lfs #menu-right-collapse .menu-right-footer {
	color:#fff;
}

#menu-right-collapse.active .menu-right-footer  {
	display:block;
}

#menu-right-close {
	display:none;
	position:absolute;
	top:15px;
	right:20px;
	cursor: pointer;
}

#menu-right-collapse.active #menu-right-close {
	display:block;
}

@media (min-width: 1200px) {
	#menu-right {
		position:fixed;
		bottom:auto;
		top:242px;
		left:auto;
		right:0px;
		width:240px;
	}
	.menu-right-header {
		
	}
	
	#menu-right-control {		
		font-size:23px;
		height:70px;
		line-height:60px;
		position:absolute;
		left:0;
		bottom:0;
		width:100%;
		text-align:center;
		transform:rotate(-90deg) translateX(70px);
		transform-origin: bottom right;		
	}
	
	#menu-right-collapse {				
		position:absolute;
		bottom:unset;
		left:unset;
		margin-top:-42px;
		top:0;
		right:0;
		padding:0 20px 0 20px;	
		width: 320px;
		margin-right:-320px;
		transition: margin-right 400ms ease-in-out;
		max-height:300px;
	}
	
	#menu-right-collapse.active {
		margin-right:0;
		transition: margin-right 400ms ease-in-out;
		
	}
	#menu-right-close {
		display:block;	
	}
	#menu-right-collapse h5 {
		display:block;
	}
	#menu-right-collapse .menu-right{
		display:block;
	}
	#menu-right-collapse .menu-right-footer {
		display:block;
	}
	
	
}

#header > .container {
	position:relative;
}

#header .menu-top {
	display:none;
}

#header .logo img.grey {
	display:inline;
}
#header .logo img.white {
	display:none;
}

#header #mobile-menu-opener {
    display:block;
    position:absolute;
    width:35px;
    height:35px;
    right:0;
    top:5px;
    background-image:url(/typo3conf/ext/me_tfs_template/Resources/Public/Images/mobile_menu_opener_35x.png);
}

#header.active-menu #mobile-menu-opener {
    background-image:url(/typo3conf/ext/me_tfs_template/Resources/Public/Images/mobile_menu_closer_35x.png);
}

#header {
    padding-top:40px;
    height:159px;
    background-color:#fff;
    transition: all 400ms ease-in-out;
}
#header .logo {
    margin-top:0;
}
#header.active-menu {
    background-color:#282830;		
    min-height:100vh;
    height:auto;
    padding-bottom:60px;
}
#header.active-menu .logo img.grey {
    display:none;
}
#header.active-menu .logo img.white {
    display:inline;
}
.submenus {
    display:none;
}
.submenus h2 {
    color:#fff;
    font-size:24px;
}
.submenus h2:after {
    margin-bottom:40px;
}

.submenus .submenu ul {
    display:block;
}
.submenus .submenu ul ul {
    display:none;
}
#header.active-menu .submenus {
    display: block;
}

.submenus .submenu li.has-submenu > a {
    background-image:url(../Images/Pfeil02_weiss.png);
    background-repeat:no-repeat;
    background-position: right 30px center;
}

.submenus .submenu li.has-submenu ul li a {
    padding-left:30px;
}

.submenus .submenu li a {
    display:block;
    height:58px;
    border-top: 1px solid #707070;
    line-height:58px;    
    color: #fff;
    text-decoration:none;
    font-size:17px;
    opacity: 0.4;
}

.submenus .submenu li a.active,
.submenus .submenu li a:hover {
    opacity: 1;
}

.submenus .submenu li ul li a:focus {
	opacity: 1;
}


.submenus .submenu li:last-child a {
    border-bottom: 1px solid #707070;
}

@media (min-width: 1200px) {
    #header #mobile-menu-opener {
        display:none;
    }
	#header {	
		padding-top:84px;
		height:190px;
		background-color:#fff;
		transition: all 400ms ease-in-out;
		
	}
	
	#header .logo {
		margin-top:0;
	}
	
	#header .menu-top {		
		display: block;
		position:relative;	
        padding-top:20px;
	}

	#header .menu-top .menu-top-link {
		color:#282830;
		font-size:20px;
		line-height:26px;		
		padding-bottom:20px;

	}
	.layout-lfs #header .menu-top .menu-top-link {
		text-transform: uppercase;
		font-family: "Nobel",arial,helvetica,sans-serif;
        color:#000;
	}

	#header .menu-top ul {
		list-style:none;
		padding:0;				
	}

	#header .menu-top ul li {
		display:inline-block;		
		white-space: nowrap;
        /*margin-right:100px;*/
		margin-right:33px;
	}
    #header .menu-top ul li:last-child {
        margin-right:0;
    }

	#header .menu-top .menu-top-link:hover,
	#header .menu-top .menu-top-link:focus,
	#header .menu-top .menu-top-link.active {
		border-bottom: 2px solid #FF0022;
	}
	
	.layout-lfs #header .menu-top .menu-top-link:hover,
	.layout-lfs #header .menu-top .menu-top-link:focus,
	.layout-lfs #header .menu-top .menu-top-link.active {
		border-bottom: 2px solid #707070;
	}
	
	#header.active-menu {
		background-color:#282830;		
		height:100vh;
	}
    
    .layout-lfs #header.active-menu {
        background-color:#000;		
    }
    
	#header.active-menu .logo img.grey {
		display:none;
	}
	#header.active-menu .logo img.white {
		display:inline;
	}
	#header.active-menu .menu-top .menu-top-link {
		color:#fff;
	}
	.submenu {
		display:none;
	}
	.submenu.active {
		display:block;
	}
	.submenus {
        display:block;
		position:relative;		
	}
    .submenus h2 {
        display:none;
    }
	
	.submenus .submenu ul {
		position:relative;
		width:45%;
	}
	.submenus .submenu ul ul {
		position:absolute;
		top:0;
		width:95%;
		left:100%;
		
	}
    .submenus .submenu li.has-submenu ul li a {
        padding-left: 0;
      }
	.submenus .submenu li a {
		font-size: 20px;		
		line-height:26px;
		color:#fff;
		opacity:.4;
		transition: opacity 400ms ease-in-out;
		text-decoration:none;
		display:block;	
		padding-bottom:3px;
        border-top:0px none;
        height:auto;
        white-space:normal;
		margin-bottom:1em;
        
	}
    .submenus .submenu li:last-child a {
        border-bottom: 0px none;
    }
	
	.layout-lfs .submenus .submenu li a {
		text-transform: uppercase;
		font-family: "Nobel",arial,helvetica,sans-serif;
	}
	
	.submenus .submenu li.has-submenu > a {
		background-image:url(/typo3conf/ext/me_tfs_template/Resources/Public/Images/Pfeil02_weiss.png);
		background-repeat:no-repeat;
		background-position: 90% 7px;
		padding-right:20%;
	}
	
	.layout-lfs .submenus .submenu li.has-submenu > a {
		background-position: 90% 4px;
	}
	
	
	.submenus .submenu li a.active,
	.submenus .submenu li a:hover {
		color:#fff;
		opacity:1;
	}
	
	.submenus .submenu li ul li a:focus {
		color:#fff;
		opacity:1;
	}
	
	
	
	.submenus .submenu-l1 {
		display:none;
	}
	.submenus .submenu-l1.active {
		display:block;
	}
	
	
	
	
}

.frame-layout-1 .ce-uploads li {
	margin:0;
}

.frame-layout-1 .ce-uploads a {
	width:100%;
	height:50px;
	background-color:#EFF0F0;
	display:block;
	line-height:50px;
	font-family: "Toyota Type",arial,helvetica,sans-serif;
	font-size:16px;
	font-weighht:600;
	color:#282830;
	text-decoration:none;
	padding:0 25px 0 25px;
	margin-bottom:8px;
	position:relative;
	background-image:url(/typo3conf/ext/me_tfs_template/Resources/Public/Images/download_tfs.svg);
	background-position: right 25px center;
	background-repeat:no-repeat;
	background-size: 30px 30px;
}

.layout-lfs .frame-layout-1 .ce-uploads a {
    background-image:url(/typo3conf/ext/me_tfs_template/Resources/Public/Images/download_lfs.svg);
    font-family: "Nobel",arial,helvetica,sans-serif;
    color:#000;
}

.frame-layout-1 .ce-uploads a:hover,
.frame-layout-1 .ce-uploads a:focus {
	filter: invert(10%);
}


@media (min-width: 1200px) {
	.frame-layout-1 .ce-uploads a {
		height:94px;
		line-height:94px;
		font-size:20px;
		background-size: 45px 45px;
		background-position: right 50px center;
		padding:0 50px 0 50px;
	}	
	
	.frame-layout-1 .ce-uploads a span::after {
		content:"DOWNLOAD";
		display:block;
		position:absolute;
		right:144px;
		top:0;
		color:#A3A2A2;
		text-align:right;			
	}
    
    .layout-lfs .frame-layout-1 .ce-uploads a span::after {
        color:#000;
    }
}

.mece-imagetext img {
    opacity:0.2;
    transition: opacity 500ms ease-in;
}
.mece-imagetext.fadein img {
    opacity:1;
}
.mece-card img {
    opacity:0.2;
    transition: opacity 1000ms ease-in;
}
.mece-card.fadein img {
    opacity:1;
}

.colored,
.colored a {
	color:#ff0022;
}

h4.colored {
	font-size:inherit;
	font-weight:bold;
	line-height:inherit;
	margin:0;
	padding:0;
	color:#ff0022;
	margin-bottom:-1em;	
}

.layout-lfs .colored,
.layout-lfs .colored a {
	color:#20365C;
}

.layout-lfs h4.colored {
	color:#20365C;
}

.small {
	font-size:80%;
}


figure.video {
	width:100%;
}

.video-embed-wrap {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	width:100%;
	min-width:100	
	cursor: pointer;
}

.video-embed .video-embed-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-embed .video-overlay {	
	background-image:url(../Images/video_bg_16_9.png);	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}


.ce-textpic.ce-left.ce-above .ce-gallery[data-ce-columns="1"] {
	float:none;
}
.ce-textpic.ce-left.ce-above .ce-gallery[data-ce-columns="1"] > .ce-row {
	float:none;
}
.ce-textpic.ce-left.ce-above .ce-gallery[data-ce-columns="1"] > .ce-row > .ce-column {
	float:none;
}

.ce-textpic.ce-below img, .ce-textpic.ce-above img {
	max-width:100%;
	height:auto;
}

.mece-best-of {
	height:340px;	
	background-size:cover;
	background-position-x: center;
	position:relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.mece-best-of-box {
	background-color: #fff;
	color:#FE0000;
	font-family: "Toyota Type",arial,helvetica,sans-serif;
	font-size:30px;
	line-height:35px;
	border-radius: 0.625rem;
	margin: 60px 20px;
	padding:20px;		
}
.mece-best-of-box p {
	margin:0;
}

.mece-best-of-box a.mebtn {
	background-color:#FF0000;
	color:#fff;
	font-size:16px;
	padding:20px 30px;
	border-radius: 2.75rem;
	text-decoration:none;
	display:inline-block;
	margin-top:30px;	
}

.layout-lfs .mece-best-of-box {
	color:#000;
	font-family: "Nobel",arial,helvetica,sans-serif;
	border-radius: 0;
}

.layout-lfs .mece-best-of-box a.mebtn {
	background-color:#000;
	border-radius: 0;
}

@media (min-width: 768px) {
	.mece-best-of {		
		justify-content: left;		
	}
}

@media (min-width: 1200px) {
	.mece-best-of {
		background-size:cover;
		background-position-x: left;
		height:auto;
		justify-content: left;
		
	}
	.mece-best-of-box {
		fonnt-size:40px;
		line-height:45px;
		margin: 100px 100px;
		padding:30px;
	}
}

.replaced-external-content-wrap {
    position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	width:100%;
	min-width:100		
    background-color:#ddd;
}
.replaced-external-content {
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;        
    background-image:url(../Images/video_bg_16_9_nc.png);		
	background-repeat: no-repeat;
	background-size: cover;
    padding: 2rem 4rem;
    color:#fff;
    text-align: center;
    
}



.rtebtn {
    display: inline-block;
    background-color: #282830;
    color: #fff;
    font-size: 20px;
    line-height: 37px;
    height: 53px;
    padding: 5px 59px 9px 18px;
    text-decoration: none;
    font-family: "Toyota Type",arial,helvetica,sans-serif;			
    background-image: url(../Images/Pfeil_weiss.svg);
    background-repeat: no-repeat;
    background-size: 23px 13px;
    background-position: right 18px center;
    opacity: 1;
    transition: all 200ms ease-in;            
}
.layout-lfs .rtebtn {
    padding: 7px 59px 7px 18px;
    background-color: #000;
    background-image: url(../Images/Pfeil_weiss.svg);
    font-family: "Nobel",arial,helvetica,sans-serif;
    color:#fff;
    font-size:18px;
    text-transform: uppercase;
}
.rtebtn:hover,
.rtebtn:focus {
    opacity: 0.8;
    background-position: right 13px center; 
}

.layout-lfs .rtebtn:hover,
.layout-lfs .rtebtn:focus {

    opacity:0.8;

}

.text-right, .ce-headline-right {
	text-align: right !important;	
	width:100%;
}
.text-left, .ce-headline-left {
	text-align: left !important;	
	width:100%;
}
.text-center, .ce-headline-center {
	text-align: center !important;	
	width:100%;
}
.text-justify {
	text-align:justify !important;	
	width:100%;
}

.mec-table .row div header {
	width:100%;
}

#fancypopup {
	display:none;
}
#fancypopup-opener {
	display:none;
}
.confetti {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:99%;	
}

.fancybox-skin {
	padding:0 !important;
}
.mec-special-content {
	padding: 15px;
}
.mec-special-content.layout-3 {
	padding: 0;
}
@media (min-width: 768px) {
	.mec-special-content {
		padding: 15px 30px;
	}
	.mec-special-content.layout-3 {
		padding: 0;
	}
}


.fancybox-wrap {
	width:90%!important;	
}

@media (min-width: 768px) {
  .fancybox-wrap {
    width: 80%!important;
  }
}

@media (min-width: 1200px) {
  .fancybox-wrap {
    width: 70%!important;
  }
}



.fancybox-inner {
	width:100%!important;
}
.fancybox-skin {
	background-color:#fff;
}



.rtedownload {
	display:block;
	font-size: 20px;
	background-size: 45px 45px;
	background-position: right 50px center;
	background-color: #EFF0F0;
	text-transform:uppercase;
	font-family: "Toyota Type",arial,helvetica,sans-serif;	
	color:#707070;
	transition: color 0.15s ease-in-out, background-size 0.15s ease-in-out;
	text-decoration: none;
	padding: 0 25px 0 0;
	margin-bottom: 8px;
	background-image: url(/typo3conf/ext/me_tfs_template/Resources/Public/Images/download_tfs.svg);
	background-position: right 0px center;
	background-repeat: no-repeat;
	min-width: 200px;
	line-height: 50px;	
}
.rtedownload:hover {
	color: #282830;
	background-size: 50px 50px;
}

.mec-table.layout-8 .tab-content .accordion-header h4,
.mec-table.layout-8 .tab-content .accordion-header p,
.mec-table.layout-8 .tab-content .accordion-header header {
	display:inline;
	padding:0;
	margin:0;
}
.mec-table.layout-8 .tab-content .accordion-body .rtedownload {
	background-color:transparent;
}

.mec-table.layout-9 .tab-content .accordion-header h4,
.mec-table.layout-9 .tab-content .accordion-header p,
.mec-table.layout-9 .tab-content .accordion-header header {
	display:inline;
	padding:0;
	margin:0;
}
.mec-table.layout-9 .tab-content .accordion-body .rtedownload {
	background-color:transparent;
}

.mec-3cols a {
	word-break: break-all;
}
.mec-2cols a {
	word-break: break-all;
}

.mec-accordion.layout-1 {
	background-color:#EFF0F0;
}

.mec-accordion.layout-1 .accordion-item {
	border: 0px none;
}

.mec-accordion.layout-1 .accordion-item .accordion-header {
	padding: 0 25px;	
}

.mec-accordion.layout-1 .accordion-item .accordion-collapse {
	padding-top:25px;
	padding-bottom:0;
	background-color:#fff;
	margin-bottom:-52px;
}

@media (min-width: 1200px) {
	.mec-accordion.layout-1 .accordion-item {
		padding-bottom:33px;
	}
	
}

