@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	width: 100%;
	height: 100%;
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	background: white;
    line-height: 1.42857143;
    font-size: 14px;
}
 
p {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

.Wrapper {
	display: table;
	width: 100%;
	height: calc(100% - 50px);
}

.Sidebar {
	position: relative;
	display: table-cell;
	min-width: 240px;
	max-width: 240px;
	min-height: 100%;
	background-color: #515151;
	transition: max-width 0.4s ease , min-width 0.4s ease;
	user-select: none;
}

.Sidebar.is-collapsed {
	max-width: 50px;
	min-width: 50px;
	transition: max-width 0.4s ease , min-width 0.4s ease;
}

.Sidebar.is-collapsed .Sidebar-logo {
	transform: scale(0.625) translate(-64px, -104px);
	transition: transform 0.4s ease;
}

.Sidebar.is-collapsed .Sidebar-navItem {
	padding-left: 17px;
	transition: padding-left 0.4s ease;
}

.Sidebar.is-collapsed .Sidebar-navItem span {
	opacity: 0;
}

.Sidebar.is-collapsed .Sidebar-navItem a {
	padding-left: 0px;
	transition: padding-left 0.4s ease;
}


.Sidebar.is-collapsed .Sidebar-toggleText {
	display: none;
}

.Sidebar.is-collapsed .Sidebar-toggleArrow {
	left: 17.5px;
	transform: rotate(179deg);
}

.Sidebar.is-collapsed .Sidebar-footer:hover .Sidebar-toggleArrow {
	left: 17.5px;
	transition: left 0.4s ease, transform 0.4s ease;
}

@media (max-width: 500px) {
	.Sidebar {
		min-width: 50px;
	}
}

.Sidebar-header {
	position: relative;
	height: 130px;
	margin-bottom: 50px;
	text-align: center;
}

.Sidebar-logo {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-40px);
	display: inline-block;
	width: 80px;
	height: 80px;
	background: #5f9ea0;
	transition: transform 0.4s ease, height 0.4s ease, width 0.4s ease;
}

@media (max-width: ) {
	.Sidebar-logo {
		transform: translate(-24px, -80px);
		width: 50px;
		height: 50px;
	}
}

.Sidebar-navItem {
    font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	transition: padding-left 0.4s ease;
    border-bottom: 1px solid #585858;
}

.Sidebar-navItem.child {
    background-color: #414141;
    font-size: 14px;
}

.Sidebar-navItem.child a {
    color: #c0c0bc;
}

.Sidebar-navItem.active.child a {
    color: white;
}

@media (max-width: ) {
	.Sidebar-navItem {
		padding-left: 17px;
	}
}

.Sidebar-navItem:hover {
	background-color: #43588f;
	cursor: pointer;
}

.Sidebar-navItem span {
	opacity: 1;
	transition: opacity 0.4s ease;
}

.Sidebar-navItem a {
	padding: 10px 0 10px 40px;
	display: block;
	transition: padding-left 0.4s ease;
	color: #ddd !important;
	text-decoration: none;
}

.Sidebar-navItem a:hover {
	text-decoration: none;
	color: #ddd;
}


@media (max-width: ) {
	.Sidebar-navItem a {
		display: none;
	}
}

.Sidebar-navItem.active {
    background: #202e53;
}

.Sidebar-navItem.child.active {
    padding-left: 15px;
    background-color: #414141;
}

.Sidebar-footer {
	position: absolute;
	bottom: 0;
	height: 60px;
	width: 100%;
	background: #515151;
}

.Sidebar-footer:hover {
	background: #515151;
	cursor: pointer;
}

.Sidebar-footer:hover .Sidebar-toggleArrow {
	transition: left 0.2s ease, rotate 1s ease;
	left: 70px;
}

@media (max-width: 500px) {
	.Sidebar-footer:hover:hover .Sidebar-toggleArrow {
		left: 25px;
	}

	.Sidebar-footer:hover:hover .Sidebar-toggleText {
		display: none;
	}
}

.Sidebar-footer:hover .Sidebar-toggleText {
	opacity: 1;
	animation: fadeIn 0.75s ease;
}

