:root {
    --yellow: #ffbc0d;
    --yellow-off: #ac8112;
    --red: #ed1111;
    --lightred: #ed3030;
    --lightgreen: #55d434;
    --gray: #292929;
    --secondary: #646464;
    --lightgray: #f5f5f5;
    --content-background: white;
    --title-background: #20512e;
    --status-background: #ececec;
    --always-dark: #292929;
    --always-light: #f5f5f5;
}

*{
    font-family: Speedee, serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --yellow: #ffbc0d;
        --yellow-off: #8a6b1b;
        --red: #ed1111;
        --lightred: #ed3030;
        --gray: #f5f5f5;
        --secondary: #d3d3d3;
        --lightgray: #292929;
        --content-background: black;
        --title-background: #20512e;
        --status-background: #333333;
    }
}

body {
    margin: 0;
    background: var(--content-background);
    color: var(--gray);
}

.selectionbar {
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    width: 100%;
    padding: 8px 0;
    background-color: var(--title-background);
    transition: 0.4s ease all;
    font-size: 30px;
    display: flex;
    justify-content: center;
}

.navigation-container {
    position: relative;
    width: fit-content;
    #text-align: center;
}

.route {
    position: relative;
    font-weight: normal;
    font-size: 26px;
    cursor: pointer;
    transition: 0.4s all;
}

.route.active {
    font-size: 30px;
    font-weight: bold;
}

.arrow {
    position: absolute;
    left: -16px;
    transform: translateX(-100%);
    top: 0;
    transition: 0.4s ease all;
}

.titlebar {
    z-index: 2;
    background-color: var(--title-background);
    color: var(--always-light);
    font-weight: bold;
    font-size: 24px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 16px 16px;
    transition: 0.4s ease all;
}

#wrapper {
    position: relative;
    text-align: center;
    display: grid;
    align-items: center;
    height: 60px;
}

#logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#innerlogo {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#burger {
    height: 32px;
    padding: 0 4px;
}

@keyframes LogoFadeIn {
    0% {
        opacity: 0;
    }
    66% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes ProFadeIn {
    0% {
        transform: translateX(-200%);
        filter: drop-shadow(2px 0px 9px rgba(160, 123, 25, 0));
    }
    50% {
        transform: translateX(-200%);
        filter: drop-shadow(2px 0px 9px rgba(160, 123, 25, 0));
    }
    100% {
        transform: translateX(0);
        filter: drop-shadow(2px 0px 9px rgba(160, 123, 25, 0.68));
    }
}

@keyframes clip-fade {
  50% {
    -webkit-mask-position: left;
  }
  100% {
    -webkit-mask-position: left;
  }
}

.pro {
    /* background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #bc8d2f 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #d6d67c 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%); */
    background: linear-gradient(to right, #9c7238, #c99846);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 0px 9px rgba(160, 123, 25, 0.68));
}

#prologo {
    margin-left: 4px;
    transform: translateX(0);
    animation-name: ProFadeIn;
    animation-duration: 1s;
}

#proroute .pro {
    position: relative;
}

.pro:before {
    content: attr(data-text);
    position: absolute;
    background: white;
    background-position: -5px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-mask-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.8954175420168067) 50%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask-size: 300% 100%;
    -webkit-mask-position: right;
    animation: clip-fade 6s infinite;
    animation-delay: 1.3s;
    animation-play-state: running;
}

/*.pro:after {
    background: none;
    content: attr(data-text);
    left: 0;
    position: absolute;
    text-shadow: 2px 0px 9px #a07b196b;
    top: 0;
    z-index: -1;
    animation-name: LogoFadeIn;
    animation-duration: 1.5s;
}*/

.logoin {
    animation-name: LogoFadeIn;
    animation-duration: 1.5s;
}

#leave {
    position: absolute;
    top: 50%;
    left: 16px;
    padding: 8px;
    transform: translateY(-50%);
}

#leave.hide, #standard.hide, .restaurant-wrapper.hide, .last-restaurants.hide {
    display: none;
}

.hamburger-menu {
    position: absolute;
    top: 50%;
    height: 20px;
    width: 30px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    cursor: pointer;
}

.line {
    height: 3px;
    width: 100%;
    background: var(--always-light);
    transform-origin: right;
    transition: 0.4s transform;
}

#line2 {
    transition: 0.2s transform ease-out;
}

.cross #line1 {
    transform: rotate(-45deg) translateY(-3px);;

}

