@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700,900');
html {
  font-family: sans-serif; 
  -ms-text-size-adjust: 100%; 
  -webkit-text-size-adjust: 100%; 
}
body {
	background:#e6e6e6;
margin: 0;
overflow-x: hidden;
color:#6b6b6b;
font-family: Tahoma, Geneva, sans-serif;
font-size:13px;
font-weight: 400;	
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
button,
button:active,
button:focus{outline:none;}
input, textarea, select:focus{outline:none;
 }
audio,
canvas,
progress,
video {
  display: inline-block; 
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
.clear{
	clear:both;
}
a {
  color: #319cc8; text-decoration: underline;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit; 
  font: inherit; 
  margin: 0; 
}

button {
  overflow: visible;
}
ul, li {
margin:0 0 0px 0;
	padding:0px;
	list-style:none;
    line-height: 1.3;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"], 
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; 
  cursor: pointer; 
}

button[disabled],
html input[disabled] {
  cursor: default;
}



button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}


input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; 
  padding: 0; 
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield; 
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; 
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0; 
  padding: 0; 
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

.wrapper {
	max-width:768px;
	margin:0px auto;
}

.page_bg {
	position:relative;
	background:#fff;
	overflow:hidden;
	-webkit-box-shadow: 0px 0px 18px 0px rgba(53,74,90,0.13);
-moz-box-shadow: 0px 0px 18px 0px rgba(53,74,90,0.13);
box-shadow: 0px 0px 18px 0px rgba(53,74,90,0.13);
	min-height:100vh;
}

header {
	width:100%;
	height:65px;
	background:#444;
    position: relative;
    z-index: 999;
}
/* Burger menu */
header .burger {
	float: left;
	margin: 12.5px 0 0 10px;
}
.open__burger {
  	display: block;
  	width: 40px;
  	height: 40px;
  	background: transparent;
  	border-radius: 50%;
  	position: relative;
}
.open__burger span,
.open__burger span::before,
.open__burger span::after {
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	margin-top: -1px;
  	margin-left: -10px;
  	width: 20px;
  	height: 2px;
  	background: #979797;
}
.open__burger span::before,
.open__burger span::after {
  	content: '';
  	display: block;
  	-webkit-transition: .2s;
  	transition: .2s;
}
.open__burger span::before {
  	-webkit-transform: translateY(-5px);
          	transform: translateY(-5px);
}
.open__burger span::after {
  	-webkit-transform: translateY(5px);
          	transform: translateY(5px);
}
.open__burger-active span::before {
  	-webkit-transform: rotate(45deg);
          	transform: rotate(45deg);
}
.open__burger-active span::after {
  	-webkit-transform: rotate(-45deg);
          	transform: rotate(-45deg);
}
.open__burger-active span {
  	-webkit-transition: .2s;
  	transition: .2s;
  	height: 0;
}
.burger__nav {
  	max-width: 100%;
  	margin: 0 auto;
  	background: #4d4d4d;
  	position: absolute;
  	z-index: -1;
  	left: 0;
  	top: 65px;
  	width: 100%;
  	-webkit-transition: .5s;
  	transition: .5s;
  	height: auto;
  	opacity: 0;
  	pointer-events: none;
}
.burger__nav nav {
  	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  	-webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  	-webkit-transition: 1s;
  	transition: 1s;
}
.burger__nav nav a {
  	color: #fff;
  	font-family: sans-serif;
  	text-decoration: none;
  	font-size: 20px;
  	margin-bottom: 20px;
  	padding-left: 70px;
}
.burger__nav nav a:first-child {
  	margin-top: 20px;
}
.burger__nav-active {
  	opacity: 1;
  	-webkit-transition: .5s;
  	transition: .5s;
  	pointer-events: auto;
}

/* /Burger menu */ 

header .logotype {
	float:left;
	margin:20px 0 0 20px;
	width:120px;
}
header .side-header {
	float:right;
	margin:20px 15px 0 0;
	position:relative;
}
header .side-header:before {
	content:"";
	position:absolute;
	top:3px;
	left:35px;
	background:rgba(255,255,255,0.26);
	width:1px;
	height:16px;
}
header .logotype a {
	display:block;
	width:120px;
	height:45px;
	background:url(/templates/kinosimka/svg/logotype.svg) no-repeat;
}

header .side-link .search-open {
	display:block;
    float:left;
	padding:0px 5px;
	margin:0 0 0 15px ;
	position:relative;
	cursor: pointer;
	
}
header .side-link .search-open .search-o {
	width:22px;
	height:22px;
	display:block;
	background:url(/templates/kinosimka/svg/search.svg) no-repeat;
	-o-transition:0.2s all;-moz-transition:0.2s all;-webkit-transition:0.2s all;
}
header .side-link .search-open .search-o.open {
	  -ms-transform: scale(0); 
    -webkit-transform: scale(0);
    transform: scale(0);
}
header .side-link .search-open .search-close {
	position:absolute;
	top:3px;
	left:3px;
	width:22px;
	height:22px;
	display:block;
	background:url(/templates/kinosimka/svg/cancel.svg) no-repeat;
	-o-transition:0.2s all;-moz-transition:0.2s all;-webkit-transition:0.2s all;
	 -ms-transform: scale(0); 
    -webkit-transform: scale(0);
    transform: scale(0);
}
header .side-link .search-open .search-close.close {
	 -ms-transform: scale(1); 
    -webkit-transform: scale(1);
    transform: scale(1);
}
header .side-link .userauto {
	display:block;
	width:22px;
	height:22px;
	float:left;
	background:url(/templates/kinosimka/svg/avatar.svg) no-repeat;
	padding:0px 5px;
}

header .side-link .userautos {
	display:block;
	width:22px;
	height:22px;
	float:left;
	background:url(/templates/kinosimka/svg/homes.svg) no-repeat;
	padding:0px 5px;
}
.search-input {
	display:none;
	background:#fff;
	-webkit-box-shadow: 5px 0px 21px 0px rgba(136,158,168,0.16);
-moz-box-shadow: 5px 0px 21px 0px rgba(136,158,168,0.16);
box-shadow: 5px 0px 21px 0px rgba(136,158,168,0.16);
	padding:20px;
	overflow:hidden;
}
.search-input input{
	background:#fff;
	border:1px solid #e9eef0;
	width:80%;
	color:#111;
	padding:13px 0;
	-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
	text-indent: 20px;
	float:left;
	margin:0px;
}
.search-input button {
	float:left;
	width:calc(17% - 0px);
	margin:0px 0 0 2%;
	background:url(/templates/kinosimka/svg/searchs.svg) no-repeat center center #fff;
	border:0px;
		-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
	height:46px;
	border:1px solid #ebeff1;
}
.myvideo iframe {
 width:100%;

}
.main-title {
	padding:14px 20px;
		-webkit-box-shadow: 0px 5px 21px 0px rgba(136,158,168,0.11);
-moz-box-shadow: 0px 5px 21px 0px rgba(136,158,168,0.11);
box-shadow: 0px 5px 21px 0px rgba(136,158,168,0.11);
	overflow:hidden;
	clear: both;
	
}
.main-title .main-r {
	float:right;
	font-size:16px;
	font-weight:700;
	color:#cfdae1;
	
}

.title-e {
	position:relative;
	display:inline-block;
	font-size:16px;
	font-weight:700;
}
.or {
font-size:12px;
margin:2px 0px -5px -0px;
    font-weight:500;
    display:block;
        color: #afacac;
}
.title-e h1 {
font-size:16px;
    margin:0px;
    padding:0px;
}
.main-r a {
color:#444;
}
.title-e span{
 position:absolute;
 top: 4px;
 right: -25px;
    width: 14px;
    height: 14px;
}


.content article{
padding:20px 20px;
	overflow:hidden;
	position:relative;
	cursor: default;
}
.content article:before {
	content:"";
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:1px;
	background:#e9eef0;
	
}
.content article:after {
	content:"";
	position:absolute;
	bottom:3px;
	left:0px;
	width:100%;
	height:1px;
	background:#e9eef0;
	
}
.content article .title a {
	font-size:14px;
	font-weight:700;
	display:inline;
	color:#0097a7;
	padding:0 0 2px 0;
	border-bottom:1px solid #e1eaef;
	text-decoration: none;
	-o-transition:0.2s all;-moz-transition:0.2s all;-webkit-transition:0.2s all;
}
.content article .title a:hover {
	border-color:#fff;
}

.poster {
	float:left;
	width:118px;
	 margin:10px 0 0 0;
	overflow:hidden;
}




.my-icon {
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    position:absolute;
    top:0;
    left:0;
    font-size: 30px !important;
    color: rgb(0, 122, 255);   
    width:40px;
    height:40px;
    border:1px solid rgb(0, 0, 0, 0.1);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    text-align: center;
    line-height: 40px !important;
}

.icon-torrent{
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
 position:absolute;
  top:5px;
  left:10px;
  font-size: 30px;
  color: rgb(0, 122, 255);

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Меню */
.topmenu{
	margin: 3px;
}
.topmenu nav ul,
.topmenu nav ul li a{
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.topmenu nav ul li {
    width: 50%;
}
.topmenu nav ul li a {
	padding: 7px 12px;
    color: #4e4b4b;
    font-size: 14px;
    margin: 2px;
    text-decoration: none;
    box-shadow: 0px 1px 5px 0px rgba(136, 158, 168, 0.07);
    border: 1px dashed rgba(174, 193, 202, 0.35);
    transition: all .3s;
    -webkit-justify-content: left;
    justify-content: left;
}
.topmenu nav ul li a:hover {
	background-color: #f7f8f98f;
    box-shadow: 0px 5px 21px 0px rgba(234, 234, 234, 0.81);
    border: 1px dashed #ffc0003d;

}
.topmenu nav ul li a .topmenu-meta div{
	color: #c0c7cc;
}
.topmenu nav ul li a .topmenu-icon{
	width: 29px;
    height: 29px;
    margin-right: 10px;
    border: 1px dashed rgba(174, 193, 202, 0.48);
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0px 1px 5px 0px rgba(136, 158, 168, 0.07);
     background-size:contain
}
.topmenu nav ul li a:hover .topmenu-icon{
	border: 1px dashed #ffc0003d;
}
.topmenu .topmenu-icon.tmicon-a{
	background-image: url(/templates/kinosimka/svg/topmenu-icon/008-menu.svg);
}
.topmenu .topmenu-icon.tmicon-b{
	background-image: url(/templates/kinosimka/svg/topmenu-icon/001-new.svg);
}
.topmenu .topmenu-icon.tmicon-c{
	background-image: url(/templates/kinosimka/svg/topmenu-icon/004-negotiating.svg);
}
.topmenu .topmenu-icon.tmicon-d{
	background-image: url(/templates/kinosimka/svg/topmenu-icon/003-filter.svg);
}
.topmenu .topmenu-icon.tmicon-f{
	background-image: url(/templates/kinosimka/svg/topmenu-icon/006-loop.svg);
}
.topmenu .topmenu-icon.tmicon-g{
	background-image: url(/templates/kinosimka/svg/topmenu-icon/005-comment.svg);
}
.topmenu .topmenu-icon.tmicon-h{
	background-image: url(/templates/kinosimka/svg/topmenu-icon/collect.svg);
}
.topmenu .topmenu-icon.tmicon-j{
	background-image: url(/templates/kinosimka/svg/topmenu-icon/trophy.svg);
}



.icon-torrent:before { content: ""; 
background:url(/templates/kinosimka/images/torrent.svg) no-repeat;
  width:35px;
  height:35px;
  position:absolute;
  top:1px;
  left:1px;
}

.icon-torrent:after {
  content:"";
  position:absolute;
  top:-8px;
  left:-8px;
  width:40px;
  height:40px;
  border:1px solid rgb(0, 0, 0, 0.1);
  -webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
}



.button-fulls a {
  text-decoration:none;
  position:relative;
  display:inline-block;
 padding:0 0 0 55px;
  color:#111;
  margin:0 0 25px 0;
 
}
.fullstoryback a {
    text-decoration: none;
    color: #0097a7;
    display: inline;
    padding: 22px;
}
.button-fulls a span {
  display:block;
  position:relative;
  z-index:3;
}
.button-fulls a span.d-button {
  font-size:14px;
  font-weight:600;
  color:rgb(0, 122, 255);
}
.button-fulls a span.e-button {
  font-size:12px;
  font-weight:400;
  margin:5px 0 0 0;
  opacity:0.5;
}
.size {
  font-weight:400;
  font-size:14px;
  font-style:normal;
  margin:0 0 0 10px;
  


}
.info-v {
  margin:0 0 8px 0;
  overflow:hidden;
  font-size:12px;
  display:inline-block;
}
.info-s-f-s  {
padding:0 0 10px 0;
  margin:0 0 10px 0;
  border-bottom:1px solid rgba(0,0,0,0.1);
}
.info-s-f-s i {
  width:20px;
}


.related .poster {
	float:left;
	width:45px;
	margin:20px 0 0 0;
	overflow:hidden;
}
.content article.related .title a {
font-size:14px;
}
.content article.related {
padding:2px 2px;
}
.related .info-article {
    margin:20px;
}
.related .poster img{
	max-width:35px;
	max-height:55px;
	-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.poster img{
	max-width:90px;
	max-height:135px;
	-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.poster a {
	display:block;
}
.info-article {
	float:left;
	width:calc(100% - 138px);
	  margin:10px 0 0 1px;
}
article.full_sto .info-article{
margin:10px 0 0 20px;
}
article.full_sto .poster {
margin:10px 0 0 0;
}

article.full_sto .info-s {
	font-size:12px;
	margin:0 0 10px 0;
	width:100%;
	 text-overflow: ellipsis;
	overflow:hidden;
	white-space: nowrap;
}


.short-story {
	margin:20px 0 0 0;
	line-height:1.4;
	font-size:13px;
}
.info-s {
	font-size:12px;
    color:#808080;
	margin:0 0 10px 0;
	width:100%;
	 text-overflow: ellipsis;
	overflow:hidden;
	white-space: nowrap;
    
}
.info-s div {
	font-weight:500;
	color:#c3ccd1;
	font-size:12px;
	margin:0 0 5px 0;
}

 .infobv {
    margin:10px 0 0 0;
    }
    .mars {
    margin:0 0 0 15px;
        float:left;
    }
    .in-far {
    float:left;
        color: #c3ccd1;
        font-size:12px;
    }

    .in-far span{
    display:block;
        font-size:12px;
        color:#888585;
        margin:3px 0 0 0;
    }
    .infobv-dae i {
    float:left;
        width:20px;
        margin:10px 0 0 0;
    }
    .hd1 {
 color:#31c83c;
        display:inline-block;
        border:1px solid #31c83c;
        padding:5px 7px;
        font-size:10px;
    }
    .ts1 {
    color:#c84a31;
           display:inline-block;
        border:1px solid #c84a31;
     padding:5px 7px;
        font-size:10px;
    }
    .web1 {
    color:#319cc8;
          display:inline-block;
        border:1px solid #319cc8;
        padding:5px 7px;
        font-size:10px;
    }

.posterfull {
	float:left;
	width:98px;
	margin:17px 0 0 0;
	overflow:hidden;
}
.posterfull img{
	max-width:98px;
	max-height:177px;
	-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

.adv img {
  width: 92%;
    margin: 0px 15px 0px 15px;
}

.button-main {
	margin:17px;
	overflow:hidden;
	
}
.button-main a {
	display:block;
	border:2px solid #0097a7;
	color:#0097a7;
	font-size:16px;
	padding:15px 0;
	text-align:center;
	text-decoration: none;
	-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
	-o-transition:0.2s all;-moz-transition:0.2s all;-webkit-transition:0.2s all;
}
.button-main a:hover {
	background:#0097a7;
	color:#fff;
}

.mainseotext {
	padding:18px 20px;
	overflow:hidden;
	position:relative;
	line-height:1.7;
	height:20vh;
	
}



.ratingBox {
        font-weight: bold;
        font-size: 12px;
            position: relative;
    text-align: center;
    padding: 7px 20px 7px 20px;
    overflow: hidden;
}

.ratingTitle {
        color: #7e8594;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        display: inline-block;
        margin-top: 15px;
}

.ratingTitle .icon {
        width: 13px;
        height: 13px;
        top: -1px;
        fill: #7e8594;
}

.ratingTitle:hover .icon {
        fill: #ec164f;
}

.fullMovie .ratingBox {
        text-align: center;
}

.ratingBox  span {
        display: inline-block;
        margin-bottom: -10px;
        white-space: nowrap;
		cursor:pointer;
}

.ratingBox .icon {
        width: 20px;
        height: 20px;
        fill: #7e8594;
        margin-right: 3px;
}

.ratingBox  span span {
        color: #7e8594;
}

.ratingBox .icon,
.ratingBox a span {
        -webkit-transition: 0.2s;
        -moz-transition: 0.2s;
        transition: 0.2s;
}

.ratingBox .icon-thumb-up {
        top: -4px;
}

.ratingBox .icon-thumb-down {
        bottom: -1px;
        -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        transform: rotateY(180deg);
}

.ratingBox  span:hover .icon-thumb-up {
        fill: #75C71B;
}

.ratingBox  span:hover .icon-thumb-down {
        fill: #FF293D;
}

.ratingBox  span:hover .icon-thumb-up + span {
        color: #75C71B;
}

.ratingBox  span:hover .icon-thumb-down + span {
        color: #FF293D;
}

.ratingBar {
        width: 100%;
        display: inline-block;
        margin-right: 10px;
        position: relative;
        bottom: -4px;
}

.ratingBody {
        margin: 0 0 0 10px;
}

.ratingBox .ratingPlus,
.ratingBox .ratingMinus {
        height: 4px;
        padding: 0 3px;
}

.ratingBox .ratingPlus {
        background: #75C71B;
        float: left;
        margin-left: -10px;
        -webkit-border-radius: 5px 0 0 5px;
        -moz-border-radius: 5px 0 0 5px;
        border-radius: 5px 0 0 5px;
		width: 50%;
}

.ratingBox .ratingMinus {
        background: #FF293D;
        float: right;
        margin-right: -6px;
        -webkit-border-radius: 0 5px 5px 0;
        -moz-border-radius: 0 5px 5px 0;
        border-radius: 0 5px 5px 0;
		width: 50%;
}

.ratingBox .free .ratingPlus,
.ratingBox .free .ratingMinus {
        background: #7e8594;
}

.ratingBox .ratings {
    color: #75C71B;
    margin: 5px -6px 0 -10px;
    text-align: left;
}

.ratingBox .ratings span.r2 {
    color: #FF293D;
    float: right;
}

.ratingBox .ratings2 {
        color: #FF293D;
        float: right;
		margin: 0 -6px 0 0;
		text-align:right;
}

.ratingBox .free .ratings,
.ratingBox .free .ratings span {
        color: #7e8594;
}
.rate-data {
    display: none;
}
.rate-btn{
	width: 100%;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    margin: 12px 0 20px 0px;
}
.rate-plus,
.rate-minus{
	    padding: 12px 0;
    font-size: 14px;
    display: inline-block;
    line-height: 20px;
    color: #0097a7;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #e9eef0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 50%;
}

.new--ratings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 17px;
    margin-left: 25px;
}
.new--rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
}
.new--rating:not(:last-child) {
	margin-right: 12px;
}
.new--rating svg {
	margin-right: 3px;
    fill: #6b6b6b;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.new--rating i{
	padding-right: 2px;
}

.titleblock-ncount {
	padding: 14px 20px;
    -webkit-box-shadow: 0px 5px 21px 0px rgba(136,158,168,0.11);
    -moz-box-shadow: 0px 5px 21px 0px rgba(136,158,168,0.11);
    box-shadow: 0px 5px 21px 0px rgba(136,158,168,0.11);
    overflow: hidden;
    clear: both;}
.titleblock-ncount span {
	font-weight: 600;}
.titleblock-ncount span span{
	color: #319cc8;}


.ui-dialog{overflow:hidden;padding:0;position:absolute;max-width:300px; background-color:none;border-radius:3px;box-shadow:0px 0px 0px 5px rgba(0, 0, 0, 0.15);}
.ui-dialog .ui-dialog-titlebar{padding:10px;position:relative;border-radius:3px 3px 0 0; font-family: Arial; color:#8C1A1B; line-height:20px;}
.ui-widget-header{border-bottom:1px solid #eee;color:#000;font-size:1.2em;}
.ui-dialog .ui-dialog-title{float:left;margin-right:20px;}
.ui-dialog .ui-dialog-titlebar-close,.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{position:absolute;right:5px;top:10px;margin:0;padding:0;width:14px;height:14px;background-color:none!important;background-image:url(/templates/kinosimka/images/close_prowebz.png);background-repeat:no-repeat;background-position:0 -85px;border:none;box-shadow:none;opacity:.5;}
.ui-dialog .ui-dialog-content{background:none;border:0;overflow:hidden;padding:10px;position:relative;font-size:14px; line-height:21px; color:#515151;}
.ui-widget-content{background:#fff;}
.ui-dialog .ui-dialog-buttonpane{background-image:none;background:#f9f9f9;border-top:1px solid #e9e9e9;margin:0;padding:10px;text-align:left;border-radius:0 0 3px 3px;}
.ui-dialog-buttonset{text-align:right;}
.ui-dialog-buttonset .ui-button{margin-left:5px;}
.ui-helper-clearfix:after{clear:both;content:".";display:block;height:0;visibility:hidden;}
.ui-helper-clearfix{display:inline-block;}
* html .ui-helper-clearfix{height:1%;}
.ui-helper-clearfix{display:block;}
.ui-icon{background-repeat:no-repeat;display:block;overflow:hidden;text-indent:-99999px;}
.ui-button {
    margin: 6px auto 0 auto;
    background: #fff;
    color: #4e4b4b;
    border: 1px solid #8eb0bd;
    padding: 11px 15px;
    text-decoration: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
#loading-layer { font-size: 14px; background: #0097a7; padding: 20px; text-align: center; color: #fff; border-radius: 8px; z-index:8888 !important;  }
.offline, .online {text-align: center; width:93px; padding: 1px 5px; display:inline-block; 
color: #fff; background-color: #626262; border-radius:4px;}
.online { background: #99ce1b }
.mainseotext.open {
	height:100%;
}
.mainseotext a{
	color:#444;
	text-decoration: none;
	display:inline;
	border-bottom:1px solid #e1eaef;
	padding:0px 0 2px 0;
	-o-transition:0.2s all;-moz-transition:0.2s all;-webkit-transition:0.2s all;
}
.mainseotext a:hover {
	border-color:#fff;
}
.mainseotext li {
	margin:0 0 10px 0;
}
.mainseotext:before {
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:1px;
	background:#e9eef0;
	
}

.mainseotext:after {
	content:"";
	position:absolute;
	top:3px;
	left:0px;
	width:100%;
	height:1px;
	background:#e9eef0;
	
}
.rateme {font-size:13px;}
.rateme span{color:#777777}
.rateme i{font-size:16px;color:#888;}
.hideshow-text {
	position:relative;
	width:100%;
	text-align:center;
	color:#a9b6bf;
	cursor: pointer;
	height:50px;
	padding:10px 0 0 0;
	
}
.vidra {
    position: absolute;
    margin: -2px 5px;
    color: #afacac;
}
.pagi-nav {line-height:40px; margin:20px 0 30px 0; text-align:center; font-size:12px;}
.pagi-nav > span {display:inline-block;}
.pprev, .pnext {text-align:center; color:#333; width:70px; border-radius:3px; background-color:#EFEFEF; box-shadow:0px 1px 3px rgba(0, 0, 0, 0.13);}
.pnext a, .pprev a {color:#fff; display:block; text-decoration: none; background-color:#3FA2CC; border-radius:3px; box-shadow:0px 1px 3px rgba(0, 0, 0, 0.13);}
.navigation {text-align:center; padding:0 10px;}
.navigation a, .navigation span {display:inline-block; padding:0 2px; color:#444; border-radius:10px; 
min-width:40px; margin:0 2px 7px 0; background-color:#fff; text-decoration: none; box-shadow:0px 1px 3px rgba(0, 0, 0, 0.13);}
.navigation span {color:#555; background-color:#EFEFEF; box-shadow:none;}
.pagi-nav a:hover {color:#333; background-color:#fff; text-decoration: none}
.navigation span.nav_ext {background: #fff; color:#444; box-shadow:0px 1px 3px rgba(0, 0, 0, 0.13);}
.dle-comments-navigation .pagi-nav {margin-bottom:0; padding-bottom:20px;}
.hideshow-text:after {
	content:"";
	position:absolute;
	bottom:0px;
	left:calc(50% - 17px);
	width:23px;
	height:23px;
	background:url(/templates/kinosimka/svg/down-arrow.svg) no-repeat;
	-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg); 
transform: rotate(0deg);
	-o-transition:0.2s all;-moz-transition:0.2s all;-webkit-transition:0.2s all;
}
.hideshow-text.show span {
	display:none;
}
.hideshow-text.show {
	height:20px;
	padding:0px;
}
.hideshow-text.show:after{
	-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg); 
transform: rotate(180deg);
}
.hideshow-text:before {
   content: '';
    position: absolute; 
    right: 0; 
	top: -50px; 
    width: 100%; 
    height: 50px;
    background: -moz-linear-gradient(top, rgba(255,255,255, 0.2), #fff 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255, 0.2), #fff 100%);
    background: -o-linear-gradient(top, rgba(255,255,255, 0.2), #fff 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255, 0.2), #fff 100%);
    background: linear-gradient(to bottom, rgba(255,255,255, 0.2), #ff 100%);
}
.hideshow-text.show:before {
	display:none;
}

.nav-vf {
	position:relative;
	margin:0px 0 0 0;
	padding:10px 0 0 0;
}
.nav-vf:before {
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:1px;
	background:#e9eef0;
	
}
.nav-vf:after {
	content:"";
	position:absolute;
	top:3px;
	left:0px;
	width:100%;
	height:1px;
	background:#e9eef0;
	
}
.nav-vf li {
	position:relative;
}
.nav-vf li a{
	display:block;
	background:#444;
	padding:20px 20px;
	font-size:14px;
	text-decoration: none;
	color:#fff;
	
	-o-transition:0.2s all;-moz-transition:0.2s all;-webkit-transition:0.2s all;
}
.nav-vf li a div {
		width:90%;
	 text-overflow: ellipsis;
	overflow:hidden;
	white-space: nowrap;
}
.nav-vf li a:hover {
	background:#585757;
}
.nav-vf li:before {
	content:"";
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:1px;
	background:#565656;
	
}
.nav-vf li:after {
	content:"";
	position:absolute;
	bottom:3px;
	left:0px;
	width:100%;
	height:1px;
	background:#565656;
	
}
.nav-vf li:last-of-type:before{
	display:none;
}
.nav-vf li:last-of-type:after{
	display:none;
}


.nav-vf li a span {
	position:absolute;
	top:18px;
	right:20px;
	background:url(/templates/kinosimka/svg/right-arrow.svg) no-repeat;
	width:20px;
	height:20px;
}

.userinfo { padding-left: 110px }
.userinfo .left { margin-left: -110px; width: 80px }
.userinfo .left .avatar { margin:0 0 5px 5px; float:none !important; }
.userinfo .right { margin: 0; width: 95% }
.info-us {
    font-size: 12px;
    color: #808080;
    margin: 0 0 3px 0;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.info-us div {
    font-weight: 500;
    color: #c3ccd1;
    font-size: 12px;
    margin: 0 0 -2px 0;
}

.uibtn { font-size: 11px }
.ussep { padding-top: 1.2em }
.left {float:left;}
.right {float:right;}

footer {
padding:104px 0 0 0;
}
footer .footer{
	position:absolute;
	bottom:0px;
	width:100%;
	background:#444;
	height:104px;
	overflow:hidden;
	
}
.wizzistar {
	float:right;
	margin:35px 30px 0 0;
	color:#62686a;
	font-size:14px;
	position:relative;
	padding:0 0 0 40px;
}
.wizzistar div {
	margin:3px 0 0 0;
	font-weight: 700;
}
.wizzistar a {
display:block;
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
}
.wizzistar:before {
	position:absolute;
	content:"";
	left:0px;
	top:7px;
	background:url(/templates/kinosimka/svg/copy.svg) no-repeat;
	width:30px;
	height:30px;
}
.email-info {
	padding:30px 20px 20px 20px;
	float:left;
}
.email-info div {
	color:#7b7b7b;
	margin:0 0 7px 0;
}
.email-info a {
	color:#fff;
	display:inline;
	text-decoration: none;
	border-bottom:1px solid #676767;
	padding:0 0 2px 0;
	-o-transition:0.2s all;-moz-transition:0.2s all;-webkit-transition:0.2s all;
}
.email-info a:hover {
	border-color:#303e47;
}
.collections-item {
width: 31.1%;
    display: inline-block;
    margin: 8px;
    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: default;
    background-clip: border-box;
    color: #6b6e84;
}

.collections-item a {
	display: block;
	position: relative;
	overflow: hidden;
	padding: 11px;
	background-color: #6a6b6b17;
	border-radius: 4px;
	-webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.01);
	box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.01);
}

.collections-item .cover {
	overflow: hidden;
	position: relative;
}

.collections-item .img {
	padding-top: 75%;
}

.collections-item .img img {
	border-radius: .1875rem;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	   box-shadow: 0 2px 6px 0 rgba(0,0,0,0.1);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


.collections-item:hover .img img  {
    -moz-transform: scale(1.2) rotate(2deg);
    -webkit-transform: scale(1.2) rotate(2deg);
    -o-transform: scale(1.2) rotate(2deg);
    -ms-transform: scale(1.2) rotate(2deg);
    transform: scale(1.2) rotate(2deg);
}

.collections-item .title {
	position: absolute;
	width: 100%;
	z-index: 11;
	bottom: 0rem;
	background-color: #1e242ea3;
	padding: 1rem 0;
	text-align: center;
	font-size: 15px;
	color: #fff;
	font-weight: 700;
}

.collections-item .collections-count {
	color: #fff;
	display: inline-block;
	background-color: #e33232;
	border-radius: 3px;
	padding: 5px 7px;
	font-size: 10px;
	position: absolute;
	top: 10px;
	right: 10px;
}

@media only screen and (min-width : 740px) and (max-width : 950px) {
	.collections-item {
		width: 47.8%;
    float: left;
    margin: 8px;
	    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: default;
    background-clip: border-box;
    color: #6b6e84;
	}
	.collections-item .img {
		padding-top: 53%;
	}
}

@media only screen and (max-width : 740px) and (min-width : 548px) {
	    	.collections-item {width: 48.7%;    margin: 6px 3px; }
			.collections-item a{    padding: 7px;}
}

@media only screen and (max-width : 548px) and (min-width : 321px) {
	    	.collections-item {width: 48%;    margin: 6px 3px;}
			.collections-item .title{font-size: 12px;}
			.collections-item a{    padding: 7px;}
}

@media only screen and (max-width : 320px) and (min-width : 150px) {
	.collections-item {
    width: 100%;
    padding: 0;
    margin: 10px 0;
	}
	.collections-item .img {
		padding-top: 45%;
	}
	.collections-item .title{
		    font-size: 13px;
	}
}
@media screen and (min-width:320px) and (max-width:768px){
	.menu-el {
	  width: calc(100%/3 - 0px);
	}
	.info-menu {
	  margin: 0;
	      text-align: center;
    width: 100%;
	}
	.menu-coin {
	  padding: 5px;
	}
	.menu-ele a {
	  height: 105px;
	}
	.info-menu .names{
		font-size: 12px;
	}
	.info-menu .names div {
	  font-size: 11px;
	}
}
@media screen and (max-width:319px){
	.menu-el {
	   width: calc(100%/1 - 0px);
	}
	.i1,.i2,.i3,.i4,.i5,.i6 {
		margin: 7px 0px 10px 0;
		width: 28px;
    height: 28px;
	}
}
@media screen and (min-width:320px) and (max-width:375px){
	.i1,.i2,.i3,.i4,.i5,.i6 {
		margin: 7px 0px 10px 35px;
		width: 28px;
    height: 28px;
	}
}
@media screen and (min-width:375px) and (max-width:413px){
	.i1,.i2,.i3,.i4,.i5,.i6 {
		margin: 7px 0px 5px 45px;
	}
}
@media screen and (min-width:414px) and (max-width:447px){
	.i1,.i2,.i3,.i4,.i5,.i6 {
		margin: 7px 0px 3px 54px;
	}
}
@media screen and (min-width:447px) and (max-width:500px){
	.i1,.i2,.i3,.i4,.i5,.i6 {
		margin: 7px 0px 3px 54px;
	}
}
@media screen and (min-width:500px) and (max-width:555px){
	.i1,.i2,.i3,.i4,.i5,.i6 {
		margin: 7px 0px 3px 62px;
	}
}
@media screen and (min-width:555px) and (max-width:569px){
	.i1,.i2,.i3,.i4,.i5,.i6 {
		margin: 7px 0px 3px 70px;
	}
}
@media screen and (min-width:569px) and (max-width:600px){
	.i1,.i2,.i3,.i4,.i5,.i6 {
		margin: 7px 0px 3px 70px;
	}
}
@media screen and (min-width:600px) and (max-width:640px){
	.i1,.i2,.i3,.i4,.i5,.i6 {
		margin: 7px 0px 3px 80px;
	}
}
@media screen and (min-width:640px) and (max-width:700px){
	.i1,.i2,.i3,.i4,.i5,.i6 {
		margin: 7px 0px 3px 90px;
	}
}
@media screen and (min-width:700px) and (max-width:768px){
	.i1,.i2,.i3,.i4,.i5,.i6 {
		margin: 7px 0px 3px 100px;
	}
}
.title_sp {
 padding:10px 0px 0px 14px;   
}
.title_sp a{
    margin: 0px 2px -8px 6px;
    color: #6b6b6b;
    text-decoration: none;
    background: #fff;
    display: inline-block;
    padding: 8px 12px;
     border: 1px solid #e9eef0;
    -o-transition: 0.2s all;
    -moz-transition: 0.2s all;
    -webkit-transition: 0.2s all;
}

.title_sp a:hover {
	border-color:#0097a7;
}

#tr_sp {
padding:10px 20px 0px 20px;
    overflow:hidden;
    line-height:1.7;
}
#actors_sp {
padding:10px 20px 0px 24px;
    overflow:hidden;
    line-height:1.7;
}

.infotor {padding:7px 3px 7px 7px;margin:3px 10px;border:1px solid #E1E1E1;border-radius:3px; color: #717171;line-height: 1.7;}
.infotor i{font-size:17px;padding:1px;color:#84ce19;}
.infotor span{padding-left:7px;}
.infotor a{color:#0E6483;}
.infotor a:hover{text-decoration:none;color:#0B8DBC;}
.f-story {
    font-family: sans-serif;
    line-height:1.7;
     font-size: 13px;
    padding:20px 20px 20px 20px;
    position:relative;
}
.b1:before {
	content:"";
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:1px;
	background:#e9eef0;
	
}
.b1:after {
	content:"";
	position:absolute;
	bottom:3px;
	left:0px;
	width:100%;
	height:1px;
	background:#e9eef0;
	
}
.b2:before {
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:1px;
	background:#e9eef0;
	
}
.b2:after {
	content:"";
	position:absolute;
	top:3px;
	left:0px;
	width:100%;
	height:1px;
	background:#e9eef0;
	
}
.infokachestvo{padding:3px 11px;}
.kachestvo{margin:-15px 0px 2px 2px;color:#717171;}
.kachestvo i{font-size:17px;margin-right:6px;}
.kachestvo a{color:#0B8DBC;text-decoration:underline;font-weight:normal;}
.kachestvo a:hover{text-decoration:none;}
.berrors {
    background: #f5f8fb;
    color: #6b6b6b;
    margin: 20px 20px 20px 20px;
    padding: 15px 20px;
    line-height: 21px;
    border: 1px solid #d8e6f7;}

.berrors b { color:#212121;}
.berrors a { color:#1E729B; text-decoration:underline; font-weight:700;}
.berrors a:hover {text-decoration:none;}
.berrors-full {
    background: #fdfdfd;
    color: #828181;
    margin: 10px 20px 10px 20px;
    padding: 10px 20px 1px 20px;
    line-height: 17px;
    border: 1px solid #d8e6f7;}

.link-torrent {
margin:20px;
}
.link-torrent a {
	display:block;
	border:2px solid #6cd626;
	color:#6cd626;
	font-size:16px;
    font-weight:700;
	padding:15px 25px;
	text-decoration: none;
	-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
	-o-transition:0.2s all;-moz-transition:0.2s all;-webkit-transition:0.2s all;
}
.full-comms {
padding: 0px 43px 0 21px;
    overflow:hidden;
}
.infoform{margin:-5px 0px 2px 33px;line-height:19px;color:#717171;}
    .star-comm {
    position:absolute;
        top:-10px;
        right:-10px;
    }
    .hiden {
    display:none;
    }
    
    .star-bg{
    width:25px;
        height:25px;
        background:#fff;
        -webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
        position:relative;       
    }
    .star-bg:before {
    content:"";
        position:absolute;
        width:13px;
        height:13px;
        top:5px;
        left:6px;
        background:url(/templates/kinosimka/svg/star.svg);
    }
    
    .onlines {
    width:8px;
        height:8px;
        margin:8px auto 0 auto;
        background:#32CD32;
        -webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
    }
.link-blt div{padding:6px 0px;color:#777;}
.link-blt div a{background:url(/templates/kinosimka/images/dwt.png) left no-repeat;text-decoration:underline;padding-left:22px;margin-left:12px;font-size:16px;font-family:Arial;line-height:20px;}
.link-blt div a:hover{text-decoration:none;}
.link-blt div a span{padding:0px;color:#0B8DBC;}

.link-bl {margin:1px auto; box-shadow: inset 0 -3px 1px -2px rgba(0,0,0,0.3);}
.link-bl div {padding:6px 0px; color:#777;}
.link-bl div a {background: url(/templates/kinosimka/images/dw.png) left no-repeat; text-decoration: underline; padding-left:22px; margin-left:12px; font-size: 16px; font-family: Arial; line-height:20px;}
.link-bl div a:hover {text-decoration: none;}
.link-bl div a span {padding:0px; color:#0B8DBC;}

.tabformat{border-top:1px solid #efefef;}


.mass_comments_action{text-align:right;padding:5px 15px;background-color:#f6f6f6;margin:20px 0;}
      .koment-inputs input {
    width: 32%;
    float: left;
    box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.2);
    background-color: #fafafa;
        padding: 12px 16px;
            border: 1px solid #d8e6f7;
        border-radius: 3px;
}
.koment-inputs button{float:right;margin:0px -20px;;}
.koment-inputs, .ac-textarea, .ac-protect{margin-bottom:15px;}
.koment-textarea textarea{display:block;width:100%;height:70px;margin:10px 0px;padding:10px;background-image:none;background-color:#fafafa;border:1px solid #d8e6f7;box-shadow:inset 0 0 1px 0 rgba(0,0,0,0.2);border-radius: 4px;}
.koment-item{padding: 0 1px 15px 31px;margin-top:15px;border-bottom:1px solid #e3e3e3;}
.koment-left{float:left;margin-left:-40px;width:35px;height:35px;overflow:hidden;position:relative;background:url(/templates/kinosimka/images/avatar.jpg);}
.koment-right{float:right;width:100%;padding-left:10px;}
.koment-left img{width:100%;min-height:100%;}
.koment-top-info{}
.koment-info-line{position:relative;padding-right:100px;}
.koment-date{color:#aaaaaa;font-size:12px;}
.koment-author{float:left;color:#888;font-size:10px;display:inline-block;}
.koment-author{font-size:12px;font-weight:bold;margin:0 10px 0 0;color:#600606;}
.koment-author a{color:#350405;}
.koment-text{margin:10px 0;min-height:20px;color:#333;}
.koment-body{}
.koment-body span{float:right;}
.koment-body a span{color:#335B6E;padding-left:5px;}
.koment-body a i{color:#777;padding-left:3px;}
.koment-rfunk{padding:7px 0;}
.signature{font:italic 11px Georgia, "Times New Roman", Times, serif;margin-top:10px;padding-top:10px;border-top:1px dashed #e3e3e3;}
.koment-bottom-info{}
.koment-bottom-info ul{text-align:right;}
.koment-bottom-info ul li{display:inline-block;margin-left:5px;}
.koment-bottom-info ul li:first-child, .koment-bottom-info ul li:nth-child(2){float:left;margin-left:0;margin-right:10px;}
.koment-bottom-info ul li a{font-size:12px;}
.koment-bottom-info ul li i{margin-right:10px;}
.koment-tree-list .koment-tree-list{background-color:#f6f6f6;padding-top:15px;margin-top:-15px;}
.koment-rate{position:absolute;right:20px;top:10px;line-height:30px;}
.koment-rate span.ratingtypeplusminus{display:block;padding:0 30px;color:#444;font-weight:700;font-size:12px;}
.koment-rate a{display:block;position:absolute;top:0;left:5px;text-align:center;line-height:30px;font-size:18px;font-weight:700;color:#61b804;}
.koment-rate a:last-child{left:auto;right:5px;line-height:30px;color:#ec000b;top:0px;}
.koment-rate a:hover{opacity:0.7;}
.koment-rate > span > span.ratingzero{color:#444444;}
.koment-rate > span > span.ratingtypeplus{color:#06b601;}
.koment-rate > span > span.ratingplus{color:green;}
.koment-rate > span > span.ratingminus{color:red;}
.btn-group > .btn{position:relative;}
.btn{display:inline-block;*display:inline;padding:2px 8px;margin-bottom:0;font-size:14px;line-height:20px;color:#0097a7;text-align:center;vertical-align:middle;cursor:pointer;background-color:#fff;border:1px solid #e9eef0;-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;}
.qe {
margin:0 10px 0 0px;
}
.btn i {
margin:0 5px 0 0;
}
.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled]{color:#fff !important;background-color:#0097a7;*background-color:#d9d9d9;}
.btn:active,
.btn.active{background-color:#cccccc \9;}
.btn:first-child{*margin-left:0;}
.btn:hover{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;}
.btn:focus{outline:0;}
.btn.active,
.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);}
.btn.disabled,
.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active{z-index:2;}
.rate-data {
display:none;
}

.rating-mg .progress{margin:3px 0px 3px 0px;padding:0px;width:100%;}
.progress{height:4px;margin-bottom:20px;overflow:hidden;background-color:#d8391e;background-image:-moz-linear-gradient(top, #ee8144, #d8391e);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee8144), to(#d8391e));background-image:-webkit-linear-gradient(top, #ee8144, #d8391e);background-image:-o-linear-gradient(top, #ee8144, #d8391e);background-image:linear-gradient(to bottom, #ee8144, #d8391e);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee8144', endColorstr='#ffd8391e', GradientType=0);}
.progress .bar-success{width:50%;}
.progress-success .bar, .progress .bar-success{background-color:#3a8e0b;background-image:-moz-linear-gradient(top, #84ce19, #3a8e0b);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#84ce19), to(#3a8e0b));background-image:-webkit-linear-gradient(top, #84ce19, #3a8e0b);background-image:-o-linear-gradient(top, #84ce19, #3a8e0b);background-image:linear-gradient(to bottom, #84ce19, #3a8e0b);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff84ce19', endColorstr='#ff3a8e0b', GradientType=0);}
.progress-danger .bar, .progress .bar-danger{background-color:#d8391e;background-image:-moz-linear-gradient(top, #ee8144, #d8391e);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee8144), to(#d8391e));background-image:-webkit-linear-gradient(top, #ee8144, #d8391e);background-image:-o-linear-gradient(top, #ee8144, #d8391e);background-image:linear-gradient(to bottom, #ee8144, #d8391e);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee8144', endColorstr='#ffd8391e', GradientType=0);}
.progress .bar{float:left;height:4px;font-size:12px;color:#ffffff;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;}
.progress .bar + .bar{-webkit-box-shadow:inset 1px 0 0 #d8d8d8, inset 0 1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 1px 0 0 #d8d8d8, inset 0 1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 1px 0 0 #d8d8d8, inset 0 1px 0 rgba(0, 0, 0, 0.15);}
.rating-mg .result{margin:5px 0;font-family:'PF DinDisplay','Trebuchet MS',Arial;font-size:12px;}
.clearfix:before, .clearfix:after{content:" ";display:table;}
.rating-mg .result .like{display:block;float:left;width:50%;}
.rating-mg .result .dislike{display:block;float:right;width:50%;text-align:right;}
.rating{width:82px;height:26px;}
.rating_res{background:url('/templates/kinosimka/images/bg_orating.png') no-repeat;color:#f5f5f5;float:left;width:36px;height:26px;margin:0 4px 0 2px;text-align:center;text-decoration:none;font:bold 12px/26px Arial, Helvetica, sans-serif;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;box-shadow:inset 1px 1px 2px rgba(0,0,0,0.25),1px 1px #fff;overflow:hidden;position:relative;}
.rating_res.ogray{color:#aaa;}
.rating_res:hover{color:#fff;}
.rating_bar{width:208px;margin-top:6px;font:bold 10px/15px Tahoma, Geneva, sans-serif;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,0.55);text-align:center;position:relative;}
.rating_bar, #bar_p, #bar_m{background:url('/templates/kinosimka/images/bg_rating.png') no-repeat;height:16px;overflow:hidden;}
#bar_p{float:left;background-position:0 -16px;}
#bar_m{float:right;background-position:100% -32px;}
#bar_s{width:4px;height:15px;position:absolute;top:0;margin-left:-2px;background:url('/templates/kinosimka/images/bg_rating_sep.png') repeat-y;}

.speedi {
float:left;
    margin:0 8px 0 0;
    color:#b6bfc5;
    text-overflow: ellipsis;
}
.speedbar {
padding:10px;
    font-size:12px;
    color: #9a9595;
    width:100%;
	 text-overflow: ellipsis;
	overflow:hidden;
	white-space: nowrap;
}
.speedbar a {
text-decoration:none;
    border-bottom:1px solid #e1eaef;
    color:#0097a7;
    display:inline;
    padding:0px 0 2px 0;
}

.navjanr {
	position:relative;
	margin:0px 0 0 0;
	padding:20px 0 0 0;
	    position: relative;
    margin: 0px 0 0 0;
    padding: 20px 0 0 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}


.navjanr li {
    position: relative;
    width: calc(100%/2 - 10px);
    margin: 3px;
    -webkit-box-shadow: 0px 5px 21px 0px rgba(136,158,168,0.11);
    -moz-box-shadow: 0px 5px 21px 0px rgba(136,158,168,0.11);
    box-shadow: 0px 5px 21px 0px rgba(136,158,168,0.11);
}
@media screen and (max-width: 705px){
	.navjanr li {
	    width: calc(100%/2 - 10px);
	}
    .navigation a, .navigation span {margin: 5px;}
   .pprev, .pnext { margin: 3px;}
}


.navjanr li a {
    display: block;
    background: #fff;
    padding: 15px;
    font-size: 16px;
    text-decoration: none;
    color: #111;
    -o-transition: 0.2s all;
    -moz-transition: 0.2s all;
    -webkit-transition: 0.2s all;
}
.navjanr li a div {
    width: 90%;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}
.navjanr li a:hover {
	background:#fff;
}


.navjanr li:last-of-type:before{
	display:none;
}
.navjanr li:last-of-type:after{
	display:none;
}


.navjanr li a span {
	position:absolute;
	top:18px;
	right:20px;
	background:url(/templates/kinosimka/svg/right-arrow2.svg) no-repeat;
	width:20px;
	height:20px;
	display: none;
}

@media (min-width:1025px) { 
    .short-story {
	font-size:14px;
} 
    
    .info-s {
    font-size: 12px;
        color: #656565;

}
.content article .title a  {
    font-size: 15px;

}
    
    .f-story {
    font-size: 14px;

}
    
    body {
    color: #4e4b4b;
}
    
}
.kinosimka-comments {
padding:18px 20px 20px 20px;
    overflow:hidden;
    position:relative;
}
.kinosimka-comments:before {
	content:"";
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:1px;
	background:#e9eef0;
	
}
.kinosimka-comments:after {
	content:"";
	position:absolute;
	bottom:3px;
	left:0px;
	width:100%;
	height:1px;
	background:#e9eef0;
	
}

.simka-comm-left {
float:left;
    width:45px;
    position:relative;
}
.simka-comm-left img {
width:45px;
    height:45px;
    -webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.simka-comm-right {
float:left;
    width:calc(100% - 65px);
    margin:0 0 0 20px;
}
.autor-simka-comm {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.autor-simka-comm a {
text-decoration:none;
    font-size:12px;
    color:#111;
    font-weight:700;

}
.autor-simka-comm div.autor-s {
display:inline-block;
    margin:-5px 20px 0 0;
    font-weight:700;
}
.autor-simka-comm div.datee {
margin-top: 5px;
opacity:0.5;
display:inline-block;
font-size: 10px;  
}
.simka-mess-comm {
line-height:1.5;
    margin:10px 0 0 0;
}
.nav-comm-simka {
margin:20px 0 0 0;
    float:right;
}
.nav-comm-simka a {
text-decoration:none;
    color:#8e9ea8;
    font-size: 12px;
}
.nav-comm-simka div {
display:inline-block;
    margin:0 10px 0 0;
}


@media (min-width: 320px) and (max-width: 550px){
   
    .my__content {
		display: flex;
	    flex-wrap: wrap;
        justify-content: space-between;
		align-items: center;
    }
    .my__content article.related {
    	display: flex;
        flex-direction: column;
        align-items: center;
        flex-basis: 48%;
        justify-content: center;
        overflow: hidden;
    }
    .related .poster img {
		height: 55px;    
    }
    .related .info-article {
    	margin: 10px 0;
        width: 100%;
        text-align: center;
        float: none;
    }
    .berrors .main-title {
   		padding: 6px;
    }
    .berrors .main-title .title-e {
   		font-size: 12px; 
    }
    header .logotype {
    	width: 150px;
        margin: 10px 0 0 20px;
    }
    header .logotype a {
	display:block;
	width:150px;
	height:50px;
	background:url(/templates/kinosimka/svg/logotype2.svg) no-repeat;
}
}


@media (max-width:400px) { 
.title_sp a { margin: 1px 2px 3px 6px; }
    }
@media screen and (min-width: 320px) and (max-width: 600px) {
	.topmenu nav ul li a{
    padding: 7px 3px;
        height: 60px;

    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
	}
	.topmenu nav ul li a .topmenu-icon{
		margin-right: 4px;
		width: 22px;
    	height: 22px;
	}
	.topmenu nav ul li a .topmenu-meta {
		width: 100%;
		text-align: center;
	}
	.topmenu nav ul li a .topmenu-meta div {
		display: none;
	}
}
@media screen and (min-width: 247px) and (max-width: 319px) {
	.topmenu nav ul li a{
		padding: 7px 3px;
	}
	.topmenu nav ul li a .topmenu-icon{
		margin-right: 4px;
		width: 19px;
    	height: 19px;
	}
	.topmenu nav ul li {
	    width: 100%;
	}
	.topmenu nav ul li a .topmenu-meta div {
		display: none;
	}
}
@media screen and (min-width: 100px) and (max-width: 246px) {
	.topmenu nav ul li a{
		padding: 7px 3px;
	}
	.topmenu nav ul li a .topmenu-icon{
		margin-right: 4px;
		width: 15px;
    	height: 15px;
	}
	.topmenu nav ul li {
	    width: 100%;
	}
	.topmenu nav ul li a .topmenu-meta {
	    font-size: 12px;
	}
	.topmenu nav ul li a .topmenu-meta div {
		display: none;
	}
}
@font-face {
  font-family: 'FontAwesome';
  src: url('/templates/kinosimka/fonts/fontawesome-webfont.eot?v=4.3.0');
  src: url('/templates/kinosimka/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('/templates/kinosimka/fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('/templates/kinosimka/fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('/templates/kinosimka/fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('/templates/kinosimka/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;

}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
.fa-star-o:before {
  content: "\f006";
}
.fa-calendar-o:before {
  content: "\f133";
}


.fa-user:before {
  content: "\f007";
}

.fa-play:before {
  content: "\f04b";
}

.fa-download:before {
  content: "\f019";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-film:before {
  content: "\f008";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-mail-reply:before {
  content: "\f112";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-play-circle:before {
  content: "\f144";
}


.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-play-circle :before {
  content: "\f144";
}

.fa-map-marker:before {
    content: "\f041";
}

.fa-ellipsis-h:before {
    content: "\f141";
}

.fa-cog:before {
    content: "\f013";
}

