﻿@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	color: #222222;
	font-size: 14px;
	font-family: 'Heebo', sans-serif;
}
a{
	text-decoration:none;
	color: #000;
	
}
a:hover{
	color: var(--color);
}

.wrap {
    width: 88%;
    max-width: 1600px;
	margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

header {
    padding: 30px 0;
	border-bottom: 1px solid #ebebeb;
	background: #fff;
}
header.active {
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}
header .wrap {
	align-items: center;
}
header .wrap .logo {
	width: 20%;
    display: flex;
}

span.button-mb {
    cursor: pointer;
    border: 1px solid var(--color);
    width: 42px;
    text-align: center;
    line-height: 40px;
    font-size: 21px;
    border-radius: 5px;
    margin-right: 15px;
	display: none;
}

header .wrap .logo>a>img {
	height: 36px;
}
header .wrap nav {
	width: 60%
}
header .wrap .search {
	width: 20%
}
nav>ul{
	display: flex;
	justify-content: center;
    align-items: center;
    font-family: inherit;
    font-weight: 400;
    min-height: 48px;
	list-style: none;
}
nav>ul>li{
	
}
nav>ul>li>a{
    display: block;
    font-size: 18px;
    color: #282828;
    padding: 0 15px;
    transition: color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1),background-color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
    line-height: 40px;
    font-weight: 800;
    text-transform: uppercase;
}
nav>ul>li:hover>a {
	background:#f2f3f5;
	border-radius: 5px;
}
nav>ul>li>ul{
	display:none;
    position: absolute;
    background: #fff;
    box-shadow: 12px 12px 32px -6px rgb(37 47 63 / 18%);
    border: 1px solid #ececec;
    list-style: none;
    width: 560px;
    padding: 12px;
    border-radius: 8px;
	z-index:11
}
nav>ul>li:hover>ul{
	display: block;
}
nav>ul>li>ul:after{
	content:"";
	display: block;
	clear:both
}
nav>ul>li>ul>li {
    float: left;
    width: 33.33%;
}
nav>ul>li>ul>li>a {
    color: #333;
    font-weight: 400;
    padding: 3px 10px;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
nav>ul>li>ul>li>a:hover {
    background: var(--color);
    color: #fff;
	border-radius: 3px;
}
footer {
	background:#212934;
	color: #fff;
	margin-top: 30px;
}
footer .wrap {
	text-align: center;
	display: block;
	padding: 50px 0;
}
header .wrap .search>form {
    position: relative;
}

header .wrap .search>form>input {
    width: 100%;
    border-radius: 5px;
    border: 2px solid #000;
    font-size: 18px;
    padding: 0 10px;
    height: 45px;
    box-sizing: border-box;
}

header .wrap .search>form>button {
    border: 0;
    font-size: 20px;
    position: absolute;
    right: 3px;
    top: 3px;
    background: none;
    height: 38px;
    width: 38px;
    cursor: pointer;
}

.fs-grid {
    width: calc(100% - 320px);
    margin-right: 20px;
}
.fs-slide {
    width: 300px;
    transform: translate3d(0,0,0);
    box-shadow: 2px 2px 10px 2px rgb(0 0 0 / 15%);
    background-color: #fff;
    border-radius: 10px;
}
.head {
    background: #212934;
    padding: 30px;
    font-size: 30px;
    color: #fff;
	margin-bottom: 30px;
}
.head>.wrap {
    display: block;
    text-align: center;
}
.head>.wrap>.h1,
.head>.wrap>h1 {
    font-size: 40px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 900;
}

.head>.wrap>h2 {
    font-weight: 200;
    font-size: 22px;
}
.head>.wrap>.h1:after,
.head>.wrap>h1:after {
    height: 3px;
    content: "";
    width: 80px;
    background: var(--color);
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -40px;
}

.filter>form {
    display: flex;
    flex-wrap: wrap;
	margin-left: -10px;
}

.filter>form>select, .filter>form button {
    border: 2px solid #000;
    border-radius: 4px;
    margin-left: 10px;
    margin-bottom: 20px;
    height: 40px;
    padding: 0 8px;
}

.filter>form button {
    color: #fff;
    font-weight: 600;
    background: var(--color);
    border-color: var(--color);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.__box {
    padding: 15px;
}

.__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

ul.__genres {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

ul.__genres>li {
    width: 50%;
}

ul.__genres>li>a {
    color: #333;
    font-size: 16px;
}
.complete, .updating {
background-color: #ff4d4d;
    color: #fff;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 11px;
    letter-spacing: 0.5em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}
.complete {
    background-color: #3dc667;
}

.fs-items {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
}

.fs-post {
    width: calc(20% - 20px);
    margin-left: 20px;
	margin-bottom: 20px;
}
.fs-fullgrid .fs-post {
    width: calc(16.66% - 20px);
}
.fs-post .thumb {

}
.fs-post .thumb img {
	position: relative;
    min-height: 200px;
    transition: transform .3s cubic-bezier(.21,.6,.35,1),box-shadow .3s cubic-bezier(.21,.6,.35,1);
	width: 100%;
    transform: translate3d(0,0,0);
    box-shadow: 2px 2px 10px 2px rgb(0 0 0 / 15%);
    border-radius: 10px;
}
.fs-post .thumb:hover img {
    transform: scale(.8);
    box-shadow: 0 20px 25px rgb(0 0 0 / 25%);
}
.fs-post h3 {
    font-size: 1.2em;
    font-weight: 500;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fs-post .info {
    margin-top: 15px;
}
.fs-post .time {
    display: flex;
    color: #686868;
}
.alphabet-div>div,
ul.pagination {
    display: flex;
	    flex-wrap: wrap;
    list-style: none;
    margin-left: -15px;
    justify-content: center;
    margin-top: 30px;
}
.alphabet-div>div>a,
ul.pagination>li>a,ul.pagination>li>span {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 25px 5px rgb(0 0 0 / 20%);
    font-size: 22px;
    padding: 10px 15px;
    display: block;
}
.alphabet-div>div>a,
ul.pagination>li {
    margin-left: 15px;
}
.alphabet-div>div>a.active,
ul.pagination>li>span {
    background: var(--color);
    color: #fff;
}

.alphabet-div>div {
	margin-bottom: 30px;
}
.table {
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
}
.table-spread > thead > tr > th, .table-spread > tbody > tr > th, .table-spread > tfoot > tr > th, .table-spread > thead > tr > td, .table-spread > tbody > tr > td, .table-spread > tfoot > tr > td {
    padding: 8px 10px;
}
.table > thead > tr > th {
    border-bottom: 2px solid #dddddd;
    background: var(--color);
    color: #fff!important;
    font-weight: 600!important;
}

.table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #f7f7f7;
}
.btn-download a {
    border: 1px solid #dfdfdf;
    padding: 2px 10px;
	display: block;
    text-align: center;
    margin-right: 2px;
    margin-bottom: 2px;
    background-color: #fff;
    border-radius: 20px;
}
.btn-download a img.sicon {
    height: 14px;
    vertical-align: middle;
    margin-top: -1px;
}
ul.releases {
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
	font-size: 18px;
	text-align: center;
    width: 100%;
}
ul.releases li {
	padding: 5px 8px;
}
ul.releases>li a {
    border-bottom: 2px solid var(--color);
}
ul.releases li:after{
    content: "";
    width: 100%;
    display: block;
    clear: both;
}
ul.releases li:nth-child(odd) {
    background: #fff;
}
.text-bold {
	font-weight: 500
}
.image img {
    transition: transform .3s cubic-bezier(.21,.6,.35,1),box-shadow .3s cubic-bezier(.21,.6,.35,1);
    max-width: 400px;
    transform: translate3d(0,0,0);
    box-shadow: 2px 2px 10px 2px rgb(0 0 0 / 15%);
    border-radius: 10px;
	width:100%
}
.download-l-4>span { display: inline-block; width: 25%; } .download-l-3>span { display: inline-block; width: 33.33%; } .download-l-2>span { display: inline-block; width: 50%; } .download-l-1>span { display: inline-block; width: 100%; } .tab-content table .btn-download a { display: block; text-align:center; } @media screen and (max-width:710px) { table .btn-download>span { width: 50%!important; } } @media screen and (max-width:390px) { table .btn-download>span { width: 100%!important; } }
a.at-icon-wrapper.at-share-btn.at-svc-compact {
    display: none;
}
a.at-icon-wrapper.at-share-btn {
    border-radius: 30px !important;
}
.share {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.share .report {
	border-radius: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    background: #ab0007;
    padding: 0 15px;
    font-family: helvetica neue,helvetica,arial,sans-serif;
    margin-left: 2px;
	cursor: pointer;
    transition: all .2s ease-in-out;
}
.share .report:focus, .share .report:hover {
    transform: translateY(-4px);
    color: #fff;
    text-decoration: none;
}
.p404 {
    text-align: center;
    margin: 100px 0;
    font-size: 26px;
}
.p404 a {
    border-bottom: 2px solid var(--color);
}
.home-search {
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
}

div#hm-search {
    position: relative;
    margin-bottom: 30px;
}
button.search-submit {
	position: absolute;
    right: 0;
    height: 50px;
    top: 0;
    border: 0;
    background: var(--color);
    color: #fff;
    width: 60px;
    border-radius: 8px;
}
a.btn.btn-home {
    background-color: var(--color);
    color: #fff;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 600;
    padding: 0 25px;
    line-height: 50px;
    display: inline-block;
    margin-bottom: 30px;
}
input,button {outline: 0;}
input.form-control.search-input {
	font-size: 18px;
    height: 50px;
    outline: 0;
    box-shadow: none;
    width: 100%;
    border-radius: 8px;
    padding: 15px;
    border: 2px solid #ccc;
}
@media screen and (max-width: 720px) {
	.home-search {
		margin-left: 20px;
		margin-right: 20px;
	}	
}

@media screen and (max-width: 1000px) {
	span.button-mb {
		display:inline-block
	}
	header .wrap nav {
		display: none;
		position: absolute;
		top: 106px;
		z-index: 11;
		background: #fff;
		width: 100%;
		left: 0;
	}
	header .wrap nav.sopen {
		display: block
	}
	nav>ul>li>ul {
		left: 0;
		width: 100%;
	}
	header .wrap .logo {
		width: 250px;
	}
	header .wrap .search {
		width: calc(100% - 250px);
	}
	
	.fs-fullgrid .fs-post {
		width: calc(25% - 20px);
	}
	
}
.alphabet-div>div>a {
    margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
	.fs-fullgrid .fs-post {
		width: calc(33.333% - 20px);
	}
}

@media screen and (max-width: 500px) {
	.fs-fullgrid .fs-post {
		width: calc(50% - 20px);
	}
	nav>ul {
		display: block;
	}
	nav>ul>li>ul {
		position: relative;
		display: block;
		box-shadow: none;
		border: 0;
	}
	nav>ul>li>ul>li{width:50%}
	
	.head>.wrap>.h1, .head>.wrap>h1 {
		font-size: 22px;
	}
	.filter>form>select {
		width:calc(50% - 10px);
	}
	ul.pagination{margin-left: -10px;}
	ul.pagination>li {
		margin-left: 10px;
	}
	ul.pagination>li>a, ul.pagination>li>span {
		font-size: 16px;
		padding: 5px 10px;
		display: block;
	}
}