@charset "UTF-8";
@viewport {
  width: device-width;
}
html {
	height: 100%;
}
.body {
	background: #f5f5f5;
	color: #333;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 500;
	height: 100%;
	margin: 0;
}
.body__white {
	background: white;
}
::placeholder {
	color: #bbb;
	opacity: 1;
}

/* colors */

.colornorm {
    color: #333;
}
.yellow {
	color: #FFC800;
}
.green {
	color: #a1c820;
}
.green--dark-1 {
	color: #90B21C;
}
.green--dark-2 {
	color: #809F19;
}
.blue {
	color: #3fa9f5;
}
.blue--dark-1 {
	color: #3897DB;
}
.blue--dark-2 {
	color: #3286C3;
}
.blue--dark-3 {
	color: #2F7EB6;
}
.red {
	color: #ff6347;
}
.bg_red {
	background: #ff6347;
}
.yellow {
	color: #fff207;
}
.palegreen {
	color: #e6f1cb;
}
.palered {
	color: #FFE0E0;
}
.paleyellow {
    color: #FFF4B2;
}
.amazonorange {
	color: #ff9900;
}
.faintgrey {
	color: #f5f5f5;
}
.lightgrey {
	color: #eee;
}
.mediumgrey {
	color: #ddd;
}
.darkgrey {
	color: #ccc;
}
.greye {
    color: #eee;
}
.greyd {
    color: #ddd;
}
.greyc {
    color: #ccc;
}
.greya {
    color: #aaa;
}
.grey9 {
    color: #999;
}
.grey8 {
    color: #888;
}
.grey7 {
    color: #777;
}
.grey5 {
    color: #555;
}
.grey4 {
    color: #444;
}
.grey3 {
    color: #333;
}
.bg_white {
	background: white;;
}
.bg_yellow {
	background: #FFC800;
}
.bg_green {
	background: #a1c820;
}
.bg_blue {
	background: #3fa9f5;
}
.bg_blue-light-1 {
	background: #6FBEF7;
}
.bg_blue-light-2 {
	background: #9FD4FA;
}
.bg_blue-light-3 {
	background: #CFE9FC;
}
.bg_palegreen {
	background: #e6f1cb;
}
.bg_verypalegreen {
	background: #F4FCDC;
}
.bg_paleblue {
	background: #CFE9FC;
}
.bg_palered {
	background: #FFE0E0;
}
.bg_verypalered {
	background: #F8EFEE;
}
.bg_grey {
	background: #aaa;
}
.bg_faintgrey {
	background: #f5f5f5;
}
.bg_white {
	background: #fff;
}
.border_green {
	border: solid 1px #a1c820;
}
.border_blue {
	border: solid 1px #3fa9f5;
}
.border_red {
	border: solid 1px #ff6347;
}
.border_lightgrey {
	border: solid 1px #eee;
}
.line_lightgrey {
	border-bottom: solid 1px #eee;
}

/* text */

a {
}
h1 {
	font-size: 35px;
	font-weight: 700;
	margin-bottom: 20px;
}
h2 {
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 20px;
}
h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
}
h4 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 20px;
}
h5 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 20px;
}
.text {
	text-decoration: none;
	font-weight: 500;
	line-height: 22px;
}
.text__small {
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
}
.text p {
	margin-bottom: 20px;
}
.text__bold {
	font-weight: 700;	
}
.text__light {
	color: #777;
}
.text__lhsmall {
	line-height: 17px;
}
.bluelinks a {
	color: #3fa9f5;
}
.greenlinks a {
	color: #a1c820;
}
.redlinks a {
	color: #ff6347;
}
.greylinks a {
	color: #222;
}
.mediumgreylinks a {
	color: #777;
}
.lightgreylinks a {
	color: #999;
}
.hov__bggrey1:hover {
    background: #f5f5f5;
}
.fwnormal {
	font-weight: 500;
}

/* page structure */

.main {
	margin-top: 60px;
	margin-left: 170px; 
	position: relative;
}
.main__widesidebar {
    margin-left: 250px;
}
.main__w200sidebar {
    margin-left: 200px;
}
.main__nosidebar {
    margin-left: 0;
}
.content {
	max-width: 1030px;
	padding: 30px;
	float: left;
}
.content__wide {
	padding: 30px;
}
.content--breadcrumb {
    margin-bottom: 15px;
    font-size: 15px;
    color: #ccc;
}
.content--breadcrumb a {
    color: #999;
}
.contentright {
	display: inline-block;
	width: 250px;
	float: left;
	margin-top: 30px;
	font-size: 13px;
}
header {
	transition: top 0.2s ease-in-out;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
    z-index: 9000;
}
.nav-up {
    top: -60px;
}

/* containers */

.medwidepage--container {
    margin: 0 auto;
    max-width: 1000px;
}
.smallwidepage--container {
    margin: 0 auto;
    max-width: 600px;
}

.widepage--container { /* centered */
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1300px;
}
.container__sidebarleft--200 {
	float: left;
	width: 200px;
	margin: 0 30px 0 0 ;
}
.container__sidebar--200 {
	float: left;
	width: 200px;
}
.container__main--200 {
	float: left;
	max-width: 930px;
	margin: 0 0 0 0 ;
}
.container__sidebar--300 {
	float: left;
	max-width: 300px;
	margin-left: 30px;
}
.container__main--300 {
	float: left;
	max-width: 830px;
	margin: 0 0 0 0 ;
}
.container__sidebarleft--150 {
	float: left;
	width: 150px;
	margin: 0 30px 0 0 ;
	height: 2000px;
}
.container__main--1090 {
	float: left;
	max-width: 1090px;
	margin: 0 0 0 0 ;
}

/* headings */

.heading__subheading {
	font-size: 17px;
	display: inline-block;
	margin: 0 20px 0 0;
	padding: 0;
}
.heading__subheading--line {
	border-bottom: solid 1px #ccc;
	height: 0px;
	margin: 7px 0 20px 0;
	display: block;
}

/* footer */

footer {
	background-color: #fafafa;
	color: #999;
	padding: 30px;
	font-size:16px;
	margin: 100px 0 0 0;
	padding: 50px 0 50px 0;
}
.footer--container {
	max-width: 900px;
	margin: 0 auto 0 auto;
}
.footer--module {
	font-size: 14px;
	float: left;
	margin: 0 50px 0 0 ;
}
.footer--module__header {
	color: #777;
	margin: 0 0 10px 0;
	font-weight: bold;
}
.footer--module__item a {
	color: #aaa;
}

/* film */

.film--grey {
	position: absolute;
	background: #fff;
	opacity: 0.4;
	width: 100%;
	height: 100%;
}
.film--hover:hover {
	opacity: 0.0;
}

/* article */

.article--container {
	display: block;
	max-width: 1300px;
	margin: 0 auto;
}
.article--mainimage {
	width: 100%;
	height: 500px;
    background-repeat: no-repeat;
    background-position: center; 
	background-size: cover;
    margin: 0 0 0 0;
}
.article--inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 50px 30px 50px 30px;
}
.article ul,ol {
	margin: 0 0 20px 0;
}
.article li {
	display: list-item;
	margin: 0 0 0 40px;
}
.article h1,h2,h3,h4,h5 {
	color: #333;
}
.article--toptitle h1 {
	font-size: 50px;
	margin: 0;
}
.article--content h1 {
	font-size: 37px;
	line-height: 37px;
	margin: 60px 0 30px 0;
}
.article--content h2 {
	font-size: 32px;
	line-height: 32px;
	margin: 40px 0 30px 0;
}
.article--content h3 {
	font-size: 22px;
	text-transform: uppercase;
	line-height: 22px;
	margin: 30px 0 30px 0;
}
.article--content h4 {
	font-size: 17px;
	line-height: 17px;
	margin: 30px 0 30px 0;
}
.article--content h5 {
	font-size: 15px;
	line-height: normal;
	margin: 30px 0 30px 0;
}

