/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 6 juil. 2018, 10:34:21
    Author     : ACH
*/

@import url("bootstrap.min.css");
@import url("font-awesome.min.css");

.header-flex-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

#btn-close-keyboard {
    border-top: solid 1px rgb(223, 223, 223);
    position: fixed;
    bottom: 0;
    left:0;
    width: 100%;
    height: 70px;
    background-color: #ffffff;
}

html, body {   
    min-height: 100vh;
    background-color: #e4e4e4;
}

#headerTitle {
    margin-right: -15px;
    margin-left: -15px;
    border-radius: 0px;
}

#container {
    position: relative;
    min-height: 100vh;
    background-color: white;
    padding-bottom: 110px; /* taille du footer */
}

#footer {
    position: absolute;
    bottom: 0;
    text-align: center;
    /*width: 100%; -15px pour le padding du container*/
    /*width: calc(100% - 15px);*/
    width: 100%;
    left: 0;
    height: 110px;
    padding-top: 35px;
    padding-bottom: 15px;
}

body { 
    font-size: 1.25em;
}

h1, .h1 {
    font-size: 180%;
}
h2, .h2 {
    font-size: 160%;
}
h3, .h3 {
    font-size: 140%;
}
h4, .h4 {
    font-size: 120%;
}
h5, .h5 {
    font-size: 100%;
}

.btn-xlg {
    text-transform: uppercase;
    padding: 1.5rem 1.2rem;
    line-height: 1.7;
    width: 80%;
    margin: auto;
    font-size: 195%;
}

.form-control-lg, .input-group-lg>.form-control, .input-group-lg>.input-group-append>.btn, .input-group-lg>.input-group-append>.input-group-text, .input-group-lg>.input-group-prepend>.btn, .input-group-lg>.input-group-prepend>.input-group-text {
    font-size: 110%;
}

.btn-group-lg>.btn, .btn-lg {
    font-size: inherit;
}

@media screen and (min-width: 1200px) {
    .btn-lg {
        padding: .7rem 1.2rem;
        font-size: 116%;
        line-height: 1.7;
        border-radius: .4rem;
    }

    .input-group-lg .input-group-text {
        padding: .5rem 1rem;
        font-size: 1.25rem;
        line-height: 1.5;
        border-radius: .3rem;
    }
}

#input-group-lg-login .input-group-text-lg.input-group-text {
    min-width: 30vw;
    font-size: 110%;
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}

/* phones boostrap par defaut : 768px */
@media screen and (max-width: 768px) {
    h1, .h1 , button {
        font-size: 1.2em;
        margin-bottom: 0;
    } 

    #footer {
        font-size: 11px;
    }

    #btn-home a {
        font-size: inherit;
    }
    
    .btn {
        white-space: inherit;
    }
}