.Sidebar-toggleArrow {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-7px);
	cursor: pointer;
	transition: left 0.2s ease;
}

@media (max-width: 500px) {
	.Sidebar-toggleArrow {
		left: 20px;
		transform: rotate(179deg);
	}

	.Sidebar-toggleArrow:hover {
		left: 20px;
	}
}

.Sidebar-toggleText {
	position: absolute;
	bottom: 22px;
	left: 85px;
	opacity: 0;
	color: #818181;
	font-size: 12px;
	white-space: nowrap;
}

.Sidebar-menuIcon {
	color: #DDDDDD;
}

.Sidebar-menuIcon:not(.Sidebar-toggleArrow) {
	margin-right: 10px;
}

.Main {
	display: table-cell;
	vertical-align: top;
	width: 100%;
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#header {
	max-height: 45px;
	min-height: 0px;
	background-color: #fff;
	border-bottom: 1px solid #E5E5E5;
	margin: 0;
	padding: 0;
}

#header .nav > li {
	float: left;
}

#header .nav>li>a {
    padding: 3px 16px;
    line-height: 38px;
    cursor: pointer;
    color: #6D6D6D;
    border-left: 1px solid #E1E1E1;
}

#header .nav>li>a>.label {
    text-shadow: none;
    padding: 1px 4px;
    position: absolute;
    top: 8px;
    left: 6px;
}

.logo-header {
	width: 20px;
	margin-left: 20px;
	margin-top: -5px;
	margin-right: 0px;
}

.menu-bar-title {
	font-size: 18px;
	line-height: 47px;
	margin-left: 10px;
	display: inline;
	color: #666;
}

.page-header {
    vertical-align: middle;
    margin: 15px 0;
    padding: 0;
    border-bottom: none;
}

.page-header h1 {
	color: #848484;
	font-size: 30px;
	display: inline-block;
	margin-top: 0px;
}

.wrapper.margin-borders {
    margin-left: 20px;
    margin-right: 20px;
}

.wrapper.padding-borders {
    padding-left: 20px;
    padding-right: 20px;
}

.panel-heading h3 i {
	margin-right: 8px;
}

.nav-tabs {
	margin-bottom: 20px;
}

.nav-tabs > li.active > a {
	font-weight: bold;
}

.nav-tabs > li > a {
	color: #777;
}

.table tbody>tr>td {
	vertical-align:middle;
}

.voffset  { margin-top: 2px; }
.voffset1 { margin-top: 5px; }
.voffset2 { margin-top: 10px; }
.voffset3 { margin-top: 15px; }
.voffset4 { margin-top: 30px; }
.voffset5 { margin-top: 40px; }
.voffset6 { margin-top: 60px; }
.voffset7 { margin-top: 80px; }
.voffset8 { margin-top: 100px; }
.voffset9 { margin-top: 150px; }

