﻿/*#region Comments */
#Comments {
	background: #fafafa;
	padding: 0 0 50px 0;
	margin-top:50px;
}

	#Comments > p {
		text-align: center;
		margin-top: 45px;
	}

		#Comments > p > a {
			border: 1px solid var(--saa-blue);
			color: var(--saa-blue);
			border-radius: 30px;
			padding: 5px 25px;
			font-size: 18px;
			font-weight: 600;
			transition: 300ms;
		}

			#Comments > p > a:hover {
				background: var(--saa-yellow);
				border: 1px solid var(--saa-yellow);
			}

	#Comments > div:first-of-type {
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;
		height: 600px;
		overflow-x: hidden;
		overflow-y: auto;
	}

		#Comments > div:first-of-type::-webkit-scrollbar {
			width: 6px;
		}

		#Comments > div:first-of-type::-webkit-scrollbar-thumb {
			background-color: var(--saa-yellow);
			border-radius: 6px;
			width: 15px;
		}

		#Comments > div:first-of-type::-webkit-scrollbar-track {
			background-color: #cdd8e1;
			width: 5px;
			border-radius: 20px;
		}


.commentsBox {
	background: #fff;
	border: 3px solid #e9f0f6;
	border-radius: 1rem;
	padding: 1rem;
	width: 80%;
	margin: auto;
	box-shadow: 0px 0px 10px 0px rgba(193,213,230,1);
}

	.commentsBox > div:first-of-type {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

		.commentsBox > div:first-of-type > div:first-of-type {
			display: flex;
			gap: 10px;
			align-items: center;
		}

			.commentsBox > div:first-of-type > div:first-of-type > img {
				width: 27px;
				border: 1px solid var(--saa-blue);
				padding: 8px;
				border-radius: 50%;
				margin-right: 10px;
				overflow: visible;
			}

			.commentsBox > div:first-of-type > div:first-of-type > h5 {
				color: var(--saa-blue);
				font-size: 16px;
			}

			.commentsBox > div:first-of-type > div:first-of-type > span:first-of-type {
				height: 5px;
				width: 5px;
				background: var(--saa-blue);
				border-radius: 50%;
			}
			.commentsBox > div:first-of-type > div:first-of-type > span:last-of-type {
				color: #666666;
				font-size: 13px;
			}

		.commentsBox > div:first-of-type > div:last-of-type {
			display: flex;
			gap: 10px;
			align-items: center;
		}
			.commentsBox > div:first-of-type > div:last-of-type > span:first-of-type {
				color: #666666;
				font-size: 13px;
			}
			.commentsBox > div:first-of-type > div:last-of-type > p {
				display: flex;
				align-items: center;
			}
			.commentsBox > div:first-of-type > div:last-of-type > p > i {
				color: var(--saa-yellow);
				font-size: 12px;
			}

	.commentsBox > div:last-of-type {
		width: 81%;
		margin: auto;
	}

		.commentsBox > div:last-of-type > p {
			color: var(--saa-blue);
			font-size: 16px;
			line-height: 22px;
		}
		.commentsBox > div:last-of-type > span {
			display: flex;
			gap: 15px;
			margin: 15px 0;
			color: var(--saa-blue);
		}

		.commentsBox > div:last-of-type > form > div:first-of-type {
			display: none;
			flex-direction: column;
			gap: 5px;
		}

		.commentsBox > div:last-of-type > form > div > textarea {
			resize: none;
			width: 98%;
			padding: 1%;
			height: 100px;
			margin: 20px 0;
			border: 1px solid #ccd2d9;
			border-radius: 4px;
			outline: none;
			font-family: inherit;
		}

		.commentsBox > div:last-of-type > form > div > button {
			text-align: center;
			background-color: var(--saa-blue);
			transition: background-color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s cubic-bezier(.25, .46, .45, .94);
			border-radius: 4px;
			font-size: 16px;
			padding: 10px 20px;
			cursor: pointer;
			color: #fff;
			font-weight: bold;
			border: none;
			width: 200px;
		}

		.commentsBox > div:last-of-type > span > span {
			cursor: pointer;
			padding: 8px;
		}

			.commentsBox > div:last-of-type > span > span:first-of-type {
				padding-left: 0;
			}

		.commentsBox > div:last-of-type > span > a:first-of-type,
		.commentsBox > div:last-of-type > span > a:nth-of-type(2) {
			font-weight: 300;
			font-size: 13px;
		}

		.commentsBox > div:last-of-type > span > a:nth-of-type(3) {
			cursor: pointer;
			font-size: 13px;
		}

		.commentsBox > div:last-of-type > div {
			display: flex;
		}

			.commentsBox > div:last-of-type > div > span {
				display: inline-block;
				width: 20px;
				height: 35px;
				margin-left: 20px;
				border-left: 3px solid gray;
				border-bottom: 3px solid gray;
				opacity: 0.2;
			}

			.commentsBox > div:last-of-type > div > div {
				margin: 30px 0 15px 25px;
			}

				.commentsBox > div:last-of-type > div > div > p:first-of-type {
					color: var(--saa-blue);
					font-size: 14px;
					font-weight: 700;
				}


				.commentsBox > div:last-of-type > div > div > span {
					color: var(--saa-blue);
					margin: 5px 0 11px 0;
					display: block;
				}

				.commentsBox > div:last-of-type > div > div > p:last-of-type {
					display: flex;
					gap: 10px;
				}

					.commentsBox > div:last-of-type > div > div > p:last-of-type > a {
						padding: 5px;
						cursor: pointer;
						color: var(--saa-blue);
					}

#Comments > form {
	background: #fff;
	border: 3px solid #e9f0f6;
	border-radius: 1rem;
	padding: 1rem;
	width: 80%;
	margin: auto;
	box-shadow: 0px 0px 10px 0px rgba(193,213,230,1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 50px;
}

	#Comments > form > h1 {
		color: var(--saa-blue);
		font-size: 20px;
		font-weight: 700;
	}

	#Comments > form > p {
		display: flex;
		gap: 5px;
	}

		#Comments > form > p > i {
			cursor: pointer;
			color: #caebff;
			font-size: 15px
		}

			#Comments > form > p > i.starActive {
				color: var(--saa-yellow);
			}

	#Comments > form > textarea {
		width: 50%;
		height: 100px;
		outline: none;
		border: 1px solid var(--saa-blue);
		border-radius: 30px;
		padding: 10px;
		font-size: 15px;
		resize: none;
	}


		#Comments > form > textarea::-webkit-scrollbar,
		#Comments > form > textarea::-webkit-scrollbar-thumb,
		#Comments > form > textarea::-webkit-scrollbar-track {
			width: 0;
		}

	#Comments > form > button {
		background: #fff;
		border: 1px solid var(--saa-blue);
		border-radius: 30px;
		font-size: 16px;
		font-weight: 500;
		padding: 2px 18px;
		cursor: pointer;
		transition: 300ms;
	}

		#Comments > form > button:hover {
			background: var(--saa-yellow);
			border-color: var(--saa-yellow);
		}
/*#endregion */
.active-star {
	color: var(--saa-yellow) !important;
}
#html_element_answer {
	display: block !important;
	visibility: visible !important;
}
