@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");

body {
    margin: 0px;
    /*overflow: hidden;*/
    background: #f7f7f7;
    font-family: "Roboto", "sans-serif";
}

.header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 30px);
    height: 64px;
    background-color: #617b8a;
    color: white;
    font-size: 22pt;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 0 15px 0 15px;
    z-index: 100;
}

.wrapper {
    position: relative;
    margin-top: 64px;
}

.subtitle {
    position: relative;
    width: calc(100% - 2rem);
    padding: 1rem;
    padding-top: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555555;
    font-size: large;
    text-align: center;
}

.text-button {
    cursor: pointer;
    color: #617b8a;
    margin: 5px;
    padding: 5px;
}

.content {
    position: relative;
    width: calc(100% - 2rem);
    padding: 1rem;
    padding-top: 5px;
    /*height: calc(100% - 225px - 10px);*/
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
}

.img-card {
    width: 100%;
}

.impressum-content {
    padding-top: 74px;
}

.icon-button {
    width: 25px;
    cursor: pointer;
}

.datenschutz {
    margin-bottom: 20px;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8DCE89;
    color: white;
    padding: 20px;
    border-radius: 100px;
    font-size: 50px;
    margin-bottom: 30px;
}

.item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: #fff;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    padding: 15px;
    max-width: 500px;
    width: 95%;
    margin-bottom: 10px;
    cursor: pointer;
}

.vbox {
    display: flex;
    flex-direction: column;
    width: 68%;
}

.sub-item {
    font-size: initial !important;
}

.participants {
    color: #808080;
}

.item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f08268;
    border-radius: 100px;
    color: #ffffff;
    width: 54px;
    height: 54px;
}

.item-content {
    color: #808080;
    font-size: 15pt;
    width: 75%;
    margin-left: 15px;
}

.card {
    display: flex;
    background: #fff;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.impressum-card {
    width: 85%;
    background: white;
    border-radius: 4px;
    display: flex;
    margin: 1rem;
    padding: 1rem;
    position: relative;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    justify-content: center;
    align-items: center;
    max-width: 500px;
    flex-direction: column;
}

.message {
    background-color: #e2001a;
    color: white;
    border-radius: 90px;
    padding: 5px;
    margin-bottom: 30px;
    text-align: center;
    display: none;
}

.succ-message {
    background-color: #8dce89;
    color: white;
    border-radius: 90px;
    padding: 5px;
    margin-bottom: 30px;
    text-align: center;
    display: none;
}

/*=====================IMPORT CSS=========================*/

/************Material Checkbox BEGIN****************/
.pure-material-checkbox {
    z-index: 0;
    position: relative;
    display: inline-block;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 16px;
    line-height: 1.5;
}

/* Input */
.pure-material-checkbox > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -8px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}

/* Span */
.pure-material-checkbox > span {
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

/* Box */
.pure-material-checkbox > span::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 3px 11px 3px 1px;
    border: solid 2px; /* Safari */
    border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    border-radius: 2px;
    width: 18px;
    height: 18px;
    vertical-align: top;
    transition: border-color 0.2s, background-color 0.2s;
}

/* Checkmark */
.pure-material-checkbox > span::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 1px;
    width: 10px;
    height: 5px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}