.cross #line2 {
    transform: scaleX(0);
}

.cross #line3 {
    transform: rotate(45deg) translateY(3px);
}

#admin {
    position: absolute;
    top: 50%;
    right: 10px;
    padding: 8px;
    transform: translateY(-50%);
}

#admin img {
    height: 25px;
    margin-top: 8px;
}

.white-border {
    border: solid var(--always-light);
}

.black-border {
    border: solid var(--gray);
}

.return-button {
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.content-container {
    position: fixed;
    background-color: var(--content-background);
    left: 0;
    top: 0;
    bottom: 0;
    padding-top: 60px;
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
}

.content {
    position: absolute;
    left: 0;
    top: 60px;
    bottom: 0;
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
    display: none;
}

#protab.content{
    display: unset;
    visibility: hidden;
    transition: left 0.4s ease;
}

#protab .coupon {
    padding: 0 16px;
}

.show {
    display: unset;
}

#protab.show {
    visibility: unset;
}

.pro-progress {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 10px;
    background: var(--status-background);
    border-radius: 5px;
    margin-top: 16px;
}

.pro-bar {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--yellow);
    transform: scaleX(0%);
    transform-origin: left;
    transition: 1s;
}

.pro-legend {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    font-weight: bold;
    margin-top: 4px;
    font-size: 14px;
}

.pro-points {
    text-align: center;
    font-weight: bold;
    font-size: 28px;
    margin-top: 4px;
}

.benefit-list {
    list-style-type: none;
    padding-left: 0;
    margin-block-end: 0;
}

.benefit-list li {
    background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%2220%22 height%3D%2220%22 viewBox%3D%220 0 20 20%22%3E%0A%3Ccircle r%3D%228%22 cx%3D%2210%22 cy%3D%2210%22 fill%3D%22%2363a615%22%2F%3E%3Cpath d%3D%22M 10 2 m 3.493 4.732 l -4.898 4.897 L 6.51 9.548 l -1.444 1.405 l 3.555 3.476 l 6.317 -6.273 l -1.444 -1.424%22 fill%3D%22%23f5f5f5%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 1.25rem 1.25rem;
    margin-bottom: .5rem;
    padding-left: 1.5rem;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

.fake-a {
    color: var(--yellow);
    text-decoration: underline;
    cursor: pointer;
}

.items {
    position: absolute;
    width: 100%;
    padding-top: 8px;
    background-color: var(--content-background);
    left: 0;
    top: 0;
    bottom: 0;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.container {
    position: relative;
    width: 700px;
    background: var(--lightgray);
    padding: 16px;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.5s;
}

.container:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--yellow);
    transform: scaleX(1%);
    transform-origin: left;
    transition: 0.5s;
}

.container.active:before, .infowrapper:hover:before {
    transform: scaleX(1);
}

.container.active {
    color: var(--always-dark);
}

#\31 0001543.active .seperator {
    background: var(--always-dark);
}

#\31 0001543.active input {
    color: var(--always-dark);
    border-bottom: var(--always-dark) 2px solid;
}

#\31 0001543.active .submit {
    background: var(--lightgray);
    color: var(--gray);
}

.container.unavailable .coupon-img {
    filter: grayscale(1);
}

.container.unavailable:before {
    background: #ed1111;
}

.seperator {
    background: var(--gray);
    height: 4px;
    border-radius: 2px;
    width: -webkit-fill-available;
    margin: 12px 0px;
    position: relative;
}

.m11column {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    position: relative;
}

#lm11count {
    font-size: 18px;
    margin-top: 4px
}

#m11count {
    margin-top: 0px;
}

#or {
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 8px;
}

.no-coupons {
    margin: 8px 16px;
    padding: 16px;
    border-radius: 16px;
    background: var(--lightgray);
}

.coupon {
    display: flex;
    justify-content: center;
    padding: 8px 16px;
}

.coupon .offerdata {
    display: flex;
    flex-direction: row;
}

.coupon .coupon-img {
    height: 96px;
    border-radius: 8px;
    z-index: 1;
}

.coupon .info {
    display: flex;
    margin: 0 8px;
    flex-direction: column;
    z-index: 1;
}

.coupon .info .name {
    font-weight: bold;
}

.coupon .info .validTo {
    font-size: 12px;
    color: var(--secondary);
    margin-top: auto;
    transition: 0.5s;
}

.container.active .info .validTo, .infowrapper:hover {
    color: var(--always-dark);
}

