@font-face {
  font-family: 'Satellite';
  src: url('../fonts/Satellite.otf')  format('opentype')
}
@font-face {
  font-family: 'Satellite-Oblique';
  src: url('../fonts/Satellite-Oblique.otf')  format('opentype')
}

@import 'https://fonts.googleapis.com/css?family=PT+Sans';

body{
	background-color: #fff;
	font-family: 'PT Sans', sans-serif;
	font-size:18px;
	color:#666;
}
a:hover{
	text-decoration: none;
}
#fullpage{
	visibility: hidden;
	transition:visibility 1s;
}
.title{
  font-size:26px;
  color:#333;
}
.title small{
	font-size:18px;
	color:#999;
}
.dropdown_col{
	display: none;
}
.slogan{
	font-size:26px;
	color: #337ab7;
}
.ghost-button {
    color: #337ab7;
    background: #fff;
    border: 1px solid #337ab7;
    font-size: 17px;
    padding: 7px 12px;
    font-weight: normal;
    margin: 6px 0;
    margin-right: 12px;
    display: inline-block;
    text-decoration: none;
    font-family: 'PT Sans', sans-serif;
    min-width: 120px;
    transition:0.3s;
    cursor: pointer;
}

.ghost-button:hover, .ghost-button:active , .ghost-button:focus {
  color:#fff;
  background:#337ab7;
  text-decoration: none;
}

.notifications{
  width:100%;
  height: 50px;
  position: absolute;
  bottom:0px;
  left:0px;
  display: none;
  z-index: 1000;
}
.btn-row{
  margin-top: 10px;
}
#calculate_acquisition{
  margin-top: 20px;
}

/* Radio buttons */
.radiowrap{
	width:700px;
	position: relative;
	margin: auto;
}
.radiowrap ul{
  list-style: none;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  margin-left:50px;
}
.radiowrap ul li{
  color: #AAAAAA;
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.radiowrap ul li input[type=radio]{
  position: absolute;
  visibility: hidden;
}

.radiowrap ul li label{
  display: block;
  position: relative;
  font-weight: 300;
  padding: 25px 25px 25px 80px;
  margin: 10px auto;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
  transition: 0.25s;
  margin-top: 0px;
}

.radiowrap ul li:hover label{
	color: #337ab7;
}

.radiowrap ul li .check{
  display: block;
  position: absolute;
  border: 5px solid #AAAAAA;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 25px;
  left: 20px;
	z-index: 5;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
}

.radiowrap ul li:hover .check {
  border: 5px solid #337ab7;
}

.radiowrap ul li .check::before {
  display: block;
  position: absolute;
	content: '';
  border-radius: 100%;
  height: 5px;
  width: 5px;
  top: 5px;
	left: 5px;
  margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}

.radiowrap input[type=radio]:checked ~ .check {
  border: 5px solid #337ab7;
}

.radiowrap input[type=radio]:checked ~ .check::before{
  background: #337ab7;
}

.radiowrap input[type=radio]:checked ~ label{
  color: #337ab7;
}


@media only screen and (max-width: 767px) {
	.radiowrap{
		width:100%;
		position: relative;
		margin: auto;
	}
  	.radiowrap ul{
  		margin-left:10px;
  	}
  	.radiowrap ul li label{
	  	font-size: 1.1em;
	  	margin-top: 0px;
	}
}


.checkwrap{
	width:500px;
	position: relative;
	margin:auto;
}
.checkwrap .done {
  order: 1;
  display: none;
}

.checkwrap .done::after {
  content: ' (' counter(done-items) ')';
}

.checkwrap .undone {
  order: 3;
  display: none;
}

.checkwrap .undone::after {
  content: ' (' counter(undone-items) ')';
}

.checkwrap .items {
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin-left:50px;
  counter-reset: done-items undone-items;
}
.checkwrap input {
  display: block;
  height: 53px;
  margin: 0 0 -53px -9999px;
  order: 4;
  outline: none;
  counter-increment: undone-items;
}

.checkwrap input:checked {
  order: 2;
  counter-increment: done-items;  
}

.checkwrap label {
  display: block;
  position: relative;
  padding: 10px 0 10px 45px;
  order: 4;
  cursor: pointer;
  color:#AAAAAA;
  font-size:16px;
  animation: undone .5s;
}

.checkwrap label::before {
  content: '\f10c'; /* circle outline */
  display: block;
  position: absolute;
  top: 11px;
  left: 10px;
  font: 1.5em 'FontAwesome';
}

.checkwrap label:hover, input:focus + label {
  background-color: rgba(255, 255, 255, .2);
}

.checkwrap input:checked + label {
  order: 2;
  color:#337ab7;
  animation: done .5s;
}

.checkwrap input:checked + label::before {
  content: '\f058'; /* circle checkmark */
}

.checkwrap h2{
	font-family: 'PT Sans', sans-serif;
	font-size:24px;
}
@keyframes done {
  0% {
    opacity: 0;
    background-color: rgba(255, 255, 255, .4);
    transform: translateY(20px);
  }
  50% {
    opacity: 1;
    background-color: rgba(255, 255, 255, .4);
  }
}

@keyframes undone {
  0% {
    opacity: 0;
    background-color: rgba(255, 255, 255, .4);
    transform: translateY(-20px);
  }
  50% {
    opacity: 1;
    background-color: rgba(255, 255, 255, .4);
  }
}


@media only screen and (max-width: 767px) {
	.checkwrap{
		width:100%;
	}
	.checkwrap .items {
	  display: flex;
	  flex-direction: column;
	  padding: 20px;
	  margin-left:10px;
	  counter-reset: done-items undone-items;
	}
	.checkwrap label {
	  display: block;
	  position: relative;
	  padding: 5px 0 5px 45px;
	  order: 4;
	  cursor: pointer;
	  color:#AAAAAA;
	  font-size:16px;
	  animation: undone .5s;
	}
	.checkwrap label::before {
	  content: '\f10c'; /* circle outline */
	  display: block;
	  position: absolute;
	  top: 1px;
	  left: 10px;
	  font: 1.5em 'FontAwesome';
	}
}

/* Section 1 */
#section1 .col-md-12{
	margin-bottom:20px;
}
#section1 .statement span{
	color:#999;
	font-size:15px;
}
#section1 .next_btn{
	margin-top:80px;
}


