@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Lato", sans-serif;
  color: white;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(50, 50, 50, 1);
  overflow-y: scroll;
}

::-webkit-scrollbar {
  display: none;
}

/* Divider ----------------------------------- */
  :root {
    --colour-block-hex: #410101;
  }

.skew-c-l{
  width:100%;
  min-height:100px;
  position: relative;
  background: linear-gradient(to left top, var(--colour-block-hex) 49%, #323232FF 50%);
}

.skew-cc-l{
  width:100%;
  min-height:100px;
  position: relative;
  background: linear-gradient(to left bottom, var(--colour-block-hex) 49%, #323232FF 50%);
}

.skew-c-r{
  width:100%;
  min-height:100px;
  position: relative;
  background: linear-gradient(to right top, var(--colour-block-hex) 49%, #323232FF 50%);
}

.skew-cc-r{
  width:100%;
  min-height:100px;
  position: relative;
  background: linear-gradient(to right bottom, var(--colour-block-hex) 49%, #323232FF 50%);
}

.grey-block {
  color:#823A9C;
  background: rgba(50, 50, 50, 1);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.colour-block {
  background: var(--colour-block-hex);
  width: 100%;
  color:#823A9C;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imgzoom {
  display: none;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.zoom-img-container {
  height: fit-content;
  width: fit-content;
  position: relative;
  padding: 10px;
  border: solid 5px #fff;
  border-radius: 10px;
}

.zoom-img-container > svg {
  position: absolute;
  right: -35px;
  top: -35px;
  cursor: pointer;
}


/* Top-Navbar ----------------------------------- */
.top-nav {
  position: fixed;
  display: flex;
  overflow: hidden;
  background: #292f36;
  width: 100%;
  height: 50px;
  align-items: center;
  top: 0;
  z-index: 3;
  box-shadow: 0 3px 10px 1px #000000;
}

.top-nav svg {
  cursor: pointer;
}

.top-nav-logo {
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
}

.top-nav-links {
  position: absolute;
  right: 10px;
  display: flex;
  flex-direction: row;
  height: 100%;
  align-items: center;
}

.top-nav-links li {
  list-style-type: none;
  padding: 0 10px 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
}

.top-nav-links li a {
  text-decoration: none;
  color: #868686;
}

.useraction-form {
  position: fixed;
  right: -200px;
  top: 50px;
  width: 200px;
  background: #292f36;
  z-index: 3;
  box-shadow: rgba(0, 0, 0, 0.5) 0 4px 12px;
}

.useraction-form li {
  list-style: none;
  width: 100%;
  cursor: pointer;
  display: flex;
}

.useraction-form li:hover {
  background: #303e4b;
}

.useraction-form li > a{
  display: flex;
  text-decoration: none;
  width: 100%;
  padding: 10px;
  align-items: center;
}

.useraction-form li > a > svg {
  margin-left: auto;
}

#useraction_form {
  transition: transform 0.3s ease-in-out; /* Übergangseffekt für transform */
}

#useraction_form.verschoben {
  transform: translateX(-200px); /* Verschiebung um 100 Pixel nach rechts */
}

.leitstelle-info {
  padding: 5px;
  font-size: 14px;
  margin-left: 5px;
}

.leitstelle-info i {
  color: #1c1f25;
  margin-right: 3px;
}

.leitstellen-status {
  font-size: 14px;
  padding: 5px;
  margin-left: 5px;
  border-radius: 10px;
}

.l-status-active {
  background: #6aa84f;
}

.l-status-inactive {
  background: #1c1f25;
}

.maintenence-mode {
  background: #c93b3b;
  color: white;
  padding: 5px;
  border-radius: 10px;
  font-size: 14px;
  margin-left: 5px;
}

  /* Header ------------------------------------------ */
.header {
  position: relative;
  display: flex;
  justify-content: center;
  background-image: url("../img/main/los-santos-skyline.webp");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  width: 100%;
  height: 280px;
  top: 50px;
  z-index: 2;
  box-shadow: 0 5px 10px 1px #000000;
  margin-bottom: 50px;
}

.header-logo {
  height: 100%;
}

/* ---------------------------------------------------- */

hr {
  border: 1px solid white;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 1200px;
  z-index: 1;
  margin-top: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.main-grid {
  display: grid;
  grid-template-columns: repeat(6, 180px);
  grid-auto-rows: 80px;
  gap: 24px;
  place-items: center;
  width: 1200px;
  z-index: 1;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.main-grid img{
  width: 90%;
  border-radius: 10px;
  box-shadow: 5px 5px 10px 2px black;
}

.main-grid h1 {
  font-size: 45px;
  font-weight: bold;
}
.main-grid span {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 150%;
}

.main-text-center {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}

.main-text-center span {
  width: 100%;
  text-align: center;
  font-weight: bold;
  line-height: 150%;
  font-size: 18px;
}

.main-text {
  padding-left: 40px;
  padding-right: 40px;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  font-weight: bolder;
}

.main-text span {
  margin-bottom: 20px;
}

.main-title {
  position: relative;
  display: flex;
  padding-left: 10px;
  margin-top: 40px;
  margin-bottom: 10px;
  transition: 0.5s;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 5px;
  border-bottom: 2px solid white;
}

#open_fp:hover {
  background: #5b0101;
}

#open_pp:hover {
  background: rgb(65, 64, 64);
}

.main-title span {
  font-weight: bolder;
  font-size: 25px;
}

.main-title img {
  position: absolute;
  height: 28px;
  transition: 1s;
  right: 20px;
}

.main-info {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
}

.main-info span {
  font-size: 12px;
}

.main-qualis {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 20px;
}

.main-qualis div {
  display: flex;
  flex-direction: column;
}

.main-qualis span {
  text-align: center;
  font-weight: bolder;
  font-size: 20px;
}

.main-qualis img {
  height: 200px;
}

.main-bewertungen {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 40px;
  padding-right: 40px;
}

.main-bewertungen img {
  height: 200px;
  border-radius: 250px;
}

.bewertung {
  display: flex;
  flex-direction: column;
  width: 200px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 5px 5px 10px 1px #000000;
}

.bewertung p {
  color: black;
  margin-top: 15px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.bewertung span {
  margin-top: 8px;
  text-align: center;
  line-height: 150%;
  color: black;
  font-weight: bold;
}

.stars {
  margin-top: 10px;
  display: flex;
  padding-left: 35px;
  padding-right: 35px;
  justify-content: space-around;
}

.stars svg {
  fill: orange;
  height: 20px;
}

/* Farbpalette ---------------------------------------- */
.farben-fav {
  width: fit-content;
  padding: 6px;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 60px solid white;
  position: absolute;
  margin-left: 1100px;
}

.farben-fav button {
  height: 50px;
  width: 130px;
  border: none;
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
  margin-inline: 4px;
  transform: translateY(-60px);
  color: black;
}

.fp-container {
  margin-top: 20px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.fp-divcolor {
  padding: 10px;
  width: 150px;
  height: 200px;
  align-items: center;
  background: white;
  border-radius: 10px;
}

.fp-divcolor-info {
  display: flex;
  flex-direction: column;
  width: 150px;
  margin-top: 20px;
}

.fp-divcolor-example {
  position: relative;
  display: flex;
  height: 100px;
  width: 144px;
  border: 3px solid black;
}

.divcolor-type {
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 5px;
  background: #fff;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.fp-divcolor-id {
  font-size: 10px;
  color: black;
  position: absolute;
  bottom: 10px;
  left: 12px;
}

.fp-divcolor-description {
  font-size: 15px;
  color: black;
  font-weight: bold;
}

.heart-filled-farbp {
  position: absolute;
  right: 12px;
  bottom: 10px;
  fill: #c93b3b;;
  cursor: pointer;
}

.heart-empty-farbp {
  position: absolute;
  right: 12px;
  bottom: 10px;
  fill: black;
  cursor: pointer;
}

.pp-container {
  margin-top: 20px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.pp-divcolor {
  padding: 10px;
  width: 150px;
  height: 160px;
  align-items: center;
  background: white;
  border-radius: 10px;
}

.pp-divcolor-info {
  display: flex;
  flex-direction: column;
  width: 150px;
  margin-top: 20px;
}

.pp-divcolor-example {
  display: flex;
  height: 100px;
  width: 144px;
  border: 3px solid black;
}

.pp-divcolor-id {
  font-size: 10px;
  color: black;
  position: absolute;
  bottom: 10px;
  left: 12px;
}

.pp-divcolor-description {
  font-size: 15px;
  color: black;
  font-weight: bold;
}

/* Slideshow ---------------------------------------- */

swiper-container {
  width: 900px;
  height: 100%;
  align-self: center;
  margin: 0 0 50px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 5px 10px 1px #000000;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  background: #292f36;
  border-radius: 50%;
  padding: 4px;
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  stroke-width: 4px;
  stroke: white;
  margin: 4px;
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

/* team page --------------------------------------- */

.container-team {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.team-member {
  width: 250px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(50,50,50);
  border: 5px solid white;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 5px 5px 10px 1px #000000;
  margin: 20px;
}

.bewerbung-link {
  margin-top: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.bewerbung-link label {
  color: black;
  font-weight: bold;
  margin-bottom: 5px;
}

.bewerbung-link input {
  padding: 3px;
  color: darkblue;
  width: 200px;
}

.bewerbung-q-text {
  margin-bottom: 50px;
}

.member-topbar {
  display: flex;
  width: 100%;
  height: 60px;
  background: #fff;
  align-items: center;
  justify-content: center;
}

.team-member img {
  height: 60%;
  position: absolute;
  bottom: 25px;
}

.member-topbar span {
  font-weight: 700;
  font-size: 18px;
  color: black;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.member-name {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 900;
  padding: 5px;
  text-align: center;
}

.bewerbung-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.bewerbung-image {
  height: 500px;
}

.bewerbung-textcontainer {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 10px;
  padding: 20px;
}

.bewerbung-textcontainer * {
  color: black;
}

.bewerbung-textcontainer-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.bewerbung-textcontainer-subtitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.bewerbung-textcontainer-subheadline {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.bewerbung-textcontainer-text {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 20px;
}

.bewerbung-button {
  background: #6aa84f;
  border-radius: 20px;
  text-decoration: none;
  border: none;
  color: white;
  font-weight: bold;
  width: fit-content;
  height: fit-content;
  font-size: 16px;
  padding: 20px;
  cursor: pointer;
  align-self: end;
  margin-top: 30px;
}

/* Tuning der Woche --------------------------------------- */

.main-tdw {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  width: 650px;
}

.tdw {
  width: 600px;
  padding: 20px;
  border-bottom: 1px solid lightgrey;
}

.tdw:last-child {
  border-bottom: none;
}

.tdw-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.tdw-info span {
  font-size: 18px;
  font-weight: bold;
  margin-left: auto;
}

.tdw-img img {
  border-radius: 20px;
  width: 600px;
  box-shadow: 1px 1px 10px 1px #000000;
}

.tdw-count-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding: 10px;
}

.tdw-kommentar {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
  padding: 10px;
  border: 2px solid white;
  border-radius: 10px;
}

.tdw-textarea {
  width: calc(100% - 20px);
  min-height: 60px;
  border-radius: 5px;
  padding: 10px;
  resize: none;
  color: black;
}

.tdw-kommentar-content form {
  display: flex;
  flex-direction: column;
}

.tdw-kommentar-senden {
  background: #6aa84f;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  color: white;
  font-weight: bold;
  width: fit-content;
  height: fit-content;
  padding: 8px;
  cursor: pointer;
  margin-top: 5px;
  margin-left: auto;
}

.tdw-kommentar-content {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  min-height: 60px;
  width: 100%;
}

.tdw-kommentar-usrname {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.tdw-kommentar-usravatar {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  margin-right: 10px;
  align-self: start;
}

/* Impressum  OLD --------------------------------------- */

.impressum-sel-div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.impressum-sel {
  padding: 6px;
  border-radius: 16px;
  background: #191c21;
}

.impressum-sel button {
  height: 50px;
  width: 150px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
}

.impressum-inactive {
  background: #191c21;
}

.impressum-inactive:hover {
  background: #21262c;
}

.impressum-active {
  background: rgba(50, 50, 50, 1);
}

#btn_impressum_ic {
  margin-right: 2px;
}

#btn_impressum_ooc {
  margin-left: 2px;
}

.impressum-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.impressum-headline {
  font-size: 30px;
  font-weight: bolder;
  width: 100%;
  margin-bottom: 30px;
}

.impressum-subheadline {
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  margin-top: 60px;
}

.impressum-text {
  margin-top: 20px;
  font-size: 16px;
  width: 100%;
  line-height: 150%;
}

.impressum-info {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  width: 100%;
  color: #6aa84f;
  margin-bottom: 40px;
}

/* Felgen --------------------------------------- */

.felgen-link-btn {
  background: white;
  border: none;
  color: black;
  font-weight: bold;
  width: fit-content;
  height: fit-content;
  font-size: 16px;
  padding: 20px;
  cursor: pointer;
  align-self: center;
  margin-top: 30px;
}

.felgen-link-btn:hover {
  background: whitesmoke;
}

.felgen-sel-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
}

.felgen-fav {
  width: fit-content;
  padding: 6px;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 60px solid white;
  position: absolute;
  margin-left: 1300px;
  transform: translateY(-48px);
}

.felgen-sel {
  width: fit-content;
  padding: 6px;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 60px solid white;
}

.felgen-fav button {
  height: 50px;
  width: 130px;
  border: none;
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
  margin-inline: 4px;
  transform: translateY(10px);
  color: black;
}
.felgen-sel button {
  height: 50px;
  width: 130px;
  border: none;
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
  margin-inline: 4px;
  transform: translateY(-60px);
  color: black;
}

.felgen-inactive {
  background: white;
}

.felgen-inactive:hover {
  background: whitesmoke;
}

.felgen-active {
  background: #c93b3b;
  color: white !important;
}

.felgen-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 20px;
  column-gap: 20px;
  margin-bottom: 80px;
  z-index: 1;
}

.felgen-span-kategorie {
  font-size: 30px;
  font-weight: bold;
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
  margin-top: 30px;
  grid-column: span 4;
}

.felge-img-container {
  border-radius: 10px;
  height: fit-content;
  overflow: hidden;
}

.felge-img-container > svg {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.heart-empty {
  fill: white;
}

.heart-filled {
  fill: #c93b3b;
}

.felge-img {
  width: 260px;
  object-fit: contain;
}

.felge-div {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 260px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  height: 290px;
  align-items: center;
}

.felge-span {
  margin-top: auto;
  padding-top: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: black;
  display: flex;
  flex-direction: column;
}

.felge-span span:last-child {
  font-weight: bolder;
  font-style: italic;
  font-size: 14px;
}

.felge-span * {
  color: black;
}

.fav-title {
  width: 1180px;
  display: flex;
}

.fav-title span {
  font-size: 25px;
  font-weight: bold;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  color: black;
}

.color-palette-container {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 60px;
  width: fit-content;
}

.color-palette-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  width: 150px;
  height: 150px;
  position: relative;
}

.color-palette {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 180px;
  height: 180px;
  position: absolute;
  top: -15px;
  left: -15px;
}

.color-palette-label {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  background: #fff;
  border-radius: 10px;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.main .color-palette-container * {
  color: black;
}

.color-information {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 20px;
  justify-content: space-around;
  width: 160px;
}

.color-information span {
  font-size: 18px;
  font-weight: bold;
}

.color-buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-left: 20px;
  align-items: center;
}

.color-buttons .color-button {
  background: #6aa84f;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  color: white;
  font-weight: bold;
  width: fit-content;
  height: fit-content;
  font-size: 16px;
  padding: 10px;
  cursor: pointer;
}

.color-trash {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #c93b3b;
  cursor: pointer;
  font-size: 20px;
}

.select-container {
  position: relative;
  width: 200px;
  background: #5b0101;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  z-index: 100;
}

.select-action {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.select-container .select-action i.select-arrow {
  color: white;
}

.select-dropdown {
  position: absolute;
  background: #5b0101;
  border: 1px solid #fff;
  z-index: 100;
  padding: 10px;
  width: calc(100% - 22px);
  left: 0;
  top: 100%;
  border-radius: 5px;
  color: white !important;
}

.select-dropdown .select-option {
  padding: 5px;
  cursor: pointer;
  border-radius: 3px;
  z-index: 100;
  color: #fff;
  position: relative;
}

.select-dropdown .select-option:hover {
  background: #c93b3b;
}

.select-container .select-selected {
  color: white;
}

.select-selected::before {
  content: "Bitte auswählen";
  color: lightgrey;
}

.select-selected:not(:empty)::before {
  content: "";
}

/* Login --------------------------------------- */



.screen__login {
  background: linear-gradient(90deg, #ce005d, #e30831);
  position: relative;
  height: 600px;
  width: 360px;
  box-shadow: 0 0 24px #a4546c;
  align-self: center;
  border-radius: 20px;
  overflow: hidden;
  margin: 50px 0 50px 0;
  border: 3px solid white;
}

.screen__register {
  background: linear-gradient(90deg, #ce005d, #e30831);
  position: relative;
  height: 700px;
  width: 460px;
  box-shadow: 0 0 24px #a4546c;
  align-self: center;
  border-radius: 20px;
  overflow: hidden;
  margin: 50px 0 50px 0;
  border: 3px solid white;
}

.screen__content {
  z-index: 1;
  position: relative;
  height: 100%;
}

.screen__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.screen__background__shape {
  transform: rotate(45deg);
  position: absolute;
}

.screen__background__shape1 {
  height: 520px;
  width: 520px;
  background: #FFF;
  top: -50px;
  right: 120px;
  border-radius: 0 72px 0 0;
}

.screen__background__shape6 {
  height: 730px;
  width: 830px;
  background: #FFF;
  top: -120px;
  right: 100px;
  border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
  height: 220px;
  width: 220px;
  background: #f85903;
  color: #ffe811;
  top: -172px;
  right: 0;
  border-radius: 32px;
}

.screen__background__shape3 {
  height: 540px;
  width: 190px;
  background: linear-gradient(270deg, #360a11, #6b2106);
  top: -24px;
  right: 0;
  border-radius: 32px;
}

.screen__background__shape8 {
  height: 540px;
  width: 230px;
  background: linear-gradient(270deg, #360a11, #6b2106);
  top: 50px;
  right: 0;
  border-radius: 32px;
}

.screen__background__shape7 {
  height: 400px;
  width: 200px;
  background: #6b0017;
  top: 470px;
  right: 10px;
  border-radius: 60px;
}

.screen__background__shape4 {
  height: 400px;
  width: 200px;
  background: #6b0017;
  top: 420px;
  right: 50px;
  border-radius: 60px;
}

.screen__background__shape5 {
  height: 100px;
  width: 200px;
  background: #000000;
  top: -40px;
  left: -80px;
  border-radius: 20px;
  display: flex;
  justify-content: right;
  align-items: center;
  padding: 10px;
  border: 5px solid #f85903;
}

.login__logo {
  height: 80px;
  transform: rotate(-45deg);
}

.login {
  width: 320px;
  padding: 156px 30px 30px;
}

.login__field {
  padding: 20px 0 0 0;
  position: relative;
}

.login__icon {
  position: absolute;
  top: 30px;
  fill: #7875B5;
}

.login__input {
  border: none;
  border-bottom: 2px solid #D1D1D4;
  background: none;
  padding: 10px 10px 10px 24px;
  font-weight: 700;
  width: 50%;
  transition: .2s;
  color: #292f36;
  font-family: Raleway, sans-serif !important;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
  outline: none;
  border-bottom-color: #6A679E;
}

.login__submit {
  background: #fff;
  font-size: 14px;
  margin-top: 30px;
  padding: 16px 20px;
  border-radius: 26px;
  border: 1px solid #D4D3E8;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  width: 80%;
  color: #4C489D;
  box-shadow: 0 2px 2px #5C5696;
  cursor: pointer;
  transition: .2s;
  font-family: Raleway, sans-serif !important;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover{
  border-color: #6A679E;
  outline: none;
}

.button__icon {
  font-size: 24px;
  margin-left: auto;
  fill: #7875B5;
}

.button__text {
  color: #4C489D !important;
}

.register-link {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 10px;
  border-radius: 30px;
  color: #4C489D;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-family: Raleway, sans-serif !important;
}

.error__msg {
  color: #FF9671;
  font-family: Raleway, sans-serif !important;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 20px;
}

.is-invalid {
  border-bottom: 2px solid #FF9671 !important;
}

/* Footer --------------------------------------- */

.footer {
  background: #292f36;
  position: relative;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-top: 20px;
  padding-bottom: 20px;
  height: auto;
  justify-content: space-around;
  align-items: center;
  margin-top: auto;
  box-shadow: 0 -5px 10px 1px #000000;
}

.footer-kontakt img {
  height: 140px;
  border-radius: 10px;
}

.footer-kontakt-text {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: bold;
  margin-right: 20px;
}

.footer-partner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 30%;
  justify-content: space-around;
  height: fit-content;
  background: #303e4b;
  border-radius: 10px;
  padding: 20px;
}

.partner-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-partner a {
  display: flex;
  justify-content: center;
}

.footer-partner img {
  margin: 10px;
  transition: .3s;
}

.footer-partner img:hover {
  scale: 1.1;
}

.footer-links img:hover {
  scale: 1.1;
}

.footer-links {
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}

.footer-links a {
  display: flex;
  justify-content: center;
}

.footer-links span,
.footer-partner span {
  justify-self: center;
  font-weight: bold;
  grid-column: span 5;
}

.footer-kontakt {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-links img {
  height: 80px;
  margin: 10px;
  transition: .3s;
}

.footer-info {
  height: fit-content;
  background: #303e4b;
  border-radius: 10px;
  padding: 10px;
  position: relative;

}



/* ----------Bewerbung------ */

.bewerbung-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 50px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px #000000;
}

.bewerbung-row h2 {
  color: black;
  font-weight: bold;
}

.bewerbung-formular {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.daten-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  background: white;
  border-radius: 10px;
  width: 250px;
}

.daten-container * {
  color: black;
}

.daten-input {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.daten-input input {
  padding: 3px;
}

.daten-input label {
  font-size: 16px;
  font-weight: bold;
}

.zweitjob-container {
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.zweitjob-container * {
  color: black;
}

.zweitjob-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.zweitjob-checkbox input {
  cursor: pointer;
}

.zweitjob-checkbox label {
  font-size: 16px;
  padding-left: 10px;
  font-weight: bold;
  cursor: pointer;
}

.zweitjob-text input {
  padding: 3px;
  width: 200px;
}

.fuehrerschein-container {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 10px;
  padding: 20px;
}

.fuehrerschein-container * {
  color: black;
}

.fuehrerschein-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.fuehrerschein-checkbox input {
  cursor: pointer;
}

.fuehrerschein-checkbox label {
  padding-left: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

h1 {
  margin-bottom: 5px;
}

.ql-toolbar {
  background: white;
  border-radius: 10px;
  color: black;
  margin-bottom: 10px;
  box-shadow: 0 0 10px #000000;
}

.ql-toolbar * {
  color: black;
}

#editor {
  border-radius: 10px;
  background: white;
  color: black;
  min-height: 200px;
  box-shadow: 0 0 10px #000000;
}

#editor * {
  color: black;
}

#toolbar {
  background: white;
}

#toolbar svg {
  fill: black;
}

.bew-actions {
  display: flex;
  flex-direction: row;
  width: 100%;
}

#submit_bew {
  background: #6aa84f;
  border-radius: 20px;
  text-decoration: none;
  border: none;
  color: white;
  font-weight: bold;
  width: fit-content;
  height: fit-content;
  font-size: 16px;
  padding: 20px;
  cursor: pointer;
  align-self: end;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: .3s;
}

#submit_bew:hover {
  scale: 1.1;
}

#save_bew {
  background: #3e94f1;
  border-radius: 20px;
  text-decoration: none;
  border: none;
  color: white;
  font-weight: bold;
  width: fit-content;
  height: fit-content;
  font-size: 16px;
  padding: 20px;
  cursor: pointer;
  align-self: end;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: .3s;
  margin-left: auto;
  margin-right: 20px;
}

#save_bew:hover {
  scale: 1.1;
}

/* -- Texteffekt -------------------------- */

.waviy {
  position: relative;
}
.waviy span {
  position: relative;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  animation: flip 2s infinite;
  animation-delay: calc(.2s * var(--i));
  font-family: 'Permanent Marker', cursive;
}
@keyframes flip {
  0%,80% {
    transform: rotateY(360deg)
  }
}


/* -- Aktionen -------------------------- */

.aktion-countdown {
  text-align: center;
  font-size: 100px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #22a72b;
}

.lsc-aktion{
  text-align: center;
  margin-top: 20px;
  font-size: 40px;
  text-decoration: underline;
}

.time-zeichen {
  font-size: 60px;
}

.aktion {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  justify-content: space-around;
}

.aktion-timer{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aktion-title {
  font-weight: bolder;
  font-size: 60px;
  rotate: -3deg;
  min-height: 50px;
  margin-top: 20px;
  margin-bottom: 20px;
  z-index: 2;
}

/* ----------------------------------------------- */

.bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.italic {
  font-style: italic;
}

.cursor-pointer {
  cursor: pointer;
}

.hide {
  display: none !important;
}

.enable-select * {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  -khtml-user-select: default;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}