/* 
	custom styles that get applied over bootstrap
	remember to add !important to make sure your new style for each attribute gets applied
	e.g. background-color: #000 !important;
*/

@font-face {
  font-family: Gotham;
  src: url(../fonts/Gotham-Medium.otf);
}

/*	Main elements	*/
body {
	/* Margin bottom by footer height */
	margin-bottom: 80px !important;
  /*font-family: Gotham !important;*/
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-position: center !important;
  background-size: cover !important;
  background: url(/Assets/Default/Images/site_bg.png) !important;
  color: #2F4659 !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #2F4659;
}

.panel-title {
  color: #2F4659;
}

a {
  color: #3CA4C3;
}

a:hover {

}

/*	Override bootstrap	*/
.panel-primary {
  border-color: #3792AE;
}

.alert-warning {
    background-color: #fff5c9;
    border-color: #e0d49d;
}

.alert-success {
      background-color: #ccf1bd;
    border-color: #b2d8a2;
}

.alert-danger {
  background-color: #f7cacc;
    border-color: #dca5a7;
}

.table-bordered, .table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    border: 1px solid #ddd;
}

.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
    color: #fff;
    background-color: #3da4c3;
    border-color: #29acd4;
  }

.panel-primary .panel-heading {
  background-color: #3EA4C3;
  border-color: #3792AE;
} 

.navbar-inverse {
  border-radius: 0px !important;
  background-color: rgba(0, 0, 0, 0);
  border:none;
  margin-bottom:0px;
}

.navbar-extension {
  margin-bottom: 20px;
    background-color: #ffffff;
    height: 10px;
    border-bottom: 5px solid #3da4c3;
    border-top: 2px solid #2F4759;
}

.navbar {

}

.navbar-inverse .navbar-nav > li > a {
    color: #013866;
    border-radius: 10px 10px 0px 0px;
}

.navbar-inverse .navbar-nav>.active>a {
  color: #fff;
  background-color: #2F4759;
}

.navbar-inverse .navbar-nav>.active>a:hover {
  background-color: #2F4759;
}

.navbar-inverse .navbar-nav > li > a:hover {
  color: #03A5C5;
}

.navbar-inverse .navbar-toggle {
  border-color: #008ea7;
  background-color: #06a6c4;
}

.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover {
  border-color: #008ea7;
  background-color: #06a6c4;
}

.navbar-toggle {

}

.nav-pills>li>a {

}

.nav-pills>li>a:hover {

}

.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {

}


.nav-tabs>li>a {

}

.nav-tabs>li>a:hover {

}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {

}

.glyphicon-small {
	font-size: 0.6em !important;
}

.glyphicon-regular {
	font-size: 1em !important;
}

.glyphicon-large {
	font-size: 2em !important;
}

.glyphicon {
	text-decoration: none !important;
}

/*PRIMARY BUTTON*/

.btn-primary {
  background-color: #3da4c3;
  border-color: #3692ae;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: #3893af;
  border-color: #31859e;
}



/*	Our Own !!	*/
html {
	position: relative !important;
	min-height: 100% !important;
  font-family: Gotham !important;
}

.bg-img {
  background: url(/Assets/Default/Images/processed_1.png);
  background-size: cover;
}

.sticky-bottom {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  bottom: 0px;
  z-index: 7;
}

.actions-area {
  background-color: #3EA4C3 !important;
  border: 1px solid #3792AF !important;
  box-shadow: inset 0 1px 1px #3792AF !important;
  padding:7px;
  width:100%;
  margin-bottom:0px!important;
  color:white!important;
  border-radius: 4px !important;
}

.actions-area:hover {
  background-color: #3792AF !important;
  border: 1px solid #3389A3 !important;
  box-shadow: inset 0 1px 1px #3389A3 !important;
}

.actions-area:active {
  outline:none;
}

.actions-area:focus {
  outline:none;
}

.spinner {
  margin: 20px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  margin-top: 120px;
}

.spinner > div {
  background-color: #2F4659;
  height: 100%;
  width: 6px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}


.footer {
  border-top: 2px solid #3da4c3;
  position: absolute !important;
  bottom: 0 !important;
  width: 100% !important;
  /* Set the fixed height of the footer here */
  height: 80px !important;
  background-color: #2E4658 !important;
  padding-top: 15px !important;
  color: #6D8C91;
}

.footer a {
  color: #6D8C91;
}

.footer a:hover {

}

#scroll-links {
	position: fixed;
	top: initial;
	left: inherit;
	z-index: 1001;
	display: none;
	background-color: rgb(70, 70, 71);
	background-color: rgba(70, 70, 71, 1);
	padding: 10px;
}

#button-fixed {
	position: fixed; 
	top: 50px; 
	z-index: 1001; 
	background-color: rgb(255, 255, 255);  
	background-color: rgba(255, 255, 255, 0.8);
	padding: 10px;
}
	
.affix {
    top: 0;
    width: 100%;
    z-index: 9999 !important;
}

.affix + .container-fluid {
    padding-top: 70px;
}
	
.fluid-background {
	background-repeat: no-repeat; 
	background-size: cover;
	background-position: top;
	background-attachment: fixed;
}
	
.fluid-padding {
	padding-top: 20px;
}

.reduce-h1-padding {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}