/**
* Rules defined in this file will override or add to 
* existing CSS - make sure this file is included below default.css
**/

html, body {
    margin: 0;
    height: 100%;
}

body {
    background-color: #78d0eb;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#loginForm {
    width: 100%;
}

#loginForm {
    width: 100%;
}

#logo {
    max-width: 340px;
    width: 100%;
    height: auto;
}
#logoBox {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    /* width: 600px; */
    /* margin: 0 auto; */
}

.login-container {
    width: auto;
    height: auto;
    max-height: 200px;
    margin-top: 8rem;
}
.login-container {
    font-family: 'Poppins', 'sans-serif';
}

#loginBoxBackground {
    display: flex;
    flex: 1 1 auto;
    border-radius: 4px;
    width: 340px;
    margin: 15px auto;
    padding: 25px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
}


.inputWithIcon input[type=text], .inputWithIcon input[type=password], .inputWithIcon div.bootstrap-select{
    padding-left: 40px;
}

.inputWithIcon {
    position: relative;
}

.inputWithIcon i {
    position: absolute;
    left: 0;
    top: 8px;
    padding: 3px 8px;
}

.narrow-page {
    max-width: 70rem !important;
    margin: auto !important;
    /* flex-direction: row; */
}

.navbar>.container-fluid {
    padding: 0 !important;
}

.content-boxed {
    background-color: white;
    border-radius: 0 0 0 0;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    /* font-size: 1.4rem;
    line-height: 1.8rem; */
    padding: 1rem;
}

.content-box-menu {}

/* .content-boxed.small {
    margin: auto;
    max-width: ;
} */

.navbar {
    /*background: transparent !important;*/
    /*box-shadow: none !important;*/
    /*background: orange !important;*/
}

.navbar #logo {
    width: 100px;
}

.navbar-light .navbar-nav .nav-link{
color: #000;
}

.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

.page-title, .subtitle {
    color: #000;
}

.page-title {
    margin-bottom: 1.7rem;
    display: flexbox;
}

.tt-suggestion, .tt-selectable {
    overflow-x: hidden !important;
}

.dropdown-menu, .twitter-typeahead .tt-menu{
    /* width: 400px; */
    overflow-x: hidden !important;
    font-size: 0.9rem
}

/**
    Extra small devices (portrait phones, less than 576px)
    No media query for `xs` since this is the default in Bootstrap
 */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .content-boxed {
        padding: 2rem;
    }
    .homepage {
        margin: -2rem; /* Counteracting the content boxed above*/
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

@media (min-width: 576px) and (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

#footer {
    position: absolute;
    bottom: 47px;
    width: 100%;

    color:#fff;
    height: 14px;

    display: flex;
    flex-direction: row;

}

.footerGap {
    flex-grow: 0.625;

}

.footerBlue {
    background-color: #569ed3;
    flex-grow: 8.28;
}

.footerGreen {
    background-color: #02ad4e;
    flex-grow: 23.7;
}

.footerRed {
    background-color: #ed174f;
    flex-grow: 12.55;
}

.footerYellow {
    background-color: #d7df21;
    flex-grow: 1.302;
}

.footerPurple {
    background-color: #ac208c;
    flex-grow: 21.20;
}

.footerOrange {
    background-color: #ef4923;
    flex-grow: 4.69;
}

.footerGray {
    background-color: transparent;
    flex-grow: 25.89;
}

/*input[type=text], input[type=password] {
    background-color: transparent;
    border-radius: 0;
    border: 0px;
    border-bottom: 2px solid white;
    color: #ffffff;
}

input[type=text]:focus {
    background-color: transparent;
    border-radius: 0;
    border: 0px;
    border-bottom: 2px solid white;
    color: #ffffff;
    outline: none;
}

input[type=password]:focus {
    background-color: transparent;
    border-radius: 0;
    border: 0px;
    border-bottom: 2px solid white;
    color: #ffffff;
    outline: none;
}

input[type=text]::placeholder, input[type=password]::placeholder{
    color: #b3b3b3;
}*/