@charset "utf-8";

:root {
	--bg-gradient: linear-gradient(180deg, rgb(213, 252, 255) 0%, rgb(179, 209, 253) 100%);
}

html {
	height: 100%;
}

body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	z-index: -1;
	background: var(--bg-gradient);
}

.main-bg {
	background: var(--bg-gradient);
	min-height: 100vh;
}

.main-text {
	font-size: 20px;
	padding: 10px;
	justify-items: center;
}

.main-text .app-name {
	font-weight: 700;
	margin-top: 5px;
	display: block;
	width: 50%;
	font-size: 80px;
	line-height: 0.8em;
	padding-bottom: 15px;

	@media (max-height: 900px) {
		font-size: 3em;
	}
}

.main-text .app-introduction {
	text-align: center;
	padding: 10px 0;
	font-size: 2em;
	line-height: 1.2em;

	@media (max-height: 800px) {
		font-size: 1.3em;
	}
}

/* .main-container {
	padding-top: 2vh;
} */

.main-text .app-name {
	text-align: center;
}

.main-container textarea {
	resize: none;
	overflow: hidden;
}

.main-text textarea {
	padding: 10px 0;
	font-size: 30px;
	line-height: 1.2em;
}

.language-form {
	height: 50px;
	width: 100%;
	justify-items: center;
	padding: 3vh 0;
	margin-bottom: 3vh;
}

.language-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.language-option {
	font-size: 1.2em;
	width: 130px;
	border: 2px solid;
	padding: 5px;
	font-weight: 500;
	background-color: transparent;
	transition: 0.5s;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);
}

.language-option.active {
	border: 2px solid;
	border-radius: 15px;
	background-color: rgb(175, 216, 254);
	border-color: rgb(59, 52, 189);
}

.language-option:hover:not(.in-development) {
	background-color: rgb(130, 194, 243);
	transition: 0.3s;
	transform: scale(1.1);
	box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}

.block {
	margin: 0;
	display: flex;
	flex-direction: row;
	gap: 2vh;
	justify-content: center;
	padding: 3vh 0;

	@media (max-height: 600px) {
		padding-top: 2vh;
		padding-bottom: 0;
	}
}

.block.object .wrapper {
	display: flex;
	gap: 2vh;
}

.block.object .select-button {
	width: 10vw;
	font-size: 1.4em;
	background-color: transparent;
	transition: 0.5s;
	border: 2px solid;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
	background-color: rgb(180 223 255);
	text-align: center;
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);

	@media (max-height: 900px) {
		font-size: 1.3em;

		@media (max-height: 800px) {
			font-size: 1.1em;

			@media (max-height: 600px) {
				font-size: 1em;
			}
		}
	}
}

.app-block.app-link-block {
	width: 500px;
}

.app-link-block {
	position: relative;
	padding: 15px;
	z-index: 100;
	background-color: rgb(180 223 255);
	box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.15);
	transition: 0.5s;
	border: 2px solid;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
}

.app-link-block:hover:not(.in-development) {
	transform: scale(1.1);
	transition: 0.2s;
	box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.1);
}

.app-link-title {
	font-size: 2em;
	font-weight: 700;
	margin-bottom: 1rem;
	padding: 10px;
	border-radius: 10px;
}

.app-link-desc {
	min-height: 130px;
	max-height: 200px;
	font-size: 1.5em;
	margin-bottom: 1.5rem;
}

.btn-wrapper {
	display: flex;
	justify-content: center;
}

.header {
	width: 100%;
	height: 50px;
	box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.15);
	position: sticky;
	top: 0;
	background-color: #aed8fd;
	z-index: 200;
}

.header .container {
	height: 100%;
	display: flex;
	flex-direction: row;
}

.header-left,
.header-right {
	width: 50%;
}

.header-left ul,
.header-right ul {
	height: 100%;
	align-items: center;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	gap: 5vh;
	list-style: none;
}

.header-right {
	justify-content: right;
}

.header ul li a {
	text-decoration: none;
	color: black;
	max-height: 30px;
}

.header-left ul {
	justify-content: left;
}

.header-right ul {
	justify-content: right;
}

.logo {
	max-width: 30px;
	max-height: 30px;
}

.login-form {
	min-height: calc(100vh - 20px);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.login-form-block {
	padding: 30px;
	border: 0px solid;
	border-radius: 15px;
	margin-bottom: 10px;
	background-color: rgb(180 223 255);
	box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.15);
}

.login-form h2 {
	text-align: center;
	padding-bottom: 10px;
}

.login-form form p {
	width: 260px;
	display: flex;
	justify-content: space-between;
}

.login-btn {
	min-width: 100px;
	font-size: 20px;
	font-weight: 500;
	background-color: transparent;
	transition: 0.5s;
	border: 2px solid;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
}

.login-btn:hover {
	background-color: rgb(130, 194, 243);
	transition: 0.3s;
}

.back-btn {
	text-decoration: none;
	color: black;
	padding: 5px 10px;
	border: 2px solid rgb(160, 198, 255);
	border-radius: 10px;
	background-color: rgb(178, 222, 255);
}

