@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap');

/* Password input with toggle button */
.password-input-container {
	position: relative;
	display: inline-block;
	width: 100%;
}

.password-input-container .text {
	padding-right: 35px;
	width: 100%;
	box-sizing: border-box;
}

.password-toggle {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	color: #666;
	font-size: 16px;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.password-toggle:hover {
	color: #333;
}

.password-toggle:focus {
	outline: none;
	color: #007bff;
}

/* Add Teacher Modal Styles */
.add-teacher-modal {
	max-width: 600px;
	width: 90%;
}

/* Add Review Modal Styles */
.add-review-modal {
	max-width: 600px;
	width: 90%;
}

.radio-group {
	display: flex;
	gap: 20px;
	margin-top: 8px;
}

.radio-label {
	display: flex;
	align-items: center;
	font-weight: normal !important;
	cursor: pointer;
	margin-bottom: 0;
}

.radio-label input[type="radio"] {
	margin-right: 8px;
	margin-left: 0;
}

.radio-label span {
	color: #333;
}

.file-input-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 5px;
}

.file-input-label {
	flex: 1;
	padding: 8px 12px;
	background: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	color: #666;
	font-size: 14px;
}

.file-input-label:hover {
	background: #e9ecef;
}

.form-section {
	margin-bottom: 20px;
}

.form-row {
	margin-bottom: 15px;
}

.form-row label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #333;
}

.form-row .text {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
}

.form-row .text:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.form-row .text:disabled {
	background-color: #f8f9fa;
	cursor: not-allowed;
}

.form-row small {
	display: block;
	margin-top: 5px;
	font-size: 12px;
	color: #666;
}

.form-row small.error {
	color: #dc3545;
}

