html,body{
	position: relative;
	min-height: 100% !important;
	height: 100%;
}
body {
	font-family: 'Roboto', sans-serif;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
	-webkit-text-size-adjust:none;

	height: auto;

	line-height: 1.38;
	
	background: #fefefe;
	background-size: cover;
	background-attachment: fixed;
}

a {
  color: #0072fd;
  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: 600;
	line-height: 1.1;
}

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.4rem;
	}
	h2{
		font-size: 1.24rem;
	}
	h3{
		font-size: 1.2rem;
	}
}

h1:after,h2:after{
	content: "";
	position: absolute;
	bottom: -2px;
	left: -4px;
	display: block;
	width: 30px;
	height: 2px;
	background: #bbb;
	box-shadow: 90px 0 0px rgba(0,0,0,0.06), 60px 0 0px rgba(0,0,0,0.1), 30px 0 0px rgba(0,0,0,0.2);
}


.container {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 575px) {
	.container {
		padding-right: 10px;
		padding-left: 10px;
	}
}	
.main{
	flex-grow: 1;
}


.maincontainer{
	background: #fff;
}




.relative{
	position: relative;
}

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

.bold {
	font-weight: 600;
}
.font-s{
	font-size: 13px;
}
.font-bonus{
	font-size: 24px;
	font-weight: 600;
	color: #0f1282 !important;
	letter-spacing: -1px;
	line-height: 1.1;
}
.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 #d7d7df;
    border-radius: 2px;
    font-size: 0.95em;
    box-shadow: 2.4px 4.3px 5px rgb(0 0 0 / 6%), inset 0 0 0 2px #fff;
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.722em;
    table-layout: fixed;
    background: rgba(0,36,0,0.025);
    overflow: scroll;
}
table, th, td {
    border: 1px solid #dbdbdf;
}
table tr:nth-child(2n+1) {
    background: #fafafb;
}
td, th {
    border-width: 0 1px 1px 0;
    padding: 5px 6px;
}
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;
}



.header_logo img{
	text-indent: -9999px;
	border-radius: 50%;
	margin-bottom: -12px;
}



@media (max-width: 960px) {
	.header_logo{
		height: 50px;
		
	}
	.header_logo img{
		height: 54px;
		margin-bottom: -8px;
		width: auto;
	}
}

@media (max-width: 640px) {
	.header_logo{
		height: 50px;
	}
	.header_logo img{
		height: 60px;
	}
}



.sticky-top{
	position: sticky;
	top:0;
	background: #120e0f;
	z-index: 2;
	box-shadow: 0 1px 3px rgba(29,25,20,0.1);
}

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

.menu_item{
	position: relative;
	border-bottom: 2px solid rgba(20,20,70,0.4);
}
.menu_link{
	height: 50px;
	display: flex;
	align-items: center;
	padding: 5px 10px;
	text-decoration: none;
	font-size: 17px;
	font-weight: bold;
/* 	text-transform: uppercase; */
    color: #fff;
    letter-spacing: -0.4px;
    flex-direction: column;
}

.menu_link img{
	max-width: auto;
}
.menu_link:hover{
	color:#eef;	
}
@media (max-width: 960px) {
	.menu_link{
		display:inline-block;
	}
}
@media (max-width: 640px) {
	.menu_link{
		color: #3c0a48;
	}
}

.menu_item>.menu_link{
	box-shadow: 0 1px 0 1px rgba(255,255,100,0.4);
	text-shadow: 0 1px 0px rgba(0,0,0,0.5);
	border-radius: 5px;
	background: rgba(255,255,255,0.1);
}
.menu_item_dropdown{
	transform: translateY(4px);
	display: none;
	position: absolute;
	top: 100%;
	left: 0px;
	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{
	display: block;
}
.menu_item_dropdown .menu_link {
  padding: 5px 20px 5px 15px;
  white-space: nowrap;
  font-size: 15px;
  height: 40px;
  color: #3c0a48;
  border-bottom: 1px solid #f2f2f2;
}
.menu_item_dropdown .menu_link:hover{
	color: #3c0a48;	
}
.menu_item_dropdown .menu_link:last-child{
	border-bottom: none;	
}




.svg{
	fill:currentColor;
}

.navbar-toggler{
	display: none;
	border:2px solid #ddd;
	height: 40px;
	width: 50px;
	flex:0 0 50px;
	border-radius: 2px;
	background: #fff;
	padding: 5px;
	box-shadow: 0 -15px 5px rgba(20,20,0,0.06) inset;
}
.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:60px;
		left: 0;
		background: #fff;
		width: 100%;
		height: 518px;
		height: calc( 100% - 50px );
		box-shadow: 0 2px 2px rgba(0,0,0,0.1);
	}
	.navbar-nav{
		flex-direction:column;
		height: auto;
	}
	.navbar-toggler{
		display: block;
	    text-align:center;
	}
	.menu_link{
		padding: 5px 15px;
		border-top: 1px solid #f0f0f0;
		font-size: 14px;
		text-align: left;
		
	}
	.menu_item > .menu_link{
		max-width: none;
		text-align: left;
	}
	.menu_item_dropdown{
		position: static;
		box-shadow: none;
		
		opacity: 1;
		visibility: visible;
		display: block;
		border: none;
		border-left: 12px solid #eee;
		padding: 0;
		width: auto;
		min-width: 0;
		transform: none;
		background: #fafafa;
	}
	.menu_item_dropdown .menu_link{
		padding: 2px 10px;
		font-size: 13px;
	}
}

