@import url("froms.css");
@font-face {
    font-family: "Graphik-Regular";
    font-style: normal;
    font-weight: 400;
    src: url("../../fonts/Graphik-Regular-Web.woff") format("woff"), url("../../fonts/Graphik-Regular-Web.woff2") format("woff2");
}

@font-face {
    font-family: "Graphik-Medium";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../../fonts/Graphik-Medium-Web.woff") format("woff"), url("../../fonts/Graphik-Medium-Web.woff2") format("woff2");
}

@font-face {
    font-family: "Graphik-Semibold";
    src: url("../../fonts/Graphik-Semibold-Web.woff") format("woff"), url("../../fonts/Graphik-Semibold-Web.woff2") format("woff2");
}

:root {
    --clr-white: #ffffff;
    --pbc-blue: #02192A;
    --pbc-sky-blue: #ecfeff;
    --pbc-sky-blue-light: #F0FBFC;
    --pbc-grey: #707070;
    --pbc-grey-light: #B9B9B9;
    --pbc-error-red:#e34f4f;
    --co-clr-red: #EF0000;
    --co-clr-black: #2D2D2D;
    --co-clr-bg-bdazzled-blue: rgba(40, 95, 140, 0.1);
    --co-clr-txt-bdazzled-blue:rgb(40,95,140);
    --pbc-font-regular: Graphik-Regular;
    --pbc-font-medium: Graphik-Medium;
    --pbc-font-semibold: Graphik-Semibold;
}

* {
    margin: 0;
    padding: 0;
}

/***
PRE Code-
 */

pre {
    max-width: 100%;
    border: 1px solid;
    border-radius: 30px;
    min-height: 140px;
    padding: 3rem!important;
    overflow: scroll;
    background: darkslategray;
    color: white;
    font-size: 2.5rem;
    display: inline-block;
}



/**
Resetting margins, paddings, and borders
 */

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
}


/**
Typography
 */

/**
todo: apple grid and height funktioniert nicht
*/

html {
    font-size: 62.5%;
    height: 100%;
}

body {
    font-family: var(--pbc-font-regular), Sans-Serif;
    color: var(--co-clr-black);
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 0 auto;
    height: 100%;
}

* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}


/**

    a,
    a:visited {
        color: inherit;
    }
 */


/**
Layout & box sizing
 */

article,
aside,
footer,
header,
nav,
section,
main {
    display: block;
}

* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: inherit;
}


/**
Resetting specific element styles
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ol,
ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
}

img {
    border-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}

.lang-btn-txt {
    display: flex;
    flex-direction: column;
}

.lang-txt {
    color: var(--co-clr-black) !important;
    /*padding-left: 0.5rem;*/
    font-size: 1.6rem;
}

/**
Attributes & states
 */

[hidden] {
    display: none !important;
}

[disabled] {
    cursor: not-allowed;
}

:focus:not(:focus-visible) {
    outline: none;
}


/**
Fonts, Headings, Paragraphs
 */


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--pbc-font-medium);
    font-style: normal;
    font-weight: 500;
}

/***
paddings fuer db
 */

.pl-3 {
    padding-left: 2.5rem;
}

.pb-3 {
    padding-bottom: 2.5rem;
}

.ul-list-style {
    list-style: disc;
}

.text-clr-black {
    color: var(--co-clr-black)!important;
}

.co-brand-text-red {
    fill: var(--co-clr-red);
}
.btn-red {
    background-color: var(--co-clr-red) !important;
    color: var(--clr-white)!important;
}

.cls-1 {
    fill: var(--co-clr-black) !important;
}

.bold {
    font-family: var(--pbc-font-medium);
}

.h3 {
    font-size: 1.6rem;
}

.mb-5 {
    margin-bottom: 5.0rem;
}

.cls-3 {
    fill: var(--pbc-blue)!important;
}

/*
h1 {
    font-size: 4.375rem;
    margin: .67rem;
}

h2 {
    font-size: 3.28125rem;
    margin: .83rem;
}

h3 {
    font-size: 2.1875rem;
    margin: .999989rem;
}

p {
    font-size: 1.75rem;
    margin: 1rem;
}
*/

h1 {
    font-size: 2.8rem;
    margin: .67rem;
}

h2 {
    font-size: 2.25rem;
    margin: .83rem;
}

h3 {
    font-size: 1.6rem;
    margin: .999989rem;
}

p {
    font-size: 1.4rem;
    margin: 1rem;
}

