/*
Theme Name: Bootstrap
Author: Inzman
*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i');

.row.gutter-0 {
  margin-right: 0;
  margin-left: 0;
}
.row.gutter-0 > [class^="col-"],
.row.gutter-0 > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

html {
    overflow-y:scroll;
}
body:not(.single-arved) {
    font-family:'Lato', sans-serif;
    font-family:'Open Sans', sans-serif;
    font-family:'Titillium Web', sans-serif;
    font-family: 'Roboto', sans-serif;
}
body {
    padding-bottom:40px;
    padding-top:51px;
    position:relative;
}
.wrapper {}
.admin-bar .navbar-fixed-top {
    top:32px;
}
.admin-bar .fixed-mover {
    top:83px;
}

.container {
    max-width:1000px;
}

/* Tools */
.relative { position:relative; }
.nobr { white-space:nowrap !important; }
.hide { display:none !important; }
div.clear { background:none; border:0; clear:both; display:block; float:none; font-size:0; margin:0; padding:0; position:static; overflow:hidden; visibility:hidden; width:0; height:0; }
.a-left { text-align:left; }
.a-right { text-align:right !important; }
.a-center { text-align:center; }
.v-middle { vertical-align:middle; }

/* CSS3 */
.transition-all {
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
}

.tooltip-inner {
    line-height:1.3;
    padding-bottom:5px;
    padding-top:5px;
}

.back {
    margin-top:9px;
}

/* User menu */
.welcome .label { margin-left:5px; }
.label-as-badge { border-radius:1em; }

/* CMS list */
.cms-list {
    min-height:400px;
}

/* class invoice - one item this iz */
.invoice td,
div.invoice {
    border-bottom:1px solid #ddd;
}
.invoice .cell,
div.invoice {
    padding:12px 5px;
}
div.invoice {}
.invoice:hover {
    background-color:#F9F9F9;
    border-radius:2px;
    box-shadow:inset 0px 0px 5px #E2E2E2;
}
.invoice [class*="span"] {
    min-height:30px;
}
.invoice .date,
.invoice .date-payment,
.invoice .company-name {
    display:inline-block;
}
.to-pay { font-weight:600; }
.invoice .company-name {}
.invoice .post-edit-link {
    margin-bottom:2px;
}
.invoice .date i,
.invoice .date-payment i { margin-top:0; }
div.invoice_is_not_paid:hover .date {
    padding-top:0;
    top:-8px;
}
.invoice:hover .date-tip,
.invoice:hover .post-edit-link,
.invoice:hover .update {
    opacity:1;
}
.invoice .post-edit-link,
.invoice .update {
    background-color:#999;
    border-radius:3px;
    color:#fff;
    display:inline-block;
    font-size:20px;
    line-height:18px;
    padding:3px 5px;
}

/* Date Tip */
.date-tip {
    opacity:0;
    position:absolute;
    left:0;
    bottom:-3px;
}

/* .post-edit-link all around */
.post-edit-link {
    font-size:11px;
}

/**/
.counter {
    font-size:16px;
    padding-left:6px;
    padding-right:6px;
}

/* filter & filter in view */
.filter-container {
    margin-bottom:30px;
}

.mover-holder {
    min-height:80px;
}
.mover {
    background-image:-webkit-linear-gradient(top, rgba(255,255,255,1) 70%,rgba(255,255,255,0) 100%);
	background-image:-moz-linear-gradient(top, rgba(255,255,255,1) 70%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 70%,rgba(255,255,255,0) 100%);
    padding-top:20px;
    top:0;
}
.fixed-mover {
    position:fixed !important;
    top:51px;
    width:100%;
    z-index:100;
}
.fixed-mover .filter-container {
    /*margin-bottom:30px;*/
}

/* Table which holds archive list */
.holder {
    width:100%;
}
.holder thead th {
    border-bottom:4px double #ddd;
    color:#777;
    font-size:13px;
    padding:10px 15px 8px 5px;
    text-align:left;
    white-space:nowrap;
}
.for-nr { width:7%; }
.for-client { width:25%; }
.for-action {
    padding-right:5px;
    width:4%;
}
.holder .cell {
    padding-right: 15px;
}
.expand {
    display:inline-block;
    line-height:1.15;
}

/* Expansion table */
td.cont {
    padding:0;
}
.expansion table {
    font-size:13px;
    margin:0;
}

tr[data-status_late="1"]{
    
}


/* Typeahead */
ul.typeahead {
    max-width:250px;
}
.dropdown-menu > li > a {
    white-space:normal;
}

/* Clock */
.clock-container {
    float:right;
    font-size:13px;
    margin:0;
    padding:6px 12px;
}
.clock-container.highlite {
    background-color:#FBE3E4;
    border-color: #FBC2C4;
    -moz-transform: translate(-0.2em,1em);
}
.clock {
    text-transform:lowercase;
}

/* Calendar */
#calendar {
    margin-bottom:10px;
    margin-top:20px;
}

/* Login and account */
.form-signin {
    margin: 0 auto;
    max-width: 330px;
    padding: 15px 0;
}
label.error {
    color: #b94a48;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    padding-left: 10px;
    vertical-align: middle;
}

.spinner {
    color:#f0ad4e;
    display:block;
    font-size:30px;
    line-height:30px;
    padding:20px;
    text-align:center;
}
.spinner {
    animation: spin 2s infinite linear;
    -webkit-animation: spin 2s infinite linear;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}


@media screen and (min-width: 768px){
    .table-responsive {
        overflow:hidden;
    }
    .invoice .post-edit-link,
    .invoice .update {
        font-size:15px;
        opacity:0;
    }
}

@media screen and (min-width: 768px){
    #s {
    border-top-right-radius:0;
    border-bottom-right-radius:0;
    }
    #searchsubmit {
        border-top-left-radius:0;
        border-bottom-left-radius:0;
        border-left-width:0;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px){
    .navbar-form .form-group { margin-bottom:0; }
}