.breadcrumb_bg{
	background: #fff;
}
@media (max-width: 575px) {
	.breadcrumb_bg{
		order:4;	
	}
}
.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: 18px;
	margin-right: 5px;
	position: relative;
	vertical-align: middle;
	width: 90px;
	filter: drop-shadow(2px 5px 3px rgba(0,0,0,0.27));
	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);
	
}
@media (max-width: 640px) {
	.toplist_head{
		white-space: normal !important;
	}
}
.toplist_title_image{
	width: auto;
	height: 35px;
	background: #fafafa;
	border-radius: 4px;
}

.section_toplist{
	background: url(img/back.jpg) no-repeat center center;
	background-size: cover;
	padding: 0 0 6px;
	box-shadow: 0 0 10px rgba(0,0,10,0.09) inset;
}
.section_toplist .maincontainer{
	border-radius: 3px;
	background: rgba(255,255,255,0.0933);
}
@media (max-width: 640px) {
	.section_toplist{
		
	}
}
@media (max-width: 480px) {
	.section_toplist{
		padding: 0;
	}
}


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

.toplist_pos{
	position: absolute;
	background: #fafafa;
	color: #115;
	padding: 3px 5px;
	white-space: nowrap;
	border-radius: 3px;
	top:-10px;
	left: 5px;
	font-size: 13px;
	text-align: center;
	font-weight: bold;
	box-shadow: 0 1px 3px #000;
	
}
.toplist_pos img{
	margin: -2px -1px 1px;
	width: 18px;
	height: 18px;
}
.toplist_logo{
	padding: 4px;
	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;
	margin-top: 10px;
	flex:0 0 240px;
	position: relative;
}
.toplist_logo_img{
	width: 100%;
	height: auto;
	max-width: 100%;
	border-radius: 4px;
}
@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: 85px;
	}
}



.logo_bg_club{
	background: #220836;
}
@media (max-width: 640px) {
	.logo_bg_club{
		
	}
}


.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: 600;
	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: 21px;
	}
	.toplist_bonuses br{
		display: none;
	}
}
@media (max-width: 480px) {
	
}

.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) {
	.toplist_effect{
		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;
  white-space: nowrap;
  text-decoration: none;
  transition:background 0.23s;
}
.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,#f84a21);
}
.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-blue:hover {
  background-image: linear-gradient(270deg,#622eef,#7d4efc);
}

.button_reg{
	box-shadow: 0 2px 3px rgba(0,0,30,0.3);
	background-color: #ff3651;
}
.button_reg:hover{
	background-color: #ea3541;
}


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




.footer{
	background: #223;
    color: #ccc;
    font-size: 0.9em;
    order:5;
}
.footer a{
	color:#fff;
	display: inline-block;
	padding: 4px;
}
.footer a:hover{
	color: #fff;
	text-decoration: underline;
}

.plus18 {
  background-color: #e897b10;
  border-radius: 50%;
  color: #101010;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  height: 32px;
  line-height: 32px;
  text-align: center;
  width: 32px;
}

.line-clamp3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical; 
  overflow: hidden;
}

.article_item_inner {
	background: rgba(240,220,220,0.24);
	border-radius: 4px;
}
.article_image{
	flex: 0 0 33.333%;	
}
.article_image img{
	border-radius: 3px;	
}
.article_intro{
	
}