.article--sidebar {
	display: inline-block;
	vertical-align: top;
	font-size: 13px;
	line-height: normal;
}
.article--sidebar h3 {
	color: #333;
	font-size: 17px;
}
.article--sidebar__left {
	width: 200px;
	margin: 0 30px 30px 0;
	color: #777;
}
.article--sidebar__right {
	width: 200px;
	margin: 0 0 30px 0;
	color: #777;
}
.article--maincolumn {
	display: inline-block;
	max-width: 700px;
	margin: 0 30px 30px 0;
	vertical-align: top;
}
.avatar--text--article {
	width: 100px;
	font-size: 13px;
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
	word-wrap: break-word;
}
.article--breadcrumb {
	color: #3fa9f5;
}
.article--toptitle {
	font-size: 60px;
	text-align: center;
}
.article--description {
	font-size: 30px;
	line-height: 40px;
	color: #888;
	font-weight: 400;
	text-align: center;
	margin: 30px auto 40px auto;
}
.article--content {
	line-height: 30px;
	font-size: 19px;
	color: #333;
}
.article--relatedlinks {
	line-height: 32px;
	font-size: 17px;
	color: #555;
	font-style: italic;
}
.article--relatedlinks a {
	color: #666;
}
.article--content p {
	margin-bottom: 20px;
}
.article--content a {
	color: #3fa9f5;
}
.article--sidemodule {
	padding: 30px;
	font-size: 15px;
	word-wrap: break-word;
}
.article--promocode {
	background: white;
	border: solid 1px #ddd;
	text-align: center;
	font-weight: 700;
	color: #333;
	padding: 12px 20px;
	display: block;
	width: 160px;
	margin-left: auto;
	margin-right: auto;
}
.article--promocode:hover {
	background: #a1c820;
	color: white;
}
.article--categorynav {
	display: block;
	font-size: 13px;
	background: #a1c820;
	color: white;
	padding: 10px;
	font-weight: 600;
	margin-bottom: 1px;
}
.article--categorynav:hover {
	background: #3fa9f5;	
}
.article--bodyad {
	float: left;
	margin: 10px 20px 20px 0;
}

/* page */

.page--content {
	width: 80%;
	padding: 40px;
	margin: 0 auto;
	background: #fff;
}
.page--mainimage h1 {
	font-size: 60px;
}
.page--mainimage h2 {
	font-size: 40px;
}
.page--mainimage h3 {
	font-size: 30px;
}
.page--content p {
	margin-bottom: 20px;
	line-height: 20px;
}
.page--content--inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 50px 30px 50px 30px;
}
.page--content ul,ol {
	margin: 0 0 20px 0;
}
.page--content li {
	display: list-item;
	margin: 0 0 5px 40px;
}
.page--mainimage {
	width: 100%;
	height: 500px;
    background-repeat: no-repeat;
    background-position: center; 
	background-size: cover;
    margin: 0 0 0 0;
	position: relative;
}
.page--mainimage__film {
	position: absolute;
	height: 100%;
	width: 100%;
	background: #000;
	opacity: 0.2;
	z-index: 1000;
}
.page--mainimage__top {
	position: absolute;
	z-index: 2000;
	color: #fff;	
	top: 40px;
	width: 100%;
	text-align: center;
}
.page--mainimage__bottom {
	position: absolute;
	z-index: 2000;
	color: #fff;	
	bottom: 40px;
	width: 100%;
	text-align: center;
}
.page--mainimage__logo {
	position: absolute;
	top: 40px;
	width: 100%;
	z-index: 2000;
	text-align: center;
}
/* modal */

.modal {
    display: none;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 30px;
	margin-left: -170px;
    text-align: center;
    position: fixed;
    top: 60px;
    z-index: 10000;
}
.modal__nosidebar {
	left: 0;
    padding: 30px;
	margin-left: 0px;
}
.modal__widesidebar {
	left: 0;
	margin-left: 0;
}
.modal--closebutton {
    position: absolute;
    top: 20px;
    right: 20px;	
    color: #ccc;
    font-size: 25px;
}
.modal--closebutton__nosidebar {
    right: 30px;	
}
.modal--block {
	display: inline-block;
	margin: 0 15px 30px 15px;
	width: 250px;
	vertical-align: top;
}
.modal--block__2col {
	display: inline-block;
	margin: 0 15px 30px 15px;
	width: 350px;
	vertical-align: top;
}
.modal--block__1col {
	display: block;
	margin: 0 15px 30px 15px;
	width: 100%;
	vertical-align: top;
}
.modal--middlecol {
    margin: 0 auto;
    width: 300px;
    display: block;
}
.modal--middlecol__wide {
    margin: 0 auto;
    max-width: 600px;
    display: block;
}
.modal--button {
    margin: 0 auto 20px auto;
    width: 300px;
    display: block;
}
.modal--header {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 10px 0;
	display: block;
}
.modal--item {
	margin: 0 0 5px 0;
	display: block;
}
.modal__mainmenu--item {
	display: block;
	font-size: 15px;
	margin: 0 0 5px 0;
}

/* menu */

.menu {
	background: #fff;
	width: 170px;
	padding: 30px 20px;
	color:#333;
	font-size: 15px;
	height: 100vh;
	overflow: scroll;
}
.menu--category {
	background: #fff;
	color: #333;
	width: 250px;
	padding: 30px 20px;
	font-size: 13px;
}
.menu--w200 {
	background: #fff;
	color: #333;
	width: 200px;
	padding: 30px 20px;
	font-size: 13px;
}
.menu__nosidebar {
    display: none;
}
.menu--title {
	font-size: 15px;
}
.menu--breadcrumb {
	font-size: 11px;
	margin:0 0 5px 0;
}
.menu--merchantlogo {
	margin: 0 0 20px 0;
	width: 130px;
	border: solid 1px #eee;
}
.menu--categorynavbutton {
	padding: 5px 0;
	color: #333;
	display: block;
	font-size:17px;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}
.menu--categorynavbutton__active {
	color: #ff6347;
	font-weight: 700;
}
.menu--navbutton {
	padding: 5px 0;
	color: #333;
	display: block;
	font-size:17px;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}
.menu--navbutton__small {
	font-size:15px;
    width: 130px;
}
.menu--navbutton__merchant {
	display: block;
	font-size:15px;
	padding: 0;
	margin: 0 0 2px 0;
    width: 130px;
}
.menu--navbutton__merchantcompare {
	font-size: 11px;
	color: #999;
	padding: 0;
	margin: 0 0 12px 0;
	display: block;
}
.menu--navbutton__smaller {
	font-size:13px;
    width: 130px;
}
.menu--navbutton__active {
	color: #ff6347;
	font-weight: 700;
}
.menu--categorylink {
    width: 130px;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}
.menu--searchbar {
    display: inline-block;
    margin: 0 0 0 0;
    border: solid 1px #ddd;
    border-radius: 3px;
    padding: 8px 12px;
    color: #555;
    font-size: 13px;    
    width: 150px; 	
	z-index: 1000000;
}


/* homepage */

.homepage__hero {
	height: 90px;
    margin: 60px 0 0 0;
	position: relative;
    background-image: url('https://web-archive.nli.org.il/National_Library/oe_/https://knoji.com/images/homepage-hero.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 200;
}
.homepage__hero--overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
    z-index: 210;
}
.homepage__hero--text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    z-index: 220;
    color: #fff;
    width: 90%;
    text-align: center;
}
.homepage__hero--text--1 {
	font-weight: normal;
	font-size: 20px;
}

.homepage__hero--title {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 220;
    width: 90%;
    color: #fff;
    text-align: center;	
    font-size: 50px;
}
.homepage__more {
	border: solid 1px #333;
	padding: 5px 10px;
	font-size: 13px;
	color: #333;
	font-weight: bold;
	text-align: center;	
	text-transform: uppercase;
	margin: 0 auto;	
}
.homepage__leftcol {
	max-width: 400px;
	float: left;
}
.homepage__rightcol {
	max-width: 830px;
	float: left;
	margin: 0 30px 0 0 ;
}

.guideCardHomepage--left {
	float: left;
	max-width: 400px;
	margin-right: 30px;
}
.guideCardHomepage--right {
	float: left;
	max-width: 400px;
}

.guideCardHomepage img {
	max-width: 400px;
}
.guideCardHomepage h2 {
	font-size: 15px;
	font-weight: normal;
}

.homepage__bubble {
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 30px;
}
.homepage__bubble--in {
	float: left;
	color: #fff;
	font-size: 13px;
	margin: 5px 5px 0 0;
}
.homepage__bubble--label {
	float: left;
	border: solid 1px #fff;
	padding: 5px 10px;
	font-size: 11px;
	color: #fff;
	font-weight: bold;
	text-align: center;	
	text-transform: uppercase;
	margin: 0;
}

.homepage__bubble h2 {
	color: #fff;
	font-size: 18px;
	margin-bottom: 0;
}
.homepage__bubble--text {
	color: #fff;
	margin: 10px 0 0 0;
	font-size: 13px;
}
.homepage__bubble--text a {
	text-decoration: underline;
}

.homepage__col {
	width: 280px;
	float:left;
	margin: 0 30px 0 0 ;
}

