.rg_datum {
    width: 10vw;
}

.rg_check {
    width: 5vw;
}

.rg_nr {
    width: 10vw;
}

.rg_sum {
    width: 15vw;
    text-align: right;
}

.rg_cmd {
    width: 6vw;
}

.tix_datum {
    width: 10vw;
}

.tix_nr {
    width: 6vw;
}

.tix_title {
    width: 48vw;
}

.tix_status {
    width: 12vw;
    text-align: right;
}

.tix_masterbadge {
    width: 7vw;
    text-align: right;
}

.tix_cmd {
    width: 10vw;
}

.tix_indicator {
    width: 0.3vw;
    height: 4vh;
    margin-right: 1vw;
    border-radius: 0.5vw;
}

.tix_indicator_closed {
    background-color: green;
}

.tix_indicator_new {
    background-color: red;
}

.tix_indicator_open {
    background-color: red;
}

.tix_indicator_customer {
    animation: blinker 1s linear infinite;
}

.tix_indicator_wait {
    background-color: gray;
}

.tix_s {
    justify-content: center;
    display: flex;
    padding-top: 0.4vh;
    padding-bottom: 0.4vh;
    border-radius: 1.5vh;
}

.tix_s_new {
    color: white;
    background-color: red;
}

.tix_s_open {
    color: white;
    background-color: red;
}

.tix_s_customer {
    animation: blinker 1s linear infinite;
}

.tix_s_wait {
    color: white;
    background-color: gray;
}

.tix_s_closed {
    color: white;
    background-color: green;
}

.tix_s_master {
    color: white;
    background-color: blue;
}

@keyframes blinker {
    from,
    49.9% {
          background-color: orange;
          color: rgb(77, 77, 77);
    }
    50%,
    to {
          background-color: red;
          color: white;
    }
}

#app_tix_detail {
    display:none;
}

#app_tix_new {
    display:none;
}

#tix_close_btn {
    display: none;
}

.tix_head_title {
    font-size: 1.5vw;
    width: 75vw;
    text-align: right;
}

.app_tix_detail_container {
    display: block;
    width: 100%;
    height: 100%;
}

.app_tix_detail_head {
    height: 6vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2vh;
    border-bottom: solid 1px;
    border-bottom-color: red;
}


.app_tix_content {
    
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    height: 61vh;
}

.app_tix_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;

}

.app_tix_bubble {
    width: 80%;
    margin-bottom: 1vw;
    padding: 1vw;
    border: solid 1px;
    border-radius: 1vw;
}

.tix_bubble_customer {
    background-color: rgb(102, 102, 255);
    border-color: blue;
}

.tix_bubble_antilo {
    background-color: rgb(218, 218, 255);
    border-color: blue;
    color: rgb(0, 0, 80);
}

.app_tix_stamp {
    font-size: 1vw;
    color: gray;
}

.app_tix_right {
    text-align: right;
}

.app_tix_enter {
    height: 10vh;
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding-left: 1vw;
    padding-right: 1vw;
    border-color: white;
    border: solid 1px;
    border-radius: 1vw;
}

.app_tix_enter:hover {
    border-color: blue;
}

.app_tix_upload {
    height: 10vh;
    display: none;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    padding-left: 1vw;
    padding-right: 1vw;
    border-color: white;
    border: solid 1px;
    border-radius: 1vw;
}

.app_tix_message {
    width: 100%;
}

.app_tix_send {
    width: 10vw;
    height: 5vh;
    background-color: gray;
    border-radius: 2.5vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 1.2vw;
}

.app_tix_send_active {
    background-color: green;
    cursor: pointer;
}

.app_tix_send_active:hover {
    background-color: red;
}

.app_tix_input {
    outline: none;
    background-color: transparent;
    color: white;
    border: none;
    width: 72vw;
    height: 7vh;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5vw;
}

.app_tix_attach {
    width: 72vw;
    height: 7vh;
    background-color: yellow;
}

#app_tix_attach {
    display: none;
}

.app_tix_hinweis_bak {
    height: 10vh;
    border-color: rgb(255, 167, 167);
    background-color: rgba(255, 0, 0, 0.502);
    font-size: 2vw;
    color: white;
    border: solid 1px;
    border-radius: 1vw;
    display: none;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    padding-left: 1vw;
    padding-right: 1vw;
}

.app_tix_hinweis_closed {
    border-color: red;
    background-color: rgb(98, 0, 0);   
}

.app_tix_hinweis_master {
    border-color: blue;
    background-color: rgb(0, 0, 71);
}

.app_tix_hinweis {
    height: 10vh;
    font-size: 2vw;
    color: white;
    border: solid 1px;
    border-radius: 1vw;
    display: none;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    padding-left: 1vw;
    padding-right: 1vw;
    border-color: red;
    background-color: rgb(98, 0, 0);   
    margin-top: 4vh;
}



.new_tix_content {
    background-color: black;
    height: 64vh;
    width: 60vw;
    margin-left: 18vw;
    margin-right: 18vw;
    margin-top: 1vw;
    border: 1px solid;
    border-radius: 1vw;
    padding: 1vw; 
    align-items: center;
    justify-content: flex-start;
    overflow-y: scroll;
}

.new_tix_btns {
    background-color: yellow;
    width: 54vw;
    height: 6vh;
    margin-left: 18vw;
    margin-right: 18vw;
}

.new_tix_headline {
    font-size: 2vw;
}

.new_tix_class_line {
    display: flex;
    height: 4vw;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1vw;
}

.class_txt {
    margin-left: 1vw;
    font-size: 1.5vw;
}

.class_btn {
    margin-right: 1vw;
}