.intro-page {
    height: 100vh;
}

.pt-sm-7{
    padding-top: 7rem;
}

.pt-sm-11 {
    padding-top: 11rem;
}

.slider-container {
    /*padding-top: 7rem;*/
    position: relative;
    /*max-height: 562px;*/
    height: 100%;
    margin: 0 auto;
    max-width: 100%;
    overflow-x: hidden;
}

.slide {
    position: absolute;
    /*top: 85px;*/
    width: 100%;
    /*height: 100%;*/
    transition: all .25s ease-in-out;
    /*background-color: var(--pbc-sky-blue);*/
}

.btn-container {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    padding: 2.5rem 2.5rem;
    align-items: center;
    /*background-color: var(--pbc-sky-blue);*/
    /*height: 125px;*/
    position: relative;
    bottom: 60px;
}

.btn-nav-center-margin {
    margin: 0 auto;!important;
}

.prevBtn,
.nextBtn {
    cursor: pointer;
}

/*.slide:nth-child(1) {*/
/*    left: 0;*/
/*}*/
/*.slide:nth-child(2) {*/
/*    left: 100%;*/
/*}*/
/*.slide:nth-child(3) {*/
/*    left: 200%;*/
/*}*/

.slide {
    transform: translateX(0%);
}

.font-size-3 {
    font-size: 2.5rem;
}


@media only screen and (min-width: 768px) {
    .btn-container{
        position: static;
        bottom: unset;
    }
}

/*------------- dropdown language ---------------*/

.lang-wrapper {
    position: absolute;
    right: 4px;
}

#weltkugel {
    width: 20px;
    height: 20px;
    fill: var(--pbc-sky-blue);
}

#weltkugel .cls-1 {
    fill: var(--pbc-sky-blue);
}

.text-white {
    fill: var(--pbc-sky-blue);
}

.btn-dropdown {
    align-items: center;
    border-radius: 15px;
    background-color: var(--clr-white);
    letter-spacing: -1px;
    padding: 0.9rem;
    margin: 1rem;
    font-size: 2rem;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
    z-index: 999;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    padding: unset;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 9999;
    text-align: center;
}

.dropdown-menu li {
    padding: 8px 8px;
    line-height: unset;
    font-size: 1.1rem;
}

.dropdown-menu li:hover {
    display: block;
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

a.dropdown-item {
    background-color: transparent;
    color: var(--pbc-blue);
    width: 2rem;
    padding: unset;
    font-family: var(--pbc-font-medium);
    font-size: 1.5rem;
    margin: unset;
    border: none;
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .dropdown {
        position: relative;
        display: inline-block;
        padding: unset;
    }
    #weltkugel .cls-1 {
        fill: var(--pbc-blue);
    }
    .slider-container {
        /*max-height: 645px;*/
    }
    .pt-md-11 {
        /*padding-top: 11rem;*/
    }

}

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

    .lang-wrapper {
        position: absolute;
        right: 30px;
    }

    .lang-btn-txt {
        display: flex;
        flex-direction: row;
    }

    .lang-txt {
        color: var(--co-clr-black) !important;
        padding-left: 0.5rem;
        font-size: 1.6rem;
    }
}

/*------------- End-Dropdown ---------------*/

.introImageContainer {
    overflow: hidden;
    max-height: 290px;
    margin-bottom: 2rem;
}

.introSvgContainer {
    overflow: hidden;
    /*display: flex;*/
    /*display: -webkit-flex;*/
    /*display: -moz-flex;*/
    /*justify-content: center;*/
    margin: 2rem 0;
    max-height: 45vh;
    text-align: center;
    /*margin-top: 11rem;*/
}

.introImageContainer img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.introImagePosition-sm {
    object-position: 0 0;
}

.introSvgContainer svg {
    /*transform:scale(0.4);*/
    /*-webkit-transform:scale(0.4);*/
    /*-moz-transform:scale(0.4);*/
    /*-ms-transform:scale(0.4);*/
    /*-o-transform:scale(0.4);*/
    max-width: 142px;
    max-height: 145px;
}


.introHead {
    font-size: 2.4rem;
    text-align: center;
    line-height: 1.3;
    margin:0 0 2.7rem;
}

.introText {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    font-size: 1.6rem;
}

.btn-intro {
    position: relative;
    z-index: 99999;
    bottom: 195px;
}


@media only screen and (min-width: 768px) {
    .introHead {
        font-size: 3.4rem;
    }
    .introImagePosition-md {
        object-position: 0 -200px;
    }

}