.homepage--hero-old {
    background-image: url('https://web-archive.nli.org.il/National_Library/oe_/https://knoji.com/images/hero.jpg');
	height: 400px;
    margin: 60px 0 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 200;
}
.homepage--heroimage1 {
    background-image: url('https://web-archive.nli.org.il/National_Library/oe_/https://knoji.com/images/hero.jpg');    
}
.homepage--heroimage2 {
    background-image: url('https://web-archive.nli.org.il/National_Library/oe_/https://knoji.com/images/hero2.jpg');    
}
.homepage--heroimage3 {
    background-image: url('https://web-archive.nli.org.il/National_Library/oe_/https://knoji.com/images/hero3.jpg');    
}
.homepage--herooverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 210;
}
.homepage--heromodule {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 220;
    width: 90%;
    text-align: center;
}
.homepage--herotext {
    color: white;
    font-weight: 700;
    font-size: 45px;
    margin: 0 0 20px 0;
}
.homepage--herosubtext {
    color: white;
    font-weight: 500;
    font-size: 30px;
    margin: 0 0 40px 0;
}
.homepage--leftcol {
    display: inline-block;
    margin: 15px;
    width: 800px;
    vertical-align: top;
}
.homepage--rightcol {
    display: inline-block;
    margin: 15px;
    width: 320px;
    vertical-align: top;
}
.small--avatar {
	border-radius: 50%;
	height: 20px;
	width: 20px;
	margin: 0 0 0 0; 
	display: inline-block;
}

/* tabs */

.tab--small {
    display: inline-block;
    padding: 10px 30px;
    text-align: center;
    font-size: 15px;
    background: #eee;
    border-bottom: solid 1px #ddd;
    border-top: solid 2px #eee;
    border-left: solid 1px #eee;
    border-right: solid 1px #eee;
    margin-left: -4px;
}
.tab--small__right {
	float: right;
}
.tab--small__active {
    background: white;
    border-bottom: solid 1px #f5f5f5;
    border-left: solid 1px #ddd;
    border-right: solid 1px #ddd;
    border-top: solid 2px #a1c820;
    margin: 0;
    margin-left: -4px;
}
.tab--line {
    width: 100%;
    display: block;
    border-top: 1px solid #ddd;
    height: 30px;
    margin-top: -1px;
}

/* display merchant */

.displaymerchant--container {
    background: white;
    margin: 0 0 30px 0;
    display: inline-block;
}
.displaymerchant--logo {
    width: 300px;
    border: solid 1px #eee;
    padding: 8px;
    margin: 0 auto;
    background: white;
}

/* top header */

.top {
	background: #fff;
	padding: 0 20px;
	font-size: 17px;
	z-index: 9000;
	height: 60px; 
	z-index: 9000;
	border-bottom: solid 1px #f5f5f5;
}
.top--menucontainer {
	position: relative;
	float: left;
	margin: 0 0 0 10px;
}
.top--menu--searchbar {
	position: absolute;
	width: 700px;
	height: 60px;
	background: #fff;
	display: none;
	z-index: 2000;
}
.boxselect--top {
	position: relative;
	display: inline-block;
	cursor: pointer;
	background: #fbfbfb;
	border: solid 1px #ddd;
	height: 36px;
	width: 150px;
	vertical-align: middle;
	padding: 11px 15px 0 15px;
	color: #777;
	font-size: 13px;
}
.boxselect__menu--top {
	position: absolute;
	top: 36px;
	background: #fbfbfb;
	margin-left: -15px;
	width: 150px;
	padding: 15px;
	display: none;
	z-index: 10000;
}

.top--menu--searchbar--left {
	position: relative;
	width: 165px;
	height: 60px;
	float: left;
	padding-top: 12px;
}
.top--menu--searchbar--right {
	position: relative;
	width: 450px;
	height: 60px;
	float: left;
}
.top--searchbar-new {
    margin: 12px 30px 0 0 ;
    border: solid 1px #ddd;
    border-radius: 3px;
    padding: 8px 12px;
    color: #555;
    font-size: 15px;    
    width: 300px; 	
	z-index: 1000000;
}
.top--searchbar-new--hidden {
	display: none;
}
.top--searchicon {
	float: left;
	height: 60px;
	font-size: 25px;
	color: #777;
	margin: 0 20px 0 0;
	padding-top: 18px;	
}
.top--menu--searchbar--close {
	display: block;
	position: absolute;
	font-size: 20px;
	color: #ddd;
	top: 20px;
	left: 315px;
	z-index: 1000000;
}
.top--menuitem {
	position: relative;
	display: block;	
	float: left;
	height: 60px;
	font-size: 15px;
	margin: 0 15px;
	padding-top: 20px;
}
.top--menuitem--menu {
	display: none;
	position: absolute;
	background: #fff;
	top: 58px;
	left: 0px;
	padding: 20px 20px 7px 20px;
	width: 200px; 
	border-top: solid 2px #ff6347;
	border-bottom: solid 1px #eee;
	border-left: solid 1px #eee;
	border-right: : solid 1px #eee;
}
.top--menuitem--menu li {
	margin-bottom: 15px;
	font-size: 13px;
	font-weight: bold;
}
.top--minheader {
	background: #fff;
	padding: 12px 0 0 0;
	font-size: 17px;
	z-index: 9000;
	height: 60px; 
	z-index: 9000;
	border-bottom: solid 1px #f5f5f5;
}
.top--navlink {
	margin: 22px 0 0 0;
	display: inline-block;	
}
.top--navlink i {
	color: #aaa;
	margin: 0 5px;
}
.top--right {
	float: right;
	width: 350px;
	text-align: right;
	margin: 20px 0;
}
.logo {
	background-image: url("https://web-archive.nli.org.il/National_Library/oe_/https://knoji.com/images/wordmark-dark-100.png");
	background-repeat: no-repeat;
	margin: 14px 30px 0 10px;
	display: inline-block;
	width: 100px;
	height: 36px;
	float: left;
	opacity: 1.0;
}
.logo--minheader {
	background-image: url("https://web-archive.nli.org.il/National_Library/oe_/https://knoji.com/images/wordmark-dark-100.png");
	background-repeat: no-repeat;
	margin: 0 auto 0 auto;
	display: block;
	width: 100px;
	height: 36px;
	opacity: 1.0;
}
.top--avatar {
	border-radius: 50%;
	height: 35px;
	width: 35px;
	margin: 12px 0 0 0; 
	display: inline-block;
	float: right; 
}
.top--hamburger--button {
	height: 37px;
	width: 37px;
	margin: 12px 0 0 12px; 
	display: none;
	float: right; 	
    border: solid 1px #ddd;
    border-radius: 5px;
	padding: 8px;
    color: #aaa;     
}
.top--menubutton {
    display: inline-block;
    margin: 11px 0 0 0;
    border: solid 1px #ddd;
    border-radius: 5px;
    padding: 9px;
    color: #aaa;     
}
.top--searchbar {
	display: inline-block;
    margin: 12px 0 0 0 ;
    border: solid 1px #ddd;
    border-radius: 3px;
    padding: 8px 12px;
    color: #555;
    font-size: 15px;    
    width: 200px; 	
	z-index: 1000000;
}
.top--searchbarmenu {
	z-index: 1000000;
}
.top--achievements {
	 float: right;
	 font-size: 17px;
	 color: #777;
	 margin: 17px 20px 0 0 ;
	 line-height: 20px;
}
.top--reputation {
	 float: right;
	 font-size: 17px;
	 color: #777;
	 margin: 17px 20px 0 0 ;
	 line-height: 20px;
}

/* buttons */

.btn {
	text-decoration: none;
	background-color: white;
	color: #fff!important;
	border-radius: 3px;
	display: inline;
	font-size: 20px;
	font-weight: 700;
	padding: 10px 25px;	
	text-align: center;
}
.btn__block {
    display: inline-block;
    margin: 5px;
}
.btn__large {
	font-size: 25px;
	padding: 10px 30px;
}
.btn__small {
	font-size: 17px;
	padding: 7px 22px;		
}
.btn__green {
	background-color: #a1c820;
}
.btn__green:hover {
	background-color: #b2d931;
}
.btn__blue {
	background-color: #3fa9f5;
}
.btn__blue:hover {
	background-color: #4fbaf6;
}
.btn__darkblue {
	background-color: #3897DB;
}
.btn__darkblue:hover {
	background-color: #4fbaf6;
}
.btn__red {
	background-color: #ff6347;
}
.btn__red:hover {
	background-color: #ff7458;
}
.btn__amazonorange {
	background-color: #ff9900;
}
.btn__amazonorange:hover {
	background-color: #ffbb22;
}
.btn__grey {
	background-color: #aaa;
}
.btn__lightgrey {
	background-color: #eee;
	color: #444;
}
.btn__facebook {
	background: #3B5998;
}
.btn__twitter {
	background: #4099FF;
}
.btn__facebook:hover {
	background: #4c6aa9;
}
.btn__twitter:hover {
	background: #51aaFF;
}
.btn__corner--green {
	right: 0px;
    width: 15px;
    height: 15px;
    bottom: 0px;
    position: absolute;
    background: #80a600;
    transition: 0.2s;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #ddd;
    pointer-events: none;
    border-top-left-radius: 5px;		
}
.btn__corner--blue {
	right: 0px;
    width: 15px;
    height: 15px;
    bottom: 0px;
    position: absolute;
    background: #2F7EB6;
    transition: 0.2s;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #ddd;
    pointer-events: none;
    border-top-left-radius: 5px;		
}
.btn__corner--red {
	right: 0px;
    width: 15px;
    height: 15px;
    bottom: 0px;
    position: absolute;
    background: #BE4934;
    transition: 0.2s;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #ddd;
    pointer-events: none;
    border-top-left-radius: 5px;		
}
.btn__corner--grey {
	right: 0px;
    width: 15px;
    height: 15px;
    bottom: 0px;
    position: absolute;
    background: #888;
    transition: 0.2s;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #ddd;
    pointer-events: none;
    border-top-left-radius: 5px;		
}