/* Checked, Indeterminate */
.pure-material-checkbox > input:checked,
.pure-material-checkbox > input:indeterminate {
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox > input:checked + span::before,
.pure-material-checkbox > input:indeterminate + span::before {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox > input:checked + span::after,
.pure-material-checkbox > input:indeterminate + span::after {
    border-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
}

.pure-material-checkbox > input:indeterminate + span::after {
    border-left: none;
    transform: translate(4px, 3px);
}

/* Hover, Focus */
.pure-material-checkbox:hover > input {
    opacity: 0.04;
}

.pure-material-checkbox > input:focus {
    opacity: 0.12;
}

.pure-material-checkbox:hover > input:focus {
    opacity: 0.16;
}

/* Active */
.pure-material-checkbox > input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.pure-material-checkbox > input:active + span::before {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-checkbox > input:checked:active + span::before {
    border-color: transparent;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}

/* Disabled */
.pure-material-checkbox > input:disabled {
    opacity: 0;
}

.pure-material-checkbox > input:disabled + span {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    cursor: initial;
}

.pure-material-checkbox > input:disabled + span::before {
    border-color: currentColor;
}

.pure-material-checkbox > input:checked:disabled + span::before,
.pure-material-checkbox > input:indeterminate:disabled + span::before {
    border-color: transparent;
    background-color: currentColor;
}
/********************Material CheckBox END*****************/

/************Material Input Field BEGIN********************/

.material-input-group {
    position: relative;
    margin-bottom: 30px;
}
.material-input {
    font-size: 16px;
    padding: 16px;
    padding-top: 24px;
    padding-bottom: 8px;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    border-bottom: 1px solid #757575;
    background: #f5f5f5;
    border-radius: 4px 4px 0px 0px;
}
.material-input:focus {
    outline: none;
    background: #e0e0e0;
}

/* LABEL ======================================= */
.material-input-label {
    color: #999;
    font-size: 1rem;
    font-weight: 400;
    position: absolute;
    pointer-events: none;
    left: 16px;
    top: 19px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

/* active state */
.material-input:focus ~ label,
.material-input:valid ~ label {
    top: 10px;
    font-size: 0.75rem;
    color: #e2001a;
}

/* BOTTOM BARS ================================= */
.bar {
    position: relative;
    display: block;
    width: 100%;
}
.bar:before,
.bar:after {
    content: "";
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #e2001a;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}
.bar:before {
    left: 50%;
}
.bar:after {
    right: 50%;
}

/* active state */
.material-input:focus ~ .bar:before,
.material-input:focus ~ .bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.material-input:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #e2001a;
    }
    to {
        width: 0;
        background: transparent;
    }
}
@-moz-keyframes inputHighlighter {
    from {
        background: #e2001a;
    }
    to {
        width: 0;
        background: transparent;
    }
}
@keyframes inputHighlighter {
    from {
        background: #e2001a;
    }
    to {
        width: 0;
        background: transparent;
    }
}

/************Material Input Field END********************/


/* Button style */
.button {
    border: none;
    border-radius: 2px;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    color: white;
    box-shadow: 0 0 4px #999;
    outline: none;
    margin: 10px 0px;
    width: 83%;
    max-width: 500px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    cursor: pointer;
}

.blue {
    background-color: #154954;
}

/* Ripple effect BLUE*/
.ripple-blue {
    background-position: center;
    transition: background 0.8s;
}
.ripple-blue:hover {
    background: #206370 radial-gradient(circle, transparent 1%, #206370 1%) center/15000%;
}
.ripple-blue:active {
    background-color: #398291;
    background-size: 100%;
    transition: background 0s;
}

/************Material Button BEGIN********************/

.material-button {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    color: white;
    background-color: #8dce89;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.material-button::-moz-focus-inner {
    border: none;
}

/* Overlay */
.material-button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transition: opacity 0.2s;
}

/* Ripple */
.material-button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px; /* Safari */
    height: 32px; /* Safari */
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 1s, transform 0.5s;
}

/* Hover, Focus */
.material-button:hover,
.material-button:focus {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.material-button:hover::before {
    opacity: 0.08;
}

.material-button:focus::before {
    opacity: 0.24;
}

.material-button:hover:focus::before {
    opacity: 0.3;
}

/* Active */
.material-button:active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14),
        0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.material-button:active::after {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}

/* Disabled */
.material-button:disabled {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
    box-shadow: none;
    cursor: initial;
}

.material-button:disabled::before {
    opacity: 0;
}

.material-button:disabled::after {
    opacity: 0;
}

/************Material Button END********************/
/********************Material Select START*****************/

/* select starting stylings ------------------------------*/
.select {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    position: relative;
    border-bottom: 1px solid #757575;
    background: #f5f5f5;
    border-radius: 4px 4px 0px 0px;
    margin-bottom: 30px;
}

.select-text {
    position: relative;
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    height: 60px;
    font-size: 16px;
    padding: 16px;
    padding-top: 24px;
    padding-bottom: 8px;
    font-size: 16px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

/* Remove focus */
.select-text:focus {
    outline: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

/* Use custom arrow */
.select .select-text {
    appearance: none;
    -webkit-appearance: none;
}

.select:after {
    position: absolute;
    top: 25px;
    right: 10px;
    width: 0;
    height: 0;
    padding: 0;
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* LABEL ======================================= */
.select-label {
    color: #999;
    font-size: 1rem;
    font-weight: 400;
    position: absolute;
    pointer-events: none;
    left: 16px;
    top: 19px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

/* active state */
.select-text:focus ~ .select-label,
.select-text:valid ~ .select-label {
    color: #e2001a;
    top: 10px;
    font-size: 0.75rem;
    transition: 0.2s ease all;
}

/* BOTTOM BARS ================================= */
.select-bar {
    position: relative;
    display: block;
    width: 100%;
}

.select-bar:before,
.select-bar:after {
    content: "";
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #e2001a;
    transition: 0.2s ease all;
}

.select-bar:before {
    left: 50%;
}

.select-bar:after {
    right: 50%;
}

/* active state */
.select-text:focus ~ .select-bar:before,
.select-text:focus ~ .select-bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/********************Material Select END*****************/