/**
generals
 */

.hidden {
    height: 0;
    opacity: 0;
    transition: all 500ms ease-out;
}

.show {
    height: 100%;
    opacity: 1;
    transition: all 500ms ease-out;
}

.progress {
    height: 20px;
    border-radius: 13px;
    padding: 2px;
    border: 1px solid var(--pbc-grey);
    margin: 0 0 24px 0;
}

.progress-bar {
    height: 100%;
    background: var(--pbc-blue);
    border-radius: 13px;
    transition: all 1s ease-out;
}

.text-color-gray {
    color: var(--pbc-grey);
}

.arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.active-border {
    border: 1px solid var(--pbc-blue);
}

.inactive-border {
    border: none!important;
}

.btn-inactive {
    display: none!important;
}


.btn-active {
    display: flex!important;
}

/**
Ref: https://codepen.io/codee47/pen/zvRvPv
Cool mouse scroll animation
 */

.icon-scroll,
.icon-scroll:before {
    position: absolute;
    left: 50%
}
.icon-scroll {
    width: 30px;
    height: 50px;
    margin-left: -20px;
    bottom: 50px;
    margin-top: -35px;
    border: 2px solid var(--pbc-blue);
    border-radius: 25px
}

@media (max-width: 767px) {
    .icon-scroll {
        position: relative
    }
}

.icon-scroll:before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--pbc-blue);
    margin-left: -4px;
    top: 8px;
    border-radius: 4px;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll
}

@keyframes scroll {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0;
        transform: translateY(26px)
    }
}

/* IGNORE EVERYTHING BELOW */

/*.media-scroller:hover {
    border: 2px solid !important;
    border-radius: 25px;
    transition: all ease-in-out;
    background: var(--pbc-sky-blue);
}
*/

/**
Button
 */
.home-btn {
    position: relative;
    align-items: center;
    background-color: var(--pbc-blue);
    border-radius: 50px;
    border: none;
    color: var(--pbc-sky-blue);
    font-size: 1.6rem;
    letter-spacing: -0.045rem;
    padding: 1.6rem 4.6rem;
    transition: all .5s ease;
    cursor: pointer;
    margin: unset;
}

.home-btn:hover {
    padding-right: 6.2rem;
    padding-left: 3.0rem;
}
.home-btn:hover > svg {
    opacity: 1;
}

.home-btn svg {
    width: 14px;
    height: 14px;
    padding-left: 5px;
    position: absolute;
    top: 50%;
    transform: translate(0%,-50%);
    opacity: 0;
    right: 3rem;
    transition: all .5s ease;
}



/**
header
 */

a.lang-link {
    background-color: unset;
    color: var(--pbc-grey-light);
    border:none;
    display: block;
    margin: 0.5rem;
    padding: 0;
    width: 100% ;
}

.languages a.active {
    color: var(--pbc-blue);
    font-family: var(--pbc-font-medium);
}

.languages a.active:focus {
    color: var(--pbc-blue);
    font-family: var(--pbc-font-medium);
    text-decoration: underline;
}

.opacity-2 {
    opacity: 0.05;
}

.h-100{
    height: 100%;
}

