* {
    padding: 0;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #121212;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

/* BUTTONS */

.button-1 {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    color: #FFF;
    background: #F11E22;
    user-select: none;
    cursor: pointer;
    transition: 0.3s;
}

.button-1>svg {
    margin: 0 10px 0 0;
}

.button-1:hover {
    background: #F11E22E6;
}

.button-2 {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 15px;
    color: #FFF;
    background: #242424;
    user-select: none;
    cursor: pointer;
    transition: 0.3s;
}

.button-2>svg {
    margin: 0 10px 0 0;
}

.button-2:hover {
    background: #F11E22;
}

/* NAVIGATION */

nav {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: #000;
    transition: 0.3s;
}

nav>.container {
    width: 1000px;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

#MenuButton {
    display: none;
}

#Logo {
    height: 100%;
    display: flex;
    user-select: none;
}

#Menu {
    height: 100%;
    display: flex;
    flex: 1;
    margin: 0 0 0 20px;
    list-style: none;
    user-select: none;
    transition: 0.3s;
}

#Menu>li {
    height: 100%;
    display: flex;
}

#Menu>li>a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: solid 2px transparent;
    box-sizing: border-box;
    font-size: 15px;
    text-decoration: none;
    color: #EEE;
    transition: 0.3s;
}

#Menu>li>a>svg {
    margin: 0 10px 0 0;
}

#Menu>li>a:hover {
    color: #FFF;
    border-color: #F11E22;
}

#NavButtons {
    height: 100%;
    display: flex;
    user-select: none;
}

#NavButtons>.search {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#NavButtons>.search>svg>* {
    transition: 0.3s;
}

#NavButtons>.search:hover>svg>* {
    stroke: #F11E22;
}

/* HEADER */

header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    margin: 60px 0 0 0;
    background: linear-gradient(180deg, #F11E2219 0%, #F11E2200 100%), #181818;
}

header>.container {
    width: 1000px;
    display: flex;
    align-items: center;
}

#SiteInfo {
    display: flex;
    flex: 1;
    flex-direction: column;
}

#SiteInfo>h1 {
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
}

#SiteInfo>p {
    margin-top: 20px;
    font-size: 15px;
    color: #EEE;
    line-height: 1.5;
}

#SiteShare {
    display: flex;
    flex-direction: column;
    margin: 0 0 0 40px;
    user-select: none;
}

#SiteShare>.social {
    display: flex;
    margin: 20px 0 0 0;
}

#SiteShare>.social>a {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 10px;
    border-radius: 5px;
    text-decoration: none;
}

#SiteShare>.social>a:first-of-type {
    margin: 0;
}

.vk {
    background: #0077FF;
}

.ok {
    background: #EE8208;
}

.fb {
    background: #1877F2;
}

.mail {
    background: #FC2C38;
}

.tg {
    background: linear-gradient(90deg, #2AABEE 0%, #229ED9 100%);
}

.viber {
    background: #7360F2;
}

/* MAIN */
main {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background: #121212;
}

main>.container {
    width: 1000px;
    display: flex;
    flex-direction: column;
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

section:nth-of-type(n+2) {
    margin: 40px 0 0 0;
}

section>.title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

section>.title>img {
    display: flex;
    margin: 0 10px 0 0;
}

section>.title>h2 {
    display: flex;
    flex: 1;
    font-size: 20px;
    font-weight: 500;
    color: #FFF;
    text-transform: uppercase;
}

section>.title>a {
    display: flex;
    font-size: 15px;
    font-weight: 500;
    color: #FFF;
    text-decoration: none;
    user-select: none;
}

section>.articles {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 0 0;
}

article {
    width: 320px;
    height: 180px;
    position: relative;
    display: flex;
    margin: 0 0 0 20px;
    user-select: none;
}

article:nth-of-type(3n-2) {
    margin-left: 0;
}

article:nth-of-type(n+4) {
    margin-top: 20px;
}

article>a {
    width: 100%;
    height: 100%;
    display: flex;
    text-decoration: none;
}

article>a>.content {
    width: 100%;
    height: 100%;
}

article>a>.content>.image {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    object-fit: cover;
    border-radius: 5px;
}

article>a>.content>.name {
    width: 100%;
    min-height: 80px;
    position: absolute;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 40px 20px 10px 20px;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 500;
    color: #FFF;
    background: linear-gradient(180deg, #12121200 0%, #121212 100%);
}

article>a>.content>.marker {
    height: 24px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 0 5px 0 5px;
    font-size: 12px;
    color: #FFF;
    background: #F11E22;
    opacity: 0.8;
}

article>a>.hover {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #12121299;
    opacity: 0;
    transition: 0.3s;
}

article>a:hover>.hover {
    opacity: 1;
}

#Description>p {
    font-size: 15px;
    color: #EEE;
    line-height: 1.5;
    margin: 20px 0 0 0;
    text-align: justify;
}

#Description>p:first-of-type {
    margin-top: 0;
}

/* FOOTER */

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #000;
    margin-top: auto;
}