.statusbar {
    z-index: 2;
    background-color: var(--status-background);
    color: var(--gray);
    position: fixed;
    bottom: 0;
    transform: translateY(100%);
    left: 0;
    width: -webkit-fill-available;
    margin: 0 8px;
    padding: 0 8px;
    border-radius: 20px 20px 0 0 ;
    transition: 0.4s ease all;
}

.statusbar.active {
    transform: translateY(2px);
}

.status-container {
    display: flex;
    flex-direction: column;
}

@keyframes restaurantFadeIn {
    0% {
        grid-template-rows: 0fr;
        opacity: 0;
    }
    50% {
        grid-template-rows: 1fr;
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes restaurantFadeOut {
    0% {
        grid-template-rows: 1fr;
        opacity: 1;
    }
    50% {
        grid-template-rows: 1fr;
        opacity: 0;
    }
    100% {
        grid-template-rows: 0fr;
        opacity: 0;
    }
}

.restaurant-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transform-origin: top;
    animation-name: couponFadeOut;
    animation-duration: 0.8s;
}

.restaurant-box {
    overflow: hidden;
}

.restaurant-puffer {
    height: 8px;
}

.restaurant-status {
    display: flex;
}

.restaurant-address {
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
}

#remove-restaurant {
    position: relative;
    margin: auto 0 auto 8px;
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    background: linear-gradient(45deg, #ed1111, #ff7d7d);
}

#remove-restaurant:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--always-light);
    margin: auto 7px;
    height: 2px;
}

.last-restaurants {
    display: flex;
    flex-direction: column;
    margin: 32px 8px;
}

#last-puffer {
    min-height: 55px;
}

#nearby {
    margin-top: 0;
}

.last-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    padding: 8px;
    max-width: 732px;
    width: -webkit-fill-available;
    margin: 0 auto;
}

.delete-last {
    background: linear-gradient(45deg, #ed1111, #fb6262);
    padding: 4px;
    border-radius: 10px;
    font-size: 16px;
    margin: 0 8px;
    color: var(--always-light);
}

.last-option {
    text-align: center;
    margin: 8px 0;
}

.distance {
    font-style: italic;
    color: var(--secondary);
    padding-left: 4px;
}

.progress-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 8px 0 10px 0;
    align-items: center;
    opacity: 0;
    transition: 0.4s all;
}

.statusbar.active .progress-buttons {
    opacity: 1;
}

.selectioncount {
    font-size: 20px;
    font-weight: bold;
}

.progress-buttons .submit {
    margin: 0;
}

.progress-buttons .submit.delete {
    background: unset;
    color: var(--lightred);
    transition: 0.4s ease all;
}

.progress-buttons .submit.delete:hover {
    background: var(--lightred);
    color: var(--always-light);
}

#account {
    z-index: 2;
    position: absolute;
    left: 100%;
    display: none;
}

#restaurant {
    z-index: 2;
    position: absolute;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: center;
}

.infobar {
    display: flex;
    justify-content: center;
    margin: 8px 16px;
}

.infowrapper {
    display: flex;
    flex-direction: row;
}


.infocircle {
    z-index: 1;
    border: 2px solid;
    min-width: 20px;
    height: 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: bold;
}

.accounttext {
    z-index: 1;
    padding: 2px 8px 8px 8px;
}

@keyframes jump {
    0%, 33% {
        transform: translateY(0);
    }
    16.5% {
        transform: translateY(-14px);
    }
}

.blackframe {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    justify-content: center;
    transition: all 0.4s ease;
}

.loading-screen {
    z-index: 3;
}

.inactive {
    left: -50%;
}

.loading-screen .text {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 48px;
}

.loading-screen span {
    font-size: 48px;
    font-weight: bold;
    color: var(--always-light);
}

.loading-screen.show, .notificationframe.show {
    display: flex;
    align-items: center;
}

.loading-screen .dot {
    animation-name: jump;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

#secound {
    animation-delay: 0.4s;
}

#third {
    animation-delay: 1s;
}

.notificationframe {
    z-index: 4;
}

.notification {
    background: var(--content-background);
    width: fit-content;
    border-radius: 16px;
    min-width: 300px;
    margin: 16px;
    overflow: hidden;
}

.notification-title {
    text-align: center;
    background: var(--title-background);
    color: var(--always-light);
    font-weight: bold;
    font-size: 20px;
    padding: 8px;
}

.notification-content {
    padding: 8px 16px;
}

