:root {
	--header-height: 5rem;
	--nav-width: 76px;
	--first-color: #000000f9;
	--first-color-light: white;
	--general-color: #0a9300;
	--header-general-color: var(--first-color-light);
	--back-main-color: rgb(255, 255, 255);
	--body-font: 'Nunito', sans-serif;
	--normal-font-size: 1rem;
	--z-fixed: 100;
}

html {
	font-size: 150%;
}

*,
::before,
::after {
	box-sizing: border-box;
}

body {
	position: relative;
	margin: var(--header-height) 0 0 0;
	padding: 0;
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
	background-color: var(--back-main-color);
	transition: .5s;
	overflow-x: hidden;
	width: 100%;
}

#app {
	width: 100%;
	overflow-x: hidden;
}

a {
	text-decoration: none !important;
}

a:hover {
	text-decoration: none !important;
}

.main_logo {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 1rem;
}

.component-wrapper,
.main_textarea,
.main_logo {
	width: 100%;
	max-width: 100%;
	margin: 0 0 1rem 0;
	display: block;
	box-sizing: border-box;
}

.component-wrapper .card {
	width: 100%;
	margin-bottom: 1rem;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	border: 1px solid rgba(0, 0, 0, 0.125);
}

.component-wrapper .card-header {
	background-color: #f8f9fa;
	border-bottom: 1px solid rgba(0, 0, 0, 0.125);
	padding: 0.75rem 1rem;
}

.component-wrapper .card-header h5 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--general-color);
}

.component-wrapper .card-body {
	padding: 1rem;
}

.invisible {
	visibility: hidden;
}

.layout-grid .component-wrapper {
	display: inline-block;
	width: auto;
	max-width: none;
	--layout-grid-header-offset: var(--header-height);
}

.btn-primary {
	background-color: #fc8966;
	border-color: #FC7F66;
}

@media screen and (min-width: 768px) {
	body {
		margin: calc(var(--header-height) + 1rem) 0 0 0;
		padding-left: calc(var(--nav-width) + 2rem);
	}
}

#showMessage {
	display: none;
	left: 0;
	width: 100%;
	margin: 0;
}

span.messageNav {
	float: right;
	padding-right: 1em;
	font-weight: bold;
	font-size: small;
}

.stateHolder {
	width: 90%;
	margin: 0.1em auto;
	padding: 0.1em;
}

#showMessage ul {
	font-size: small;
	font-weight: bold;
	margin-left: 0;
	margin-bottom: 0;
	padding-left: 0;
	padding-bottom: 0;
}

#showMessage li {
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	padding-bottom: 0;
}

.notification,.success,.fail {
	font-family: Arial, Helvetica, clean, sans-serif;
	font-size: large;
	font-weight: bold;
}

.notification {
	background-color: #efefef;
	color: green;
}

.success {
	background-color: green;
	color: white;
}

.fail {
	background-color: #fe2e2e;
	color: white;
}

.header {
	width: 100%;
	height: var(--header-height);
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1rem;
	background-color: var(--header-general-color);
	z-index: var(--z-fixed);
	transition: .5s;
}

.header_toggle {
	color: var(--first-color);
	font-size: 2.5rem;
	cursor: pointer;
}

.header_img {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
}

.header_img img {
	width: 60px;
	height: 60px;
}

@media screen and (min-width: 768px) {
	.header {
		height: calc(var(--header-height) + 1rem);
		padding: 0 2rem 0 calc(var(--nav-width) + 2rem);
	}

	.header_img {
		width: 90px;
		height: 90px;
	}

	.header_img img {
		width: 90px;
		height: 90px;
	}
}

.l-navbar {
	position: fixed;
	top: 0;
	left: -30%;
	width: var(--nav-width);
	height: 100vh;
	background-color: var(--back-main-color);
	padding: .5rem 0 0 0;
	border-right: 1px solid rgb(229, 229, 229);
	transition: .5s;
	z-index: var(--z-fixed);
}