footer>.container {
    width: 1000px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer>.container>div {
    width: 480px;
    padding: 20px 0;
    font-size: 13px;
    color: #CCC;
}

footer>.container>div>a {
    color: #FFF;
    text-decoration: none;
}

/* SEARCH PAGE */
#SearchPanel {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 40px 0;
}

#SearchPanel>input[type="text"] {
    height: 60px;
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    padding: 0 20px;
    margin-right: 20px;
    border: none;
    outline: none;
    border-radius: 5px;
    background: #242424;
    color: #FFF;
    font-size: 15px;
}

#SearchPanel>input[type="button"] {
    height: 60px;
    padding: 0 20px;
}

#SearchInfo {
    font-size: 14px;
    color: #EEE;
    margin-bottom: 40px;
}

@media screen and (max-width: 1040px) {
    body {
        width: 100%;
    }

    nav>.container {
        width: 720px;
    }

    header>.container {
        width: 720px;
    }

    main>.container {
        width: 720px;
    }

    article {
        width: 230px;
        height: 130px;
        margin: 0 0 0 15px;
    }

    article:nth-of-type(3n-2) {
        margin-left: 0;
    }

    article:nth-of-type(n+4) {
        margin-top: 15px;
    }

    footer>.container {
        width: 720px;
    }

    footer>.container>div {
        width: 340px;
    }
}

@media screen and (max-width: 760px) {
    body {
        width: 100%;
    }

    nav>.container {
        width: 100%;
        justify-content: flex-start;
    }

    nav.open-menu {
        height: 100vh;
    }

    #MenuButton {
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        outline: none;
        background: #000;
    }

    nav #MenuButton>.open-img {
        display: flex;
    }

    nav #MenuButton>.close-img {
        display: none;
    }

    nav.open-menu #MenuButton>.open-img {
        display: none;
    }

    nav.open-menu #MenuButton>.close-img {
        display: flex;
    }

    #NavButtons {
        margin: 0 0 0 auto;
    }

    #NavButtons>.search {
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #Menu {
        width: 100%;
        height: calc(100vh - 60px);
        position: absolute;
        top: 60px;
        flex-direction: column;
        padding: 20px 0;
        margin: 0;
        box-sizing: border-box;
        border-top: solid 1px #F11E22;
        background: linear-gradient(180deg, #F11E2219 0%, #F11E2200 100%), #181818;
        opacity: 0;
    }

    nav.open-menu #Menu {
        opacity: 1;
    }

    #Menu>li {
        height: 60px;
    }

    #Menu>li>a {
        width: 100%;
        padding: 0 20px 0 0
    }

    #Menu>li>a>svg {
        padding: 21px;
        margin: 0;
    }

    header>.container {
        width: 100%;
        flex-direction: column;
    }

    #SiteInfo>h1 {
        padding: 0 20px;
    }

    #SiteInfo>p {
        padding: 0 20px;
    }

    #SiteShare {
        margin: 40px 0 0 0;
    }

    main>.container {
        width: 100%;
    }

    section>.title {
        margin: 0 20px;
    }

    section>.articles {
        justify-content: center;
    }

    article {
        width: 280px;
        height: 180px;
    }

    article:nth-of-type(2n-1) {
        margin: 0 10px 0 20px;
    }

    article:nth-of-type(2n) {
        margin: 0 20px 0 10px;
    }

    article:nth-of-type(n+3) {
        margin-top: 20px;
    }

    #Description>p {
        margin: 20px 20px 0 20px;
    }

    footer>.container {
        width: 100%;
        flex-direction: column;
    }

    footer>.container>div {
        width: auto;
        margin: 0 20px;
    }

    footer>.container>div:nth-of-type(n+2) {
        padding-top: 0;
    }

    /* SEARCH PAGE */
    #SearchPanel {
        width: 100%;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        padding: 40px 20px;
    }

    #SearchPanel>input[type="text"] {
        width: 100%;
        height: 60px;
        display: flex;
        flex: auto;
        flex-direction: row;
        align-items: center;
        padding: 0 20px;
        margin: 0 0 20px 0;
        border: none;
        outline: none;
        border-radius: 5px;
        box-sizing: border-box;
        background: #242424;
        color: #FFF;
        font-size: 15px;
    }

    #SearchPanel>input[type="button"] {
        height: 60px;
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    #SearchInfo {
        width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
        font-size: 14px;
        color: #EEE;
        margin-bottom: 40px;
    }


}

