/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* normalize some stuff */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}/*
body {
    overflow-y: hidden;
}*/


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* alex */
#alex {
    height: 60px;
    width: 60px;
    position: absolute;
    position: fixed;
    bottom: 0;
    left: 5px;
    background-image: url('../imgs/alex.png');
    background-size: cover;
    z-index: 6;
}
#alex_info {
    height: 20px;
    width: 20px;
    position: absolute;
    position: fixed;
    bottom: 40px;
    left: 45px;
    background-image: url('../imgs/bulp.png');
    background-size: cover;
    z-index: 7;
}
#alex:hover #alex_info {
    transform-origin: 50% 50%;
    animation: bounce 1s linear alternate infinite;
}

@keyframes bounce {
    0%   {transform: translate3d(0,0,0) scale3d(1,1,1);}
    40%  {transform: translate3d(0,-30%,0) scale3d(.7,1.5,1);}
    100% {transform: translate3d(0,-100%,0) scale3d(1.5,.7,1);}
}

@media all and (min-width: 1000px) {
    #alex {
        height: 120px;
        width: 120px; 
    }
    #alex_info {
        height: 40px;
        width: 40px; 
        bottom: 100px;
        left: 80px;
    }
}
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* information modal */
.msg-wrapper {
    position: absolute;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.msg {
    height: 90%;
    width: 85%;
    max-width: 800px;
    background-color: white;
    border-radius: 2vmax;
    padding: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 12;
    animation: anim-fade-in 0.3s;
}
#welcome_msg::before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 20px solid transparent;
    border-right: 20px solid white;
    border-top: 20px solid transparent;
    border-bottom: 20px solid white;
    left: -30px;
    bottom: 3vh;
    z-index: 12;
}
.btn-msg {
    padding: 5px 10px;
    border: solid 2px rgb(241, 227, 4);
    border-radius: 2vmin;
    user-select: none;
    margin: 0 auto;
    background-color: rgb(29, 29, 31);
    color: rgb(241, 227, 4);
    display: inline-block;
}

.btn-msg-large {
    margin: 1vmax auto 2vmax auto;
    padding: 1.5vmax 3vmax;
    border: solid rgb(241, 227, 4) 1px;
    background-color: rgb(241, 227, 4);
    color: black;
    font-weight: bold;
    border-radius: 2vmax;
    font-size: 2vmax;
}
.btn-msg-large:hover {
    background-color: white;
}
.btn-msg {
    margin: 0.5vmax auto 1vmax auto;
    padding: 0.75vmax 1.5vmax;
    border: solid rgb(241, 227, 4) 1px;
    background-color: rgb(241, 227, 4);
    color: black;
    font-weight: bold;
    border-radius: 2vmax;
    font-size: 1.25vmax;
}
.btn-msg:hover {
    background-color: white;
}

.btn-msg-alert {
    margin: 0.5vmax auto 1vmax auto;
    padding: 0.25vmax 0.5vmax;
    border: solid red 1px;
    background-color: white;
    color: black;
    font-weight: bold;
    border-radius: 2vmax;
    font-size: 1.25vmax;
}
.btn-msg-alert:hover {
    background-color: red;
}

.msg-close-wrapper {
    text-align: right;
    padding: 2px;
}
.msg-close {
    font-size: 36px;
    font-weight: bold;
    color: red;
    cursor: pointer;
}

.msg-content {
    overflow-y: scroll;
    width:100%;
    height:100%;
}


#question_login {
    display: none;
}

@keyframes anim-fade-in {
    from{opacity: 0}
    to{opacity: 1}
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* message box for last question reached */
#msg_question_finished_wrapper {
    display: none;
}
#msg_question_finished {
    position: absolute;
    position: fixed;
    top: 40px;
    left: 40px;
    background-color: rgba(0, 128, 0, 0.6);
    width: 70%;
    max-width: 500px;
    padding: 20px;
    color: white;
    font-size: 1.8vmax;
    border-radius: 1vmax;
    display: none;
}
.anim-fade-in-msg {
    animation: anim-fade-in-msg 4s  ease-in-out;
}
@keyframes anim-fade-in-msg {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }  
    100% {
        opacity: 0;
    }   
}