.gradient {
    background: #ededed;
    background: -moz-linear-gradient(top,#ededed,#e0e0e0);
    /* background: -webkit-linear-gradient(top,#ededed,#e0e0e0); */
    background: -o-linear-gradient(top,#ededed,#e0e0e0);
    background: -ms-linear-gradient(top,#ededed,#e0e0e0);
    /* background: linear-gradient(to bottom,#ededed,#e0e0e0); */
}

.card {
    width: 100%;
    background-color: #FFF;
    border-radius: 3px;
    box-shadow: 0 1px 2px #c8d1d3;
}
.card .card-header {
    padding: 30px;
    font-size: 1.1em;
    font-weight: 400;
    border-bottom: 1px solid #dfe6e8;
    border-left: 0px solid transparent;
    color: #666;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.card .card-header .card-title {
    -ms-flex: 1;
    flex: 1;
}
.card .card-header .card-action {
    list-style: none;
    margin: 0;
    padding: 0;
}
.card .card-header .card-action > li > a {
    color: #dfe6e8;
}
.card .card-header .card-action > li > .dropdown-menu {
    right: 0;
    left: auto;
    border-radius: 2px;
}
.card .card-body {
    padding: 30px;
}
.card.card-mini .card-header {
    padding: 20px 30px;
}
.card.card-mini .card-body {
    padding: 20px 30px;
}
.card.card-tab .card-header {
    padding: 0;
    background-color: #f0f4f5;
    border-bottom: 0;
    overflow-x: scroll;
    overflow-y: visible;
}
.card.card-tab .card-header > ul,
.card.card-tab ul.nav-tabs {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    font-weight: 400;
    border-bottom: 1px solid #dfe6e8;
}
.card.card-tab .card-header > ul > li,
.card.card-tab ul.nav-tabs > li {
    display: block;
    margin-bottom: -2px;
    z-index: 10;
    width: 140px;
    min-width: 140px;
}
.card.card-tab .card-header > ul > li a,
.card.card-tab ul.nav-tabs > li a {
    padding: 20px 30px;
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
    color: #8d9293;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.card.card-tab .card-header > ul > li.active,
.card.card-tab ul.nav-tabs > li.active {
    border-left: 1px solid #dfe6e8;
    border-right: 1px solid #dfe6e8;
    background-color: #FFF;
}
.card.card-tab .card-header > ul > li.active a,
.card.card-tab ul.nav-tabs > li.active a {
    color: #29c75f;
    border-bottom: none !important;
}
.card.card-tab .card-header > ul > li:first-child.active,
.card.card-tab ul.nav-tabs > li:first-child.active {
    border-left: 0;
}
.card.card-tab .tab-content {
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
}
.card.card-tab .tab-content .tab-pane {
    position: absolute;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
    width: 100%;
    height: auto;
    display: none;
    padding: 30px;
    transition: all 0.3s ease;
    opacity: 0;
}
.card.card-tab .tab-content .tab-pane.active {
    transform: translate(0, 0);
    position: relative;
    opacity: 1;
    display: block;
}
.card.card-tab > .ng-isolate-scope > .nav-tabs {
    background-color: #f0f4f5;
}
.card.card-tab > .ng-isolate-scope > .nav-tabs > li.active {
    border-bottom: 2px solid #FFF;
    border-left: 1px solid #dfe6e8;
    border-right: 1px solid #dfe6e8;
    background-color: #FFF;
}
.card.card-tab > .ng-isolate-scope > .nav-tabs > li.active a {
    color: #29c75f;
}
.card.card-tab > .ng-isolate-scope .tab-content .tab-pane {
    opacity: 0;
}
.card.card-tab > .ng-isolate-scope .tab-content .tab-pane.active {
    opacity: 1;
}
.card.card-tab.card-mini .card-header > li a,
.card.card-tab.card-mini ul.nav-tabs > li a {
    padding-top: 20px;
    padding-bottom: 20px;
}
.card.card-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 2px;
    transition: all 0.2s ease;
}
.card.card-banner:hover {
    cursor: pointer;
    text-decoration: none;
}
.card.card-banner .card-header {
    background-color: #FFF;
}
.card.card-banner .card-body {
    padding: 0px;
}
.card.card-banner .card-body .icon {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 4em;
    color: #444;
    z-index: 0;
    padding: 10px;
    min-height: 100%;
    min-width: 100px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.card.card-banner .card-body img {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 4em;
    color: #444;
    z-index: 0;
    padding: 10px;
    min-height: 100%;
    min-width: 100px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.card.card-banner .card-body .content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    padding: 2rem;
    z-index: 100;
}
.card.card-banner .card-body .content .value {
    font-size: 4em;
    line-height: 3rem;
    font-weight: 200;
    padding-top: 2rem;
    color: #444;
}
.card.card-banner .card-body .content .value .sign {
    font-size: 0.4em;
    font-weight: 200;
    margin-right: 5px;
    opacity: 0.75;
}
.card.card-banner .card-body .content .title {
    font-size: 1em;
    font-weight: 400;
    color: #8d9293;
    text-transform: uppercase;
}
.card.card-banner .card-body::after {
    content: '';
    position: relative;
    display: block;
    clear: both;
}
.card.card-chart .card-header {
    border-bottom: 0;
}
.card.card-chart .card-header .card-title .title {
    background-color: #FFF;
    padding: 6px 12px;
    border-radius: 2px;
    font-weight: 400;
    width: auto;
    display: inline;
    text-transform: uppercase;
}
.card.card-green {
    background-color: #29c75f;
}
.card.card-green .card-body .icon {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.05);
}
.card.card-green .card-body .content .value {
    color: #FFF;
}
.card.card-green-light {
    background-color: #FFF;
}
.card.card-green-light .card-body .icon {
    color: #29c75f;
    background-color: rgba(41, 199, 95, 0.05);
}
.card.card-green-light .card-body img {
    color: #29c75f;
    background-color: rgba(41, 199, 95, 0.05);
}
.card.card-green-light .card-body .content .value {
    color: #29c75f;
}
.card.card-green-light:hover {
    background-color: #29c75f;
}
.card.card-green-light:hover .card-body .icon {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.1);
}
.card.card-green-light:hover .card-body img {
    background-color: rgba(255, 255, 255, 0.1);
    filter: brightness(0) invert(1);
}
.card.card-green-light:hover .card-body .content .title,
.card.card-green-light:hover .card-body .content .value {
    color: #FFF;
}
.card.card-green.card-chart .card-header {
    background-color: #29c75f;
    color: #29c75f;
}
.card.card-blue {
    background-color: #39c3da;
}
.card.card-blue .card-body .icon {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.05);
}
.card.card-blue .card-body img {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.05);
}
.card.card-blue .card-body .content .value {
    color: #FFF;
}
.card.card-blue-light {
    background-color: #FFF;
}
.card.card-blue-light .card-body .icon {
    color: #39c3da;
    background-color: rgba(57, 195, 218, 0.05);
}
.card.card-blue-light .card-body img {
    color: #39c3da;
    background-color: rgba(57, 195, 218, 0.05);
}
.card.card-blue-light .card-body .content .value {
    color: #39c3da;
}
.card.card-blue-light:hover {
    background-color: #39c3da;
}
.card.card-blue-light:hover .card-body .icon {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.1);
}
.card.card-blue-light:hover .card-body .content .title,
.card.card-blue-light:hover .card-body .content .value {
    color: #FFF;
}
.card.card-blue.card-chart .card-header {
    background-color: #39c3da;
    color: #39c3da;
}
.card.card-orange {
    background-color: #fc8229;
}
.card.card-orange .card-body .icon {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.05);
}
.card.card-orange .card-body .content .value {
    color: #FFF;
}
.card.card-orange-light {
    background-color: #FFF;
}
.card.card-orange-light .card-body .icon {
    color: #fc8229;
    background-color: rgba(252, 130, 41, 0.05);
}
.card.card-orange-light .card-body .content .value {
    color: #fc8229;
}
.card.card-orange-light:hover {
    background-color: #fc8229;
}
.card.card-orange-light:hover .card-body .icon {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.1);
}
.card.card-orange-light:hover .card-body .content .title,
.card.card-orange-light:hover .card-body .content .value {
    color: #FFF;
}
.card.card-orange.card-chart .card-header {
    background-color: #fc8229;
    color: #fc8229;
}
.card.card-yellow {
    background-color: #FFBC11;
}
.card.card-yellow .card-body .icon {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.05);
}
.card.card-yellow .card-body .content .value {
    color: #FFF;
}
.card.card-yellow-light {
    background-color: #FFF;
}
.card.card-yellow-light .card-body .icon {
    color: #FFBC11;
    background-color: rgba(255, 188, 17, 0.05);
}
.card.card-yellow-light .card-body .content .value {
    color: #FFBC11;
}
.card.card-yellow-light:hover {
    background-color: #FFBC11;
}
.card.card-yellow-light:hover .card-body .icon {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.1);
}
.card.card-yellow-light:hover .card-body .content .title,
.card.card-yellow-light:hover .card-body .content .value {
    color: #FFF;
}
.card.card-yellow.card-chart .card-header {
    background-color: #FFBC11;
    color: #FFBC11;
}
@media (max-width: 767px) {
    .card .card-header {
        padding: 15px;
    }
    .card .card-body {
        padding: 15px;
    }
    .card.card-mini .card-header {
        padding: 15px;
    }
    .card.card-mini .card-body {
        padding: 15px;
    }
    .card.card-tab .card-header {
        padding: 0;
    }
    .card.card-tab .card-body {
        padding: 0;
    }
    .card.card-tab .tab-content .tab-pane {
        padding: 15px;
    }
    .card.card-tab.card-mini .card-header > li a,
    .card.card-tab.card-mini ul.nav-tabs > li a {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .card.card-banner .card-body .icon {
        font-size: 3em;
        min-width: 80px;
    }
    .card.card-banner .card-body .content {
        padding: 1rem;
    }
    .card.card-banner .card-body .content .value {
        font-size: 3em;
        padding-top: 1rem;
    }
    .card.card-banner .card-body .content .title {
        font-size: 0.9em;
    }
}

.card.card-belize-hole {
    background-color: #FFF;
}
.card.card-belize-hole .card-body .icon {
    color: #2980b9;
    background-color: rgba(41, 128, 185, 0.05);
}
.card.card-belize-hole .card-body img {
    color: #2980b9;
    background-color: rgba(41, 128, 185, 0.05);
}
.card.card-belize-hole .card-body .content .value {
    color: #2980b9;
}
.card.card-belize-hole:hover {
    background-color: #2980b9;
}
.card.card-belize-hole:hover .card-body .icon {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.1);
}
.card.card-belize-hole:hover .card-body img {
    filter: brightness(0) invert(1);
    background-color: rgba(255, 255, 255, 0.1);
}
.card.card-belize-hole:hover .card-body .content .title,
.card.card-belize-hole:hover .card-body .content .value {
    color: #FFF;
}