@media screen and (max-width: 620px) {
    article {
        width: 100%;
        max-width: 414px;
        height: 180px;
    }

    article:first-of-type {
        margin: 0 20px 0 20px;
    }

    article:nth-of-type(n+2) {
        margin: 20px 20px 0 20px;
    }
}

main {
    padding: 0;
    margin: 60px 0 0 0;
}

#Speedbar {
    width: 100%;
    padding: 20px 0;
    color: #646464;
    font-size: 15px;
    box-sizing: border-box;
}

#Speedbar>a {
    color: #969696;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

#Speedbar>a:hover {
    color: #CCC;
}

#MovieTitle {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: solid 1px #121212;
    border-radius: 5px 5px 0 0;
    background: #000;
}

#MovieTitle>img {
    padding: 0 10px 0 0;
}

#MovieTitle>h1 {
    display: flex;
    flex: 1;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFF;
}

#MovieTitle>.rating {
    height: 100%;
    padding: 0 0 0 20px;
    display: flex;
    align-items: center;
    font-size: 15px;
    text-decoration: none;
    color: #EEE;
    user-select: none;
}

#MovieTitle>.rating>img {
    margin: 0 10px 0 0;
}

#MovieInfo {
    display: flex;
    border-radius: 0 0 5px 5px;
    background: #000;
}

#MovieInfo>.left {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

#MovieInfo>.left>img {
    border-radius: 5px;
    user-select: none;
}

#MovieInfo>.left>button {
    margin: 10px 0 0 0;
}

#MovieInfo>.right {
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
}

#MovieInfo>.right>.table {
    display: flex;
    flex-direction: column;
}

#MovieInfo>.right>.table>.tr {
    display: flex;
    flex-direction: row;
    margin: 0 0 5px 0;
}

#MovieInfo>.right>.table>.tr:last-child {
    margin: 0;
}

#MovieInfo>.right>.table>.tr>.td {
    width: 100%;
    display: flex;
    font-size: 15px;
    color: #CCC;
}

#MovieInfo>.right>.table>.tr>.td:first-child {
    width: 100px;
    display: flex;
    margin: 0 20px 0 0;
    font-size: 12px;
    font-weight: 500;
    color: #CCC;
}

#MovieInfo>.right>.description {
    display: flex;
    margin: 20px 0 0 0;
    font-size: 15px;
    color: #FFF;
}

#MovieInfo>.right>.bottom-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-self: center;
    margin: 20px 0 0 0;
}

#MovieInfo>.right>.bottom-block>.social {
    display: flex;
}