/* Section 2 */
#section2 .col-md-12{
	margin-bottom:20px;
}
#section2 .title{
	margin-bottom:40px;
}
#section2 .statement span{
	color:#999;
	font-size:15px;
}
#section2 .next_btn{
	margin-top:80px;
}

@media only screen and (max-width: 767px) {
  #section2 #statement1{
  	text-align: left !important;
  	margin-bottom:10px;
  }
  #section2 #statement2{
  	text-align: right !important;
  	margin-top:10px;
  }
  #section2 .slider_col{
  	margin-left:10px;
  	margin-right:10px;
  }
}

/* Section 3 */
#section2 .title{
	margin-bottom:80px;
}
#section2 .next_btn{
	margin-top:80px;
}

/* Section 3 */
#section3 .title{
	margin-bottom:40px;
}
#section3 .next_btn{
	margin-top:80px;
}
#section3 .radiowrap{
	width:500px;
	position: relative;
	margin: auto;
}

/* Section 4 */
#section4 .title{
	margin-bottom:80px;
}
#section4 .next_btn{
	margin-top:80px;
}
@media only screen and (max-width: 767px) {
	#section4 .title{
		margin-bottom:40px;
		font-size:20px;
	}
}

/* Section 5 */
#section5 .title{
	margin-bottom:40px;
}
#section5 .next_btn{
	margin-top:80px;
}
#section5 .checkwrap{
	width:400px;
}

/* Section 6 */
#section6 .title{
	margin-bottom:40px;
}

/* Section 7 */
#section7 .title{
	margin-bottom:40px;
}

/* Section 8 */
#section8 .title{
	margin-bottom:40px;
}

/* Section 9 */
#section9 .title{
	margin-bottom:40px;
}
#section9 .next_btn{
	margin-top:40px;
}