.card.card-pomegranate {
    background-color: #FFF;
}
.card.card-pomegranate .card-body .icon {
    color: #c0392b;
    background-color: rgba(192, 57, 43, 0.05);
}
.card.card-pomegranate .card-body .content .value {
    color: #c0392b;
}
.card.card-pomegranate:hover {
    background-color: #c0392b;
}
.card.card-pomegranate:hover .card-body .icon {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.1);
}
.card.card-pomegranate:hover .card-body .content .title,
.card.card-pomegranate:hover .card-body .content .value {
    color: #FFF;
}

.coletor-located-details p {
    padding-top: 7px;
}


.fa.add {
    color: green;
    margin-left: 5px;
}

.loading {
}

#order-details h3 {
    margin-bottom: 30px;
}

#order-details p {
    margin-top: 10px;
}

#order-details p {
    
}

/********************************/

.graphite {
    border: 1px solid #ccc;
}

.graphite thead th{
    background: #ededed;
    background: -moz-linear-gradient(top,#ededed,#e0e0e0);
    /* background: -webkit-linear-gradient(top,#ededed,#e0e0e0); */
    background: -o-linear-gradient(top,#ededed,#e0e0e0);
    background: -ms-linear-gradient(top,#ededed,#e0e0e0);
    /* background: linear-gradient(to bottom,#ededed,#e0e0e0); */    
    border-bottom: 1px solid #ccc !important;
    border-right: 1px solid #ccc !important;
}

.toggle-icon {
    margin-right: 15px;
    margin-top: 2px;
}

.form-category-title {
    margin-top: 40px;
    margin-bottom: 20px;   
    padding-top: 15px;
    border-top: 1px solid #bbb;
}

.form-horizontal.w-limit input {
    max-width: 1000px;
}

.form-horizontal.w-limit select {
    max-width: 1000px;
}

.form-horizontal.w-limit textarea {
    max-width: 1000px;
}



.section-title {
    border-bottom: 1px solid #ddd;
    padding-bottom: 7px;
}

.section-item {
    width: 49%;
    min-width: 320px;
    vertical-align: top;
    display: inline-block;
}

.section-item tr:nth-child(even) {
    background-color: #f1f1f1;
}

.section-item td{
    text-align: right;
}

.section-item table {
}

.proposal-info {
    margin-bottom: 20px;
}

.alternate tr:nth-child(even) {
    background-color: #f1f1f1;

}

.notifications-panel {
    width: 230px;
}

////////////////// wizard

.wizard {
    margin: 20px auto;
    background: #fff;
}

    .wizard .nav-tabs {
        position: relative;
        margin: 40px auto;
        margin-bottom: 0;
        border-bottom-color: #e0e0e0;
    }

    .wizard > div.wizard-inner {
        position: relative;
    }

.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 70px;
    height: 70px;
    line-height: 70px;
    display: inline-block;
    border-radius: 100px;
    background: #fff;
    border: 2px solid #e0e0e0;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 25px;
}
span.round-tab i{
    color:#555555;
}
.wizard li.active span.round-tab {
    background: #fff;
    border: 2px solid #5bc0de;
    
}
.wizard li.active span.round-tab i{
    color: #5bc0de;
}

span.round-tab:hover {
    color: #333;
    border: 2px solid #333;
}

.wizard .nav-tabs > li {
    width: 25%;
}

.wizard li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: #5bc0de;
    transition: 0.1s ease-in-out;
}

.wizard li.active:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 1;
    margin: 0 auto;
    bottom: 0px;
    border: 10px solid transparent;
    border-bottom-color: #5bc0de;
}