/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* comlpete content wrapper */
#complete_content_wrapper {
    height: 100vh;
    width: 100vw;
    padding: 10px 20px 2px 20px;
    display: grid;
    grid-template-rows: 10vh auto 10vh 70px 20px;
    /*
    position: absolute;
    position: fixed;
    top: 0;
    left: 0;*/
}

/* backgrounds for content wrapper */
.bckg-left-to-right {
    background-image: linear-gradient(to bottom right, rgb(241, 227, 4), rgb(29, 29, 31));
}
.bckg-right-to-left {
    background-image: linear-gradient(to bottom right, rgb(29, 29, 31), rgb(241, 227, 4));
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* content header */
#content_header {
    display: grid;
    grid-template-columns: 50% 50%;
}
#logo_link {
    height: 20px;
    width: 88px;
    display: inline-block;
}
#logo {
    height: 20px;
    width: 88px; 
    margin-top: 18px;
    display: none;
}
#logo_link:hover .animated-path,
#logo_link:hover {
    stroke: white;
    fill: white;
}
.animated-path {
    stroke: black;
    fill: black;
    stroke-dashoffset: 0;
    stroke-dasharray: 200;
    animation: path-animation 3s ease-in;
}
@keyframes path-animation {
    0% {
        stroke-dashoffset: 200;
        fill-opacity: 0;
    }
    100% {
        stroke-dashoffset: 0;
        fill-opacity: 1;
    }   
}

