




/* general profile ---------------------------------------------------------- */
.profile_rating_percent, .profile_rating_percent:hover {
	display: inline-block;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 8px; 
	margin-left: 5px;
}

.profile_rating_percent a, .profile_rating_percent a:hover {
	color: #ffffff !important;
}

.profile_rating_percent_0 {
	background-color: var(--action_red_color);
}

.profile_rating_percent_1 {
	background-color: #0171bb;
}

.profile_rating_percent_2 {
	background-color: #a1a1a1;
}

.profile_lang {
	height: 10px;
	vertical-align: baseline;
}

.profile_right_book {
	display: grid;
	grid-template-columns: 1fr 37px;
	column-gap: 10px;
	border-bottom: solid 1px var(--gray_border_color);
	padding-bottom: 9px;
	margin-bottom: 9px;
	line-height: 17px;
}

.profile_right_book:last-child {
	border-bottom: 0px;
}

.profile_right_book_name {
	padding-top: 2px;
}

.profile_right_book_rating {
	height: fit-content;
	border-radius: 6px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	padding: 3px 4px;
	text-align: center;
}

.profile_right_author {
	display: grid;
	grid-template-columns: 60px 1fr;
	grid-gap: 20px;
	background-color: var(--gray_bg_color);
	border-radius: 12px;
	padding: 10px 14px;
	margin-bottom: 12px;
}

.profile_right_author img {
	border-radius: 6px;
}

.profile_right_author a {
	color: var(--action_red_color);
	font-size: 18px;
	font-weight: 700;	
}

.profile_rating_box {
	display: grid;
	grid-template-columns: 100px 1fr 100px;
}

.profile_rating_bar {
	height: 10px;
	background-color: var(--gray_bg_color);
	border-radius: 8px;
	line-height: 8px;
}

.profile_rating_bar_active {
	display: inline-block;
	height: 10px;
	background-color: var(--action_red_color);
	border-radius: 8px;
}

.profile_rating_bar_percent {
	font-size: var(--text_size_bigger);
	font-weight: 700;
}

.profile_rating_user_box {
	display: grid;
	grid-template-columns: 40px 1fr;
	column-gap: 10px;
	line-height: 18px;
}

.profile_rating_user_img {
	width: 40px;
	border-radius: 100px;
}

@media (max-width: 600px) {
	.profile_rating_box {
		display: grid;
		grid-template-columns: 76px 1fr 100px;
	}

	.profile_rating_box_stars img {
		width: 12px;
		margin-right: 2px;
	}
}

.profile_h2 {
	color: var(--text_color);
	font-size: 15px;
	font-weight: 600;
}


/* author_profile ----------------------------------------------------------- */
.author_profile {
	display: grid;
	grid-template-columns: 160px 1fr 340px;
	grid-template-rows: auto auto auto auto 1fr;
}

.author_h {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
}

.author_rating {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
	text-align: right;
	margin-top: 4px;
}

.author_rating img {
	margin-left: 4px;
	margin-bottom: 6px;
}

.author_about {
	grid-column: 1 / 3;
	grid-row: 2 / 3;
	font-size: var(--text_size_smaller);
}

.author_buttons {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
	text-align: right;	
	align-self: end;
}

.author_sep {
	border-bottom: solid 1px var(--gray_border_color);	
	margin: 20px 0px;
}

.author_header_sep {
	grid-column: 1 / 4;
	grid-row: 3 / 4;
}

.author_photo {
	grid-column: 1 / 2;
	grid-row: 4 / 5;	
}

.author_photo img {
	width: 160px;
	border-radius: 4px;
}

.author_mobile_market {
	display: none;
}

.author_subitems {
	grid-column: 1 / 2;
	grid-row: 5 / 6;		
}

.author_content {
	grid-column: 2 / 4;
	grid-row: 4 / 6;		
	border-left: solid 1px var(--gray_border_color);	
	padding-left: 30px;
	margin-left: 30px;
}

.author_lifestory {
	max-height: 116px;
	overflow: hidden;
	line-height: 20px;
	margin-bottom: 0px;
}

.author_stats_item, .author_stats_item:hover {
	display: block;
	font-weight: 700;
	color: var(--text_color);
	background-color: var(--gray_bg_color);
	border-radius: 8px;
	padding: 9px 12px;
}

.author_stats_item img {
	vertical-align: sub;
}

.author_stats_item_friend {
	display: inline-block;
	font-size: 12px;
	font-weight: normal;
	margin: -2px 0px 0px 3px;
}

.author_stats_item_friend img {
	margin-top: -3px;
}

.author_big_buttons {
	text-align: right;
	margin-top: 15px;
}

@media (max-width: 1200px) {
	.author_profile {
		grid-template-columns: 100px 1fr;
		column-gap: 16px;
	}

	.author_h {
		grid-column: 1 / 3;
		grid-row: 1 / 2;
		margin-bottom: 12px;
	}

	.author_rating {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
		text-align: left;
		margin-top: 0px;
		margin-bottom: 20px;
	}

	.author_about {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}

	.author_buttons {
		grid-column: 1 / 3;
		grid-row: 6 / 7;
	}

	.author_header_sep {
		display: none;
	}

	.author_photo {
		grid-column: 1 / 2;
		grid-row: 2 / 4;
		margin-bottom: 20px;
	}

	.author_photo img {
		width: 160px;
		border-radius: 4px;
	}
	
	.author_mobile_market {
		grid-column: 1 / 3;
		grid-row: 5 / 6;
		display: block;
		margin-bottom: 12px;
	}
	
	.author_subitems {
		grid-column: 1 / 3;
		grid-row: 7 / 8;
		border-top: solid 1px var(--gray_border_color);
		border-bottom: solid 1px var(--gray_border_color);
		padding: 20px 0px;
		margin: 20px -15px;
	}

	.author_content {
		grid-column: 1 / 3;
		grid-row: 8 / 9;		
		border-left: none;
		padding-left: 0px;
		margin-left: 0px;
	}	
	
	.author_big_buttons {
		display: none;
	}
	
}






/* book_profile ------------------------------------------------------------- */
.book_profile {
	display: grid;
	grid-template-columns: 160px 1fr 250px;
	grid-template-rows: auto auto auto auto 1fr;
}

.book_h {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
}

.book_h h1 {
	display: flex;
	align-items: center;
}

.book_subname {
	font-size: 20px;
	margin-bottom: 8px;
	line-height: 25px;
}

.book_rating {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
	text-align: right;
	margin-top: 4px;
}

.book_rating img {
	margin-left: 4px;
	margin-bottom: 6px;
}

.book_about {
	grid-column: 1 / 3;
	grid-row: 2 / 3;
	font-size: var(--text_size_smaller);
}

.book_author {
	color: var(--action_red_color);
	font-size: 18px;
	font-weight: 700;
}

.book_buttons {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
	text-align: right;
	align-self: end;
}

.book_sep {
	border-bottom: solid 1px var(--gray_border_color);	
	margin: 20px 0px;
}

.book_header_sep {
	grid-column: 1 / 4;
	grid-row: 3 / 4;
}

.book_photo {
	grid-column: 1 / 2;
	grid-row: 4 / 5;	
}

.book_photo img {
	width: 160px;
	border-radius: 4px;
}

.book_photo_trigger {
	position: absolute;
	color: #fff;
	right: 10px;
	background: #000;
	opacity: .8;
	font-weight: bold;
	font-size: 14px;
	padding: 2px 8px;
	margin-top: -36px;
	border-radius: 4px;
}

.book_photo_trigger img {
	width: 12px;
	border-radius: 0px;
}

.book_mobile_buttons {
	display: none;
}

.book_subitems {
	grid-column: 1 / 2;
	grid-row: 5 / 6;		
}

.book_content {
	grid-column: 2 / 4;
	grid-row: 4 / 6;		
	border-left: solid 1px var(--gray_border_color);	
	padding-left: 30px;
	margin-left: 30px;
}

.book_description {
	max-height: 112px;
	overflow: hidden;
	line-height: 22px;
	margin-bottom: 0px;
}

.book_big_buttons {
	text-align: right;
	margin-top: 15px;
}

.book_another_lang {
	height: 10px;
}

.book_reading_progress {
}

.book_reading_progress_overview {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 12px;
}


.book_my_activities {
	max-height: 103px;
	overflow: hidden;
}

.book_hidden_box {
	display: none;
}

.book_hidden_box img {
	height: 180px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.book_stats_item, .book_stats_item:hover {
	font-weight: 700;
}

.book_stats_item img {
	vertical-align: sub;
}

.book_stats_item_friend {
	display: inline-block;
	font-size: 12px;
	font-weight: normal;
	margin: -2px 0px 0px 3px;
}

.book_stats_item_friend img {
	margin-top: -3px;
}



.book_booklists_area {
	display: none;
	position: absolute;
	width: 221px;
	border: solid 1px #edeff2;
	background-color: #ffffff;
	text-align: left;
	z-index: 10;
	border-radius: 8px;
	box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.20);
	left: 50%;
	transform: translateX(-50%);
}

.book_booklists_table {
	width: 100%;
}

.book_booklists_short {
	width: 15px;
}

.book_booklists_name {
	height: 22px;
}

.book_booklists_name a {
	color: var(--text_color);
}

.book_booklists_name label {
	cursor: pointer;
}

.book_booklists_settings a {
	color: var(--gray_icon_color);
}

.book_booklists_area tr {
	border-bottom: solid 1px var(--gray_border_color);
}

.book_booklists_area tr:hover {
	background-color: #f1f2f4;
	cursor: pointer;
}

.book_booklists_area td {
	padding: 4px 6px;
}

.book_release_sep {
	border-bottom: solid 1px var(--gray_border_color);
	margin: 8px 0px;
}

.book_label {
	background-color: var(--blue_label_color);
	color: #ffffff;
	border-radius: 6px;
	font-size: 13px;
	padding: 1px 7px;
	white-space: nowrap;
}

.book_label img {
	margin-top: -3px;
}

.book_label_main {
	font-size: 14px;
	font-weight: 600;
	padding: 6px 10px;
	margin-right: 10px;
}

#book_similar_add_area {
	display: none;
	position: absolute;
	width: 250px;
	background-color: #ffffff;
	border: solid 1px #999999;
	padding-bottom: 8px;
	overflow: hidden;	
	box-shadow: 0px 0px 3px #888888;
    border-radius: 5px;	
	z-index: 1000;
}

#book_similar_add_header {
	background-color: #f6f7f9;
	padding-bottom: 10px;
	padding-top: 10px;
	text-align: center;
}

#book_similar_add_body {
	padding: 10px;
	padding-right: 18px;
	text-align: center;
}

#book_similar_add_img {
	height: 120px;
	margin-top: 16px;
	margin-bottom: 16px;
}

