.home-page{
  padding-bottom: 121px;
}

.home-banner {
    height: 326px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    -webkit-align-content: stretch;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
}

.home-banner h1 {
    font-size: 60px;
    font-weight: 400;
}

.home_news {
	background: #3d07e5;
	background: -moz-linear-gradient(left, #3d07e5 0%, #4b1073 100%);
	background: -webkit-linear-gradient(left, #3d07e5 0%,#4b1073 100%);
	background: linear-gradient(to right, #3d07e5 0%,#4b1073 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3d07e5', endColorstr='#4b1073',GradientType=1 );
    margin-bottom: 49px;
}

.home_news .inner {
    color: #fff;
}

.home_news a {
    display: inline-block;
    padding: 16px 0;
    width: 32%;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
}

.home_news a:hover {
    text-decoration: underline;
}
@media (max-width: 400px){
	.home_news a{
		display: block;
		width: 100%;
	}
}


/* pairs-cards start
-------------------------------------------------- */

.pairs-cards {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.pairs-cards .pair-stats{
	min-width: auto;
	width: 19%;
}
@media (max-width: 1000px){
	.pairs-cards{
		flex-wrap: wrap;
	}
	.pairs-cards .pair-stats{
		width: 32.5%;
		margin-bottom: 10px;
	}
	.pairs-cards .pair-stats:last-child{
		margin-right: auto;
		margin-left: 1.25%;
	}
}
@media (max-width: 600px){
	.pairs-cards .pair-stats{
		width: 49%;
	}
	.pairs-cards .pair-stats:last-child{
		margin-left: 0;
	}
}
@media (max-width: 400px){
	.pairs-cards .pair-stats{
		width: 100%;
	}
}


/* pairs-cards stop
-------------------------------------------------- */

/* tabs start
-------------------------------------------------- */

.tabs div {
    background-color: #0A3040;
    line-height: 40px;
    font-size: 16px;
    color: #6b828b;
}

.tabs div:first-child {
    /*border-left: 1px solid #707070;*/
}

.tabs div:hover,
.tabs div.active {
  background-color: #051E2A;
  color: #fff;
}

.tabs div.active {
    cursor: default;
}

.tabs div span,
.tabs div img{
  display: inline-block;
  vertical-align: middle;
}
.tabs div img{
  filter: grayscale(1);
  opacity: 0.5;
  margin-right: 3px;
}
.tabs div:hover img,
.tabs div.active img{
  filter: none;
  opacity: 1;
}

.tbl .fav,
.tbl .non-fav{
  padding-left: 15px;
  text-align: left;
}
.fav:before,
.non-fav:before{
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.fav:before{
    content: url(../img/fav.svg);
}
.non-fav:before{
    content: url(../img/non-fav.svg);
}

.tabs input.search{
	width: 180px;
	max-width: 23%;
	border: 2px solid #00ecc0;
	margin-left: auto;
	margin-right: 5px;
	background: url(../img/search.svg) no-repeat 12px 9px;
	color: #00ecc0;
}
.tabs input.search::placeholder{
  color: #00ecc0;
  opacity: 0.4;
  text-transform: uppercase;
}
@media (max-width: 600px){
	.tabs{
		position: relative;
		padding-top: 40px;
	}
	.tabs input.search{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		width: 50%;
		height: 35px;
		margin: 0 auto;
		max-width: none;
	}
}
@media (max-width: 600px){
	.tabs input.search{
		width: 90%;
	}
}

/* tabs stop
-------------------------------------------------- */


/* table tab start
-------------------------------------------------- */

.tab.active{
  display: table;
}
.tbl-overflow{
	margin-bottom: 92px;
}


/* table tab stop
-------------------------------------------------- */

.mobapp-promo{
	width: 100%;
	direction: rtl;
	text-align: center;
}
.mobapp-promo img{
	content: '';
	display: inline-block;
	vertical-align: bottom;
	width: 75%;
	margin-right: 3%;
}

.mobapp-promo a.btn {
	display: inline-block;
	vertical-align: middle;
	width: 20%;
	height: 48px;
	margin-bottom: 60px;
	padding: 0;
	border: 3px solid #FF6B6B;
	border-radius: 24px;
	line-height: 42px;
	text-align: center;
	text-transform: uppercase;
	color: #FF6B6B;
}

.mobapp-promo a.btn:hover {
	opacity: .7;
}
@media (max-width: 900px){
	.mobapp-promo img{
		display: block;
		width: 100%;
		margin: 0;
	}
	.mobapp-promo a.btn{
		width: 250px;
		margin-bottom: 20px;
	}
}