#MovieInfo>.right>.bottom-block>.social>a {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 10px;
    border-radius: 5px;
    text-decoration: none;
}

#MovieInfo>.right>.bottom-block>.social>a:first-of-type {
    margin: 0;
}

#MovieInfo>.left>.bottom-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /*justify-self: flex-end;*/
    align-self: center;
    padding: 10px 0 0 0;
    /*margin: auto 0 0 0;*/
}

#MovieInfo>.left>.bottom-block>.rating {
    width: 100%;
    height: 40px;
    display: flex;
    border-radius: 5px;
    background: #181818;
}

#MovieInfo>.left>.bottom-block>.rating>.rating-layer {
    display: flex;
    flex: 1;
}

#MovieInfo>.left>.bottom-block>.rating>div>ul {
    display: flex;
    flex: 1;
    justify-content: center;
    padding: 0 5px;
    list-style: none;
}

#MovieInfo>.left>.bottom-block>.rating>div>ul>li {
    height: 100%;
    display: flex;
}

#MovieInfo>.left>.bottom-block>.rating>div>ul>li>a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
    text-decoration: none;
}

#MovieInfo>.left>.bottom-block>.rating>div>ul>li>a.active>svg>* {
    fill: #F1C40F;
}

#MovieInfo>.left>.bottom-block>.rating>div>ul>li>a:hover>svg>* {
    fill: #F11E22;
}

#MovieInfo>.left>.bottom-block>.rating>#NumVoters {
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    font-size: 12px;
    font-weight: 500;
    color: #CCC;
    background: #242424;
}

#MovieInfo>.left>.bottom-block>.rating>#NumVoters>svg {
    margin: 0 10px 0 0;
}

#Players {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 20px 0 0 0;
}

#Players>.selection {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    background: #000;
}

#Players>.selection>a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #CCC;
}

#Players>.selection>a.active {
    color: #FFF;
    background: #F11E22;
}

#Players>.selection>a:hover {
    background: #181818;
}

#Players>.selection>a.active:hover {
    background: #F11E22;
}

#Player {
    width: 100%;
    height: 450px;
    display: flex;
    background: #000;
}

#Emotions {
    width: 100%;
    height: 80px;
    display: flex;
    list-style: none;
    background: #000;
}

#Emotions>li {
    display: flex;
    flex: 1;
}

#Emotions>li>a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: solid 2px transparent;
    text-decoration: none;
}

#Emotions>li>a>.emotion {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

#Emotions>li>a>.count-emotion {
    height: 20px;
    display: flex;
    font-size: 12px;
    color: #CCC;
}

/* FULL DESCRIPTION */

#FullDescription {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
    margin: 20px 0 0 0;
    border-radius: 5px;
    box-sizing: border-box;
    background: #181818;
}

#FullDescription>h2 {
    font-size: 18px;
    text-transform: uppercase;
    color: #FFF;
}

#FullDescription>p {
    margin: 20px 0 0 0;
    font-size: 15px;
    line-height: 1.5;
    color: #CCC;
}

/* COMMENTS */

#Reviews {
    margin: 20px 0;
}

#BtnOpenFormComment {
    display: flex;
    justify-self: center;
    margin: 0 auto;
    padding: 0 40px;
}

#dle-comments-form {
    height: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    border-radius: 5px;
    background: #242424;
    transition: 0.3s;
}

#dle-comments-form.showHeight {
    height: auto;
    padding: 20px;
    margin: 20px 0 0 0;
    opacity: 1;
}

#dle-comments-form>* {
    display: none;
}

#dle-comments-form.showHeight>* {
    display: flex;
}

#dle-comments-form>label {
    font-size: 14px;
    color: #CCC;
    margin-top: 10px;
    padding: 10px 0 10px 0;
}

#dle-comments-form>label:first-of-type {
    padding-top: 0;
    margin-top: 0;
}

