header
{
  color: #007541;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid black;
}
/* On scroll, the header-fixed class is added to the header. */
header.header-fixed
{
  color: #FFFFFF;
  background: #007541;
  opacity: 0.95;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
}
header, header + *, .header-top, .header-bottom, .navbar-brand, .navbar-brand img
{
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* The full size of the logo for the main header. */
.navbar-brand img
{
  max-height: 64px;
  max-width: 256px;
}
/* The reduced size of the logo for the 'fixed' header. */
.header-fixed img
{
  max-height: 42px;
  max-width: 168px;
}
nav.header-fixed
{
  padding: 0 0 0 0;
}
nav > ul > li > a, nav > ul > li > div > a
{
    font-size: 13px;
    line-height: 20px;
    color: #333333;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    background: transparent;
}
header.header-fixed > nav > ul > li > a
{
  color: #FFFFFF;
}
/*
.navbar-nav .btn-main {
    padding: 8px 5px 9px;
}

.navbar-nav > li.active > a {
    color: #333333;
    background: transparent;
}

.nav > li > a:focus, .nav > li > a:hover {
    color: #333333;
    background: transparent;
}

.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
    background-color: #008d36;
}

.navbar-nav > li > .dropdown-menu {
    background-color: #e5e1d4;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    margin: 0 0 0;
    padding: 5px 20px 5px;
}
*/

/* spinner css start */
.spinner-wr
{
  background: #FFFFFF;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.spinner
{
  width: 60px;
  height: 60px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
.double-bounce1, .double-bounce2
{
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border-radius: 50%;
    background-color: #008d36;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2
{
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce
{
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce
{
    0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
    } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    }
}

/* spinner css end */

/* back-to-top css start */
.back-to-top
{
  position: fixed;
  bottom: 5px;
  right: 4px;
  z-index: 99;
  width: 44px;
  height: 44px;
  padding: 0 0 0;
  margin: 0 0 0;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  background: rgba(255,255,255,0.75) url(img/i-arr-up.png) no-repeat center center;
  border-radius: 22px;
  cursor: pointer;
  text-decoration: none;
  text-indent: -9999px;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  opacity: 0;
}
.back-to-top.show
{
  opacity: 1;
}
.back-to-top:not(.show):hover
{
  opacity: 0;
  cursor: default;
}
.back-to-top:hover
{
  -moz-animation: bounce 1.5s infinite;
  -webkit-animation: bounce 1.5s infinite;
  animation: bounce 1.5s infinite;
}
@-moz-keyframes bounce
{
  0%, 20%, 50%, 80%, 100%
  {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40%
  {
    -moz-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60%
  {
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-webkit-keyframes bounce
{
  0%, 20%, 50%, 80%, 100%
  {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40%
  {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60%
  {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes bounce
{
  0%, 20%, 50%, 80%, 100%
  {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40%
  {
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60%
  {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
/* back-to-top css end */
