/*============ Google fonts ============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*======= CSS variables =======*/
:root {
  --euroflag-color: #003399;
  --primary-font: 'Poppins';
  --white-color: #fff;
  --dark-color: #222;
  --accent-color: #004b78;
  --secondary-color: #a4d2d2;
  --primary-color: #0e9594;
  --body-bg-color: whitesmoke;
  --section-bg-color: whitesmoke;
  /*#202834≈*/
  --navigation-item-hover-color: #3b5378;

  --text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  --box-shadow: 0 5px 25px rgb(0 0 0 / 20%);

  --scroll-bar-color: #fff;
  --scroll-thumb-color: #282f4e;
  --scroll-thumb-hover-color: #454f6b;
}

/*======= Scroll bar =======*/
::-webkit-scrollbar {
  width: 11px;
  background: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  width: 100%;
  background: var(--scroll-thumb-color);
  border-radius: 2em;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-thumb-hover-color);
}

/*======= Main CSS =======*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--primary-font), sans-serif;
}

html {
  scroll-behavior: smooth;
}

.container {
  /*
  scroll-snap-type: mandatory;
  scroll-snap-points-y: repeat(3rem);
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  max-height: 100vh;
  */
}

body {
  background: var(--body-bg-color);
  transition: .5s ease;
}

.section {
  /*
  box-shadow: 0px 0px 9px 3px rgb(41 41 41 / 25%);
  scroll-snap-align: start;
  position: relative;
  */
  background: var(--section-bg-color);
  color: var(--accent-color);
  padding: 35px 200px;
  transition: 0.3s ease;
}

/*======= Header =======*/
header {
  z-index: 999;
  position: fixed;
  width: 100%;
  height: calc(5rem + 1rem);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  transition: 0.5s ease;
  transition-property: height, background;
}

header.sticky {
  height: calc(2rem + 2rem);
  backdrop-filter: blur(50px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid lightgray;
  -webkit-box-shadow: 0px 0px 9px 3px rgba(41, 41, 41, .25);
  -moz-box-shadow: 0px 0px 9px 3px rgba(41, 41, 41, .25);
  box-shadow: 0px 0px 9px 3px rgba(41, 41, 41, .25);
  background: white;
}

header .nav-bar {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 200px;
  transition: 0.3s ease;
}

.nav-close-btn,
.nav-menu-btn {
  display: none;
}

.nav-bar .logo {
  color: var(--white-color);
  /*font-size: 1.8em;*/
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: var(--text-shadow);
}

.navigation .nav-items a {
  color: var(--white-color);
  font-size: 1em;
  text-decoration: none;
  text-shadow: 1px 0px black;
  padding: 20px 16px;
  /* margin: 0px; */
  margin-right: 0;
  margin-left: -4px;
  ;
}

.menu-link-accent {
  background-color: var(--accent-color);
}

.navigation .nav-items a i {
  display: none;
}

.navigation .nav-items:hover {}

.navigation .nav-items a:not(:last-child) {
  /*margin-right: 45px;*/
}

/*======= Home =======*/
.home {
  min-height: 100vh;
  scroll-snap-align: center;
}

.home:before {
  z-index: 888;
  content: '';
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 0;
  left: 0;
  background: linear-gradient(transparent, var(--section-bg-color));
}

/*======= Background slider =======*/
.bg-slider {
  z-index: 777;
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.button {
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--accent-color);
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

.bg-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100vh;
}

.bg-slider .swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.swiper-slide .text-content {
  position: absolute;
  top: 25%;
  color: var(--white-color);
  margin: 0 200px;
  transition: 0.3s ease;
}

.swiper-slide .text-content .title {
  font-size: 4em;
  font-weight: 700;
  text-shadow: var(--text-shadow);
  margin-bottom: 20px;
  transform: translateY(-50px);
  opacity: 0;
}

.swiper-slide-active .text-content .title {
  transform: translateY(0);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
}

.swiper-slide .text-content .title span {
  font-size: 0.3em;
  font-weight: 300;
}

.swiper-slide .text-content p {
  max-width: 700px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-shadow: var(--text-shadow);
  padding: 20px;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--box-shadow);
  transform: translateX(-80px);
  opacity: 0;
}