@media all and (min-width: 1000px) {
    #logo {
        height: 44px;
        width: 174px; 
        margin-top: 18px;
    }
    #logo_link {
        height: 44px;
        width: 174px; 
    }
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* content content */
#content_content {
    display: grid;
    grid-template-columns: 10vw auto 10vw;
}
.question-arrow {
    font-size: 40px;
    user-select: none;
    display: flex;
    align-items: center;
}
.question-arrow:hover {
    color: white;
}
#question_arrow_l {
    justify-content: left;
}
#question_arrow_l span {
    transform: rotate(180deg);
}
#question_arrow_r {
    justify-content: right;
}
#question_wrapper span {
    font-size: 3vmax;
    font-weight: bold;
    line-height: 1.5em;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    word-wrap: anywhere;
}
@media all and (min-width: 1000px) {
    .question-arrow {
        font-size: 100px;
    }
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* content footer button  */
#content_footer_btn {
    text-align: center;
}
#btn_radom_question_wrapper {
    font-size: 22px;
    padding: 10px 15px;
    background-color: rgb(241, 227, 4);
    border: solid 2px rgb(241, 227, 4);
    border-radius: 2vmin;
    user-select: none;
}
#btn_radom_question_wrapper:hover {
    background-color: rgba(241, 227, 4, 0);
    color: rgb(241, 227, 4);
}
#btn_radom_question_wrapper:hover #btn_radom_question_icon_yellow {
    display: block;
}
#btn_radom_question_wrapper:hover #btn_radom_question_icon_black {
    display: none;
}
#btn_radom_question_icon_yellow {
    height: 22px;
    width: 22px;
    background-size: cover;
    background-image: url('../imgs/next-yellow.png');
    display: none;
    margin-right: 5px;
}
#btn_radom_question_icon_black {
    height: 22px;
    width: 22px;
    background-size: cover;
    background-image: url('../imgs/next-black.png');
    margin-right: 5px;
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* content footer check  */
.btn-check {
    padding: 3px 6px;
    border: solid 2px rgb(241, 227, 4);
    border-radius: 2vmin;
    user-select: none;
}
.btn-check-active,
.btn-check:hover {
    background-color: rgb(241, 227, 4);
    color: rgb(29, 29, 31);
}
.check-line {
    height: 2px;
    width: 30px;
    background-color: rgb(241, 227, 4);
}
@media all and (min-width: 1000px) {
    .btn-check {
        padding: 6px 10px;
        font-size: 24px;
        border: solid 3px rgb(241, 227, 4);
    }
    .check-line {
        height: 3px;
    }
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* content dsgvo  */
#content_dsgvo {
    font-size: 14px;
    color: white;
    text-align: center;
}
#content_dsgvo a,
#content_dsgvo a:focus,
#content_dsgvo a:visited,
#content_dsgvo a:active {
    color: white;
    text-decoration: none;
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* version number  */
#version_number {
    position: absolute;
    position: fixed;
    bottom: 2px;
    right: 2px;
    color: white;
    font-size: 10px;
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* helper classes */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hover-pointer {
    cursor: pointer;
}
.display-none {
    display: none;
}
.display-flex {
    display: flex;
}
.text-align-center {
    text-align: center;
}
.width-80-perc-center {
    width: 80%;
    margin: 0 auto;
}
.width-80-perc {
    width: 80%;
}
.width-100-perc {
    width: 100%;
}
.textalign-center {
    text-align: center;
}
.visibility-hidden {
    visibility: hidden;
}
.small-text {
    font-size: 1vmax !important;
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* animations */
.anim-stretch {
    animation: anim-stretch 1s linear alternate infinite;
}
@keyframes anim-stretch {
    0%   {transform: translate3d(0,0,0) scale3d(1,1,1);}
    40%  {transform: translate3d(0,10%,0) scale3d(.7,1.5,1);}
    100% {transform: translate3d(0,-10%,0) scale3d(1.5,.7,1);}
}
.anim-bounce {
    animation: bounce 1s linear alternate infinite;
}
@keyframes anim-bounce {
    0%   {transform: translate3d(0,0,0) scale3d(1,1,1);}
    40%  {transform: translate3d(0,-30%,0) scale3d(.7,1.5,1);}
    100% {transform: translate3d(0,-100%,0) scale3d(1.5,.7,1);}
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* style for input fields */
.input-field {
    outline: none;
    font-size: 2vamx;
    border: solid black 2px;
    height: 50px;
    font-size: 20px;
    padding: 0 5px;
}
.input-field:focus {
    border: solid yellow 2px;
}
.input-textarea {
    outline: none;
    font-size: 2vamx;
    border: solid black 2px;
    font-size: 20px;
    padding: 0 5px;
    display: block;
    width: 100%;
    resize: none;
    overflow: auto;
}
.input-textarea:focus {
    border: solid yellow 2px;
}

.input-radio {
    font-size: 20px;
}
.label-radio {
    font-size: 20px;
}
.input-radio:hover, 
.label-radio:hover {
    cursor:pointer;
}

























/* ADMIN STUFF STARTS HERE */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* header */
#header_admin {
    position: absolute;
    position: fixed;
    display: grid;
    grid-template-columns: 100px 20px auto 50px;
    height: 80px;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(241, 227, 4);
    box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    z-index: 9;
}
#logo_admin {
    height: 20px;
    width: 88px; 
    margin-top: 30px;
    margin-left: 5px;
}
#logo_link_admin:hover .animated-path,
#logo_link_admin:hover {
    stroke: white;
    fill: white;
}

#link_back {
    font-size: 3vmax;
    text-decoration: none;
    color: black;
    transform: rotate(180deg);
}
#link_back:hover {
    color: white;
}

#search_field {
    display: block;
    width: 96%;
    height: 50px;
    margin: 0 auto;
    border: none;
    background-image: url('../imgs/search-resized.png');
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    padding-left: 50px;
    outline: none;
    font-size: 20px;
    font-weight: bold;
}
#search_field:focus {
    border: solid 1px black;
}
#filter_link {
    height: 30px;
    width: 30px;
    background-image: url("../imgs/filter.png");
    background-size: cover;
}
#filter_link:hover {
    background-image: url("../imgs/filter_white.png");
}

#save_link {
    height: 30px;
    width: 30px;
    background-image: url("../imgs/save.png");
    background-size: cover;
}
#save_link:hover {
    background-image: url("../imgs/save_white.png");
}


