/*!
 * Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

body {
    width: 100%;
    height: 100%;
    font-family: Lora,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #fff;
    /* background-color: #000; */
    background-color: #4e351a;
    /* background: url(../img/main-bg.jpg) repeat bottom center scroll; */
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5;
}

@media(min-width:768px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
    }
}

a {
    color: #E19D29;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #e7b053;
}

.light {
    font-weight: 400;
    margin-left: 0.5em;
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    background-color: #E19D29;
}

.navbar-custom .navbar-brand {
    font-weight: 700;
    font-family: MagistralC,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: #fff;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover {
    outline: 0;
    color: rgba(255,255,255,.8);
    background-color: transparent;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.active {
    outline: 0;
}

.navbar-custom .nav li.active a {
    background-color: rgba(255,255,255,.3);
}

.navbar-custom .nav li.active a:hover {
    color: #fff;
}

@media(min-width:1000px) {
    .navbar-custom {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .navbar-custom.top-nav-collapse {
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,.3);
        background: #E19D29;
    }
}

.intro {
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
    color: #fff;
/*     background: url(../img/intro-bg.jpg) no-repeat bottom center scroll; */
/*     background-color: #000; */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    margin-top: 50px;
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
}

.intro .intro-body .brand-heading {
    font-size: 40px;
    font-family: MagistralC,"Helvetica Neue",Helvetica,Arial,sans-serif;
}

.intro .intro-body .intro-text {
    font-size: 18px;
}

@media(min-width:768px) {
    .intro {
        height: 100%;
        padding: 0;
    }

    .intro .intro-body .brand-heading {
        font-size: 100px;
    }

    .intro .intro-body .intro-text {
        font-size: 26px;
    }
}

.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 100%!important;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.content-section {
    padding-top: 140px;
}

.download-section {
    width: 100%;
    padding: 50px 0;
    color: #fff;
    /*background: url(../img/downloads-bg.jpg) no-repeat center center scroll;
    background-color: #000;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

#map {
    width: 100%;
    height: 200px;
    margin-top: 100px;
}

@media(min-width:767px) {
    .content-section {
        padding-top: 215px;
    }

    .download-section {
        padding: 100px 0;
    }

    #map {
        height: 400px;
        margin-top: 250px;
    }
}

.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-default {
    border: 1px solid #42dca3;
    color: #42dca3;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #42dca3;
    outline: 0;
    color: #000;
    background-color: #42dca3;
}

ul.banner-social-buttons {
    margin-top: 0;
}

@media(max-width:1199px) {
    ul.banner-social-buttons {
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    ul.banner-social-buttons li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.banner-social-buttons li:last-child {
        margin-bottom: 0;
    }
}

footer {
    padding: 50px 0;
}

footer p {
    margin: 0;
}

::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: rgba(255,255,255,.2);
}

/*--------------Login Form Css---------------------*/
#connect {
	height: 100%;
}

.login {
	/* height: 300px;
	width: 480px; */
}

.register {
	/* height: 475px;
	width: 480px; */
}



.form {
	/* background-color: #000;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff),
		to(#eee));
	background-image: -webkit-linear-gradient(top, #eee, #000);
	background-image: -moz-linear-gradient(top, #eee, #000);
	background-image: -ms-linear-gradient(top, #eee, #000);
	background-image: -o-linear-gradient(top, #eee, #000);
	background-image: linear-gradient(top, #eee, #000); */
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0, #646262),
		color-stop(0.5, #484848),
		color-stop(0.5, #3D3D3D),
		color-stop(1, #4C4C4C)
	);
	background-image: -moz-linear-gradient(
		center top,
		#646262 0%,
		#484848 50%,
		#3D3D3D 50%,
		#4C4C4C 100%
	);
	padding: 20px;
	width: 100%;
	top: 50%;
	left: 50%;
	z-index: 0;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), 0 1px 1px
		rgba(0, 0, 0, .2), 0 3px 0 #fff, 0 4px 0 rgba(0, 0, 0, .2), 0 6px 0
		#fff, 0 7px 0 rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), 1px 1px 0 rgba(0, 0, 0, .1),
		3px 3px 0 rgba(255, 255, 255, 1), 4px 4px 0 rgba(0, 0, 0, .1), 6px 6px
		0 rgba(255, 255, 255, 1), 7px 7px 0 rgba(0, 0, 0, .1);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, .2), 0
		3px 0 #fff, 0 4px 0 rgba(0, 0, 0, .2), 0 6px 0 #fff, 0 7px 0
		rgba(0, 0, 0, .2);
}

.form:before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 5px;
	bottom: 5px;
	left: 5px;
	right: 5px;
/* 	border: 1px dashed #ccc;
	-moz-box-shadow: 0 0 0 1px #fff;
	-webkit-box-shadow: 0 0 0 1px #fff;
	box-shadow: 0 0 0 1px #fff;
 */}