.form-actions {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.sm-btn {
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	transition: background-color 0.2s;
}

.sm-btn.secondary {
	background-color: #6c757d;
	color: white;
}

.sm-btn.secondary:hover {
	background-color: #545b62;
}

.sm-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Auth Required Modal Styles */
.auth-required-modal {
	max-width: 500px;
	width: 90%;
}

.auth-required-content {
	text-align: center;
	padding: 20px;
}

.auth-required-content h3 {
	margin: 20px 0 15px 0;
	color: #333;
	font-size: 24px;
}

.auth-required-content p {
	margin-bottom: 30px;
	color: #666;
	font-size: 16px;
	line-height: 1.5;
}

.auth-actions {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 25px;
}

.auth-btn-primary, .auth-btn-secondary {
	padding: 12px 24px;
	font-size: 16px;
	border-radius: 6px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.2s ease;
}

.auth-btn-primary {
	background-color: #007bff;
	color: white;
	border: 2px solid #007bff;
}

.auth-btn-primary:hover {
	background-color: #0056b3;
	border-color: #0056b3;
	transform: translateY(-1px);
}

.auth-btn-secondary {
	background-color: transparent;
	color: #007bff;
	border: 2px solid #007bff;
}

.auth-btn-secondary:hover {
	background-color: #007bff;
	color: white;
	transform: translateY(-1px);
}

.auth-note {
	padding: 15px;
	background-color: #f8f9fa;
	border-radius: 6px;
	border-left: 4px solid #007bff;
}

.auth-note small {
	color: #6c757d;
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}

.auth-icon {
	margin-bottom: 10px;
}

@media (min-width: 480px) {
	.auth-actions {
		flex-direction: row;
		justify-content: center;
	}
	
	.auth-btn-primary, .auth-btn-secondary {
		flex: 0 1 auto;
		min-width: 160px;
	}
}

/* Login Modal Styles */
.login-modal {
	max-width: 450px;
	width: 90%;
}

.login-modal .login-form {
	padding: 0;
}

.forgot-password-link {
	color: #007bff;
	text-decoration: none;
	font-size: 14px;
	display: block;
	text-align: right;
}

.forgot-password-link:hover {
	text-decoration: underline;
}

.social-login-section {
	text-align: center;
	margin: 25px 0;
	padding: 20px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.social-login-section p {
	margin-bottom: 15px;
	color: #666;
	font-size: 14px;
}

.social-btn {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.social-btn-item {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #4c75a3;
	color: white;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s;
}

.social-btn-item:hover {
	background-color: #3d5a85;
}

.login-actions {
	margin: 20px 0;
}

.login-btn {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.login-btn:hover:not(:disabled) {
	background-color: #0056b3;
}

.register-link-section {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
	font-size: 14px;
}

.register-link-section a {
	color: #007bff;
	text-decoration: none;
	font-weight: bold;
}

.register-link-section a:hover {
	text-decoration: underline;
}

body {
	margin: 0;
	background: #f4f6f8;
}

.menu_header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	box-shadow: 7px -10px 19px 0 black;
	width: 100%;
	z-index: 9999;
	background: #FFF;
	border-bottom: 1px solid #DDD;
	padding: 6px 0;
}

.search-form.univer input[type=submit] {
	width: 100px;
}

.regions.row {
	margin: 0;
}

.search-form.univer input[type=text] {
	width: calc(100% - 160px);
}

.main-content.sub {
	margin: 95px auto 0 auto;
}

.main-content.sub.nomenu {
	margin: 75px auto 0 auto;
}

.main-box, .search-form.univer {
	margin: 0 0 10px 0;
}

.submenu {
	position: fixed;
	left: 0;
	right: 0;
	top: 60px;
	padding: 7px;
	box-shadow: 1px -2px 14px 0 rgba(0, 0, 0, 0.4);
	z-index: 9955;
	background: linear-gradient(175deg, #6a9fd4, #336699);
}

.submenu div {
	max-width: 1200px;
	margin: 0 auto;
}

.submenu a {
	font-weight: bold;
	padding: 0 5px;
	color: #FFF;
}
.submenu a:hover {
	color: #FFF;
	opacity: 0.8;
}
.country-list a img {
	height: 15px;
	transition: all 0.3s;
	padding-right: 5px;
	vertical-align: text-bottom;
}

.country-list a > span:first-of-type {
	display: inline-block;
	width: 35px;
}

.country-list a {
	display: inline-block;
	padding: 3px 7px;
	width: 24.5%;
	transition: all 0.3s;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	height: 24px;
	border-radius: 5px;
	cursor: pointer;
	margin: 3px 0;
	color: #333;
	background: #eee;
}

.country-list h2 {
	margin: 15px;
	font-weight: bold;
}

.country-list a:hover {
	background: #ddd;
	color: #000;
}

.country-list a:hover img {
	transform: scale(1.2);
}

.menu_header > .row {
	max-width: 1200px;
	margin: 0 auto;
}

.menu_header > tbody, .content {
	max-width: 1200px;
	margin: 0 auto;
	display: block;
}

.content-wrapper {
	padding: 0 10px;
}

.content-wrapper h4 {
	color: #AAA;
	background: #f1f1f1;
	font-size: 12px;
	padding: 5px;
	margin: 0 -10px;
	font-weight: normal;
}

.card-new p, .card-new a, .card-new blockquote, .card-new li {
	font-size: 16px;
	line-height: 28px;
}

h1.page-title {
	font-size: 26px;
	font-weight: bold;
	line-height: 34px;
	padding: 10px 0;
}

.menu_header h1, .menu_header h2 {
	font-size: 10px;
	font-style: normal;
	margin: 0;
	font-weight: normal;
	text-align: right;
	min-width: 120px;
	display: block;
	padding: 0 5px;
	color: #333333;
	position: absolute;
	top: 40px;
	margin-left: 92px;
	height: 16px;
}

.menu_header h1 img, .menu_header h2 img {
	height: 12px;
	width: auto;
	margin: 2px 4px 0 0;
	vertical-align: text-bottom;
}

.content4 {
	display: inline-block;
	max-width: 75%;
}

.content1 {
    vertical-align: top;
    position: sticky;
    top: 100px;
    overflow-x: auto;
    margin-top: -2px;
    display: inline-block;
    width: calc(1200px/4.4);
    scrollbar-width: none;
    max-height: calc(100% - 70px);
    max-width: calc(1200px/4);
}

.content1::-webkit-scrollbar {
	display: none;
}

.box-comment,.box-comment tr,.box-comment td {
	display: block;
	margin-bottom: 10px;
	padding: 0 5px;
}

.box-comment .gray {
	font-size: 11px;
	padding: 5px;
}

.box-comment .box-red > td:nth-of-type(1),
.box-comment .box-blue > td:nth-of-type(1) {
	margin: 12px 5px;
}

.box-red {
	background: #ffebeb;
	border-radius: 5px;
	display: block;
}

.box-mark {
	float: left;
	font-size: 20px;
	border-radius: 5px;
	margin: 7px -3px -10px -7px;
	height: 20px;
	padding: 0 10px;
	background: #FFF;
}

.menu_top nobr ul {
	position: absolute;
	top: 15px;
	list-style: none;
	border-radius: 0 0 5px 5px;
	z-index: 9998;
	padding: 15px 15px 5px 15px;
	display: none;
	margin: 10px -15px;
	background: #FFF;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25);
}

.menu_top nobr:hover ul {
	display: inline-block;
}

.comment {
	padding: 10px;
	background: #FFF;
	box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
	margin: 15px -7px 10px -7px;
	border-radius: 5px;
}

.btn-group {
	margin: -13px -10px -28px;
	display: none;
}

.main-comment-block {
	padding: 0 5px;
}

.box-blue {
	background: #ebf5ff;
	border-radius: 5px;
	display: block;
}

input[type=submit], .sm-btn {
	border: 0;
	padding: 5px 10px;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	color: #FFF;
	background: #369;
	transition: all 0.3s;
}

.rating {
	background: #afafaf;
	text-align: center;
	width: 40px;
	height: 40px;
	font-weight: bold;
	vertical-align: middle;
	display: table-cell;
	right: -10px;
	position: relative;
	font-size: 15px;
	color: #FFF !important;
	border-radius: 50%;
}

.search-form {
	padding: 10px;
	background: #6a9fd4;
	background: linear-gradient(175deg, #6a9fd4, #336699);
	border-radius: 5px;
}

.search-form img {
	width: 35px;
	display: inline-block;
	vertical-align: top;
}

.search-form label {
	cursor: pointer;
	color: #FFF;
	font-size: 12px;
	vertical-align: text-top;
}

.footer-menu {
	margin: 5px 0 20px;
}

.search-form div {
	margin: 5px 0 0 40px;
	text-align: left
}

textarea:focus, input:focus{
	outline: none;
}

.search-form input[type=text] {
	width: calc(100% - 140px);
	padding: 8px;
	border: none;
	background: linear-gradient(175deg, #ffffff, #ececec);
	font-size: 16px;
}

.search-form input[type=submit] {
	width: 70px;
	padding: 8px;
	background: transparent;
	border: 1px solid #FFF;
	font-size: 16px;
}

.w100p {
	width: 100%;
}

.new_title:before {
	content: '';
	width: 100%;
	background: linear-gradient( 116deg ,transparent, #cd122d, #336699, transparent);
	display: inline-block;
	height: 2px;
	position: relative;
	vertical-align: middle;
	margin: -1px 0;
	top: 30px;
	float: right;
}

.articles {
	margin: 5px -5px;
}

.menu_top a {
	display: inline-block;
	padding: 0 3px;
	font-weight: bold;
	font-size: 20px;
}

.menu_top a:hover {
	color: #336599;
}

.main-menu, .auth-menu {
	display: none;
}

.menu_top:hover a {
	opacity: 0.7;
}

.menu_top:hover a:hover {
	opacity: 1;
}

.menu_top img {
	height: 15px;
}

.block_article {
	background-position: center !important;
	background-size: cover !important;
	height: 150px;
	background-repeat: no-repeat !important;
	padding: 7px;
	width: inherit;
	width: -webkit-fill-available;
	border-radius: 8px;
	overflow: hidden;
	vertical-align: bottom;
	transform: translate(0);
	margin: 5px -10px;
	transition: all 0.3s;
	cursor: pointer;
	min-height: 130px;
	background: #FFF;
	display: inline-block;
}

.block_article:not(.right) > a > div, .block_article.right > a > p {
	position: absolute;
	left: 0;
	right: 50%;
	bottom: 0;
	top: 0;
}

.block_article:not(.right) > a > p, .block_article.right > a > div {
	position: absolute;
	left: 50%;
	right: 0;
	bottom: 0;
	top: 0;
}

.block_article > a > p {
	margin: 5px;
}

.block_article > a > div b {
	position: absolute;
	background: #336699;
	padding: 3px 7px;
	bottom: 0;
	z-index: 9;
	border-radius: 5px;
	color: #fff;
	margin: 5px;
	left: 0;
}

.block_article.right > a > div b {
	left: auto;
	right: 0;
}

.block_article > a > div:after {
	content: "";
	left: 0;
	position: absolute;
	background: linear-gradient( 50deg ,#0000006e,#0056b300)!important;
	right: 0;
	top: 0;
	bottom: 0;
}

.edit {
	position: absolute;
	margin: 10px;
	z-index: 99;
	color: #FFF;
}

.block_article > div {
	height: calc(100% + 14px);
	background: rgba(0,0,0,0.6);
	border-radius: 8px;
	margin: -7px;
	padding: 8px;
}

.block_article > div .info {
	color: #FFF;
	margin: 0 5px 15px 5px;
	position: absolute;
	text-shadow: 3px 1px 2px black;
	bottom: 0;
	left: 0;
	right: 0;
}

.block_article .info span {
	position: absolute;
	right: 10px;
	display: block;
	bottom: 0;
}

.block_article .info span b:after {
	content: '/';
	font-size: 22px;
	vertical-align: middle;
	margin: 3px;
}

.block_article:hover {
	transform: translate(0px, -5px);
	box-shadow: 5px 7px 14px 0 #c8c8c8;
}

.block_article.col-lg-3 {
	margin: 0;
	border: 3px solid #fff;
}

.card-new {
	padding: 10px 0;
	font-size: 16px;
	line-height: 28px;
}

.block_article .info p {
	display: block;
	font-size: 15px;
	margin: 5px;
}

.content-wrapper h4 span, .content-wrapper .menu_top span {
	float: right;
	display: inline-block;
}

.block_article .info p:last-of-type {
	text-align: center;
}

.block_article .info p b {
	font-size: 15px;
}

.navigation {
	margin: 10px auto 0;
	height: 30px;
	text-align: center;
}

.navigation .pagination span {
	padding: 5px 6px;
	border-radius: 5px;
	background: #FFF;
	font-weight: bold;
	margin: 3px;
	text-align: center;
	font-size: 12px;
	border: 1px solid #c1c1c1;
}

.block_article .info p b:after, .content-wrapper h4 span b:after {
	content: '/';
	font-size: 11px;
	padding: 0 3px;
	opacity: 0.75;
}

h1 .power {
    height: 20px;
}

.power {
    height: 14px;
}

.block_article.two .info {
	margin: 0;
	padding: 0 5px 15px;
	color: #333;
	text-shadow: none;
	border-radius: 0 0 8px 8px;
}

.block_article.two > div {
	background: linear-gradient(175deg, rgba(255, 255, 255, 0.5), #ffffff);
}

.block_article.three .info {
	margin: 0;
	bottom: inherit;
	padding: 0 5px 15px;
	color: #333;
	text-shadow: none;
}

.uni-block {
    margin: -5px -15px;
    background-image: url(/assets/unif.jpg);
    background-size: cover;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.uni-block h3 {
	float: left;
	color: #3b6ea1;
	margin: 30px 10px;
	background: #FFF;
	padding: 2px 5px;
}

.uni-block h1 {
	background-color: #00000094;
	font-weight: bold;
	color: #FFF;
	padding: 180px 10px 20px 10px;
    margin: 0;
}

.uni-block h1 > small {
	display: block;
	color: #b7b7b7;
}

.uni-block img {
	float: right;
	margin: 30px;
}

.block_article.three .info h2 {
	color: #336497;
	border-bottom: 2px solid #336497;
}

.block_article.three:hover{
	transform: translate(0);
}

.block_article.three {
	box-shadow: none;
	cursor: default;
	background: transparent;
}

.block_article.three > div {
	background: transparent;
}

.block_article.three p {
	overflow-y: hidden;
	max-height: 172px;
}

.block_article a, .block_article h2 {
	display: block;
	font-size: 17px;
	color: inherit;
	font-weight: bold;
	text-align: center;
	text-shadow: none;
}

.block_article:not(.two) h2 {
	background: linear-gradient(
			116deg
			,#fff5f7,#c1daff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.block_article.two h2 {
	background: linear-gradient(
			116deg
			,#cd122d,#125dca);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.univer-item:last-of-type {
	margin-bottom: 25px;
}

.box-rating {
	float: right;
	padding: 2px 0;
}

.search-form input[type=submit]:hover {
	background: rgba(0, 0, 0, 0.2);
}

.rating.blue {
	background: linear-gradient(138deg, #4495cc, #254875);
}

.rating.red {
	background: linear-gradient(138deg, #be1212, #75151f);
}

input[type=submit]:hover {
	background: #4495cc;
}

.left {
	float: left;
}

.main-content {
	max-width: 1190px;
	margin: 70px auto 0 auto;
}

.menu_foot {
	font-size: 0.5em;
	display: inline-block;
	margin-top: 4px;
}

.main-content > .content4 .main-block {
	background: #FFF;
    border-radius: 8px;
    padding: 5px;
}

.main-content.sub:not(.wh) .main-block {
	background: transparent;
	box-shadow: none;
}

.yellow {
	color: #fff084 !important;
}

.block-right {
	background: #FFF;
	overflow: hidden;
	margin: 2px 0 10px 2px;
	width: calc(100% - 4px);
	border-radius: 8px;
}

.search-form, .block_article, .block-right, .main-block {
	box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
}

.univer-item {
	margin: 5px 5px 5px 0;
	box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
	padding: 5px;
	background: #FFF;
	min-height: 40px;
	border-radius: 5px;
}

.univer-item small {
	display: block;
}

.univer-item b {
	display: inline-block;
	color: #000000;
	min-height: 40px;
	width: 30px;
	float: left;
	text-align: center;
}

.univ-slider .swiper-slide {
	box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
	margin: 10px 0;
	border-radius: 10px;
	overflow: hidden;
	transform: translate(0);
	background-position: center;
	transition: all 0.3s;
	background-size: cover;
	height: 185px;
}

.univ-slider .swiper-slide:hover {
	transform: translate(0px, -3px);
	box-shadow: 3px 3px 14px 0 #c8c8c8;
}

.univ-slider .swiper-slide h3 {
	text-transform: capitalize;
	margin: 5px;
	height: 38px;
	overflow: hidden;
	font-size: 16px;
	text-align: center;
}

.univ-slider .swiper-slide h5 {
	padding: 2px 5px 6px;
	position: absolute;
	width: 25px;
	height: 15px;
	background: rgba(249, 250, 253, 0.75);
	text-align: center;
	border-radius: 5px;
	font-size: 15px;
	top: -20px;
	right: 8px;
}

.univ-slider .swiper-slide h5.blue {
	border: 2px solid #3a6a99;
}

.univ-slider .swiper-slide h5.red {
	border: 2px solid #be1212;
}

.univ-slider .swiper-slide .info {
	background: linear-gradient(180deg, transparent, #f5f6f8);
	padding: 5px;
	position: absolute;
	font-size: 14px;
	padding-top: 150px;
	bottom: 0;
	right: 0;
	left: 0;
}

.bold {
	font-weight: bold;
}

.univ-slider .swiper-slide h4 {
	background: transparent;
	padding: 5px;
	display: block;
	font-weight: bold;
	position: absolute;
	font-size: 14px;
	right: 0;
	left: 0;
	text-align: center;
	bottom: 30px;
}

.univ-slider .swiper-slide h4 span {
	float: inherit;
}

.univ-slider .swiper-slide h4 span.blue:before {
	content: url(/assets/like.svg);
}

.univ-slider .swiper-slide h4 span.red:before {
	content: url(/assets/dislike.svg);
}

.univ-slider .swiper-slide h4 span:before {
	margin: 5px;
	vertical-align: bottom;
	opacity: 0.7;
	zoom: 0.55;
	padding: 2px;
}

.univ-slider .swiper-slide a {
	display: block;
	height: 150px;
}

.login-form input.text {
	margin: 5px 0;
	background: #f4f6f8;
	width: 100%;
}

.login-form .login {
	font-size: 16px;
	max-width: 70px;
	text-align: center;
	margin: 4px 0;
}

.login-form .prw, .login-form .reg a {
	float: right;
}

.login-form p {
	margin: 5px 0 10px;
	font-weight: bold;
}

.cat_hobbies {
	color: #fcff55;
}

.cat_lifehack {
	color: #ff9800;
}

.cat_courses {
	color: #00f3ff;
}

.cat_opinions {
	color: #00ff08;
}

.cat_lifestyle {
	color: #ff19f8;
}

.cat_studzona {
	color: #c4c4c4;
}

.block_article.two .cat_hobbies, .block_article.two .cat_courses,
.block_article.two .cat_opinions, .block_article.two .cat_studzona {
	text-shadow: 2px 0 4px black;
}

.block_article  h4 {
	text-align: center;
	margin: 10px auto;
	padding: 2px 8px;
}

.univ-slider .books-blog .swiper-slide h3 {
	margin: 0;
	height: 43px;
	font-weight: bold;
	font-size: 11px;
}

.univ-slider .books-blog .swiper-slide h4 {
	font-weight: 100;
}

.univ-slider .books-blog .swiper-slide {
	background: #FFF;
}

.login-form .social-btn > a {
	width: 30px;
	height: 30px;
	padding: 5px 0;
	font-size: 20px;
	margin: -5px 5px;
	display: inline-block;
}

.login-form .social-btn > a:hover, .login-form .reg a:hover button {
	background: #4495cc;
	color: #FFF;
}

.login-form .social-btn {
	margin: 0 auto;
	text-align: center;
}

.login-form .reg {
	padding: 10px 10px 20px;
	background: #eeeeee;
	font-size: 14px;
	color: #888;
	margin: 12px -10px -10px;
}

.bg-img {
	background-position: center;
	background-size: cover;
	height: 150px;
	border-radius: 8px 8px 0 0;
	margin: -7px -7px 5px -7px;
	background-repeat: no-repeat;
}

.univer-item img {
	float: right;
	margin: 0 5px;
	max-height: 30px
}

.page-student {
	margin-top: -60px;
}

.content-wrapper > h2 {
	padding: 0 0 15px 15px;
}

.box-comment .box-blue:before, .box-comment .box-red:before {
	content: 'Анонимный гость:';
	font-size: 11px;
	padding: 4px 10px;
	color: #5b5b5b;
	display: inline-block;
	margin: 2px 0 -17px 0;
	position: relative;
}

.menu_center {
	margin-top: 10px;
}

.box-comment .box-blue:hover, .box-comment .box-red:hover {
	background: #efefef;
}

.box-comment .box-blue, .box-comment .box-red {
	transition: all 0.3s;
    margin: 10px 5px;
    padding: 0 10px;
}

footer a {
    color: #FFF;
}

.region-item {
	margin: 5px 5px 5px 0;
	box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
	width: auto;
	display: block;
	background: #FFF;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
	text-align: center;
	padding: 5px;
	vertical-align: middle;
	border-radius: 5px;
}

.menu_top > nobr {
    margin: 5px;
}

.white {
	background: #FFF;
	box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
	border-radius: 8px;
	margin: 15px 0;
	padding: 0 10px 3px 10px;
}

#feed h2 {
	margin: 10px;
}

#feed .main-block {
	margin: 10px 0;
	padding: 5px;
}

#feed .main-block div {
	float: right;
}

.main-content .content-wrapper .card-new p:first-of-type {
	background: linear-gradient(
			166deg
			,#cd122d,#3d71a3);
	padding: 10px;
	font-weight: bold;
	margin: -15px -5px 10px;
	color: #FFF;
	border-radius: 8px 8px 0 0;
}

.block_article > a > p b {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.card-new blockquote {
	background: linear-gradient( 166deg,#cd122d,#3e70a3);
	color: #FFF;
	border-radius: 5px;
	padding: 15px;
}

.main-content .content-wrapper .card-new p:first-of-type a {
	color: #faefa1;
	text-decoration: underline;
}

.main-content > .content4 {
	margin: 0 10px 0 0;
	width: 100%;
	padding: 0;
}
.user-profile img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin: 5px 10px 5px 0;
	display: inline-block;
	vertical-align: top;
}
.user-profile div, .user-profile h2 {
	display: inline-block;
}
.user-profile p {
	margin: 0;
}
.user-menu ul {
	list-style: none;
	padding: 0;
}
.user-menu ul a {
	cursor: pointer;
}
.user-menu {
	padding: 10px;
}
.m212 {
	min-width: 212px;
	display: inline-block;
}
.profile.col-lg-3 {
	text-align: center;
}
.profile > span {
	position: absolute;
	top: 0;
	background: #eee;
	width: 30px;
	border-radius: 50%;
	padding: 6px;
	margin: 0 15px;
	font-size: 12px;
	font-weight: bold;
	height: 30px;
}

.swiper-wrapper {
	margin: 0 0 0 10px !important;
}

.univ-slider:not(.list) .swiper-slide.block:last-of-type {
	background: #fff;
	max-width: 150px;
}

.filter {
    float: right;
    font-size: 14px;
}

.filter a {
    font-size: 14px;
}

.rated .row {
    padding: 5px;
}

.rated .blue .progress-bar {
    background: linear-gradient(90deg, transparent, #336699);
}

.rated .red .progress-bar {
    background: linear-gradient(90deg, transparent, #cd122d);
}

.rated .progress-bar {
    display: block;
    height: 20px;
}

.univ-slider:not(.list) .swiper-slide.block:last-of-type:after {
	content: '>';
	position: absolute;
	top: -35px;
	font-weight: bold;
	font-size: 160px;
	z-index: -1;
	color: #dbe7f3;
	left: calc(50% - 40px);
}

.univ-slider.list .blue, .univ-slider.list .red {
    height: 27px;
    width: auto;
}

.ava {
	background: #336699;
	padding: 8px 2px 22px 2px;
	width: 50px;
	color: #FFF;
	font-size: 22px;
	text-align: center;
	text-transform: uppercase;
	margin: 5px auto;
	border-radius: 50%;
	height: 50px;
}

div.line {
	max-width: 700px;
	margin: 0 auto;
}

footer {
	margin: 0;
	padding: 10px;
	text-align: center;
}

.box-comment tbody {
	display: block;
}

.menu_header > tbody > tr:nth-of-type(2) > td img {
	max-width: 10px;
	max-height: 10px;
	margin: 3px;
}

.box-comment .box-blue:hover .btn-group svg,
.box-comment .box-red:hover .btn-group svg {
	fill-opacity: 0.3;
	transform: scale(0.7);
}

.btn-group svg {
	display: inline-block;
	width: 46px;
	transition: all 0.3s;
	cursor: pointer;
	height: 46px;
	fill-opacity: 0.1;
	transform: scale(0.6);
}

.box-comment .box-blue:hover .btn-group svg:hover,
.box-comment .box-red:hover .btn-group svg:hover {
	fill-opacity: 0.7;
}

svg.main {
	float: right;
	max-height: 190px;
	max-width: 150px;
	fill: #396b9e;
}

@media screen and (min-width: 890px) {
	.right_fix {
		position: fixed;
		padding-right: 12px;
		max-width: 322px;
		width: auto;
	}
	.col-lg-3 > .menu_left a {
		display: block;
	}
	.main-content > div.content4 .a-page .block_article {
		width: 31.8% !important;
	}
	.main-content > div:not(.content4) .a-page .block_article {
		width: 23.8% !important;
	}
}

.a-page .block_article {
	min-height: 215px;
}

.prm {
	margin: 0 0 25px 0;
}

@media screen and (max-width: 480px) {
	.col-lg-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.card-new blockquote {
		margin: 0;
	}
	svg.main {
		display: none;
	}

	.country-list a {
		width: 49%;
	}

	.main-content > .content4 .main-block {
		border-radius: 0;
	}

	.search-form {
		padding: 15px 5px 8px;
		border-radius: 0;
	}
}

@media screen and (min-width: 890px) and (max-width: 1250px) {
	.content1 {
		width: auto;
	}
}
@media screen and (max-width: 890px) {
	.social {
		display: none;
	}
	.menu_header {
		display: flex;
	}
	.white {
		margin: 0 -10px 15px;
		padding: 0 20px 3px 20px;
	}
	.menu_top nobr ul {
		display: none;
	}
	.uni-info, .uni-info .swiper-container {
		margin: 0 -10px;
	}
	.uni-info .swiper-container h2 {
		margin: 0 10px;
	}
	.menu_top nobr ul li a {
		font-size: 16px;
		line-height: 25px;
		font-weight: normal;
	}
	.footer-menu .left {
		float: none;
	}
	.menu_center {
		margin-top: 25px;
	}
	.menu_left {
		line-height: 20px;
		display: block;
		padding-left: 15px;
		margin: 3px -15px -28px;
		overflow: scroll;
		background: #e4e4e4;
		white-space: nowrap;
		height: 27px;
	}
	.login-form .reg a {
		float: inherit;
		display: block;
		margin: 0 auto -10px;
		text-align: center;
	}
	.login-form .reg > span {
		display: none;
	}
	.submenu{
		display: block;
		padding: 6px 10px;
		padding-left: 0;
		margin: -9px 0 0;
		z-index: 10;
		overflow: scroll;
		white-space: nowrap;
	}
	.main-content.sub {
		margin: 85px auto 0 auto !important;
	}
	.main-content.sub.nomenu {
		margin: 50px auto 0 auto !important;
	}
	.menu_left a {
		display: inline-block;
		padding: 3px 10px;
	}
	.menu_left br {
		display: none;
	}
	td[width='25%'],td[width='75%'], table.prm td {
		display: inline-block;
		width: 49%;
		padding: 0 10px;
	}
	.box-comment td {
		background: initial;
	}
	.menu_left::-webkit-scrollbar {
		display: none;
	}
	div.menu_header .menu_top, .content1 {
		vertical-align: middle;
		position: fixed;
		top: 53px;
		padding: 5px;
		max-width: 240px;
		display: none;
		transition: all 1s;
		z-index: 1000;
		opacity: 0;
		bottom: 0;
		background: #fff;
	}
	.content1 {
		max-height: calc(100% - 51px);
	}
	body.fix-back {
		overflow: hidden;
	}
	body.fix-back:after {
		content: '';
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.6);
	}
	div.menu_header .menu_top {
		left: 0;
		border-right: 2px solid #43699a;
	}
	.content1 {
		right: 0;
		border-left: 2px solid #43699a;
	}
	.rating {
		width: 30px;
		height: 30px;
		font-size: 12px;
	}
	.search-form label {
		font-size: 10px;
		margin: -5px;
		font-weight: normal;
	}
	.box-comment .box-blue > td:nth-of-type(2),
	.box-comment .box-red > td:nth-of-type(2) {
		display: block;
		margin: 0 5px;
	}
	.line {
		width: 100%;
	}
	td {
		background: #FFF;
	}
	.main-content > .content4 .main-block {
		padding: 10px;
		border: none;
	}
	.uni-block {
		margin: -30px;
	}
	.main-content > .content4 {
		margin: 0;
		padding: 0;
		display: block;
		max-width: none;
	}
	.google-auto-placed {
		max-width: calc(100% - 20px);
	}
	.box-comment .box-red > td:nth-of-type(2) {
		border-bottom: 10px solid #ffeaea;
		border-top: 10px solid #ffeaea;
	}
	.box-comment .box-blue > td:nth-of-type(2) {
		border-bottom: 10px solid #ebf5ff;
		border-top: 10px solid #ebf5ff;
	}
	div.menu_header .menu_top.show, .content1.show {
		display: block;
		overflow-y: scroll;
		opacity: 1;
	}
	div.menu_header .menu_top {
		left: -70%;
		display: block;
		transition: all 0.3s;
	}
	.content1 {
		right: -70%;
		display: block;
		transition: all 0.3s;
	}
	div.menu_header .menu_top.show {
		left: 0;
	}
	.content1.show {
		right: 0;
	}
	.content1 table, .content1 tbody, .content1 tr, .content1 td {
		display: inline-block;
	}
	.user-activites tr {
		display: block;
		min-height: 15px;
	}
	div.menu_header .w-280 a img {
		width: auto;
		height: 40px;
	}
	div.menu_header .w-280 h1, div.menu_header .w-280 h2 {
		top: 36px;
		margin-left: 73px;
		height: 15px;
	}
	.main-menu, .auth-menu {
		content: '';
		position: absolute;
		border-radius: 50%;
		height: 40px;
		width: 40px;
		cursor: pointer;
		background-size: cover;
	}
	.main-menu {
		left: 10px;
		font-size: 25px;
		display: block;
		margin: 7px;
		color: #336699;
	}
	.auth-menu {
		right: 0;
		font-size: 25px;
		display: block;
		margin: 7px;
		color: #336699;
	}
	body > div {
		margin-top: 50px !important;
	}
	.content td {
		display: inline-block;
		background: #FFF;
	}
	a {
		margin-right: 3px;
	}
	form[name=referats_search], form[name=referats_search] td {
		background: #dce8f3;
	}
	form[name=referats_search] img {
		display: none;
	}
	form[name=referats_search] {
		margin: -15px -10px 10px -10px;
	}
	.content-wrapper .menu_top span {
		float: inherit;
	}
	body {
		padding: 0;
		max-width: 100%;
		overflow-x: hidden;
	}
	td > blockquote {
		margin: 0;
	}
	.block_article {
		width: 100%;
		margin: 5px auto;
	}
	.menu_top {
		line-height: 20px !important;
		display: block;
		text-align: center !important;
	}
	.menu_top a {
		display: block;
		font-size: 20px;
		margin: 10px 5px;
		text-align: left;
	}
	table, tbody, tr, td {
		display: block;
		width: auto;
		max-width: 100%;
	}
	 tbody {
		padding: 0;
	}
}

.hide {
	display: none;
}

a {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 15px;
	color: #336699;
	text-decoration: none;
	font-weight: normal;
	transition: all 0.3s;
}

a:hover {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	text-decoration: none;
	color: #4495cc;
}

a:active {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	text-decoration: none;
	color: #4495cc;
}

body,td,th {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	text-decoration: none;
	color: #000000;
}
td {
	font-family: 'Source Sans Pro', sans-serif;
	color: #000000;
	text-decoration: none;
	text-align: left;
    vertical-align: text-top;
    vertical-align: top;
}
h1 {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 22px;
	font-style: normal;
	font-weight: normal;
	color: #336699;
}

.title_top {
	font-family: Tahoma;
	font-size: 9px;
	color: #999999;
}
.td_login_form_title {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 15px;
	font-weight: normal;
	color: #669933;
	text-decoration: underline;
}
a.green {
	color: #669933;
}
a.green:hover {
	color: #669933;
}
a.green:visited {
	color: #669933;
}
a.red {
	color: #be1212;
}
a.red:hover {
	color: #be1212;
}
a.red:visited {
	color: #be1212;
}
h2 {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 20px;
	color: #336699;
	text-decoration: none;
	background: linear-gradient(
			116deg
			,#cd122d, #336699);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
	display: block;
	padding: 0;
	margin: 0;
	background-position: center;
	text-align: left;
	vertical-align: middle;
}

.new_title {
	display: block;
}

.arrows {
	font-family: "Times New Roman", Times, serif;
	font-size: 29px;
	color: #336699;
}
.pages {
	color: #CCCCCC;
	float: right;
}
.page_active {
	color: #000000;
	background-color: #E5E5E5;
}
input {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
}
input.text {
	border: 1px solid #ccc;
	margin: 0 5px;
	padding: 4px 5px;
	width: calc(100% - 20px);
	border-radius: 5px;
	color: #369;
	background: #FFF;
}
.authors .profile {
	text-align: center;
}
select.text {
	border: 1px solid #ccc;
	margin: 0 5px;
	padding: 4px 5px;
	width: calc(100% - 20px);
	border-radius: 5px;
	color: #369;
	background: #FFF;
}

select.small {
	font-size: 11px;
	height: 20px;
	width: 100%;
}
hr {
	color: #CCCCCC;
}
form {
	padding: 0;
	margin: 0;
}
.menu_top {
	line-height: 25px;
	text-align: left;
}
.menu_bottom {
	line-height: 25px;
	text-align: left;
}
.menu_left {
	line-height: 20px;
	padding-left: 15px;
	
}
.red {
	color: #c61533;
}	
td.red {
	background-color: #c61533;
}	

.block_info {
	font-family: sans-serif;
	font-size: 12px;
	line-height: 16px;
}	
.block_error {
	font-size: 13px;
	color: #be1212;
}
.green {
	color: #669933;
}
td.green {
	background-color: #c61533;
}	
.blue {
	color: #336699;
}	
td.blue {
	background-color: #c61533;
}
td.line {
	background-color: #E2E2E2;	
}
.gray {
	color: #999999;
}
.padding_line {
	padding-top: 0;
	padding-bottom: 2px;
}
textarea {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 15px;
}
textarea.text {
	border: 1px solid #ccc;
	margin: 0 5px;
	padding: 4px 5px;
	width: calc(100% - 20px);
	border-radius: 5px;
	color: #369;
	background: #FFF;
}
a.big {
	font-size: 18px;
}
a.big:hover {
	font-size: 18px;
}
a.big:visited {
	font-size: 18px;
}
a.big:active {
	font-size: 18px;
}
a.small {
	font-family: Tahoma;
	font-size: 12px;
}
a.small:hover {
	font-family: Tahoma;
	font-size: 12px;
}
a.small:visited {
	font-family: Tahoma;
	font-size: 12px;
}
a.small:active {
	font-family: Tahoma;
	font-size: 12px;
}
.list_line {
	padding-top: 15px;
	padding-right: 15px;
	
}
.line_select {
	padding-left: 25px;
}
.line {
	line-height: 23px;
}
img.img {
	border: 1px solid #000000;
	width: 160px;
	height: auto;
}
.p10 {
	padding: 10px;
}
.footer-menu .left img {
	width: 120px;
}
.menu-left a {
	display: block;
}
h2.blue:before,h2.green:before  {
	content: '';
	width: 5px;
	height: 25px;
	display: inline-block;
	margin: 0 5px 0 -5px;
	vertical-align: middle;
}
h2.blue:before {
	background: #369;
}
h2.green:before {
	background: #669933;
}
.abstracts h3 {
	font-weight: bold;
	margin: 0;
	font-size: 1em;
}
.abstracts a {
	border: 1px solid #c0c0c0;
	border-radius: 8px;
	padding: 8px;
	display: block;
	margin: 10px 5px;
}
.abstracts a span {
	border-radius: 8px;
	background: #eeeeee;
	padding: 2px 10px;
	color: #000737;
	font-size: 0.9em;
}
.right_block {
	font-family: Tahoma;
	font-size: 12px;
	padding-top: 5px;
}
.social > a {
	width: 25px;
	height: 25px;
	background: url(/img/vk.png);
	background-size: cover;
	display: block;
	border-radius: 5px;
	z-index: 1500;
}
a.right_block {
	font-family: Tahoma;
	font-size: 12px;
}
a.right_block:hover {
	font-family: Tahoma;
	font-size: 12px;
}
a.right_block:visited {
	font-family: Tahoma;
	font-size: 12px;
}
a.right_block:active {
	font-family: Tahoma;
	font-size: 12px;
}
.forum_quote {
	font-family: Tahoma;
	font-size: 12px;
	background-color: #F7F7F7;
	padding: 5px;
}

div.brokerlink {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 9px;
	color: #CCCCCC;
	text-decoration: none;
	font-weight: normal;
}

.brokerlink td, tr{
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 9px;
	color: #CCCCCC;
	text-decoration: none;
	font-weight: normal;
}

div.brokerlink  a:link {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 9px;
	color: #CCCCCC;
	text-decoration: none;
	font-weight: normal;
}
div.brokerlink  a:visited {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 9px;
	color: #CCCCCC;
	text-decoration: none;
	font-weight: normal;
}
div.brokerlink  a:hover {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 9px;
	color: #999999;
	text-decoration: none;
}
div.brokerlink  a:active {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 9px;
	color: #CCCCCC;
	text-decoration: none;
	}
	
.text_bot {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 11px;
	color: #CCCCCC;
	text-decoration: none;
}
.text_bot a:link {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 11px;
	color: #336699;
	text-decoration: underline;
}

.news_informer {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 11px;
	color: #336699;
	font-weight: normal;
}
.news_informer a {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 11px;
	color: #336699;
	text-decoration: underline;
	font-weight: normal;
}
.news_informer a:hover {
	font-family: 'Source Sans Pro', sans-serif, Helvetica, sans-serif;
	font-size: 11px;
	color: #336699;
	text-decoration: underline;
	font-weight: normal;
}

.klinks {
	font-size:10px;
	color: #CCCCCC;
	text-align:left;
    margin-left: 20px;
    margin-bottom: 20px;
}
.klinks a:link, .klinks a:visited, .klinks a:active {
	font-size:10px;
	color: #CCCCCC;
}

.overLayer
{
    background:black;
    display:block;
    left:0;
    opacity:0;
    filter: alpha(opacity = 0);
    position:fixed;
    top:0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.login-form small {
	display: block;
	margin-bottom: 4px;
	font-weight: bold;
	font-size: 13px;
	color: #be1212;
}

a.sm-btn:hover {
	color: #FFF;
	background: #4495cc;
}

a.sm-btn {
	display: inline-block;
}

.textH {
 display: none;
}

.reincarnate {
 display: inline-block;
 background: rgba(0, 0, 0, 0.04);
 padding: 4px 73px;
 margin: 0;
}

.modal-overlay {
	position: fixed;
	top: 60px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 20px;
}

.modal-content {
	background: white;
	border-radius: 8px;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #eee;
	flex-shrink: 0;
}

.modal-header h2 {
	margin: 0;
	color: #333;
}

.modal-close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #999;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-close:hover {
	color: #333;
}

.modal-body {
	padding: 20px;
	flex: 1;
	overflow-y: auto;
}

/* Форма регистрации */
.registration-modal {
	max-width: 700px;
}

.form-section {
	margin-bottom: 30px;
}

.form-section h3 {
	margin: 0 0 15px 0;
	color: #444;
	border-bottom: 2px solid #e0e0e0;
	padding-bottom: 5px;
}

.form-row {
	margin-bottom: 15px;
}

.form-row label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #555;
}

.form-row input.text,
.form-row select.text,
.form-row textarea.text {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
}

.form-row input.text:focus,
.form-row select.text:focus,
.form-row textarea.text:focus {
	border-color: #4CAF50;
	outline: none;
	box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

.form-row small {
	display: block;
	margin-top: 3px;
	color: #666;
	font-size: 12px;
}

.form-row small.error {
	color: #e74c3c;
	font-weight: bold;
}

/* Дата рождения */
.birth-date {
	display: flex;
	gap: 10px;
}

.birth-day {
	flex: 0 0 80px;
}

.birth-month {
	flex: 1;
}

.birth-year {
	flex: 0 0 100px;
}

/* Радио кнопки */
.radio-group {
	display: flex;
	gap: 20px;
}

.radio-group label {
	display: flex;
	align-items: center;
	font-weight: normal;
	cursor: pointer;
}

.radio-group input[type="radio"] {
	margin-right: 8px;
}

/* Чекбоксы */
.form-row label input[type="checkbox"] {
	margin-right: 8px;
}

/* Действия формы */
.form-actions {
	display: flex;
	gap: 15px;
	justify-content: flex-end;
	padding: 20px;
	border-top: 1px solid #eee;
	flex-shrink: 0;
}

.sm-btn {
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.sm-btn.secondary {
	background-color: #f1f1f1;
	color: #333;
}

.sm-btn.secondary:hover {
	background-color: #e0e0e0;
}

.sm-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Адаптивность */
@media (max-width: 768px) {
	.modal-overlay {
		padding: 10px;
	}

	.modal-content {
		max-height: 95vh;
	}

	.modal-header,
	.modal-body {
		padding: 15px;
	}

	.birth-date {
		flex-direction: column;
		gap: 10px;
	}

	.birth-day,
	.birth-month,
	.birth-year {
		flex: none;
	}

	.radio-group {
		flex-direction: column;
		gap: 10px;
	}

	.form-actions {
		flex-direction: column;
	}
}

/* Footer start */

.footer-clean {
	background-color: #3a3a3a;
	border-top: 2px solid #a0c9ff;
	color: #ffffff;
}

footer .search-form {
    box-shadow: none;
    background: none;
}

.f-logo img {
	width: 40%;
	transition: all 0.3s;
	filter: contrast(0) brightness(1);
}

.f-logo:hover img {
	filter: contrast(0) brightness(2);
}

.footer-clean h3 {
	margin-top: 0;
	margin-bottom: 12px;
	font-weight: bold !important;
	font-size: 16px !important;
}

.footer-clean .search-form input[type=text] {
    border: 1px solid #a7a7a7;
    color: #eee;
    background: #4e4e4e;/ads
}

.footer-clean ul {
	padding: 0;
	list-style: none;
	line-height: 1.6;
	font-size: 14px;
	margin-bottom: 0;
}

.footer-clean ul a {
	color: inherit;
	text-decoration: none;
	opacity: 0.8;
}

.footer-clean ul a:hover {
	opacity: 1;
}

.footer-clean .item.social {
	text-align: right;
}

@media (max-width: 767px) {
	.footer-clean .item {
		text-align: center;
		padding-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.footer-clean .item.social {
		text-align: center;
	}
}

.footer-clean .item.social > a {
	font-size: 24px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	border: 1px solid #ccc;
	margin-left: 10px;
	margin-top: 22px;
	color: inherit;
	opacity: 0.75;
}

.footer-clean .copyright {
	margin-top: 14px;
	margin-bottom: 0;
	font-size: 13px;
	opacity: 0.6;
}

.footer-clean .item.social > a:hover {
	opacity: 0.9;
}

@media (max-width: 991px) {
	.footer-clean .item.social > a {
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	.footer-clean .item.social > a {
		margin-top: 10px;
	}

	.f-logo img {
		width: 50%;
	}

	.footer-clean {
		padding: 35px 0 0 0;
	}

	.footer-clean .item:not(.cpr) {
		width: 30%;
	}
}

/* End footer */
/* Language switcher */
.language-switcher {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.language-switcher li {
    display: inline-block;
    margin: 0 2px;
}

.language-switcher a {
    display: flex;
    align-items: center;
    padding: 2px 4px;
    text-decoration: none;
    color: inherit;
    font-size: 11px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.language-switcher a:hover {
    background-color: rgba(0,0,0,0.1);
}

.language-switcher .active a {
    background-color: #007bff;
    color: white;
}

.language-switcher img {
    margin-right: 2px;
}
