* {
	font-feature-settings: 'pnum' on, 'lnum' on;
}

body {
	padding: 30px 30px 15px 30px;
	font-family: 'Raleway', sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #191918;
}

a,
a:hover {
	text-decoration: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

input,
button,
button:focus,
textarea,
select {
	font-family: 'Raleway', sans-serif;
	outline: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
	border-radius: 0
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

::-webkit-input-placeholder {
	font-weight: 400;
	color: rgba(25, 25, 24, .25);
}

::-moz-placeholder {
	font-weight: 400;
	color: rgba(25, 25, 24, .25);
}

::-moz-placeholder {
	font-weight: 400;
	color: rgba(25, 25, 24, .25);
}

::-ms-input-placeholder {
	font-weight: 400;
	color: rgba(25, 25, 24, .25);
}

:focus::-webkit-input-placeholder {
	color: transparent;
}

:focus::-moz-placeholder {
	color: transparent;
}

:focus::-moz-placeholder {
	color: transparent;
}

:focus::-ms-input-placeholder {
	color: transparent;
}

.container {
	max-width: 1170px;
	padding-top: 60px;
	padding-bottom: 60px;
}

.btn,
.btn:focus {
	background: #8E3A89;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	font-weight: 800;
	color: #FFFFFF;
	border: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	border-radius: 100px;
}

.btn:hover {
	background: #B249AD;
	color: #FFFFFF;
}

#header {
	background: #FDF5FC;
position:sticky;
top:0;
z-index:999;
	border-radius: 20px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

body.fixed #header {
-webkit-box-shadow: 0px 5px 25px 0px rgba(142, 58, 137, .07);
-moz-box-shadow:    0px 5px 25px 0px rgba(142, 58, 137, .07);
box-shadow:         0px 5px 25px 0px rgba(142, 58, 137, .07);
border-radius: 0;
}

#header .container {
	height: 100px;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

body.fixed {
padding-left:0;
padding-right:0;
}

body.fixed #header .container {
	height: 76px;
}

#header .row {
	height: 100%;
	justify-content: flex-start;
	align-items: center;
}

#header .logo a {
	background-image: url(../images/logo.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 262px auto;
	width: 175px;
	height: 72px;
	display: block;
	margin-top: -10px;
	overflow: hidden;
}

body.fixed #header .logo a {
	background-size: 224px auto;
	width: 150px;
	height: 62px;
}

#header .logo span {
	display: none;
}

#header .menu-button .btn {
	height: 48px;
	padding: 0 30px;
	text-transform: uppercase;
	position: relative;
}

body.fixed #header .menu-button .btn {
	height: 46px;
}

#header .menu-button strong {
	font-weight: 800;
}

#header .menu-button .icon {
	width: 18px;
	height: 13px;
	margin-left: 13px;
	position: relative;
	top: -1px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

#header .menu-button .icon span {
	background: #FFFFFF;
	height: 2px;
	width: 100%;
	display: block;
	position: absolute;
	left: 0;
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}

#header .menu-button .icon span:nth-child(1) {
	top: 0px;
}

#header .menu-button .icon span:nth-child(2),
#header .menu-button .icon span:nth-child(3) {
	top: 6px;
}

#header .menu-button .icon span:nth-child(4) {
	top: 12px;
}

#header .menu-button .icon.open span:nth-child(1) {
	top: 6px;
	width: 0%;
	left: 50%;
}

#header .menu-button .icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#header .menu-button .icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#header .menu-button .icon.open span:nth-child(4) {
	top: 6px;
	width: 0%;
	left: 50%;
}

#header .menu-button button:hover .icon span {
	background: rgba(255, 255, 255, .9);
}


/* Header: Search */

#header .search-button {
display:none;
}

#header .search input {
	background: #FFFFFF;
	width: 100%;
	height: 48px;
	padding: 0 30px;
	font-size: 15px;
	font-weight: 700;
	border: solid 1px #FFFFFF;
	border-radius: 100px;
}

#header .search input:hover,
#header .search input:focus {border-color:rgba(25, 25, 24, .2);}

body.fixed #header .search input {
height: 46px;
}

#header .search form {
	position: relative;
}

#header .search button,
#header .search-button button {
	background-color: transparent;
	background-image: url(../images/search.svg);
	background-position: 30% 50%;
	background-repeat: no-repeat;
	background-size: 15px auto;
	width: 60px;
	height: 100%;
	display: block;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 5;
	opacity: .15;
}