/* widgets */

.repstar {
    color: #a1c820;
    line-height: normal;
    vertical-align: middle;
    margin-right: 3px;
}
.repstar--number {
    display: inline-block;
    line-height: normal;
	vertical-align: middle;
	color: #777;
}
.profilestat {
    width: 110px;
    text-align: center;
}
.profilestat--label {
    clear:both;
    font-size:15px;
    margin-top: 5px;
}
.profilestat--number {
    font-size: 30px;
    color: #777;
}
.profile--avatar {
	border-radius: 50%;
	height: 150px;
	width: 150px;
}
.profile--socialicon {
	margin: 0 7px;
	font-size: 20px;
	color: #ccc;
}

/* modules */

.module {
	background-color: white;
	padding: 20px 25px;
	border-radius: 4px;
	word-wrap: break-word;
	margin-bottom: 30px;
}
.module__lightgrey {
	background-color: #f9f9f9;
}
.module__lightergrey {
	background-color: #fbfbfb;
}
.module__grey {
	background-color: #eee;
}
.module__palegreen {
	background-color: #e6f1cb;
}
.module__paleyellow {
	background-color: #FFF4B2;
}
.module__palered {
	background-color: #FFE0E0;
}
.module__paleblue {
	background-color: #CFE9FC;
}
.module__outline {
	border: solid 1px #eee;
}
.module--answer {
	position: relative;
}
.module--mobile__merchantlogo {
	display: none;
}
.module--mobile__merchant {
	margin: 0 0 30px 0;
}
.module--mobile__merchantname {
	margin-bottom: 15px;
}
.module--mobile__merchantlogoimg {
	display: none;
}
.module--mobile__merchantpromoinfo {
	display: inline-block;
	margin-right:20px;
}
.module--mobile__merchantpromoinfotext {
	display: inline-block;
	margin-right:10px;	
}
.module--mobile__category {
	margin: 0 0 30px 0;
}
.module--mobile__categoryname {
	margin-bottom: 15px;
}
.faq--module {
	max-width: 450px;
	display: inline-block;
	margin: 0 30px 30px 0;
}
/* notifications */

.notification {
	padding: 20px;
	margin-bottom: 20px;
}
.notification--error {
	background: #FFEDD1;
	color: #ff6347;
}
.notification--default {
	background: #FFF4B2;
	color: #333;
}
.notification--confirm {
	background: #e6f1cb;
	color: #333;
}

/* mobile */
.mobile--clear {
	display: none;
}
.mobile--dblock {
	display: none;
}
.d--dt {
	display: block;
}
.d--d {
	display: block;
}
.d--m {
	display: none;
}
.d--tm {
	display: none;
}


/* autocomplete */

 
/* scroll results */
.ui-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    outline: none;
    z-index: 10000;
}
.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
    background: white;
    padding: 0;
    width: inherit;
    z-index: 10000;
}
.ui-front {
    z-index: 10000;
}
.ui-autocomplete li {
    font-size: 15px;
    padding: 12px 15px;
}
.ui-autocomplete li:hover {
    background: #CFE9FC;
    cursor: pointer;
}
 
/* merchant card */
	
.merchantcard__featurepill {
	display: inline-block;
	font-size: 11px;
	padding: 5px 10px;
	border: solid 1px #eee;
	color: #888;
	background: #fafafa;
	margin: 0 5px 5px 0;
}
.merchantcard__featurepill--yes {
	border: solid 1px #a1c820;
	color: #333;
	background: #fafafa;
}

/* similar sites */

.simsites--merchantlogo {
	margin: 0;
    display: inline-block;
    vertical-align: middle;
	width: 60px;
}
.simsites--usertext {
    display: inline-block;
    width: 175px;
    font-size: 13px;
    vertical-align: top;
}
.simsites--avatar {
    margin-right: 5px;   
}


/* vertical alignment */

.vablock60 {
    display: block;
    line-height: 60px;
}
.vablock70 {
    display: block;
    line-height: 70px;
}
.vablock80 {
    display: block;
    line-height: 80px;
}
.vablock90 {
    display: block;
    line-height: 90px;
}
.vablock100 {
    display: block;
    line-height: 100px;
}
.vablockinner {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}
.vatop {
    vertical-align: top;
}

/* profile page */


/* 2 col layout, left col 320 */

.twocol--left {
    display: inline-block;
    width: 320px;
	margin: 0 30px 30px 0;
    vertical-align: top;
}
.twocol--right {
    display: inline-block;
    max-width: 915px;
    vertical-align: top;
}
.twocol300--left {
    width: 300px;
    position: absolute;
    top: 0;
    left: 0;
}
.twocol300--right {
    margin-left: 330px;
}

/* generic avatar */

.avatar--avatar {
	border-radius: 50%;
	height: 30px;
	width: 30px;
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
	margin: 0 5px 0 0 ;
}
.avatar--text {
	font-size: 16px;	
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
	word-wrap: break-word;
}


/* userbylines */

.userbyline {
	display: block;
	line-height: 22px;
}
.userbyline--avatar {
	border-radius: 50%;
	height: 22px;
	width: 22px;
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
	margin: 0 0 0 0 ;
}
.userbyline--text {
	font-size: 12px;	
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
	word-wrap: break-word;
	margin: 3px 0 0 5px;
}
.userbyline--text__name {
	font-size: 12px;	
	margin-right: 5px;
}
.userbyline--text__answers {
	font-size: 12px;	
	margin: 0 5px;
}
.userbyline--text__time {
	font-size: 12px;	
	margin: 0 5px 0 0px;
	color: #888;
}
.userbyline--text__answervotes {
	font-size: 12px;	
	color: #a1c820;
	margin-right: 20px;
}
.avatar {
	border-radius: 50%;
	height: 30px;
	width: 30px;
	display: inline-block;
	vertical-align: middle;
	line-height: normal;    
}

/* feed items */

.feeditem--inner {
    margin-left: 70px;
}
.feeditem--votearrow {
	float:left;
	margin-left: 20px;
	position: absolute;
    top: 30px;
    right: 30px;
}
.feeditem--useravatar {
	border-radius: 50%;
	height: 22px;
	width: 22px;
	display: inline-block;
	vertical-align: top;
	line-height: normal;
	margin: 0 5px 0 0 ;
}
.feeditem--usertext {
	font-size: 12px;	
	display: inline-block;
	vertical-align: top;
	line-height: normal;
	word-wrap: break-word;
    max-width: 638px;    
}
.feeditem--text__name {
	margin: 0 5px 0 0;
}
.repfeeditem--left {
    margin-right: 70px;
}
.repfeeditem--right {
    position: absolute;
    top: 30px;
    right: 30px;
}

/* filter buttons */

.filterbutton {
	display: inline-block;
	border: solid 1px #ddd;
	padding: 5px 15px;
	font-size: 13px;
	text-align: center;
	color: #777;
	border-radius: 15px;
	background: #fff;
	margin: 0 5px 5px 0 ;
}
.filterbutton--on {
	color: #fff;
	background: #777;
	border-color: #777;
}

/* merchant page */

.merchantpage__logo {
	text-align: center;
	margin: 0 0 15px 0;
}
.merchantpage__stars {
	font-size: 20px;
	text-align: center;
	margin-bottom: 3px;
}
.merchantpage__stars--label {
	font-size: 13px;
	text-align: center;
	margin-bottom: 30px;
}
.merchantpage__logo img {
	width: 150px;
}
.merchantpage__stat {
	font-size: 13px;
	border-bottom: solid 1px #eee;
	padding-bottom: 7px;
	margin-bottom: 7px;
}
.merchantpage__asof {
	font-size: 12px;
	color: #777;
}
.filler__title {
	color: #333;
	font-size: 15px;
	margin-bottom: 3px;
	font-weight: 700;
}
.filler__text {
	font-size: 13px;
	color: #333;
	margin-bottom: 30px;
}

/* promo2 */

