html,body{
	position: relative;
	height: 100%;
}
body {
font-family: 'Source Sans Pro', sans-serif;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
	-webkit-text-size-adjust:none;
	font-size: 16px;
	line-height: 1.5em;
	display: flex;
	flex-direction: column;
	cursor: default;
}

a {
  color: #dd3721;
  text-decoration: none;
  background-color: transparent;
}
a:hover{
	color: #0022ba;
}

img{
	max-width: 100%;
	height: auto;
}


h6, h5, h4, h3, h2, h1 {
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 700;
	line-height: 1.15;
	color: #122854;
}

h1 {
	font-size: 1.9rem;
	position: relative;
}
h2{
	position: relative;
	font-size: 1.7em;
}
h3{
	font-size: 1.5em;
}
@media (max-width: 575px) {
	h1 {
		font-size: 1.6rem;
	}
	h2{
		font-size: 1.3rem;
	}
	h3{
		font-size: 1.2rem;
	}
}
h2:before{
	content:"";
	display:inline-block;
	width:25px;
	height:24px;
	margin-right: 10px;
	background: url(../images/star.png) no-repeat 0 0;
	background-size: contain;
}
h1:after,h2:after{
	content: "";
	position: absolute;
	bottom: -2px;
	display: block;
	width: 100px;
	height: 2px;
	background: #bbf;
	box-shadow: 300px 0 0px rgba(0,0,60,0.06), 100px 0 0px rgba(0,0,60,0.1), 50px 0 0px rgba(0,0,60,0.2);
}


.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}


.main{
	flex:1 0 0;
}
.navbar{
	flex:0 0 60px;
	box-shadow: 0 1px 0 #9b4c19, 0 0.5rem 1rem rgba(155, 76, 25, 0.21);
}
@media (max-width: 960px) {
	.navbar{
	flex: 0 0 50px;
	}
}




.relative{
	position: relative;
}

.flex-center{
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
}

.bold {
	font-weight: 700;
}
.font-s{
	font-size: 13px;
}
.font-bonus{
	font-size: 30px;
	font-weight: 700;
	color: #28a642 !important;
	letter-spacing: -0.92px;
	text-shadow: 0 15px 1px #eee;
}
.text-success {
  
}

.icon-flip{
	transform: scaleX(-1);
}



.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
table {
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    font-size: 0.97em;
    box-shadow: 2.5px 4.3px 5px rgb(0 0 0 / 7%), inset 0 0 0 2px #fff;
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.75em;
    table-layout: fixed;
    background: rgba(0,0,30,0.02);
    overflow: scroll;
}
table, th, td {
    border: 1px solid #dbdbdb;
}
table tr:nth-child(2n+1) {
    background: #fafafb;
}
td, th {
    border-width: 0 1px 1px 0;
    padding: 5px 7px;
}
td p:last-child {
    margin-bottom: 0;
}
td:first-child {
    background: #f0f0f5;
    box-shadow: 0 1px 1px rgb(0 0 0 / 5%) inset;
}

.content ul, .content ol{
	background: rgba(20,20,0,0.02);
	padding-top: 10px;
	padding-bottom: 10px;
}
.content li{
	margin-bottom: 5px;
}
.content li:last-child{
	margin-bottom: 0;
}

blockquote {
  background: #fafbf9;
  border-left: 3px solid #ddb;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
  font-size: 1.08em;
  line-height: 1.3em;
}
blockquote:before {
  color: #cdc;
  content: open-quote;
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}


.header_logo{
    border-right: 1px solid #ba67;
    flex:0 0 200px;
}


.sticky-top{
	position: sticky;
	top:0;
	background: #fdfdfa;
	z-index: 2;
}