@media all and (min-width: 1000px) {
    #header_admin {
        grid-template-columns: 200px 40px auto 50px;
    }
    #logo_admin {
        height: 44px;
        width: 174px; 
        margin-top: 18px;
        margin-left: 10px;
    }
    #logo_link_admin {
        height: 44px;
        width: 174px; 
    }
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* content wrapper */
#content_wrapper {
    position: relative;
    width: 100%;
    left: 0;
    top: 80px;
    display: grid;
    grid-template-columns: 50% 50%;
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* filter bar */
#bar_filter {
    position: absolute;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    overflow-y: scroll;
    background-color: yellow;
    z-index: 10;
    animation: slide-in 0.7s;
    display: none;
}
@keyframes slide-in {
     from {
        right: -500px;
     } 
     to {
        right: 0px;
     }  
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* btn new question */
#btn_new_question {
    position: absolute;
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    border: solid black 2px;
    background-color: yellow;
    color: black;
    z-index: 4;
}
#btn_new_question span {
    font-size: 30px;
    font-weight: bold;
}
#btn_new_question:hover {
    color: yellow;
    background-color: black;
    animation: scale 1.5s infinite;
}
@keyframes scale {
    0%{
        transform: scale(100%);
    }
    50%{
        transform: scale(120%);
    }
    100%{
        transform: scale(100%);
    }
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* result ul */
.result-title {
    display: grid;
    grid-template-columns: 5vmax auto;
    font-size: 4vmax;
    padding-top: 20px;
    padding-left: 20px;
}
.result-img {
    height: 4vmax;
    width: 4vmax;
    background-position: center;
    background-size: cover;
    padding-left: 4vmax;
}
.result-span {
    font-size: 3vmax;
}
#img_checkin {
    background-image: url("../imgs/checkin.png");
}
#img_checkout {
    background-image: url("../imgs/checkout.png");
}
.result-ul {
    text-decoration: none;
    list-style: none;
    width: 96%;
    margin: 5px auto;
    word-wrap: break-word;
}
.result-ul li{
    font-size: 3vmax;
    padding: 20px 30px;
    border-bottom: solid black 1px;
    background: rgb(233,233,242);
    background: linear-gradient(0deg, rgba(233,233,242,1) 0%, rgba(255,255,255,1) 50%, rgba(233,233,242,1) 100%);
}
.result-ul li:first-child {
    border-top: solid black 1px;
}

/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* modal */
.modal-wrapper {
    position: absolute;
    position: fixed;
    height: 100vh;
    width: 100vw;
    display: flex;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.modal {
    height: 90%;
    width: 85%;
    max-width: 800px;
    background-color: white;
    border-radius: 2vmax;
    padding: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 12;
    animation: anim-fade-in 0.3s;
}
.modal-confirm {
    padding: 40px;
    background-color: white;
    animation: anim-top 0.4s;
    border-radius: 2vmax;
    position: relative;
    z-index: 12;
}
.modal-confirm-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-confirm-btn {
    padding: 7px 12px;
    border-radius: 2vmax;
    border: solid 1px;
    margin: 20px 10px auto 10px;
    color: black;
}
.modal-confirm-btn a {
    color: black;
    text-decoration: none;
}
.modal-confirm-btn a:hover {
    color: black;
    text-decoration: none;
}
.modal-confirm-yes {
    border-color: green;
}
.modal-confirm-yes:hover {
    background-color: green;
    color: white;
}
.modal-confirm-no {
    border-color: red;
}
.modal-confirm-no:hover {
    background-color: red;
    color: white;
}

@keyframes anim-top {
    from{
        margin-top:-1300px;opacity:0
    } 
    to{
        margin-top:0;opacity:1
    }
}
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* header with x */
.msg-close-wrapper-right {
    text-align: right;
    padding: 2px;
    position: relative;
    z-index: 12;
}
.msg-close-wrapper-left {
    text-align: right;
    padding: 2px;
}
.msg-close {
    font-size: 36px;
    font-weight: bold;
    color: red;
    cursor: pointer;
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* helper classes */
.flex-center-div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hover-pointer {
    cursor: pointer;
}
.none-editable {
    user-select: none;
}
.display-none {
    display: none;
}
.overflow-y-hidden {
    overflow-y: hidden;
}

    /*

andagon farben
grau: rgb(29, 29, 31)
gelb rgb(241, 227, 4)


*/