/*----------------------------------------
| Common Styles
------------------------------------------
- GoogleFonts:
| font-family: 'Comfortaa', cursive;
----------------------------------------*/
body {
	font-family: 'Comfortaa', cursive;
	font-size: 18px;
	line-height: 31px;
	color: #000;
}

/* transition */
a, .btn {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
img {max-width: 100%;}

/* navbar */
.navbar {
	position: relative;
	z-index: 10;
}
.navbar .dropdown-toggle::after {
	display: none;
}
.navbar-light .navbar-nav .nav-link {
	padding: 10px;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 14px;
	margin-left: 2px;
}
.nav-item.active,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: #000;
	background-color: #ffe173;
}
.navbar-light .navbar-toggler {
	border: none;
	padding-left: 0;
	padding-right: 0;
}
.navbar-collapse {
	padding: 10px 0;
}
.dropdown-item {
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
}
.dropdown-item:focus, .dropdown-item:hover {
  color: #fff;
  background-color: #6ea501;
}
/* make dropdown hover */
.dropdown:hover > .dropdown-menu {
    display: block;
}
.dropdown > .dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

/* headings font-weight */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}
h2 {
	font-size: 38px;
	line-height: 42px;
}

/* inherit body font-size */
.text-inherit {font-size: 18px;}

/* inline list with | separator */
.style-pipe li {
	position: relative;
}
.style-pipe li::after {
	content: '|';
	display: inline-block;
	margin-left: .5rem;
	color: #777777;
}
.style-pipe li:last-child::after {
	content: '';
}
/* list-numbered */
.list-numbered {
	margin-top: 30px;
	margin-bottom: 40px;
}
.list-numbered li {
	position: relative;
	min-height: 36px;
	margin-bottom: 16px;
}
.list-numbered li .num {
	color: #000;
	width: 36px;
	height: 36px;
	display: inline-block;
	background-color: #ffc900;
	border-radius: 50px;
	text-align: center;
	line-height: 36px;
	margin-right: 18px;
}
.list-numbered li .green {
	color: #000;
	width: 36px;
	height: 36px;
	display: inline-block;
	background-color: #469c00;
	border-radius: 50px;
	text-align: center;
	line-height: 36px;
	margin-right: 18px;
}

/* list with check */
.list-check li {
  min-height: 30px;
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}

