.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.h100p {
    height: 100%;
}

.overflow-h {
    overflow: hidden;
}

.overflow-s {
    overflow: scroll;
}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    text-decoration: none;
    color: #efeeee;
}

body {
    background-color: #25aae2;
    text-align: center;
    font-family: "Open Sans",Arial,sans-serif;
    color: white;
    margin: 0px;
    display:flex; 
    flex-direction: column; 
    height: 100vh;
    align-items: center;
}

main {
    flex: 1;
    height: 1;
    margin-bottom: 1em;
}

.align-items-center {
    align-items: center;
}

.d-flex-s {
    display: flex !important;
}

.backdrop-blur {
    background-color: rgba(255, 255, 255, .4);
}
   
/* if backdrop support: very transparent and blurred */
@supports ((-webkit-backdrop-filter: blur(2em)) or (backdrop-filter: blur(2em))) {
.backdrop-blur {
    background-color: rgba(255, 255, 255, .4);
    -webkit-backdrop-filter: blur(2em);
    backdrop-filter: blur(2em);
}
}

img.g4y {
    margin-top: 20px;
    width: 500px;
    max-width: 70%;
}

footer{
    font-size: 0.9rem;

    width: 100%;

    background-color: #1773b6;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
    text-align:left;
}

footer .logo {
    width:146px;
}

@media only screen and (max-device-width : 1024px) and (orientation : landscape) {
    footer .logo {
        width: 100px;
    }

    footer {
        font-size: 0.55rem;
    }
}

@media only screen and (max-width: 700px) {
    
    .d-flex-s {
        flex-direction: column !important;
    }

    .user_card.hide {
        margin-top: -400px;
        transition: 0.5s;
    }

    .user_card.show {
        margin-top: 1rem !important;
    }

}

@media only screen and (min-width: 700px) {

    .user_card.hide {
        margin-left: -350px;
        transition: 0.5s;
    }
    
    .user_card.show {
        margin-left: 2rem !important;
    }

}

@media only screen and (max-device-width : 1024px) and (orientation : landscape) {
    img.g4y {
        width: 40%;
    }
}

.login {
    opacity: 1;
    transition: 0.5s opacity;

    z-index: 100;

    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
}

.brand_logo_container {
    position: absolute;
    height: 170px;
    width: 170px;
    top: -75px;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
}
.brand_logo {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    border: 2px solid #efeeee;
    background-image: url('./assets/Geoline_vertikal_1_positiv.png');
    background-size: contain;
    background-position-y: -10px;
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;          /* Firefox */
    image-rendering: -o-crisp-edges;            /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming)*/
    -ms-interpolation-mode: nearest-neighbor;   /* IE (non-standard property) */
}

.user_card {
    height: 400px;
    width: 350px;
    background: #1773b6;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
}

.form_container {
    margin-top: 65px;
}

.login_btn {
    width: 100%;
    background: #eb7440  !important;
    color: white !important;
}

.login_btn:focus {
    box-shadow: none !important;
    outline: 0px !important;
}

.login_container {
    padding: 0 2rem;
}

.input-group-append {
    display: flex;
}

.input-group-text {
    background: #eb7440  !important;
    color: white !important;
    border: 0 !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
    height: 100%;
    width: 38px;
}

.input_user,
.input_pass:focus {
    box-shadow: none !important;
    outline: 0px !important;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #eb7440 !important;
}

.noServiceworker {
    color: red;
}

.account-item, .user-item {
    text-align: start;
    display: flex;
    flex-direction: row;
}

.user-item:not(.active):hover {
    background-color: #0d6dfd73;
}

.user-item:hover .dropdown {
    visibility: visible !important;
}

.account-item:hover .dropdown {
    visibility: visible !important;
}

#accounts-dropdown .dropdown-menu {
    --bs-dropdown-header-color: #f87034 !important;
    --bs-dropdown-font-size: .875rem !important;
    --bs-dropdown-item-padding-y: 0px !important;
    --bs-dropdown-item-padding-x: 0px !important;
    --bs-dropdown-header-padding-y: 0.25rem;
}

#accounts-dropdown .dropdown-header {
    font-size: 1rem;
}