#book_similar_add_img img {
	max-height: 120px;
}

#book_similar_add_close {
	float: right;
	cursor: pointer;
	margin-right: 11px;
}

#book_similar_whisper_area {
	display: none;
	position: absolute;
	background-color: #ffffff;
	width: 217px;
	margin-top: 0px;
	margin-left: 2px;
	box-shadow: 0px 0px 3px #888888;
	-webkit-box-shadow: 2px 2px 2px #888888;
	border-left: solid 1px #eeeeee;
	border-right: solid 1px #eeeeee;
	border-bottom: solid 1px #eeeeee;
	padding-bottom: 2px;
	overflow: hidden;
	text-align: left;
}


.book_similar_whisper_item {
	width: 246px;
	height: 24px;
	padding-top: 4px;
	padding-left: 10px;
	font-size: 13px;
	overflow: hidden;
	line-height: 22px;
	cursor: pointer;
}

.book_similar_whisper_item:hover {
	background-color: #eeeeee;
}

#book_google_map_area {
    height: 500px;
    margin: auto;
}

#book_google_map_area img {
	width: initial !important;
	height: initial !important;
	max-width: initial !important;
	vertical-align: initial !important;	
}


@media (max-width: 1200px) {
	.book_profile {
		grid-template-columns: 100px 1fr;
		column-gap: 16px;
	}

	.book_h {
		grid-column: 1 / 3;
		grid-row: 1 / 2;
		margin-bottom: 12px;
	}

	.book_rating {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
		text-align: left;
		margin-top: 0px;
		margin-bottom: 20px;
	}

	.book_about {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}

	.book_buttons {
		grid-column: 1 / 3;
		grid-row: 6 / 7;
	}

	.book_header_sep {
		display: none;
	}

	.book_photo {
		grid-column: 1 / 2;
		grid-row: 2 / 4;
		margin-bottom: 20px;
	}

	.book_photo img {
		width: 160px;
		border-radius: 4px;
	}
	
	.book_photo_trigger {
		right: 4px;
		font-size: 12px;
		padding: 1px 4px 3px 4px;
		line-height: 11px;
		margin-top: -19px;
	}

	.book_photo_trigger img {
		width: 12px;
		border-radius: 0px;
	}	
	
	.book_mobile_buttons {
		grid-column: 1 / 3;
		grid-row: 5 / 6;
		display: block;
		margin-bottom: 12px;
	}
	
	.book_subitems {
		grid-column: 1 / 3;
		grid-row: 7 / 8;
		border-top: solid 1px var(--gray_border_color);
		border-bottom: solid 1px var(--gray_border_color);
		padding: 20px 0px;
		margin: 20px -15px;
	}

	.book_content {
		grid-column: 1 / 3;
		grid-row: 8 / 9;		
		border-left: none;
		padding-left: 0px;
		margin-left: 0px;
	}	
	
	.book_big_buttons {
		display: none;
	}
	
	.book_reading_progress_overview {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 12px;
	}

	.book_label_main {
		margin-right: 0px;
		float: right;
	}
	
	.book_h h1 {
		display: block;
	}
	
}






/* user_profile ------------------------------------------------------------- */
.user_profile {
	display: grid;
	grid-template-columns: 160px 1fr 340px;
	grid-template-rows: auto auto auto auto 1fr;
}

.user_h {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
}

.user_rating {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
	text-align: right;
	margin-top: 4px;
}

.user_about {
	grid-column: 1 / 3;
	grid-row: 2 / 3;
	font-size: var(--text_size_smaller);
}

.user_buttons {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
	text-align: right;
	align-self: end;
}

.user_sep {
	border-bottom: solid 1px var(--gray_border_color);	
	margin: 20px 0px;
}

.user_header_sep {
	grid-column: 1 / 4;
	grid-row: 3 / 4;
}

.user_photo {
	grid-column: 1 / 2;
	grid-row: 4 / 5;
}

.user_photo_img {
	width: 160px;
	border-radius: 200px;
	display: block;
	margin: auto;
}

.user_subitems {
	grid-column: 1 / 2;
	grid-row: 5 / 6;		
}

.user_content {
	grid-column: 2 / 4;
	grid-row: 4 / 6;		
	border-left: solid 1px var(--gray_border_color);	
	padding-left: 30px;
	margin-left: 30px;
}

.user_status {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	color: #66bb6a;
	font-size: var(--text_size_smaller);
	font-weight: 600;
}

.user_is_admin {
	position: absolute;
	margin-top: -52px;
	width: 46px !important;
}

.user_friends_box {
	font-size: 20px;
	font-weight: 700;
	border-right: solid 1px var(--gray_border_color);
}

.user_friends_box:last-child {
	border: none;
}

.user_friends_box div {
	font-size: 12px;
	font-weight: 400;
}

@media (max-width: 1200px) {
	.user_profile {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.user_h {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
		text-align: center;
		margin-bottom: 12px;
	}

	.user_rating {
		grid-column: 1 / 2;
		grid-row: 4 / 5;
		text-align: center;
		margin-bottom: 20px;
	}

	.user_about {
		grid-column: 1 / 2;
		grid-row: 3 / 4;
		text-align: center;
		margin-bottom: 12px;
	}

	.user_buttons {
		grid-column: 1 / 2;
		grid-row: 5 / 6;
	}

	.user_header_sep {
		display: none;
	}

	.user_photo {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
		text-align: center;
		margin-bottom: 0px;
	}

	.user_subitems {
		grid-column: 1 / 2;
		grid-row: 6 / 7;
		border-top: solid 1px var(--gray_border_color);
		border-bottom: solid 1px var(--gray_border_color);
		padding: 20px 0px;
		margin: 20px -15px;
	}

	.user_content {
		grid-column: 1 / 2;
		grid-row: 7 / 8;		
		border-left: none;
		padding-left: 0px;
		margin-left: 0px;
	}	
	
	.user_is_admin {
		margin-left: -80px;
	}	
}

/* user subitems */
.user_booklist_name {
	display: block;
	border: solid 1px var(--gray_border_color);
	border-radius: 8px;
	padding: 6px 10px;
	margin-bottom: 4px;
}

.user_booklist_name_active, .user_booklist_name:hover {
	color: #ffffff;
	background-color: var(--action_red_color);
	border-color: var(--action_red_color);
}

.user_booklist_name span {
	float: right;
	color: var(--text_color);
}

.user_booklist_name_active span, .user_booklist_name:hover span {
	float: right;
	color: #ffffff;
}


.user_achiev_inactive {
	opacity: 0.4;
}

.user_achiev_detail_name {
	font-size: 19px;
	margin-top: 0px;
	margin-bottom: 10px;
	font-weight: 600;
}

.user_achiev_detail_img {
	width: 150px !important;
	height: auto !important;
	margin-top: 15px;
}

.user_achiev_bar_wrapper {
	padding-top: 2px;
	height: 15px;
	font-size: 12px;
}

.user_achiev_bar {
	height: 5px;
}

.user_about_text {
	max-height: 175px;
	overflow: hidden;
}

.user_stats_box {
	height: 100%;
	border-radius: 8px;
	background-color: #fff3e0;
	text-align: center;
	padding: 17px 10px;
}

.user_stats_box_header {
	margin-bottom: 4px;
	font-size: 18px;
	font-weight: 700;
}

.user_stats_box_cover {
	height: 190px;
}

.user_stats_bookmark {
	background-image: url('/grafika/icon_user_bookmark.svg');
	background-position: center center;
	background-repeat: no-repeat;
	width: 44px;
	height: 44px;
	margin: auto;
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
}

#users_year_stats_chart {
	max-width: 650px;
	height: 320px;
	margin: auto;
}

@media (max-width: 800px) {
	#users_year_stats_chart {
		width: 100%;
		height: 320px;
		margin: auto;
	}
}

#user_about {
	max-height: 180px;
	overflow: hidden;
}

#user_about_more {
	display: none;
}

#user_stream_area {
	border-left: solid 1px #d7d7d7;
	margin-left: 15px;
	padding-left: 15px;
	margin-top: 20px;
}

.user_reading_progress_wrapper {
	width: 135px;
}





/* articles + news + reviews ------------------------------------------------ */
.article {
	display: grid;
	grid-template-columns: 92px 1fr;
	grid-template-rows: auto 1fr;
	grid-column-gap: 20px;
	align-items: start;
	border-bottom: solid 1px var(--gray_border_color);
	padding-bottom: 20px;
	margin-bottom: 20px;	
}

.article:last-child {
	border-bottom: 0px;
}

.article_img {
	grid-column: 1 / 2;
	grid-row: 1 / 3;	
}

.article_img img {
	border-radius: 4px;
}

.article_title {
	display: inline-block;
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 5px;
}

.article_subtitle {
	margin-bottom: 8px;
	font-size: 17px;
}


@media (max-width: 800px) {
	.article_img {
		grid-column: 1 / 2;
		grid-row: 1 / 2;	
	}
	
	.article_perex {
		grid-column: 1 / 3;
		grid-row: 2 / 3;			
	}
	
}

.article_recommended {
	color: #96c948;
	font-size: 17px;
	margin-top: 4px;
}

.article_icon {
	width: 18px;
}

.article_another {
	display: inline-block;
	width: 150px;
	margin-left: 40px;
	margin-right: 40px;
	vertical-align: top;
	text-align: center;
}

.article_another img {
	width: 130px;
	height: 180px;
	margin-bottom: 10px;
}

.news_top_covers ul {
	overflow: hidden;
	margin-left: 0px;
	padding-left: 0px;
}

.news_top_covers li {
	display: inline-block;
	float: left;
}

.news_top_covers img {
	width: 100px;
	height: 131px;
	padding-right: 8px;
	padding-bottom: 8px;
}

.news_time {
	color: #a2a2a2;
	margin-top: 5px;
	margin-bottom: 15px;
}

#news_img {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	width: 154px;
}

article {
	text-align: justify;
}


.news_list_item {
	display: grid;
	grid-template-columns: 95px 1fr;
	grid-template-rows: auto 1fr;
	column-gap: 15px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: solid 1px var(--gray_border_color);
}

.news_list_item_photo {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}

.news_list_item_about {
	grid-column: 2 / 3;
	grid-row: 1 / 2;	
}

.news_list_item_desc {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	margin-top: 10px;
}

.news_quiz_book {
	display: inline-block;
	width: 150px;
	padding: 0px 10px;
	text-align: center;
	cursor: pointer;
	vertical-align: top;
	font-size: 110%;
}

.news_quiz_book div {
	height: 200px;
}

.news_quiz_book img {
	height: 140px;
	margin: auto;
	margin-top: 10px;
}

.news_quiz_question input[type="radio"]:checked ~ * { 
    background: #e2e2e2 !important;
}

