﻿a:hover {
     color:#f4983b;
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
     background-color: #00753b;
    
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color:#333;
    }
}

.validConfirm  {
    border-color: #00753b;

}
.validError  {
    border-color: #e75754;

}

.panel-info {
  border-color: #dfdfdf;
}
.panel-info > .panel-heading {
  color: #fff;
  background-color: #00753b;
  border-color: #dfdfdf;
}
.navbar-inverse {
  background-color: #00753b;
  border-color: #dfdfdf;
}
.navbar-inverse .navbar-text {
  color: #fff;
}
.navbar-inverse .navbar-nav > li > a {
  color: #fff;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #000;
  font-weight:bold;
  background-color: #00753b;
}
.btn-primary,
.btn-primary:focus,
.btn-primary:active { 
    font-weight:bold;
    color: #fff;
  background-color: #dc7204;
  border-color: #dc7204;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #f4983b;
    border-color: #f4983b; /*set the color you want here*/
}
table .success,
.table .success,
table .warning,
.table .warning,
table .danger,
.table .danger,
table .info,
.table .info {
  color: #000;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 15px;
}
.form-horizontal .checkbox {
  min-height: 24px;
}

.FrameRegister-NoMargin {
    padding:0;
}

.FrameRegister-ButtonBottom {
    margin-bottom:10px;
}
.FrameRegister-Container {
      margin-right: auto;
  padding-left: 0;
}

.Offer-Container {
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}
.Offer-Header {

  border-bottom: 1px solid #dfdfdf;

}
.Offer-Module {
  border: 1px solid #dfdfdf;
  border-top:0px;
 padding-top:12px;
 padding-bottom:15px;

}
.Offer-Checkbox {
    height:24px;
    width:24px;

}
.Offer-TableRow {
   margin-bottom:0px;

}
.Offer-Fixer {
      vertical-align: top;
  font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
}
.table-striped-column > tbody > tr td:nth-of-type(even) {
  background-color: #f9f9f9;
}
.triangle {
        padding: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #dc7204;
    float: right;
    -moz-transition: -moz-transform .3s;
    -webkit-transition: -webkit-transform .3s;
    -o-transition: -o-transform .3s;
    transition: transform .3s;
    position: relative;
    right: 0;
    top: 0;
}
.arrowToggle {
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    border-left: 10px solid #f4983b;
}
.lentusFeedback {
     position: absolute;
    z-index: 5;
    color: #767E80;
    top: 10px;
    right: 50px;
}

.form-control-inline {
    min-width: 0;
    width: auto;
    display: inline;
}

form div span .btn[disabled] {
        color:#fff;
        border: none;
        background-color: #dc7204;
        font-weight:bold;
        font-family:Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
        opacity:0.9;
    }

.Loader {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 20;
    background-color: white;
    text-align:center;
     opacity: 0.8; 
 visibility: visible;
 -webkit-transition: visibility 0.2s linear,
 opacity 0.2s linear;
 -moz-transition: visibility 0.2s linear,
 opacity 0.2s linear;
 -o-transition: visibility 0.2s linear,
 opacity 0.2s linear; 
}

.hideLoader {
    opacity: 0;
    visibility:hidden;
}


.loader-box{
	width:200px;
	height:200px;
	margin:auto;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	background-color:#ffffff;
	margin-top:100px;
	text-align:center;
}

.lable{
	height:30px;
	line-height:30px;
	padding-top:20px;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color:#404040;
	font-size:20px;
}

.loader{
	width:90px;
	height:90px;
	background-color:#FFFFFF;
	overflow:hidden;
	display:block;
	-moz-border-radius:100%;
	-webkit-border-radius:100%;
	border-radius:100%;
	border:3px solid #FAA741;
	position:relative;
	margin:15px auto;
  z-index:1;
}

.element-animation{
  animation:animationFrames linear 3s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards; /*when the spec is finished*/
  -webkit-animation: animationFrames linear 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
  -moz-animation: animationFrames linear 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: animationFrames linear 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: animationFrames linear 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}


@keyframes animationFrames{
  0% {
    transform: translate(-1160px,15px)  ;
  }
  100% {
    transform: translate(0px,15px)  ;
  }
}

@-moz-keyframes animationFrames{
  0% {
    transform: translate(-1160px,15px)  ;
  }
  100% {
    transform: translate(0px,15px)  ;
  }
}

@-webkit-keyframes animationFrames {
  0% {
    transform: translate(-1160px,15px)  ;
  }
  100% {
    transform: translate(0px,15px)  ;
  }
}

@-o-keyframes animationFrames {
  0% {
    transform: translate(-1160px,15px)  ;
  }
  100% {
    transform: translate(-0px,15px)  ;
  }
}

@-ms-keyframes animationFrames {
  0% {
    transform: translate(-1160px,15px)  ;
  }
  100% {
    transform: translate(0px,15px)  ;
  }
}

/* Input, no border unless focused */
.input-nbuf:focus { 
    border: 1px inset #C0C0C0;
}
.input-nbuf{
	border: 1px solid transparent; /* Only used to reserve space so it doesn't seem to jump */
	background-color: transparent;
    padding-left:1px;
    width: 200px;

}
.inputDropDown {
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    height: 30px;
    padding: 1px 5px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 3px;
}
/*.underProcessRow{
    background-color:#dc7204;
}*/
div > div > div > table > tbody > tr > td.underProcessRow{
    background-color:#dc7204!important;
}
.marked{
    font-size:larger;
    color:red;
}


.bootstrap-select {
    z-index: 999;
    position: absolute;
    
}

.bootstrap-select.btn-group .dropdown-toggle,
.bootstrap-select.btn-group .dropdown-toggle:hover,
.bootstrap-select.btn-group .dropdown-toggle:active,
.bootstrap-select.btn-group .dropdown-toggle:focus {
    background: none !important;
    border: none !important;
    outline: 0px;
    box-shadow: none;
    display: none;
}

.bootstrap-select.btn-group .caret {
    display: none;
}

.bootstrap-select.btn.dropdown-toggle {
        height: 0px;
        padding: 0px;
    }

.bootstrap-select.btn-group .filter-option {
    display: none !important;
}