/* 
@ Название: torrent-games.fun;
@ Автор: webkubikc;
@ Связь с автором: (E-MAIL: webkubikc@gmail.com, Telegram: @webkubdev, Skype: webkubikc);
*/

/*! var css */

:root {
	--black: #eee;
	--grey: #999;
	--green: #40739e;
	--orange: #ffa125;
	--blue: #287e94;
	--blue2: #487eb0;
	--grayb: #2e2e2e;
	--bluecolor: #3a97a5;
	--bluecolorlight: #91c3c9;
	--grayblight: #3e3e3e;
	--white: #fff;
	--darkcolor: #4e6378;
	--black-a: rgba(42,42,42,0.75);
	--green-a: rgba(72, 126, 176,0.8);
	--blue-a: rgba(22, 160, 133,0.66);
	--bsh: 0 10px 20px rgba(0,0,0,0.4);
	--bshsec: 0 0 0.8125rem 0 rgb(82 63 105 / 5%);
	--bdc: #141414;
	--bdcsec: #f3f3f3;
	--gradient-green: linear-gradient(to right, #40739e, #40739e, #487eb0);
	--gradient-blue: linear-gradient(to right, #4da0a8 0%, #025c80 100%);
	--accent-color: #16a085;
	--accent-color-darker: #10816b;
	--ui-bg: #262626;
	--ui-bg-darker: #171717;
	--ui-bg-accent: #40739e;
	--ui-text-color-on-accent: #fff;
	--main-indent-negative: -40px;
	--main-indent: 40px;
	--maximum-width: 1280px;
}

/*! reset */
* {
	background: transparent;
	margin: 0;
	padding: 0;
	outline: none;
	border: 0;
	box-sizing: border-box;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img, table, iframe, video, frame, embed, object {
	max-width: 100%;
}

body {
	font: 14px 'Ubuntu Condensed', sans-serif;
	line-height: normal;
	padding: 0;
	margin: 0;
	color: #ffffff;
	background: #161616;
	overflow-x: hidden;
	min-height: 100%;
	width: 100%;
	font-weight: 400;
}

a {
	color: #5cfd0d;
	text-decoration: none;
}

a:hover, a:focus {
	color: #1fb669;
	text-decoration: none;
}

h1, h2, h3, h4, h5 {
	font-weight: 400;
	font-size: 24px;
}

::selection {
	background: #ff0000;
	color: #fff;
}

b, strong, .bolder {
	font-weight: 700;
}

button, select, textarea, input[type="text"], input[type="password"], input[type="button"], input[type="submit"] {
	appearance: none;
	-webkit-appearance: none;
	font-size: 14px;
	font-family: inherit;
}

button, .btn, input[type="button"], input[type="reset"], input[type="submit"], .form__btn, 
.qq-upload-button, .pm__links a, .usp__btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-align: center;
	padding: 0 20px;
	height: 35px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	white-space: nowrap;
	background-color: #287e94;
	color: #fff;
	border-radius: 4px;
	box-shadow: none;
}

button:hover, .btn:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, 
.form__btn:hover, .qq-upload-button:hover, .pm__links a:hover, .usp__btn a:hover {
	background-color: #035e81;
	border-color: #025c80;
	color: #fff;
}

button:active, input[type="button"]:active, input[type="submit"]:active {
	box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.1);
}

.color-btn, [class*=fr], [class*=plyr], [class*=owl-], [id*=mceu] {
	padding: 0;
	margin: 0;
	line-height: normal;
	border: 0;
	box-shadow: none;
	background: none;
	border-radius: 0;
}

input[type="text"], input[type="password"] {
	height: 40px;
	line-height: 40px;
	border-radius: 4px;
	padding: 0 15px;
}

select {
	height: 35px;
	padding: 0 15px;
	display: block;
}

select:not([multiple]) {
	background-image: url(../dleimages/chevron.svg);
	padding-right: 30px;
	background-repeat: no-repeat;
	background-position: right 15px top 50%;
	background-size: .6em auto;
	border-radius: 3px;
}

select option {
	padding: 6px 10px;
}

select[multiple] {
	padding: 0 5px;
}

textarea {
	padding: 15px;
	overflow: auto;
	vertical-align: top;
	resize: vertical;
	margin-top: 10px;
}

input[type=text], input[type=password], select, textarea {
    width: 100%;
    background-color: #61bc9d;
    box-shadow: inset 0 0 0 1px #f0f0f0, inset 1px 2px 5px rgb(0 0 0 / 9%);
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
	box-shadow: inset 0 0 0 1px var(--accent-color), inset 1px 2px 5px rgba(0,0,0,0.1);
}

input::placeholder, textarea::placeholder {
	color: #000;
	opacity: 0.8;
	font-size: 13px;
}

input:focus::placeholder, textarea:focus::placeholder {
	color: transparent;
}

/*! flex,grid snipp */
.img-box, .img-wide, .img-responsive, .img-fit-cover {
	overflow: hidden;
	position: relative;
}

.img-responsive {
	padding-top: 60%;
}

.img-responsive--portrait {
	padding-top: 140%;
}

.img-box > img, .img-responsive > img {
	width: 100%;
	min-height: 100%;
	display: block;
}

.img-responsive > img {
	position: absolute;
	left: 0;
	top: 0;
}

.img-wide img, .img-wide > a {
	width: 100%;
	display: block;
}

.img-fit-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.clr {
	clear: both;
}

.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

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

.line-clamp {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vw100 {
	margin: 0 calc((100% - 100vw)/2);
	padding: 0 calc((100vw - 100%)/2);
}

.d-flex, .fx-row, #dle-content2 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.fd-column, .fx-col {
	flex-direction: column;
	flex-wrap: nowrap;
}

.jc-space-between, .fx-row {
	justify-content: space-between;
}

.jc-flex-start, .fx-start, #dle-content {
	justify-content: flex-start;
}

