* {
	box-sizing: border-box;
}

@font-face {
  font-family: 'Roboto', sans-serif;
  src: url(../fonts/Roboto-Light.ttf) format('ttf');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto', sans-serif;
  src:  url(../fonts/Roboto-Regular.ttf) format('ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto', sans-serif;
  src:  url(../fonts/Roboto-Medium.ttf) format('ttf');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
	--focus-color: #C82C28;
	--focus-color-hover: #cd3834;
	--white-color: #fff;
	--font-color: #333;
	--black-color: #000;
}

body {
	margin: 0;
	background: url(../images/zimorodok-background.webp) 50%0 no-repeat #000;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	color: #3a3a3a;
	padding: 0!important;
	width: auto!important;
	max-width: none!important;
	min-width: auto!important;
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

input, textarea, button[type="submit"], select {
	border: none;
	outline: none;
	background: #c7c7c7;
	border-radius: 2px;
	font-family: 'Roboto', sans-serif;
	color: #3a3a3a;
}

select {
	line-height: 27px;
	padding: 0 10px;
	cursor: pointer;
}

input[type="submit"] {
	padding: 5px 10px;
	background: linear-gradient(200.28deg, #8882B7 0%, #C69BC3 100%);
	color: #f1f1f1;
	cursor: pointer;
}

h1,
h2,
h3,
ul,
ol {
	margin: 0;
	padding: 0;
}

h1, h2, h3 {color: #222222;margin-bottom: 16px;line-height: 1;}

h1 {
	font-size: 24px;
	font-weight: 500;
}

h2 {
	font-size: 21px;
	font-weight: 500;
}

p {
	font-weight: 300;
	font-size: 15px;
	line-height: 26px;
	color: #3a3a3a;
}

li {
	list-style: none;
}

a {
	color: #8882B7;
	text-decoration: none;
}

.container {
	width: 1025px;
	margin: 0 auto;
	padding: 0 15px;
}

.wrapper {
	display: flex;
	flex-direction: column;
}

.header {
	order: 1;
	height: 47px;
	background-color: #f1f1f1;
  border: 2px solid #c7c7c7;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 4px;
	margin-top: 2em;
	padding: 0 10px;
	margin-bottom: 26px;
}

.header ul {
	display: flex;
	align-items: center;
}

.header > ul li {
	border-right: 1px solid #c7c7c7;
	padding: 0 10px 0 10px;
	line-height: 1;
}

.header > ul li:first-child {
	padding-left: 0;
}

.header > ul li:last-child {
	border: none;
}

.header a {
	font-weight: normal;
	color: #3a3a3a;
	font-size: 14px;
}

.header--login li:last-child a {
	color: #fff;
	background: linear-gradient(200.28deg, #8882B7 0%, #C69BC3 100%);
	padding: 7px 10px;
	width: 80px;
	justify-content: center;
	display: flex;
	border-radius: 3px;
}

.header--login li:last-child a:hover {
	background-color: #dfbc02;
}

.header--login ul li {
	margin-left: 15px;
}

.content {
	order: 2;
	background-color: #f1f1f1;
	border: 2px solid #c7c7c7;
	padding: 11px;
	display: none;
	grid-template-columns: 250px 1fr;
	column-gap: 19px;
}

main {
	grid-column: 2;
	grid-row: 1;
}

.choose--season {
	margin-bottom: 2em;
}

.seasons__main {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 12px;
}

.season__item:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgb(41,41,41);
	background: linear-gradient(90deg, rgba(41,41,41,0.7399334733893557) 0%, rgba(41,41,41,0.11528361344537819) 100%);
	transition: .2s all ease;
	border-radius: 4px;
}

.season__item:hover:before {
	background: rgb(41,41,41);
	background: linear-gradient(90deg, rgba(41,41,41,0.6250875350140056) 0%, rgba(41,41,41,0) 100%);
}

.season__item {
	height: 264px !important;
	width: 196px !important;
	border-radius: 4px;
}

.season__item a {
	color: #fff;
	font-size: 2em;
	font-weight: bold;
	z-index: 99;
	margin-left: 1.7em;
}

.season__item a:after {
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
	z-index: 9999;
	transition: .2s all ease;
}

.aside--nav {
	height: 100%;
}

nav {
	background-color: #CFDDF7;
	padding: 7px;
	position: sticky;
	top: 10px;
}

nav li {
	background-color: #AAC5FA;
	padding: 9px 10px;
	margin-bottom: 7px;
	position: relative;
}

nav li:last-child {
	margin: 0;
}

nav li:hover {
	background-color: #80AAF7;
}

nav a {
	color: #3a3a3a;
	display: block;
	margin-left: 13px;
	font-size: 15px;
}

nav a:before {
	content: "";
	position: absolute;
	left: 9px;
	width: 0;
	top: 13px;
	height: 0;
	border-style: solid;
	border-width: 4.5px 0 4.5px 7px;
	border-color: transparent transparent transparent #3a3a3a;
}

.short__story {
	display: grid;
	grid-template-columns: minmax(min-content, max-content) auto;
	gap: 15px;
	margin-bottom: 1.7em;
}
.short__story > img {
	border-radius: 5px;
	object-fit: cover;
}
.short__info > h2 {
	margin-bottom: 10px;
	font-size: 16px;
	text-overflow: ellipsis;
	overflow: hidden;
	width: 414px;
	white-space: nowrap;
}
.short__body {
	display: grid;
}
.short__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}
.short__meta > a {
	color: #f1f1f1;
	background: linear-gradient(200.28deg, #8882B7 0%, #C69BC3 100%);
	padding: 7px 10px;
	justify-content: center;
	display: flex;
	border-radius: 3px;
	font-size: 13px;
}
.short__views {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	color: #767676;
}
.short__info > span {
	line-height: 17px;
}

.short__views span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.short__views span:first-of-type::before {
	content: "";
	background-image: url('../images/views.svg');
	display: block;
	background-size: 19px;
	width: 19px;
	height: 19px;
}

.short__views span:nth-child(2)::before {
	content: "";
	background-image: url('../images/comm.svg');
	display: block;
	background-size: 19px;
	width: 19px;
	height: 19px;
}

.short--actor {
	max-width: 190px;
	float: left;
	background-color: #eee;
	margin-right: 15px;
	margin-bottom: 15px;
}

.short--actor_header {
	background-color: #333;
}

.short--actor_header h2 {
	font-size: 15px;
	margin-bottom: 0;
	text-align: center;
	padding: 10px 0 0;
}

.short--actor_header h2 a {
	color: #eee;
}

.short--actor_header span {
	color: #eee;
	font-size: 11px;
	font-weight: 300;
	text-align: center;
	display: block;
	padding: 2px 0 8px;
}

.short--actor_body {
	padding: 5px;
	line-height: 0;
}

.short--actor_body img:hover {
	opacity: .8;
}

.category-descr {
	margin-bottom: 16px;
}

.ui-dialog {
	background-color: #3b353e;
	color: #f1f1f1;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 300px;
	box-shadow: 0 0 40px rgba(0,0,0, 0.2);
	border-radius: 6px;
	z-index: 9999;
	margin: 0 auto !important;
	left: 0 !important;
	right: 0 !important;
}

#dlereplypopup form {
	margin-top: 10px;
}

.ui-draggable .ui-dialog-titlebar {
	cursor: move;
	display: flex;
	justify-content: space-between;
	padding: 13px 20px;
}

#pm_text {
	height: 100px !important;
	background: #eee;
	resize: vertical;
	padding: 5px;
}

.ui-dialog-title {
	margin-top: 2px;
	float: left;
	font-size: 16px;
	color: #f1f1f1;
}

.ui-icon-closethick {
	cursor: pointer;
	position: absolute;
	right: 8px;
	top: 9px;
	width: 30px;
	height: 30px;
}

.ui-icon, .close {
	display: block;
	overflow: hidden;
	text-indent: -9999px;
	white-space: nowrap;
}

button.ui-dialog-titlebar-close:after {
	content: "x";
	width: 30px;
	height: 30px;
	line-height: 26px;
	text-align: center;
	color: #f1f1f1;
	visibility: visible;
	border-radius: 4px;
	position: absolute;
	right: 20px;
	top: 10px;
	text-indent: 0;
	font-size: 18px;
	background: linear-gradient(200.28deg, #8882B7 0%, #C69BC3 100%);
	cursor: pointer;
}

div#dlesendpmpopup input[type="text"] {
	line-height: 2.5;
	width: 100%;
	margin-bottom: 5px;
	padding: 0 5px;
	background: #eee;
}

button.ui-dialog-titlebar-close {
	visibility: hidden;
}

.ui-dialog .ui-dialog-content {
	padding: 0 20px;
	border: 0;
	overflow: auto;
	position: relative;
	zoom: 1;
	height: auto !important;
	padding-bottom: 11px;
	border-bottom: 1px solid #4a434a;
}

.ui-dialog .ui-dialog-buttonpane {
	padding: 15px 20px;
	text-align: center;
	background-color: #3b353e;
	border-top: 1px solid #282332;
}

#dlereplypopup > b {
	color: #f3a81f !important;
}

.ui-helper-clearfix {
	display: block;
}

.ui-dialog-buttonset {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.ui-dialog-buttonset button {
	border: none;
	outline: none;
	padding: 8px 15px;
	border-radius: 3px;
	cursor: pointer;
}

.ui-dialog-buttonset button:nth-child(2) {
	background: linear-gradient(200.28deg, #8882B7 0%, #C69BC3 100%);
	color: #f1f1f1;
}

.navigation span, .navigation a {
    background: #eee;
    padding: 5px 10px;
    border-radius: 3px;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    gap: 10px;
}

.ads {
	background-color: #cfddf7;
	margin-top: 10px;
	height: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: sticky;
	top: 195px;
}

#small-dialog {
	background: #fff;
	max-width: 640px;
	margin: 40px auto;
	height: 475px;
	position: relative;
	display: grid;
	grid-template-columns: 212px 1fr;
	border-radius: 8px;
}

#small-dialog-reg {
	background: white;
	max-width: 640px;
	margin: 40px auto;
	height: 475px;
	position: relative;
	display: grid;
	grid-template-columns: 212px 1fr;
	border-radius: 8px;
}

.small-dialog--right {
	margin-top: 4em;
}

.v-form__content a {
	display: flex;
	color: #3a3a3a;
	height: 48px;
	-webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 8%), inset 0 0 0 1px rgb(0 0 0 / 6%), inset 0 -1px 0 rgb(0 0 0 / 12%), inset 1px 0 0 rgb(0 0 0 / 6%), inset -1px 0 0 rgb(0 0 0 / 6%);
	box-shadow: 0 1px 2px rgb(0 0 0 / 8%), inset 0 0 0 1px rgb(0 0 0 / 6%), inset 0 -1px 0 rgb(0 0 0 / 12%), inset 1px 0 0 rgb(0 0 0 / 6%), inset -1px 0 0 rgb(0 0 0 / 6%);
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	margin-bottom: 17px;
	position: relative;
}