#header .search-button button {
background-color: rgba(142, 58, 137, .1);
background-position: 48% 50%;
width: 44px;
height:44px;
position:relative;
opacity: 1;
}

#header .search button:hover {
	opacity: 1
}

#header .search button span {
	display: none
}

#content header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0;
}

#content .catalog.main header {
	margin-bottom: 35px;
}

#content header h1,
#content header h2 {
	margin: 0;
	font-size: 26px;
	font-weight: 800;
}

#content header h1 {
	font-size: 30px;
}

#content header h2 a {
	color: #191918;
}

#content header h2 a:hover {
	color: #8E3A89;
}

#content header .navigation {}

#content header .navigation button {
	background: none;
	width: 35px;
	height: 30px;
	border: none;
}

#content header .owl-prev svg,
#content header .owl-next svg {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	fill: #DF8FC5;
}

#content header .owl-prev:hover svg,
#content header .owl-next:hover svg {
	fill: #8E3A89;
}

#content .catalog.main {
	border-bottom: solid 1px #F4EDF3;
}

#content .catalog.main:last-child {
	border: none;
}

#content .catalog.main .list ul {
	margin-bottom: -10px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
	font-weight: 500;
}

#content .catalog.main .list li {
	width: 25%;
	margin-bottom: 10px;
	padding-left: 24px;
	position: relative;
}

#content .catalog.main .list li:before {
	content: '';
	background: #DF8FC5;
	width: 4px;
	height: 4px;
	display: block;
	position: absolute;
	top: 9px;
	left: 0;
	border-radius: 100px;
}

#content .catalog.main .list a {
	display: block;
	line-height: 140%;
	color: #191918;
}

#content .catalog.main .list a:hover {
	color: #8E3A89
}

#content .catalog.main .list span {
	display: none;
}

#content .catalog.main .owl-carousel {
	margin-top: 50px;
}

#content .owl-carousel .navigation {
	fill: #DF8FC5;
}


/* Каталог: Категория */

#content .catalog.category .item {
	margin-bottom: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
flex-direction: row;
flex-wrap: wrap;
}

#content .catalog.main .item {
	margin-bottom: 15px;
}

#content .catalog.category .image {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
/*
#content .catalog.main .image {
	-ms-flex: 0 0 100px;
	flex: 0 0 100px;
	max-width: 100px;
	overflow: hidden;
	border-radius: 15px;
}
*/
#content .catalog.category img,
#content .catalog.article .image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 15px;
}
/*
#content .catalog.main img {
	width: auto;
	height: 100px;
	position: relative;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	border-radius: 0;
} */

#content .catalog.category .info,
#content .catalog.article .info {
width:100%;
	padding: 0;
	font-size: 12px;
	font-weight: 500;
	color: rgba(25, 25, 24, .35);
display:flex;
justify-content: space-between;
align-items: center;
flex-direction: row;
flex-wrap: wrap;
}
/*
#content .catalog.main .info {
	padding: 0 0 0 20px;
	font-size: 12px;
}
*/
#content .catalog.article .info {
	padding: 30px 0;
padding-top:0;
	font-size: 15px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#content .catalog.category .top,
#content .catalog.article .top {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#content .catalog.category time,
#content .catalog.article time {
	background-image: url(../images/date.svg);
	background-position: 0 45%;
	background-repeat: no-repeat;
	background-size: 11px auto;
	width: 115px;
	display: block;
	margin-right: 10px;
	padding-left: 18px;
}

#content .catalog.article time {
	background-size: 14px auto;
	width: auto;
	margin-right: 50px;
	padding-left: 24px;
}

#content .catalog.category .views,
#content .catalog.article .views {
	background-image: url(../images/views.svg);
	background-position: 0 45%;
	background-repeat: no-repeat;
	background-size: 12px auto;
	padding-left: 20px;
}

#content .catalog.article .views {
	background-size: 14px auto;
	padding-left: 24px;
}

#content .catalog.category h3 {
width:100%;
	margin: 13px 0 8px 0;
	font-size: 17px;
	line-height: 125%;

}

#content .catalog.category h3 a {
display:block;
	color: #191918;
 text-overflow: ellipsis;
    overflow: hidden;
  white-space: nowrap;
}

#content .catalog.category h3 a:hover {
	color: #8E3A89;
}


/* Каталог: Статья */

#content .catalog.article .tags {
margin:25px 0;
padding-left: 100px;
	font-size: 15px;
font-weight:500;
color: transparent;
}

#content .catalog.article .tags a {
margin-right:5px;
color: rgba(25, 25, 24, .35);
}