.swiper-slide-active .text-content p {
  transform: translateX(0);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn {
  border: none;
  outline: none;
  background: var(--white-color);
  color: var(--dark-color);
  font-size: 1em;
  font-weight: 500;
  padding: 8px 25px;
  display: flex;
  align-items: center;
  margin-top: 40px;
  border-radius: 0px;
  cursor: pointer;
  transform: translateX(50px);
  opacity: 0;
}

.swiper-slide-active .text-content .read-btn {
  transform: translateX(0);
  opacity: 1;
  transition: 1s ease;
  transition-delay: 0.3s;
  transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn i {
  font-size: 1.6em;
  transition: 0.3s ease;
}

.swiper-slide .text-content .read-btn:hover i {
  transform: translateX(5px);
}

.dark-layer:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

.bg-slider-thumbs {
  z-index: 777;
  position: absolute;
  bottom: 10em;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.thumbs-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 3px;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--box-shadow);
}

.thumbs-container img {
  width: 50px;
  height: 35px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
}

.swiper-slide-thumb-active {
  border: 1px solid var(--white-color);
}

/*======= Media icons =======*/
.media-icons {
  z-index: 999;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 90px;
}

.media-icons a {
  color: var(--white-color);
  font-size: 1.7em;
  margin: 10px 0;
}

/*======= About section =======*/
.about h2 {
  font-size: 3em;
  font-weight: 600;
}

.about p {}



@media screen and (min-width: 1012px)  and (max-width: 1612px) {
  .app-card {
    width: 200px !important;
  }
  
  .span-input-attrib {
    width: 141px !important;
    padding: 10px !important;
  }
}


/* ====== Media queries (max-width: 1763px) =======*/
@media screen and (min-width: 1613px) and (max-width: 1763px) {
  .app-card {
    width: 250px !important;
  }

  .span-input-attrib{    
    width: 178px !important;
  }
}

/*======= Media queries (max-width: 1100px) =======*/
@media screen and (max-width: 1100px) {

  .form-step {
    padding: 24px !important;
  }

  .user-section {
    grid-template-columns: auto !important;
  } 


  header .nav-bar {
    padding: 0 50px;
  }

  .section {
    padding: 25px 50px;
  }

  .media-icons {
    right: 0;
    margin-right: 50px;
  }

  .swiper-slide .text-content {
    margin: 0 120px 0 50px;
  }

  .bg-slider-thumbs {
    bottom: 3em;
  }
}

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

  .form-step {
    padding: 12px !important;
  }

  .home:before {
    background: none;
  }

  .mouse_scroll {
    left: 88% !important;
    bottom: -0.3em !important;
  }

  .mouse {
    display: none;
  }

  .app-card {
    margin-right: 0 !important;
  }

  .span-input-attrib {
    width: 100% !important;
    margin: 0 20px 20px 20px !important;
    text-align: center;
  }
  
}