.jc-center, .fx-center {
	justify-content: center;
}

.jc-flex-end {
	justify-content: flex-end;
}

.ai-flex-start {
	align-items: flex-start;
}

.ai-center, .fx-middle {
	align-items: center;
}

.ai-flex-end {
	align-items: flex-end;
}

.order-first {
	order: -1;
}

.order-last {
	order: 10;
}

.flex-grow-1, .fx-1, .stretch-free-width {
	flex: 1 1 0;
	max-width: 100%;
	min-width: 50px;
}

.btn-icon, .centered-content {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.icon-at-left [class*="fa-"], .icon-left .icon {
	margin-right: 10px;
}

.icon-at-right [class*="fa-"], .icon-right .icon {
	margin-left: 10px;
}

.hidden, #dofullsearch, .form__header .form__btn, .comment-item__main .quote + br, .d-none {
	display: none;
}

.animated-element, button, .btn, a, a img, #scrolltop, .header__btn-login .fal, .carousels__tabs div, 
.carousel-item__title, .header,.header__menu-hidden,.item__label,.item-mask,.spoiler__content,.spoiler__content.spoiler__active {
	transition: all .3s;
}

.pad {
	padding: 0 var(--main-indent);
}

.mb-0 {
	margin-bottom: 0!important;
}

.mt-0 {
	margin-top: 0!important;
}

.mb-1 {
	margin-bottom: 0.25rem!important;
}

.mt-1 {
	margin-top: 0.25rem!important;
}

.mb-2 {
	margin-bottom: 0.5rem!important;
}

.mt-2 {
	margin-top: 0.5rem!important;
}

.mb-3 {
	margin-bottom: 1rem!important;
}

.mt-3 {
	margin-top: 1rem!important;
}

.mb-4 {
	margin-bottom: 1.5rem!important;
}

.mt-4 {
	margin-top: 1.5rem!important;
}

.mt-5 {
	margin-top: 2rem!important;
}

.mt-6 {
	margin-top: 2.5rem!important;
}

.mt-7 {
	margin-top: 5rem!important;
}

.p-0 {
	padding: 0!important;
}

.p-0 {
	padding: 0!important;
}

.p-1 {
	padding: 0.25rem!important;
}

.p-2 {
	padding: 0.5rem!important;
}

.p-3 {
	padding: 1rem!important;
}

.p-4 {
	padding: 1.5rem!important;
}

.block__r {
	padding-right: calc(var(--bs-gutter-x)/ 2);
	padding-left: calc(var(--bs-gutter-x)/ 2);
}

.block__t {
	margin-top: var(--bs-gutter-y);
}

.block__b {
	margin-bottom: var(--bs-gutter-y);
}

.col-1 {
	flex: 0 0 auto;
	width: 8.333333%;
}

.col-2 {
	flex: 0 0 auto;
	width: 16.666667%;
}

.col-3 {
	flex: 0 0 auto;
	width: 25%;
}

.col-4 {
	flex: 0 0 auto;
	width: 33.333333%;
}

.col-5 {
	flex: 0 0 auto;
	width: 41.666667%;
}

.col-6 {
	flex: 0 0 auto;
	width: 50%;
}

.col-7 {
	flex: 0 0 auto;
	width: 58.333333%;
}

.col-8 {
	flex: 0 0 auto;
	width: 66.666667%;
}

.col-9 {
	flex: 0 0 auto;
	width: 75%;
}

.col-10 {
	flex: 0 0 auto;
	width: 83.333333%;
}

.col-11 {
	flex: 0 0 auto;
	width: 91.666667%;
}

.col-12 {
	flex: 0 0 auto;
	width: 100%;
}

.sect__content #dle-content > *:not(.grid-item) {
	width: 100%;
}

.sect__content #dle-content, .d-grid,.side-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(160px,1fr));
	grid-gap: 10px 10px;
	grid-auto-flow: row dense;
}

#dle-content2 > *:not(.grid-item) {
	grid-column: 1 / -1;
}

.side-grid {
	grid-template-columns: repeat(auto-fill,minmax(70px,1fr));
	grid-gap: 10px 10px;
}

.related-grid {
	grid-template-columns: repeat(auto-fill,minmax(234px,1fr));
	grid-gap: 10px 10px;
	display: grid;
	grid-auto-flow: row dense;
}

[data-src] {
	opacity: 0;
	transition: opacity 0.3s;
}

[data-src].lazy-loaded {
	opacity: 1;
}

.d-block {
	display: block;
}

@font-face {
	font-family: 'PT Sans'; src: url('../webfonts/pt-sans-400.woff2') format('woff2');
	font-weight: 400; font-style: normal; font-display: swap;
}

@font-face {
	font-family: 'PT Sans'; src: url('../webfonts/pt-sans-700.woff2') format('woff2');
	font-weight: 700; font-style: normal; font-display: swap;
}

.search__page #fullsearch{
	width: 100%;
	padding: 10px;
}

.search__page #dle-content{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.search__page .poster__favajax{
	position: relative;
    width: 25%;
    padding: 10px;
}

@media screen and (max-width: 950px) {}
@media screen and (max-width: 760px) {
	.search__page .poster__favajax {
	    width: 50%;
	}
}
@media screen and (max-width: 760px) and (orientation: landscape) {
	.search__page .poster__favajax {
	    width: 25%;
	}
}