:root {
  --primary-color: #4f6df4;
  --primary-color-darker: #3d57d6;
  --secondary-color: #c6d8ff;
  --primary-text-color: #1a1a1a;
  --secondary-text-color: #666;
  --main-indent: 60px;
  --maximum-width: 1200px;
}

* {
  background: 0 0;
  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: #f0f4ff;
  min-height: 100%;
  width: 100%;
  font-weight: 300;
}

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

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

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

::selection {
  background: var(--secondary-color);
  color: #000;
}

b, strong {
  font-weight: 400;
}

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

button:not(.tox-tbtn):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-color: var(--primary-color);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  white-space: nowrap;
  border-radius: 3px;
  box-shadow: 0 10px 30px rgba(79, 109, 244, .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 transparent;
}

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

input[type=text],
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;
}

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=password],
select,
textarea {
  width: 100%;
  background-color: #fff;
  color: #000;
  box-shadow: inset 0 0 0 1px #e3e3e3, inset 1px 2px 5px rgba(0, 0, 0, .1);
}

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

input::placeholder,
textarea::placeholder {
  color: #000;
  opacity: .5;
  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;
}

.img-mask::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  opacity: .8;
}

.clr {
  clear: both;
}

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

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

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

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

.jc-flex-start,
#dle-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;
}

.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,
.side-block__menu a,
.inner-page__rating a,
.hover__overlay {
  transition: all .3s;
}

#dle-content > *:not(.movie-item, .collection-item),
#dle-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,
.top__desc {
  font-family: montserrat, sans-serif;
}

@font-face {
  font-family: montserrat;
  src: url(../webfonts/montserrat-500.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: roboto;
  src: url(../webfonts/roboto-300.woff2) format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