/*======= Media queries (max-width: 785px) =======*/
@media screen and (max-width: 885px) {

  .form-step {
    padding: 12px !important;
  }

  .hidden-mobile {
    display: none;
  }

  .footer {
    display: block !important;
  }

  .footer > div {
    margin-bottom: 10px;
  }
  
  
  header .nav-bar {
    padding: 25px 20px;
  }

  .image-35 {
    object-position: 25% 0;
  }

  .section {
    padding: 50px 20px 20px 20px;
  }

  .media-icons {
    margin-right: 20px;
  }

  .media-icons a {
    font-size: 1.5em;
  }

  .swiper-slide .text-content {
    margin: 0 70px 0 20px;
  }

  .swiper-slide .text-content .title {
    font-size: 3em;
  }

  .swiper-slide .text-content .title span {
    font-size: 0.35em;
  }

  .swiper-slide .text-content p {
    font-size: 0.9em;
  }

  /*======= Navigation menu =======*/
  .nav-menu-btn {
    display: block;
    color: var(--white-color);
    font-size: 1.5em;
    cursor: pointer;
  }

  .nav-close-btn {
    display: block;
    color: var(--dark-color);
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.3em;
    margin: 10px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .navigation {
    z-index: 99999;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
  }

  .navigation.active {
    visibility: visible;
    opacity: 1;
  }

  .navigation .nav-items {
    position: relative;
    background: var(--white-color);
    width: 400px;
    max-width: 400px;
    display: grid;
    place-content: center;
    margin: 20px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transform: translateY(-200px);
    transition: 0.3s ease;
  }

  .navigation.active .nav-items {
    transform: translateY(0);
  }

  .navigation .nav-items a {
    color: var(--dark-color);
    font-size: 1em;
    margin: 15px 50px;
    transition: 0.3s ease;
  }

  .navigation .nav-items a:hover {
    color: var(--navigation-item-hover-color);
    background-color: var(--primary-color);
  }

  .navigation .nav-items>a>i {
    display: inline-block;
    font-size: 1.3em;
    margin-right: 5px;
  }

  .swiper-slide .text-content .read-btn {
    font-size: 0.9em;
    padding: 5px 15px;
  }

  /*======= About section =======*/
  .about h2 {
    font-size: 2.5em;
  }

  .about p {
    font-size: 0.9em;
  }
}


.logo-image {
  height: 96px;
}
.logo-image-footer {
  height: 54px;
}

.menu-sticky {
  color: var(--accent-color) !important;
  transition: 0.5s ease;
  text-shadow: 1px 0px antiquewhite !important;
}

.logo-sticky {
  content: url(../assets/logo-blue-2.png);
  height: 84px;
}


/* MOUSE SCROLL PLACEHOLDER */
.mouse_scroll {
  z-index: 777;
  position: absolute;
  bottom: 0.7em;
  left: 50%;
  display: block;
  margin: 0 auto;
  width: 24px;
  height: 100px;
  margin-top: 125px;
}


.m_scroll_arrows {
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  transform: rotate(45deg);
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  margin: 0 0 3px 4px;
  width: 16px;
  height: 16px;
}


.unu {
  margin-top: 1px;
}

.unu,
.doi,
.trei {
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}

.unu {
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;

  animation-direction: alternate;
  animation-delay: alternate;
}

.doi {
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;

  animation-delay: .2s;
  animation-direction: alternate;

  margin-top: -6px;
}

.trei {
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
  animation-delay: .3s;
  animation-direction: alternate;
  margin-top: -6px;
}

.mouse {
  height: 42px;
  width: 24px;
  border-radius: 14px;
  transform: none;
  border: 2px solid white;
  top: 170px;
}

.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: white;
  position: relative;

  height: 4px;
  width: 4px;
  border: 2px solid #fff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@-moz-keyframes mouse-wheel {
  0% {
    top: 1px;
  }

  25% {
    top: 2px;
  }

  50% {
    top: 3px;
  }

  75% {
    top: 2px;
  }

  100% {
    top: 1px;
  }
}

@-o-keyframes mouse-wheel {
  0% {
    top: 1px;
  }

  25% {
    top: 2px;
  }

  50% {
    top: 3px;
  }

  75% {
    top: 2px;
  }

  100% {
    top: 1px;
  }
}

@keyframes mouse-wheel {
  0% {
    top: 1px;
  }

  25% {
    top: 2px;
  }

  50% {
    top: 3px;
  }

  75% {
    top: 2px;
  }

  100% {
    top: 1px;
  }
}

@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }

  50% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}


/* Reveals as scrolls */


.reveal {
  position: relative;
  opacity: 0;
}

.reveal.activated {
  opacity: 1;
}

.activated.fade-bottom {
  animation: fade-bottom 1s ease-in;
}

.activated.fade-left {
  animation: fade-left 1s ease-in;
}

.activated.fade-right {
  animation: fade-right 1s ease-in;
}