.news_quiz_ok_answer {
    background: #add566;	
}

.news_quiz_fail_answer {
    background: #bf4746;	
}

.news_recommended_box {
	background-color: #eeeeee;
	margin: 20px;
	padding: 20px;
}

.news_recommended_box h3 {
	margin-bottom: 13px;
}

.news_recommended_box img {
	width: 70px;
	max-width: 70px;
	margin-right: 8px;
}

.news_recommended_box td {
	vertical-align: top;
}

.review_cite {
	padding: 10px 34px;
	font-style: italic;
	font-family: Courier;
	font-size: 130%;
	text-align: left;
	line-height: 135%;
}

@media (max-width: 700px) {
	.news_list_item_photo {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}

	.news_list_item_about {
		grid-column: 2 / 3;
		grid-row: 1 / 2;	
	}

	.news_list_item_desc {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
		margin-top: 10px;
	}
}






/* index/homepage ----------------------------------------------------------- */
.index_header_wrapper {
	background-image: url('/grafika/bg_library_shadow.jpg');
	margin-bottom: 30px;
}

.index_header {
	display: grid;
	grid-template-columns: 190px 1fr 330px;	
	grid-template-rows: 138px auto;
	color: #ffffff;
}

.index_header_lama {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	overflow: hidden;
	height: 280px;
}

.index_header_lama img {
	width: 170px;
	margin-top: 42px;
}

.index_header_h {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 25px;
	padding-top: 70px;
	line-height: 31px;

}

.index_header_search {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}


.index_search_text {
	width: 460px;
	background-color: #ffffff;
	border-radius: 8px;
	border: 0px;
	margin-right: 10px;
	padding: 12px 20px;
	margin-top: 3px;
}

.index_search_text_btn {
	margin-top: -4px;
}

.index_search_whisper_box {
	display: none;
	position: absolute;
	background-color: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	margin-top: 3px;
	width: 460px;
	box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.20);
	text-align: left;
	z-index: 100;
	padding: 10px 0px;
}

.index_whisper_item {
	display: grid;
	grid-template-columns: 40px 1fr;
	min-height: 45px;
	padding: 7px 0px;
	margin: 0px 14px;
	font-size: 16px;
	font-weight: bold;
	border-bottom: solid 1px var(--gray_border_color);
	color: var(--text_color);
}

.index_whisper_item:hover, .index_whisper_item_active {
	background-color: var(--gray_bg_color);
	cursor: pointer;
}	

.index_whisper_item:last-child {
	border-bottom: none;
}

.index_whisper_item img {
	width: 32px;
	max-height: 52px;
}

.index_whisper_item span {
	font-size: 13px;
	font-weight: 400;
}

.index_header_login {
	grid-column: 3 / 4;
	grid-row: 1 / 3;
	position: relative;	
}

.index_header_login_box {
	width: 330px;
	position: absolute;
	box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.10);	
	border-radius: 8px;
	top: 30px;
}


.index_about_boxes {
	display: grid;
	grid-template-columns: 250px 250px 250px 1fr;
	column-gap: 20px;	
}

.index_about_box {
	display: grid;
	grid-template-columns: 24px 1fr;
	column-gap: 8px;	
}

.index_about_box_h {
	font-size: var(--text_size_bigger);
	font-weight: 700;
}

.index_book_items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	column-gap: 30px;
	row-gap: 20px;
}

.index_book_item {
	text-align: center;
	border-radius: 8px;
	background-color: var(--gray_bg_color);
	padding: 18px 18px;
}

.index_book_item_cover {
	height: 190px;
	margin-bottom: 6px;
}

.index_book_item_cover img {
	max-height: 190px;	
}

.index_book_item_name {
	line-height: 19px;
	margin-bottom: 3px;
}

.index_book_item_name a {
	font-weight: 700;
}

.index_book_item_author {
	line-height: 19px;
	height: 19px;
	overflow: hidden;
}

.index_book_item_author a {
	color: var(--text_color);
}

.index_book_item_price {
	font-size: 18px;
	font-weight: 700;
	margin-top: 9px;
	line-height: 20px;
}

.index_bm_book_item {
	text-align: center;
	border-radius: 8px;
	padding: 18px 18px;
	background-image: url('/grafika/bg_library_shadow.jpg');
	background-position: center;
	color: #ffffff;
	font-weight: 700; 
	font-size: 18px;
}



.index_extended_items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 30px;
	row-gap: 20px;
}

.index_extended_item {
	display: grid;
	grid-template-columns: 90px 1fr;
	column-gap: 15px;
}

.index_extended_item_photo img {
	width: 90px;
	height: 130px;
}

.index_extended_item_h {
	display: block;
	font-size: 18px;
	line-height: 25px;
	margin-bottom: 3px;
}

.index_extended_item_smaller {
	font-size: var(--text_size_smaller);
}

.index_extended_item_date {
	color: var(--text_color_gray);
}

.index_extended_item_content {
	grid-column: 1 / 3;
	text-align: justify;
}

.index_extended_item_sep {
	grid-column: 1 / 3;
	border-bottom: solid 1px var(--gray_border_color);	
	margin: 4px 0px 12px 0px;
}

.index_extended_item_user {
	grid-column: 1 / 3;
	display: grid;
	grid-template-columns: 40px 1fr;
	column-gap: 10px;
}

.index_extended_item_user img {
	width: 40px;
	height: 40px;
	border-radius: 100px;
}


.index_add_book_box {
	display: grid;
	grid-template-columns: 90px 1fr auto;
	background-image: url('/grafika/bg_library_shadow.jpg');
	color: #ffffff;
	font-size: 14px;
	padding: 28px 20px;
	margin-top: 70px;
	margin-bottom: 50px;
	align-items: center;
	border-radius: 8px;
}

.index_add_book_text div {
	font-size: 20px;
	font-weight: 700;
}

.index_add_book_img img {
	position: absolute;
	margin-top: -78px;
	filter: drop-shadow(0px 10px 15px rgba(69, 31, 3, 0.60));
}

.index_booxy_text {
	font-size: 18px;
	margin-bottom: 20px;
}

.index_boox_store_img {
	height: 60px;
}

@media (max-width: 1200px) {
	.index_about_boxes {
		display: block;
	}

	.index_about_box {
		display: grid;
		grid-template-columns: 32px 1fr;
		column-gap: 16px;
		margin-bottom: 12px;
	}

	.index_about_box img {
		width: 32px;
	}
	
	.index_book_items {
		column-gap: 8px;
		overflow: scroll;
		scrollbar-width: none; 
	}

	.index_book_items_12 {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;		
	}

	.index_book_item, .index_bm_book_item {
		width: 170px;
	}
	
	.index_extended_items {
		display: block;
	}
	
	.index_extended_item {
		border-bottom: solid 1px var(--gray_border_color);
		padding-bottom: 16px;
		margin-bottom: 16px;
	}
	
	.index_extended_item:last-child {
		border-bottom: none;
		margin-bottom: 0px;	
	}
	
	.index_add_book_box {
		display: block;
		margin-top: 30px;
		margin-bottom: 30px;
		text-align: center;
	}
	
	.index_add_book_img img {
		position: static;
		margin-top: 0px;
		filter: none;
	}
	
	.index_header_wrapper {
	}

	.index_header {
		grid-template-columns: 75px 1fr;
		column-gap: 12px;
		padding: 30px 10px 30px 10px;
	}	
	
	.index_header_lama {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
		overflow: auto;
	}

	.index_header_lama img {
		width: 75px;
		margin-top: 0px;
	}

	.index_header_h {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
		margin-bottom: 0px;
		padding-top: 0px;
	}

	.index_header_search {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
	}	

	.index_header_login {
		display: none;
	}
	
	.index_search_text {
		width: 100%;
	}
	
	.index_search_text_btn {
		width: 100% !important;
		margin-top: 4px;
	}
	
	.index_search_whisper_box {
		margin-top: -42px;
		width: 100%;
	  }
}





/* publisher ---------------------------------------------------------------- */
.publisher_header {
	height: 190px;
	margin-top: 20px;
	margin-bottom: 6px;
}

.publisher_header_img {
	width: 100%;
	height: 190px;
}

.publisher_logo {
	position: absolute;
	margin-left: 30px;
	margin-top: 30px;
	box-shadow: 4px 6px 3px 0px rgba(50, 50, 50, 0.75);
}

.publisher_logo img {
	border: solid 5px #ffffff;
	max-width: 150px;
	max-height: 110px;
}



/* forum -------------------------------------------------------------------- */
.forum_table {
	width: 100%;
	border-spacing: 0px;
	margin-top: 10px;
	margin-bottom: 8px;
}

.forum_table td {
	height: 50px;
	border-bottom: solid 1px #e4e4e4;
}

.forum_header {
	height: 36px !important;
	background-color: var(--gray_bg_color);
	padding-right: 10px;
}

.forum_first_column {
	width: 55%;
	padding-left: 14px;
}

.forum_icon {
	width: 6%;
	padding-right: 5px;
}

.forum_icon img {
	padding-top: 5px;
	min-width: 15px;
}

.forum_table span {
	color: #a2a2a2;
	font-size: 13px;
}



/* topic -------------------------------------------------------------------- */
.topic_format_bold {
	height: 26px;
	width: 26px;
	background-color: #f6f7f9;
	border: 0px;
	border-bottom: solid 1px #e4e4e4;
	border-right: solid 1px #e4e4e4;
	font-weight: bold;
	cursor: pointer;
}

.topic_format_italic {
	height: 26px;
	width: 26px;
	background-color: #f6f7f9;
	border: 0px;
	border-bottom: solid 1px #e4e4e4;
	border-right: solid 1px #e4e4e4;
	font-style: italic;
	cursor: pointer;
}

.topic_format_underline {
	height: 26px;
	width: 26px;
	background-color: #f6f7f9;
	border: 0px;
	border-bottom: solid 1px #e4e4e4;
	border-right: solid 1px #e4e4e4;
	text-decoration: underline;
	cursor: pointer;
}


.topic_post {
	display: grid;
	grid-template-columns: 80px 1fr;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: solid 1px var(--gray_border_color);
}

.topic_post:last-child {
	border-bottom: none;
}


.topic_post_avatar_box {
	grid-column: 1 / 2;
	grid-row: 1 / 3;	
}

.topic_post_avatar {
	display: block;
	border-radius: 100px;
	width: 60px;
}

.topic_post_header {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	line-height: 19px;
}

.topic_post_header_nick {
	font-weight: 700;
	font-size: 17px;
	display: inline-block;
	margin-right: 8px;
}

.topic_post_header_date {
	color: var(--text_color_gray);
	font-size: var(--text_size_smaller);
}

.topic_post_text {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}