/*--------------------*/
.form h1 {
	/* text-shadow: 0 1px 0 rgba(255, 255, 255, .7), 0px 2px 0
		rgba(0, 0, 0, .5); */
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	margin: 0 0 15px 0;
	/* letter-spacing: 4px; */
	font-family: Montserrat, 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 30px;
	font-weight: bold;
	position: relative;
}

.form h1:after,h1:before {
	background-color: #777;
	content: "";
	height: 1px;
	position: absolute;
	top: 15px;
	width: 30%;
}

.form h1:after {
	background-image: -webkit-gradient(linear, left top, right top, from(#777),
		to(#fff));
	background-image: -webkit-linear-gradient(left, #777, #fff);
	background-image: -moz-linear-gradient(left, #777, #fff);
	background-image: -ms-linear-gradient(left, #777, #fff);
	background-image: -o-linear-gradient(left, #777, #fff);
	background-image: linear-gradient(left, #777, #fff);
	right: 0;
}

.form h1:before {
	background-image: -webkit-gradient(linear, right top, left top, from(#777),
		to(#fff));
	background-image: -webkit-linear-gradient(right, #777, #fff);
	background-image: -moz-linear-gradient(right, #777, #fff);
	background-image: -ms-linear-gradient(right, #777, #fff);
	background-image: -o-linear-gradient(right, #777, #fff);
	background-image: linear-gradient(right, #777, #fff);
	left: 0;
}

/*--------------------*/
.form fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}

/*--------------------*/
.inputs input {
	background: #f1f1f1 url(../img/login-sprite.png) no-repeat;
	padding: 15px 15px 15px 30px;
	margin: 0 0 12px 0;
	width: 100%; /* 353 + 2 + 45 = 400 */
	border: 1px solid #ccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
	-webkit-box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
	box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
}

.inputs input::-webkit-input-placeholder { color: gray; }
.inputs input:-moz-placeholder { color: gray; }
.inputs input::-moz-placeholder { color: gray; }
.inputs input:-ms-input-placeholder { color: gray; }


#username {
	background-position: 5px -2px !important;
}

#password {
	background-position: 5px -52px !important;
}

.inputs input:focus {
	background-color: #fff;
	border-color: #e8c291;
	outline: none;
	-moz-box-shadow: 0 0 0 1px #e8c291 inset;
	-webkit-box-shadow: 0 0 0 1px #e8c291 inset;
	box-shadow: 0 0 0 1px #e8c291 inset;
}

/*--------------------*/
.actions {
	margin-top: 65px;
	margin-left: 35px;
}

.btn {
	border-radius: 0;
	text-transform: uppercase;
	font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 400;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.btn-default {
	border: 1px solid #E19D29;
	color: #000;
	background-color: #E19D29;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.btn-default:hover,.btn-default:focus {
	border: 1px solid #E19D29;
	outline: 0;
	color: #000;
	background-color: #E19D29;
	/* background-color: #DD5F32; */
}

.submit {
	/* background-color: #ffb94b;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fddb6f), to(#ffb94b));
	background-image: -webkit-linear-gradient(top, #fddb6f, #ffb94b);
	background-image: -moz-linear-gradient(top, #fddb6f, #ffb94b);
	background-image: -ms-linear-gradient(top, #fddb6f, #ffb94b);
	background-image: -o-linear-gradient(top, #fddb6f, #ffb94b);
	background-image: linear-gradient(top, #fddb6f, #ffb94b);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0
		rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0
		rgba(255, 255, 255, 0.3) inset;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3)
		inset;
	border-width: 1px;
	border-style: solid;
	border-color: #d69e31 #e3a037 #d5982d #e3a037;
	float: left;
	height: 35px;
	padding: 0;
	width: 120px;
	cursor: pointer;
	font: bold 15px Arial, Helvetica;
	color: #8f5a0a; */
	float: left;
	margin-top: 17px;
	padding-left: 18px;
	padding-right: 18px;
	padding-top: 9px;
	padding-bottom: 9px;
}

.submit:hover,#submit:focus {
	/* background-color: #DD5F32;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#DD5F32),
		to(#fddb6f));
	background-image: -webkit-linear-gradient(top, #DD5F32, #fddb6f);
	background-image: -moz-linear-gradient(top, #DD5F32, #fddb6f);
	background-image: -ms-linear-gradient(top, #DD5F32, #fddb6f);
	background-image: -o-linear-gradient(top, #DD5F32, #fddb6f);
	background-image: linear-gradient(top, #DD5F32, #fddb6f); */
}

.submit:active {
	outline: none;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
}

.submit::-moz-focus-inner {
	border: none;
}

.actions a {
	color: #E19D29;
	float: right;
	font-family: Lora,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 18px;
	margin-top: 15px;
	line-height: 35px;
	margin-left: 30px;
	font-weight: bold;
	margin-right: 10px;
}


/* top navigation */
.driver-promo-cta{
	box-sizing: border-box;
	color: rgb(255, 255, 255);
	display: block;
	font-family: sans-serif;
	font-size: 16px;
	height: 72px;
	line-height: 10px;
	margin-bottom: 0px;
	padding-right: 2%;
	margin-top: 0px;
	width: 100%;
}

.navbar-fixed-top{
	top: 0px;
}

.top-top-nav-logo {
	margin-top : 22px;
	margin-right: 30px;
	background-image: url(../img/top-top-nav-logo.png);
	display: block;
	float: left;
	width: 170px;
	height: 52px;
}

.top-top-nav-btn {	
	margin-top: 14px;
	margin-left: 15%;
	float: left;
	
}

.top-top-nav-msg {
	float: left;
	display: none;
	margin-top: 20px;
	display: block;
	margin-left: 21%;
}

/*@media(min-width:868px) {
	.top-top-nav-msg {
		display: block;
	
		margin-left: 14%;
}
	.driver-promo-cta{
		padding-left: 12%; 
	}
}*/

.top-top-nav-msg h5{
	font-size: 1.1em;
}

.top-top-nav-logo {
	float: left;
	display: block;
}

.top-nav {
	/* background-color: rgb(26, 26, 26); */
	background-color: #462f17; 
	box-sizing: border-box;
	color: rgb(255, 255, 255);
	display: block;
	font-family: sans-serif;
	font-size: 16px;
	height: 60px;
	left: 0px;
	line-height: 10px;
	margin-top: 0px;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 99;
}

.top-top-nav-close: HOVER{
	color: gray;
}

.top-top-nav-close{
	display: block;
	float: right;
	margin-top: 22px;
	color: white;
}

#site-logo{
	background: url(../img/lion_icon24.png) no-repeat bottom center scroll;
	float: left;
	width: 24px;
	height: 24px;
	margin-top: 13px;
	background-color: transparent;	
}

#big-logo{
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 130px;
	height: 130px;
		background: url(../img/offerlion-logo.png) no-repeat bottom center scroll;
	/* background-color: red; */
	margin-top: 20px;
}

.intro-body .row{
	margin-top: 70px;
}

@font-face {
  font-family: 'MagistralC';
  src: url('webfont/MagistralC.eot?#iefix') format('embedded-opentype'),  url('webfont/MagistralC.otf')  format('opentype'),
	     url('webfont/MagistralC.woff') format('woff'), url('webfont/MagistralC.ttf')  format('truetype'), url('webfont/MagistralC.svg#MagistralC') format('svg');
  font-weight: normal;
  font-style: normal;
}


/*----- Tabs -----*/
.tabs {
	width:100%;
	display:inline-block;
}

/*----- Tab Links -----*/
/* Clearfix */
.tab-links:after {
	display:block;
	clear:both;
	content:'';
}

.tab-links li {
	margin:0px 5px;
	float:left;
	list-style:none;
}

.tab-links a {
	padding:9px 15px;
	display:inline-block;
	border-radius:3px 3px 0px 0px;
	background: #E19D29;
	font-size:16px;
	font-weight:600;
	color: #fff;
	transition:all linear 0.15s;
}

.tab-links a:hover {
	background: #E9B968;
	text-decoration:none;
}

.tab-links li.active a, li.active a:hover {
	background: #fff;
	color:#4c4c4c; 
}

/*----- Content of Tabs -----*/
.tab-content {
	padding: 7px;
	border-radius:3px;
	box-shadow:-1px 1px 1px rgba(0,0,0,0.15);
	/* background:#fff; */
	margin-top: -10px;
	border-color: #fff;
	border: 2px solid #fff;
}

.tab {
	display:none;
}

.tab.active {
	display:block;
}

.beta-img {
  height: 120px;
  left: 1px;
  position: absolute;
  top: 110px;
  width: 120px;
  z-index: 1040;
  background: url(../img/beta.png) no-repeat bottom center scroll;
}

.adv-logo {
	width :100px;
	height :100px;	
	margin: 4.5%;
}

@media (min-width: 1200px) {
	.col-lg-offset-2 {
        margin-left: 7.66666667%;
    }
    
    .col-lg-8 {
		width: 86.66666667%;
	}
}

.app-name{
	margin-top: 8px;	
	display: block;
	float: right;
	margin-bottom: auto;
	margin-left: 15px;
}