#content .catalog.article .tags a:hover {
color: #191918;
}

#content .catalog.article .text {
	font-size: 18px;
	line-height: 160%;
	padding-left: 100px;
}

#content .catalog.article .text img {
    border-radius: 15px;
}

#content .catalog.article .text p {
	margin-bottom: 25px;
}

#content .catalog.article .text ul {
	margin: 25px 0;
}

#content .catalog.article .text h2,
#content .catalog.article .text h3,
#content .catalog.article .text h4,
#content .catalog.article .text h5,
#content .catalog.article .text h6 {
	margin-bottom: 25px;
	font-weight:800;
}

#content .catalog.article .text h2 {font-size:26px;}
#content .catalog.article .text h3 {font-size:23px;}
#content .catalog.article .text h4 {font-size:20px;}
#content .catalog.article .text h5 {font-size:17px;}
#content .catalog.article .text h6 {font-size:15px;}

#content .catalog.article .text ul,
#content .catalog.article .text ol {
padding-left:40px;
}

#content .catalog.article .text ul li {
position:relative;
margin-bottom:15px;
padding-left:25px;
}

#content .catalog.article .text ul li:last-child {margin:0;}

#content .catalog.article .text ul li:before {
content:'';
background:#DF8FC5;
width:6px;
height:6px;
display:block;
position:absolute;
top:10px;
left:0;
z-index:5;
border-radius: 100%
}

#content .catalog.article .text a {
color:#8E3A89;
text-decoration:underline;
}

#content .catalog.article .text a:hover {
text-decoration:none;
}

/* Сайдбар */

#content .sidebar > div {
position:sticky;
top:100px;
}

.at-share-btn-elements {
	display: flex;
justify-content: center;
align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
}

.at-resp-share-element .at-share-btn {
	width: 42px;
	height: 42px;
	display: block !important;
	margin: 0 0 7px 0 !important;
	position: relative;
	animation: none !important;
	transform: none !important;
}

.at-resp-share-element .at-share-btn:hover {
opacity:.5;
}

.at-style-responsive .at-share-btn:last-child {
	margin-bottom: 0 !important;
}

.at-style-responsive .at-share-btn {
	padding: 0 !important;
overflow:hidden !important;
border-radius: 10px !important;
}

#content .sidebar svg {
	width: 26px !important;
	height: 26px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
width:100% !important;
height:100% !important;
display:flex;
justify-content: center;
align-items: center;

}

/* Информация */

#content .information h2 {
	font-size: 21px;
}

#content .information .text {
	color: rgba(25, 25, 24, .75);
}


/* Хлебные крошки */

#content .speedbar {
	margin: 15px 0 50px 0;
	font-size: 14px;
	color: rgba(25, 25, 24, .2);
}

#content .speedbar a {
	color: rgba(25, 25, 24, .25);
}

#content .speedbar>div>span {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#content .speedbar span>span {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#content .speedbar span>span:after {
	content: '';
	background-image: url(../images/breadcrumb.svg);
	background-repeat: no-repeat;
	width: 6px;
	height: 6px;
	display: block;
	margin: 0 12px;
}

/* Пагинация */

#content .pagination {
width:100%;
margin:15px 0 0 0;
display:flex;
justify-content: center;
align-items: center;
}

#content .pagination button {
background:none;
border:none;
padding:0 5px;
font-size:19px;
color:#191918;
font-weight:700;
}

#content .pagination .pages {
padding:0 10px;
}

#content .pagination .pages a,
#content .pagination .pages span {
padding:0 5px;
font-size:19px;
color:#191918;
font-weight:700;
}

#content .pagination button:hover,
#content .pagination .pages a:hover,
#content .pagination .pages span {
color:#8E3A89;
}

/* Сортировка */

#content .sort {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 15px;
	color: rgba(25, 25, 24, .4);
}

#content .sort ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 500;
}

#content .sort li {
	margin-left: 25px;
}

#content .sort a {
	color: #191918;
}

#content .sort .asc a,
#content .sort .desc a {
	color: rgba(142, 58, 137, .7);
}


/* Рейтинг: Категория */

.rating,
.unit-rating {
	width: 75px;
	height: 15px;
}

.unit-rating,
.unit-rating li a:hover,
.unit-rating li.current-rating {
background-color:transparent;
	background-image: url(../images/star.svg);
background-position:0 0;
	background-repeat: repeat-x;
	-webkit-background-size: 15px auto;
	background-size: 15px auto;
}

.unit-rating {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	display: flex;
}

