* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: 'Manrope', sans-serif;
}

h1, h2, h3, h4 {
	color: #33373A;;
}

:root {
	--color-dark: #33373A;
	--color-ligth: #666B71;
	--color-ligth-fields: #AFB4BA;
	--font-size-large: 32px;
	--font-size-medium: 22px;
	--font-size-small: 14px;
	--margin-menu-open : 276px;
}

a {
	text-decoration: none;
	cursor: pointer;
}

/* --------------------------------------------- common-styles --------------------------------------------- */

.btn {
	border-radius: 4px;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 20px;
	text-transform: uppercase;
}

/* --------------------------------------------- loader --------------------------------------------- */

.center-y {
	display: flex;
	align-items: center;
}

.unselectable {
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}

.main-container {
	width: 100%;
	height: 5px;
	position: fixed;
	z-index: 130;
	display: none;
}

.show-container {
	display: block;
}

.meter {
	box-sizing: content-box;
	height: 100%;
	/* Can be anything */
	position: relative;
	/* Just for demo spacing */
	background: #555;
}

.meter>span {
	display: block;
	height: 100%;
	background-color: #0b2538;
	background-image: linear-gradient(center bottom,
			rgb(43, 194, 83) 37%,
			rgb(84, 240, 84) 69%);
	box-shadow: inset 0 2px 9px rgba(1, 1, 1, 0),
		inset 0 -2px 6px rgba(0, 0, 0, 0);
	position: relative;
	overflow: hidden;
}

.meter>span:after,
.animate>span>span {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-image: linear-gradient(-45deg,
			rgba(255, 255, 255, 0.5) 25%,
			transparent 25%,
			transparent 50%,
			rgba(255, 255, 255, 0.5) 50%,
			rgba(255, 255, 255, 0.5) 75%,
			transparent 75%,
			transparent);
	z-index: 1;
	background-size: 50px 50px;
	animation: move 2s linear infinite;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	overflow: hidden;
}

.animate>span:after {
	display: none;
}

@keyframes move {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 50px 50px;
	}
}

.nostripes>span>span,
.nostripes>span::after {
	background-image: none;
}

.container {
	width: 100%;
	position: relative;
	padding: 50px;
	box-sizing: border-box;
	min-height: 92vh;
}

/* --------------------------------------------- knowledge center --------------------------------------------- */

.kc-search-container {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-bottom: 30px;
}

.kc-search--input-container {
	align-items: center;
	background-color: #fff;
	border-radius: 4px;
	border: 1px solid #C2C7CC;
	display: flex;
	font-size: 14px;
	font-weight: 200;
	gap: 10px;
	justify-content: space-between;
	padding: 8px 10px;
	width: 300px;
}

.kc-search--input-container i {
	color: #AFB4BA;
	font-size: 12px;
}

.kc-search--input-container input {
	background-color: #fff;
	border: none;
	flex: 1;
	font-size: 14px;
	font-weight: 500;
	height: max-content;
	outline: none;
}

.kc-search-container button {
	align-items: center;
	background-color: #DCE9F7;
	border-radius: 5px;
	border: none;
	color: #1B5B94;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 5px;
	height: max-content;
	justify-content: center;
	outline: none;
	padding: 8px 10px;
}

.knowledge-center-footer--comments-section {
	border-top: solid 1px #D8DDE1;
	margin-top: 50px;
}

.knowledge-center-footer--commets-box {
	background-color: #fff;
	border-radius: 4px;
	border: 1px solid #D8DDE1;
	padding: 20px;
	margin-top: 50px;
}

.knowledge-center-footer--commets-box h3 {
	margin-bottom: 10px;
}

.knowledge-center-footer--commets-box p {
	color: #666B71;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 30px;
}

.knowledge-center-footer--commets-box button{
	background-color: #1B5B94;
	border: none;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 12px;
	margin-top: 20px;
}

.knowledge-center-footer--comments-inputs {
	display: flex;
	gap: 20px;
}

.knowledge-center-footer--comments-inputs div {
	display: flex;
	flex-direction: column;
}

.knowledge-center-footer--comments-inputs div label {
	font-size: 10px;
	font-weight: 600;
	color: #666B71;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.comments-select-container {
	width: 30%;
}

.comments-textarea-container {
	width: 70%;
}

.comments-select-container select,
.comments-textarea-container textarea {
	border: 1px solid #D8DDE1;
	padding: 10px;
	border-radius: 4px;
}