.notification-dismiss {
    width: 100%;
    cursor: default;
    padding: 8px 0;
    text-align: center;
    background: var(--yellow);
    color: var(--always-dark);
}


.codeframe {
    z-index: 5;
    position: fixed;
    transition: all 0.4s ease;
    display: none;
    width: 100%;
    height: 100%;
    background: var(--content-background);
    top: 0;
    left: 100%;
}

#account.show {
    display: unset;
}

#restaurant.show {
    display: flex;
}

.codeframe.show {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#restaurant.soon, .content-container .soon {
    left: 100%;
}

#protab.soon {
    transition: left 0s ease;
}

#standard.superinactive, .content-container .superinactive {
    left: -100%;
}

.flip {
    display: inline-block;
    transform: scaleX(-1);
}


#restaurant h1 {
    color: var(--gray);
    padding: 0;
    margin: 4px 16px;
}

#restaurantname {
    word-break: break-word;
    margin: 16px;
    max-width: 732px;
    width: -webkit-fill-available;
}

#restaurantname.correct {
    border-bottom: #1dbe1d 2px solid;
}

#restaurantname.incorrect {
    border-bottom: #dc2121 2px solid;
}

#dismiss-code {
    z-index: 6;
    position: absolute;
    top: 20px;
    left: 16px;
    padding: 8px;
    transform: translateY(-50%);
}

.active, #account.active {
    left: 0;
}

.code-title {
    z-index: 6;
    height: 40px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

h1,h2,p{
    font-family: Speedee, serif;
    color: var(--always-dark);
    text-align: center;

    max-width: 100%;
    padding-left:5%;
    padding-right: 5%;
}

.code-body{
    position: relative;
    border-radius: 10px;
    max-width: 88%;
    width: 395px;
    max-height: 90%;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 40px;
}

.retrieve.code-body{
    background-color: var(--yellow);
}

.code-body .text{
    width: 100%;
}
.code-body h2{
    margin: 0;
    margin-bottom: 18px;

    font-weight: 300;
    font-size: 23px;
    height: 23px;
}
.code-body h1{
    margin: 0;
    margin-bottom: 18px;
    font-size: 80px;
    font-weight: bold;
    font-family: Speedee, serif;
}

.code-body .qr{
    margin-top: 25px;
    position: relative;
    height: 40%;
    background-color: white;
    aspect-ratio: 1;
    border-radius: 5px;

}

.code-body .qr img{
    position: absolute;
    top: 8%;
    left: 8%;
    width: 84%;
    height: 84%;
}

#kundenservice, #freeburger, #protab, #myaccount {
    overflow-y: auto;
}

.explain{
    color: var(--gray);
    text-align: left;
    margin: 16px auto;
    padding: 0 16px;
    max-width: 732px;
}

#myaccount {
    padding: 16px 0;
}

.login {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    min-height: 100%;
    margin: 0 auto;
}

.login p, .login label, .login input, .login span {
    transition: 0.4s all;
}

.login p {
    color: var(--gray);
    text-align: left;
    padding: 0;
    margin: 16px auto;
}

.login h1 {
    color: var(--gray);
    text-align: center;
    padding: 0;
    margin: 0;
    transition: 0.4s all;
}



.login .key-value {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 2px 0;
    margin-top: 16px;
}

.login .key-value ~ .key-value {
    margin-top: 2px;
}

.login .key-value .key {
    font-weight: bold;
    margin-right: 4px;
    white-space: nowrap;
}

.login .key-value .value {
    line-break: anywhere;
    text-align: right;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 700px;
}

.login .key-value .value.align {
    margin-right: 20px;
    width: unset;
}

.login .key-value .value input {
    padding: 0;
    border: none;
    margin: 0;
    text-align: right;
    width: -webkit-fill-available;
}

.login .key-value .value input:focus {
    border-bottom: none !important;
}

.pen {
    height: 16px;
    margin-left: 4px;
}

.pen path {
    fill: var(--gray);
}

.pen.focus path {
    fill: var(--yellow);
}

.confirm-mail {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.mail-warning {
    margin-right: 4px;
    min-width: 32px;
    width: 32px;
}

.mail-warning path {
    stroke: var(--yellow);
}

.cancel-submit {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
}

.cancel-submit button {
    width: -webkit-fill-available;
}

.remove-connection, #remove-mail {
    margin-top: auto;
}

