@import url('font.css');

html{
    margin: 0;
    padding: 0;
    height: 100%;
}

body{
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f3f3f3;
    background-repeat: repeat;
}

body, td, th, input, select, textarea, option, optgroup{
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    color: #444;
}

#container{
    min-height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
#container > *{
    width: 100%;
}

.container-fluid{
    padding-left: 20px;
    padding-right: 20px;
}

#content {
    padding-top: 20px;
    transition: all 0.3s ease 0s;
}

#header{
    min-height: 0;
    margin: 0;
    background-color: #fff;
    padding: 15px 0;
}
#header .logo{
    color: #FFFFFF;
    float: left;
    padding-top: 5px;
}
#header .icon{
    background-color: #04A9BC;
    padding: 11px;
    text-align: center;
    border-radius: 50%;
    float: right;
    width: 50px;
    height: 50px;
    margin-right: 15px;
}
#header .icon i{
  font-size: 30px;
  color: #fff;
}
#header .title{
    float: right;
}
#header .title h3{
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    margin-top: 2px;
}
#header .title p{
    color: #5E5E5E;
    font-size: 14px;
}
#content .panel-default {
    background: transparent;
    border: 0;
    box-shadow: none;
}
.panel {
    border-radius: 0;
}
.panel .panel-heading {
    position: relative;
    padding: 10px 15px;
}
.panel-heading h3 i {
    margin-right: 8px;
}
.panel-heading i {
    font-size: 16px;
    font-weight: 500;
}
.panel-heading h3 {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
.panel-primary .panel-heading {
    background: transparent;
    color: #f57f2d;
}
.panel-default .panel-heading {
    background: transparent;
    color: #595959;
    border: 0;
}
.panel-default .btn-danger{
 background-color: #e5663a;
 border-color: #e96639;
}
.panel-default .btn-danger:hover{
    background-color: #f57f2d;
    border-color: #f57f2d;
}
.panel-default label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666666;
}
.panel-default .input-group{
    display: block;    
    border-left: 2px solid #008db9 !important;
    border-radius: 4px;
}
.panel-default .input-group-addon{
    color: #ccc;
    display: block;
    position: absolute;
    margin: 14px 2px 4px 10px;
    z-index: 3;
    width: 16px;
    font-size: 16px;
    text-align: center;
    border: none;
    background: unset;
    padding: 0;
}
.panel-default .form-control{
    height: 42px ;
    padding-left: 33px ;
    padding-top: 8px ;
    font-size: 14px;
    display: block;
    float: unset;
}

/* footer */

#footer{
    height: auto;
    text-align: center;
    padding: 20px;
    background: #fff;
    color: #B7B7B7;
    font-size: 14px;
}
#footer .col-sm-4{
    margin-bottom: 30px; 
}
@media (max-width: 767px){
    #header .dflex{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        text-align: center;
    }
    #header .dflex > * {
        margin: 0 7px;
    }
    #footer .col-sm-4{
        margin-bottom: 10px; 
    }
}

