body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2vw;
    height: 100vh;
    width: 100vw;
    color: rgb(195, 195, 195);
}

.hspacer_1 {
    width: 1vw;
}

.hspacer_2 {
    width: 2vw;
}

.vspacer_10 {
    height: 10%;
}

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

.diffusor {
    position: absolute;
    top:0;
    left:0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: -5;
}

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

#app_loggedout {
    display: none;
}

#app_loggedin {
    display: none;
}

.app_controller {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.app_controller::-webkit-scrollbar {
  display: none;
}

.app_head {
    height: 5vh;
    width: 98vw;
    background-color: rgba(53, 53, 53, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 1vw;
    padding-right: 1vw;
    font-size: 1.4vw;
}

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

.app_head_middle {
    display: flex;
    justify-content:left;
    align-items: center;
    flex-direction: row;
    
    color: gray;
    font-size: 1.2vw;
}

.menuitem {
    border: solid 1px;
    border-color: transparent;
    border-radius: 2vw;
    padding: 0.3vw 0.6vw 0.3vw 0.6vw;
    cursor: pointer;
}

.menuitem_active {
    color: white;
}

.counting_bubble {
    background-color: #e74c3c;
    color: white;
    font-size: 0.8vw;
    border-radius: 100%;
    min-width: 1.2vw;
    height: 1.2vw;
    line-height: 1.2vw;
    text-align: center;
    display: inline-block;
    position: relative;
    top: 0.2vw;
}

@media (hover: hover) {
    .menuitem:hover {
        border-color: white;
    }
}

.head_search_input {
    background-color: transparent;
    outline: none;  
    border: none;
    border-bottom: solid 1px;
    border-bottom-color: rgb(195, 195, 195);
    width: 40vw;
    color: white;
    font-size: 1.2vw;
}


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

}

.app_head_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    border-bottom: solid 2px;
    border-bottom-color: transparent;
}

.head_icon {
    height: 2.5vh;
    margin: 0.5vh;
    border-radius: 50%;
    border-color: transparent;
    padding: 0.5vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    .head_icon:hover {
        border-color: gray;
        background-color: rgba(200, 200, 200, 0.2);
        cursor: pointer;
    }
}

.user_icon {
    height: 3vh;
    width: 3vh;
    border-radius: 4vh;
    border: 0.2vh solid;
    border-color: gray;
    padding: 0.2vh;
}

.user_icon_green {
    border-color: green;
}

.user_icon_red {
    border-color: red;
}

.user_icon_ring {
    animation: user_icon_flash_ani 1s infinite;
}

@keyframes user_icon_flash_ani {
    from,
    49.9% {
          border-color: red;
    }
    50%,
    to {
          border-color: transparent;
    }
}


.app_footer {
    height: 5vh;
    width: 99.4vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 0.3vw;
    padding-right: 0.3vw;
}

.app_footer_left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.app_footer_separator {
    width: 1vw;
    background-color: white;
    height: 98%;
    margin-top: 1%;
    margin-bottom: 1%;
}

.app_footer_item {
    height: 3vh;
    width: 5vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    border-radius: 1vw;
}

.app_state_icon {
    height: 1.8vw;
    width: 1.8vw;
} 

.footer_cloud {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 5vw;
    height: 3vh;
    border: solid 1px;
    border-radius: 2vh;
    font-size: 1.4vh;
    padding: 0.5vh;
}

#f_cloud_ok {
    display: none;
}

.footer_cloud_connected {
    background-color: green;
    border-color: green;
    display: none;
}

.footer_cloud_problem {
    background-color: red;
    border-color: red;
}

.footer_badge {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 5vw;
    height: 3vh;
    border: solid 1px;
    border-radius: 2vh;
    font-size: 1.4vh;
    padding: 0.5vh;
}

@media (hover: hover) {
    .footer_badge:hover {
        background-color: rgba(200, 200, 200, 0.2);
        cursor: pointer;
    }
}

.footer_badge_uml {
    min-width: 10vw;
} 

.footer_badge_txt {
    display: flex;
    justify-content:flex-start;
    align-items: center;
}

.footer_badge_cmd {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.8vw;
    height: 100%;
    /* border: solid 1px;
    border-radius: 100%; */
}

.footer_badge_icon {
    height: 1.8vw;
    width: 1.8vw;
}

.footer_badge_red {
    border-color: red;
    background-color: rgba(255,0,0,0.3);
    color: red;
}