.topic_cite_box {
	border: solid 1px var(--gray_border_color);
	background-color: var(--gray_bg_color);
	margin: 10px;
	margin-left: 20px;
	padding: 5px 15px;
	color: #999999;
	font-size: 13px;
	border-radius: 6px;
}

.topic_is_admin {
	position: absolute;
	margin-top: -20px;
	width: 24px !important;
}

.topic_new_post {
	height: 16px;
	margin-right: 8px;
}

@media (max-width: 800px) {
	.topic_post {
		grid-template-columns: 40px 1fr;
		column-gap: 14px;
	}
	
	.topic_post_avatar_box {
		grid-column: 1 / 2;
		grid-row: 1 / 2;	
	}

	.topic_post_avatar {
		width: 40px;
	}

	.topic_post_header {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}

	.topic_post_text {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
		padding-top: 6px;
	}
	
	.topic_post_header_nick {
		display: block;
		margin-bottom: 4px;
	}
	
}





/* search + adv search ------------------------------------------------------ */
.search_graphic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
	row-gap: 30px;
}

@media (max-width: 700px) {
	.search_graphic {
		grid-template-columns: 1fr;
	}
}

.search_graphic a {
	font-size: 18px;
	font-weight: 700;
}

.search_graphic_box {
	display: grid;
	grid-template-columns: 110px 1fr;
	column-gap: 10px;
}

.search_graphic_box_img {
	position: relative;
	display: block;
	align-self: start;
}

.search_graphic_box_content {
	align-self: start;
	padding-right: 12px;
}

.search_flag {
	height: 10px;
	vertical-align: baseline;
	margin-left: 4px;
}

.search_author_link {
	font-size: 14px !important;
}

@media (min-width: 1100px) {
	.search_col1 {
		width: 40px;
		padding-right: 10px;
	}
}
@media (max-width: 1099px) {
	.search_col1 {
		width: 40px;
		padding-right: 10px;
	}
}
@media (max-width: 760px) {
	.search_col1 {
		display: none;
	}
}

.search_col2 {
	width: 40%;
	padding-right: 10px;
}

.search_col3 {
	width: 30%;
	padding-right: 10px;
}




.search_tag_box {
	display: inline-block;
}

#search_tag_area input {
	width: 200px;
}

#adv_search_tag_whisper_area {
	position: absolute;
	display: none;
	background-color: #ffffff;
	width: 198px;
	margin-top: 0px;
	margin-left: 2px;
	box-shadow: 0px 0px 3px #888888;
	-webkit-box-shadow: 2px 2px 2px #888888;
	border-left: solid 1px #eeeeee;
	border-right: solid 1px #eeeeee;
	border-bottom: solid 1px #eeeeee;
	padding-bottom: 2px;
	overflow: hidden;
	text-align: left;
	z-index: 10;
}

.search_tag_whisper_item {
	height: 23px;
	padding-top: 0px;
	padding-left: 10px;
	font-size: 13px;
	overflow: hidden;
	line-height: 22px;
	cursor: pointer;
}

.search_tag_whisper_item:hover {
	background-color: #eeeeee;
}

.search_help_item li {
	margin: 15px 0px;
}



.adv_search td {
	vertical-align: middle;
	padding-top: 14px;
}

.adv_search select {
	width: 200px;
}

.adv_search_first_col {
	width: 20%;
	font-weight: 600;
}

#adv_search_desc {
	padding-top: 0px;
}

.adv_search_space {
	margin-top: 10px;
	margin-bottom: 8px;
}





/* club --------------------------------------------------------------------- */
.club_leave {
	float: right;
	margin-top: -55px;
}

.club_avatar {
	width: 45px;
	height: 45px;
}

.club_history_item {
	display: inline-block;
	width: 100px;
	vertical-align: top;
}

.club_history_item img {
	width: 75px;
	height: 120px;
}

.club_actual_box {
	display: inline-block;
	width: 40%;
	vertical-align: top;
}

.club_actual_box img {
	width: 120px;
}

.club_readers {
	display: grid;
	grid-template-columns:  1fr 1fr 1fr;
}

.club_readers_user {
	display: inline-block;
	height: 80px;
	width: 100%;
}

.club_readers_avatar {
	float: left;
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

@media (max-width: 1000px) {
	.club_readers {
		grid-template-columns:  1fr 1fr;
	}
	
	.club_readers_avatar {
		width: 30px;
		height: 30px;
		margin-right: 4px;
	}

}

.club_history_book {
	display: grid;
	grid-template-columns: 100px 1fr;
	column-gap:  20px;
}

.club_anket_box {
	margin: auto;
	max-width: 380px;
	padding: 8px;
	border: solid 1px #d5d5d5;
}

.club_anket_cover {
	width: 30px;
}

.club_anket_progresss_cell {
	width: 75%;
}





/* mail --------------------------------------------------------------------- */
.mail_conversation_box {
	display: grid;
	grid-template-columns: 60px 1fr;
	grid-template-rows: auto 1fr;
	column-gap: 20px;
	border-top: solid 1px var(--gray_border_color);
	padding-top: 15px;
	padding-bottom: 15px;
	cursor: pointer;
}

.mail_conversation_box:hover {
	background-color: var(--gray_bg_color);
}

.mail_conversation_avatar {
	grid-column: 1 / 2;
	grid-row: 1 / 3;	
}

.mail_conversation_header {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	margin-bottom: 5px;
	
}

.mail_conversation_content {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

@media (max-width: 900px) {
	.mail_conversation_avatar {
		grid-column: 1 / 2;
		grid-row: 1 / 2;	
	}

	.mail_conversation_header {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
		margin-bottom: 0px;

	}

	.mail_conversation_content {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
		margin-top: 5px;
	}
}

.mail_new {
	background-color: #f8f9fa;
}

.mail_whisper_area {
	display: none;
	position: absolute;
	background-color: #ffffff;
	width: 257px;
	margin-left: 2px;
	box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.20);
	border-left: solid 1px #eeeeee;
	border-right: solid 1px #eeeeee;
	border-bottom: solid 1px #eeeeee;
	padding-bottom: 2px;
	overflow: hidden;
	z-index: 10;
}

.mail_whisper_item {
	height: 34px;
	padding-top: 4px;
	padding-left: 5px;
	font-size: 14px;
	overflow: hidden;
	line-height: 22px;
}

.mail_whisper_item img {
	width: 28px;
	height: 28px;
	margin-right: 5px;
	border-radius: 100px;
}


.mail_my_msg_wrapper {
	display: grid;
	grid-template-columns: 1fr 35px;
	column-gap: 15px;
	text-align: right;
	vertical-align: bottom;
	margin-bottom: 15px;
	word-wrap: break-word;
	overflow-wrap: anywhere;	
}

.mail_user_msg_wrapper {
	display: grid;
	grid-template-columns: 35px 1fr;
	column-gap: 15px;
	vertical-align: bottom;
	margin-bottom: 15px;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

.mail_msg_del_wrapper {
	display: none;
	float: right;
	width: 9px;
	margin-right: -9px;
}

.mail_msg_del {
	position: absolute;
	margin-top: -10px;
}

.mail_my_msg_avatar {
	order: 2;
}

.mail_user_msg_avatar {
	order: 1;
}

.mail_my_msg_content {
	order: 1;
}

.mail_user_msg_content {
	order: 2;
}


.mail_my_msg {
	display: inline-block;
	min-width: 124px;
	max-width: 550px;
	padding: 12px;
	padding-top: 6px;
	background-color: var(--gray_bg_color);
	text-align: left;
	border-radius: 8px;
}

.mail_user_msg {
	display: inline-block;
	max-width: 550px;
	min-width: 124px;
	padding: 12px;
	padding-top: 6px;
	background-color: #ffffff;
	border: solid 2px var(--gray_border_color);
	border-radius: 8px;
}

.mail_status {
	font-size: 13px;
}

.mail_msg_time {
	font-size: 11px;
	margin-bottom: 2px;
}

.mail_avatar {
	width: 70px;
}

.mail_new_msg {
	margin-left: 10px;
	margin-top: -2px;
}

.mail_msg_special_item_photo {
	width: 75px;
	max-height: 100px;
	padding-right: 10px;
}

#mail_loading_area {
	text-align: center;
	display: none;
}

@media (max-width: 760px) {
	.mail_status {
		font-size: 15px;
		display: block;
		padding-left: 10px;
	}		
}



/* notes -------------------------------------------------------------------- */
.note {
	display: grid;
	grid-template-columns: 90px 1fr;
	column-gap: 15px;
	border-top: solid 1px var(--gray_border_color);
	padding-top: 15px;
	padding-bottom: 15px;
}


.note_header a {
	font-size: 16px;
}

.note_control {
	float: right;
}

.note_control a {
	font-size: 13px;
}


@media (max-width: 900px) {
	.note {
		grid-template-columns: 60px 1fr;
	}	
}

.note_content {
	word-break: break-word;
}


/* friends ------------------------------------------------------------------ */
.friend_box {
	display: grid;
	grid-template-columns: 60px 140px 1fr;
	column-gap: 15px;
	padding: 15px 0px;
	border-top: solid 1px var(--gray_border_color);
}

.friend_box_avatar {
	grid-column: 1 / 2;
	grid-row: 1 / 2;
}

.friend_box_action {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}

.friend_box_reading {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
}

.friend_box_action .btn, friend_box_action .btn:hover {
	color: #bbc3d0 !important;
}

.friend_reading_book {
	display: inline-block;
	width: 100px;
	height: 193px;
	overflow: hidden;
	margin-right: 20px;
	text-align: center;
	margin-bottom: 15px;
}

.friend_reading_book_cover {
	width: 80px;
	height: 125px;
	margin: auto;
}

.friend_reading_book_cover img {
	width: 80px;
	height: 120px;
}

.friend_reading_book_more {
	display: inline-block;
	vertical-align: top;
	margin-top: 40px;
}

.friend_reading_book_name {
	height: 41px;
	overflow: hidden;
}

.friends_reading_progress_wrapper {
	width: 100px;
}

.friends_similarity_box {
	display: inline-block;
	width: 140px;
	height: 250px;
	margin: auto;
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
	vertical-align: top;
}

.friends_similarity_box_in {
	overflow: hidden;
	text-align: center;
	padding-bottom: 10px;
}

.friends_similarity_box_in img {
	height: 80px;
	margin-bottom: 6px;
}

@media (max-width: 1000px) {
	.friend_box_avatar {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}

	.friend_box_action {
		grid-column: 2 / 4;
		grid-row: 1 / 2;
		margin-bottom: 15px;
	}

	.friend_box_reading {
		grid-column: 1 / 4;
		grid-row: 2 / 3;
	}
	
	.friend_reading_book_more {
		display: block;
		margin-top: 0px;
	}
}









/* order -------------------------------------------------------------------- */
.orders_download_cell {
	width: 40%;
}

.orders_download_photo img {
	width: 55px;
}


.order_cover {
	width: 50px;
	text-align: center;
	padding-left: 5px;
}

.order_bigger {
	font-size: 17px;
	font-weight: bold;
}

.order_steps {
	min-height: 117px;
	border: solid 1px var(--gray_border_color);
	background-color: var(--gray_bg_color);
	margin-bottom: 30px;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

.order_step {
	display: inline-block;	
	max-width: 160px;
	min-width: 100px;
	margin: 0px;
	margin-left: 5px;
	text-align: left;
}	

.order_step_round_active {
	display: inline-block;
	width: 50px;
	height: 50px;
	background-color: #97c848;
	border-radius: 100%;
}

.order_step_round {
	display: inline-block;
	width: 50px;
	height: 50px;
	background-color: #e0e0e0;
	border-radius: 100%;	
}

.order_step_point_active {
	display: inline-block;
	width: 3px;
	height: 3px;
	background-color: #97c848;
	margin-left: 2px;
	border-radius: 100%;
}

.order_step_point {
	display: inline-block;
	width: 3px;
	height: 3px;
	background-color: #e0e0e0;
	margin-left: 2px;
	border-radius: 100%;
}	

.order_step_text_active {
	position: absolute;
	margin-left: 54px;
	margin-top: 45px;
	width: 100px;
	text-align: left;
	font-size: 13px;
	font-weight: 600;
}	

.order_step_text {
	position: absolute;
	margin-left: 54px;
	margin-top: 45px;
	width: 100px;
	text-align: left;
	color: #b8b8ba;
	font-size: 13px;
	font-weight: 600;
}

.order_step_num {
	position: absolute;
	margin-left: 13px;
	margin-top: 42px;
}

@media (max-width: 960px) {
	.order_steps {
		min-height: initial;
		padding-top: 15px;
		padding-bottom: 4px;
	}
	
	
	.order_step {
		display: block;
		margin-bottom: 15px;
		margin-left: 38px;
	}	
	
	.order_step_round_active {
		display: inline-block;
		width: 30px;
		height: 30px;
	}
	
	.order_step_round {
		display: inline-block;
		width: 30px;
		height: 30px;
	}
		
	.order_step_point_active {
		display: none;
	}
	
	.order_step_point {
		display: none;
	}	
	
	.order_step_text_active {
		margin-left: 44px;
		margin-top: 5px;
		width: 200px;
	} 
	
	.order_step_text {
		margin-left: 44px;
		margin-top: 5px;
		width: 200px;
	}
	
	.order_step_num {
		margin-left: -30px;
		margin-top: 2px;
	}
	
}

.order_step a {
	color: #354550;
}

.order_shipping_icon {
	width: 35px;
}





/* add book / author -------------------------------------------------------- */
#add_book_img {
	float: left;
	padding-right: 25px;
	padding-bottom: 10px;
}

#add_table {
	width: 99%;
}