.wizard .nav-tabs > li a {
    width: 70px;
    height: 70px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
}

    .wizard .nav-tabs > li a:hover {
        background: transparent;
    }

.wizard .tab-pane {
    position: relative;
    padding-top: 50px;
}

.wizard h3 {
    margin-top: 0;
}

@media( max-width : 585px ) {

    .wizard {
        width: 90%;
        height: auto !important;
    }

    span.round-tab {
        font-size: 16px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wizard .nav-tabs > li a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wizard li.active:after {
        content: " ";
        position: absolute;
        left: 35%;
    }
}

.fa-btn {
    cursor: pointer;
}

.btn-menu {
    margin-bottom: 10px;
}

.action-bar {
    min-width: 130px;
}

.action-bar a {
    margin-right: 3px;
}

.action-bar button {
    margin-right: 3px;
}

.no-sort:after {
    display: none !important;
}

.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

.c-form-dropdown-li {
    cursor: pointer;
    padding-left: 15px !important;
}

.c-form-dropdown-li:hover {
    background-color: #ccc;
}

.c-form-dropdown-search-li, .c-form-dropdown-create-li {
    cursor: pointer;
    color: #16a085;
    padding-left: 15px !important;
}

.c-form-dropdown-search-li:hover, .c-form-dropdown-create-li:hover {
    background-color: #ccc;
}

.c-form-label {
    display: none;
}

.c-disabled {
    pointer-events: none;
    opacity: 0.7;
}

.selected {
    background-color: #acbad4 !important;
}

.selected:hover {
    background-color: #acbad4 !important;
}

.retorno-paid {

}

.retorno-not-found {
    background-color: #ccc !important;
}

.proposal-avatar {
    float: left;
}

.proposal-general-info {
    display: inline-block;
    padding-top: 20px;
    padding-left: 20px
}

.proposal-sub {
    font-size: 12px;
}

.proposal-sub-icon {
    margin-right: 10px
}

.period-selection {
    width: 360px;
    padding: 3px 20px;
}

.period-selection input {
    width: 85px !important;
    display: inline;
    height: 30px;
    font-size: 12px;
    padding: 0;
    padding-left: 8px
}

.selected-value {
    width: calc(100% - 10px);
    display: inline-block;
}

.btn-dropdown-select {
    text-align: left;
}

.dropdown-menu a{
    cursor: pointer
}

.dropdown-menu.filter {
    min-width: 360px;
}

.action-bar a {
    float: right;
}

.action-bar button {
    float: right;
}

.action-bar span {
    float: right;
    padding: 0;
    margin: 0;
}

.action-menu {
    min-width: 130px;
}

.action-menu a {
    margin-right: 3px;
}

.action-menu button {
    margin-right: 3px;
}

.btn-full-width {
    width: 100%
}

.panel-modern {
    border-radius: 0px;
    border: 1px solid #ddd;
}

.panel-modern > .panel-heading {
    background-color: #2980b9;
    color: #ffffff;
    height: 50px;
    border-radius: 0px;
}

.panel-title.modern {
    font-size: 20px;
    font-weight: lighter;
    line-height: 30px;
}

.contract-due-date {
    font-size: 24px;
    display: inline;
}

.panel-cell {
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.panel-cell.no-padding {
    padding-bottom: 0px !important;
}

.panel-cell-header-title {
    font-size: 18px;
    padding: 10px
}

.contract-software-avatar img {
    width: 45px;
    float: right;
    margin-right: 20px;
}

.table.no-margin {
    margin: 0px;
}

p.inline {
    display: inline;
}

.table-borderless tbody tr td,
.table-borderless tbody tr th,
.table-borderless thead tr th,
.table-borderless thead tr td,
.table-borderless tfoot tr th,
.table-borderless tfoot tr td {
    border: none;
}

.table-striped.table-gray>tbody>tr:nth-child(odd)>td, 
.table-striped.table-gray>tbody>tr:nth-child(odd)>th {
   background-color: #eee;
 }
.table-striped.table-gray>tbody>tr:nth-child(even)>td, 
.table-striped.table-gray>tbody>tr:nth-child(even)>th {
   background-color: #ddd;
 }

 .no-padding {
    padding: 0 !important;
 }

 .btn-styleless {
    color: #000;
    border: 0px;
    background-color: #fff;
 }

/*
 * Row with equal height columns
 * --------------------------------------------------
 */
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}

.teste {
    background-color: #fff;
}

.form-feedback {
    position: absolute;
    right: 5px;
    top: 5px;
}

.c-form-select-new-load {
    cursor: pointer;
}

.right-checkbox {
    margin-left: 5px !important;
    margin-top: 5px !important;
}

.customer-checkbox {
    padding-top: 4px; 
    margin-left: 8px;
    margin-bottom: 4px;
    width: 100%;
}

.customer-checkbox label {
    width: 180px;
    font-weight: normal;
}

.customer-checkbox label input {
    float: right;
}

.strong {
    font-weight: bold;
}

.f-20 {
    font-size: 20px !important;
}

.f-14 {
    font-size: 14px !important;
}

.f-13 {
    font-size: 13px !important;
}

.f-12 {
    font-size: 12px !important;
}

.fi-12 input {
    font-size: 12px !important;
}

.fs-12 span{
    padding-top: 6px;
    font-size: 12px !important
}

.f-16 {
    font-size: 16px !important;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.m-2 {
    margin: 2em;
}

.d-inline {
    display: inline !important; 
}

.d-inline-block {
    display: inline-block !important; 
}

.pointer {
    cursor: pointer;
}

.upper {
    text-transform: uppercase; 
}

.lower-case {
    text-transform: lowercase !important; 
}

::-webkit-input-placeholder {
   text-transform: initial;
}

:-moz-placeholder { 
   text-transform: initial;
}

::-moz-placeholder {  
   text-transform: initial;
}

:-ms-input-placeholder { 
   text-transform: initial;
}

.child-mt-10 > div  {
    margin-top: 10px !important;
}

.w-100 {
    width: 100%;
}

.child-disabled-white .form-control[disabled] {
    background-color: white;
}

.child-upper input {
    text-transform: uppercase;
}

.child-upper span {
    text-transform: uppercase;
}

.relatorios-box {
    border: 1px solid #ddd;
    width: 660px;
    margin: 0 auto;
    border-radius: 5px;
}

.dataTables_filter > label > input{
    width: 320px !important;
}

.table-fixed thead {
  width: 97%;
}
.table-fixed tbody {
  height: 230px;
  overflow-y: auto;
  width: 100%;
}
.table-fixed thead, .table-fixed tbody, .table-fixed tr, .table-fixed td, .table-fixed th {
  display: block;
}
.table-fixed tbody td, .table-fixed thead > tr> th {
  float: left;
  border-bottom-width: 0;
}

.text-grey {
    color: #888;
}

.text-black {
    color: black !important;
}

.mt-2 {
    margin-top: 1.5em
}

.bg-yellow {
    background-color: #ffc;
}

.bg-yellow:hover {
    background-color: #ffc !important;
}

.max-w-200 {
    width: 200px;
}

.max-w-250 {
    width: 250px;
}