.register-form {
	min-height: calc(100vh - 20px);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.register-form-block {
	padding: 30px;
	border: 0px solid;
	border-radius: 15px;
	margin-bottom: 10px;
	background-color: rgb(180 223 255);
	box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.15);
}

.register-form h2 {
	text-align: center;
	padding-bottom: 10px;
}

.register-form p {
	margin-bottom: 20px;
}

.register-form label {
	float: left;
	min-width: 70px;
	margin-right: 10px;
}

.register-form input {
	max-width: 50%;
}

.register-form span.helptext,
.register-form li.helptext {
	clear: both;
	display: block;
	width: 300px;
	margin-top: 4px;
	color: #3553b7;
}

.register-btn {
	min-width: 100px;
	font-size: 20px;
	font-weight: 500;
	background-color: transparent;
	transition: 0.5s;
	border: 2px solid;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
}

.login-btn:hover {
	background-color: rgb(130, 194, 243);
	transition: 0.3s;
}

.back-btn {
	text-decoration: none;
	color: black;
	padding: 5px 10px;
	border: 2px solid rgb(160, 198, 255);
	border-radius: 10px;
	background-color: rgb(178, 222, 255);
}

.register-form ul.errorlist {
	padding: 0;
	list-style: "! ";
	text-decoration: underline;
	color: rgb(212, 0, 0);
}

.in-development {
	position: relative;
	user-select: none;
	pointer-events: none;
}

.question {
	position: absolute;
	display: flex;
	top: -10px;
	left: -10px;
	width: 100%;
	height: 100%;
	background-color: rgb(122, 172, 247);
	color: white;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	pointer-events: auto;
	cursor: help;
	transition: 0.5s;
	z-index: 5;
	border: 2px solid rgb(180 223 255);
	animation: scale 1.5s;
}

@keyframes scale {
	0% {
		scale: 1;
	}

	50% {
		scale: 1.2;
	}

	100% {
		scale: 1;
	}
}

.language.question {
	width: 25px;
	height: 25px;
	font-size: 20px;
}

.app.question {
	width: 35px;
	height: 35px;
	font-size: 25px;
	font-weight: 500;
}

.question:hover {
	scale: 1.2;
	transition: 0.3s;
}

.language.question::after {
	content: "В разработке";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
	background-color: rgb(115, 157, 247);
	color: white;
	padding: 3px;
	font-size: 12px;
	border-radius: 15px;
	white-space: nowrap;
	width: auto;
	max-width: 200px;
	transition: opacity 0.3s ease, visibility 0.3s ease, left 0.3s ease;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid rgb(180 223 255);
}

.app.question::after {
	content: "В разработке";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
	background-color: rgb(115, 157, 247);
	color: white;
	padding: 5px;
	font-size: 15px;
	border-radius: 15px;
	white-space: nowrap;
	width: auto;
	max-width: 200px;
	transition: opacity 0.3s ease, visibility 0.3s ease, left 0.3s ease;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid rgb(180 223 255);
}

.question:hover::after {
	opacity: 1;
	visibility: visible;
	left: 100%;
}

.instruction {
	font-size: 2em;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 10px;
	padding-bottom: 10px;

	@media (max-height: 800px) {
		font-size: 1.5em;

		@media (max-height: 700px) {
			font-size: 1.4em;
		}
	}
}

.loading-spinner,
.loading-spinner div {
	box-sizing: border-box;
}

.loading-spinner {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.loading-spinner div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid currentColor;
	border-radius: 50%;
	animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: currentColor transparent transparent transparent;
}

.loading-spinner div:nth-child(1) {
	animation-delay: -0.45s;
}

.loading-spinner div:nth-child(2) {
	animation-delay: -0.3s;
}

.loading-spinner div:nth-child(3) {
	animation-delay: -0.15s;
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bg-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	color: #333;
	z-index: 9999;
}

body.loaded #loading {
	display: none;
}

.loading-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bg-gradient);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	color: #333;
	z-index: 9999;
}

.block.domain select,
.block.object select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 5px solid rgb(122, 172, 247);
	font: inherit;
	width: 30vw;
	height: fit-content;
	min-height: 15rem;
	background: rgba(255, 255, 255, 0.3) no-repeat right 0.8em center / 1.4em,
		linear-gradient(to left, rgba(255, 255, 255, 0.3) 3em, rgba(255, 255, 255, 0.2) 3em);
	border-radius: 0.25em;
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
	cursor: pointer;
	position: relative;

	@media (max-height: 700px) {
		font-size: 0.8em;
		min-height: 9rem;
		max-height: 10rem;
	}
}

select:focus {
	outline: none;
}

.block.domain select:focus,
.block.object select:focus {
	outline: none;
}

.block.domain option,
.block.object option {
	border-right: 2px solid rgb(122, 172, 247);
	padding: 5px 10px;
	font-size: 1.6em;
	color: inherit;
	overflow-x: hidden;
}

.block.domain option:not(:last-child),
.block.object option:not(:last-child) {
	border-bottom: 2px solid rgb(122, 172, 247);
}

