:root {
	--text-black: black;
	--primary-color: #feca03;
	--primary-color-darker: #f16d2d;
	--secondary-color: #feca03;
	--hover-cover: #04040282;
	--primary-text-color: #e0e0e0;
	--secondary-text-color: #c7c7c7;
	--main-indent: 60px;
	--maximum-width: 1200px;
	--logo-c: #feca03;
	--bg-c: #0c0c0c;
	--linear-bg-b: linear-gradient(130.16deg, #dba324 34.4%, #a14000 66.11%, #690d0d 96.37%);
	--bg-input: #1a1a1a;
	--bg-br-info: #252323db;
	--br-bg: 1px solid #f3cc3445;
	--color-red: red;
}

* {
	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%;
}

html {
	font-size: 62.5%;
}

body {
	font: 1.6rem 'Roboto', sans-serif;
	line-height: normal;
	padding: 0;
	margin: 0;
	color: var(--primary-text-color);
	background: #111;
	min-height: 100%;
	width: 100%;
	font-weight: 300;
}

a {
	color: var(--primary-text-color);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--secondary-color);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: 500;
	font-size: 2.4rem;
}

::selection {
	background: #f6e58d;
	color: #000;
}

b,
strong {
	font-weight: 400;
}

button,
select,
textarea,
input[type="text"],
input[type="number"],
input[type="password"],
input[type="button"],
input[type="submit"] {
	appearance: none;
	-webkit-appearance: none;
	font-size: 1.6rem;
	font-family: 'Roboto' !important;
}

button:not(.color-btn):not([class*=fr]):not([class*=plyr]):not(.header__search-btn):not([class*=owl-]):not(.form__btn):not([id*=mceu]),
.button,
.btn,
input[type="button"]:not(.form__btn),
input[type="reset"],
input[type="submit"] {
	display: inline-block;
	cursor: pointer;
	text-align: center;
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	background: var(--linear-bg-b);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 400;
	white-space: nowrap;
	border-radius: 3px;
	box-shadow: rgb(237, 85, 101, 0.3);
}

button:not(.color-btn):not([class*=fr]):not([class*=plyr]):not(.header__search-btn):not([class*=owl-]):not(.form__btn):not([id*=mceu]):hover,
.button:hover,
.btn:hover,
input[type="button"]:not(.form__btn):hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background-color: var(--primary-color-darker);
	color: #fff;
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0);
}

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

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

select {
	height: 40px;
	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;
	font-size: 13px;
	font-family: sans-serif !important;
	border-radius: 5px;
}

select option {
	padding: 6px 10px;
}

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

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

input[type="text"],
input[type="number"],
input[type="password"],
select,
textarea {
	width: 100%;
	background-color: var(--bg-input);
	color: #fff;
	box-shadow: inset 0 0 0 1px #15161e, inset 1px 2px 5px rgba(0, 0, 0, 0.1);
}

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

input::placeholder,
textarea::placeholder {
	color: #fff;
	opacity: 0.8;
	font-size: 1.4rem;
	font-weight: 300;
}

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

.img-box,
.img-wide,
.img-responsive,
.img-fit-cover {
	overflow: hidden;
	position: relative;
}

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

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

.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;
	border-radius: 5px;
	border: var(--br-bg);
}

.clr {
	clear: both;
}

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

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

.d-flex,
.my-content {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

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

.jc-flex-start,
.my-content {
	justify-content: flex-start;
}

.jc-space-between {
	justify-content: space-between;
}

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

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

.ai-center {
	align-items: center;
}

.order-first {
	order: -1;
}

.order-last {
	order: 10;
}

.stretch-free-width {
	flex: 1 1 0;
	max-width: 100%;
	min-width: 50px;
	gap: 20px 20px;
}

.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 {
	display: none;
}

.animated-element,
button,
.btn,
.submenu a,
.header__hero-btn,
.side-block__menu a,
.inner-page__rating a,
.hover__overlay,
.popular-item__img:before,
.popular-item__title {
	transition: all .3s;
}

.my-content>*:not(.movie-item):not(.collection-item),
.my-content {
	width: 100%;
}

.side-block__title,
.section__title,
.movie-item__title,
.update-item__title,
.soon-item__title,
.pagination,
.collection-item__title,
.logo,
.header__hero-title,
.tabs-block__select--desc>span,
.inner-page__subtitle,
.inner-page__subrating,
.inner-page__caption,
h1,
h2,
h3,
h4,
h5,
.popular-item__title {
	font-family: 'Montserrat', sans-serif;
}