/******************************************************************************
* WINDOW
******************************************************************************/
#rouvenfo-window-full-background{
    width: 100%;
    height: 100%;
    color: #172b4d;
    position: fixed;
    opacity: 0.5;
    background: #091E42;
    display: none;
    font-family: "Segoe UI";
    top: 0px;
    left: 0px;
    z-index: 999;
}

.rouvenfo-window{
    height: fit-content;
    width: fit-content;
    background: white;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    display: none;
    color: #444;
    border: 1px solid #444;
    z-index: 9999;
    min-width: 200px;
    box-sizing: border-box;
}

.rouvenfo-window-title{
    height: 60px;
    line-height: 30px;
    background: #0a2d50;
    color: white;
    padding: 15px;
    font-weight: 400;
    font-size: 22px;
    border-radius: 5px 5px 0px 0px;
}

.rouvenfo-window-title-text{
    float: left;
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
}

.rouvenfo-window-title-close{
    float: right;
    width: 25px;
    height: 25px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    line-height: 25px;
    font-size: 20px;
    
    i{
        line-height: 25px;
        font-size: 15px;
    }
    
    &:hover{
        background: white;
        color: #0a2d50;
    }
}

.rouvenfo-window-controls-close:hover{
    background: #eee;
}

.rouvenfo-window-content{
    padding: 15px;
    background: #f8f8f8;
    min-height: fit-content;
}

.rouvenfo-window .window-data-container{
    width: 100%;
    display: inline-block;
    height: 30px;
    margin-bottom: 5px;
    
    .rouvenfo-combobox, .rouvenfo-typeahead{
        margin-left: 4px;
        width: 300px;
        line-height: 30px;
    }
    
    .rouvenfo-combobox-list, .rouvenfo-typeahead-list{
        width: 300px;
        margin-top: 5px;
    }
}

.rouvenfo-window-label{
    width: 200px;
    font-size: 13px;
    line-height: 14px;
    vertical-align: middle;
    display: inline-block;
}

.rouvenfo-window-input{
    width: 300px;
    max-width: 100%;
    height: 30px;
    border: 1px solid #ddd;
    font-size: 13px;
    line-height: 30px;
    padding: 5px;
    border-radius: 3px;
    color: #444;
}

.rouvenfo-window-footer{
    height: 60px;
    padding: 15px;
    border-top: 1px solid #444;
    text-align: right;
    width: 100%;
    bottom: 0px;

    .button{
        width: 150px;
        height: 30px;
        line-height: 30px;
        padding: 0px;
        vertical-align: top;
    }

    .rouvenfo-window-control-save{
        margin-left: 10px;
    }
}

.rouvenfo-window-control-no, .rouvenfo-window-control-yes{
    width: 100px;
    text-align: center;
    
}

.rouvenfo-window-control-yes{
    margin-left: 10px;
}

@media screen and (max-width: 500px) {
    .rouvenfo-window{
        max-width: 100%;

        .rouvenfo-window-content{
            display: flex;
            flex-direction: column;
        }

        .window-data-container{
            height: 50px;

            .rouvenfo-combobox, .rouvenfo-typeahead{
                margin-left: 0px;
                width: 100%;
            }
        }

        .rouvenfo-window-label{
            width: 100%;
            display: block;
            height: 20px;
            line-height: 20px;
        }
        .rouvenfo-window-input{
            width: 100%;
            display: block;
        }
    }
}