.nav {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

.nav_logo,
.nav_link {
	display: grid;
	grid-template-columns: max-content max-content;
	align-items: center;
	column-gap: 1rem;
	padding: .5rem 0 .5rem calc((var(--nav-width) - 1.3333rem) / 2);
	position: relative;
	color: #000000;
	margin-bottom: 1.5rem;
	transition: .3s;
	text-decoration: none !important;
}

.nav_logo {
	margin-bottom: 2rem;
}

.nav_logo:hover,
.nav_link:hover {
	color: var(--general-color);
	text-decoration: none !important;
}

.nav_logo-icon {
	font-size: 1.3333rem;
	color: var(--general-color);
}

.nav_logo-name {
	color: var(--general-color);
	font-size: 1.3333rem;
}

.nav_icon {
	font-size: 1.2rem;
}

.nav_name {
	font-size: 1rem;
}

.show {
	left: 0;
}

.body-pd {
	padding-left: calc(var(--nav-width) + 1rem);
}

@media screen and (min-width: 768px) {
	.l-navbar {
		left: 0;
		padding: 1rem 1rem 0 0;
	}

	.show {
		width: calc(var(--nav-width) + 156px);
	}

	.body-pd {
		padding-left: calc(var(--nav-width) + 188px);
	}
}

.active {
	color: var(--general-color) !important;
	text-decoration: none !important;
}

.active::before {
	content: '';
	position: absolute;
	left: 0;
	width: 2px;
	height: 32px;
	background-color: var(--general-color);
}

.body-content {
	padding: calc(var(--header-height) + 1rem) 1rem 1rem 1rem;
	background-color: var(--back-main-color);
}

.body-content-title {
	font-size: 33px;
	font-weight: bold;
	text-align: left;
}

.height-100 {
	height: 100vh;
}

@media screen and (min-width: 768px) {
	.body-content {
		padding: 2rem;
		margin-left: 1px;
		width: 100%;
		max-width: calc(100vw - var(--nav-width) - 50px);
		padding-top: calc(var(--header-height) + 1rem);
		background-color: var(--back-main-color);
	}

	.body-content-title {
		font-size: 33px;
		font-weight: bold;
		text-align: left;
	}
}

.gallery-title {
	font-size: 1rem;
}

.gallery-item .component-content {
	display: none;
}

.layout-grid-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5vh 5vw;
	background: rgba(0, 0, 0, 0.65);
	box-sizing: border-box;
}

.layout-grid-modal-panel {
	position: relative;
	width: min(90vw, 1200px);
	max-height: 90vh;
	overflow-y: auto;
	padding: 40px;
	box-sizing: border-box;
	background: var(--back-main-color);
	border: 1px solid #ffffff;
	border-radius: 0;
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0px solid #ffffff;
	border-radius: 0;
	background: var(--back-main-color);
	color: black;
	font-size: 42px;
	line-height: 1;
	cursor: pointer;
}

.modal-close:hover {
	background: var(--back-main-color);
	color: rgb(0, 0, 0);
}

.modal-title {
	font-size: 2.6667rem;
	margin: 0 50px 15px 0;
}

.modal-description {
	font-size: 2rem;
	margin-bottom: 25px;
	line-height: 1.5;
	opacity: 0.8;
}

.modal-component {
	width: 100%;
}

.component-content {
	width: 100%;
}

.code-container {
	position: relative;
	display: block;
	background-color: var(--back-main-color);
}

.copy-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 5px 10px;
	background-color: #000000;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 18px;
}

.copy-btn:hover {
	background-color: #555;
}

.note-alert {
	background-color: #EDF4FE;
	color: #000102;
	border-radius: .5rem;
	border: #89bcfa 1px solid;
	align-items: flex-start;
}

.note-alert .note-icon,
.note-alert .note-title strong {
	color: #0050B5;
	font-weight: 700;
	font-size: 1.25rem;
}

.note-alert .note-icon {
	margin-right: 0.75rem;
	margin-top: 0.6rem;
}

display-note {
	display: block;
	width: 100%;
	max-width: 100%;
}

.warning-alert {
	background-color: #FFF4D6;
	color: #000102;
	border-radius: .5rem;
	border: #F5C542 1px solid;
	align-items: flex-start;
}

.warning-alert .warning-icon,
.warning-alert .warning-title strong {
	color: #B26A00;
	font-weight: 700;
	font-size: 1.25rem;
}

.warning-alert .warning-icon {
	margin-right: 0.75rem;
	margin-top: 0.6rem;
}

.collapsible-toggle-btn {
	font-size: .875rem;
}

.table-component,
.table-component .table {
	border-collapse: separate;
	border-spacing: 0;
	border-radius: .5rem;
	overflow: hidden;
	border: 1px solid #d9d9d9;
}

.table-component thead th {
	background-color: #fafafa !important;
	color: #000102 !important;
}

.table-component th,
.table-component td {
	background-color: #ffffff !important;
	box-shadow: none !important;
	border-color: #d9d9d9 !important;
}

display-code {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.code-block .code-language {
	font-size: 1.05rem;
	font-weight: 600;
	color: #212529;
	display: inline-flex;
	align-items: center;
	min-height: 31px;
}

.code-block pre {
	position: relative;
}

.code-block .copy-btn {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background-color: #e9ecef;
	border-color: #ced4da;
	color: #000;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	font-weight: normal;
	text-transform: none;
}

.code-block .copy-btn:hover,
.code-block .copy-btn:focus {
	background-color: #dfe3e7;
	border-color: #b6bec5;
	color: #000;
}

.app-footer {
    background-color: #ffffff;
    color: #212529;
    border-top: 1px solid #e9ecef;
    position: sticky;
    bottom: 0;
    margin-top: auto;
}

.app-footer .list-unstyled a {
    color: #000;
}

.app-footer a:hover {
    color: var(--general-color) !important;
    text-decoration: none !important;
}

.footer-brand img {
    height: 24px;
    width: auto;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    color: #212529;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    transition: background-color 0.2s ease;
    text-decoration: none !important;
}

.footer-social a:hover {
    background-color: var(--general-color);
    color: #fff;
    text-decoration: none !important;
}

application-footer {
    display: block;
    width: 100%;
    max-width: 100%;
}