select option {
	background-color: transparent;
	transition: background-color 0.2s ease-out;
}

select option:hover {
	background-color: rgb(220, 239, 255);
}

select option:checked {
	background-color: rgb(180 223 255);
	border-right: 2px solid rgb(122, 172, 247);
}

.button-list {
	display: flex;
	flex-direction: column;
	padding-top: 3vh;
	gap: 15px;
	justify-content: center;
	align-items: center;

	@media (max-height: 1400px) {
		padding-top: 1vh;
	}
}

.button-list .go-plots-button {
	width: 40vw;
	padding: 10px;
	font-size: 1.5em;
	font-weight: 500;
	background-color: transparent;
	transition: 0.5s;
	border: 2px solid;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
	background-color: rgb(180 223 255);
	text-align: center;
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);

	@media (max-height: 800px) {
		width: auto;
		max-width: 40vw;
		font-size: 1.2em;

		@media (max-height: 600px) {
			max-width: 50vw;
			font-size: 1.1em;
		}
	}
}

.button-list button:hover,
.back-button button:hover,
.block.object .select-button:hover,
.main-block .home-button:hover,
.main-block .help-button:hover,
.crawler-back-buttons .home-button:hover,
.crawler-back-buttons .go-plots-button:hover,
#compare-back-button:hover {
	border-color: rgb(110, 162, 240);
	background-color: rgb(158, 208, 247);
	transition: 0.3s;
	transform: scale(1.05);
	box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}

.domain-object-block {
	padding-top: 2vh;
}

.corpora-text {
	font-size: 20px;
	border: 2px solid rgb(122, 172, 247);
	border-radius: 5px;
	padding: 10px;
	background-color: white;
	max-height: 650px;
	overflow-y: scroll;
	margin-top: 3vh;

	@media (max-height: 900px) {
		max-height: 54vh;
		margin-top: 1vh;
		margin-bottom: 1vh;

		@media (max-height: 600px) {
			font-size: 15px;
			max-height: 54vh;
			margin-top: 1vh;
			margin-bottom: 1vh;
		}
	}
}

.container.plot.overlay {
	padding: 1.5vh 0;
}

.text-block.template {
	/* margin-top: 2vh;
	margin-bottom: 2vh; */
	padding: 30px;
	font-size: 1.5em;
	border: 2px solid rgb(122, 172, 247);
	border-radius: 15px;
	background-color: rgb(180 223 255);
	box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
	line-height: 1.3;
	user-select: none;

	@media (max-height: 800px) {
		padding: 15px;
		margin-bottom: 0;
		font-size: 1.4em;

		@media (max-height: 700px) {
			font-size: 1.3em;

			@media (max-height: 600px) {
				font-size: 1.2em;
			}
		}
	}
}

.text-block.template br {
	content: "A" !important;
	display: block !important;
	margin-bottom: 0.8em !important;
}

.text-block.template p>a,
.text-block.template .main-text-aspect a {
	cursor: pointer;
}

.reviews-table-block {
	box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}

.review-score {
	display: flex;
	justify-content: center;
	height: 100%;
}

.review-score .fa-star.checked {
	color: orange;
}

.review-score .fa-star {
	color: rgb(182, 182, 182);
	position: relative;
	font-size: 2rem;
}

.review-score .fa-star.half {
	background: linear-gradient(to right, orange 50%, rgb(182, 182, 182) 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
}

.corpora-text.review-table {
	padding: 0;
}

table.review-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	font-family: Arial, sans-serif;
}

th,
td {
	padding: 10px 10px;
	text-align: left;
	vertical-align: middle;
}

th.review-num {
	width: 5%;
	text-align: center;
}

th.review-text {
	width: 80%;
}

th.review-score {
	width: 15%;
	text-align: center;
}

.review-row {
	display: flex;
	align-items: center;
}

.review-row:not(:last-child) {
	border-bottom: 2px solid rgb(122, 172, 247);
}

.sortable .table-head th {
	cursor: pointer;
}

.sortable .table-head th.no-sort {
	pointer-events: none;
}

.sortable .table-head th::after,
.sortable .table-head th::before {
	transition: color 0.2s ease-in-out;
	font-size: 1.2em;
	color: transparent;
}

.sortable .table-head th::after {
	margin-left: 3px;
	content: "\025B8";
}

.sortable .table-head th:hover::after {
	color: inherit;
}

.sortable .table-head th.dir-d::after {
	color: inherit;
	content: "\025BE";
}

.sortable .table-head th.dir-u::after {
	color: inherit;
	content: "\025B4";
}

thead tr {
	background-color: rgb(180 223 255);
}

thead th {
	display: flex;
	align-content: center;
	align-items: center;
}

thead th:not(:last-child) {
	border-right: 2px solid rgb(122, 172, 247);
}

thead tr {
	display: flex;
	align-content: center;
	align-items: center;
	border: 2px solid rgb(122, 172, 247);
}

.plot-details[open]>summary {
	list-style-type: "⇧ ";
}

