/*** Reset ***/

@import url(http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800);

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
    -moz-box-sizing: border-box;    /* Firefox 1 - 28 */
    box-sizing: border-box;         /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */

}


html, body{
    height: 100%;
    font-size: 13px;
}

ul{
    list-style: none;
}

body{
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1em;
    line-height: 1.5em;
    padding-top: 40px;
    color: #676a6c;
}

a,
a:link,
a:visited{
    color: #67809F;
    text-decoration: none;
}

h1, h2, h3{
    margin-top: 2rem;
    margin-bottom: 1rem;

}

img{
    width: 100%;
}

/** Layout Styles **/
.container{
    width: 100%
}

.row{
    margin-bottom: 1em;
}

.row:after{
    content: " "; /* Older browser do not support empty content */
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

/** Navigation Styles And Brand**/
#top{
    z-index: 999;
}

.brand{
    float: left;
    height: 45px;
    padding-top: 13px;
}

.navbar{
    height: 45px;
}
.navbar-fixed-top{
    position: fixed;
    top: 0;
    width: 100%;

}
.navbar-beat{
}

nav .navbar-nav{
    padding-top: 13px;
    padding-right: 1em;
}


ul.navbar-nav li{
    display: inline-block;
    padding: 0 1em;
    position: relative;
    overflow: visible;
    text-align: center;
}

.nav-top-beat a,
.nav-top-beat a:visited,
.nav-top-beat a:link
{
    color: #ABB7B7;
    transition: 0.5s;
    position: relative;
}
.nav-top-beat a:hover{
    color: #ffffff;
}
.nav-top-beat a:hover + .tooltip{
    display: inline-block;
    top: 38px;
    width: 190%;
    margin-left: -85%;
}

/** Tooltip Styles **/
.tooltip{
    display: none;
    position: absolute;
    background-color: #000000;
    padding: 3px 5px;
    border-radius: 3px;
    font-size: 0.8em;

}

.tooltip-bottom{
    top: 20px;
    white-space: nowrap;
}

/** Page Styles **/
#page-wrapper{
    height: 100%;
    width: 100%;
    position: relative;
}

.page-sidebar-expanded{
    padding-left: 200px;
}

.page-heading{
    padding: 0 10px 20px 10px;
}

.page-heading h2{
    font-size: 1.846em;
    font-weight: 400;
}

.page-action{
    padding: 1em;
}

.page-content{
    padding: 1em;
}

.page-content h2{
    font-weight: 400;
}


/** Login Page Styles **/
.login{
    width: 25%;
    margin: 0 auto;
    padding: 0 2em 2em 2em;
    border: 1px solid #e7eaec;
    border-radius: 3px;
}

.login h2{
    margin: 1em 0 2em 0;
    font-weight: 400;
}

.login .btn{
    width: 100%;
    padding: 9px 15px;
}

