* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #00bfff;
    background-image: linear-gradient(to bottom right, #00bfff, #8cf6ff);
    min-height: -webkit-fill-available;
}

ul {
    margin: 10px 0 15px 20px;
}

@media only screen and (max-width: 360px) {
    li {
        font-size: 15px;
    }
}

@media only screen and (min-width: 400px) {
    li {
        font-size: 20px;
    }
}

@media only screen and (min-width: 600px) {
    li {
        font-size: 24px;
    }
}

@media only screen and (max-width: 600px) {
    span.prtrolle {
        display: none;
    }
}

ul#demo {
    list-style: none;
    margin: 0;
    font-size: 18px;
    grid-column: span 2;
    display: flex;
    flex-direction: column-reverse;
}


ul#demo li {
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, .25);
    border-radius: 9px;
    margin: 0 10px 10px 10px;
    background-color: white;
    box-shadow: 1px 1px 10px #999999;
    transition: all 0.15s;
    transition-timing-function: ease-out;
    justify-content: center;
    text-align: center;
}

ul#demo li p {
    display: inline-block;
}

ul#demo li:nth-child(even) {
    background-color: lightgray;
}

.main {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Open Sans, Arial, Helvetica, sans-serif;
}

input,
select {
    text-align: center;
    padding: .2rem;
    border: 2px solid gray;
}

select {
    cursor: pointer;
}

button#go:focus {
    outline: 0;
    border: 2px solid #00bfff;
}

input:focus,
select:focus {
    outline: 0;
    border-color: #00bfff;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

.red {
    border: red solid 2px;
}

.green {
    background-color: lightgreen !important;
}

.even {
    background-color: lightgray;
}

.container {
    display: inline-block;
}

.container .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.container .logo img {
    max-width: 100%;
}

.btnremove {
    width: auto;
    font-size: 1rem;
    float: right;
    overflow: auto;
}

ul#demo .removed {
    height: 0;
    margin: 0 10px;
    padding: 0 10px;
    border: 0 solid rgba(0, 0, 0, 0);
    overflow: hidden;
    transition: all 0.15s;
    transition-timing-function: ease-out;
}

.hidden {
    height: 0;
    margin: 0 10px;
    padding: 0 10px;
    border: 0 solid rgba(0, 0, 0, 0);
    overflow: hidden;
    transition: all 0s;
    transition-timing-function: ease-out;
}

.shown {
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, .25);
    border-radius: 8px;
    margin: 0 10px 10px 10px;
    box-shadow: 1px 1px 5px #c2c2c2;
    transition: all 0.15s;
    transition-timing-function: ease-out;
}

.item:nth-of-type(1) {
    margin-top: 12px;
    margin-left: 12px;
    border-radius: 9px 0px 0px 0px;
    border-right: 0.5px solid lightgray;
    border-bottom: 0.5px solid lightgray;
}

.item:nth-of-type(2) {
    margin-top: 12px;
    margin-right: 12px;
    border-radius: 0px 9px 0px 0px;
    border-left: 0.5px solid lightgray;
    border-bottom: 0.5px solid lightgray;
}

.item:nth-of-type(3) {
    margin-bottom: 20px;
    margin-left: 12px;
    border-radius: 0px 0px 0px 9px;
    border-right: 0.5px solid lightgray;
    border-top: 0.5px solid lightgray;
}

.item:nth-of-type(4) {
    margin-bottom: 20px;
    margin-right: 12px;
    border-radius: 0px 0px 9px 0px;
    border-left: 0.5px solid lightgray;
    border-top: 0.5px solid lightgray;
}

.container .item {
    position: relative;
    padding: 20px;
    background-color: #f5f5f5;
}

.container .item input,
.container .item select {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    border-radius: 8px;
}

span.icon {
    display: block;
    padding: 0 0 1rem 0;
    text-align: center;
    font-size: 3rem;
    position: relative;
    z-index: 0;
}

button#go {
    width: 100%;
    display: block;
    font-size: 1.5rem;
    padding: 8px 0;
    border: 2px solid gray;
    border-radius: 8px;
    background-color: #c4c4c4;
    /* For browsers that do not support gradients */
    background-image: linear-gradient(to top, #c4c4c4, #e4e4e4);
    /* Standard syntax (must be last) */
    cursor: pointer;
}

button#go:hover {
    background-color: #d9d9d9;
    /* For browsers that do not support gradients */
    background-image: linear-gradient(to top, #d9d9d9, #f7f7f7);
    /* Standard syntax (must be last) */
}

/* MODAL */
/* The Modal (background)  Start*/
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 2;
    /* Sit on top */
    padding-top: 25px;
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */

}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 5px 16px;
    background-color: #cacaca;
    color: black;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-body {
    padding: 20px 16px;
    width: 100%;
    overflow-y: auto;
}

.modal-footer {
    padding: 5px 16px;
    background-color: #cacaca;
    color: black;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: bold;
}