.plot-details>summary {
	list-style-type: "⇩  ";
}

.plot-details {
	border: 2px solid rgb(122, 172, 247);
	border-radius: 15px;
	background-color: rgb(180 223 255);
	margin-top: 2vh;
	padding: 10px;
	box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}

.plot-details summary {
	font-size: 1.5em;
	cursor: pointer;
	transition: margin 0.2s ease-out;
}

.plot-details[open] summary {
	margin-bottom: 10px;
}

.legendtext {
	font-size: 1.5em;
}

.review-score.wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.review-score.overall {
	width: fit-content;
	border: 2px solid rgb(122, 172, 247);
	border-radius: 15px;
	background-color: white;
	/* background-color: rgb(180 223 255); */
	/* margin-top: 2vh; */
	padding: 10px;
	box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}

textarea.editable {
	background: none !important;
	border: 3px solid rgb(87, 63, 172) !important;
	border-radius: 10px !important;
}

.plots {
	margin-top: 2vh;
}

.app-block.grid {
	margin-top: 2vh;
	display: grid;
	gap: 2rem;
	justify-items: center;
}

.app-block.grid>button.app-link-block {
	width: 400px;
}

.popup-wrapper {
	background-color: rgba(0, 31, 88, 0.432);
	height: 100%;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	transition: visibility 0s, opacity 0.2s linear;
	opacity: 0;
}

.popup-content {
	outline: 1px solid rgb(122, 172, 247) !important;
	border: 1px solid rgb(122, 172, 247) !important;
	border-radius: 15px;
	padding: 5px 20px;
	border: 1px solid #888;
	width: 95%;
	height: 95%;
	position: relative;
	background-color: rgb(180 223 255);
	box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.15);
	transition: outline 0.2s ease-in-out;
}

.popup-content:hover {
	outline: 6px solid rgb(122, 172, 247) !important;
	border-radius: 15px;
}

.block.object {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1vh;
}

.popup-close {
	position: absolute;
	background-color: rgb(122, 172, 247);
	z-index: 300;
	top: -10px;
	right: -10px;
	outline: 3px solid rgb(51 25 177);
	border-radius: 30px;
	width: 2rem;
	height: 2rem;
	display: flex;
	justify-content: center;
	padding: 5px;
	transition: background-color, outline 0.2s ease-in-out;
	box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.15);
}

.popup-close:hover {
	outline: 6px solid rgb(51 25 177);
	cursor: pointer;
	box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.35);
}

/* .show_plots_link {
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path fill="rgb(122, 172, 247)" d="M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l82.7 0L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3l0 82.7c0 17.7 14.3 32 32 32s32-14.3 32-32l0-160c0-17.7-14.3-32-32-32L320 0zM80 32C35.8 32 0 67.8 0 112L0 432c0 44.2 35.8 80 80 80l320 0c44.2 0 80-35.8 80-80l0-112c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 112c0 8.8-7.2 16-16 16L80 448c-8.8 0-16-7.2-16-16l0-320c0-8.8 7.2-16 16-16l112 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z"/></svg>') no-repeat 100% 20%;
	background-size: 16px 16px;
	padding-right: 19px;
} */

.plotly-graph-div.js-plotly-plot {
	height: auto !important;
}

/* .user-select-none.svg-container {
	@media (max-height: 900px) {
		max-height: 400px !important;
		@media (max-height: 800px) {
			max-height: 350px !important;
			@media (max-height: 700px) {
				max-height: 295px !important;
				@media (max-height: 600px) {
					max-height: 230px !important;
				}}
		}
	}
} */

.popup-content.small {
	max-width: 700px;
	max-height: 550px;

	@media (max-height: 1400px) {
		max-height: 500px;
		max-width: 950px;
	}
}

.block-plot-wrapper {
	display: flex;
	/* flex-direction: column; */
	align-items: center;
}

#sentiment-block {
	margin-top: 5vh;
}

#compare-main-block .block-plot-wrapper {
	align-items: flex-start;
}

.block-plot {
	width: 100%;
	/* max-height: 500px; */
	display: flex;
	align-items: center;
	justify-content: center;
}

.plot-select {
	margin: 0;
}

.plot-select:has(:nth-child(11)) .plot-select-all-wrapper .plot-select-li {
	width: calc(22.5vh - 2px);

	@media (max-height: 900px) {
		width: calc(13vw - 2px);

		@media (max-height: 800px) {
			width: calc(12.5vw- 2px);

			@media (max-height: 700px) {
				width: calc(12vw - 2px);
			}
		}
	}
}

.plot-select:has(:nth-child(11)) .plot-select-li {
	margin: 2px;
}

.plot-select:has(:nth-child(10)) .plot-select-li .plot-select-label {
	font-size: 16px;
}

.plot-select .plot-select-li,
.plot-select-main .plot-select-li {
	border: 2px solid rgb(122, 172, 247);
	outline: 0px solid rgb(122, 172, 247);
	border-radius: 15px;
	background-color: #aed8fd;
	margin: 10px 0;
	box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.2s;
	list-style: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 45vh;

	@media (max-height: 900px) {
		width: 26vw;
		margin: 5px;

		@media (max-height: 800px) {
			width: 25vw;

			@media (max-height: 600px) {
				width: 24vw;
			}
		}
	}
}