#add_table td {
	vertical-align: top;
	padding-bottom: 8px;
}

.add_first_col {
	width: 25%;
}

.add_required {
	color: #e60c29;
}

.add_small {
	font-size: 12px;
}

.add_release {
	width: 99%;
}

.add_release td {
	vertical-align: middle !important;
	padding-bottom: 4px !important;
}

.add_publisher {
	width: 220px;
}


.add_error {
	display: none;
	position: absolute;
	margin-top: -34px;
	width: 490px;
	height: 32px;
	background-image: url('../grafika/add_error.png');
	color: #ffffff;
	padding-top: 5px;
	padding-left: 10px;
}

#add_whisper_area {
	display: none;
	position: absolute;
	background-color: #ffffff;
	width: 240px;
	margin-top: 0px;
	margin-left: 2px;
	box-shadow: 0px 0px 3px #888888;
	-webkit-box-shadow: 2px 2px 2px #888888;
	border-left: solid 1px #eeeeee;
	border-right: solid 1px #eeeeee;
	border-bottom: solid 1px #eeeeee;
	padding-bottom: 2px;
	overflow: hidden;
	text-align: left;
	z-index: 20;
}


.add_whisper_item {
	display: block;
	padding: 4px 4px 4px 10px;
	font-size: 13px;
	overflow: hidden;
	line-height: 22px;
	cursor: pointer;
	z-index: 202;
}

.add_whisper_item:hover {
	background-color: #eeeeee;
}

#add_book_tag_wrapper {
	display: block;
	width: 270px;
}

#add_book_tag_wrapper .input {
	padding-left: 8px !important;
}

#add_book_tag_wrapper .search::after {
	content: inherit !important;
	background: none !important;
}

#add_book_tag_wrapper .search::before {
	display: none !important;
}

#add_book_tag_wrapper .button {
	height: 36px !important;;
}

#add_book_tag_whisper_area {
	display: none;
	position: absolute;
	background-color: #ffffff;
	width: 174px;
	margin-top: 0px;
	margin-left: 2px;
	box-shadow: 0px 0px 3px #888888;
	-webkit-box-shadow: 2px 2px 2px #888888;
	border-left: solid 1px #eeeeee;
	border-right: solid 1px #eeeeee;
	border-bottom: solid 1px #eeeeee;
	padding-bottom: 2px;
	overflow: hidden;
	text-align: left;
}

.add_book_tag_item {
	display: inline-block;
	border: solid 1px #e4e4e4;
	padding: 2px;
	padding-right: 7px;
	padding-left: 7px;
	margin-right: 10px;
	margin-top: 10px;
}

.add_book_tag_item img {
	margin-left: 4px;
}

.book_tag_whisper_item {
	padding: 4px 4px 4px 10px;
	font-size: 13px;
	overflow: hidden;
	line-height: 22px;
	cursor: pointer;
}

.book_tag_whisper_item:hover {
	background-color: #eeeeee;
}



/* registration ------------------------------------------------------------- */
.reg_first_col {
	width: 35%;
}

#reg_interests_area {
	margin-top: 10px;
}

@media (min-width: 761px) {
	.reg_sec_col {
		width: 35%;
	}
}
@media (max-width: 760px) {
	.reg_sec_col {
		width: 200px;
	}
}

#reg_newsletter_arrow {
	width: 160px;
	height: 53px;
	position: absolute;
	margin-left: -165px;
	margin-top: -50px;
}



/* settings ----------------------------------------------------- */
.settings_box {
}

#settings_city_whisper_area {
	display: none;
	position: absolute;
	background-color: #ffffff;
	width: 207px;
	margin-top: 0px;
	margin-left: 1px;
	box-shadow: 0px 0px 3px #888888;
	-webkit-box-shadow: 2px 2px 2px #888888;
	border-left: solid 1px #eeeeee;
	border-right: solid 1px #eeeeee;
	border-bottom: solid 1px #eeeeee;
	padding-bottom: 2px;
	overflow: hidden;
	z-index: 10;
}

.settings_city_whisper_item {
	width: 196px;
	height: 24px;
	padding-top: 4px;
	padding-left: 10px;
	font-size: 14px;
	overflow: hidden;
	line-height: 22px;
	box-sizing: content-box !important;
}

.settings_file_wrapper {
	width: 300px;
}

.settings_interest {
	display: inline-block;
	border: solid 1px #e4e4e4;
	padding: 4px;
	padding-left: 10px;
	padding-right: 6px;
	margin-right: 4px;
	margin-bottom: 10px;
	background-color: #f8f8f8;
}

.settings_interest_item {
	display: inline-block;
	border: solid 1px #e4e4e4;
	padding: 4px;
	padding-left: 10px;
	padding-right: 10px;
	margin-right: 4px;
	margin-bottom: 10px;
	background-color: #f8f8f8;
	cursor: pointer;
}

.settings_interest_item_active, .settings_interest_item:hover {
	background-color: #e4e4e4 !important;
	box-shadow: 0px 0px 3px #888888;
	-webkit-box-shadow: 2px 2px 2px #888888;	
}

.settings_public_profile_item {
	width: 80%;
	padding: 12px 10px 12px 20px;
	border: solid 1px #c7c7c7;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin-bottom: 3px;
	cursor: pointer;
	font-size: 16px;
}

.settings_public_profile_item:hover {
	z-index: 0;
}

.settings_public_profile_item_moving {
	background-color: #f79c9c;
}






/* review ------------------------------------------------------------------- */
#review_text {
	text-align: justify;
}

#review_text img {
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

#review_img {
	display: inline-block;
	float: left;
	width: 20%;
	margin-right: 2%;
	margin-bottom: 20px;
}

#review_author {
	float: right;
	font-size: 13px;
	text-align: right;
}

.review_head {
	float: left;
	width: 77%;
	margin-bottom: 20px;
}

.review_another {
	display: inline-block;
	width: 150px;
	margin-left: 40px;
	margin-right: 40px;
	vertical-align: top;
	text-align: center;
}

.review_another img {
	width: 120px;
	height: 180px;
	margin-bottom: 10px;
}







/* edits -------------------------------------------------------------------- */
.edit_table td {
}

.edit_first_col {
	width: 25%;
	vertical-align: middle;
}

#edit_map_area_all {
		display: none;
		padding-bottom: 10px;
}

#edit_map_area {
		width: 600px;
		height: 400px;
}



/* my_books ----------------------------------------------------------------  */
#my_books_print_box, #my_books_share_box, #my_books_export_box {
	display: none;
	background-color: #ffffff;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 23px;
	font-size: var(--text_size_smaller);
}

#my_books_search_button {
	width: auto;
	display: inline-block;
	min-width: 0px;
	background-image: url('../grafika/green_search.png');
	background-repeat: no-repeat, no-repeat;
	background-position: 10px center, 92% center; 
	padding-left: 30px;
	padding-right: 6px;
	right: 115px;
	margin-right: 8px;
	z-index: 101;
}

#my_books_search_box {
	padding-bottom: 30px;
}

#my_books_search_text {
	width: 200px;
}

.my_books_reading_progress_area {
	position: fixed;
	left: 38%;
	top: 50%;
	margin-left: -165px;
	transform: translateY(-50%);
	display: none;
    width: 320px;
	background-color: #ffffff;
    text-align: center;
    padding: 10px 10px;
    border-radius: 6px;
    z-index: 200;
	box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.20);	
}

@media (max-width: 1200px) {
	.my_books_reading_progress_area {
		left: 50%;
	}	
}

#my_books_borrow_area {
    position: absolute;
	display: none;
    width: 220px;
	background-color: #ffffff;
    text-align: left;
    padding: 10px 10px;
    border-radius: 6px;
    z-index: 200;
	box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.20);	
}