#myBtn {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

.modal-body p {
    margin-bottom: 10px;
}

/* Slut */

/*Tooltip Start*/
.tooltipbutton {
    transform: scale(.8);
    float: right;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 20px;
    border-radius: 100%;
    display: block;
    text-align: center;
    border: 2px solid lightgray;
    position: absolute;
    right: 10px;
    z-index: 1;
    top: 10px;
}

.tooltipbutton:focus {
    border: 2px solid #00bfff;
}

label {
    position: relative;
    z-index: 0;
}

.tooltipbutton .tooltip {
    display: none;
}

.tooltipbutton:hover .tooltip {
    display: block;
    color: gray;
    background-color: rgb(255, 255, 255);
    border-radius: 5px 5px 0px 5px;
    border: 2px solid gray;
    padding: 5px 5px;
    position: absolute;
    top: 25px;
    right: 0;
    text-align: left;
    z-index: 1;
    width: 200px;
}

svg .svg-elem-1 {
    stroke-dashoffset: 1722.7166748046875px;
    stroke-dasharray: 1722.7166748046875px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s
}

svg.active .svg-elem-1 {
    stroke-dashoffset: 0;
    fill: rgb(0, 105, 140)
}

svg .svg-elem-2 {
    stroke-dashoffset: 428.30914306640625px;
    stroke-dasharray: 428.30914306640625px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s
}

svg.active .svg-elem-2 {
    stroke-dashoffset: 0;
    fill: rgb(215, 215, 215)
}

svg .svg-elem-3 {
    stroke-dashoffset: 73.53380270382662px;
    stroke-dasharray: 73.53380270382662px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s
}

svg.active .svg-elem-3 {
    stroke-dashoffset: 0;
    fill: rgb(235, 235, 235)
}

svg .svg-elem-4 {
    stroke-dashoffset: 37.12789327742548px;
    stroke-dasharray: 37.12789327742548px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s
}

svg.active .svg-elem-4 {
    stroke-dashoffset: 0;
    fill: rgb(70, 70, 70)
}

svg .svg-elem-5 {
    stroke-dashoffset: 114.46733093261719px;
    stroke-dasharray: 114.46733093261719px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s
}

svg.active .svg-elem-5 {
    stroke-dashoffset: 0;
    fill: url("#linearGradient1584")
}

svg .svg-elem-6 {
    stroke-dashoffset: 35.710227966308594px;
    stroke-dasharray: 35.710227966308594px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s
}

svg.active .svg-elem-6 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-7 {
    stroke-dashoffset: 46.98117446899414px;
    stroke-dasharray: 46.98117446899414px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s
}

svg.active .svg-elem-7 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-8 {
    stroke-dashoffset: 23.57440948486328px;
    stroke-dasharray: 23.57440948486328px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s
}

svg.active .svg-elem-8 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-9 {
    stroke-dashoffset: 35.79240036010742px;
    stroke-dasharray: 35.79240036010742px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s
}

svg.active .svg-elem-9 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-10 {
    stroke-dashoffset: 58.60200500488281px;
    stroke-dasharray: 58.60200500488281px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s
}

svg.active .svg-elem-10 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-11 {
    stroke-dashoffset: 35.7101936340332px;
    stroke-dasharray: 35.7101936340332px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s
}

svg.active .svg-elem-11 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-12 {
    stroke-dashoffset: 52.73326873779297px;
    stroke-dasharray: 52.73326873779297px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3199999999999998s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3199999999999998s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s
}

svg.active .svg-elem-12 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-13 {
    stroke-dashoffset: 45.2974853515625px;
    stroke-dasharray: 45.2974853515625px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s
}

svg.active .svg-elem-13 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-14 {
    stroke-dashoffset: 35.79261016845703px;
    stroke-dasharray: 35.79261016845703px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s
}

svg.active .svg-elem-14 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-15 {
    stroke-dashoffset: 35.792667388916016px;
    stroke-dasharray: 35.792667388916016px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s
}

svg.active .svg-elem-15 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-16 {
    stroke-dashoffset: 58.965972900390625px;
    stroke-dasharray: 58.965972900390625px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s
}

svg.active .svg-elem-16 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-17 {
    stroke-dashoffset: 4.4447102546691895px;
    stroke-dasharray: 4.4447102546691895px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4000000000000004s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4000000000000004s
}

svg.active .svg-elem-17 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-18 {
    stroke-dashoffset: 57.3609733581543px;
    stroke-dasharray: 57.3609733581543px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s
}

svg.active .svg-elem-18 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}

svg .svg-elem-19 {
    stroke-dashoffset: 50.58881378173828px;
    stroke-dasharray: 50.58881378173828px;
    fill: transparent;
    -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
    transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s
}

svg.active .svg-elem-19 {
    stroke-dashoffset: 0;
    fill: rgb(0, 0, 0)
}