.plot-select-all-wrapper .plot-select-li {
	width: calc(22.5vh - 10px);
	margin: 10px 0;

	@media (max-height: 900px) {
		width: calc(12vw - 5px);
		margin: 5px;

		@media (max-height: 800px) {
			width: calc(12.5vw- 5px);

			@media (max-height: 600px) {
				width: calc(12vw - 5px);
			}
		}
	}
}

.plot-select-li:hover {
	box-shadow: 0px 0px 15px 7px rgba(0, 0, 0, 0.15);
}

.plot-select-label {
	cursor: pointer;
	user-select: none;
	width: 100%;
	height: 100%;
	padding-left: 1rem;
	padding-right: 2rem;
	font-size: 23px;
	overflow-x: hidden;
	align-content: center;

	@media (max-height: 800px) {
		font-size: 20px;
		padding-right: 0.3rem;

		@media (max-height: 800px) {
			font-size: 20px;
			padding-right: 0.2rem;

			@media (max-height: 800px) {
				font-size: 18px;
				padding-right: 0.1rem;

				@media (max-height: 500px) {
					font-size: 14px !important;
				}
			}
		}
	}
}

.plot-select-label.less {
	font-size: 20px;

	@media (max-height: 800px) {
		font-size: 20px;
		padding-right: 0.3rem;

		@media (max-height: 800px) {
			font-size: 18px;
			padding-right: 0.2rem;

			@media (max-height: 800px) {
				font-size: 17px;
				padding-right: 0.1rem;
			}
		}
	}
}

.plot-select-input {
	display: none;
	cursor: pointer;
}

.plot-select-all-wrapper .plot-select-input-wrapper {
	width: 11% !important;
}

.plot-select-input-wrapper {
	width: 5%;
	height: 100%;
	position: relative;
	transition: width 0.2s ease-in;
}

.plot-select-all-wrapper .plot-select-input-wrapper::after {
	background-color: rgb(174 216 253);
}

.plot-select-input-wrapper::after {
	content: "";
	width: 100%;
	height: 3rem;
	display: block;
	background-color: rgb(88, 142, 223);
	border: 2px solid rgb(122, 172, 247);
	border-right: 3px solid rgb(122, 172, 247);
	outline-offset: -1px;
	outline: 2px solid rgb(122, 172, 247);
	border-radius: 15px 0 0 15px;
	-webkit-transition: background-color 0.2s ease-in;
	-ms-transition: background-color 0.2s ease-in;
	transition: background-color 0.2s ease-in;

	@media (max-height: 900px) {
		height: 2.25rem;

		@media (max-height: 800px) {
			height: 2rem;

			@media (max-height: 600px) {
				height: 1.6rem;
			}
		}
	}
}

#plot-select-compare .plot-select-input-wrapper::after {
	@media (max-height: 900px) {
		height: 2.5rem;
	}
}

.plot-select-input-wrapper.less::after {
	height: 2rem;
}

.plot-select-input-wrapper.checked::after {
	background-color: rgb(62, 227, 157);
}

.plot-select-input-wrapper.checked::after {
	background-color: rgb(62, 227, 157);
}

.popup-plots {
	display: grid;
	grid-template-rows: auto 35vw 10vh;

	@media (max-height: 900px) {
		grid-template-rows: auto 32vw 10vh;

		@media (max-height: 600px) {
			grid-template-rows: auto 31vw 10vh;
		}
	}
}

.plot-container.plotly {
	width: 100%;
	height: 100% !important;
}

.hidden {
	display: none;
}

.edit-button {
	position: absolute;
	top: 0;
	max-width: 10vw;
	z-index: 99999;
	margin: 10px;
}

@font-face {
	font-family: "FontAwesome";
	src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2");
}

.fa.fa-star {
	font-family: "FontAwesome";
}

.hidden-fa-star {
	opacity: 0;
	position: absolute;
	top: 0;
	z-index: -999;
}

.overall-score-wrapper {
	margin-top: 2vh;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
}

.final-button-reviews-block,
.final-button-plot-block {
	margin-top: 2vh;
	padding-bottom: 1vh;
	display: flex;
	gap: 2vw;
	justify-content: space-between;
	align-items: center;
}

#final-button-compare-block.final-button-plot-block {
	justify-content: flex-start;
}