.promo2 {
	display: block;
	cursor: pointer;
}
.promo2__left {
	width: 100px;
	float: left;
	border-right: solid 1px #eee;
	padding-right: 20px;
	margin-right: 20px;	
	height: 90px;
}
.promo2__middle {
	max-width: 615px;
	margin-left: 121px;
	height: 90px;
}
.promo2__middle--left {
	float: left;
	max-width: 415px;
	margin-right: 30px;
}
.promo2__middle--right {
	float: right;
	margin: 0 0 0 0;
	width: 170px;
}
.promo2__btn--mobile {
	display: none;
}
.promo2__amountoff {
	font-size: 17px;
	font-weight: bold;
	text-align: center;
}
.promo2__amountoff--small {
	font-size: 15px;
}
.promo2__type {
	display: block;
	font-size: 13px;
	text-align: center;
	padding: 5px;
	background: #fff;
	margin: 10px auto 0 auto;
	border-radius: 5px;
}
.promo2__type--code {
	color: #3897DB;
	border: solid 1px #3897DB;
}
.promo2__type--sale {
	color: #a1c820;
	border: solid 1px #a1c820;
}
.promo2__type--amazon {
	background: #ff9900;
}
.promo2__title {
	font-size: 19px;
	font-weight: 600;
	height: 55px;
}
.promo2__btn {
	font-size: 15px;
	padding: 15px;
	font-weight: 700;
}
.promo2__btn--sale {
	background: #3FA9F5;
}
.promo2__sulabel {
	text-align: center;
	font-size: 12px;
	color: #777;
	margin-top: 10px;
}
.promo2__metainfo {
	font-size: 13px;
	color: #888;
}
.promo2--merchantlogo {
	text-align: center;
}
.promo2--merchantlogo img {
	width: 70px;
}

/* promo */

.promo--btn {
	float: right;
	margin-top: 0;
	margin-bottom: 15px;
	width: 240px;
}
.promo--btn__small {
	font-size: 17px;
}
.promo--btn__thin {
	float: right;
	margin-top: 15px;
	margin-bottom: 10px;
	width: 220px;
}
.promo--left {
	float: left;
	display: block;
	margin-bottom: 0px;
	max-width: 600px;
	margin-right: 20px;
}
.promo--codebox {
	border: 0;
	background: #f5f5f5;
	padding: 20px 30px;
	font-size: 40px;
	font-weight:800;
	text-align: center;
	margin: 10px auto 20px auto;
	display: block;
	width: 400px;
	cursor: pointer;
}
.promo--codebox--small {
	text-decoration: none;
	color: #444;
	font-size: 17px;
	font-weight: 700;
	text-align: center;
	border: 0;
	background: #f5f5f5;
	padding: 15px 20px;
	cursor: pointer;
}
.promo--merchantlogo {
	margin: 10px 0 10px 0;
	width: 80px;
}
.promo--amountoff {
	font-size: 13px;
	color: #fff;
	background: #a1c820;
	padding: 5px 10px;
	display: inline-block;	
	margin: 0 10px 0 0 ;
	border-radius: 5px;
/*
	font-size: 20px;
	font-weight: 700;
	margin: 0 10px 0 0;
	display: inline-block;	
*/
}
.promo--amazon {
	font-size: 13px;
	color: #fff;
	background: #ff9900;
	padding: 5px 10px;
	display: inline-block;	
	margin: 0 10px 0 0 ;
	border-radius: 5px;
}
.promo--experttip {
	font-size: 13px;
	color: #fff;
	background: #888;
	padding: 5px 10px;
	display: inline-block;	
	margin: 0 10px 0 0 ;
	border-radius: 5px;
}
.promo--verified {
	font-size: 15px;
	color: #777;
	margin: 0 10px 0 0;
	display: inline-block;	
}
.promo--pick {
	font-size: 13px;
	color: #fff;
	background: #a1c820;
	padding: 5px 10px;
	display: inline-block;	
	margin: 0 10px 0 0 ;
	border-radius: 5px;

/*
	font-size: 15px;
	color: #777;
	display: inline-block;	
	margin: 0 10px 0 0 ;

	font-size: 13px;
	color: #fff;
	background: #FFC800;
	padding: 5px 10px;
	display: inline-block;	
	margin: 0 10px 0 0 ;
	border-radius: 5px;

	font-size: 13px;
	color: #FF8A75;
	background: #fff;
	padding: 5px 10px;
	display: inline-block;	
	margin: 0 10px 0 0 ;
	border: solid 1px #FF8A75;
	border-radius: 5px;
	font-size: 13px;

	color: #fff;
	background: #FF8A75;
	padding: 5px 10px;
	display: inline-block;	
	margin: 0 10px 0 0 ;
	border-radius: 5px;
*/
}
.promo--title {
	font-size: 20px;
	font-weight: 600;
}

/* promoh */

.promoh {
	float: left;
	position: relative;
	max-width: 210px;
	margin: 0 30px 30px 0;
	padding: 20px;
	background: #fff;
}
.promoh__toppicklabel {
	position: absolute;
	top: -10px;
	right: 20px;
	padding: 5px 15px;
	border-radius: 3px;
	font-size: 11px;
	background: #ff6347;
	color: #fff;
	text-align: center;
}
.promoh--btn {
	margin-top: 0;
	width: 180px;
	font-size: 15px;
}
.promoh--title {
	font-size: 15px;
	font-weight: 600;
	height: 50px;
}
.promoh--merchantlogo {
	width: 120px;
	margin: 0 auto 20px auto;	
}

/* toppromos search */

.toppromos-search {
	background: #eee;
	padding: 15px;
}
.toppromos__box {
	width: 270px;
	float: left;
	margin-right: 30px;
}
.compare__box {
	width: 320px;
	float: left;
}
.compare__box--vs {
	float: left;
	margin: 17px 15px 0 15px;
}
.compare__submit {
	background: #a1c820;
	color: #fff;
	font-weight: bold;
	border-radius: 5px;
	border: solid 1px #a1c820;
	padding: 15px 30px;
	text-align: center;
	float: left;
}

/* top comparisons */

.topcomparison {
	padding: 20px;
	background: #fff;
	margin: 0 0 30px 0;
}
.topcomparison__logocontainer {
	width: 150px;
	float: left;
	padding: 10px;
	border: solid 1px #eee;
	text-align: center;
}
.topcomparison__logo {
	width: 100px;
	float: left;
	padding: 15px;
	background: #fff;
	border: solid 1px #eee;
	text-align: center;
}
.topcomparison__vs {
	display: block;
	float: left;
	font-size: 13px;
	margin: 42px 15px 0 15px;
}
.topcomparison__text {
	float: left;
	margin: 0 0 0 20px;
	max-width: 550px;
}
/* star ratings */

.star--container {
	position: relative;
	display: inline-block;
	height: 50px;
	width: 50px;
}
.star {
	position: absolute;
	left: 0;
	right: 0;
	height: 50px;
	width: 50px;
	font-size:50px;
	text-align: center;
}
.star__selected {
	color: #fff207;
	position: relative;
	z-index: 1200;
}
.star__active {
	color: #fff207;
	position: relative;
	z-index: 1100;
}
.star__inactive {
	color: #eee;
	position: relative;
	z-index: 1000;
}
.star-text-container {
	position: relative;
	width:100%;
	margin: 0 auto;
	height:auto;
	margin-bottom: 30px;
}
.star-text-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;	
	z-index: 1000;
}
.star-text-click {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;	
	z-index: 1200;	
	display: none;
}
.star__on {
	color: #fff207;
}
.star__off {
	color: #eee;
}

/* vote buttons */

.votearrow--wrapper {
	float:left;
	position: absolute;
	left: 25px; 
	top: 20px;
}
.votearrow--container {
	position:relative;
	height:30px;
	width:50px;
	display:block;
	margin-bottom: 5px;
}
.votearrow {
	position:absolute;
	z-index:1000;
	top:0px;
	left:0px;
	display:block;
	height:30px;
	width:50px;
	text-align: center;
	background-color:#e6f1cb;
	color: #a1c820;
	border-radius: 5px;
	padding-top:1px;
	font-size: 27px;
}
.votearrow:hover {
	background: #a1c820;
	color: white;
}
.votearrow_selected {
	position:absolute;
	z-index:1100;
	display:none;
	text-align: center;
	top:0px;
	left:0px;
	height:30px;
	width:50px;
	background:#3fa9f5;
	color: #fff;
	border-radius: 5px;
	padding-top:1px;
}

/* guide cards */

.guideCardTop {
	margin: 0 0 70px 0;	
}
.guideCardTop img {
	width: 1000px;
}
.guideCard {
	margin: 0 0 0 0;
}
.guideCard--left {
	float: left;
	width: 450px;
	margin: 0 50px 0 0;
}
.guideCard--right {
	float: left;
	width: 500px;
}
.guideCard--right img {
	width: 500px;
}
.guideCard--categorylabel {
	display: inline-block;
	border: solid 1px #333;
	padding: 5px 10px;
	font-size: 13px;
	color: #333;
	font-weight: bold;
	text-align: center;	
	text-transform: uppercase;
	margin: 0 10px 10px 0;
}
.guideCard--date {
	display: inline-block;
	padding: 5px 0;
	font-size: 13px;
	color: #555;
}