/* Section 10 */
#section10 .title{
	margin-bottom:40px;
}

/* Section 11 */
#section11 .title{
	margin-bottom:40px;
}
#section11 .title span{
	font-size:18px;
	color:#999;
}
#section11 .radiowrap{
	width:800px;
}
#section11 .radiowrap li .check{
  top: 25px;
}
#section11 .radiowrap li:nth-child(3) .check{
	margin-top:10px;
}

/* Section 12 */
#section12 .title{
	margin-bottom:40px;
}
#section12 .radiowrap li:nth-child(1) .check{
	margin-top:15px;
}

/* Section 13 */
#section13 .title{
	margin-bottom:40px;
}
#section13 .radiowrap{
	width:550px;
}
#section13 .radiowrap ul li label {
    padding: 15px 15px 15px 80px;
}
#section13 .radiowrap ul li .check{
	top:20px;
}

/* Section 14 */
#section14 .title{
	margin-bottom:40px;
}
#section14 .radiowrap{
	width:520px;
}
#section14 .radiowrap ul li label {
    padding: 5px 15px 5px 80px;
}
#section14 .radiowrap ul li .check{
	top:10px;
}
#section14 .next_btn{
	margin-top:40px;
}

/* Section 15 */
#section15 .title{
	margin-bottom:40px;
}
#section15 .next_btn{
	margin-top:40px;
}

/* Section 16 */
#section16 .title{
	margin-bottom:40px;
}
#section16 .next_btn{
	margin-top:40px;
}

/* Section 17 */
#section17 .title{
	margin-bottom:40px;
}
#section17 .next_btn{
	margin-top:40px;
}
#section17 .numbers_only{
	width:250px;
}
#section17 .db-currency{
	max-width:150px;
}

@media (max-width: 992px) {
  #section17 .form-control{
    display: inline;
  }
  #section18 .form-control{
    display: inline;
  }
}

/* Section 18 */
#section18 .title{
	margin-bottom:40px;
}
#section18 .next_btn{
	margin-top:40px;
}
#section18 .numbers_only{
	width:250px;
}
#section18 .db-currency{
	max-width:150px;
}
#section18 .modal_link{
	font-size:15px;
	margin-top:10px;
}

@media only screen and (max-width: 767px) {
	#section5 .title{
		margin-bottom:0px;
		font-size:20px;
	}
	#section5 .next_btn{
		margin-top:20px;
	}
}

/* Override secion classes */
.section label{
	font-size:18px !important;
}

/* Slider */
.slider.slider-horizontal {
    width: 100%;
    height: 20px;
}
.slider.slider-horizontal .slider-selection, .slider.slider-horizontal .slider-track-low, .slider.slider-horizontal .slider-track-high {
    background-image: -webkit-linear-gradient(top,#89cdef 0,#81bfde 100%);
    background-image: -o-linear-gradient(top,#89cdef 0,#81bfde 100%);
    background-image: linear-gradient(to bottom,#89cdef 0,#81bfde 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef',endColorstr='#ff81bfde',GradientType=0);
}
.slider-tick{
    background-image: -webkit-linear-gradient(top,#89cdef 0,#81bfde 100%);
    background-image: -o-linear-gradient(top,#89cdef 0,#81bfde 100%);
    background-image: linear-gradient(to bottom,#89cdef 0,#81bfde 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef',endColorstr='#ff81bfde',GradientType=0);
    opacity: 1;
}

/* Modal classes */
.modal label{
	font-size:16px;
	font-weight:normal;
}
.modal .row{
	margin-top:20px;
}

/* Scroll indicator */
.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
}
.icon-scroll {
  width: 40px;
  height: 70px;
  margin-left: -20px;
  top: 50%;
  margin-top: -35px;
  box-shadow: inset 0 0 0 1px #999;
  border-radius: 25px;
}
.icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #999;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
          animation-name: scroll;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}
.icon-scroll-text{
	font-size:14px;
	color:#999;
}

#send_results #description{
  font-size:16px;
  font-weight: normal;
}