.back-buttons-wrapper {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.final-button-reviews-block .go-plots-button,
.final-button-plot-block .go-plots-button {
	max-height: 90px;
	padding: 10px;
	font-size: 1.4em;
	font-weight: 500;
	background-color: transparent;
	transition: 0.5s;
	border: 2px solid;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
	/* background-color: rgb(244, 249, 253); */
	text-align: center;
	box-shadow: 0px 0px 10px 2px rgba(130, 127, 127, 0.15);
	min-width: 100px;

	@media (max-height: 1400px) {
		width: auto;
		max-width: 70vw;

		@media (max-height: 800px) {
			font-size: 1.2em;

			@media (max-height: 700px) {
				font-size: 1.1em;
			}
		}
	}
}

.final-button-reviews-block .go-plots-button:hover,
.final-button-plot-block .go-plots-button:hover {
	border-color: rgb(110, 162, 240);
	background-color: rgb(158, 208, 247);
}

.block-plot-text-wrapper {
	/* height: 2rem; */
	display: flex;
	align-items: center;
	justify-content: center;
	/* margin-top: 2vh; */
	/* padding-top: 10vh; */
	flex-direction: column;
	gap: 2vh;

	@media (min-height: 850px) {
		gap: 5vh;
	}
}

.plot-text.instruction {
	transition: visibility 0.3s, opacity 0.1s linear;

	@media (max-height: 700px) {
		font-size: 1.2em;

		@media (max-height: 500px) {
			font-size: 1em;
		}
	}
}

.block-plot-text.less {
	@media (max-height: 900px) {
		font-size: 1.3em;

		@media (max-height: 800px) {
			font-size: 1.2em;

			@media (max-height: 700px) {
				font-size: 1.1em;
			}
		}
	}
}

.block-plot-text {
	transition: visibility 0.3s, opacity 0.1s linear;
	text-align: center;
	font-size: 1.7em;
	user-select: none;

	@media (max-height: 900px) {
		font-size: 1.5em;

		@media (max-height: 800px) {
			font-size: 1.4em;

			@media (max-height: 700px) {
				font-size: 1.2em;

				@media (max-height: 500px) {
					font-size: 1em;
				}
			}
		}
	}
}

.final-button-reviews-block button,
.final-button-plot-block button {
	user-select: none;
	cursor: pointer;
}

/* .user-select-none.svg-container {
	margin-bottom: 2vh !important;
} */

.main-plot {
	margin-top: 2vh;
	display: flex;
	justify-content: space-around;
}

.menu-text {
	font-size: 1.4rem;
	font-weight: 500;
	text-transform: uppercase;
	transform: rotate(-90deg);
	text-align: center;
	width: 3.5em;

	@media (max-height: 1400px) {
		@media (max-height: 800px) {
			font-size: 1.2rem;

			@media (max-height: 700px) {
				font-size: 1.1rem;
			}
		}
	}
}

.plot-select-main {
	padding: 0;
	margin: 0;
}

.plot-select-main-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
}

#sentiment-block .plot-select-main-wrapper {
	margin-top: 2vh;
}

#plot-instr {
	padding: 0;
	max-height: 50px;
}

.main-page-button {
	position: absolute;
	bottom: 1vh;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	max-width: 25vw;
	font-size: 1.5em;
	font-weight: 500;
	background-color: transparent;
	transition: 0.5s;
	border: 2px solid;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
	background-color: rgb(180 223 255);
	text-align: center;
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);

	@media (max-width: 1400px) {
		font-size: 1.3em;
		max-width: 40vw;

		@media (max-height: 900px) {
			font-size: 1.2em;

			@media (max-height: 700px) {
				font-size: 1.1em;
				max-width: 35vw;

				@media (max-height: 500px) {
					font-size: 1em;
				}
			}
		}
	}
}

.back-button .home-button {
	position: absolute;
	bottom: 1vh;
	margin-left: 2rem;
	margin-right: auto;
	/* min-width: 3vw; */
	min-width: 100px;
	max-width: 5vw;
	font-size: 1.5em;
	font-weight: 500;
	background-color: transparent;
	transition: 0.5s;
	border: 2px solid;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
	background-color: rgb(180 223 255);
	text-align: center;
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);

	@media (max-width: 1400px) {
		font-size: 1.3em;
		max-width: 40vw;

		@media (max-height: 900px) {
			font-size: 1.2em;

			@media (max-height: 700px) {
				font-size: 1.1em;
				max-width: 35vw;

				@media (max-height: 500px) {
					font-size: 1em;
				}
			}
		}
	}
}

@media (min-width: 1400px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 95vw;
	}
}

@media (min-width: 1800px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 80vw;
	}
}

.loading-wrapper-select {
	position: absolute;
	z-index: 999;
}

#final-button-compare-block {
	justify-content: center;
	padding-left: 5em;

	@media (max-width: 1500px) {
		padding-left: 4em;
	}
}

.instruction.title {
	font-weight: 500;
}

.plot-select-all-wrapper {
	list-style: none;
	display: flex;
	padding: 0;
	flex-direction: row;
	justify-content: space-between;
}

.disabled-checkbox {
	pointer-events: none;
	user-select: none;
}

#sentiment-plots {
	min-height: 75vh;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	/* align-items: center */
}

#compare-title {
	display: block;
}

.legendtext,
.legendtoggle {
	cursor: default !important;
}

.cursor-pointer {
	cursor: default !important;
}