.form-logic-pages {
    border-top: 1px solid #02192a0d;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/**
Form items
 */

input[type=tel],
input[type=text],
input[type=date],
input[type=number],
textarea {
    font-size: 1.4rem;
}

button,
input[type="submit"],
.a-button {
    align-items: center;
    border: none;
    background-color: var(--pbc-blue);
    border-radius: 50px;
    color: var(--pbc-sky-blue);
    font-size: 2.5rem;
    /*display: flex;*/
    letter-spacing: -1px;
    padding: .67rem 1.875rem .77rem 1.875rem;
    margin: 1rem;
    border: 1px solid #361f20;
}
/**
NAVIGATION
 */

.btn-nav-start {
    justify-content: flex-start!important;
}

.btn-nav-end {
    justify-content: flex-end!important;
}

.btn-nav-center {
    justify-content: center!important;
}

.btn-nav-group {
    align-items: center;
    display: flex;
    justify-content: space-between;
    /*margin: 4.75rem 0;*/
    padding: 0 15px;
    border-radius: 32px;
    /*background: rgb(242, 242, 242) none repeat scroll 0% 0%;*/
}


input.btn-nav {
    background-color: white;!important;
}

.btn-wrapper {

}

.error {
    color: maroon;
}

/**
stepper
navigation
 */

.stepper {
    font-family: var(--pbc-font-medium);
    font-size: 1.4rem;
}

svg.fa-paper-plane {
    height: 2.5rem;
}

a.active {
    color: #707070;
}

svg.left {

}

svg.left {
    transform: rotate(180deg);
}

/*+
    Mobile Devices
*/

/***
Page Elements
 */

.description-bottom {
    /*color: var(--pbc-grey-light);*/
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

p.label {

}

.subtitle {
    font-size: 1.4rem;
}

.question-hidden {
    display: none;
    padding: 0;
    margin: 0;
}

/**
End Page Elements
 */


.header-sm {
    font-size: 1.75rem;
}

aside {
    padding-bottom: 2.5rem;
    padding-top: 1.5rem;
}




/* Small Devices */
@media (min-width: 576px) {

}

/* Medium Devices */
@media (min-width: 768px) {
    body {
        font-size: 1.6rem;
    }

    input[type=tel],
    input[type=text],
    input[type=date],
    input[type=number],
    textarea {
        font-size: 1.6rem;
    }

    h1 {
        font-size: 2.6rem;
        margin: .67rem;
    }

    h2 {
        font-size: 2.2rem;
        margin: .83rem;
    }

    h3 {
        font-size: 2rem;
        margin: .999989rem;
    }

    p {
        font-size: 1.6rem;
        margin: 1rem;
    }
    .subtitle {
       font-size: 1.75rem;
    }

    .stepper {
        font-size: 2rem;
    }
    aside {
        padding-bottom: 2.5rem;
        padding-top: 0rem;
    }




}

/* Large Devices */
@media (min-width: 992px) {
    .header-lg {
        font-size: 3.2rem;
    }
    .form-elements-group {
        /*display: flex;*/
        /*flex-direction: column;*/
        /*align-items: stretch;*/
        /*justify-content: center;*/
    }

    .intro-page {
        height: 100vh;
    }
}

/* Large Devices */
@media (min-width: 1240px) {

    .btn-container {
        width: 50vw;
        margin: 0 auto;
    }

    .slider-container {
        /*width: 80vw;*/
        width: 50vw;

    }
}

.paginate {
    width: 25px;
    height: 2px;
    cursor: pointer;
    transform: translate3d(0, 0, 0); /* fixes flicker in webkit*/
    padding: unset;

    /*
    position: relative;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    -webkit-filter: drop-shadow(0 2px 0px rgba(0, 0, 0, 0.2));*/
}


/**
ERROR PAGE
 */

body {
	/*background: currentColor;*/
}
/* I. Containers */
figure {
	font-size: 6px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 64em;
}
figcaption {
	color: #fff;
	display: flex;
	align-content: space-between;
	flex-wrap: wrap;
	height: 17em;
}
figcaption span:before, .sad-mac:before {
	content: "";
	display: block;
	width: 1em;
	height: 1em;
	transform: translate(-1em,-1em);
}
figcaption span {
	display: inline-block;
	margin: 0 2em;
	width: 4em;
	height: 6em;
}
.sr-text {
	overflow: hidden;
	position: absolute;
	width: 0;
	height: 0;
}
/* II. Sprites */
/* 1. Sad Mac */
.sad-mac {
	background: #fff;
	margin: 0 auto 7em auto;
	width: 23em;
	height: 30em;
}
.sad-mac:before {
	box-shadow: 1em 1em, 23em 1em, 4em 3em, 5em 3em, 6em 3em, 7em 3em, 8em 3em, 9em 3em, 10em 3em, 11em 3em, 12em 3em, 13em 3em, 14em 3em, 15em 3em, 16em 3em, 17em 3em, 18em 3em, 19em 3em, 20em 3em, 3em 4em, 21em 4em, 3em 5em, 21em 5em, 3em 6em, 7em 6em, 9em 6em, 15em 6em, 17em 6em, 21em 6em, 3em 7em, 8em 7em, 16em 7em, 21em 7em, 3em 8em, 7em 8em, 9em 8em, 15em 8em, 17em 8em, 21em 8em, 3em 9em, 21em 9em, 3em 10em, 10em 10em, 13em 10em, 21em 10em, 3em 11em, 11em 11em, 12em 11em, 21em 11em, 3em 12em, 21em 12em, 3em 13em, 10em 13em, 11em 13em, 12em 13em, 13em 13em, 14em 13em, 21em 13em, 3em 14em, 9em 14em, 15em 14em, 16em 14em, 21em 14em, 3em 15em, 17em 15em, 21em 15em, 3em 16em, 21em 16em, 4em 17em, 5em 17em, 6em 17em, 7em 17em, 8em 17em, 9em 17em, 10em 17em, 11em 17em, 12em 17em, 13em 17em, 14em 17em, 15em 17em, 16em 17em, 17em 17em, 18em 17em, 19em 17em, 20em 17em, 3em 22em, 4em 22em, 5em 22em, 14em 22em, 15em 22em, 16em 22em, 17em 22em, 18em 22em, 19em 22em, 20em 22em, 1em 27em, 2em 27em, 3em 27em, 4em 27em, 5em 27em, 6em 27em, 7em 27em, 8em 27em, 9em 27em, 10em 27em, 11em 27em, 12em 27em, 13em 27em, 14em 27em, 15em 27em, 16em 27em, 17em 27em, 18em 27em, 19em 27em, 20em 27em, 21em 27em, 22em 27em, 23em 27em, 1em 28em, 23em 28em, 1em 29em, 23em 29em, 1em 30em, 23em 30em;
}
/* 2. Letters */
._0:before {
	box-shadow: 2em 1em, 3em 1em, 1em 2em, 1em 3em, 1em 4em, 1em 5em, 4em 2em, 4em 3em, 4em 4em, 4em 5em, 2em 4em, 3em 3em, 2em 6em, 3em 6em;
}
._4:before {
	box-shadow: 1em 1em, 1em 2em, 1em 3em, 1em 4em, 4em 1em, 4em 2em, 4em 3em, 4em 4em, 2em 4em, 3em 4em, 4em 5em, 4em 6em;
}
.d:before {
	box-shadow: 1em 1em, 2em 1em, 3em 1em, 1em 2em, 4em 2em, 1em 3em, 4em 3em, 1em 4em, 4em 4em, 1em 5em, 4em 5em, 1em 6em, 2em 6em, 3em 6em;
}
.e:before {
	box-shadow: 1em 1em, 2em 1em, 3em 1em, 4em 1em, 1em 2em, 1em 3em, 2em 3em, 3em 3em, 1em 4em, 1em 5em, 1em 6em, 2em 6em, 3em 6em, 4em 6em;
}
.f:before {
	box-shadow: 1em 1em, 2em 1em, 3em 1em, 4em 1em, 1em 2em, 1em 3em, 2em 3em, 3em 3em, 1em 4em, 1em 5em, 1em 6em;
}
.n:before {
	box-shadow: 1em 1em, 1em 2em, 1em 3em, 1em 4em, 1em 5em, 1em 6em, 4em 1em, 4em 2em, 4em 3em, 4em 4em, 4em 5em, 4em 6em, 2em 3em, 3em 4em;
}
.o:before {
	box-shadow: 2em 1em, 3em 1em, 1em 2em, 1em 3em, 1em 4em, 1em 5em, 4em 2em, 4em 3em, 4em 4em, 4em 5em, 2em 6em, 3em 6em;
}
.r:before {
	box-shadow: 1em 1em, 2em 1em, 3em 1em, 4em 2em, 1em 2em, 1em 3em, 1em 4em, 2em 3em, 3em 3em, 1em 5em, 1em 6em, 4em 4em, 4em 5em, 4em 6em;
}
.t:before {
	box-shadow: 1em 1em, 2em 1em, 3em 1em, 2em 2em, 2em 3em, 2em 4em, 2em 5em, 2em 6em;
}
.u:before {
	box-shadow: 1em 1em, 1em 2em, 1em 3em, 1em 4em, 1em 5em, 4em 1em, 4em 2em, 4em 3em, 4em 4em, 4em 5em, 2em 6em, 3em 6em;
}
/* III. Responsiveness */
/* This cannot be smoothly done using viewport units; sprite pixels will look divided when font size is a floating point. */
@media screen and (min-width: 720px) {
	figure {
	    font-size: 7px;
	}
}
@media screen and (min-width: 1440px) {
	figure {
	    font-size: 8px;
	}
}

/**
END OF ERROR PAGES
 */

/**
LOADING SPINNER
 */


/**
NR 1
 */

#loader {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #444444;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.center {
    position: absolute!important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}


/**
NR 2
 */

#load-spinner {

}


.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid var(--pbc-blue);
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

/**
END OF LOADING SPINNER
 */

/***
Style einzelne elemente
 */

.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;
}

/***
END of Style einzelne elemente
 */