#dle-comments-form>input {
    padding: 10px 20px;
    border: solid 1px #000;
    outline: none;
    border-radius: 5px;
    font-size: 15px;
    color: #FFF;
    background: #000;
    transition: 0.3s;
}

#dle-comments-form>input:focus {
    border-color: #F11E22;
}

#name {
    width: 100%;
    box-sizing: border-box;
}

#dle-comments-form .bb-editor {
    min-width: 100%;
    max-width: 100%;
}

#dle-comments-form #comments {
    min-width: 100%;
    max-width: 100%;
    padding: 10px 20px;
    border: solid 1px #000;
    outline: none;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 15px;
    color: #FFF;
    background: #000;
    transition: 0.3s;
}

#dle-comments-form #comments:focus {
    border-color: #F11E22;
}

#dle-comments-form>button {
    margin-top: 20px;
    padding: 0 40px;
}

.comment {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 20px 0 0 0;
}

.comment>.avatar {
    width: 50px;
    height: 50px;
    margin: 0 10px 0 0;
    border-radius: 5px;
    object-fit: cover;
    display: flex;
}

.comment>.comment-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 5px;
    box-sizing: border-box;
    background: #242424;
}

.comment>.comment-info>.head {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.comment>.comment-info>.head>.username {
    display: flex;
    font-size: 15px;
    font-weight: 500;
    color: #FFF;
}

.comment>.comment-info>.head>.date {
    display: flex;
    margin: 0 0 0 20px;
    font-size: 14px;
    font-weight: 300;
    color: #CCC;
}

.comment>.comment-info>.head>a {
    display: flex;
    justify-self: flex-end;
    align-items: center;
    margin: 0 0 0 auto;
    font-size: 15px;
    color: #F11E22;
    text-decoration: none;
}

.comment>.comment-info>.head .like {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #FFF;
    text-decoration: none;
}

.comment>.comment-info>.head .like>img {
    height: 15px;
    margin: 0 5px 0 0;
}

.comment>.comment-info>.text {
    color: #FFF;
    font-size: 15px;
    font-weight: 300;
}

#Similar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 20px 0 0 0;
}

#Similar>.film {
    width: 320px;
    height: 180px;
    display: flex;
    margin: 0 0 0 20px;
}

#Similar>.film:first-of-type {
    margin-left: 0;
}

#Similar>.film>a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    text-decoration: none;
}

#Similar>.film>a>.content {
    width: 100%;
    height: 100%;
}

#Similar>.film>a>.content>.image {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    object-fit: cover;
    border-radius: 5px;
}

#Similar>.film>a>.content>.name {
    width: 100%;
    min-height: 80px;
    position: absolute;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 40px 20px 10px 20px;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 500;
    color: #FFF;
    background: linear-gradient(180deg, #12121200 0%, #121212 100%);
}

#Similar>.film>a>.hover {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #12121299;
    opacity: 0;
    transition: 0.3s;
}

#Similar>.film>a:hover>.hover {
    opacity: 1;
}

#PopupTrailer {
    z-index: 105;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #36363699;
    backdrop-filter: blur(10px);
}

#PopupTrailer>.head {
    width: 100%;
    height: 50px;
    max-width: 840px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 5px 5px 0 0;
    background: #000;
    user-select: none;
}

#PopupTrailer>.head>.title {
    display: flex;
    flex: 1;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    color: #FFF;
}

#PopupTrailer>.head>svg {
    width: 24px;
    height: 24px;
    display: flex;
    justify-self: flex-end;
    padding: 0 20px;
    margin: 0 0 0 auto;
    cursor: pointer;
}

#PopupTrailer>iframe {
    width: 100%;
    height: 100%;
    max-width: 840px;
    max-height: 473px;
}

#PopupTrailer.hidden-trailer {
    display: none;
}

@media screen and (max-width: 1040px) {

    #MovieTitle {
        height: auto;
        padding: 20px;
    }

    #MovieTitle>svg {
        display: none;
    }

    #MovieInfo>.left {
        width: 280px;
    }

    #MovieInfo>.right>.bottom-block {
        flex-direction: column-reverse;
    }

    #MovieInfo>.right>.bottom-block>.rating {
        margin-bottom: 20px;
    }

    #Similar>.film {
        height: 128px;
    }


}