.new_tix_class_line:hover {
    background-color: rgb(51, 51, 51);
    border-bottom: solid 1px;
    border-bottom-color: red;
}

.tix_i_ueberschrift {
    font-size: 1.5vw;
    margin-bottom: 1vh;
}

.tix_i_kurz {
    height: 4vh;
    width: 96%;
    font-size: 2vh;
    color: white;
    background-color: transparent;
    border: 0;
    outline: 1.5px solid;
    outline-color: rgb(120, 120, 120);
    padding: 1.5vh;
    margin-bottom: 2vh;
}

.tix_i_lang {
    height: 24vh;
    width: 96%;
    font-size: 2vh;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-color: transparent;
    border: 0;
    outline: 1.5px solid;
    outline-color: rgb(120, 120, 120);
    padding: 1.5vh;
    margin-bottom: 2vh;
}













.user_container {
    height: 84vh;
    width: 100%;
    overflow-y: scroll;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}

.user_card {
    width: 120px;
    height: 160px;
    background-color: yellow;
}







.user_name {
    width: 25vw;
}

.user_status {
    justify-content: center;
    display: flex;
    padding-top: 0.4vh;
    padding-bottom: 0.4vh;
    border-radius: 1.5vh;
    width: 10vw;
}

.user_status_active {
    background-color: green;
}

.user_status_inactive {
    background-color: red;
}

.user_dropdown {
    display: none;
    position: absolute;
    background-color:  rgb(43, 43, 43);
    width: 20vw;
    margin-top: 22vh;
    margin-left: -8vw;
    flex-direction: column;
    align-items: center;
    justify-content: left;
}

.user_dropitem {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 6vh;
    width: 20vw;
}

.user_dropitem:hover {
    background-color: rgb(72, 72, 72);
}

.user_dropitem_disabled {
    color: rgb(60, 60, 60);
}

.user_dropdown_icon {
    height: 2vw;
    margin-left: 1vw;
    margin-right: 1vw;
}

.user_dropitem_disabled {
    color: gray;
} 


#app_user_new {
    display:none;
}


.app_user_detail_container {
    display: block;
    width: 100%;
    height: 100%;
}

.app_user_detail_head {
    height: 6vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2vh;
    border-bottom: solid 1px;
    border-bottom-color: red;
}

.new_user_content {
    background-color: black;
    height: 70vh;
    width: 70vw;
    margin-left: 10vw;
    margin-right: 10vw;
    margin-top: 5vh;
    border: 1px solid;
    border-radius: 1vw;
    padding-left: 1vw;
    padding-right: 1vw;
    align-items: center;
    justify-content:space-around;
    overflow-y: scroll;
}

.new_user_headline {
    font-size: 2vw;
}

.new_user_ueberschrift {
    font-size: 1.4vw;
    margin-bottom: 1vh;
}

.new_user_i_kurz {
    width: 44%;
}

.new_user_i_lang {
    width: 95%;
}


.app_user_send {
    width: 10vw;
    height: 5vh;
    background-color: gray;
    border-radius: 2.5vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 1.2vw;
}

.app_user_send_active {
    background-color: green;
    cursor: pointer;
}

.app_user_send_active:hover {
    background-color: red;
}

.line_dual_input {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 99%;
}



.profil_headline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px;
    border-bottom-color: red;
    color: white;
    /* font-size: 2vw; */
    margin-bottom: 3vh;
}

.profil_settingselement {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    /* font-size: 1.5vw; */
    height: 5vh;
    width: 82vw;

    margin-left: 10vw;
}

.profil_settingselement:hover {
    background-color: rgb(51, 51, 51);
    border-bottom-color: red;
    cursor: pointer;
}

.profil_settingsleft {
    display: flex;
    width: 56vw;
}

.profil_settingsright {
    display: flex;
}

.profil_settingsname {
    width: 40vw;
}

.profil_settingsvalue {
    width: 40vw;
}

.profil_editicon {
    width: 2.5vw;
}

#p_e_1 {
    display: none;
}

.p_status {
    justify-content: center;
    display: flex;
    padding-top: 0.4vh;
    padding-bottom: 0.4vh;
    border-radius: 1.5vh;
    width: 15vw;
}

.p_status_active {
    background-color: green;
}

.p_status_inactive {
    background-color: red;
}

.p_status_disabled {
    background-color: gray;
}



.app_vertical_spacer_4 {
    height: 4vh;
}

.app_horizontal_spacer_3 {
    width: 3vw;
}

#setup2fa_step2 {
    display: none;
}

#app_tix_upload {
    display: none;
}

.tix_inputtype_select {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    height: 4vh;
}

.tix_inputtype {
    display: flex;
    height: 4vh;
    align-items: center;
    margin-left: 1vw;
    padding-left: 1vw;
    padding-right: 1vw;
    border-top-left-radius: 1vw;
    border-top-right-radius: 1vw;
    border-left: 1px solid;
    border-right: 1px solid;
    border-top: 1px solid;
    cursor: pointer;
}

.tix_inputtype_active {
    background-color: white;
    color: black;
}

.tix_inputtype:hover {
    border-color: red;
}

.tix_markzone {
    border-color: blue;
    background-color: rgb(181, 181, 255);
    border-style: dashed;
}

#fileselector {
    display: none;
}

.tix_doclink {
    color: yellow;
    text-decoration: none;
}

.tix_doclink:hover {
    color: red;
}

#app_aktuell {
    overflow-y: scroll;
}


.doc_datum {
    width: 15vw;
}

.doc_titel {
    width: 50vw;
}

.doc_icon {
    width: 3vw;
}

.doc_akt_datum {
    width: 10vw;
}