.navbar-nav{
	height: 60px;
	display: flex;
	align-items: stretch;
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.menu_item{
	position: relative;
}
.menu_link{
	height: 60px;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 5px 2px;
	text-decoration: none;
	font-size: 19px;
	font-weight: bold;
	letter-spacing: -0.6px;
	color:#766620;
}
.menu_item_dropdown{
	transform: translateY(4px);
	transition: all .2s ease-out;
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: -15px;
	background-color: #fff;
	border: 1px solid #e4dfda;
	border-radius: 4px;
	box-shadow: 0 9px 12px 0 rgba(77,72,64,.16);
	min-width: calc(100% + 1px);
	padding: 9px 0;
	width: auto;
}
.menu_item.open .menu_item_dropdown, .menu_item:hover .menu_item_dropdown{
	opacity: 1;
	transform: none;
	visibility: visible;
}
.menu_item_dropdown .menu_link {
  padding: 5px 20px 5px 15px;
  white-space: nowrap;
  font-size: 16px;
  height: auto;
}






.svg{
	fill:currentColor;
}

.navbar-toggler{
	display: none;
	border:2px solid #766215;
	height: 40px;
	width: 40px;
	border-radius: 4px;
	flex:0 0 40px;
	padding: 5px;
	background: #fbfbe0;
}
.navbar-toggler .svg{
	width: 24px;
	height: 24px;
}
.navbar-collapse.open{
	display: block;
	z-index: 3;
	overflow: auto;
	
}
@media (max-width: 960px) {
	.navbar-collapse{
		display: none;
		position: fixed;
		top:50px;
		left: 0;
		background: #fff;
		width: 100%;
		height: 518px;
		height: calc( 100% - 50px );
		height: auto;
		box-shadow: 0 40px 40px rgba(0,0,0,0.3);
		border-left: 5px solid #553;
		border-right: 5px solid #553;
	}
	.navbar-nav{
		flex-direction:column;
		height: auto;
	}
	.navbar-toggler{
		display: block;
		text-align:center;
	}
	.menu_link{
		padding: 5px 15px;
		border-top: 1px solid #f0f0f0;
		height: 50px;
	}
	.menu_item_dropdown{
		position: static;
		box-shadow: none;
		
		opacity: 1;
		visibility: visible;
		border: none;
		border-left: 10px solid #eee;
		padding: 0;
		width: auto;
		min-width: 0;
		transform: none;
	}
	.menu_item_dropdown .menu_link{
		padding: 3px 10px;
		min-height: 40px;
	}
}

.breadcrumb {
	list-style: none;
	white-space: nowrap;
	color: #446;
}
.breadcrumb_item{
	margin-right: 10px;
	
}
.breadcrumb_item:after{
	content: "/";
	display: inline-block;
	padding: 0 4px;
	color: #888;
}
.breadcrumb_item:last-child:after{
	content: "";	
}
.breadcrumb_name{
	display: inline-block;
	padding: 7px 0;
}







.rating{
	background: url(images/star-dark.svg) repeat-x 0;
	background-size: auto;
	background-size: auto 100%;
	display: inline-block;
	height: 17px;
	margin-right: 5px;
	position: relative;
	vertical-align: middle;
	width: 85px;
	filter: drop-shadow(2px 4px 3px rgba(0,0,0,0.12));
	margin-bottom: 2px;
}
.rating .rating-value {
  background: url(images/star-y.svg) repeat-x 0;
    background-size: auto;
  background-size: inherit;
  display: block;
  height: 100%;
}


.toplist_head{
	box-shadow: 0 0 10px rgba(0,0,0,0.2) inset, 0 5px 1px rgba(0,0,0,0.2), 0 10px 1px rgba(0,0,0,0.1);
}


.section_toplist{
	background: #e65 url(../images/bg-blue.jpg) repeat center top;
	background-size: cover;
	padding: 14px 0;
	box-shadow: 0 0 15px rgba(10,0,0,0.12) inset;
}
@media (max-width: 480px) {
	.section_toplist{
		padding: 5px 0;
		background-image: url(../images/bg-blue-small.jpg);
	}
}


.toplist_item{
	align-items: stretch;
	margin-bottom: 14px;
}
@media (max-width: 480px) {
	.toplist_item{
		display: block;
	}
}

.toplist_pos{
	position: absolute;
	background: #fafafa;
	color: #251;
	padding: 3px 6px;
	white-space: nowrap;
	border-radius: 3px;
	top:0px;
	left: -8px;
	font-size: 14px;
	text-align: center;
	font-weight: bold;
	box-shadow: 0 1px 3px #000;
	opacity: 0.97;
	
}

.toplist_logo{
	padding: 15px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2) inset, 0 5px 1px rgba(0,0,0,0.2), 0 10px 1px rgba(0,0,0,0.1);
	border-radius: 6px 0 0 6px;
	flex:0 0 245px;
	position: relative;
}
.toplist_logo_img{
	width: 180px;
	height: auto;
	max-width: 100%;
	transition:all 0.21s;
	background: rgba(0,0,0,0.5);
    border-radius: 4px;
    box-shadow: 0 0 5px;
}
.toplist_item:hover .toplist_logo_img{
	transform:scale(1.06);
}
@media (max-width: 575px) {
	.toplist_logo{
		flex:0 0 180px;
		padding: 5px;
	}
}
@media (max-width: 480px) {
	.toplist_logo{
		flex:0;
	}
	.toplist_logo_img{
		width: auto;
		height: 80px;
	}
}