/** SideBar Styles **/
.sidebar-wrapper{
    height: 100%;
    width: 200px;
    padding: 60px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
.nav-sidebar li{
    padding: 0.5em 1.5em;
    transition: 0.2s;
}
.nav-sidebar li:hover{
    background-color: #D2D7D3;
}
.nav-sidebar li:hover a{

}
.nav-sidebar li i{
    margin-right: 1.5em;
    display: inline-block;
    font-size: 1em;
    width: 15px !important;
    color: #888;

}
.nav-sidebar a,
.nav-sidebar a:link,
.nav-sidebar a:visited{
    text-decoration: none;
    color: #666;
}



/** Content Styles **/
.content-wrapper{
    height: 100%;
    width: 100%;
}

/** Align Contents **/
.text-left{
    text-align: left;
}

.text-right{
    text-align: right;
}

.text-center{
    text-align: center;
}

/** Align Elements **/
.pull-left{
    float: left;
}

.pull-right{
    float: right;
}

/** Text Colors **/
.text-red-razzmatazz{
    color: #DB0A5B;
}

.text-blue-ebony{
    color: #22313F;
}

.text-gray-edward{
    color: #ABB7B7;
}

.text-white-smoke{
    color: #ECECEC;
}

.text-white{
    color: #ffffff;
}

.text-black{
    colo: #000000;
}

/** Background Colors **/
.bg-red-razzmatazz{
    background-color: #DB0A5B;
}

.bg-blue-ebony{
    background-color: #22313F;
}

.bg-gray-edward{
    background-color: #ABB7B7;
}

.bg-white-smoke{
    background-color: #ECECEC;
}

.bg-white{
    background-color: #ffffff;
}

.bg-black{
    background-color: #000000;
}

/** Border Styles **/
.border-bottom{
    border-bottom: 1px solid #e7eaec;
}

/** Button Styles **/
.btn,
a.btn{
    padding: 7px 10px;
    border-radius: 3px;
    background-color: #ECECEC;
}

.btn-success,
a.btn-success{
    background-color: #03A678;
    color: #ffffff;
    transition: 0.5s;
}

.btn-success:hover{
    background-color: #019875;
}

.btn-danger,
a.btn-danger{
    background-color: #D24D57;
    color: #ffffff;
    transition: 0.5s;
}

.btn-danger:hover{
    background-color: #D64541;
}

.btn-small,
a.btn-small{
    padding: 3px 5px;
    font-size: 0.9rem;
    min-width: 25px;
    display: inline-block;
    text-align: center;
}


/** Table Styles **/
.table{
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.table > thead > tr > th {
    border-bottom: 1px solid #DDDDDD;
    text-align: left;
}
.table > tbody > tr > td {
    border-top: 1px solid #e7eaec;
    text-align: left;
}
.table > thead > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > td{
    line-height: 1.5rem;
    padding: 8px;
    vertical-align: top;
    margin-bottom: 0;
}

.table .column-action{
    text-align: right;
}

.table > tbody > tr:first-child >td{
    border-top: none;
}

.table > tbody > tr:last-child {
    border-bottom: 1px solid #e7eaec;
}

.table-details tbody tr td:first-child{
    font-weight: 600;
    width: 200px;
}


/** Pagination Styles **/
.pagination{
    margin-top: 1em;
}

.pagination-info{
    min-width: 50%;
    height: 10px;
}

.pagination-nav{
    width: 50%;
}

ul.pagination li {
    display: inline-block;
    text-align: center;
}

ul.pagination li a{
    padding: 4px 10px;
    display: inline-block;
    border: 1px solid #e7eaec;
    margin-left: -1px;
}

ul.pagination li.active a{
    background-color: #e7eaec;
}

/** Form Styles **/
input{
    padding: 8px 8px;
    border-radius: 3px;
    border: 1px solid #e7eaec;
}

.form-control{
    display: block;
    width: 100%;
}

.form-group{
    margin-bottom: 1.5rem;
}

button{
    border: none;
}
button:hover{
    cursor: pointer;
}


/** Notifications **/

.alert{
    width: 100%;
    padding: 15px;
    border-radius: 3px;
    margin-bottom: 1em;
    opacity: 0;
    transition: opacity 0.2s linear;
}

.visible{
    opacity: 1;
}

.invisible{
    opacity: 0;
}
.hidden{
    display: none;
}



.alert-success{
    background-color: #A2DED0;
}

.alert-warning{
    background-color: #FDE3A7;
}

.alert-danger{
    background-color: #E08283;
    color: #000000;
}

@keyframes alert {
    10% {opacity: 1}
    90% {opacity: 1}
    100% {opacity: 0; }
 }

@-webkit-keyframes alert{
    10% {opacity: 1}
    90% {opacity: 1}
    100% {opacity: 0; visibility: collapse}
}

/** Box Styles **/
.box{
    border: 1px solid #e7eaec;
    border-radius: 3px;
    margin-bottom: 2em;
}

.box-header{
    padding: 1rem;
    border-bottom: 1px solid #e7eaec;
}

.box h2,
.box h3{
    margin: 0;
    font-weight: 400;
}
.box h3{
    margin-bottom: 1rem;
}

.box-content{
    padding: 1rem;
}

/** Files Styles **/
.file{
    border: 1px solid #e7eaec;
    padding: 0;
    background-color: #ffffff;
    position: relative;
    margin-bottom: 20px;
    height: 200px;
}

.file .image{
    height: 100px;
    overflow: hidden;
}

.file .file-name {
    padding: 10px;
    background-color: #f8f8f8;
    border-top: 1px solid #e7eaec;
    border-top: 1px solid #e7eaec;
    word-wrap:break-word;
    height: 98px;
}