.app-name-zero {
	cursor: default;
	user-select: none;
	font-weight: 700;
	margin-top: 5px;
	display: block;
	text-align: center;
	font-size: 150px;
	line-height: 0.8em;
	padding-bottom: 15px;

	@media (max-height: 900px) {
		font-size: 110px;

		@media (max-height: 700px) {
			font-size: 90px;

			@media (max-height: 600px) {
				font-size: 70px;
			}
		}
	}
}

.app-introduction-zero {
	padding-top: 3vh;
	text-align: center;
	font-size: 1.7em;

	@media (max-height: 900px) {
		font-size: 1.5em;

		@media (max-height: 700px) {
			font-size: 1.3em;

			@media (max-height: 600px) {
				font-size: 1.1em;
			}
		}
	}
}

.domains {
	display: grid;
	padding-top: 2vh;
	gap: 2vh;
}

.domain {
	display: flex;
	align-items: center;
	justify-content: center;
}

.domain button {
	font-size: 2em;
	font-weight: 600;
	width: 30vw;
	height: 10vh;
	background-color: transparent;
	transition: 0.5s;
	border: 2px solid;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
	background-color: rgb(180 223 255);
	text-align: center;
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);

	@media (max-height: 900px) {
		font-size: 1.7em;

		@media (max-height: 700px) {
			font-size: 1.6em;
			width: 35vw;

			@media (max-height: 600px) {
				font-size: 1.3em;
				width: 40vw;
			}
		}
	}
}

.domain button:hover {
	transform: scale(1.05);
	transition: 0.2s ease-in-out;
	border-color: rgb(110, 162, 240);
	background-color: rgb(158, 208, 247);
	box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.1);
}

.domain-interactive {
	color: var(--bs-body-color) !important;
	text-decoration: underline rgb(122, 172, 247);
	text-decoration-thickness: 5px;
	transition: text-decoration-thickness 0.5s ease-in-out;
	/* Указываем, что анимируем */
}

.domain-interactive:hover {
	text-decoration-thickness: 10px;
}

.domain-interactive {
	color: var(--bs-body-color) !important;
	text-decoration: none;
	position: relative;
	transition: background-size 0.2s ease-in-out;
}

.domain-interactive::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 5px;
	background: rgb(122, 172, 247);
	transform: translateY(0);
	transition: transform 0.2s ease-in-out, height 0.2s ease-in-out;
}

.domain-interactive:hover::after {
	transform: translateY(5px);
	height: 10px;
}

.app-name a {
	text-decoration: none;
	color: var(--bs-body-color) !important;
}

.main-text .app-name,
.main-text .app-name a {
	transition: 0.2s ease-in-out;
}

.main-text .app-name:hover {
	transform: scale(1.02);
}

.main-text .app-name a:hover {
	text-shadow: 0 0 5px rgb(180 223 255), 0 0 10px rgb(180 223 255), 0 0 15px rgb(180 223 255);
}

.main-block .home-button,
.main-block .help-button{
	position: absolute;
	margin-left: 1vh;
	margin-top: 1vh;
	width: 70px;
	height: 70px;
	font-size: 1.5em;
	font-weight: 500;
	background-color: transparent;
	transition: 0.5s;
	border: 2px solid;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
	background-color: rgb(180 223 255);
}

.crawler-back-buttons .home-button,
.crawler-back-buttons .go-plots-button {
	min-width: 70px;
	min-height: 70px;
	font-size: 1.5em;
	font-weight: 500;
	background-color: transparent;
	transition: 0.5s;
	border: 2px solid;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
	background-color: rgb(180 223 255);
}

.crawler-back-buttons .go-plots-button {
	@media (max-height: 900px) {
		font-size: 1.4em;

		@media (max-height: 700px) {
			font-size: 1.3em;

			@media (max-height: 600px) {
				font-size: 1.1em;
			}
		}
	}
}

.home-button, .help-button {
	padding: 0 !important;
}

.help-button .material-symbols-outlined {
	line-height: inherit;
	color: rgb(43 103 193);
	font-size: 1.85em;
}

.home-button i {
	font-size: 1.5em !important;
	line-height: inherit;
}

#crawl-reviews-button {
	width: calc(20vw + 2vh);
}

.selected-options {
	border: 1px solid #ccc;
	min-height: 100px;
	padding: 5px;
	display: none;
}

.custom-select {
	border: 1px solid #ccc;
	height: 230px;
	width: 30vw;
	overflow-y: auto;
	background-color: white;
	border: 5px solid rgb(122, 172, 247);
	border-radius: 0.25em;
}

.custom-option {
	font-size: 1.6rem;
	padding: 5px;
	padding-left: 10px;
	cursor: pointer;
	user-select: none;
	display: flex;
	justify-content: space-between;
}

.custom-option .option-function.download {
	color: #3553b7;
	text-decoration: none;
	transition: color 0.3s;
}

.custom-option .option-function.download:hover {
	color: #3898c5;
	text-decoration: none;
}

.custom-option .option-function.remove {
	color: #df3a42;
	text-decoration: none;
	transition: color 0.3s;
}

.custom-option .option-function.remove:hover {
	color: #c43f4a;
	text-decoration: none;
}

.custom-option:not(:last-child) {
	border-bottom: 2px solid rgb(122, 172, 247);
}