/* answers */

.answer--body {
	margin-left: 70px;
}
.answer--showvotes {
	font-size: 13px;
}

/* questions */

.question--body {
	margin-left: 70px;
	min-height: 70px;
}

/* comments */

.comment--body {
	margin-left: 70px;
}
.comment--showvotes {
	font-size: 13px;
}
.comment--text {
	font-size: 15px;
	line-height: 20px;
	color: #777;
}
/* images */

.circular--square {
	border-radius: 50%;
}

/* inputs */

.label {
    margin-bottom: 10px;
    font-size:15px;
	display: block;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
.input:focus {
	border-bottom: 1px solid #a1c820;
	
}
.input {
	border: none;
	padding: 15px 10px;
	border-bottom: 1px solid #ddd;
}
.boxinput {
	border: solid 1px #ddd;
	padding: 15px 20px;
	color: #777;
}
.submit {
	border: none;
	background: #3fa9f5;
	padding: 10px 20px;
	color: white;
	border-radius: 5px;
	font-weight: 600;
}
.submit__red {
	background: #ff6347;
}
.submit__green {
	background: #a1c820;
}
.checkbox {
	border: solid 1px #ddd;
	height: 15px;
	width: 15px;
}

.boxselect {
	position: relative;
	display: inline-block;
	cursor: pointer;
	background: #fff;
	border: solid 1px #ddd;
	height: 52px;
	vertical-align: middle;
	padding: 18px 20px 0 20px;
	color: #777;
	font-size: 15px;
}
.boxselect__arrow {
	float: right;
}
.boxselect__menu {
	position: absolute;
	top: 52px;
	background: #fff;
	margin-left: -20px;
	width: 298px;
	padding: 20px;
	display: none;
	z-index: 10000;
}

/* compare */

.compare--row {
    background: white;
    border-bottom: solid 1px #eee;
    display: table;
    table-layout: fixed;
    word-wrap: break-word;
    width: 100%;
}
.compare--column {
   display: table-cell; 
   padding: 40px 30px;
}
.compare--ratingmodule {
    position: absolute;
    top: 40px;
    left: 30px;
    width: 100px;
    text-align: center;    
}
.compare--ratingmodule--mobile {
	display: none;
	font-size: 13px;
}
.compare--textmodule {
    display: inline-block;
    margin-left: 130px;
    vertical-align: top;
    font-size: 15px;
}
.compare__featurepill {
	display: inline-block;
	font-size: 15px;
	font-weight: bold;
	padding: 5px 25px;
	border: solid 1px #ccc;
	border-radius: 5px;
	color: #999;
	background: #fff;
	margin: 0 0 10px 0;
}
.compare__featurepill--yes {
	border: solid 1px #a1c820;
	color: #fff;
	background: #a1c820;
}
.compare__featurepill--no {
	border: solid 1px #ff6347;
	color: #ff6347;
	background: #fff;
}
.compare__featurepill--top {
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	padding: 3px 20px 7px 20px;
	border-radius: 5px;
	border: solid 1px #a1c820;
	color: #fff;
	background: #a1c820;
	margin: 0 3px 0 0;
}
.compare__moreinfolink {
	display: inline-block;
	margin-left: 8px;
	padding: 8px 0px;
	font-size: 13px;
	color: #aaa;
}
.compare--row--tip {
	text-align: center;
	color: #999;
	padding: 10px 0;
	font-size: 13px;
	background: #fefefe;
}
.compare--row--title {
	text-align: center;
	color: #333;
	padding: 20px 20px 0 20px;
	font-size: 15px;
	background: #fff;
    border-bottom: 0px;
}
.compare--searchbar {
    display: inline-block;
    margin: 0;
    border: solid 1px #ddd;
    border-radius: 3px;
    padding: 8px 15px;
    color: #555;
    font-size: 13px;
    width: 200px; 	
	z-index: 1000000;
}


/* usecode */

.usecode--container {
	background: white;
	padding: 30px;
	margin: 50px auto;
	width: 600px;
	display: block;
	text-align: center;
}
.usecode--code {
	border: 0;
	background: #f5f5f5;
	padding: 20px 30px;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin: 10px auto 30px auto;
	display: block;
	width: 300px;
	color: #a1c820;
}
.animation {
  height: 20px;
  margin: 0;
}

.animation-dot {
  animation: dot 3s infinite;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  background: #f5f5f5;
  height: 20px;
  margin: 0 3px;
  width: 20px;
}

.animation-dot:nth-child(2) {
  animation-delay: .25s;
}

.animation-dot:nth-child(3) {
  animation-delay: .5s;
}

.animation-dot:nth-child(4) {
  animation-delay: .75s;
}

.animation-dot:nth-child(5) {
  animation-delay: 1.0s;
}

@keyframes dot {
  0% {
    background-color: #f5f5f5;
  }
  50% {
    background-color: #ddd;
/*    transform: translateY(-3px); */
  }
  100% {
    background-color: #f5f5f5;
  }
}

/* text editor */

.fr-view p {
    margin-bottom: 20px;
}
.fr-view li {
    margin: 0 0 7px 0;
    padding: 0 0 0 17px;
    position: relative;
}
.fr-view ul,ol {
    margin: 10px 0 20px 20px;
}
.fr-view li::before {
    content: '●';
    display: block;
    left: 0;
    position: absolute;
    top: 0;
}
.fr-view ol {
    counter-reset: item;
}
.fr-view ol li::before {
    content: counter(item) '.';
    counter-increment: item;
}

/* pagination */

.pagination_key {
    display: inline-block;
    padding: 15px 20px;
    border: solid 1px #ddd;
    background: white;
    text-align: center;
    font-size: 20px;
    color: #aaa;
}
.pagination_key--selected {
    background: #a1c820;
    color: white;
    border-color: #a1c820;
}
.pagination_key:hover {
    background: #e6f1cb;
    color: #a1c820;
}
.pagination_spacer {
    display: inline-block;
    padding: 15px 20px;
    border: none;
    background: none;
    text-align: center;
    font-size: 20px;
    color: #ddd;
}

/* tables */

.row {    
  display: table;
  table-layout: fixed;
  word-wrap: break-word;
  width: 100%;
}
.column { 
  display: table-cell; 
  padding: 10px;
}
.row--compare {
    background: white;
    border-bottom: solid 1px #eee;
}


/* masonry */

.masonry { /* Masonry container */
    column-count: 4;
    column-gap: 20px;
}

.masonry--item { /* Masonry bricks or child elements */
    background-color: #eee;
    display: inline-block;
    margin: 20px;
    padding: 20px;
    width: 100%;
}

/* miscellaneous */

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
.cl {
    clear: both;
}
.dnone {
	display: none;
}
.dblock {
	display: block;
}
.diblock {
	display: inline-block;
}
.dinline {
	display: inline;
}
i[class^="icon-"]:before, i[class*=" icon-"]:before {
  margin: 0;
}
.opaque {
	opacity: 1.0;
}
.fl {float:left;}
.fr {float:right;}
.cl {clear:both;}
.mr0 {margin-right:0px;}.mr1 {margin-right:1px;}.mr2 {margin-right:2px;}.mr3 {margin-right:3px;}.mr4 {margin-right:4px;} .mr5 {margin-right:5px;} .mr8 {margin-right:8px;} .mr10 {margin-right:10px;}.mr12 {margin-right:12px;} .mr15 {margin-right:15px;} .mr20 {margin-right:20px;} .mr25 {margin-right:25px;} .mr30 {margin-right:30px;}.mr40 {margin-right:40px;}.mr50 {margin-right:50px;} .mrauto{margin-right:auto;}
.mt0 {margin-top:0;}.mt1 {margin-top:1px;}.mt2 {margin-top:2px;}.mt3 {margin-top:3px;}.mt4 {margin-top:4px;} .mt5 {margin-top:5px;}.mt6 {margin-top:6px;}.mt7 {margin-top:7px;} .mt8 {margin-top:8px;} .mt10 {margin-top:10px;} .mt15 {margin-top:15px;} .mt17 {margin-top:17px;} .mt20 {margin-top:20px;}.mt22 {margin-top:22px;}.mt23 {margin-top:23px;} .mt25 {margin-top:25px;} .mt30 {margin-top:30px;} .mt35 {margin-top:35px;}  .mt40 {margin-top:40px;}  .mt50 {margin-top:50px;}.mt60 {margin-top:60px;}.mt70 {margin-top:70px;}.mt80 {margin-top:80px;}.mt90 {margin-top:90px;}.mt100 {margin-top:100px;}
.mtn10{margin-top: -10px;}.mtn20{margin-top: -20px;}.mtn30{margin-top: -30px;}.mtn40{margin-top: -40px;}
.mb0 {margin-bottom:0;}.mb3 {margin-bottom:3px;} .mb5 {margin-bottom:5px;} .mb8 {margin-bottom:8px;} .mb10 {margin-bottom:10px;} .mb15 {margin-bottom:15px;} .mb20 {margin-bottom:20px;} .mb25 {margin-bottom:25px;} .mb30 {margin-bottom:30px;} .mb40 {margin-bottom:40px;} .mb50 {margin-bottom:50px;} .mb60 {margin-bottom:60px;} .mb70 {margin-bottom:70px;} .mb80 {margin-bottom:80px;} .mb90 {margin-bottom:90px;} .mb100 {margin-bottom:100px;}
.ml0 {margin-left:0px;}.ml0 {margin-left:1px;}.ml3 {margin-left:3px;} .ml5 {margin-left:5px;} .ml8 {margin-left:8px;} .ml10 {margin-left:10px;} .ml15 {margin-left:15px;} .ml20 {margin-left:20px;} .ml25 {margin-left:25px;} .ml30 {margin-left:30px;}.ml40 {margin-left:40px;}.ml50 {margin-left:50px;} .ml100{margin-left:100px;} .mlauto{margin-left:auto;}
.bb {border-bottom:solid 1px #ddd;}.bbfff {border-bottom:solid 1px #fff;} .bb3fff {border-bottom:solid 3px #fff;}
.bt {border-top:solid 1px #ddd;}.btfff {border-top:solid 1px #fff;} .btddd {border-top:solid 1px #ddd;} .bteee {border-top:solid 1px #eee;}
.bbmed {border-bottom:solid 1px #ccc;}
.bb2 {border-bottom:solid 1px #eee;width:90%;}
.bb3 {border-bottom:solid 1px #eee;width:100%;}
.br {border-right:solid 1px #ddd;}
.border {border:solid 1px #ddd;}
.bbddd {border-bottom: solid 1px #ddd;} .bbeee {border-bottom: solid 1px #eee;}
.sp1 {height:1px;}.sp2 {height:2px;}.sp3 {height:3px;}.sp5 {height:5px;}.sp7 {height:7px;}.sp8 {height:8px;}.sp10 {height:10px;}.sp15 {height:15px;}.sp20 {height:20px;}.sp25 {height:25px;}.sp30 {height:30px;}.sp40 {height:40px;}.sp50 {height:50px;}.sp70 {height:70px;}.sp100 {height:100px;}.sp200 {height:200px;}
.spddd {height: 1px; background: #ddd;}
.pd0 {padding:0;} .pd1 {padding:1px;}.pd2 {padding:2px;}.pd3 {padding:3px;} .pd5 {padding:5px;} .pd8 {padding:8px;} .pd10 {padding:10px;} .pd15 {padding:15px;} .pd20 {padding:20px;} .pd25 {padding:25px;} .pd30 {padding:30px;}
.pb0 {padding-bottom: 0px;} .pb1 {padding-bottom:1px;}.pb2 {padding-bottom:2px;}.pb3 {padding-bottom:3px;}.pb5 {padding-bottom:5px;}.pb7 {padding-bottom:7px;}.pb8 {padding-bottom:8px;}.pb10 {padding-bottom:10px;}.pb15 {padding-bottom:15px;}.pb20 {padding-bottom:20px;}.pb25 {padding-bottom:25px;}.pb30 {padding-bottom:30px;}
.pt1 {padding-top:1px;}.pt2 {padding-top:2px;}.pt3 {padding-top:3px;}.pt5 {padding-top:5px;}.pt7 {padding-top:7px;}.pt8 {padding-top:8px;}.pt10 {padding-top:10px;}.pt15 {padding-top:15px;}.pt20 {padding-top:20px;}.pt25 {padding-top:25px;}.pt30 {padding-top:30px;}
.pr1 {padding-right:1px;}.pr2 {padding-right:2px;}.pr3 {padding-right:3px;}.pr5 {padding-right:5px;}.pr7 {padding-right:7px;}.pr8 {padding-right:8px;}.pr10 {padding-right:10px;}.pr15 {padding-right:15px;}.pr20 {padding-right:20px;}.pr25 {padding-right:25px;}.pr30 {padding-right:30px;}
.pl1 {padding-left:1px;}.pl2 {padding-left:2px;}.pl3 {padding-left:3px;}.pl5 {padding-left:5px;}.pl7 {padding-left:7px;}.pl8 {padding-left:8px;}.pl10 {padding-left:10px;}.pl15 {padding-left:15px;}.pl20 {padding-left:20px;}.pl25 {padding-left:25px;}.pl30 {padding-left:30px;}
.w10 {width:10px;} .w20 {width:20px;} .w30 {width:30px;} .w50 {width:50px;} .w75 {width:75px;} .w100 {width:100px;}.w120 {width:120px;}.w130 {width:130px;}.w140 {width:140px;} .w150 {width:150px;} .w160 {width:160px;} .w170 {width:170px;} .w175 {width:175px;} .w180 {width:180px;} .w190 {width:190px;} .w195 {width:195px;} .w200 {width:200px;} .w250 {width:250px;} .w260 {width:260px;} .w270 {width:270px;} .w280 {width:280px;} .w290 {width:290px;} .w300 {width:300px;} .w350 {width:350px;} .w400 {width:400px;} .w420 {width:420px;} .w430 {width:430px;} .w450 {width:450px;} .w500 {width:500px;} .w550 {width:550px;} .w600 {width:600px;} .w650 {width:650px;} .w700 {width:700px;} .w750 {width:750px;} .w800 {width:800px;} .w850 {width:850px;} .w900 {width:900px;} .w950 {width:950px;} .w1000 {width:1000px;}   
.w100p {width: 100%;}
.h100 {height: 100px;} .h150 {height: 150px;} .h200 {height: 200px;} .h250 {height: 250px;}  .h300 {height: 300px;} .h400 {height: 400px;} .h500 {height: 500px;} .h600 {height: 600px;} .h700 {height: 700px;}
.bgfff {background: #fff;} .bgeee {background: #eee;} .bgddd {background: #ddd;}
.coloreee {color: #eee;} .colorddd {color: #ddd;} .color555 {color: #555;} .color777 {color: #777;} .coloraaa {color: #aaa;}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-toggle {
	color: #777;
}
.link-toggle-on {
	color: #333;
	font-weight: bold;
}

.norm {font-weight:500;}
.semibold {font-weight:600;}
.bold {font-weight:700;}
.italic {font-style: italic;}
.medium {font-weight:500;}
.em {font-style:italic;}
.fs10 {font-size:10px;}.fs11 {font-size:11px;}.fs12 {font-size:12px;}.fs13 {font-size:13px;}.fs14 {font-size:14px;}.fs15 {font-size:15px;}.fs16 {font-size:16px;}.fs17 {font-size:17px;}.fs18 {font-size:18px;}.fs20 {font-size:20px;}.fs22 {font-size:22px;}.fs24 {font-size:24px;}.fs25 {font-size:25px;}.fs30 {font-size:30px;}.fs35 {font-size:35px;}.fs40 {font-size:40px;}.fs45 {font-size:45px;}.fs50 {font-size:50px;}.fs60 {font-size:60px;}.fs70 {font-size:70px;}.fs80 {font-size:80px;}.fs90 {font-size:90px;}.fs100 {font-size:100px;}
.underline {text-decoration: underline;}
.tacenter {text-align:center;}
.taright {text-align:right;}
.taleft {text-align:left;}
.i20 i {font-size:20px;}
.mauto {margin-left: auto; margin-right: auto;}
.valignm {
    display: inline-block;
    line-height: normal;
	vertical-align: middle;
}
.vamiddle {
	vertical-align: middle;
}
.vamiddle30 {
	vertical-align: middle;
	line-height: 30px; 
}
.vamiddle45 {
	vertical-align: middle;
	line-height: 45px; 
}
.vamiddle40 {
	vertical-align: middle;
	line-height: 40px; 
}
.vamiddle50 {
	vertical-align: middle;
	line-height: 50px; 
}
.vamiddle60 {
	vertical-align: middle;
	line-height: 60px; 
}
.vamiddle60 {
	vertical-align: middle;
	line-height: 100px; 
}
.lhnormal {
	line-height: normal;
}
.lh30 { line-height: 30px; } .lh35 { line-height: 35px; } .lh40 { line-height: 40px; } .lh45 { line-height: 45px; } .lh50 { line-height: 50px; }
.prelative {
	position: relative;
}
.prel {
	position: relative;
}
.pabsolute_right {
	position: absolute;
	top: 0;
	right: 0;
}
.pabsolute_left {
	position: absolute;
	top: 0;
	left: 0;
}
.dby { background: yellow; } .dbg { background: green; } .dbb { background: blue; } .dbr { background: red; }

/* media queries */

@media only screen and (max-width: 1300px) {
	.homepage__rightcol {
		max-width: 100%;
		margin-right: 0;
		float: none;
	}
	.homepage__leftcol {
		max-width: 100%;
		float: none;
	}
	.guideCardTop img {
		width: 100%;
	}
	.guideCardHomepage--left {
		max-width: 600px;
	}
	.guideCardHomepage--description {
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 1270px) {
/* widepage--container */

	.d--dt {
		display:block;		
	}
	.d--d {
		display:none;		
	}
	.d--m {
		display: none;
	}
	.d--tm {
		display: block;
	}
	.content {
		width: 100%;
	}
	.article--sidebar__right {
		display: none;	
	}
	.top--joinbuttons {
		display:none;
	}
}

@media only screen and (max-width: 1200px) {
/* tablet */
	.promo2__middle {
		max-width: 100%;
	}
	.promo2__middle--left {
		max-width: 100%;
	}
	.widepage--container {
	    max-width: 1200px;
	}
	.container__sidebarleft--200 {
		float: none;
	}
	.container__sidebar--200 {
		float: none;
	}
	.container__main--300 {
		max-width: 100%;
	}
	.container__sidebar--300 {
		max-width: 100%;
		margin-left: 0px;
	}
	.container__main--200 {
		float: none;
		max-width: 1160px;
	}

	.d--dt {
		display:block;		
	}
	.d--d {
		display:none;		
	}
	.d--m {
		display: none;
	}
	.d--tm {
		display: block;
	}
	.content {
		width: 100%;
	}
	.article--sidebar__right {
		display: none;	
	}
	.top--joinbuttons {
		display:none;
	}
}
@media only screen and (max-width: 1000px) { 
/* tablet */

	.promo2__middle--right {
		display: none;
	}

	.top--askbutton {
		display: none;
	}
	.promoh {
		max-width: 360px;
	}
	.toppromos__box {
		width: 230px;
		margin-right: 20px;
	}
	.hide--1000 {
		display: none;
	}
}
@media only screen and (max-width: 900px) { 


	.guideCardHomepage--left {
		float: none;
		max-width: 100%;
		margin: 0 0 10px 0;
	}
	.guideCardHomepage--right {
		float: none;
		max-width: 100%;
	}
	
	.guideCardHomepage img {
		max-width: 100%;
	}
}
@media only screen and (max-width: 800px) { 
/* mobile */

	.topcomparison__text {
		margin: 20px 0 0 0;
	}
	.top--searchbar-new {
	    width: 200px; 	
	}
	.top--menu--searchbar--close {
		left: 215px;
	}
	.top--menuitem {
		display: none;
	}
	.top--hamburger--button {
		display: inline-block;
	}
	.content__wide {
		padding: 0;
	}

	.widepage--container {
	    max-width: 100%;
		padding: 0px 10px;
	}
	.container__main--200 {
		max-width: 780px;
	}
	.toppromos__box {
		width: 600px;
		float: none;
		margin: 0 0 15px 0;
	}

	.compare--ratingmodule--mobile {
		display: block;
	}
	.compare--ratingmodule {
		display: none; 
	}
	.compare--textmodule {
	    margin-left: 0;	
	}

	.mobile--hide {
		display:none;
	}
	.d--dt {
		display:none;		
	}
	.d--d {
		display:none;		
	}
	.d--m {
		display: block;
	}
	.d--tm {
		display: block;
	}
	.body {
		font-size: 14px;
	}
	.text {
		line-height: 20px;
	}
	.main {
		margin-left: 0;
	}
	.main--widesidebar {
		margin-left: 0;
	}
	.content {
		padding: 10px;
	}
	h1 {
		font-size: 22px;
	}
	h2 {
		font-size: 20px;
	}
	.page--content h1 {
		font-size: 22px;
	}
	.page--content h2 {
		font-size: 20px;
	}
	.page--mainimage {
		height: 300px;
	}
	.page--mainimage h1 {
		font-size: 30px;
	}
	.page--mainimage h2 {
		font-size: 20px;
	}
	.page--mainimage h3 {
		font-size: 17px;
	}
	.menu {
		margin-left: -170px;
	}
	.menu--category {
		margin-left: -250px;
	}
	.menu--wide {
		margin-left: -250px;
	}
	.top--right__ask {
		display: none;
	}
	.top--menubutton {
	    margin: 13px 10px 0 20px;
	}
	.logo {
		margin: 15px 10px 0 0px;
		width: 100px;
		height: 33px;
	}
	.module {
		padding: 20px;
		margin-bottom: 10px;
	}
	.module--main {
		margin: -10px -10px 10px -10px;
	}
	.module--mobile__merchant {
		background-color: white;
		padding: 20px;
		border-radius: 4px;
		word-wrap: break-word;		
		margin: -15px -15px 10px -15px;
	}
	.module--mobile__merchantlogo {
		position: absolute;
		left: 20px;
		top: 20px;
		margin: 0;
		padding: 0;
		width: 100px;
		display: block;
	}
	.module--mobile__merchantname {
		margin-left: 120px;
		font-size: 20px;
	}
	.module--mobile__merchantlogoimg {
		display: block;
		width: 100px;
	}
	.module--mobile__merchantpromoinfo {
		font-size: 12px;
		margin-left: 120px;
	}
	.module--mobile__merchantpromoinfotext {
		display: block;
		margin-bottom:5px;
	}
	.module--mobile__category {
		background-color: white;
		padding: 20px;
		border-radius: 4px;
		word-wrap: break-word;		
		margin: -15px -15px 10px -15px;
	}
	.module--mobile__categoryname {
		font-size: 20px;
	}
    .modal {
		margin-left: 0px;
        left: 0px;
    }
	.modal__nosidebar {
	    padding: 30px 10px 10px 10px;
	}
    .modal--closebutton {
        right: 20px;
    }
	.promo--amountoff {
		font-size: 12px;
	}
	.promo--pick {
		font-size: 12px;
	}
	.promo--verified {
		font-size: 12px;
	}
	.promo--title {
		font-size: 17px;
	}
	.promo--btn {
		margin: -25px 0 5px 0;
		float: left;
		font-size: 17px;
	}
	.promo--merchantlogo {
		width: 80px;
	}
	.promo--metainfo {
		font-size: 12px;
	}
	.promo--codebox {
		padding: 20px;
		font-size: 30px;
		width: 300px;
	}
	.promo--left {
		margin: 0 0 20px 0;
		max-width: 100%;
	}
	.btn {
		font-size: 17px;
		padding: 12px 20px;	
	}
	.content--breadcrumb {
		display: none;
	}
	.homepage--herotext {
		font-size: 20px;
	}
	.homepage--herosubtext {
		display: none;
	}
	.homepage--leftcol {
	    width: 100%;
	}
	.article--sidebar__left {
		display: none;	
	}
	.twocol--right {
	    width: 100%;
	}
	.votearrow--wrapper {
		left: 20px; 
		top: 20px;
	}
	.votearrow--container {
		width:40px;
/*
		position:relative;
		height:30px;
		display:block;
		margin-bottom: 5px;
*/
	}
	.votearrow {
		width:40px;
	}
	.votearrow_selected {
		width:40px;
	}
	.answer--body {
		margin-left: 55px;
	}
    .feeditem--userbyline {
        width: 100%;    
    }
	.top--askbutton {
		display: none;
	}
	.top--achievements {
		display: none;
	}
	.top--reputation {
		display: none;
	}
	.article--maincolumn {
		margin-right: 0;
	}
	.article--inner {
		margin: 0 auto;
		padding: 30px 20px 30px 20px;
	}
	.article--toptitle {
		font-size: 35px;
	}
	.article--description {
		font-size: 20px;
		line-height: 30px;
		margin: 30px auto 40px auto;
	}
	.article--content {
		line-height: 27px;
		font-size: 17px;
	}	
	.article--sidebar__left {
		display: none;	
	}
	.usecode--container {
		width: 300px;
		margin: 30px auto;
	}
	.usecode--code {
		padding: 20px;
		font-size: 25px;
		width: 240px;
	}
	.mobile--clear {
		clear: both;
	}
	.mobile--dblock {
		display: block;
	}
}
@media only screen and (max-width: 700px) { 
	.promo2__left {
		height: 110px;
	}
	.promo2__middle {
		height: 110px;
	}
	.promo2__title {
		height: 75px;
	}
}
@media only screen and (max-width: 600px) { 
/* small mobile */
	.promo2__left {
		height: 130px;
	}
	.promo2__middle {
		height: 130px;
	}
	.promo2__title {
		height: 85px;
	}
	.top--navlink {
		display: none;
	}
	.top--searchbar-new {
	    width: 100px; 	
	}
	.top--menu--searchbar--close {
		left: 165px;
	}
}
@media only screen and (max-width: 400px) { 
/* small small mobile */
	.top--searchbar {
		width: 80px;
	}
}