.unit-rating li {
	text-indent: -90000px;
	padding: 0;
	margin: 0;
}

.unit-rating li a {
	display: block;
	width: 15px;
	height: 15px;
	text-decoration: none;
	border: 0 none !important;
	text-indent: -9000px;
	z-index: 17;
	position: absolute;
	padding: 0;
	-webkit-transition: all .0s ease;
	-moz-transition: all .0s ease;
	-ms-transition: all .0s ease;
	-o-transition: all .0s ease;
	transition: all .0s ease;
}

.unit-rating li a:hover {
	background-image: url(../images/star-active.svg);
	z-index: 2;
	left: 0;
}

.unit-rating a.r1-unit {
	left: 0;
}

.unit-rating a.r1-unit:hover {
	width: 15px;
}

.unit-rating a.r2-unit {
	left: 15px;
}

.unit-rating a.r2-unit:hover {
	width: 30px;
}

.unit-rating a.r3-unit {
	left: 30px;
}

.unit-rating a.r3-unit:hover {
	width: 45px;
}

.unit-rating a.r4-unit {
	left: 45px;
}

.unit-rating a.r4-unit:hover {
	width: 60px;
}

.unit-rating a.r5-unit {
	left: 60px;
}

.unit-rating a.r5-unit:hover {
	width: 75px;
}

.unit-rating li.current-rating {
	background-image: url(../images/star-active.svg);
	position: absolute;
	height: 15px;
	display: block;
	text-indent: -9000px;
	z-index: 1;
	padding: 0px;
}


/* Рейтинг: Статья */

#content .catalog.article .rating,
#content .catalog.article .unit-rating {
	width: 88px;
	height: 18px;
}

#content .catalog.article .unit-rating,
#content .catalog.article .unit-rating li a:hover,
#content .catalog.article .unit-rating li.current-rating {
	background-image: url(../images/star.svg);
	background-repeat: repeat-x;
	-webkit-background-size: 18px auto;
	background-size: 18px auto;
}

#content .catalog.article .unit-rating {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	display: flex;
}

#content .catalog.article .unit-rating li {
	text-indent: -90000px;
	padding: 0;
	margin: 0;
}

#content .catalog.article .unit-rating li a {
	display: block;
	width: 18px;
	height: 18px;
	text-decoration: none;
	border: 0 none !important;
	text-indent: -9000px;
	z-index: 17;
	position: absolute;
	padding: 0;
	-webkit-transition: all .0s ease;
	-moz-transition: all .0s ease;
	-ms-transition: all .0s ease;
	-o-transition: all .0s ease;
	transition: all .0s ease;
}

#content .catalog.article .unit-rating li a:hover {
	background-image: url(../images/star-active.svg);
	z-index: 2;
	left: 0;
}

#content .catalog.article .unit-rating a.r1-unit {
	left: 0;
}

#content .catalog.article .unit-rating a.r1-unit:hover {
	width: 18px;
}

#content .catalog.article .unit-rating a.r2-unit {
	left: 18px;
}

#content .catalog.article .unit-rating a.r2-unit:hover {
	width: 36px;
}

#content .catalog.article .unit-rating a.r3-unit {
	left: 36px;
}

#content .catalog.article .unit-rating a.r3-unit:hover {
	width: 54px;
}

#content .catalog.article .unit-rating a.r4-unit {
	left: 54px;
}

#content .catalog.article .unit-rating a.r4-unit:hover {
	width: 71px;
}

#content .catalog.article .unit-rating a.r5-unit {
	left: 71px;
}

#content .catalog.article .unit-rating a.r5-unit:hover {
	width: 88px;
}

#content .catalog.article .unit-rating li.current-rating {
	background-image: url(../images/star-active.svg);
	position: absolute;
	height: 18px;
	display: block;
	text-indent: -9000px;
	z-index: 1;
	padding: 0px;
}



#footer {
	border-top: solid 1px #F4EDF3;
}

#footer .container {
	padding-top: 20px;
	padding-bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: rgba(25, 25, 24, .45);
}

#footer a {
font-weight:700;
	color: rgba(25, 25, 24, .75);
}

#footer a:hover {
	color: #191918;
}

.2fade:not(.show) {
    opacity: 1 !important;
display:block !important;
}