#my_books_borrow_close {
	float: right;
	cursor: pointer;
	margin-top: -4px;
	margin-right: 2px;
}

.my_books_edit_box {
	width: 180px;
	position: absolute;
	background-color: #ffffff;
	box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.20);	
    border-radius: 6px;
	padding: 9px 8px;
	margin-left: -10px;
	margin-top: -7px;
	font-size: 14px;
}

.my_books_about_box {
    position: absolute;
	width: 180px;
	background-color: #ffffff;
    border-radius: 6px;
    z-index: 200;
	box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.20);	
	padding: 9px 8px;
	margin-left: -145px;
	margin-top: -1px;
	font-size: 14px;
	text-align: center;	
}

.my_books_edit {
	cursor: pointer;
	width: 17px;
	position: absolute;
	margin-top: 3px;
}

.my_books_edit_time {
	cursor: pointer;
	width: 14px;
	position: absolute;
	margin-top: 3px;
}

.my_books_item {
	margin-bottom: 70px;
	position: relative;
}

.my_books_item_controls {
	position: absolute;
	right: 0px;
}

.my_books_item_cover {
	text-align: center;
}

.my_books_item_cover img {
	height: 135px;
	margin-bottom: 10px;
}

.my_books_item_name_wrapper {
	height: 66px;
}

.my_books_item_name {
	max-height: 40px;
	text-align: center;
	line-height: 20px;
	overflow: hidden;
}

.my_books_item_name a {
	font-weight: 700;
	font-size: var(--text_size_base);	
}

.my_books_item_authors {
	text-align: center;
	margin-top: 3px;
	height: 26px;
	overflow: hidden;
}

.my_books_item_authors a {
	color: var(--text_color);
}

.my_books_about_button, .my_books_about_button:hover {
	display: inline-block;
	min-width: 30px;
	min-height: 30px;
	border: solid 1px #e4e4e4;
	border-radius: 4px;
	text-align: center;
	cursor: pointer;
	padding-top: 3px;
	vertical-align: top;
	font-weight: 600;
	padding-left: 6px;
	padding-right: 6px;
	font-size: 21px;
	line-height: 20px;
	background-color: #ffffff;
}

.my_books_about_button, .my_books_about_button:hover, .my_books_about_button i , .my_books_about_button:hover i {
	color: #bbc3d0;
}









/* plugin ------------------------------------------------------------------  */
.plugin_code {
	border: solid 1px #e4e4e4;
	width: 98.5%;
	height: 140px;
	resize: none;
	margin-top: 8px;
	margin-bottom: 8px;
	padding: 4px;
	font-family: Source Sans Pro;
	font-size: 14px;
}

.plugin_example {
	display: inline-block;
	vertical-align: top;
	margin-left: 22px;
	margin-right: 22px;
	text-align: center;
	margin-bottom: 60px;
}

.plugin_example_plugin {
	height: 690px;
}



/* soutez ------------------------------------------------------------------- */
.comp_partner {
	float: right;
	width: 300px;
	text-align: justify;
	padding-left: 20px;
}


@media (min-width: 761px) {
	.comp_blog_item {
		display: inline-block;
		width: 170px;
		height: 200px;
		text-align: center;
	}
	
	.comp_blog_arrow {
		display: inline-block;
		height: 200px;
		vertical-align: middle;
		margin-top: -40px;
	}
}
@media (max-width: 760px) {
	.comp_blog_item {
		display: block;
		width: 300px;
		height: 200px;
		margin: auto;
		margin-bottom: 40px;
		text-align: center;
	}
	
	.comp_blog_arrow {
		display: none;
	}
}

.comp_blog_item img {
	margin-bottom: 20px;
}

.comp_blog_item span {
	display: block;
	font-size: 30px;
	margin-bottom: 20px;
}

.comp_blog_item div {
	font-size: 20px;
	margin-bottom: 20px;
}

.comp_blog_item_inactive {
	opacity: 0.5;
}

.comp_blog_rul {
	font-size: 18px;
	margin-left: 50px;
	margin-right: 50px;
}

.comp_blog_rul li {
	margin-bottom: 15px;
}

@media (min-width: 1100px) {
	#comp_blog_top_img {
		height: 580px;
		padding-top: 80px;
		background-position: center 80px;
		background-repeat: no-repeat;
	}

}
@media (max-width: 1099px) {
	#comp_blog_top_img {
		height: 580px;
		background-size: cover;
		background-position: center 0px;
		background-repeat: no-repeat;
	}	
}
@media (max-width: 760px) {
	#comp_blog_top_img {
		display: none;
	}
}







/* stream ------------------------------------------------------------------- */
#stream_filter_box {
	display: none;
	clear: right;
	position: relative;
	z-index: 4;
	top: -1px;
	border: solid 1px var(--gray_border_color);
	padding: 10px;
	border-radius: 6px;
}

#stream_filter_table {
	width: 100%;
}

.stream_filter_picker {
	display: inline-block;
	cursor: pointer;
	margin: 2px;
	margin-bottom: 4px;
	padding: 3px;
	padding-left: 13px;
	padding-right: 13px;
	border: solid 1px #f6f7f9;
	background-color: var(--gray_bg_color);
}

.stream_filter_picker_active {
	background-color: #ffffff;
	color: var(--action_red_color);
	padding-left: 6px;
	padding-right: 6px;
	border: solid 1px var(--action_red_color);
}

.stream_exclusive_select {
	display: inline-block;
	margin-left: -3px !important;
	margin-right: 0px !important;
}

@media (min-width: 760px) {
	.stream_filter_mobile_name {
		display: none;
	}
		
	.stream_filter_del {
		min-width: 9px;
		text-align: right;
	}
	
	.stream_filter_select_wrapper {
		white-space: nowrap;
		margin-left: 3px;;
		text-align: right;
	}	
}
@media (max-width: 760px) {
	.stream_filter_mobile_name td {
		border-bottom: solid 1px #e4e4e4;
		padding-top: 10px;
	}
	
	.stream_filter_del {
		display: none;
	}
	
	.stream_filter_name {
		display: none;
	}
	
	.stream_filter_select_wrapper {
		margin-left: 3px;
	}	
}


.stream_filter_del img {
	cursor: pointer;
}

#stream_loading_area {
	text-align: center;
	display: none;
}

#stream_area {
	clear: both;
	border-left: solid 1px #d7d7d7;
	margin-left: 15px;
	padding-left: 15px;
	padding-top: 20px;
}

.stream_item {
	border: solid 1px var(--gray_border_color);
	padding: 14px;
	background-color: var(--gray_bg_color);
	border-radius: 6px;
	border-bottom-left-radius: 0px;
}

.stream_item_time {
	display: inline-block;
	margin-left: -28px;
	margin-bottom: 1px;
	padding: 1px;
	padding-left: 8px;
	padding-right: 8px;
	background-color: var(--gray_bg_color);
	border: solid 4px #ffffff;
	font-size: 12px;
	font-weight: 600;
    border-radius: 6px !important;
}

.stream_item_timepoint {
	position: absolute;
	width: 6px;
	height: 6px;
	background-color: #96c948;
	border: solid 8px #ffffff;
	margin-left: -26px;
}

@media (min-width: 761px) {
	.stream_item_box {
		float: left;
		width: 50%;
	}
}
@media (max-width: 760px) {
	.stream_item_box {
	}	
}


.stream_item_photo {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.stream_item_photo img {
	width: 70px;
}

@media (min-width: 761px) {
	.stream_item_right_item {
		float: left;
		width: 50%;
		min-height: 88px; 
		text-align: right;
	}	
}
@media (max-width: 760px) {
	.stream_item_right_item {
		clear: left;
		margin-left: 0px;
		text-align: right;
		border-top: solid 1px #d7d7d7;
		padding-top: 10px;
	}
}


.stream_item_right_item_photo {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}

.stream_item_right_item_photo img {
	width: 50px;
}


.stream_item_sep {
	border-top: solid 1px #d7d7d7;
	margin-bottom: 10px;
}

.stream_subitem_opener_area {
	
}

.stream_item_subitem_opener {
	display: inline-block;
	width: 50px;
	height: 34px;
	padding-top: 2px;
	border: solid 1px var(--gray_border_color);
	border-top: 0px;
	background-color: var(--gray_bg_color);
	text-align: center;
	font-size: 17px;
	font-weight: 600;
	color: #e60c29;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

.stream_item_subitem_opener img {
	vertical-align: middle;
}

.stream_subitem_area {
	display: none;
}

.stream_subitem_area img {
	max-width: 50px;
}

.stream_subitem {
	padding: 14px;
	border-left: solid 1px #d7d7d7;
	border-right: solid 1px #d7d7d7;
	border-bottom: solid 1px #d7d7d7;
	background-color: #fcfcfa;
}

.stream_subitem .stream_specific {
	margin-top: 10px;
}

.stream_subitem_photo {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.stream_subitem_actions {
	float: right;
	margin-left: 15px;
	margin-bottom: 5px;
}

.stream_camp_close {
	float: right;
	margin-top: 4px;
	cursor: pointer;
}

.stream_camp_time {
	margin-top: 4px;
}

.stream_camp_link {
	display: block;
	color: #354550;
}

.stream_camp_link img {
	width: 100%; 
	height: auto;
	max-height: 125px !important;
}

#stream_camp_subitems {
	display: none;
}

.stream_camp_opener {
	cursor: pointer;
}

.stream_camp_opener div {
	position: absolute;
	width: 110px;
	color: #ffffff;
	margin-left: 560px;
	margin-top: 30px;
	text-align: center;
	font-weight: 600;
	line-height: 28px;
}

.stream_camp_subitem {
	margin-top: 5px;
}




/* dashboard ---------------------------------------------------------------- */
.dashboard_control {
	float: right;
	margin-right: 11px;
	margin-top: -65px;
}
@media (max-width: 420px) {
	.dashboard_control {
		margin-top: 0px;
	}
}

	
.dashboard_filter_wrapper {
	position: relative;
	min-width: 200px;
}


.dashboard_filter_button {
	float: right;
	position: relative;
	z-index: 5;
	min-width: 0px;
	height: 32px;
	padding-left: 25px;
	padding-top: 4px;
	padding-right: 19px;
	border-right: 0px !important;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
	z-index: 101;
	font-weight: 600;
	border: solid 1px var(--gray_border_color);
}

.dashboard_filter_button_arrow {
	clear: both;
	float: right;
	width: 26px;
	height: 32px;
	background-color: var(--action_red_color);
	color: #ffffff;
	cursor: pointer;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
	text-align: center;
	padding-top: 5px;
}

.dashboard_filter_box {
	display: none;
	position: absolute;
	margin-top: 31px;
	border: solid 1px var(--gray_border_color);
	background-color: #ffffff;
	min-width: 120px;
	right: 0px;
	padding: 9px;
	z-index: 100;
	text-align: left;
	box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.20);
}

.dashboard_filter_box label {
	cursor: pointer;
}

.dashboard_filter_box input {
	margin: auto;
	margin-top: 4px;
}


#dashboard {
	clear: both;
	padding-top: 10px;
}