/* texts */
.text-yellow {color: #ffc900!important;}
.text-red {color: #ff0000!important;}

/* hr style */
hr {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
	border-top: 1px solid #c4c4c4;
	border-bottom: 1px solid #c4c4c4;
}
hr.divider {
	width: 218px;
	height: 3px;
	background: #c4c4c4;
}
hr.divider2 {
	width: 80%;
	height: 2px;
	background: #f2a509;
	border: none;
	margin: 2rem auto;
}

/* bg color */
.bg-grey {background-color: #f2f2f2 !important;}
.bg-yellow {background-color: #ffe27a !important;}
.bg-green {
    background-color: #469c00 !important;
    box-shadow:inset 0 3px 0 #3b8300;
    color:#fff;
}
.bg-gold {background-color: #fec900 !important;}

/* buttons */
.btn {
	font-weight: 700;
}
.btn-lg {
	font-size: 38px;
	line-height: 38px;
	height: 92px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.btn-md {
	font-size: 26px;
	line-height: 26px;
	height: 69px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding-left: 40px;
	padding-right: 40px;
}
.btn-max {
	max-width: 497px;
}
.btn-max-s {
	max-width: 360px;
}
.btn-yellow,
.btn-yellow:focus {
	color: #000000;
	border-color: none;
	background: rgb(255,158,0); /* Old browsers */
	background: -moz-linear-gradient(left, rgba(255,158,0,1) 0%, rgba(255,201,0,1) 30%, rgba(255,201,0,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(255,158,0,1) 0%,rgba(255,201,0,1) 30%,rgba(255,201,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(255,158,0,1) 0%,rgba(255,201,0,1) 30%,rgba(255,201,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9e00', endColorstr='#ffc900',GradientType=1 ); /* IE6-9 */	
}
.btn-yellow:hover,
.btn-yellow:active  {
  color: #000000;
	border-color: none;
	background: -moz-linear-gradient(left, rgba(255,158,0,1) 0%, rgba(255,201,0,1) 70%, rgba(255,158,0,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(255,158,0,1) 0%,rgba(255,201,0,1) 70%,rgba(255,158,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(255,158,0,1) 0%,rgba(255,201,0,1) 70%,rgba(255,158,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9e00', endColorstr='#ffc900',GradientType=1 ); /* IE6-9 */		
}
.btn-black,
.btn-black:focus {
	color: #fff;
	background-color: #000;
	border-color: #000;
}
.btn-black:hover,
.btn-black:active  {
  color: #ff9e00;
  background-color: #000;
	border-color: #000;
}.form-padd{	height: calc(2.85rem + 2px);	margin:1rem 0;}
.form-mar{	margin:1rem 0;}
/* alert */
.alert {
	font-size: 14px;
	line-height: 21px;
	color: #000;
}
.alert-warning {
	background-color: #ffdc61;
	border-color: #ffdc61;
}

/* section spacing */
.section {
	padding: 52px 0;
}
.rounded {
	border-radius: 15px!important;
}

/*----------------------------------------
| Banner
----------------------------------------*/
.banner {
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	font-size: 29px;
	line-height: 36px;
	color: #fff;
	padding: 126px 0;
}
.banner li {
	font-size: 21px;
}
.banner h1 {
	font-size: 74px;
	line-height: 74px;
	margin-bottom: 40px;
}
.banner h1 span {
	font-size: 47px;
	line-height: 47px;
	display: block;
	font-weight: normal;
}
/* Banner Grey */
.banner-grey {
	background:#e5e5e5 url(../images/banner-bg-grey.jpg) no-repeat center top;
	background-size: cover;
	padding: 72px 0;
	min-height: 767px;
}

/*----------------------------------------
| What to do
----------------------------------------*/
.what-to-do {
	position: relative;
	overflow-x: hidden;
}
.wtd-box {
	padding: 50px;
}
.wtd-box .icon {
	display: block;
	margin-bottom: 20px;
}
.wtd-box h2 {
	margin-bottom: 20px;
}
.bg-grey-left {
	position: relative;
	border-radius:0 0 30px 0;
}
.bg-grey-left::before {
	content: '';
	background-color: #f2f2f2;
	width: 100vw;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -100vw;
}
.bg-grey-right {
	position: relative;
	border-radius:30px 0 0 0;
}
.bg-grey-right::before {
	content: '';
	background-color: #f2f2f2;
	width: 100vw;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -100vw;
}

/*----------------------------------------
| Get Started
----------------------------------------*/
.get-started {
	border-top: 10px solid #eed272;
}

/*----------------------------------------
| Surveys
----------------------------------------*/
.surveys .survey-box {
	background-color: #eeeeee;
	height: 100%;
}
.surveys .survey-box h3 {
	background-color: #4ca818;
	color: #fff;
	text-align: center;
}

.surveys .survey-box h3 {
	background-color: #4ca818;
	color: #fff;
	text-align: center;
	margin: 0;
	padding: 15px 10px;
	font-size: 24px;
	line-height: 24px;
}
.surveys .survey-logo {
	background-color: #fff;
	position: relative;
}
.surveys .survey-logo .bonus {
	position: absolute;
	top: 10px;
	right: 5px;
	box-shadow: 0 8px 2px rgba(231,231,231,0.7);
}
.bonus {
	width: 88px;
	height: 88px;
	font-size: 36px;
	line-height: 36px;
	background-color: #ffc900;
	border-radius: 50%;
	display: block;
	font-weight: bold;
	padding-top: 20px;
}
.bonus span {
	display: block;
	font-size: 11px;
	line-height: 11px;
	text-transform: uppercase;
	font-weight: normal;
}
.surveys .survey-body {
	font-size: 12px;
	line-height: 21px;
	font-weight: bold;
	padding: 25px;
}
.surveys .survey-body .btn-md {
	height: 55px;
	font-size: 16px;
	line-height: 16px;
}

/*----------------------------------------
| Custom Radio
----------------------------------------*/
.custom-radio {
	position: relative;
	display: block;
	height: 88px;
	font-size: 24px;
	font-weight: bold;
}
.custom-radio input {
	position: absolute;
	opacity: 0;
}
.custom-radio input+span {
	background-color: #b7b7b7;
	display: block;
	border-radius: 5px;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	max-width: 555px;
	height: 88px;
	box-shadow:inset 0 -3px 0 #9a9a9a;
}
.custom-radio input:checked+span {
	background-color: #469c00;
	box-shadow:inset 0 3px 0 #3b8300;
}
.custom-radio input:checked~.value {
	color: #fff;
}
.custom-radio .value {
	font-style: normal;
	position: relative;
	z-index: 5;
	max-width: 555px;
	height: 88px;
	line-height: 88px;
}
.with-pencil {
	position: relative;
}
.with-pencil::before {
	content: '';
	display: block;
	background: url(../images/pencil.png) no-repeat;
	width: 243px;
	height: 203px;
	position: absolute;
	bottom: 20px;
	left: -195px;
}

/*----------------------------------------
| icon img
----------------------------------------*/
.arrow-down-top {
	position: relative;
}
.arrow-down-top::before {
	content: '';
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMC8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvVFIvMjAwMS9SRUMtU1ZHLTIwMDEwOTA0L0RURC9zdmcxMC5kdGQnPjxzdmcgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIGlkPSJMYXllcl8xIiB2ZXJzaW9uPSIxLjAiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PHBvbHlsaW5lIGZpbGw9Im5vbmUiIHBvaW50cz0iMjEsOC41IDEyLDE3LjUgMyw4LjUgIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+);
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	border: 3px solid #fff; 
	width: 50px;
	height: 50px;
	position: absolute;
	border-radius: 50%;
	background-color: #fdbe00;
	color: #000;
	text-align: center;
	top: -25px;
	left: 50%;
	margin-left: -25px;
	z-index: 5;
}

.check-circle {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
}
.check-circle::before {
	content: '';
	background-image: url(../images/check.svg);
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	width: 30px;
	height: 30px;
	position: absolute;
	border-radius: 50%;
	background-color: #4cac52;
	color: #fff;
	text-align: center;
	top: 0;
	left: 50%;
	margin-left: -15px;
	z-index: 5;
}

/*----------------------------------------
| Footer
----------------------------------------*/
.footer {
	background-color: #000;
	font-size: 14px;
	line-height: 22px;
	color: #fff;
}
.footer a {
	color: #fff;
	text-decoration: none;
}
.footer a:hover {
	color: #ffe279;
}

.footer li a {
	border-bottom: 2px solid transparent;
}
.footer li a:hover {
	border-bottom: 2px solid #ffe279;
}

/*----------------------------------------
| Steps
----------------------------------------*/
.slash-divided .item {
	position: relative;
	font-size: 12px;
	line-height: 21px;
	padding: 0 20px;
}
.slash-divided .item p {
	margin-bottom: 0;
}
.slash-divided .item p + p {
	margin-top: 20px;
}
.slash-divided .item::after {
	content: '';
	background: url(../images/slash.png) no-repeat;
	display: block;
	width: 28px;
	height: 79px;
	position: absolute;
	top: 28px;
	right: -14px;
}
.slash-divided .item:last-child::after {
	display: none;
}
.slash-divided .num {
	font-size: 49px;
	line-height: 49px;
}
.slash-divided h4 {
	font-size: 18px;
	line-height: 24px;
}

/*----------------------------------------
| Exit Modal
----------------------------------------*/
.exit-modal .bgimg {
	background-image: url(../images/exitpop-bg2.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.exit-modal button.close {
	position: absolute;
	top: 10px;
	right: 15px;
	z-index: 10;
}
.exit-modal .modal-content {
	overflow: hidden;
}

/*----------------------------------------
| Login Box
----------------------------------------*/
.login-box {
	padding: 40px;
	border: 10px solid #f2a509;
}
.login-box .btn {
	height: 56px;
	font-size: 32px;
	line-height: 32px;
}

/*----------------------------------------
| Members
----------------------------------------*/
.members .left {
	background: #000;
}
.members .right {
	background-color: #fff;
}
.badge-orange {
	background-color: #ff4800;
	color: #fff;
	font-weight: normal;
}
.members .left {
	padding: 20px 0 20px 20px;
}
.members .right .tab-content {
	padding: 30px 50px;
}
.members .left .nav-link {
	color: #ffc900;
	border-radius: 3px 0 0 3px;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 18px;
	line-height: 18px;
	padding: 15px 20px;
}
.members .left .nav-link:hover {
	color: #000;
	background-color: #ffc900;
}
.members .left .nav-link.disabled {
    color: #6c757d;
}
.members .nav-pills .nav-link.active:hover,
.members .nav-pills .nav-link.active,
.members .nav-pills .show>.nav-link {
  color: #000;
  background-color: #fff;
}
/* list offers */
.list-offers  {
	margin-bottom: 40px;
}
.list-offers li {
	display: -ms-flexbox!important;
	display: flex!important;
	background-color: #eeeeee;
	border-right: 24px solid #4ca818;
	margin-bottom: 27px;
	position: relative;
}
.list-offers li .num {
	background-color: #4ca818;
	color: #fff;
	font-size: 24px;
	line-height: 24px;
	padding: 40px 20px;
}
.list-offers li .content {
	padding: 20px;
}
.list-offers li .content .desc {
	font-size: 14px;
	line-height: 19px;
	display: block;
	font-family: 'Cairo', sans-serif;
	color: #777777;
}
.list-offers li .btn {
  min-width: 200px;
  font-size: 24px;
  line-height: 24px;
  align-items: center;
  font-weight: 900;
  height: 56px;
  justify-content: center;
  display: inline-flex;
	white-space: inherit;
}
.list-offers li.featured {
	background-color: #fec900;
	border-color: #f2a509;
}
.list-offers li.featured .num {
	background-color: #f2a509;
}
.list-offers li.featured .content .desc {
	color: #000;
}
.list-offers li.featured::after {
	content: '';
	display: block;
	background: url(../images/badge-featured-green.png) no-repeat;
	width: 55px;
	height: 61px;
	position: absolute;
  top: 30px;
  right: -40px;
	z-index: 2;
}
/* ads-sidebar */
.ads-sidebar {
	margin-left: -20px;
}

/*----------------------------------------
| Fluid Width Video
----------------------------------------*/
.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	margin: 30px 0 20px;
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*----------------------------------------
| Welcome Back
----------------------------------------*/
.welcome-back a {
	color: #000;
}

/*----------------------------------------
| Responsive
----------------------------------------*/
@media (min-width: 1200px) {
	.container {
	  max-width: 1160px;
	}
}
@media (max-width: 992px) {
	.banner-grey,
	.banner {
		padding: 56px 0;
	}
	.banner h1 {
	  font-size: 68px;
	  line-height: 68px;
	}
}
@media (min-width: 767px) {
	.tab-menu {display: block !important;}
}
@media (max-width: 767px) {
	hr.divider2 {
	  margin: 1rem auto;
	}
	h1 {
	  font-size: 30px;
	  line-height: 34px;
	}
	.welcome-back li {
		font-size: 12px;
	}
	.welcome-back li h4 {
		font-size: 18px;
	}
	/* members tab content */
	.members .right .tab-content {
	  padding: 20px;
	}
	.members .left {
		padding: 15px;
		border-bottom: 1px solid #eee;
	}
	.members .left .nav-link {
		border-radius: 3px;
	}
	.tab-menu {
		display: none;
		padding: 10px;
		border: 1px solid #eee;
		border-radius: 3px;
		margin-top: 5px;
	}
	/* mobile-tab-select  */
	.mobile-tab-select .btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    position: relative;
    border-radius: 0;
	}
	.mobile-tab-select .dropdown-toggle::after {
		position: absolute;
		top: 20px;
		right: 20px;
	}

	.banner-grey,
	.banner {
		padding: 36px 0;
	}
	.banner::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: rgba(0,0,0,0.4);
	}
	.banner h1 span {
	  font-size: 32px;
	  line-height: 32px;
	}
	.banner h1 {
	  font-size: 46px;
	  line-height: 46px;
	  margin-bottom: 20px;
	}
	.banner {
		position: relative;
	  font-size: 22px;
	  line-height: 28px;
	}
	.btn-lg {
	  font-size: 28px;
	  line-height: 28px;
	  height: 72px;
	}
	.wtd-box {
	  padding: 30px 0;
	}
	h2 {
	  font-size: 30px;
	  line-height: 34px;
	}
	.bg-grey-left,
	.bg-grey-right {
	  border-radius: 0;
	}
	.bg-grey-left::before {
		display: none;
	}
	.slash-divided .item::after {
		background-image: none;
		background-color: #dddddd;
		width: 72px;
		height: 4px;
		top: auto;
		left: 50%;
		margin-left: -36px;
		right: auto;
		bottom: 0px;
	}
	.slash-divided .item {
		padding:  20px;
	}
}
@media (max-width: 576px) {
	.custom-radio .value,
	.custom-radio input+span,
	.custom-radio {
		height: 58px;
	}
	.custom-radio .value {
		line-height: 58px;
	}

	/* member list offer */
	.list-offers li {
		border-bottom: 24px solid #4ca818;
    flex-flow: column;
    border-right: none;
	}
	.list-offers li .num {
		padding: 10px 20px;
	}
	.list-offers li.featured::after {
	  top: 15px;
	  right: 20px;
	}
	.list-offers li .btn {
		font-size: 20px;
		line-height: 24px;
	}

	/* login */
	.login-box {
	  padding: 20px;
	}
}
@media (max-width: 329px) {
	.navbar-brand img {
		max-width: 210px;
	}
	.banner h1 {
	  font-size: 38px;
	  line-height: 38px;
	  margin-bottom: 10px;
	}
	.banner h1 span {
	  font-size: 26px;
	  line-height: 26px;
	}
	.banner {
	  font-size: 18px;
	  line-height: 22px;
	}
	.banner li {
	  font-size: 18px;
	}
	.list-numbered {
	  margin-top: 20px;
	  margin-bottom: 20px;
	}
	.banner-grey, .banner {
	  padding: 32px 0;
	}
	.list-offers li .btn {
	  font-size: 17px;
	  line-height: 21px;
	  padding-left: 10px;
	  padding-right: 10px;
	}
}