@media screen and (max-width: 760px) {

    #Speedbar {
        padding: 20px;
    }

    #MovieTitle {
        border-radius: 0;
    }

    #MovieInfo {
        border-radius: 0;
    }

    #MovieInfo>.left {
        width: 220px;
    }

    #MovieInfo>.left>.bottom-block>.rating>#NumVoters {
        padding: 0 10px;
    }

    #MovieInfo>.left>.bottom-block>.rating>#NumVoters>svg {
        display: none;
    }

    #Similar>.film:first-of-type>a>.content>.image {
        border-radius: 0 5px 5px 0;
    }

    #Similar>.film:last-of-type>a>.content>.image {
        border-radius: 5px 0 0 5px;
    }

    #FullDescription {
        border-radius: 0;
    }

    #dle-comments-form {
        border-radius: 0;
    }

    .comment {
        padding: 0 20px;
        box-sizing: border-box;
    }

}

@media screen and (max-width: 620px) {

    #Speedbar {
        order: 0;
    }

    #MovieTitle {
        order: 1;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        box-sizing: border-box;
        background: #000;
    }

    #MovieTitle>img {
        display: none;
    }

    #MovieTitle>.rating {
        display: none;
    }

    #MovieTitle>h1 {
        flex: auto;
        width: 100%;
    }

    #Players {
        order: 2;
        margin: 0;
        border-top: solid 2px #F11E22;
    }

    #Player {
        height: 280px;
    }

    #Players>.selection {
        border-radius: 0;
    }

    #MovieInfo {
        order: 3;
        flex-direction: column;
        background: #181818;
    }

    #MovieInfo>.left {
        width: 440px;
        box-sizing: border-box;
        align-self: center;
        margin: 20px auto 0 auto;
    }

    #MovieInfo>.right {
        padding: 0 20px 20px 20px;
    }

    #MovieInfo>.right>.bottom-block>.social {
        justify-content: center;
    }

    #Similar {
        order: 4;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 0 10px;
        margin: 0;
        box-sizing: border-box;
    }

    #Similar>.film {
        width: calc(50% - 20px);
        margin: 20px 10px 0 10px;
    }

    #Similar>.film:first-of-type {
        margin: 20px 10px 0 10px;
    }

    #Similar>.film:first-of-type>a>.content>.image {
        border-radius: 5px;
    }

    #Similar>.film:last-of-type>a>.content>.image {
        border-radius: 5px;
    }

    #FullDescription {
        order: 5;
    }

    #Reviews {
        order: 6;
    }

    .comment>.comment-info>.head>.date {
        display: none;
    }

    #MovieInfo>.left>.bottom-block>.rating {
        background: #242424;
    }

    #MovieInfo>.left>.bottom-block>.rating>#NumVoters {
        padding: 0 20px;
        border-left: solid 1px #363636;
    }

    #MovieInfo>.left>.bottom-block>.rating>#NumVoters>svg {
        display: flex;
    }

}

@media screen and (max-width: 440px) {

    #MovieInfo>.left {
        width: 100%;
        box-sizing: border-box;
    }

}

.modAlert,
.modAlert * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.modAlert {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    overflow: hidden;
    z-index: 1007;
    padding: 17px 25px 17px;
    background: rgba(0, 0, 0, .25);
}

.modAlert-item:last-child {
    margin-bottom: 3px;
}

.modAlert-item {
    display: none;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    border-left: 4px solid #888;
    background: #fafafa url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAIAAABi9+OQAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAF0lEQVQImWP4//8/EwMDAxOMRsc0EgcADVcSKWmPmVIAAAAASUVORK5CYII=) repeat-x 0 0;
    font: normal 13px/130% 'Trebuchet MS', Arial;
    color: #888;
    padding: 5px 22px 10px 60px;
    box-shadow: inset 0 0 0 1px #fff, 0 2px 11px -2px rgba(0, 0, 0, .35);
    border-radius: 2px;
    cursor: pointer;
}