.dbx-clone {
	position: absolute;
	visibility: hidden;
}

.dbx-clone, .dbx-clone .dbx-handle-cursor {
	cursor: move !important;
}
	
.dbx-dummy {
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	margin: 0 !important;
	padding: 0 !important;
}

.dbx-offdummy {
	display: none !important;
}

.dbx-group, .dbx-box, .dbx-handle {
	position:relative;
	display:block;
}

.dbx-box {
	margin:0;
	padding:0;
	border:none;
}

/* upravitelne */
.dbx-group {
	float: left;
	clear: both;
	padding:0 10px 10px 10px;
}

.dbx-handle {
	position: relative;
	margin: 0;
	margin-bottom: 5px;
	padding-bottom: 2px;
	padding-left: 8px;
	padding-top: 4px;
	border-bottom: solid 2px #e4e4e4;
}

.dbx-handle-cursor {
	cursor: move;
}
	
.dbx-toggle, .dbx-tooltip {
	display: none;
}

.dbx-clone {
	opacity:0.8;
	filter:alpha(opacity=80);
}



@media (min-width: 501px) {
	.dbx-box {
		float: left;
		width: 403px !important;
		height: 300px !important;
		margin-right: 10px;
		margin-bottom: 30px;
		border: solid 1px #ffffff;
		overflow: hidden;
	}
}
@media (max-width: 500px) {
	.dbx-box {
		float: left;
		width: 94% !important;
		height: 300px !important;
		margin-right: 10px;
		margin-bottom: 30px;
		margin-left: 10px;
		border: solid 1px #ffffff;
		overflow: hidden;
		box-shadow:         2px 2px 4px 0px rgba(50, 50, 50, 0.44);	
	}
}

@media (min-width: 751px) {
	.dbx-box-maxi {
		float: left;
		width: 826px !important;
		height: 440px !important;
		padding-left: 4px;
		padding-right: 4px;
		margin-right: 0px;
	}
}
@media (max-width: 750px) {
	.dbx-box-maxi {
		float: left;
		width: 94% !important;
		height: 440px !important;
		margin-left: 10px;
		padding-left: 0px;
		padding-right: 0px;
	}	
}

.dbx-box:hover {
    border: solid 1px #e4e4e4;	
	-webkit-box-shadow: 2px 2px 4px 0px rgba(50, 50, 50, 0.44);
	-moz-box-shadow:    2px 2px 4px 0px rgba(50, 50, 50, 0.44);
	box-shadow:         2px 2px 4px 0px rgba(50, 50, 50, 0.44);	
}


.nano {
	position: relative;
	width: 100%;
	height: 87%;
	overflow: hidden;
}

.nano > .nano-content {
	position: absolute;
	overflow: scroll;
	overflow-x: hidden;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding-left: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-right: 8px;
}

.nano > .nano-content:focus {
	outline: thin dotted;
}

.nano > .nano-content::-webkit-scrollbar {
	display: none;
}

.has-scrollbar > .nano-content::-webkit-scrollbar {
	display: block;
}

.nano > .nano-pane {
	position: absolute;
	width: 10px;
	right: 0;
	top: 0;
	bottom: 0;
	visibility: hidden\9; /* Target only IE7 and IE8 with this hack */
	opacity: .01;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.nano > .nano-pane > .nano-slider {
	background: #c6c7c9;
	position: relative;
	margin: 0 1px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
	visibility: visible\9; /* Target only IE7 and IE8 with this hack */
	opacity: 0.99;
}

.dashboard_small_item {
	clear: left;
	border-bottom: solid 1px var(--gray_border_color);
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.dashboard_small_item_photo {
	float: left;
	padding-right: 6px;
	padding-top: 4px;
	padding-bottom: 4px;
}

.dashboard_small_item_photo img {
	width: 30px;
}

.dashboard_small_item_name {
	margin-bottom: 1px;
}

.dashboard_small_item_user {
	float: left;
	width: 30px;
}

.dashboard_small_item_user img {
	width: 25px;
}

.dashboard_external_blog_name {
	color: #888888;
}


@media (min-width: 761px) {
	.dashboard_box_select {
		float: right;
		margin-top: 4px;
		margin-right: 6px;
		font-size: 14px;
	}
}
@media (max-width: 760px) {
	.dashboard_box_select {
		float: right;
		margin-top: 4px;
		margin-right: 6px;
		font-size: 15px;
	}
	
}


.dashboard_box_select div {
	position: relative;
	z-index: 10;
}

.dashboard_item_authors {
	font-size: 14px !important;
	color: #354550;
}


.dashboard_activity_item {
	display: grid;
	grid-template-columns: 85px 358px 1fr;
	grid-template-rows: auto 1fr;
	column-gap: 15px;
	min-height: 88px;
	border-bottom: solid 1px var(--gray_border_color);
	padding-top: 10px;
	padding-bottom: 10px;
}

.dashboard_activity_item_avatar {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}

.dashboard_activity_item_top {
	grid-column: 2 / 4;
	grid-row: 1 / 2;
	margin-right: 10px;
	margin-bottom: 5px;
}

.dashboard_activity_item_item {
	grid-column: 2 / 3;
	grid-row: 2 / 3;

	display: grid;
	grid-template-columns: 45px 1fr;	
	margin-right: 108px;
}

.dashboard_activity_item_value {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
	font-size: 14px;
	margin-top: 5px;
}

@media (max-width: 760px) {
	.dashboard_activity_item {
		grid-template-columns: 55px 1fr;
		grid-template-rows: auto 1fr 1fr;
		column-gap: 15px;
		
		margin-bottom: 12px;
		padding-bottom: 12px;
	}
	
	.dashboard_activity_item_avatar {
		grid-column: 1 / 2;
		grid-row: 1 / 4;
	}

	.dashboard_activity_item_top {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
		margin-right: 0px;
	}

	.dashboard_activity_item_item {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		margin-right: 0px;
	}	
	
	.dashboard_activity_item_value {
		grid-column: 2 / 4;
		grid-row: 3 / 4;
	}	
}


.dashboard_activity_item_item img {
	width: 36px;
	max-height: 50px;
	margin-right: 4px;
}



.dashboard_activity_item_top a {
	display: inline-block;
	margin-right: 10px;
}

.dashboard_activity_item_time {
	float: right;
	font-size: 13px;
}

.dashboard_activity_progress_wrapper {
	width: 65%;
	margin-top: 3px;
}

.dashboard_recommended {
	width: 20px !important;
	margin-top: 8px;
	margin-left: 5px;
}


.dashboard_article_item {
	display: grid;
	grid-template-columns: 100px 1fr;
	column-gap: 20px;
	margin-top: 5px;
	padding-bottom: 12px;
	text-align: center;
	border-bottom: solid 1px var(--gray_border_color);
}

.dashboard_article_photo {
	margin-top: 5px;
}

.dashboard_article_content {
	text-align: justify;
}

@media (max-width: 760px) {
	.dashboard_article_item {
		grid-template-columns: 60px 1fr;
		column-gap: 10px;
	}
}




/* support ------------------------------------------------------------------ */
#support_table td {
	text-align: center;
}

.support_code {
	display: none;
	width: 90%;
	height: 60px;
	border: solid 1px #e4e4e4;
	margin-bottom: 15px;
}

.support_plugin {
	float: left;
	margin-left: 50px;
}



/* for blogers ---------------------------------------------------------------*/
.for_blogers_right_img {
	float: right;
	padding: 50px;
}

.for_blogers_texts {
	max-width: 500px;
	margin: auto;
	font-size: 13px;
}

/* blog roku ---------------------------------------------------------------- */
.blog_anket_category_box {
	display: inline-block;
	width: 300px;
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 50px;
	vertical-align: top;
}

.blog_anket_category_box > span {
	display: block;
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 25px;
}









/* antikvariat uvod --------------------------------------------------------- */
@media (min-width: 761px) {
	.antiq_main_h {
		color: #9e0001;	
		font-size: 48px !important;
		font-weight: bold !important;
		margin-bottom: 20px;
		line-height: 55px;
	}	
}
@media (max-width: 760px) {
	.antiq_main_h {
		color: #9e0001;	
		font-size: 38px !important;
		font-weight: bold !important;
		margin-bottom: 20px;
		line-height: 45px;
	}
	
}


.antiq_button_red {
	display: inline-block;
	background-color: #9e0001;
	border-radius: 5px;
	padding: 18px 36px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 600;
	border: 0px;
}

.antiq_button_red:hover {
	color: #ffffff;
}

.antiq_button_white {
	display: inline-block;
	background-color: #9e0001;
	border-radius: 5px;
	padding: 17px 35px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 600;
	border: solid 2px #ffffff;
}

.antiq_button_white:hover {
	color: #ffffff;
}

.antiq_button_small {
	padding: 7px 20px;
	font-size: 15px;
}


.antiq_about_box {
	background-color: #9e0001;
	color: #ffffff;
}

.antiq_about_box h2 {
	color: #ffffff;
	font-size: 48px;
	font-weight: bold;
}

@media (min-width: 769px) {
	.antiq_about_img {
		width: 380px;
		margin-top: -35px;
	}

}
@media (max-width: 760px) {
	.antiq_about_img {
		width: auto;
		margin-top: 0px;
	}
}

.antiq_search_box {
	box-shadow: 0px 4px 14px -3px rgba(153,153,153,1);
	padding: 16px 20px;
	border-radius: 5px;
	margin-bottom: 13px;
	background-color: #ffffff;
}

.antiq_search_box input[type="search"] {
	border: 0px;
	font-size: 19px;
	width: calc(100% - 50px);
}

.antiq_search_box button {
	background-color: #c5c5c5;
	color: #ffffff;
	border: 0px;
	border-radius: 4px;
	padding: 5px 12px;
}

.antiq_item_box {
	border-bottom: solid 1px #eeeeee;
}

.antiq_item_price {
	display: block;
	font-size: 26px;
	line-height: 25px;
	color: #79317f;
	font-weight: 600;	
}



/* antiq search ------------------------------------------------------------- */
.antiq_search_container {
	display: grid;
	grid-template-columns: 260px 1fr;
}

.antiq_search_filter {
	border-right: solid 1px var(--gray_border_color);
	padding-right: 20px;
	margin-right: 30px;
}

.antiq_search_content {
	overflow-x: hidden;
}

@media (max-width: 1200px) {
	.antiq_search_container {
		display: block;
	}

	.antiq_search_filter {
		display: none;
		position: fixed;
		left: 0px;
		top: 69px;
		z-index: 100;
		width: 100%;
		padding: 20px;
		background-color: #ffffff;
		overflow: scroll;
		height: calc(100%);
		padding-bottom: 89px;
	}
}

.antiq_filter_box_close {
	width: 20px;
}


/* antiq how ---------------------------------------------------------------- */
.antiq_how_step {
	display: inline-block;
	width: 65px;
	height: 65px;
	padding-top: 7px;
	padding-left: 10px;
	text-align: center;
	background-color: #9e0001;
	color: #ffffff;
	border-radius: 100px;
	font-size: 34px;
	font-weight: bold;
}

.antiq_how_h {
    color: #354550;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 10px;
}

.antiq_how_faq_opener {
	display: inline-block;
	padding: 4px 9px 3px 9px;
	font-size: 28px;
	background-color: #f4f4f4;
	border-radius: 100px;
	color: #000000;
}

.antiq_faq_separator {
	border-top: solid 2px #f4f4f4;
}


/* antikvariat detail ------------------------------------------------------- */
@media (min-width: 761px) {
	#antiq_detail {
		display: grid;
		grid-template-columns: 1fr 1.2fr;
		grid-template-rows: auto 1fr;
		column-gap: 40px;
		row-gap: 40px;
	}

	#antiq_detail_main {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}

	#antiq_detail_cover {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
		position: relative;
	}

	#antiq_detail_informations {
		grid-column: 2 / 2;
		grid-row: 2 / 3;
	}
}
@media (max-width: 760px) {
	#antiq_detail {
		display: block;
	}
	
	#antiq_detail_main {
		margin-bottom: 30px;
		margin-top: 26px;
	}

	#antiq_detail_cover {
		position: relative;
		text-align: center;
		margin: auto;
		margin-bottom: 20px;
	}

	#antiq_detail_informations {
		margin-bottom: 20px;
	}
}