.custom-option.selected {
	background-color: #cce5ff;
}

.material-symbols-outlined {
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.fullscreen_loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: var(--bg-gradient);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1500;
	flex-direction: column;
	gap: 3vh;
}

.fullscreen_loading.loading_text {
	font-size: 1.5em;
}

.crawler-instruction {
	font-size: 1.5em;
}

.chosen-container {
	width: 20vw !important;
	font-size: 1.3em !important;

	@media (max-width: 1300px) {
		width: 25vw !important;
	}
}

.chosen-single {
	height: fit-content !important;
	padding: 10px 15px !important;
	background: rgb(255, 255, 255) !important;
	line-height: normal !important;
}

.chosen-drop {
	background: rgb(255, 255, 255) !important;
}

.chosen-results li {
	padding: 10px 15px !important;
	line-height: 1em !important;
}

.crawler-container .select-button {
	width: 20vw;
	font-size: 1.3em;
	background-color: transparent;
	transition: 0.5s;
	border: 2px solid;
	border-radius: 15px;
	border-color: rgb(122, 172, 247);
	background-color: rgb(180 223 255);
	text-align: center;
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);
	padding: 10px 15px;

	@media (max-width: 1300px) {
		width: 25vw;
	}
}

.crawler-container .select-button:hover {
	border-color: rgb(110, 162, 240);
	background-color: rgb(158, 208, 247);
	transition: 0.3s;
	box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}

.crawler-container .select-button.save {
	position: relative;
}

.crawler-container .select-button.save::after {
	content: "* Обработка отзывов может занять некоторое время. По завершении Ваша коллекция отзывов будет добавлена в список организаций.";
	display: block;
	font-size: 12px;
	color: #888;
	margin-top: 5px;
}

.crawl-result .count {
	font-size: 2em;
}

.time-option label,
.time-option input {
	font-size: 1.5em;
}

#collectionForm {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 1vh;
}

#collectionForm button {
	font-size: 1.3em;
}

#collectionForm #name {
	width: 25vw;
	font-size: 1.3em;
}

#collectionForm .select-button {
	font-weight: 500;
}

.crawler-container {
	padding-top: 2vh;
	gap: 2vh;
	display: flex;
	flex-direction: column;
}

.crawler-container> :first-child {
	align-self: flex-start;
}

.crawler-container>*:not(:first-child) {
	align-self: center;
}

.crawler-back-buttons {
	position: absolute;
	margin: 1vh 0 0 1vh;
	display: flex;
	gap: 1vw;
	z-index: 0;
	@media (max-width: 900px) {
		flex-direction: column;
	}	
}

.crawler-container div.crawler-step {
	width: 50vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1vh;
}

.time-stamps {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5vw;
}

.time-stamps .date-input-block {
	display: flex;
	flex-direction: row;
	gap: 0.5vw;
}

.reset-button-block .select-button {
	width: auto;
	font-size: 1em;
	margin-top: 0.2vh;
	margin-bottom: 0.5vh;
	padding: 3px 7px;
}

.custom-option {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.custom-option>div:first-child {
	margin-left: auto;
	display: flex;
	gap: 8px;
}

.processing {
	position: relative;
	pointer-events: none;
}

.processing::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.7);
	z-index: 10;
}

.processing .progress-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 300px;
	z-index: 11;
}

.processing .progress-bar {
	position: relative;
	height: 24px;
	background-color: #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
}

.processing .progress-bar::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: #4caf50;
	animation: progress 2s ease-in-out infinite;
}

.processing .progress-bar::before {
	content: "Обработка...";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #333;
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	width: 100%;
	z-index: 12;
}

.processing .progress-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #333;
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	width: 100%;
	z-index: 12;
}

@keyframes progress {
	0% {
		width: 0;
		left: 0;
	}

	50% {
		width: 100%;
		left: 0;
	}

	100% {
		width: 0;
		left: 100%;
	}
}

.popup-count-alert-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
}

.popup-count-alert {
	font-size: 1.3em;
	background: white;
	padding: 20px 30px;
	border: 3px solid rgb(122, 172, 247);
	border-radius: 10px;
	max-width: 70vw;
	width: 90%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	text-align: center;
	font-family: Arial, sans-serif;
}

.limit-reviews-button {
	margin: 10px 5px 10px 5px;
	padding: 8px 16px;
	background-color: rgb(94, 147, 228);
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.2s ease-out;
}

.limit-reviews-button:hover {
	background-color: rgb(78, 137, 226);
}

.specify-buttons-block {
	display: flex;
	gap: 1vw;
}

.cancel-request {
	border-color: 1px solid rgb(110, 162, 240);
	background-color: rgb(158, 208, 247);
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.option-buttons {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.disabled-alert {
	opacity: 0.5;
}

p.demo-caption {
	opacity: 0.6;
	font-size: 35%;
	margin-bottom: 0;
}

p.demo-caption:hover {
	cursor: pointer;
}

.app-name.demo {
	display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
	padding-bottom: 0;
	margin-bottom: 0;
}