.activated.fade-up {
  animation: fade-up 1s ease-in;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-up {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.flex-kennzeichen {
  display: flex;
  justify-content: flex-start;
}

.flex-container {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
}

.form-control-custom {
  border-color: #c7c7c7;
  background: white;
  text-shadow: -1px -1px #fff;
  font-family: kennzeichen-mlt;
  font-size: 54px;
}

.form-label {
  font-weight: 500;
}

.kennzeichen-select {
  width: 100%;
  height: 46px;
  border-color: #c7c7c7;
  font-family: 'kennzeichen-mlt';
  font-size: 20px;
}

.hidden {
  visibility: hidden;
}

.nodisplay {
  display: none;
}

.license-plate-layout {
  max-width: 282px;
  display: flex;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 2px solid black;
  border-radius: 8px;
}

.plate-country {
  font-family: 'kennzeichen-mlt';
  /* display: inline; */
  background: var(--euroflag-color);
  color: white;
  width: 27px;
  /* margin: 0; */
  /* align-content: center; */
  /* align-items: center; */
  /* vertical-align: bottom; */
  padding-left: 5px;
  padding-top: 6px;
  font-size: 28px;
}

.div-country-id {
  font-family: 'kennzeichen-mlt';
  margin-left: 3px;
  font-size: 24px;
}

.plate-euro-flag {
  height: "18px";
  margin-left: -5px;
}

.plate-extra {
  font-size: 30px;
  font-family: 'kennzeichen-mlt';
  width: 24px;
  padding-top: 18px;
  padding-left: 3px;
}

.input-plate {
  margin: 5px;
}


/* On mouse-over, add a deeper shadow */
.app-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  -webkit-transform: scale(1.02);
}

.card-row {
  display: flex;
  align-content: space-around;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.card-img {
  height: 150px;
  padding: 30px;
  opacity: 0.8;
}

.card-img:hover {
  opacity: 0.9;
  transition: 0.5s;
}

.app-card.selected img{
  opacity: 1;
  transition: 0.5s;
}

.app-card.selected .app-card-button {
  opacity: 1;
  transition: 0.5s;
}

.mr-2 {
  margin-right: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.app-card.clickable {
  cursor: pointer;
}

.app-card {
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); */
  transition: 1.3s;
  border-radius: 5px;
  width: 300px;
  text-align: center;
  height: 200px;
  border: 1px solid lightgray;
  transition: 1.3s;
  margin-bottom: 2rem;
  margin-right: 2rem;
}

.app-card.selected {
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
  transition: 0.1s;
  -webkit-transform: scale(1.05);
}

.app-card.selected .app-card-button {
  background: var(--accent-color);
  transition: 0.5s;
  color: var(--white-color);
  transition: 0.5s;
}

.app-card-title {
  color: grey;
  transition: 1.3s;
  font-size: 18px;
  transition: 1.3s;
}

.app-card-button {
  opacity: 0.5;
  border: none;
  /* outline: 0; */
  /* display: inline-block; */
  padding: 6px;
  /* color: white;
  background-color: var(--accent-color); */
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
  transition: 0.3s;
}

.app-card-a {
  text-decoration: none;
  font-size: 22px;
  color: black;
  transition: 0.3s;
}

.app-card-button:hover,
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.span-input-attrib {
  border: 1px solid lightgray;
  padding: 10px 20px;
  /* color: white;
  background: var(--accent-color);*/
  cursor: pointer; 
  font-weight: 500;
  width: 216px;
  text-align: center;
  opacity: 0.6;
}

.span-input-attrib:hover {
  box-shadow: 0 4px 4px 0 rgb(0 0 0 / 20%);
  transition: 0.5s;
  -webkit-transform: scale(1.04);
}

.span-input-attrib.selected {
  background-color: var(--accent-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  opacity: 1;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
  transition: 0.5s;
  -webkit-transform: scale(1.08);
}

button {
  font-weight: 500;
}

.div-auto-attrib {

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;

}

/* Snackbar */

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  background-color: darkred;
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50%;
  /* Center the snackbar */
  bottom: 30px;
  /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#snackbar.success {
  background-color: var(--primary-color);
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

.form-control {
  padding: 5px 5px;
  font-size: 16px;
  width: 12em;  
  border: 1px solid #a6a6a6;
  border-top-color: #949494;
  border-radius: 1px;
  outline: 0;
}

.form-control.error, .form-control.error:focus{
  border: 1px solid red;
}

.radio-item label.error {
  color: red;
}

.radio-item label.error:before {
  border: 2px solid red;
}

/* .radio-item input[type=radio]:checked + label.error:after {
  background: red;
} */

.form-control:focus {
  border: 1px solid var(--accent-color);
  box-shadow: 0px 0px 9px 3px rgba(41, 41, 41, .25);
  transition: 0.2s;
}

.form-control.fw {
  width: 100%;
}

.user-section {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 20px;
}


/* Radio */

.radio-item {
  display: inline-block;
  position: relative;
  padding: 0 6px;
  margin-right: 15px;
}

.radio-item input[type='radio'] {
  display: none;
}

.radio-item label {
  color: #666;
  font-weight: normal;
}

.radio-item label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 5px;
  left: -6px;
  width: 20px;
  height: 20px;
  border-radius: 11px;
  border: 2px solid #004c97;
  background-color: transparent;
}

.radio-item input[type=radio]:checked + label:after {
  border-radius: 11px;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 9px;
  left: 4px;
  content: " ";
  display: block;
  background: #004c97;
}

.radio-item label {
  color: var(--accent-color);
  font-weight: 500;
}

.footer {
  display: grid;
  grid-template-columns: 270px auto auto auto 190px ;
  background: var(--white-color);
  font-weight: 300;
  gap: 30px;
  align-items: start;
  justify-content: space-between;
}

.footer > div {
  font-size: 14px;
}


.footer > div > h3 {
  font-size: 20px;
  font-weight: 600;
}


footer {
  min-height: 50px;
  padding-top: 35px;
  padding-bottom: 15px;
  border-top: 1px solid lightgray;
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  color: var(--accent-color);
  padding-left: 200px;
  padding-right: 200px;
}

a {
  text-decoration: none;
}

footer img {
  height: 54px;
}

footer div {
  font-size: 14px;
}

footer>div:not(:last-child) {
  margin-right: 15px;
}

footer h3 {
  font-weight: 600;
  font-size: 20px;
}

/* Order */

.zahlungsart-span {
  color: var(--accent-color);
  background-color: var(--white-color);
  padding: 20px;
  border: 1px solid lightgray;
  transition: 0.5s;
  cursor: pointer;
  text-align: center;
  min-width: 280px;
}

.zahlungsart-span:hover {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  -webkit-transform: scale(1.02);
}


.zahlungsart-span.checked {
  background-color: var(--accent-color);
  color: var(--white-color);
}

/* Media Query for Mobile Devices */
@media (max-width: 480px) {
  body {
      /* background-color: red; */
  }

  footer {
      display: block;
      text-align: center;
  }

  footer>div {
      padding-top: 20px
  }

  footer {
      padding-left: 20px;
      padding-right: 20px;
      transition: 0.3s ease;
  }

  .hidden-mobile {
      display: none !important;
  }
}

/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {
  body {
      /* background-color: yellow; */
  }

  footer {
      display: block;
  }

  footer div {
      margin-bottom: 10px;
  }

  footer {
      padding-left: 20px;
      padding-right: 20px;
      transition: 0.3s ease;
  }

  .hidden-mobile {
      display: none !important;
  }
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {
  body {
      /* background-color: blue; */
  }

  footer {
      padding-left: 50px;
      padding-right: 50px;
      transition: 0.3s ease;
  }

  .hidden-tablet {
      display: none !important;
  }
}

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
  body {
      /* background-color: green; */
  }

  footer {
      padding-left: 100px;
      padding-right: 100px;
      transition: 0.3s ease;
  }

  .hidden-desktop {
      display: none !important;
  }
}

/* Media Query for Large screens */
@media (min-width: 1281px) {
  body {
      /* background-color: white; */
  }

  footer {
      padding-left: 200px;
      padding-right: 200px;
      transition: 0.3s ease;
  }

  .hidden-large {
      display: none !important;
  }
}


.hidden {
  display: none;
}

/* GRIDS & FLEXBOXES */

.grid-2c {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 20px;
}