.footer_badge_green {
    border-color: green;
    background-color: rgba(0,255,0,0.3);
    color: green;
}

.footer_badge_orange {
    border-color: orange;
    background-color: rgba(255,165,0,0.3);
    color: orange;
}

.footer_spacer_1 {
    width: 1vw;
    flex-shrink: 0;
}

.footer_badge_add {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4vh;
    height: 4vh;
    border: 1px solid;
    border-radius: 100%;
}

@media (hover: hover) {
    .footer_badge_add:hover {
        background-color: rgba(200, 200, 200, 0.2);
        cursor: pointer;
    }
}

.antilo_logo {
    font-weight: 500;
}

.antilo_clamp {
    color: red;
}

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

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

.dlg_login_mid {
    width: 2px;
    height: 100%;
    background-color: rgb(100, 100, 100);
}

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

.dlg_login_qr {
    height: 100%;
}

.dlg_login_inputfield {
    height: 20%;
    align-items: center;
    display: flex;
    margin: 1vh 0vh 1vh 0vh;

}

.dlg_txt {
    text-align: center;
    font-size: 1.5vw;
}

#dlg_anltxt {
    height: 25%;
}

#dlg_footertxt {
    height: 25%;
}

.dlg_headline {
    text-align: center;
    font-size: 1.7vw;
    height: 15%;
}

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

.dlg_login_col_head {
    height: 15%;
}

.dlg_login_col_cont {
    height: 85%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}

.glink {
    text-decoration: none;
    color: rgb(200, 200, 200);
    padding: 0.5vw;
    border: 1px solid;
    border-color: rgba(0,0,0,0);
    border-radius: 1vw;
}

@media (hover: hover) {
    .glink:hover {
        border: 1px solid;
        border-color: rgba(200, 200, 200);
        color: rgb(200, 200, 200);
    }
}

.app_content {
    height: 90vh;
    width: 55vw;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.app_content::-webkit-scrollbar {
  display: none;
}

.app_wide_content {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.display_phone {
    width: 30vw;
    height: 90vh;
}

#display_buddylist {
    width: 15vw;
    height: 90vh;
    opacity: 100%;
    background-color: transparent;
}

.head_dropdown {
    display: none;
    position: absolute;
    background-color: rgba(42, 42, 42, 0.8);
    width: 20vw;
    top: 5vh;
    right: 0;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    opacity: 100%;
    cursor: pointer;
    z-index: 10;
}

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

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

@media (hover: hover) {
    .head_dropitem:hover {
        background-color: rgb(62, 62, 62);
    }
}

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


.ctx_dropdown {
    display: none;
    position: absolute;
    background-color: rgba(42, 42, 42, 0.92);
    width: 15vw;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    opacity: 100%;
    cursor: pointer;
    z-index: 20;
    font-size: 0.7vw;
}

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

.ctx_dropitem {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 4vh;
    width: 15vw;
    z-index: 5;
}

@media (hover: hover) {
    .ctx_dropitem:hover {
        background-color: rgb(62, 62, 62);
    }
}

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

.app_footer_right {
    position: relative;
}

.footer_dropdown {
    display: none;
    position: absolute;
    background-color: rgba(42, 42, 42, 0.8);
    width: 15vw;
    bottom: 5vh;
    right: 0;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    opacity: 100%;
    cursor: pointer;
    z-index: 20;
}

.footer_dropitem {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 5vh;
    width: 15vw;
    z-index: 5;
}

.footer_extrabuttons_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 5vh;
    flex: 1;
    min-width: 0;
    position: relative;
}

.footer_extrabuttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 5vh;
    z-index: 5;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
    min-width: 0;
}

.footer_scroll_btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 4vh;
    height: 4vh;
    border: 1px solid;
    border-radius: 100%;
    flex-shrink: 0;
}

@media (hover: hover) {
    .footer_scroll_btn:hover {
        background-color: rgba(200, 200, 200, 0.2);
        cursor: pointer;
    }
}

.footer_scroll_icon {
    width: 2.5vh;
    height: 2.5vh;
}

.footer_scroll_left_icon {
    transform: rotate(-90deg);
}

.footer_scroll_right_icon {
    transform: rotate(90deg);
}



@media (hover: hover) {
    .footer_dropitem:hover {
        background-color: rgb(62, 62, 62);
    }
}