.v-form__content a:nth-child(1)::before {
	content: "";
	position: absolute;
	background-image: url(../images/ya-auth.svg);
	background-size: 24px;
	background-repeat: no-repeat;
	width: 24px;
	height: 24px;
	left: 10px;
	top: 12px;
}

.v-form__content a:nth-child(2)::before {
	content: "";
	position: absolute;
	background-image: url(../images/google-auth.svg);
	background-size: 24px;
	background-repeat: no-repeat;
	width: 24px;
	height: 24px;
	left: 10px;
	top: 12px;
}

.v-form__content a:nth-child(3)::before {
	content: "";
	position: absolute;
	background-image: url(../images/ok-auth.svg);
	background-size: 13px;
	background-repeat: no-repeat;
	width: 13px;
	height: 24px;
	left: 15px;
	top: 12px;
}

.auth-social {
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 16px;
	padding: 24px 50px 24px 50px;
}

.v-form__title {
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 16px;
	font-weight: 500;
}

.small-dialog--left {
	background: linear-gradient(200.28deg, #4a434a 0%, #18141e 100%);
	border-radius: 8px 0 0 8px;
	position: relative;
}

.small-dialog--left:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 95%;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	background-image: url(../images/desperate-logo.svg);
	background-size: 213px;
	background-repeat: no-repeat;
}