.modal-backdrop {background:#FFFFFF;}
.modal-backdrop.show {
    opacity: 1;
}

.modal-dialog {
    max-width: 900px;
}

.modal-content {
padding:0 20px;
border:none;
}

.modal .title {
margin-bottom:15px;
font-size:36px;
font-weight:800;
color: rgba(25, 25, 24, .07);
}

.modal .menu li span {display:none;}

.modal .menu > ul {
width:100%;
-moz-column-count: 3;
-moz-column-width: 33.3333%;
-moz-column-gap: 10px;
-webkit-column-count: 3;
-webkit-column-width: 33.3333%;
-webkit-column-gap: 10px;
column-count: 3;
column-width: 33.3333%;
column-gap: 10px;
}

.modal .menu > ul > li {
width: 100%;
display: inline-table;
margin:8px 0;
}

.modal .menu a {
font-weight:400;
color: #191918;
}

.modal .menu a:hover {
color: #8E3A89;
}

.modal .menu > ul > li > a {
font-size:18px;
font-weight:700;
}

.modal .menu > ul > li ul {
width: 100%;
margin-top:10px;
}

.modal .menu > ul > li ul > li {
margin-bottom:5px;
padding-left:18px;
position:relative;
}

.modal .menu > ul > li ul > li:before {
content:'';
background:#DF8FC5;
width:4px;
height:4px;
display:block;
position:absolute;
top:10px;
left:0;
z-index:5;
border-radius: 100%
}


.modal .close {
background-image: url(../images/close.svg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 24px auto;
    width: 24px;
    height: 24px;
    top: 24px;
    right: 0;
    position: absolute;
    z-index: 15;
    opacity: .1;
}

.modal .close:hover {
opacity: 1;
}

.modal .close span {display:none;}


#sendmail {
width:100%;
}

.form_submit .c-captcha {
display:flex;
justify-content: flex-start;
align-items: center;
float:none;
}

.form_submit .c-captcha input {flex-grow: 1;}

.feedback-page .btn {
margin-top:20px;
height:52px;
padding:0 35px;
font-size:17px;
}

.feedback-page #dle-captcha img {
width:140px !important;
height:auto !important;
display:block !important;
border-radius:5px !important;
margin-right:10px;
}

.feedback-page .text a {
font-size:24px;
font-weight:700;
color:#8E3A89;
}

.feedback-page .text a:hover {
text-decoration:none;
color:#BF4EB9;
}

.feedback-form .form-group {
display:flex;
justify-content: flex-start;
align-items: center;
margin:0 -10px 20px -10px;
}

.feedback-form .form-group input,
.form_submit .c-captcha input {
height:52px;
padding:0 25px;
border:solid 2px rgba(0, 0, 0, .08);
border-radius:100px;
}

.feedback-form .form-group textarea {
height:150px;
padding:15px 25px;
border:solid 2px rgba(0, 0, 0, .08);
border-radius:15px;
}

.form_submit .c-captcha input:focus,
.form_submit .c-captcha input:hover,
.feedback-form .form-group textarea:hover,
.feedback-form .form-group input:hover,
.feedback-form .form-group input:focus,
.feedback-form .form-group textarea:focus {
border-color:rgba(0, 0, 0, .75);
}

.feedback-form .form-group > div {
width:100%;
padding:0 10px;
}

.feedback-form .form-group.combo > div {
width:50%;
}


.ads.top {
margin-top:30px;
}

.ads.bottom {
margin-bottom:30px;
}

.ads .container {
padding-top:0;
padding-bottom:0;
}


#content .sort > li a:after {display:none !important;}


#content .related {padding-top:15px;}

#content .related .title {
margin-bottom:20px;
font-size:21px;
font-weight:700;
}

/*--- Подсветка исходного кода ---*/
.hljs-comment, .hljs-quote {
  color: #a0a1a7;
  font-style: italic;
}

.hljs-doctag, .hljs-keyword, .hljs-formula {
  color: #a626a4;
}

.hljs-section, .hljs-name, .hljs-selector-tag, .hljs-deletion, .hljs-subst {
  color: #e45649;
}

.hljs-literal {
  color: #0184bb;
}

.hljs-string, .hljs-regexp, .hljs-addition, .hljs-attribute, .hljs-meta-string {
  color: #50a14f;
}

.hljs-built_in, .hljs-class .hljs-title {
  color: #c18401;
}

.hljs-attr, .hljs-variable, .hljs-template-variable, .hljs-type, .hljs-selector-class, .hljs-selector-attr,
.hljs-selector-pseudo, .hljs-number {
  color: #986801;
}

.hljs-symbol, .hljs-bullet, .hljs-link, .hljs-meta, .hljs-selector-id, .hljs-title {
  color: #4078f2;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

.hljs-link {
  text-decoration: underline;
}