.antiq_detail_breadcrumbs {
	font-size: 14px;
	padding-bottom: 5px;
	margin-top: -5px;
}

@media (max-width: 760px) {
	.antiq_detail_breadcrumbs {
		border-bottom: solid 1px var(--gray_border_color);
	}	
}

.antiq_detail_breadcrumbs a {
	font-size: 14px;
}

.antiq_detail_cover_wrapper {
	position: relative;
	display: inline-block;
}

.antiq_detail_additional_photos {
	cursor: pointer;
}

.antiq_detail_additional_photos img {
	margin-top: 10px;
	margin-right: 10px;
	height: 100px;
}

.antiq_detail_rating, .antiq_detail_rating:hover {
	position: absolute;
	right: 10px;
	top: 10px;
	padding: 0px 12px 6px 12px;
	text-align: center;
	color: #ffffff;
	z-index: 10;
	text-decoration: none !important;
	font-size: 12px;
	border-radius: 8px;
}

.antiq_detail_rating div {
	font-size: 18px;
	font-weight: 700;
}

#antiq_detail_basket_box {
	border-radius: 5px;
	border: solid 1px #e4e4e4;
	padding: 12px 20px;
}

.antiq_detail_price {
	display: block;
	font-size: 26px;
	line-height: 25px;
	font-weight: 700;
}

.antiq_detail_informations_data div {
	border-bottom: solid 1px #eee;
	padding: 10px 0px;
}

.antiq_detail_informations_data span {
	font-weight: 600;
}


#antiq_detail_about_box {
	background-color: #9e0001;
	margin-top: 38px;
	padding: 20px 25px;
	color: #ffffff;
	border-radius: 6px;
}

@media (max-width: 768px) {
	#antiq_detail_about_box {
		margin-top: 0px;
	}

}



#antiq_detail_about_box span {
	display: block;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 18px;
}

#antiq_detail_about_box h2 {
	color: #ffffff;	
}


@media (min-width: 769px) {
	.antiq_detail_about_img {
		width: 280px;
		margin-top: -73px;
	}

}
@media (max-width: 760px) {
	.antiq_detail_about_img {
		width: auto;
		margin-top: 0px;
	}
}



/* antikvariat vykup -------------------------------------------------------- */
.antiq_purchase_box {
	background-color: #fafafa;
	border-radius: 4px;
	box-shadow: 0px 2px 14px -4px rgba(183,183,183,1);
	padding: 19px 24px;
}

@media (min-width: 769px) {
	.antiq_purchase_box h2 {
		color: #9e0001;	
		font-size: 38px !important;
		font-weight: bold !important;
		margin-bottom: 20px;
		line-height: 45px;
	}
}
@media (max-width: 760px) {
	.antiq_purchase_box h2 {
		color: #9e0001;	
		font-size: 32px !important;
		font-weight: bold !important;
		margin-bottom: 20px;
		line-height: 39px;
	}
}

.antiq_purchase_loading {
	display: none;
	position: absolute;
	margin-top: 5px;
	margin-left: -1px;
}

#antiq_purchase_whisper_area {
}

.antiq_purchase_whisper_item {
	display: grid;
	grid-template-columns: 35px 1fr;
	background-color: #ffffff;
	cursor: pointer;
}

.antiq_purchase_whisper_item:hover {
	background-color: #eeeeee;	
}

.antiq_purchase_whisper_item:active {
	background-color: #e0e0e0;
}


.antiq_purchase_whisper_item_cover {
	width: 28px;
	height: 42px;
}

.antiq_purchase_whisper_item_flag {
	width: 16px;
	margin-left: 10px;
	vertical-align: initial;
}

.antiq_purchase_whisper_item span {
	display: block;
	font-size: 85%;
}

.antiq_purchase_whisper_release_item span {
	display: inline-block;
	margin-left: 10px;
	font-size: 85%;
}


.antiq_purchase_whisper_release_item {
	border-top: solid 1px #f4f4f4;
	background-color: #ffffff;
	cursor: pointer;	
}

.antiq_purchase_whisper_release_item:hover {
	background-color: #eeeeee;
}

.antiq_purchase_whisper_release_item:active {
	background-color: #e0e0e0;
}


.antiq_purchase_not_purchase_msg {
	display: none;
}

.antiq_purchase_suggested_book {
	display: none;
}

.antiq_purchase_suggested_book img {
	max-height: 220px;
}

.antiq_purchase_suggested_book_name {
	color: #9e0001;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 2px;
}

.antiq_purchase_suggested_book_price {
	font-size: 17px;
	margin: 20px 0px 15px 0px;
}


.antiq_purchase_progress_bar {
	background-color: #e4e4e4;
	border-radius: 10px;
	margin-bottom: 10px;
}

.antiq_purchase_progress_bar_in {
	background-color: #9e0001;
	height: 20px;
	border-radius: 10px;
	transition: width 0.5s ease;
}

.antiq_purchase_progress_prices {
	font-size: 17px;
	font-weight: bold;
}

.antiq_purchase_progress_check {
	color: #97c848;
}

@media (min-width: 761px) {
	.antiq_purchase_selected_book {
		display: inline-block;
		width: 186px;
		vertical-align: top;
		text-align: center;
		margin-bottom: 40px;
	}

	.antiq_purchase_selected_book img {
		height: 180px;
		margin-bottom: 8px;
	}
}
@media (max-width: 760px) {
	.antiq_purchase_selected_book {
		display: inline-block;
		width: 140px;
		vertical-align: top;
		text-align: center;
		margin-bottom: 40px;
	}

	.antiq_purchase_selected_book img {
		height: 150px;
		margin-bottom: 8px;
	}
	
}



.antiq_purchase_selected_book_photo {
	display: inline-block;
	position: relative;
}

.antiq_purchase_selected_book_photo a, .antiq_purchase_selected_book_photo span {
	position: absolute;
	right: -15px;
	top: -13px;
	display: inline-block;
	width: 30px;
	height: 30px;
	border: solid 2px #ffffff;
	background-color: #e4e4e4;
	cursor: pointer;
	color: #bcbcbc;
	border-radius: 100px;
	text-align: center;
	font-size: 18px;
}

.antiq_purchase_selected_book_name {
	color: #9e0001;
	font-weight: 600;
	margin-bottom: 2px;
}

.antiq_purchase_selected_book_name {
	font-weight: 600;	
}

.antiq_purchase_lama_sad {
	max-width: 150px;
}

.antiq_purchase_separator {
	border-top: solid 2px #efefef;
}

.antiq_purchase_overview {
	font-size: 17px;
}

.antiq_purchase_carrier_box {
	border: solid 1px #ced4da;
	border-top: 0px;
	padding: 10px 15px;
	background-color: #fdfdfd;
}

.antiq_purchase_carrier_date {
	display: inline-block;
	border-radius: 5px;
	border: solid 1px #ced4da;
	padding: 3px 5px;
	margin-bottom: 5px;
}


/* antiq purchase scanner --------------------------------------------------- */
.antiq_purchase_scanner_box {
	padding-bottom: 15px;
}


.antiq_purchase_scanner_box #qr-reader {
	border: 0px !important;
}


.antiq_purchase_scanner_box #qr-reader > div:first-child  {
	display: none;
}

.antiq_purchase_scanner_box #qr-reader > div:nth-of-type(2) img  {
	display: none;
}

.antiq_purchase_scanner_box #qr-reader__scan_region {
	min-height: auto !important;
}

.antiq_purchase_scanner_box #qr-reader__scan_region br {
	display: none;
}

.antiq_purchase_scanner_box #html5-qrcode-button-camera-permission {
	margin-top: 0px;
	margin-bottom: 10px;
}	

.antiq_purchase_scanner_trigger, .antiq_purchase_scanner_box input[type="button"], .antiq_purchase_scanner_box button {
	padding: 7px 20px;
	font-size: 15px;
	display: inline-block;
	background-color: #9e0001;
	border-radius: 5px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 600;
	border: 0px;	
}

.antiq_purchase_scanner_box #qr-reader__dashboard_section_csr {
	padding: 0px !important;
}

.antiq_purchase_scanner_box #qr-reader__dashboard_section_csr span:first-of-type {
	margin-bottom: 15px !important;
	display: block;
}


/* antiq purchase detail ---------------------------------------------------- */
.antiq_purchase_detail_timeline_step {
	background-color: #97c848;
	border-radius: 100px;
	height: 30px;
	width: 30px;
	text-align: center;
	color: #ffffff;
	padding-top: 3px;
	font-weight: bold;
}

.antiq_purchase_detail_timeline_h {
	font-weight: 600;
	font-size: 17px;
}

.antiq_purchase_detail_timeline_inactive {
	opacity: 50%;
}



@media (min-width: 1100px) {
	
}
@media (max-width: 1099px) {
	
}
@media (max-width: 760px) {
	
}