.modAlert-item.modAlert-onerow {
    padding-top: 10px;
}

.modAlert-item.modAlert-noicon {
    padding-left: 22px;
}

.modAlert-item.modAlert-notitle {
    padding-top: 13px;
    padding-bottom: 13px;
}

.modAlert-item:hover {
    background: #fff;
}

.modAlert-title {
    font-size: 1.4em;
    line-height: 1.58em;
    font-style: italic;
    color: #333;
}

.modAlert-text {
    word-break: break-word;
}

.modAlert-text b {
    color: #666;
}

.modAlert-success {
    border-left-color: #8cc540;
}

.modAlert-success .modAlert-title {
    color: #8cc540;
}

.modAlert-error {
    border-left-color: #f15941;
}

.modAlert-error .modAlert-title {
    color: #f15941;
}

.modAlert-warning {
    border-left-color: #f3b00a;
}

.modAlert-warning .modAlert-title {
    color: #f3b00a;
}

.modAlert-info {
    border-left-color: #38bae4;
}

.modAlert-info .modAlert-title {
    color: #38bae4;
}

.modAlert-icon {
    position: absolute;
    top: 50%;
    left: 30px;
    width: 34px;
    height: 34px;
    margin-top: -17px;
    margin-left: -17px;
    border: 2px solid #fff;
    background: #888;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAECAYAAAC+0w63AAAAO0lEQVQYV2P8//+/JwMDw1wGBgZJBuLAcwYGhmTG////PyNBE8zo5+RqfAHS6AV1qgRxLmV4ysDAkAYANkQUWTGdBTUAAAAASUVORK5CYII=);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .07), 0 1px 3px rgba(0, 0, 0, .1);
}

.modAlert-success .modAlert-icon {
    background-color: #8cc63e;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAiElEQVQ4T6WSYQ6AIAiFZXXWOlOdtWaTiROCgOUfN/V7wPNB+bkgy9f7OhoDy7rjnhFAGMqGTC1nEwkLMJiqNpFIBypMXXgCn7A3ggczE6W7EXgISHdxLHJ7nrE7Px+BWUmao8BYJyRgwPoIwcr0bOTADEqPrPXdLEhaVL2cvJIovzMt4AHy/gFTwlUzd7dpzAAAAABJRU5ErkJggg==);
}

.modAlert-error .modAlert-icon {
    background-color: #f15941;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAgElEQVQ4T61T0Q6AIAiE1bfWN+W31mywsETENvRFhfPGHYjwrHydBx1xWXeJWbvGIYE4iLDxgwypR2LhsAqWclqSLs5MqEpcTCPhKzxD4qvIUzmSyh64JKaTr8RC8JtEmVwRDEmMDs0l6LptmCehOSZ6fR62MTxI4VEOf6bod74BGHuKVcXz6f0AAAAASUVORK5CYII=);
}

.modAlert-warning .modAlert-icon {
    background-color: #ffcb06;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkwAH+////H1mKkZGREZtSrIIghaMGjIYBVdIBrhSKLo4zJVJswAhKygBSLzgRfdCTRgAAAABJRU5ErkJggg==);
}

.modAlert-info .modAlert-icon {
    background-color: #40c9f7;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAuklEQVQ4T6WTgQqDMBBDk9b9/w+vyUiLwqbCbjuoSFvvcrkncRNeMU9JZvHq6uVmLkoyaBgETbRWTLArIHcVvabAspWPleqzjVqCO28+9289+CvB6n+sHOxg/Ozt+xbm/AzkMUg0GJ2FBCk8ZBNR0UAR3IomSk8jAKFFCljlQI6CFdGxVcd4cByO+AMH9nD6V2DOWyuaeCiYP0ZhjEHYFOjwi2lgkCaeIB4npE9wvFVOA84wemRA4ImHF63bZhEL3Lj4AAAAAElFTkSuQmCC);
}