.comment {
	gap: 10px;
	display: flex;
	background: linear-gradient(200.28deg, #e2d8e7 0%, #dfd1d1 100%);
	padding: 10px;
	margin-top: 1em;
}
.comments-tree-item ol {
	margin-left: 24px;
}
.comment button.fbutton5 {
	border: none;
	padding: 0;
	margin: 0;
	outline: 0;
	color: #fffefe;
	background: #d84d4d !important;
	text-decoration: none;
	padding: 5px 10px;
	font-size: 12px;
	cursor: pointer;
	background: none;
	border-radius: 2px;
}
.comment_body-header span {
	font-size: 12px;
	color: #555;
	font-family: 'Roboto', sans-serif;
	margin-left: 1px;
}
.comment_body-header a {
	font-size: 13px;
	font-family: 'Roboto', sans-serif;
}
.comment_body {
	justify-content: space-between;
	display: flex;
	flex-flow: column;
	gap: 10px;
}
.comment_avatar img {
	opacity: .8;
	border-radius: 50%;
	border: 2px solid #b73d22;
}
.comment__text {
	font-size: 13px;
	font-family: 'Roboto', sans-serif;
	line-height: 23px;
}
.comm-letter {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background-color: #000;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 50%;
}

.comm-item {
	display: grid;
	grid-template-columns: 30px auto;
	gap: 15px;
	margin-bottom: 20px;
}

.comm-author,
.comm-author a {
	font-weight: 600;
	color: #8882B7;
	opacity: 1;
}

.comm-reply button {
	background: linear-gradient(200.28deg, #8882B7 0%, #C69BC3 100%);
	color: #f1f1f1;
	border: none;
	padding: 3px 9px;
	border-radius: 3px;
	cursor: pointer;
}

.comm-header span:nth-child(2),
.comm-header span:last-child a {
	margin: 0 15px;
	opacity: .8;
	font-size: 12px;
}

.comm-header span:last-child a {
	margin-left: 0;
}

.comm-body {
	font-size: 14px;
	margin: 11px 0;
}

.bb-editor textarea {
	min-height: 100px;
	margin-bottom: 10px;
	font-family: inherit;
	padding: 5px;
	resize: vertical;
}
.reply-to-comment input {
	line-height: 2;
	padding: 0 5px;
}
.reply-to-comment {
	display: flex;
	gap: 10px;
	margin: 10px 0;
}
.save-buttons input:nth-child(2) {
	background: grey;
}
.save-buttons input {
	padding: 5px 10px;
	background: linear-gradient(200.28deg, #8882B7 0%, #C69BC3 100%);
	color: #fff;
	cursor: pointer;
}
.mass_comments_action {
	background: #c7c7c7;
	padding: 10px;
	margin-top: 10px;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 10px;
}


.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: scale(1); 
	-moz-transform: scale(1); 
	-ms-transform: scale(1); 
	-o-transform: scale(1); 
	transform: scale(1); 
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
	opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out; 
	-moz-transition: opacity 0.3s ease-out; 
	-o-transition: opacity 0.3s ease-out; 
	transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}
/*MAGNIFIC*/
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#080808}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0 0;transform-origin:0 0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}

input#newlogin {
    background: #fff;
    padding: 5px;
    margin-top: 10px;
}

.berrors {
    padding: 20px 10px !important;
}

#b_left, #b_right, #b_center, .bb-sep, #b_url, #b_leech, #b_img, #b_up, #b_video, #b_audio, #b_yt, #b_color, #b_tnl, #b_quote, #b_hide {
    display: none !important;
}

