﻿/*Muli Italic*/
@font-face {
    font-family: muli, sans-serif;
    font-weight: 400;
    font-style: italic;
}

/*Muli Regular*/
@font-face {
    font-family: muli, sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*Muli Bold Italic*/
@font-face {
    font-family: muli, sans-serif;
    font-weight: 700;
    font-style: italic;
}

/*Muli Bold*/
@font-face {
    font-family: muli, sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* Colors*/
.white{
    color:#fff;
}

.orange {
    color: #FF5F37;
}

.red {
    color: #ED353F;
}

.blue {
    color: #0090D0;
}

.yellow {
    color: #FFCE08;
}

.green {
    color: #84BF28;
}

/* grey 
#E8E8E8
#00000029
#767676
#555555
#EBEBEB
#F4F4F4
#101010
#707074
#B1B1B1
#000000
#676767

*/
body {
    font-family: muli, sans-serif;
    background-color: #E8E8E8;
}

h1
{
     font-size:34px;
}

h2
{
    font-size:24px;
}

h3
{
    font-size:20px;
}


.apps i {
    font-size: 30px;
    color: #707074;
}


.card {
    background-color: #f7f7f7;
}


.card-header{
    min-height: 85px;
}

.card-text {
    margin-top:10px;
    font-size: 20px;
    font-weight: 500;
}


.card-footer {
    min-height: 85px;
}


.card-deck span{
    display: inline-block;
}

.mt-200 {
    margin-top: 200px;  

}

.validation-summary-errors ul {
    list-style: none;
    color: red;
}

.dropshadow {
    box-shadow: 0px 3px 6px #00000029;
}
.flexrow{
    flex-direction:row;
}

.dthead {
    color: #fff;
    background-color: #767676;
    min-height:30px;
}

.odd {
    background-color: #F7F7F7 !important;
}

a {
    text-decoration: none;
    color: #767676;
}


[data-component=messages] .MessageTime {
    font-size: 13px;
    color: #B1B1B1;
}


[data-component=messages] i {
    font-size: 18px;
}



a:hover {
    text-decoration: none;
    color: #767676;
}

.menu-text{
    font-size:14px;

}

#signature {
    width: 500px;
    height: 150px;
    border: 1px solid black;
    background-color :white;
}

.vertical-center {
    min-height: 100%; /* Fallback for vh unit */
    min-height: 100vh; /* You might also want to use
                           'height' property instead.

                           Note that for percentage values of
                           'height' or 'min-height' properties,
                           the 'height' of the parent element
                           should be specified explicitly.

                           In this case the parent of '.vertical-center'
                           is the <body> element */
    /* Make it a flex container */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* Align the bootstrap's container vertically */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* In legacy web browsers such as Firefox 9
        we need to specify the width of the flex container */
    width: 100%;
    /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
        hence the bootstrap's container won't be aligned to the center anymore.

        Therefore, we should use the following declarations to get it centered again */
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}


/*Buttons*/
.btn-secondary {
    color: #fff;
    background-color: #868e96;
    border-color: #868e96
}

    .btn-secondary.focus, .btn-secondary:focus, .btn-secondary:hover {
        color: #fff;
        background-color: #727b84;
        border-color: #6c757d
    }

    .btn-secondary.focus, .btn-secondary:focus {
        box-shadow: 0 0 0 .2rem rgba(152,159,166,.5)
    }

    .btn-secondary.disabled, .btn-secondary:disabled {
        color: #fff;
        background-color: #868e96;
        border-color: #868e96
    }

    .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
        color: #fff;
        background-color: #6c757d;
        border-color: #666e76
    }

        .btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(152,159,166,.5)
        }
