body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2vw;
    color: lightgray;
    background-image: url('images/rz.jpg');
    height: 100vh;
    width: 100vw;
}

#bgVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    aspect-ratio: 1920/1080;
    z-index: -10;
}

.checkitem {
    width: 1.1vw;
    height: 1.1vw;
    border: solid 1px;
    border-color: gray;
    border-radius: 50%;
}

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

.checkitem_checked {
    background-color: red;
}

.maincontroller {
    display: none;
    position: relative;
    opacity: 80%;
}

.headline {
    height: 6vh;
    width: 96vw;
    background-color: rgb(53, 53, 53);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding-left: 2vw;
    padding-right: 2vw;
}

.head_logo {
    color: rgb(255, 255, 255);
    width: 10vw;
}

.head_right {
    display: flex;
    align-items: center;
    
    justify-content: flex-end;

}

.head_icon {
    width: 2vw;
}

.logo_clamp {
    color: red;
}

.button {
    padding: 0.8vh;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 2vh;
    border: solid 2px;
    border-color: white;
    text-align: center;
}

.button:hover {
    border-color: red;
    cursor: pointer;
}

.maincontent {
    height: 94vh;
    width: 100%;
}

.head_menu span {
    margin-right: 1vw;
    margin-left: 1vw;
}

.head_username {
    margin-left: 0.5vw;
    margin-right: 0.5vw;
}

.menu_item {
    padding-left: 1vw;
    padding-right: 1vw;
    padding-top: 0.5vh;
    padding-bottom: 0.5vh;
    border-bottom: 2px solid transparent;
}

.menu_item:hover {
    border-bottom: 2px solid;
    border-bottom-color: yellow;
    cursor:pointer;
}

.active_item {
    color: white;
    background-color: red;
    border-radius: 2vh;
    opacity: 100%;
}

.active_item:hover {
    border-bottom: none;
}

.app {
    display: none;
    height: 86vh;
    background-color: rgb(27, 27, 27);
    padding-left: 4vw;
    padding-right: 4vw;
    padding-top: 4vh;
    padding-bottom: 4vh;
}

.app_notfound {
    width: 100%;
    display: flex;
    align-items:center;
    flex-direction: row;
    justify-content: space-around;
    height: 50vh;
}

.app_akt_notfound {
    width: 100%;
    display: flex;
    align-items:center;
    flex-direction: row;
    justify-content: space-around;
    height: 5vh;
    margin-top: 3vh;
    margin-bottom: 3vh;
}

.app_search_above {
    height: 6vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2vh;
}

.app_suche {
    width: 60vw;
    height: 6vh;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    border: solid 2px;
    border-color: gray;
    border-radius: 3vh;
}

.app_suche:hover {
    background-color: rgb(40, 40, 40);
    
}

.app_cmd {
    width: 40vw;
    height: 6vh;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.app_content {
    height: 78vh;
    overflow-y: scroll;
}

.app_content_wo_search {
    height: 84vh;
    overflow-y: scroll;
}

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

.list_menuline {
    height: 6vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content:left;
    align-items: center;
    margin-bottom: 2vh;
}

.list_line {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 5vh;
    border-bottom: solid 0.5px;
    border-bottom-color: rgb(51,51,51);

}

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

.list_left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.list_right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.list_icon_container {
    width: 3vw;
    display: flex;
    justify-content: center;
}

.list_icon_container:hover {
    border-bottom: 1px solid;
    border-bottom-color: yellow;
}

.list_cmd_icon {
    height: 2vw;
    width: 2vw;
}

.list_spacer_5 {
    width: 5vh;
}

.list_vspacer_5 {
    height: 5vh;
}

.list_title {
    font-size: 1.6vw;
    margin-bottom: 2vh;
}

.search_icon {
    margin-left: 1vw;
    margin-right: 1vw;
    width: 2vw;
}

.cancel_icon {
    margin-left: 1vw;
    margin-right: 1vw;
    width: 2vw;
    cursor: pointer;
}

.search_input {
    outline: none;
    background-color: transparent;
    width: 56vw;
    color: white;
    border: none;
    font-size: 1.2vw;
}


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

    cursor: pointer;
}

.head_dd_separator {
    border-bottom: solid 2px;
}

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

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

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

.infobox {
    display: none;
    position: absolute;
    bottom:-80px; 
    right: 20px;
    color: white;
    background-color: rgb(0, 255, 0);
    min-height: 60px;
    min-width: 400px;
    max-width: 70%;
    border-radius: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 16px;
}

.errorbox {
    display: none;
    position: absolute;
    bottom:-80px; 
    right: 20px;
    color: white;
    background-color: red;
    min-height: 60px;
    min-width: 400px;
    max-width: 70%;
    border-radius: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 16px;
}

#error {
    display: none;
}

#info {
    display: none;
}

@keyframes info_in {
    0% { bottom: -60px; right: 20px; }
    20% { bottom: 20px; right: 20px; }
    90% { bottom: 20px; right: 20px; }
    100% { bottom: 20px; right: -400px; }
} 

.messagebox {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 5vh;
    background-color: red;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    display: none;
}

#msg_content {
    animation: moveTicker 10s linear infinite; 
    width: 100vw;
}

@keyframes moveTicker
{
	from
	{
		transform: translate3d(100%, 0%, 0px)
	}
	to
	{
		transform: translate3d(-100%, 0%, 0px);
	}
}

.v_spacer_1 {
    height: 1vh;
}

.v_spacer_2 {
    height: 2vh;
}

.v_spacer_5 {
    height: 5vh;
}

.cscn_input {
    height: 5vh;
    width: 100%;
    font-size: 2.5vh;
    color: white;
    background-color: transparent;
    border: 0;
    outline: 1.5px solid;
    outline-color: rgb(120, 120, 120);
    padding: 1.5vh;
    margin-bottom: 1vh;
}

.cscn_input:hover {
    outline-color: red;
    background-color: rgb(40, 40, 40);
}

.cscn_input:focus {
    outline-color: blue;
}

.cscn_label {
    position: absolute;
    margin-top: -6vh;
    color: gray;
}

.button_go {
    width: 30%;
    height: 4vh;
    background-color: gray;
    border-radius: 2.5vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 1.5vh;
}

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

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

.button_go_red {
    background-color: red;
    cursor: pointer;
}

#startanimation {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}


.bubble {
    width: 18vw;
    height: 3vh;
    margin-right: 1vw;
    border-radius: 1vw;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bubble_green {
    background-color: green;
}

.bubble_yellow {
    background-color: yellow;
    color: black;
}

.bubble_red {
    background-color: red;
}

.edit_dialog {
    display: flex;
    justify-content: space-between;
    width: 60vw;
    height: 40vh;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    background-color: rgb(22, 22, 22);
    border-radius: 2vw;
    border: 2px solid;
    border-color: blue;
    padding: 5vh;
    color: white;
}

.edit_dialog:not([open]) {
    display: none;
    
}

.dlg_frame {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.dlg_head {
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 2vh;
}

.dlg_content {
    width: 100%;
    
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.dlg_btns {
    width: 100%;
    height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