.remove-connection input {
    width: -webkit-fill-available;
    border: 2px solid;
    border-radius: 8px;
    padding: 8px 4px;
}

input[type="submit"] {
    font-weight: normal;
}

.remove-connection input:focus {
    border: 2px solid var(--yellow);
}

.remove-connection input.correct {
    border: 2px solid var(--lightgreen) !important;
}

.remove-connection span {
    display: block;
    font-size: 13px;
    text-align: center;
}

.credentials {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.credentials input {
    padding: 8px;
    border: var(--gray) 2px solid;
    border-radius: 8px;
}

.credentials input:focus {
    border: var(--yellow) 2px solid !important;
}

.credentials input[type="submit"] {
    margin-top: 16px;
}

.warning {
    border-left: var(--lightred) 2px solid;
    color: var(--lightred);
    padding: 4px 8px;
    margin-bottom: 12px;
}

.items .warning {
    width: 708px;
    margin: 0;
}

.warning.positive {
    border-left: var(--lightgreen) 2px solid;
    color: var(--lightgreen);
}

.login button {
    padding: 8px;
    border: var(--gray) 2px solid;
    border-radius: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    font-size: 16px;
    color: var(--gray);
    margin: 8px 0px;
}

.login button:disabled, .login input[type="submit"].disabled {
    opacity: 0.6 !important;
}

#forgot-password {
    text-align: right;
    font-size: 14px;
    color: var(--secondary);
    text-decoration: underline;
    margin-bottom: 4px;
    cursor: pointer;
}

.password-wrapper {
    padding: 0 8px;
    border: var(--gray) 2px solid;
    border-radius: 8px;
    display: flex;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 4px;
}

.password-wrapper:focus-within {
    border: var(--yellow) 2px solid !important;
}

#loginpw {
    border: none;
    margin: 0;
    padding: 8px 0;
    width: -webkit-fill-available;
}

#loginpw:focus {
    border: none !important;
}

.eye {
    height: 20px;
    width: 20px;
}

.eye .small {
    height: 16px;
    width: 16px;
    padding-left: 4px;
}

.eye path {
    fill: var(--gray);
}

.eye.focus path {
    fill: var(--yellow);
}

a {
    color: var(--yellow);
}

.contact {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}

.container.noanimation {
    transition: unset;
}

.container.noanimation:before {
    transition: unset;
}

.noanimation:hover:before {
    transform: scaleX(1%);
}

.noanimation:hover.offerdata, .noanimation:hover {
    color: var(--gray);
}

.form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    padding: 4px;
    margin: 8px 0;
    font-size: 16px;
    background: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    color: var(--gray);
    border: none;
    border-bottom: var(--gray) 2px solid;
}

input:focus, textarea:focus {
    border-bottom: var(--yellow) 2px solid !important;
}

textarea {
    padding: 4px 4px 0 4px;
    margin-bottom: 24px;
}

.submit {
    width: fit-content;
    background: var(--yellow);
    color: var(--always-dark);
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 12px;
    margin: 0 auto;
}

.submit.disabled {
    background: var(--yellow-off);
}

#puffer {
    height: 8px;
}

.propointbar {
    margin: 0 auto;
    padding: 4px 8px;
    background: var(--lightgray);
    border-radius: 12px;
    font-weight: bold;
    width: fit-content;
    transition: 0.4s all ease;
}

.pointbarwrapper {
    display: flex;
    justify-content: center;
    margin-left: 16px;
}

#pointbar {
    display: flex;
    flex-direction: row;
    overflow-y: scroll;
    width: 748px;
}

.ps {
    padding: 4px 8px;
    margin-right: 8px;
    background: var(--lightgray);
    border-radius: 12px;
    font-weight: bold;
    min-width: fit-content;
    transition: 0.4s all ease;
}

.ps.active, .propointbar.active {
    background: var(--yellow);
    color: var(--always-dark);
}

.ps.unavailable, .propointbar.unavailable {
    color: var(--red);
}

span.pi {
    font-weight: normal;
    font-style: italic;
    font-size: 14px;
}

@keyframes blink {
  50% {
    background: var(--always-light);
    -webkit-text-fill-color: var(--lightred);
  }
}

.new-feature {
    position: absolute;
    background: var(--lightred);
    font-size: 10px;
    border-radius: 8px;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    top: -8px;
    right: -8px;
    -webkit-text-fill-color: var(--always-light);
}

.new-feature.blink {
    animation: blink 1s step-start 0.5s 3;
}