.logo_bg_club{
	background: rgba(35,15,15,0.8);
	background-image: url(../images/bg-blue.jpg);
    background-size: 250px auto;
    background-position: center 0;
}

.toplist_details{
	background: #fff;
	border-radius: 6px 6px 6px 0;
	flex: 1 0 0;
	box-shadow: 0 0 3px rgba(0,0,0,0.1) inset, 0 5px 1px rgba(0,0,0,0.2), 0 10px 1px rgba(0,0,0,0.1);
}
@media (max-width: 575px) {
	display: block;
	flex:1 0 auto;	
}

.toplist_name{
	font-size: 23px;
	font-weight: 700;
	color: #333;
	white-space: nowrap;
	flex:0 0 25%;
}
@media (max-width: 575px) {
	.toplist_name{
		margin-bottom: 5px;	
	}
}
.toplist_info{
	font-size: 13px;
}
@media (max-width: 575px) {
	.toplist_info{
		flex:1 0 100%;
		margin-top: 10px;
	}
}

.toplist_rating{
	white-space: nowrap;
	font-size: 13px;
	color:#445;
}

.toplist_main{
	flex:1 0 0;
}
@media (max-width: 575px) {
	margin: 0;	
}

.toplist_bonuses{
	flex:0 0 200px;
	align-content: center;
	border-left: 1px dashed #ccc;
}
@media (max-width: 768px) {
	.toplist_bonuses{
		flex:1 0 100%;
		border:none;
		border-top: 1px dashed #ccc;
		padding-top: 5px;
	}	
}
@media (max-width: 575px) {
	.font-bonus{
		font-size: 24px;
	}	
}
@media (max-width: 480px) {
	.toplist_bonuses br{
		display: none;
	}
}

.border-b-d{
	border-bottom: 1px dashed #ccc;
}


.toplist_effect{
	position: absolute;
	pointer-events: none;
	top:-20px;
	right: -10px;
	width: 170px;
	height: 122px;
	background: url(images/effect1.png) no-repeat center center;
	background-size: contain;
	transition: all 0.3s;
	filter:grayscale(0.5);
	padding: 0;
}
@media (max-width: 1024px) {
	width: 90px;
	height: 70px;
	top:-15px;
	right: -15px;
}
.toplist_effect2{
	background-image: url(images/effect2.png);
}

.toplist_item:hover .toplist_effect{
	right: -8px;
	top:-11px;
	filter:grayscale(0);
}


.button {
  background-color: #2f3651;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  padding: 7px 15px;
  text-align: center;
  text-transform: uppercase;
  transition: all .15s;
  transition: all .25;
  white-space: nowrap;
  text-decoration: none;
}
.button:hover{
	color: #fff;
}
.button-orange {
  background-image: linear-gradient(90deg,#e4a91b 12%,#f88021 79%);
  color: #fff !important;
}
.button-orange:hover {
  background-image: linear-gradient(90deg,#f88a21,#f84a23);
}
.button_text2{
	font-size: 0.92em;
	font-weight: 400;
}

.button-blue {
  background-image: linear-gradient(270deg,#3a6aee,#378ffb);
  color: #fff !important;
  padding: 7px 19px;
}
.button-green {
  background-image: linear-gradient(-10deg,#a4381c,#d4782c);
  color: #fff !important;
  padding: 7px 19px;
}



.button-blue:hover {
  background-image: linear-gradient(270deg,#622eef,#7d4efc);
}


.answer {
    font-size: 1.15em;
    padding: 15px;
    background: #faf7f4;
    border-top: 2px solid #f7f2f1;
    border-radius: 0 0 4px 4px;
}




.footer{
	background: rgba(25,25,10,0.98);
	box-shadow: 0 -5px 0 rgba(25,35,5,0.5);
    color: #d2d2d2;
    font-size: 0.899em;
}
.footer a{
	color:#fff;
	display: inline-block;
	padding: 4px;
}
.footer a:hover{
	color: #fff;
	text-decoration: underline;
}

.plus18 {
  background-color: #f22;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
}