/*---показ оригинальной картинки загруженной на сайт из уменьшенной копии---*/
.highslide-wrapper, .highslide-outline { background: #fff }
	.highslide-image { border: 2px solid #fff }
	.highslide-active-anchor { visibility: hidden } 
	.highslide-active-anchor img { visibility: hidden }
	.highslide-dimming { background-color: black }
	.highslide-html { background-color: white }
	.highslide-loading { display: block; color: white; font-size: 9px; font-weight: bold; text-decoration: none; padding: 3px; border: 1px solid white; background-color: black }
	a.highslide-full-expand { background: url(../dleimages/fullexpand.gif) no-repeat; display: block; margin: 0 10px 10px 0; width: 34px; height: 34px }
	.highslide-display-block { display: block }
	.highslide-display-none { display: none }
	.highslide-caption { display: none; padding: 5px; background: white }
	.highslide-controls { width: 195px; height: 40px; background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif) no-repeat 0 -90px; margin-right: 15px; margin-bottom: 10px; margin-top: 10px }
	.highslide-controls ul { position: relative; left: 15px; height: 40px; list-style: none; margin: 0; padding: 0; background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif) no-repeat 100% -90px }
	.highslide-controls li { float: left; padding: 5px 0; }
	.highslide-controls a { background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif); display: block; float: left; height: 30px; width: 30px; outline: none }
	.highslide-controls a.disabled { cursor: default }
	.highslide-controls a span { display: none }
 
/*---Навигация по картинкам галереи---*/
.highslide-controls .highslide-previous a { background-position: 0 0 }
	.highslide-controls .highslide-previous a:hover { background-position: 0 -30px }
	.highslide-controls .highslide-previous a.disabled { background-position: 0 -60px !important }
	.highslide-controls .highslide-play a { background-position: -30px 0 }
	.highslide-controls .highslide-play a:hover { background-position: -30px -30px }
	.highslide-controls .highslide-play a.disabled { background-position: -30px -60px !important }
	.highslide-controls .highslide-pause a { background-position: -60px 0 }
	.highslide-controls .highslide-pause a:hover { background-position: -60px -30px }
	.highslide-controls .highslide-next a { background-position: -90px 0 }
	.highslide-controls .highslide-next a:hover { background-position: -90px -30px }
	.highslide-controls .highslide-next a.disabled { background-position: -90px -60px !important }
	.highslide-controls .highslide-move a { background-position: -120px 0 }
	.highslide-controls .highslide-move a:hover { background-position: -120px -30px }
	.highslide-controls .highslide-full-expand a { background-position: -150px 0 }
	.highslide-controls .highslide-full-expand a:hover { background-position: -150px -30px }
	.highslide-controls .highslide-full-expand a.disabled { background-position: -150px -60px !important }
	.highslide-controls .highslide-close a { background-position: -180px 0 }
	.highslide-controls .highslide-close a:hover { background-position: -180px -30px }

.comment__reply {
	display: none;
}

.comment_body {
	justify-content: unset;
	gap: 10px;
}