/*------------------------------------------------------------------
[Table of contents]
1. Bootstrap Extention
2. UI components
3. Utilities
4. Material Design style
-------------------------------------------------------------------*/

/* *******************************************
Google Fonts 
font-family: 'Poppins', sans-serif;
font-family: 'Noto Sans KR', sans-serif;
********************************************	*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;400;700&display=swap");


/*---------------------------
1. Bootstrap Extension
---------------------------*/
/*	Base	***********************************	*/
html	{	background: #f5f6f7;}
body	{
	width: 100%;
	min-height: 100vh;
	color: #3d454d;
	background: inherit;
	font-family:"Poppins", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

*:focus	{	outline: 0 !important;}
a		{
	text-decoration: none;
	cursor: pointer;
	outline: 0;
}

a:hover, a:focus,
button:hover, button:focus {
	text-decoration: none;
	transition: all 0.4s ease-in-out 0s;
}
button	{	color: inherit;}
pre	{
	color: #5e676f;
	background-color: #f5f5f6;
	border-color: rgba(160, 175, 185, 0.28);
}
hr	{	border-color: rgba(160, 175, 185, 0.28);}
blockquote	{	border-color: rgba(160, 175, 185, 0.28);}
small	{	font-size: 0.825rem;}
sup		{	vertical-align: text-top;	top: -.25em;}
b, strong	{	font-weight: 700;}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6	{	color: #3d454d;}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6,
p, span,
label,
a, button {word-break: keep-all;}


/*	Alert	***********************************	*/
.close	{	color: inherit;	text-shadow: none;}
.close:hover,
.close:focus	{	color: inherit;}


/*	badge	***********************************	*/
.badge-up	{
	padding: 0 0.25rem;
	position: absolute;
	right: 0;
	transform: translate(0%, -50%);
	background-clip: padding-box;
	min-width: 1rem;
	min-height: 1rem;
	line-height: 1rem;
}
.badge-outline	{
	border: 1px solid currentColor;
	border-radius: 0;
	background-color: transparent;
	font-weight: 100;
}
.badge-circle	{
	padding: 0 !important;
	width: 0.625rem;
	height: 0.625rem;
	border: 2px solid;
	border-radius: 50%;
}
.badge-circle:empty	{	display: inline-block;}
.badge-circle.xs	{
	width: 0;
	height: 0;
	border-width: 3px;
	vertical-align: 2px;
}
.badge-circle.sm	{
	width: 0.5rem;
	height: 0.5rem;
	vertical-align: 1px;
}
.badge-circle.md	{
	width: 1rem;
	height: 1rem;
	vertical-align: -3px;
}
.badge-circle.lg	{
	width: 1.5rem;
	height: 1.5rem;
	vertical-align: -7px;
}
.badge		{	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";}
.badge-sm	{	line-height: 1;}
.badge-md	{	padding: 0.5em 0.75em;}
.badge-lg	{	padding: 0.75em 1em;}


/*	Buttons	***********************************	*/
.btn	{
	font-weight: 700;
	display: -ms-inline-flex;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0.475rem 0.85rem;
}
.btn > i.float-left,
.btn > i.float-right	{	line-height: inherit;	margin: 0;}
.btn > i svg	{	max-width: 16px;	max-height: 16px;	vertical-align: middle;}
.btn.loading	{	text-indent: -9999rem;}
.btn:hover,
.btn:active	{	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);}
.btn-md	{	padding: 0.75rem 1.25rem;}
.btn-xs	{	font-size: 0.75rem;	padding: 0.125rem 0.5rem;}
.btn-white	{
	color: #5e676f;
	background-color: #fff;
	border-color: #EEEEEE;;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.input-group .btn-white	{	border-color: rgba(160, 175, 185, 0.35);}
.btn-rounded		{	border-radius: 4rem;	padding-left: 1rem;	padding-right: 1rem;}
.btn-rounded.btn-xs	{	padding-left: 0.8rem;	padding-right: 0.8rem;}
.btn-icon			{	width: 2.125rem;	height: 2.125rem;	padding: 0 !important;}
.btn-icon2 {
	width: 2.125rem;
	height: 2.125rem;
	padding: 1px 5px;
}
.btn-icon.btn-sm	{	width: 1.875rem;	height: 1.875rem;}
.btn-icon.btn-md	{	width: 2.5rem;	height: 2.5rem;}
.btn-icon.btn-lg	{	width: 3.375rem;	height: 3.375rem;}
.btn-line		{	position: relative;}
.btn-line:after	{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	height: 1px;
	width: 100%;
	background: #000;
	transition: transform 0.8s cubic-bezier(0.9, 0, 0.1, 1);
	transform-origin: right center;
	transform: scaleX(0);
}
.btn-line:hover:after,
.btn-line:active:after	{
	transform-origin: left center;
	transform: scaleX(1);
}
.btn-wave	{
	overflow: hidden;
	position: relative;
	transform: translate3d(0, 0, 0);
}
.btn-wave:before	{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: auto;
	height: auto;
	pointer-events: none;
	background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
	background-repeat: no-repeat;
	background-position: 50%;
	transform: scale(10, 10);
	opacity: 0;
	transition: transform .5s, opacity 1.5s;
}
.btn-wave:active:before	{
	transform: scale(0, 0);
	opacity: .1;
	transition: 0s;
}
.btn-raised	{
	transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.btn-raised:not([disabled]):hover,
.btn-raised:not([disabled]):focus,
.btn-raised:not([disabled]):active	{
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
	transform: translate3d(0, -1px, 0);
}
.btn-group-toggle	{
	display: inline-flex;
	padding: 0.45rem 0.25rem;
	border: 1px solid rgba(160, 175, 185, 0.35);
	border-radius: 0.25rem;
}
.btn-group-toggle .btn	{
	font-size: 0.75rem;
	padding: 0.125rem 0.35rem;
	margin: 0 0.125rem !important;
	border-radius: inherit !important;
}
.btn-group-toggle .btn.active	{	color: #ffffff !important;	background-color: #448bff !important;}
.btn-play	{	position: relative;}
.btn-play.bg--white	{	color: #6c7781 !important;}
.btn-play:before	{
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-4px, -50%);
	transform-origin: center center;
	border: 6px solid transparent;
	border-left-color: currentColor;
	border-left-width: 10px;
	transition: all 0.2s;
}

.btn-play.active:before	{
	width: 10px;
	height: 10px;
	border-top-width: 0;
	border-bottom-width: 0;
	border-left-width: 3px;
	border-right-width: 3px;
	border-right-color: currentColor;
	transform: translate(-50%, -50%) rotate(180.1deg);
}

.is-buffering .btn-play.active:before	{
	border: 2px solid;
	border-left-color: transparent;
	border-radius: 100%;
	margin-left: -5px;
	margin-top: -5px;
	animation: loading 1s linear infinite;
}

/*	Card	***********************************	*/
.card,
.block	{
	background: #fff;
	border-width: 0;
	border-radius: 0.45rem;
	border: 1px solid #EEEEEE;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.075);
	margin-bottom: 2rem;
}
.card-header,
.card-footer	{
	background-color: transparent;
	border-color: rgba(160, 175, 185, 0.28);
	background-clip: padding-box;
}
.card-header.bigtx {
	font-size: 1.45em;
	font-weight: bold;
	padding:1.25rem 1.25rem 1rem 1.25rem;
	color: #48515a;
}
.card-header.bigtx svg {
	width: 22px;
	height: 22px;
	color: #396cf0;
	margin-left: 0 !important;
	margin-bottom: 2px;
}
.card-header.bigtx p {
    float: right;
    font-weight: normal;
    font-size: 0.6em;
    opacity: 0.75;
    margin: 9px 5px 0 0;
}
.card-header.bigtxLeft p {
	float: left;
	font-weight: normal;
	font-size: 0.6em;
	opacity: 0.75;
	margin: 9px 5px 0 0;
}
.card-header.none-bottom	{
	background-size: cover;
	background-position: 50% 50%;
	padding: 0 !important;
	border-color: transparent !important;
	border-width: 0 !important;
	border-radius: calc(0.45rem - 1px);
}
.card-body p:last-child	{	margin-bottom: 0;}
.card-hide-body .card-body	{	display: none;}
.card-title	{	line-height: 1.5;}
.card-title h5 {
	font-size: 1.245rem;
	font-weight: bold;
	margin: 0 0;
	padding: 0 0;
	float: left;
}
.block-fold:before,
.block-fold:after,
.card-fold:before,
.card-fold:after	{
	content: '';
	display: block;
	background-color: inherit;
	box-shadow: inherit;
	border-radius: inherit;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	position: absolute;
	width: 90%;
	left: 5%;
	height: 0.35rem;
	bottom: -0.35rem;
	opacity: 0.6;
	transition: all .1s;
}
.block-fold:before,
.card-fold:before	{
	width: 80%;
	left: 10%;
	bottom: -0.7rem;
	opacity: 0.3;
}

.block-fold:hover:before,
.block-fold:active:before,
.card-fold:hover:before,
.card-fold:active:before	{	opacity: 0.5;}

.block-fold:hover:after,
.block-fold:active:after,
.card-fold:hover:after,
.card-fold:active:after		{	opacity: 0.8;}
.card.col2 {box-sizing: border-box; display: block; overflow: hidden;}


/*	Carousel	***********************************	*/
.carousel-indicators li	{
	width: 5px;
	height: 5px;
	border-radius: 5px;
	transition: all .3s;
}
.carousel-indicators li.active	{	width: 20px;}
.carousel-fade .carousel-item	{	transition: opacity 1s;}
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right	{	transform: translateX(0);	opacity: 1;}
.carousel-fade .carousel-item-next,
.carousel-fade .active.carousel-item-right	{	opacity: 0;}
.carousel-fade .carousel-item-prev,
.carousel-fade .active.carousel-item-left	{	opacity: 0;}


/*	Dropdown menu	***********************************	*/
.dropdown-menu	{
	border-radius: 3px;
	border-color: rgba(160, 175, 185, 0.35);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	color: #5e676f;
}
.dropdown-menu > li:not(.dropdown-item) > a	{	display: block;	padding: 3px 20px;}
.dropdown-menu > li:not(.dropdown-item) > a:hover,
.dropdown-menu > li:not(.dropdown-item) > a:focus	{	background-color: rgba(135, 150, 165, 0.1);}
.dropdown-menu > .divider	{	height: 1px;	margin: .5rem 0;	overflow: hidden;	background-color: rgba(160, 175, 185, 0.35);}
.dropdown-menu .active	{	background-color: rgba(135, 150, 165, 0.1);}
.dropdown-menu-center	{	left: 50%;	transform: translateX(-50%);}
.dropdown-item	{	color: inherit;}
.dropdown-item a	{	color: inherit;}
.dropdown-item i,
.dropdown-item svg	{	margin-left: -0.5rem;	margin-right: .5rem;	text-align: center;}
.dropdown-item,
.dropdown-item.active	{	color: inherit;}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active:hover,
.dropdown-item.active:focus	{	color: inherit;	background-color: rgba(135, 150, 165, 0.1);}
.dropdown-header	{	color: inherit;	opacity: 0.5;}
.dropdown-toggle	{	white-space: nowrap !important;}
.dropdown-divider	{	border-color: rgba(160, 175, 185, 0.35);}
.dropdown-submenu	{	position: relative;}
.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus > .dropdown-menu	{	display: block;}
.dropdown-submenu .dropdown-menu	{
	left: 100%;
	top: 0;
	margin-top: -8px;
	margin-left: -1px;
}
.dropdown-submenu .dropdown-menu.pull-left	{
	right: 100%;
	left: auto;
}
.dropup .dropdown-submenu > .dropdown-menu	{
	top: auto;
	bottom: 0;
	margin-bottom: -6px;
}
.popover	{	color: #5e676f;}


/*	Form	***********************************	*/
.form-control	{
	border-color: rgba(135, 150, 165, 0.35);
	border-width: 1px;
	border-radius: 0.25rem;
	color: inherit;
}
.form-control:focus	{	color: inherit;	box-shadow: 0 0 0 0.2rem rgba(68, 139, 255, 0.25);}
.form-control:not(.is-valid):not(.is-invalid):focus	{	border-color: #448bff;}
.form-control-theme	{
	border-width: 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.col-form-label	{	color: #818894;}
.form-check-input	{	margin-top: 0.2rem;}
.custom-file-control,
.custom-file-control:before,
.custom-select	{	border-color: rgba(135, 150, 165, 0.35);}
.custom-select,
.custom-range	{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.custom-control-label	{	line-height: 1.75;}
.form-control::-webkit-input-placeholder	{	color: inherit;	opacity: 0.3;}
.form-control::-moz-placeholder	{	color: inherit;	opacity: 0.3;}
.form-control:-ms-input-placeholder	{	color: inherit;	opacity: 0.3;}
.form-control-spin	{
	position: absolute;
	z-index: 2;
	right: 10px;
	top: 50%;
	margin-top: -7px;
}

.custom-file-label,
.custom-file-label:after,
.input-group-text	{
	border-color: rgba(135, 150, 165, 0.35) !important;
	background-color: transparent;
	color: inherit;
}

.input-group-text,
.custom-file-label:after	{
	background-color: rgba(160, 175, 185, 0.15);
}

.form-group-stack .form-control	{
	margin-top: -1px;
	position: relative;
	border-radius: 0;
}

.form-group-stack .form-control:focus,
.form-group-stack .form-control:active	{	z-index: 1;}
.input-group-sm > .form-control	{	min-height: 1.95rem;}
.active-checked	{	opacity: 0;}
input:checked + .active-checked	{	opacity: 1;}


/*	List Group	***********************************	*/
.list-group	{	border-radius: 3px;	background: #fff;	padding-right: 0;}
.list-group.no-radius .list-group-item	{	border-radius: 0 !important;}
.list-group.no-borders .list-group-item	{	border: none;}
.list-group.no-border .list-group-item	{	border-width: 1px 0;}
.list-group.box .list-group-item,
.list-group.no-border .list-group-item	{	border-width: 1px 0;}
.list-group.box .list-group-item:first-child,
.list-group.no-border .list-group-item:first-child	{	border-top-width: 0;}
.list-group.box .list-group-item:last-child,
.list-group.no-border .list-group-item:last-child	{	border-bottom-width: 0;}
.list-group.no-bg .list-group-item	{	background-color: transparent;}
.list-group.list-group-gap	{	background: transparent;}
.list-group.box .list-group-item	{	border-left-width: 0;	border-right-width: 0;}
.list-group-item	{
	border-color: rgba(160, 175, 185, 0.15);
	background: transparent;
	padding: 12px 16px;
	background-clip: padding-box;
}
.list-group-item.media	{	margin-top: 0;}
.list-group-item.box	{	border-width: 0;}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus	{
	color: inherit;
	background-color: rgba(135, 150, 165, 0.1);
	border-color: rgba(160, 175, 185, 0.15);
	border-bottom-color: rgba(160, 175, 185, 0.15);
}
.list-group-item.active a,
.list-group-item.active:hover a,
.list-group-item.active:focus a	{	color: inherit;}
.list-group-item:first-child	{	border-top-color: rgba(160, 175, 185, 0.35);}
.list-group-item:last-child	{	border-bottom-color: rgba(160, 175, 185, 0.35);}
.list-group-alt .list-group-item:nth-child(2n+2)	{	background-color: rgba(135, 150, 165, 0.1);}
.list-group-alt .list-group-item.active:nth-child(2n+2)	{	background-color: rgba(135, 150, 165, 0.1);}
.list-group-lg .list-group-item	{	padding: 16px 24px;}
.list-group-md .list-group-item	{	padding-top: 16px;	padding-bottom: 16px;}
.list-group-sm .list-group-item	{	padding: 10px 12px;}
.list-group-gap .list-group-item	{	margin-bottom: 5px;	border-radius: 3px;}
.list-group-gap .list-group-item:first-child	{	border-top-color: rgba(160, 175, 185, 0.15);}
.list-group-gap .list-group-item:last-child	{	border-bottom-color: rgba(160, 175, 185, 0.15);}
a.list-group-item	{	color: inherit;}
a.list-group-item:hover,
a.list-group-item:focus,
a.list-group-item.hover	{	color: inherit;	background-color: rgba(135, 150, 165, 0.1);}


/*	Modal	***********************************	*/
.modal.fade .modal-left,
.modal.fade .modal-right,
.modal.fade .modal-top,
.modal.fade .modal-bottom	{
	position: fixed;
	z-index: 1055;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	max-width: 100%;
}
.modal.fade .modal-left	{
	right: auto !important;
	transform: translate3d(-100%, 0, 0);
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal.fade .modal-right	{
	left: auto !important;
	transform: translate3d(100%, 0, 0);
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal.fade .modal-top	{
	bottom: auto !important;
	transform: translate3d(0, -100%, 0);
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal.fade .modal-bottom	{
	top: auto !important;
	transform: translate3d(0, 100%, 0);
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal.fade.show .modal-left,
.modal.fade.show .modal-right,
.modal.fade.show .modal-top,
.modal.fade.show .modal-bottom	{transform: translate3d(0, 0, 0);}
.modal.fade.inactive	{	bottom: auto;	overflow: visible;}
.modal-open-aside	{	overflow: visible;}
.modal-header,
.modal-content,
.modal-footer	{	border: none;}
.modal-dialog > *	{	pointer-events: auto;}
.modal-header	{
	margin-top: -1px;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
}
.modal-footer	{
	margin-top: auto;
	border-bottom-left-radius: inherit;
	border-tbottomop-right-radius: inherit;
}
.modal .close	{	float: none;}


/*	Modal animation	***********************************	*/
.modal .modal-dialog	{	transform: translate(0, 0);}
.modal .fade-right		{	animation: fadeInLeft 0.5s;	animation-direction: reverse;}
.modal .fade-left		{	animation: fadeInRight 0.5s;	animation-direction: reverse;}
.modal .fade-up			{	animation: fadeInDown 0.5s;	animation-direction: reverse;}
.modal .fade-down		{	animation: fadeInUp 0.5s;	animation-direction: reverse;}
.modal.show .fade-right	{	animation: fadeInRight 0.5s;}
.modal.show .fade-left	{	animation: fadeInLeft 0.5s;}
.modal.show .fade-up	{	animation: fadeInUp 0.5s;}
.modal.show .fade-down	{	animation: fadeInDown 0.5s;}


/*	Nav	***********************************	*/
.nav	{	border: inherit;}
.nav.flex-column .nav	{
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.nav-item	{	position: relative;	border: inherit;}
.nav-link	{	color: inherit;	border: inherit;	position: relative;}
.nav-md .nav-link	{	padding: 0.75rem 1.25rem;}
.nav-sm .nav-link	{	padding: 0.25rem 0.75rem;}
.nav-xs .nav-link	{	padding: 0.125rem 0.375rem;}
.nav-xxs .nav-link	{	padding-left: 0;	padding-right: 0;	margin: 0 0.5rem;}
.nav-rounded .nav-link	{	border-radius: 2rem;}
.nav-tabs	{	border-bottom-width: 0;	position: relative;	z-index: 1;}
.nav-tabs .nav-link	{	background: transparent !important;	color: inherit !important;}
.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:hover,
.nav-tabs .nav-link.active:focus,
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus	{	border-color: rgba(160, 175, 185, 0.35);	border-bottom-color: transparent;}
.tab-content.tab-alt .tab-pane	{	display: block;	height: 0;	overflow: hidden;}
.tab-content.tab-alt .tab-pane.active	{	height: auto;	overflow: visible;}
.nav-justified .nav-item	{	display: table-cell;	width: 1%;	float: none !important;	text-align: center;}
.nav-lists .nav-item	{	border-bottom: 1px solid rgba(160, 175, 185, 0.35);	background-clip: padding-box;}
.breadcrumb	{	background-color: rgba(135, 150, 165, 0.1);}
.breadcrumb > li + li:before	{	content: '/ ';}
.nav-active-border li > a:before,
.nav-active-border .nav-link:before	{
	content: '';
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 0;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: transparent;
	transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce)	{
	.nav-active-border li > a:before,
	.nav-active-border .nav-link:before	{	transition: none;}
}
/*
.nav-active-border li > a.active:before,
.nav-active-border .nav-link.active:before	{ left:0; right:0; border-bottom-color:#448bff;}
*/
.nav-active-border li.active > a:before	{
	left: 1rem;
	right: 1rem;
	border-bottom-color: #448bff;
}
.nav-active-border.top li.active > a:before,
.nav-active-border.top .nav-link:before	{
	bottom: auto;
	top: 0;
}


/*	Navbar	***********************************	*/
.navbar	{
	min-height: 4rem;
	padding: 1rem 1rem 1rem 1.25rem;
	display: -ms-flexbox;
	display: flex;
}
.navbar .dropdown-menu-right	{	left: auto;	right: 0;}
.navbar svg	{	vertical-align: middle;}
.navbar .nav-link	{	color: inherit;	white-space: nowrap;}
.navbar .nav-active-border .nav-link	{	margin: -0.75rem 0;	line-height: 2.75rem;}
.navbar .dropdown-menu	{	margin-top: 0;}
.bg-white .navbar .nav-item.active	{	color: #448bff;}

.toolbar	{
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	margin: 0 -0.25rem;
	align-items: center !important;
}
.toolbar > * {	margin: 0 0.25rem;}
.toolbar.toolbar-mx	{	margin: 0 -0.5rem;}
.toolbar.toolbar-mx > *	{	margin: 0 0.5rem;}
.menuside	{	padding:1rem; display: none;}

.nav-title	{
	font-size: 1.125rem;
	line-height: 1.2;
}
.navbar-brand	{
	font-size: 1.125rem;
	line-height: 1;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.navbar-brand > span	{
	margin: 0 0.5rem;
	font-weight: 600;
}
.navbar-brand img,
.navbar-brand svg	{
	max-height: 2.5rem;
	vertical-align: middle;
	font-weight: 600;
}
.navbar-menu	{
	-ms-flex-direction: row;
	flex-direction: row;
	margin-left: auto;
	-ms-align-items: center;
	align-items: center;
}
.navbar-brand img:first-child { margin: 0 15px 0 0;}
/*
@media (min-width: 992px)	{
	.page-header.gd-amuse,
	.navbar-expand-lg { min-width: 1220px;}
}
*/


/*	pagination	***********************************	*/
.pagination a	{
	padding: .5rem .75rem;
	border: 1px solid rgba(160, 175, 185, 0.35);
}
.pagination .page-link,
.pagination li a	{
	color: inherit !important;
	background-color: transparent !important;
	border-color: rgba(160, 175, 185, 0.35) !important;
	display: block;
	font-size: 0.745rem;
}
.pagination .page-link:hover,
.pagination .page-link:focus,
.pagination li a:hover,
.pagination li a:focus	{
	border-color: rgba(160, 175, 185, 0.35);
	background-color: rgba(135, 150, 165, 0.1);
	color: inherit;
}
.pagination .active .page-link,
.pagination .active a	{
	color: white !important;
	background-color: #576b7b !important;
	border-color: #576b7b !important;
}
.pagination li:first-child a	{
	border-top-left-radius: .2rem;
	border-bottom-left-radius: .2rem;
}
.pagination li:last-child a	{
	border-top-right-radius: .2rem;
	border-bottom-right-radius: .2rem;
}
.pagination-sm a	{	padding: .2195rem .5rem;}
.pagination-xs a	{	padding: 0 .35rem;	line-height: 1.5;}


/*	Popover	***********************************	*/
.popover	{	border: none;	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);}
.popover-header	{	border-color: rgba(160, 175, 185, 0.15);	background-color: #fff;}
.popover-body	{	color: #5e676f;}
.popover-body p:last-child	{	margin: 0;}
.popover .arrow:before	{	opacity: 0.15;}


/*	Progress	***********************************	*/
.progress	{
	border-radius: .25rem;
	overflow: visible;
	background-color: rgba(135, 150, 165, 0.1);
}
.progress-bar	{
	height: 100%;
	text-align: center;
	font-size: 1em;
	border-radius: .25rem;
	-webkit-transition: width .6s ease;
	transition: width .6s ease;
}

/*	Row	***********************************	*/
.padding	{	padding: 2rem;}
.paddingx1 {
	padding: 1rem;
}
.paddingx3	{	padding: 3rem;}
.row-md		{	margin-left: -0.75rem;	margin-right: -0.75rem;}
.row-md [class*="col-"],
.row-md .col	{	padding-left: 0.75rem;	padding-right: 0.75rem;}
.row-md .card,
.row-md .block	{	margin-bottom: 1.5rem;}
.row-sm	{	margin-left: -0.5rem;	margin-right: -0.5rem;}
.row-sm [class*="col-"],
.row-sm .col	{	padding-left: 0.5rem;	padding-right: 0.5rem;}
.row-sm .card,
.row-sm .block	{	margin-bottom: 1rem;}
.row-xs	{	margin-left: -0.25rem;	margin-right: -0.25rem;}
.row-xs [class*="col-"],
.row-xs .col	{	padding-left: 0.25rem;	padding-right: 0.25rem;}
.row-xs .card,
.row-xs .block	{	margin-bottom: 0.5rem;}

@media (min-width: 992px)	{
	.col-lg-2-4	{	flex: 0 0 20%;	max-width: 20%;}
}

@media (min-width: 1200px)	{
	.col-xl-1-8	{	flex: 0 0 12.5%; max-width: 12.5%;}
}

@media (max-width: 991.98px)	{
	.padding	{	padding: 1.5rem;}
}

@media (max-width: 767.98px)	{
	.padding	{	padding: 1rem;}
}

/*	Table	***********************************	*/
.table > thead > tr > th	{	border-width: 0;}
.table-condensed thead > tr > th,
.table-condensed tbody > tr > th,
.table-condensed tfoot > tr > th,
.table-condensed thead > tr > td,
.table-condensed tbody > tr > td,
.table-condensed tfoot > tr > td	{	padding: 5px;}
.table-bordered	{	border-color: rgba(160, 175, 185, 0.35);}
.table-striped > tbody > tr:nth-child(odd)	{
	background-color: rgba(0, 0, 0, 0.025);
	background-clip: padding-box;
}
.table-striped > thead > th	{
	background-color: rgba(0, 0, 0, 0.025);
	border-right: 1px solid rgba(160, 175, 185, 0.35);
}
.table-striped > thead > th:last-child	{	border-right: none;}
.table-hover tr:hover td	{	background-color: rgba(160, 175, 185, 0.15);}
.table.v-middle th,
.table.v-middle td	{	vertical-align: middle;}
.table-theme	{	border-spacing: 0;}
.table-theme thead	{	font-size: 0.7rem;}
.table-theme thead th	{ text-align: center; background:#e1e8ec; box-shadow: 0 1px 0 rgba(160, 175, 185, 0.15), 0 -1px 0 rgba(160, 175, 185, 0.15);  border-top: 1px solid #c8d0d4; border-bottom: 1px solid #c8d0d4;}
.table-theme thead th:first-child	{	border-radius: .25rem 0 0 .25rem; border-left: 1px solid #c8d0d4;}
.table-theme thead th:last-child	{	border-radius: 0 .25rem .25rem 0; border-right: 1px solid #c8d0d4;}
.table-theme tbody td	{
	background-color: #fff;
	border-width: 0;
	box-shadow: 0 1px 0 rgba(160, 175, 185, 0.25),
				0 -1px 0 rgba(160, 175, 185, 0.25);
	text-align: center;
	background: rgba(245, 246, 247, 0.75);
}
.table-theme tbody td.flex	{	text-align: left;}
.table-theme tbody td:first-child	{	border-radius: .35rem 0 0 .35rem; }
.table-theme tbody td:last-child	{	border-radius: 0 .35rem .35rem 0;}
.table-theme tbody td.contents		{	text-align: left; padding: 1.45rem 1.75rem;}
.table-theme tbody td.subj			{	font-size:1rem; padding:1.5rem 0 1.15rem 1.75rem; font-weight: bold; text-align: left;}
span.c-bar	{	text-align: center; display: inline-block; margin: 0 10px; opacity: 0.35;}
.table-row	{
	border-collapse: separate !important;
	border-spacing: 0 7px !important;
}
.table-row thead th	{	padding-top: 0.75rem;	padding-bottom: 0.75rem;}
.table-row td	{	border-color: transparent !important;}
.sorting_asc,
.sorting_desc,
.sorting,
.sortable	{
	position: relative;
	cursor: pointer;
	padding-right: 1rem !important;
}
.sorting_asc:before,
.sorting_asc:after,
.sorting_desc:before,
.sorting_desc:after,
.sorting:before,
.sorting:after,
.sortable:before,
.sortable:after	{
	opacity: 0.5;
	content: '' !important;
	position: absolute;
	right: 5px !important;
	top: 50%;
	margin-top: 1px;
	width: 0;
	height: 0;
	border-top: 3px solid;
	border-right: 3px solid transparent;
	border-bottom: 0;
	border-left: 3px solid transparent;
}
.sorting_asc:after,
.sorting_desc:after,
.sorting:after,
.sortable:after	{
	border-top: 0;
	border-bottom: 3px solid;
	margin-top: -4px;
}
.sorting_asc.desc:before,
.sorting_desc.desc:before,
.sorting.desc:before,
.sortable.desc:before	{	opacity: 1;}
.sorting_asc.asc:after,
.sorting_desc.asc:after,
.sorting.asc:after,
.sortable.asc:after	{	opacity: 1;}
.sorting_asc:after,
.asc .sorting:after	{	opacity: 1;}
.sorting_desc:after,
.desc .sorting:before	{	opacity: 1;}



/*---------------------------
2. UI Components
---------------------------*/
/*	animate	***********************************	*/
.animate	{	animation-fill-mode: both;	animation-duration: 0.5s;}
.animate-reverse	{	animation-direction: reverse;}
.animate-fast	{	animation-duration: 0.3s;}
.animate-no-delay	{	animation-delay: 0s !important;}
.animate-delay-1	{	animation-delay: 0.5s;}
.animate-delay-2	{	animation-delay: 1s;}
.animate-delay-3	{	animation-delay: 1.5s;}
.animate-delay-4	{	animation-delay: 2s;}
.sr .card,
.sr .list-item,
.sr .sr-item,
.sr .item	{	visibility: hidden;}

@keyframes slideInLeft	{
	from	{	transform: translate3d(-75%, 0, 0);}
	to		{	transform: translate3d(0, 0, 0);}
}
.slideInLeft	{	animation-name: slideInLeft;}

@keyframes slideInRight	{
	from	{	transform: translate3d(75%, 0, 0);}
	to		{	transform: translate3d(0, 0, 0);}
}
.slideInRight	{	animation-name: slideInRight;}

@keyframes slideInUp	{
	from	{	transform: translate3d(0, 75%, 0);}
	to		{	transform: translate3d(0, 0, 0);}
}
.slideInUp	{	animation-name: slideInUp;}

@keyframes slideInDown	{
	from	{	transform: translate3d(0, -75%, 0);}
	to		{	transform: translate3d(0, 0, 0);}
}
.slideInDown	{	animation-name: slideInDown;}

@keyframes fadeIn	{
	from	{	opacity: 0;}
	to		{	opacity: 1;}
}
.fadeIn	{	animation-name: fadeIn;}

@keyframes fadeInLeft	{
	from	{	opacity: 0;	transform: translate3d(-75%, 0, 0);}
	to		{	opacity: 1;	transform: none;}
}
.fadeInLeft	{	animation-name: fadeInLeft;}

@keyframes fadeInRight	{
	from	{	opacity: 0;	transform: translate3d(75%, 0, 0);}
	to		{	opacity: 1;	transform: none;}
}
.fadeInRight	{	animation-name: fadeInRight;}

@keyframes fadeInUp	{
	from	{	opacity: 0;	transform: translate3d(0, 75%, 0);}
	to		{	opacity: 1;	transform: none;}
}
.fadeInUp	{	animation-name: fadeInUp;}

@keyframes fadeInDown	{
	from	{	opacity: 0;	transform: translate3d(0, -75%, 0);}
	to		{	opacity: 1;	transform: none;}
}
.fadeInDown	{	animation-name: fadeInDown;}


/*	Aside	***********************************	*/
.aside	{
	opacity: 1 !important;
	display: -ms-flexbox !important;
	display: flex !important;
	position: relative;
	z-index: 1000;
}
.aside.show	{
	width: 100% !important;
	top: 0;
	bottom: 0;
}
.aside.show > *	{	left: 0;	transform: translate3d(0, 0, 0);}
.aside > *	{	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);}
.aside > .modal-dialog	{
	margin: 0;
	max-width: inherit;
	pointer-events: inherit;
}
.aside.aside-right > *	{	right: 0;	left: auto;}
.aside.aside-right.show > *	{	transform: translate3d(0%, 0, 0) !important;}
.aside-deck	{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-align: end;
	align-items: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	position: fixed;
	right: 0;
	bottom: 0;
	max-height: 80vh;
	z-index: 1050;
}

@media (max-width: 1199.98px)	{
	.aside-lg	{
		display: none;
		opacity: 0;
		position: fixed !important;
		z-index: 1050 !important;
		left: 0;
	}
	.aside-lg > *	{
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		max-width: 280px !important;
		transform: translate3d(-100%, 0, 0);
	}
	.aside-lg ~ *	{	width: 100%;}
	.aside-lg.aside-right > *	{	transform: translate3d(100%, 0, 0);}
}

@media (max-width: 991.98px)	{
	.aside-md	{
		display: none;
		opacity: 0;
		position: fixed !important;
		background: transparent !important;
		z-index: 1050 !important;
	}
	.aside-md > *	{
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		max-width: 280px !important;
		transform: translate3d(-100%, 0, 0);
	}
	.aside-md ~ *	{	width: 100%;}
	.aside-md.aside-right > *	{	transform: translate3d(100%, 0, 0);}
}

@media (max-width: 767.98px)	{
	.aside-sm	{
		display: none;
		opacity: 0;
		background: transparent !important;
		position: fixed !important;
		z-index: 1050 !important;
	}
	.aside-sm > *	{
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		max-width: 280px !important;
		transform: translate3d(-100%, 0, 0);
	}
	.aside-sm ~ *	{	width: 100%;}
	.aside-sm.aside-right > *	{	transform: translate3d(100%, 0, 0);}
}


/*	Avatar	***********************************	*/
.avatar	{
	position: relative;
	line-height: 1;
	border-radius: 500px;
	white-space: nowrap;
	font-weight: bold;
	border-radius: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-radius: 500px;
	box-shadow: 1px 2px 4px 0px rgba(50, 50, 50, 0.35);
}
.avatar img	{	border-radius: inherit;	width: 100%;}
.avatar.w-32 .avatar-status	{	margin: 0px;}
.avatar.w-48 .avatar-status	{	margin: 2px;}
.avatar.w-56 .avatar-status	{	margin: 3px;}
.avatar.w-64 .avatar-status	{	margin: 4px;}
.avatar.w-96 .avatar-status	{	margin: 9px;}
.avatar.w-128 .avatar-status	{	margin: 14px;}
.avatar .avatar-status	{	position: absolute;	left: 0;	top: 0;	z-index: 1;}
.avatar-status	{
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 1px;
	border-width: 2px;
	border-style: solid;
	border-radius: 100%;
	border-color: #fff;
	background-color: #fff;
}
.bg-dark .avatar-status	{	border-color: #1c233f !important;}
.avatar-status.no-border	{
	width: 8px;
	height: 8px;
	margin: 2px;
	border-color: rgba(0, 0, 0, 0.1);
}
.avatar-status.avatar-center	{
	top: 50%;
	margin: 0;
	margin-top: -4px;
}
.avatar-status.avatar-center + img	{	margin: 0 14px 0 24px;	width: auto;}
.avatar-status.avatar-top	{	left: 0;	top: 0;}
.avatar-status.avatar-right	{	left: auto;	top: 0;	right: 0;}
.avatar-status.avatar-bottom	{	left: auto;	top: auto;	bottom: 0;	right: 0;}
.avatar-status.avatar-left	{	left: auto;	top: auto;	bottom: 0;}
.avatar-status.on	{	background-color: #31c971;}
.avatar-status.off	{	background-color: #f5f5f6;}
.avatar-status.away	{	background-color: #f4c414;}
.avatar-status.busy	{	background-color: #f54394;}
.avatar-group	{
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.avatar-group .avatar	{	position: relative;}
.avatar-group .avatar + .avatar	{	margin-left: -0.25rem;}
.avatar-group .avatar:hover,
.avatar-group .avatar:active,
.avatar-group .avatar.active	{	z-index: 1;}
.avatar-group.avatar-column .avatar	{	margin: 0.25rem;}


/*	chat	***********************************	*/
.chat-item	{
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 1.5rem;
}
.chat-item > *	{
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}
[data-class="alt"].chat-item,
.chat-item.alt	{
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
[data-class="alt"].chat-item .chat-body,
.chat-item.alt .chat-body	{
	-ms-flex-align: end;
	align-items: flex-end;
}
[data-class="alt"].chat-item .chat-date,
.chat-item.alt .chat-date	{
	text-align: right;
}
.chat-body	{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: start;
	align-items: flex-start;
}
.chat-content	{
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: .75rem 1rem;
	margin-bottom: .25rem;
}
.chat-date	{
	opacity: 0.5;
	font-size: 0.8em;
	display: block;
}


/*	Checkbox and Radio	***********************************	*/
.ui-check	{
	position: relative;
	cursor: pointer;
}
.ui-check input	{
	opacity: 0;
	position: absolute;
	z-index: -1;
}
.ui-check input:checked + i	{
	background-color: #448bff;
	box-shadow: none;
}
.ui-check input:checked + i:before	{
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 6px;
	height: 6px;
	background-color: #fff;
}
.ui-check input:checked + span .active	{	display: inherit;}
.ui-check input[type="radio"] + i,
.ui-check input[type="radio"] + i:before	{	border-radius: 50%;}
.ui-check input[type="checkbox"]:checked + i:before	{
	transform: translate(-50%, -65%) rotate(-45deg);
	background-color: transparent;
	width: 8px;
	height: 5px;
	border-width: 0 0 2px 2px;
	border-color: #fff;
	border-style: solid;
}
.ui-check input[disabled] + i,
fieldset[disabled] .ui-check input + i	{	border-color: rgba(135, 150, 165, 1);	opacity: 0.5;}
.ui-check input[disabled] + i:before,
fieldset[disabled] .ui-check input + i:before	{	background-color: rgba(135, 150, 165, 0.35);}
.ui-check i	{
	width: 14px;
	height: 14px;
	line-height: 1;
	box-shadow: 0 0 0 1px rgba(135, 150, 165, 0.5);
	border-radius: 4px;
	display: inline-block;
	vertical-align: middle;
	background-clip: padding-box;
	position: relative;
	left: 0;
	margin-right:.45rem;
}
.ui-check i:before	{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0px;
	height: 0px;
	background-color: transparent;
	border-radius: 1px;
}
.ui-check.is-invalid i	{	box-shadow: inset 0 0 0 2px #f54394;}
.ui-check.is-valid i	{	background-color: #31c971;}
.ui-check span { /* margin-left: -20px; */}
.ui-check span .active	{	display: none;}
.ui-check.ui-check-color i	{	box-shadow: none;}
.ui-check.ui-check-color input:checked + i:before	{	background-color: #fff;}
.ui-check.ui-check-rounded i	{	border-radius: 50%;}
.ui-check-md input:checked + i:before	{	width: 8px;	height: 8px;}
.ui-check-md input[type="checkbox"]:checked + i:before	{	width: 12px;	height: 6px;}
.ui-check-md i	{	width: 20px;	height: 20px;}
.ui-check-lg input:checked + i:before	{	width: 10px;	height: 10px;}
.ui-check-lg input[type="checkbox"]:checked + i:before	{	width: 14px;	height: 8px;	border-width: 0 0 3px 3px;}
.ui-check-lg i	{	width: 24px;	height: 24px;}
.disabled .ui-check { color: #999999;}


/*	Dark	***********************************	*/
.bg-dark body	{	color: #b9c0d3;}
.bg-dark h1,
.bg-dark .h1,
.bg-dark h2,
.bg-dark .h2,
.bg-dark h3,
.bg-dark .h3,
.bg-dark h4,
.bg-dark .h4,
.bg-dark h5,
.bg-dark .h5,
.bg-dark h6,
.bg-dark .h6,
.bg-dark .text-dark,
.bg-dark .text-color	{	color: inherit;}
.bg-dark .btn-white,
.bg-dark .card,
.bg-dark .block,
.bg-dark .list-group,
.bg-dark .ui-switch i:before,
.bg-dark .table-theme tbody td	{	color: #b9c0d3;	background-color: #1c233f;}
.bg-dark .dropdown-menu	{	color: inherit;	border-color: transparent;	background-color: #1f2746 !important;}
.bg-dark .bg-light	{	color: #b9c0d3 !important;	background-color: #161d33 !important;}
.bg-dark .btn:not([class*="btn-"]),
.bg-dark .btn.btn-icon.no-bg	{	color: inherit;}
.bg-dark .text-color	{	color: #b9c0d3;}
.bg-dark .text-muted,
.bg-dark .col-form-label	{	color: #838aa0 !important;}
.bg-dark .bg-white,
.bg-dark .bg-body	{	background: #192039 !important;}
.bg-dark .form-control	{	background-color: transparent;}
.bg-dark .input-group-btn .btn	{	background-color: rgba(160, 175, 185, 0.15);}
.bg-dark .table-theme tbody td	{	box-shadow: none !important;}
.bg-dark .list-item	{	border-top: none !important;}
.bg-dark .navbar-brand,
.bg-dark .text-highlight	{	color: #fff !important;}
.bg-dark .card-header,
.bg-dark .card-footer,
.bg-dark .b-a,
.bg-dark .b-l,
.bg-dark .b-r,
.bg-dark .b-t,
.bg-dark .b-b	{	border-color: #1e2645;}
.bg-dark .dropdown-divider	{	border-color: #20294a;}


/*	Colors	***********************************	*/
.bg-primary	{	color: #ffffff !important;}
.bg-primary-lt	{	color: #116bff !important;	background-color: #e1ecff !important;}
.bg-primary-lt:hover,
.bg-primary-lt:focus,
.bg-primary-lt.active	{color: #fff !important;	background-color: #448bff !important;}
.bg-primary--lt	{	color: #5e676f !important;	background-color: #e1ecff !important;}
.gd-primary	{
	color: #fff;
	border: none;
	background: #448bff linear-gradient(45deg, #448bff, #44e9ff);
}
.active > .active-primary	{
	color: #448bff !important;
	opacity: 1 !important;
	fill: currentColor;
}
.active > .active-bg-primary	{	color: #ffffff !important;	background-color: #448bff !important;}
.nav-active-text-primary .nav-link.active,
.nav-active-text-primary .nav-item.active > a,
.nav-active-text-primary .nav > li.active > a,
.nav-active-text-primary .nav-sub > li.active > a	{	color: #FFFFFF !important;	font-weight: bold;}
.nav-active-primary .nav-link.active,
.nav-active-primary .nav-item.active > a,
.nav-active-primary .nav > li.active > a	{	color: #ffffff !important;	background-color: #448bff !important;}
.bg-secondary	{	color: #ffffff !important;}
.bg-secondary-lt	{	color: #3e455a !important;	background-color: #e3e5e9 !important;}
.bg-secondary-lt:hover,
.bg-secondary-lt:focus,
.bg-secondary-lt.active	{	color: #fff !important;	background-color: #535c78 !important;}
.bg-secondary--lt	{	color: #5e676f !important;	background-color: #e3e5e9 !important;}
.gd-secondary	{
	color: #fff;
	border: none;
	background: #535c78 linear-gradient(45deg, #535c78, #536f78);
}
.active > .active-secondary	{
	color: #535c78 !important;
	opacity: 1 !important;
	fill: currentColor;
}
.active > .active-bg-secondary	{	color: #ffffff !important;	background-color: #535c78 !important;}
.nav-active-text-secondary .nav-link.active,
.nav-active-text-secondary .nav-item.active > a,
.nav-active-text-secondary .nav > li.active > a,
.nav-active-text-secondary .nav-sub > li.active > a	{	color: #535c78 !important;}
.nav-active-secondary .nav-link.active,
.nav-active-secondary .nav-item.active > a,
.nav-active-secondary .nav > li.active > a	{	color: #ffffff !important;	background-color: #535c78 !important;}
.bg-success	{	color: #ffffff !important;}
.bg-success-lt	{	color: #27a05a !important;	background-color: #def6e8 !important;}
.bg-success-lt:hover,
.bg-success-lt:focus,
.bg-success-lt.active	{	color: #fff !important;	background-color: #31c971 !important;}
.bg-success--lt	{	color: #5e676f !important;	background-color: #def6e8 !important;}
.gd-success	{
	color: #fff;
	border: none;
	background: #31c971 linear-gradient(45deg, #31c971, #3dc931);
}
.active > .active-success	{
	color: #31c971 !important;
	opacity: 1 !important;
	fill: currentColor;
}
.active > .active-bg-success	{	color: #ffffff !important;	background-color: #31c971 !important;}
.nav-active-text-success .nav-link.active,
.nav-active-text-success .nav-item.active > a,
.nav-active-text-success .nav > li.active > a,
.nav-active-text-success .nav-sub > li.active > a	{	color: #31c971 !important;}
.nav-active-success .nav-link.active,
.nav-active-success .nav-item.active > a,
.nav-active-success .nav > li.active > a	{	color: #ffffff !important;	background-color: #31c971 !important;}
.bg-info	{	color: #ffffff !important;}
.bg-info-lt	{	color: #1094b5 !important;	background-color: #d9f4fb !important;}
.bg-info-lt:hover,
.bg-info-lt:focus,
.bg-info-lt.active	{	color: #fff !important;	background-color: #14bae4 !important;}
.bg-info--lt	{	color: #5e676f !important;	background-color: #d9f4fb !important;}
.gd-info	{
	color: #fff;
	border: none;
	background: #14bae4 linear-gradient(45deg, #14bae4, #14e4a6);
}
.active > .active-info	{
	color: #14bae4 !important;
	opacity: 1 !important;
	fill: currentColor;
}
.active > .active-bg-info	{	color: #ffffff !important;	background-color: #14bae4 !important;}
.nav-active-text-info .nav-link.active,
.nav-active-text-info .nav-item.active > a,
.nav-active-text-info .nav > li.active > a,
.nav-active-text-info .nav-sub > li.active > a	{	color: #14bae4 !important;}
.nav-active-info .nav-link.active,
.nav-active-info .nav-item.active > a,
.nav-active-info .nav > li.active > a	{	color: #ffffff !important;	background-color: #14bae4 !important;}
.bg-warning	{	color: #212529 !important;}
.bg-warning-lt	{	color: #cba20a !important;	background-color: #fdf6d9 !important;}
.bg-warning-lt:hover,
.bg-warning-lt:focus,
.bg-warning-lt.active	{	color: #fff !important;	background-color: #f4c414 !important;}
.bg-warning--lt	{	color: #5e676f !important;	background-color: #fdf6d9 !important;}
.gd-amuse {
	color: #fff;
	border: none;
	background: #091C44 linear-gradient(to bottom, #091c44 0%,#207cca 4%,#207cca 4%,#091c44 99%);
}
.page-header.gd-amuse {border-top: 5px solid #091C44;}
.active > .active-warning	{
	color: #f4c414 !important;
	opacity: 1 !important;
	fill: currentColor;
}
.active > .active-bg-warning	{	color: #212529 !important;	background-color: #f4c414 !important;}
.nav-active-text-warning .nav-link.active,
.nav-active-text-warning .nav-item.active > a,
.nav-active-text-warning .nav > li.active > a,
.nav-active-text-warning .nav-sub > li.active > a	{	color: #f4c414 !important;}
.nav-active-warning .nav-link.active,
.nav-active-warning .nav-item.active > a,
.nav-active-warning .nav > li.active > a	{	color: #ffffff !important;	background-color: #f4c414 !important;}
.bg-danger	{	color: #ffffff !important;}
.bg-danger-lt	{	color: #f21378 !important;	background-color: #fde1ee !important;}
.bg-danger-lt:hover,
.bg-danger-lt:focus,
.bg-danger-lt.active	{	color: #fff !important;	background-color: #f54394 !important;}
.bg-danger--lt	{	color: #5e676f !important;	background-color: #fde1ee !important;}
.gd-danger	{
	color: #fff;
	border: none;
	background: #f54394 linear-gradient(45deg, #f54394, #f543ed);
}
.active > .active-danger	{
	color: #f54394 !important;
	opacity: 1 !important;
	fill: currentColor;
}
.active > .active-bg-danger	{	color: #ffffff !important;	background-color: #f54394 !important;}
.nav-active-text-danger .nav-link.active,
.nav-active-text-danger .nav-item.active > a,
.nav-active-text-danger .nav > li.active > a,
.nav-active-text-danger .nav-sub > li.active > a	{	color: #f54394 !important;}
.nav-active-danger .nav-link.active,
.nav-active-danger .nav-item.active > a,
.nav-active-danger .nav > li.active > a	{	color: #ffffff !important;	background-color: #f54394 !important;}
.bg-light	{	color: #212529 !important;}
.bg-light-lt	{	color: #dadade !important;	background-color: #fdfdfe !important;}
.bg-light-lt:hover,
.bg-light-lt:focus,
.bg-light-lt.active	{	color: #fff !important;	background-color: #f5f5f6 !important;}
.bg-light--lt	{	color: #5e676f !important;	background-color: #fdfdfe !important;}
.gd-light	{
	color: #fff;
	border: none;
	background: #f5f5f6 linear-gradient(45deg, #f5f5f6, #f5f6f6);
}
.active > .active-light	{
	color: #f5f5f6 !important;
	opacity: 1 !important;
	fill: currentColor;
}
.active > .active-bg-light	{	color: #212529 !important;	background-color: #f5f5f6 !important;}
.nav-active-text-light .nav-link.active,
.nav-active-text-light .nav-item.active > a,
.nav-active-text-light .nav > li.active > a,
.nav-active-text-light .nav-sub > li.active > a	{	color: #f5f5f6 !important;}
.nav-active-light .nav-link.active,
.nav-active-light .nav-item.active > a,
.nav-active-light .nav > li.active > a	{	color: #5e676f !important;	background-color: #f5f5f6 !important;}
.bg-dark	{	color: #ffffff !important;}
.bg-dark-lt	{	color: #090c16 !important;	background-color: #dadbdf !important;}
.bg-dark-lt:hover,
.bg-dark-lt:focus,
.bg-dark-lt.active	{	color: #fff !important;	background-color: #192039 !important;}
.bg-dark--lt	{	color: #5e676f !important;	background-color: #dadbdf !important;}
.gd-dark	{
	color: #fff;
	border: none;
	background: #192039 linear-gradient(45deg, #192039, #193039);
}
.active > .active-dark	{
	color: #192039 !important;
	opacity: 1 !important;
	fill: currentColor;
}
.active > .active-bg-dark	{
	color: #ffffff !important;
	background-color: #192039 !important;
}
.nav-active-text-dark .nav-link.active,
.nav-active-text-dark .nav-item.active > a,
.nav-active-text-dark .nav > li.active > a,
.nav-active-text-dark .nav-sub > li.active > a	{	color: #192039 !important;}

.nav-active-dark .nav-link.active,
.nav-active-dark .nav-item.active > a,
.nav-active-dark .nav > li.active > a	{	color: #ffffff !important;	background-color: #192039 !important;}
.bg-light	{	color: inherit !important;	background-color: #f5f5f6;}
.bg-white	{	background-color: #fff;}
.bg--white	{	color: #5e676f;	background-color: #fff;}
.bg-warning	{	color: #fff !important;}
.bg-dark	{	color: #b9c0d3 !important;}
.bg-black	{	color: #fff;	background-color: #303030;}
.bg-white .fill	{	fill: #448bff;}
.bg-white-overlay	{	color: #fff;	background-color: rgba(255, 255, 255, 0.35);}
.bg-dark-overlay	{	color: #fff;	background-color: rgba(0, 0, 0, 0.35);}
.bg-img	{	background-size: cover;	background-position: 50% 50%;}
.gd-overlay	{
	background-color: transparent !important;
	background-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
	background-repeat: repeat-x;
}
.bg-clip	{	background-clip: padding-box;}
.bg-body	{	background-color: #f9f9fa;}
.bg_amuselogo	{
	background-image:url(../../assets/img/b3.jpg);
	background-size: 80px auto;
}
.no-bg		{	background: transparent !important;}


/*	Layout	***********************************	*/
.layout,
.layout-row,
.layout-column	{	display: -ms-flexbox;	display: flex;}
.layout-row	{	-ms-flex-direction: row;	flex-direction: row;}
.layout-row > .flex	{	min-width: 0;}
.layout-column	{	-ms-flex-direction: column;	flex-direction: column;}
.layout-column > .flex	{	min-height: 0;}

.flex	{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.no-shrink	{
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.no-grow	{
	-ms-flex-positive: 0;
	flex-grow: 0;
}
.page-header	{
	z-index: 1035 !important;
	transition: background-color 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.page-header.sticky ~ * .page-sidenav.sticky,
.page-header ~ * .fixed-content	{
	top: 77px;
	height: calc(100vh - 77px);
}

.page-header:not(.sticky).scroll-up	{
	position: fixed;
	left: 0;
	right: 0;
}
.page-sidenav	{
	position: relative;
	z-index: 1030 !important;
	min-width: 13.5rem;
	opacity: 1 !important;
}
.page-sidenav.sticky	{	height: 100vh;}
.is-fullscreen.layout-column,
.is-fullscreen.layout-row #content	{
	display: block;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.fixed	{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}
.sticky	{
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1020;
}
.sticky.sticky-bottom	{
	top: auto;
	bottom: -1px;
}

@media (min-width: 992px)	{
	.page-container,
	#content-body	{	max-width: 1140px; /*min-width: 1000px;*/	margin: 0 auto;}
	.page-sidenav	{	display: block !important;	background: #39444d;}
}

@media (max-width: 991.98px)	{
	body.layout-row	{	-ms-flex-direction: column;	flex-direction: column;}
	.page-sidenav	{
		width: 100% !important;
		height: 100% !important;
		top: 0 !important;
		position: fixed;
		z-index: 1050 !important;
		display: none;
		opacity: 0;
	}
	.bg-dark .page-sidenav,
	.page-sidenav	{	/*	background: transparent !important;	*/}
	.page-sidenav > *	{
		position: fixed;
		height: 100%;
		transition: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
		transform: translate3d(-100%, 0, 0);
		width: 17.5rem;
	}
	body.quiz .page-sidenav > * {	width: 6rem;}
	.page-sidenav.show > div	{	transform: translate3d(0, 0, 0);}
}

@media print	{
	.page-sidenav,
	.page-header	{	display: none !important;}
}


/*	List	***********************************	*/
.list	{
	padding-left: 0;
	padding-right: 0;
}
.list-item	{
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
}
.list-item.block .media	{
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.list-item.block .list-content	{	padding: 1rem;}
.list-content	{
	padding: 1rem 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	-ms-flex-pack: center;
	justify-content: center;
}
.list.list-row .list-item { border-bottom: 1px solid #EEEEEE;}
.list.list-row .list-item:last-child {border-bottom:none;}
.list.list-row .list-item .item-author { font-weight: bold; font-size: 0.945rem;}
.list.list-row .list-item .item-except { margin-top: 5px;}
.list-item.first-content {	margin: 0 0;}
.list-item.first-content .item-author h2 { font-size: 22px;}
.list-item.first-content .item-author span.item-except { font-weight: normal}
 p.tx-course {
	padding: 0;
	margin: 5px 0 8px 0;
	font-size: 0.80rem;
	color: #42a6f5;
	font-weight: normal;
}
p.tx-course span { color: #818894; display: inline-block;margin-right: 5px;}
.list-item.first-content .listsetinfo { margin-top: 30px;}
.list-item.first-content .listsetinfo p.playtime { float: left; background: #a4a9b0; padding:3px 7px; border-radius: 4px 4px; color: #FFFFFF;}
.list-item.first-content .listsetinfo p.playtime svg { margin-right: 5px; margin-top: -1px;}
.list-item.first-content .listsetinfo p.text-muted { float: right; font-size: 0.8rem; padding: 5px 10px 0 0;}
.list-body	{
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.list-footer	{
	margin-top: 0.5rem;
}
.list-title	{
	line-height: 1.4285714286;
	font-weight: 500;
	display: block;
	color: inherit;
}
.list-overlay .media,
.list-hover-overlay .media	{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: inherit;
}
.list-overlay .media:after,
.list-hover-overlay .media:after	{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0;
	border-radius: inherit;
	background-color: rgba(0, 0, 0, 0.25);
}
.list-overlay .list-content,
.list-hover-overlay .list-content	{
	position: relative;
	padding: 1rem;
	z-index: 1;
}
.list-overlay .list-body,
.list-hover-overlay .list-body	{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}
.list-overlay .list-body .list-title,
.list-hover-overlay .list-body .list-title	{	margin-top: auto;}
.list-hover-overlay:hover .media,
.list-hover-overlay:active .media,
.list-hover-overlay.active .media	{	display: block;}
.list-hover-overlay .media	{	display: none;}
.list-overlay,
.list-overlay-content,
.list-hover-overlay:hover,
.list-hover-overlay:active,
.list-hover-overlay.active	{	color: #fff !important;}
.list-overlay a:hover,
.list-overlay a:active,
.list-overlay-content a:hover,
.list-overlay-content a:active,
.list-hover-overlay:hover a:hover,
.list-hover-overlay:hover a:active,
.list-hover-overlay:active a:hover,
.list-hover-overlay:active a:active,
.list-hover-overlay.active a:hover,
.list-hover-overlay.active a:active	{	color: #fff;}
.list-overlay .text-muted:not(i),
.list-overlay-content .text-muted:not(i),
.list-hover-overlay:hover .text-muted:not(i),
.list-hover-overlay:active .text-muted:not(i),
.list-hover-overlay.active .text-muted:not(i)	{	color: rgba(255, 255, 255, 0.5) !important;}
.list-hover .media	{	color: #ffffff;}
.list-hover .list-body	{	padding-left: 0.5rem;	padding-right: 0.5rem;}
.list-hover:hover,
.list-hover.active	{	background-color: #14bae4 !important;}
.list-hover:hover a:not(.dropdown-item),
.list-hover:hover a:not(.dropdown-item):hover,
.list-hover:hover a:not(.dropdown-item):active,
.list-hover.active a:not(.dropdown-item),
.list-hover.active a:not(.dropdown-item):hover,
.list-hover.active a:not(.dropdown-item):active	{	color: #ffffff;}
.list-hover:hover .text-muted:not(i),
.list-hover.active .text-muted:not(i)	{	color: rgba(255, 255, 255, 0.5) !important;}
.list-hover:hover .media:after,
.list-hover.active .media:after	{
	position: relative;
	z-index: 1;
	border-radius: inherit;
	background-color: #14bae4;
	background: linear-gradient(180deg, rgba(20, 186, 228, 0.5), #14bae4);
}
.list-hover .media-action-overlay	{	background-color: transparent !important;}
.list-overlay-content	{	color: #fff;}
.list-overlay-content a:hover	{	color: #fff;}
.list-overlay-content .media:after	{
	background-color: rgba(0, 0, 0, 0.25);
	border-radius: inherit;
	position: relative;
	z-index: 1;
}
.list-overlay-content .list-content	{
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
}
.show-row	{	display: none !important;}
.list-row.list-row-12 > div:not(.list-item)	{	flex: 0 0 100%;	max-width: 100%;}
.list-row .list-item	{
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-align: center;
	align-items: center;
	padding:1rem 0.7rem 0.95rem 0.7rem;
}
.list-row .list-item > *	{	padding-left: 0.625rem;	padding-right: 0.625rem;}
.list-row .list-item .media	{	min-width: 6rem;	border-radius: inherit;	padding: 0;}
.list-row .list-item .list-content	{	padding: 0 1.25rem;	text-align: inherit !important;}
.list-row .list-item.first-content .media { min-width: 15rem;}
.list-row .show-row	{	display: block !important;}
.list-row .hide-row	{	display: none !important;}
.list-bordered .list-item	{	border-top: 1px solid rgba(160, 175, 185, 0.15);}
.list-bordered .list-item:first-child	{	border-top: none;}
.list-index	{	counter-reset: li;}
.list-index .list-item:before	{
	content: counter(li);
	counter-increment: li;
	width: 3rem;
	padding: 0;
	font-weight: 600;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

@media (min-width: 576px)	{
	.list-grouped	{
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}
	.list-grouped > div	{
		display: -ms-flexbox;
		display: flex;
	}
	.list-grouped > div > .list-item	{
		-ms-flex-item-align: stretch;
		align-self: stretch;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
	.list-grouped > div > .list-item .list-content	{
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.list-grouped.no-gutters > div:not(:first-child):not(:last-child):not(:only-child)	{	border-radius: 0;}
	.list-grouped.no-gutters > div:first-child	{	border-radius: 0.25rem 0 0 0.25rem;}
	.list-grouped.no-gutters > div:first-child .media	{	border-radius: inherit;}
	.list-grouped.no-gutters > div:last-child	{	border-radius: 0 0.25rem 0.25rem 0;}
	.list-grouped.no-gutters > div:last-child .media	{	border-radius: inherit;}
	.list-grouped.no-gutters > div .list-item	{	border-radius: inherit;}}



/*	loading	***********************************	*/
.loading	{
	width: 24px;
	height: 24px;
	padding: 0;
	border-radius: 50%;
	position: relative;
}
.loading:before,
.loading:after	{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border: 3px solid currentColor;
	border-radius: 50%;
}
.loading:before	{	opacity: 0.3;}
.loading:after	{
	opacity: 0.75;
	border-color: transparent;
	border-left-color: currentColor;
	animation: loading 1s linear infinite;
}
.js-Pjax-remove	{	position: absolute;}
.js-Pjax-onswitch	{	position: relative;	overflow: hidden;}
.page-loading	{	pointer-events: none;}
.page-loading a,
.page-loading	{	pointer-events: none;	cursor: wait;}
.page-loading .loading-spin	{	animation: loading 1s linear infinite;}

@keyframes loading	{
	0%	{	transform: rotate(0deg);}
	50%	{	transform: rotate(180deg);}
	100%{	transform: rotate(360deg);}
}


/*	Media	***********************************	*/
.media	{
	position: relative;
	display: block;
	padding: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-radius: inherit;
}
.media:after	{
	content: '';
	display: block;
	padding-top: 100%;
}
.media:not(:first-child):not(:last-child):not(:only-child)	{
	border-radius: 0;
}
.media-circle .media	{
	border-radius: 500px;
}
.media-circle .media .media-content:before	{
	width: 50%;
	left: 25%;
}
.media-overlay	{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem 1rem;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
}
.media-overlay.overlay-top	{	bottom: auto;}
.media-overlay.overlay-bottom	{	top: auto;}
.media-action	{
	position: absolute;
	z-index: 3;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.media-action.active	{	opacity: 1;}
.media-action.media-action-overlay	{
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	color: #fff;
	padding: 0 5%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	border-radius: inherit;
}
.media-action.media-action-overlay .btn	{
	-ms-flex-negative: 0;
	flex-shrink: 0;
	color: inherit;
}
.list-item:hover .media-action,
.list-item:active .media-action,
.media:hover .media-action,
.media:active .media-action,
.active > .media .media-action	{
	opacity: 1;
	pointer-events: initial;
}
.media iframe,
.media-content	{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 0;
	border-radius: inherit;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-color: rgba(120, 120, 120, 0.1);
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.media-content:before	{
	background-position: inherit 100%;
    content: '';
	position: absolute;
	height: 10%;
	width: 90%;
	left: 5%;
	bottom: 0;
	filter: blur(15px);
    background-color: inherit;
    background-image: inherit;
    background-repeat: inherit;
    background-attachment: inherit;
}
.media-content > img { width: 100%; height: auto;}
.circle .media-content:before	{	width: 40%;	left: 30%;}
.media-21x9:after	{	padding-top: 42.857143%;}
.media-16x9:after	{	padding-top: 56.25%;}
.media-4x3:after	{	padding-top: 75%;}
.media-2x3:after	{	padding-top: 150%;}
.media-3x4:after	{	padding-top: 133.33333%;}
.media-1x2:after	{	padding-top: 200%;}
.media-2x1:after	{	padding-top: 50%;}
.media-3x1:after	{	padding-top: 33%;}
.media-4x1:after	{	padding-top: 25%;}
.media-1-4:after	{	padding-top: 25vh;	min-height: 10rem;}
.media-1-3:after	{	padding-top: 33vh;	min-height: 12.5rem;}
.media-1-2:after	{	padding-top: 50vh;	min-height: 15rem;}


/*	Nav	***********************************	*/
#aside .sidenav	{ background-color: #39444d;}
#aside .sidenav ul a	{	color:#bac1c7;}
#aside .sidenav .nav li	{	border-bottom:1px solid #2f383f;}

.sidenav {
	margin: 0;
	pointer-events: inherit;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}
.sidenav ul		{	padding-left: 0;	padding-right: 0;	list-style: none;}
.sidenav ul a	{	color: inherit;}
.sidenav .nav		{	border: inherit;	display: block;}
.sidenav .nav li	{	border: inherit;	position: relative;}
.sidenav .nav li .nav-badge .badge-circle	{	color: #29353e;}
.sidenav .nav > li:first-child {	padding-top:10px;}
.sidenav .nav li li a			{	font-size: 0.8rem;	line-height: 2rem;	padding-left: 3.652rem;}
.sidenav .nav li li a .nav-text	{	padding: 0.4375rem 0; line-height: 1.3542rem}
.sidenav .nav li li li a		{	padding-left: 4rem;}
.sidenav .nav li li li li a		{	padding-left: 5rem;}
.sidenav .nav li > a	{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	padding: 0 0.5rem;
	line-height: 3rem;
	position: relative;
	font-size: 0.9rem;
}
.sidenav .nav li.active	> ul	{	margin-bottom: 10px;}
.sidenav .nav li.active		{	background:#2f383f;}
.sidenav .nav li.active > a	{	background-color: transparent;}
.sidenav .nav li.active > a .nav-caret:after	{	transform: rotate(225deg);	margin-bottom: 0px;}
.sidenav .nav-header	{	padding: 1rem 1rem 0.5rem 1rem;	font-size: 85%;}
.sidenav .nav-header:after	{	display: none;}
.sidenav .navbar-brand	{	float: none;	margin-right: 0;}
.sidenav .flex	{	overflow: auto;	-webkit-overflow-scrolling: touch;}
.nav-fold	{
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-align: center;
	align-items: center;
}
.nav-text	{
	margin: 0 .5rem;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	line-height: 1.75rem;
	transition: opacity .15s ease-in-out;
	padding: 0.6875rem 0;
}
.navbar .nav-text	{
	line-height: 1;
	display: inline-block;
	padding: 0;
}
.navbar .nav-text span.text-xs	{	margin-top: 0.25rem;}
.nav-icon	{
	font-size: 1rem;
	width:3.125rem;
	height:3.125rem;
	border-radius: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	opacity: 0.65;
}
a:hover > .nav-icon,
a:active > .nav-icon,
.active > a > .nav-icon	{	opacity: 1;	color: #38a3f7;}
.nav-icon.no-fade	{	opacity: 1;}
.nav-icon i	{
	line-height: 1;
	max-width: 20px;
	max-height: 20px;
}
.nav-icon i svg,
.nav-icon i img	{
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.navbar .nav-icon	{	margin-right: 0.5rem;}
.nav-badge	{	font-style: normal;	z-index: 1;	margin: 0 .5rem;}
.nav-caret	{	width: 1rem;	opacity: 0.45;	position: relative;}
.nav-caret:after	{
	content: '';
	width: 7px;
	height: 7px;
	display: inline-block;
	border-width: 1px;
	border-style: solid;
	border-color: transparent currentColor currentColor transparent;
	transform: rotate(-45deg);
	margin-bottom: 0px;
}
.nav-sub	{
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease 0s;
}

@media (prefers-reduced-motion: reduce)	{
	.nav-sub	{	transition: none;}
}

.active > .nav-sub,
.open > .nav-sub	{	max-height: 50rem;}
.nav-border .nav > li.active:after	{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	border-color: inherit;
	border-width: 3px;
	border-left-style: solid;
}
.nav-border.right .nav > li.active:after	{	right: 0;}
.nav-stacked .nav > li:not(.nav-header)	{	padding: 0.15rem 0.75rem;}
.nav-stacked .nav > li > a	{	line-height: 2rem;	padding: 0 0.5rem;}
.nav-stacked .nav > li > a .nav-icon	{	width: 2rem;	height: 2rem;}
.nav-stacked .nav > li > a .nav-text	{	padding: 0.4375rem 0;}
.nav-stacked .nav > li > a:before	{
	left: 0.5rem;
	border-radius: 3px;
	width: 2rem;
	border-width: 1rem;
}.nav-stacked .nav > li li a	{	padding-left: 2.5rem;}
.nav-stacked .nav > li li li a	{	padding-left: 3.5rem;}
.nav-stacked .nav > li li li li a	{	padding-left: 4.5rem;}
.nav-stacked .nav li a	{	border-radius: 3px;}


/*	Nav folded	***********************************	*/
@media (min-width: 992px)	{
	.folded	{	width: 4.5rem;	min-width: 0;}
	.folded.md	{	width: 5.5rem;	min-width: 0;}
	.folded .nav-fold	{	-ms-flex-pack: center !important;	justify-content: center !important;}
	.folded .hidden-folded	{	display: none !important;}
	.folded .nav li ul	{	display: none;}
	.folded .nav > li > a .nav-caret,
	.folded .nav > li > a .nav-text	{	display: none;}
	.folded .nav > li > a .nav-badge	{	position: absolute;	right: 10px;}
	.folded .nav > li > a .nav-icon	{
		float: none;
		line-height: 2.5rem;
		font-size: 1rem;
		margin: 0 auto;
		position: relative;
		width: 2.5rem;
		height: 2.5rem;
	}
	.folded .nav > li > a:before	{	left: 0;}
	.folded .show-text .nav > li > a	{
		padding-top: 0.25rem;
		padding-bottom: 0.25rem;
		display: block;
	}
	.folded .show-text .nav > li > a .nav-text	{
		display: block;
		margin-top: -1rem;
		font-size: 0.8em;
		text-align: center;
	}
	.folded .navbar-brand	{	margin: 0 auto;}
	.folded .nav-stacked .nav > li a	{	padding: 0;}
	.folded .nav-stacked .nav > li:not(.nav-header)	{	padding: 0.25rem 1rem;}
	.folded.nav-expand:hover > *,
	.folded.nav-expand:focus > *,
	.folded.nav-expand.active > *	{	width: 13.5rem;}
	.folded.nav-expand:hover .nav-fold,
	.folded.nav-expand:focus .nav-fold,
	.folded.nav-expand.active .nav-fold	{	-ms-flex-pack: start !important;	justify-content: start !important;}
	.folded.nav-expand:hover .hidden-folded,
	.folded.nav-expand:focus .hidden-folded,
	.folded.nav-expand.active .hidden-folded	{	display: block !important;}
	.folded.nav-expand:hover .hidden-folded.d-inline,
	.folded.nav-expand:focus .hidden-folded.d-inline,
	.folded.nav-expand.active .hidden-folded.d-inline	{	display: inline-block !important;}
	.folded.nav-expand:hover .nav li ul,
	.folded.nav-expand:focus .nav li ul,
	.folded.nav-expand.active .nav li ul	{	display: inherit;}
	.folded.nav-expand:hover .nav > li > a,
	.folded.nav-expand:focus .nav > li > a,
	.folded.nav-expand.active .nav > li > a	{	display: -ms-flexbox;	display: flex;}
	.folded.nav-expand:hover .nav > li > a .nav-caret,
	.folded.nav-expand:hover .nav > li > a .nav-text,
	.folded.nav-expand:focus .nav > li > a .nav-caret,
	.folded.nav-expand:focus .nav > li > a .nav-text,
	.folded.nav-expand.active .nav > li > a .nav-caret,
	.folded.nav-expand.active .nav > li > a .nav-text	{	display: block;}
	.folded.nav-expand:hover .nav > li > a .nav-badge,
	.folded.nav-expand:focus .nav > li > a .nav-badge,
	.folded.nav-expand.active .nav > li > a .nav-badge	{	position: static;}
	.folded.nav-expand:hover .nav > li > a .nav-icon,
	.folded.nav-expand:focus .nav > li > a .nav-icon,
	.folded.nav-expand.active .nav > li > a .nav-icon	{
		float: left;
		width: 2.5rem;
		height: 2.5rem;
		line-height: 2.5rem;
		font-size: 1rem;
	}
	.folded.nav-expand:hover .show-text .nav > li > a .nav-text,
	.folded.nav-expand:focus .show-text .nav > li > a .nav-text,
	.folded.nav-expand.active .show-text .nav > li > a .nav-text	{
		text-align: inherit;
		font-size: inherit;
		margin-top: 0;
	}
	.folded.nav-expand:hover .navbar-brand,
	.folded.nav-expand:focus .navbar-brand,
	.folded.nav-expand.active .navbar-brand	{	margin: 0;}
	.folded.nav-expand:hover .nav-stacked .nav > li:not(.nav-header),
	.folded.nav-expand:focus .nav-stacked .nav > li:not(.nav-header),
	.folded.nav-expand.active .nav-stacked .nav > li:not(.nav-header)	{	padding: 0.15rem 0.75rem;}
	.folded.nav-expand:hover .nav-stacked .nav > li > a,
	.folded.nav-expand:focus .nav-stacked .nav > li > a,
	.folded.nav-expand.active .nav-stacked .nav > li > a	{	padding: 0 0.5rem;}
	.folded.nav-expand:hover .nav-stacked .nav > li > a:before,
	.folded.nav-expand:focus .nav-stacked .nav > li > a:before,
	.folded.nav-expand.active .nav-stacked .nav > li > a:before	{
		left: 0.5rem;
		width: 2rem;
		border-width: 1rem;
	}
	.folded.nav-expand:hover .nav-stacked .nav > li > a .nav-icon,
	.folded.nav-expand:focus .nav-stacked .nav > li > a .nav-icon,
	.folded.nav-expand.active .nav-stacked .nav > li > a .nav-icon	{
		width: 2rem;
		height: 2rem;
		line-height: 2rem;
	}
	.folded.nav-expand .sidenav	{
		transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
		backface-visibility: hidden;
	}
}

@media (min-width: 992px) and (prefers-reduced-motion: reduce)	{
	.folded.nav-expand .sidenav	{	transition: none;}
}

@media (min-width: 992px)	{
	.nav-dropup .scrollable,
	.nav-dropup > *,
	.folded.nav-dropdown .scrollable,
	.folded.nav-dropdown > *	{	overflow: visible !important;}
	.nav-dropup .nav > li:hover > ul,
	.nav-dropup .nav > li:focus > ul,
	.folded.nav-dropdown .nav > li:hover > ul,
	.folded.nav-dropdown .nav > li:focus > ul	{	display: block;}
	.nav-dropup .nav > li > ul,
	.folded.nav-dropdown .nav > li > ul	{
		display: none;
		overflow: visible;
		max-height: 999px;
		background-color: #fff;
		border-radius: 2px;
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
		position: absolute;
		left: 100%;
		top: 0;
		padding: 6px 0;
	}
	.nav-dropup .nav > li > ul a,
	.folded.nav-dropdown .nav > li > ul a	{
		padding-left: 16px !important;
		padding-right: 16px !important;
		min-width: 160px;
	}
	.nav-dropup .nav > li > ul li.active ul,
	.folded.nav-dropdown .nav > li > ul li.active ul	{	display: block;}
	.nav-dropup .nav > li > ul .nav-text,
	.folded.nav-dropdown .nav > li > ul .nav-text	{	padding: 8px 0 !important;}
	.nav-dropup .nav > li .nav-mega,
	.folded.nav-dropdown .nav > li .nav-mega	{	width: 360px;}
	.nav-dropup .nav > li .nav-mega > li,
	.folded.nav-dropdown .nav > li .nav-mega > li	{	width: 50%;	float: left;}
}


/*	Page	***********************************	*/
.page-bg	{
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 0;
	height: 50vh;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 0;
}
.page-bg:before	{
	content: '';
	background-size: cover;
	background-repeat: no-repeat;
	background-image: inherit;
	background-position: inherit;
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: 0.1;
}
.page-bg:after	{
	content: '';
	position: absolute;
	bottom: 0;
	height: 50%;
	width: 100%;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #f9f9fa);
	background-repeat: repeat-x;
}
.bg-dark .page-bg:before	{	opacity: 0.15;}
.bg-dark .page-bg:after	{
	background-image: linear-gradient(to bottom, transparent, #192039);
}
.cover	{
	background-size: cover;
	background-repeat: no-repeat;
	background-image: inherit;
	background-position: 50% 50%;
	position: relative;
}
.cover:after	{
	position: absolute;
	z-index: 0;
	content: '';
	height: 100%;
	width: 100%;
	top: 0;
	background-color: inherit;
	opacity: 0.65;
}
.cover.cover-gd:after	{	background-image: linear-gradient(to right, #14bae4, #448bff);}
.cover > *	{	position: relative;	z-index: 1;}
.swapimg	{
	background-size: cover;
	background-repeat: no-repeat;
	width: 50%;
	height: 100%;
}
.swapimg .handler	{
	cursor: move;
	position: absolute;
	top: -2.5%;
	right: -1.5rem;
	height: 105%;
	width: 3rem;
}
.swapimg .handler:after	{
	content: "";
	position: absolute;
	height: 100%;
	width: 50%;
	border-right: 1px solid rgba(135, 150, 165, 0.1);
}
.browser	{
	position: relative;
	background-color: #fff;
	border: 1px solid rgba(135, 150, 165, 0.1);
	background-clip: padding-box;
	padding-top: 28px;
	border-radius: 4px;
	overflow: hidden;
}
.browser:before	{
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 8px rgba(135, 150, 165, 0.1), 14px 0 rgba(135, 150, 165, 0.1), 28px 0 rgba(135, 150, 165, 0.1);
	display: block;
	position: absolute;
	top: 10px;
	left: 8px;
}
.browser.colored:before	{	box-shadow: inset 0 0 0 8px #fc605c, 14px 0 #fdbc40, 28px 0 #34c84a;}


/*	Plugins	***********************************	*/
/*
.fc-toolbar	{
	margin-bottom: 0 !important;
	padding: 0.75rem 2rem;
}
.fc-toolbar h2	{
	font-size: 0.8rem;
	padding-top: 8px;
	margin-right: 8px;
	color: inherit;
}
.fc-toolbar button	{
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	color: inherit;
	text-shadow: none;
	box-shadow: none;
}
.fc-head th	{	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);}
.bg-dark .fc-head th	{	background-color: #192039;	color: inherit;}
.fc-event	{
	border-width: 0;
	padding: 5px 8px;
	color: inherit;
}
.fc-event:hover	{	color: inherit;}
.fc-event .fc-bg	{	background-color: transparent;}
.fc td,
.fc tr,
.fc th	{	border-color: rgba(160, 175, 185, 0.15);}
.fc .popover	{	min-width: 220px;}
.fc-content .fc-time	{
	display: block;
	margin-bottom: 0.25rem;
	font-weight: normal !important;
}
.fc-content .fc-title	{	font-weight: 600;}
.fc-day-number	{	font-size: 0.8em;	opacity: 0.5;}
td.fc-today	{	background: transparent !important;}
.fc-today .fc-day-number	{
	background: #448bff;
	color: white;
	opacity: 1;
	padding: 0px 3px;
}
.fc-today.fc-widget-header	{	color: #448bff !important;}
.fc-divider	{	border: none !important;	background-color: rgba(160, 175, 185, 0.15) !important;}
.fc-axis span	{	opacity: 0.6;	font-size: 11px;}
.fc-head-container.fc-widget-header,
.fc-body > tr > .fc-widget-content	{
	border-left-width: 0 !important;
	border-right-width: 0 !important;
}
.fc-widget-header th	{
	text-align: left !important;
	padding: 12px;
}
.fc-widget-header .fc-week-title	{
	display: block;
	font-weight: 400;
	font-size: 11px;
}
.fc-other-month	{
	background-image: linear-gradient(45deg, rgba(120, 130, 140, 0.02) 25%, transparent 25%, transparent 50%, rgba(120, 130, 140, 0.02) 50%, rgba(120, 130, 140, 0.02) 75%, transparent 75%, transparent);
	background-size: 1.5rem 1.5rem;
}
.fc .fc-axis	{	border: 0;}
.fc-header-toolbar,
.fc-head-container.fc-widget-header	{	background-color: #fff;}
.bg-dark .fc-header-toolbar,
.bg-dark .fc-head-container.fc-widget-header	{	background-color: transparent;}
.fc-scroller	{	overflow: visible !important;}
*/


/*	JQVmap	***********************************	*/
div.jqvmap-zoomin,
div.jqvmap-zoomout	{
	width: 18px;
	height: 18px;
	background-color: #fff;
	color: #666;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


/*	Charts	***********************************	*/
.ct-label	{
	color: rgba(130, 140, 155, 0.65);
	fill: rgba(130, 140, 155, 0.65);
}
.ct-grid	{	stroke: rgba(160, 175, 185, 0.35);}
.chartist-tooltip	{
	position: absolute;
	display: inline-block;
	opacity: 0;
	min-width: 2rem;
	padding: .25rem .5rem;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 3px;
	color: #fff;
	font-size: 0.8em;
	text-align: center;
	pointer-events: none;
	z-index: 1;
	transition: opacity .2s linear;
}
.chartist-tooltip-meta	{	color: rgba(255, 255, 255, 0.8);}
.chartist-tooltip:before	{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -4px;
	border: 4px solid transparent;
	border-top-color: rgba(0, 0, 0, 0.8);
}
.chartist-tooltip.tooltip-show	{	opacity: 1;}
.ct-area,
.ct-line	{	pointer-events: none;}
.ct-stroke-1 .ct-line	{	stroke-width: 1px;}
.ct-stroke-2 .ct-line	{	stroke-width: 2px;}
.ct-stroke-3 .ct-line	{	stroke-width: 3px;}
.ct-stroke-4 .ct-line	{	stroke-width: 4px;}
.ct-stroke-5 .ct-line	{	stroke-width: 5px;}
.ct-point-hover .ct-point	{	transition: opacity 0.5s;	opacity: 0 !important;}
.ct-point-hover .ct-point:hover,
.ct-point-hover .ct-point:focus	{	opacity: 1 !important;}

.ct-series-a .ct-point,
.ct-series-a .ct-line,
.ct-series-a .ct-bar,
.ct-series-a .ct-slice-donut	{	stroke: #2196f3;}

.ct-series-a .ct-slice-pie,
.ct-series-a .ct-slice-donut-solid,
.ct-series-a .ct-area	{	fill: #2196f3;}

.ct-series-b .ct-point,
.ct-series-b .ct-line,
.ct-series-b .ct-bar,
.ct-series-b .ct-slice-donut	{	stroke: #03a9f4;}

.ct-series-b .ct-slice-pie,
.ct-series-b .ct-slice-donut-solid,
.ct-series-b .ct-area	{	fill: #03a9f4;}

.ct-series-c .ct-point,
.ct-series-c .ct-line,
.ct-series-c .ct-bar,
.ct-series-c .ct-slice-donut	{	stroke: #00bcd4;}

.ct-series-c .ct-slice-pie,
.ct-series-c .ct-slice-donut-solid,
.ct-series-c .ct-area	{	fill: #00bcd4;}

.ct-series-d .ct-point,
.ct-series-d .ct-line,
.ct-series-d .ct-bar,
.ct-series-d .ct-slice-donut	{	stroke: #009688;}

.ct-series-d .ct-slice-pie,
.ct-series-d .ct-slice-donut-solid,
.ct-series-d .ct-area	{	fill: #009688;}

.ct-series-e .ct-point,
.ct-series-e .ct-line,
.ct-series-e .ct-bar,
.ct-series-e .ct-slice-donut	{	stroke: #4caf50;}

.ct-series-e .ct-slice-pie,
.ct-series-e .ct-slice-donut-solid,
.ct-series-e .ct-area	{	fill: #4caf50;}

.ct-series-f .ct-point,
.ct-series-f .ct-line,
.ct-series-f .ct-bar,
.ct-series-f .ct-slice-donut	{	stroke: #8bc34a;}

.ct-series-f .ct-slice-pie,
.ct-series-f .ct-slice-donut-solid,
.ct-series-f .ct-area	{	fill: #8bc34a;}

.ct-series-g .ct-point,
.ct-series-g .ct-line,
.ct-series-g .ct-bar,
.ct-series-g .ct-slice-donut	{	stroke: #cddc39;}

.ct-series-g .ct-slice-pie,
.ct-series-g .ct-slice-donut-solid,
.ct-series-g .ct-area	{	fill: #cddc39;}

.ct-series-h .ct-point,
.ct-series-h .ct-line,
.ct-series-h .ct-bar,
.ct-series-h .ct-slice-donut	{	stroke: #ffeb3b;}

.ct-series-h .ct-slice-pie,
.ct-series-h .ct-slice-donut-solid,
.ct-series-h .ct-area	{	fill: #ffeb3b;}

.ct-series-i .ct-point,
.ct-series-i .ct-line,
.ct-series-i .ct-bar,
.ct-series-i .ct-slice-donut	{	stroke: #ffc107;}

.ct-series-i .ct-slice-pie,
.ct-series-i .ct-slice-donut-solid,
.ct-series-i .ct-area	{	fill: #ffc107;}

.ct-series-j .ct-point,
.ct-series-j .ct-line,
.ct-series-j .ct-bar,
.ct-series-j .ct-slice-donut	{	stroke: #ff9800;}

.ct-series-j .ct-slice-pie,
.ct-series-j .ct-slice-donut-solid,
.ct-series-j .ct-area	{	fill: #ff9800;}

.ct-series-k .ct-point,
.ct-series-k .ct-line,
.ct-series-k .ct-bar,
.ct-series-k .ct-slice-donut	{	stroke: #ff5722;}

.ct-series-k .ct-slice-pie,
.ct-series-k .ct-slice-donut-solid,
.ct-series-k .ct-area	{	fill: #ff5722;}

.ct-series-l .ct-point,
.ct-series-l .ct-line,
.ct-series-l .ct-bar,
.ct-series-l .ct-slice-donut	{	stroke: #795548;}

.ct-series-l .ct-slice-pie,
.ct-series-l .ct-slice-donut-solid,
.ct-series-l .ct-area	{	fill: #795548;}

.ct-series-m .ct-point,
.ct-series-m .ct-line,
.ct-series-m .ct-bar,
.ct-series-m .ct-slice-donut	{	stroke: #607d8b;}

.ct-series-m .ct-slice-pie,
.ct-series-m .ct-slice-donut-solid,
.ct-series-m .ct-area	{	fill: #607d8b;}

.ct-series-n .ct-point,
.ct-series-n .ct-line,
.ct-series-n .ct-bar,
.ct-series-n .ct-slice-donut	{	stroke: #9e9e9e;}

.ct-series-n .ct-slice-pie,
.ct-series-n .ct-slice-donut-solid,
.ct-series-n .ct-area	{	fill: #9e9e9e;}

.ct-series-o .ct-point,
.ct-series-o .ct-line,
.ct-series-o .ct-bar,
.ct-series-o .ct-slice-donut	{	stroke: #ababab;}

.ct-series-o .ct-slice-pie,
.ct-series-o .ct-slice-donut-solid,
.ct-series-o .ct-area	{	fill: #ababab;}

.ct-stroke-1 .ct-line	{	stroke-width: 1px;}
.ct-stroke-1 .ct-bar,
.ct-stroke-1 .ct-point	{	stroke-width: 2px;}

.ct-stroke-2 .ct-line	{	stroke-width: 2px;}
.ct-stroke-2 .ct-bar,
.ct-stroke-2 .ct-point	{	stroke-width: 4px;}

.ct-stroke-3 .ct-line	{	stroke-width: 3px;}
.ct-stroke-3 .ct-bar,
.ct-stroke-3 .ct-point	{	stroke-width: 6px;}

.ct-stroke-4 .ct-line	{	stroke-width: 4px;}
.ct-stroke-4 .ct-bar,
.ct-stroke-4 .ct-point	{	stroke-width: 8px;}

.apexcharts-tooltip.light,
.apexcharts-menu,
.apexcharts-xaxistooltip	{
	color: #222;
	background-clip: padding-box !important;
	border: 1px solid rgba(19, 24, 44, 0.35) !important;
}
.apexcharts-xaxistooltip:before	{	border-bottom-color: 1px solid rgba(19, 24, 44, 0.35) !important;}
.apexcharts-legend-text	{	color: inherit;}
.apexcharts-gridline	{	stroke: rgba(130, 140, 155, 0.35);}
.apexcharts-yaxis text,
.apexcharts-xaxis text	{	fill: rgba(130, 140, 155, 0.65);}
.bg-dark .btn-default.form-control	{
	background-position: 0% 0%;
    background-color: rgba(255, 255, 255, 0.1) !important;
	color: inherit !important;
    background-image: none !important;
    background-repeat: repeat !important;
    background-attachment: scroll !important;
}
.ui-select-bootstrap > .ui-select-choices	{	overflow-y: scroll;}
.dataTables_wrapper	{	padding: 0;}
.bootstrap-table .fixed-table-loading	{
	display: none;
	position: absolute;
	top: 42px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	background-color: #fff;
	text-align: center;
}
.bootstrap-table .fixed-table-toolbar i	{
	display: inline-block;
	min-height: 14px;
}
.note-editor	{
	border-width: 0 !important;
	overflow: visible !important;
	background-color: inherit;
	margin: 0;
}
.note-editor .note-editing-area .note-editable,
.note-editor .note-statusbar	{
	background-color: transparent !important;
	color: inherit !important;
}
.note-toolbar	{	border-width: 0;}
.note-editor .btn-light	{
	background: transparent !important;
	border: none !important;
	color: inherit !important;
	opacity: 0.5;
}
.note-editor .btn-light.active	{	opacity: 1;}
.note-editor-inline .note-editor	{	box-shadow: none;}
.note-editor-inline .note-editing-area	{	border: 1px solid rgba(135, 150, 165, 0.35);	background: #fff;}
.bg-dark .note-editor-inline .note-editing-area	{	background: transparent;}
.select2-container--default .select2-selection	{
	min-height: 33px;
	border-color: rgba(135, 150, 165, 0.35) !important;
}
.bg-dark .select2-container--default .select2-selection	{	background-color: #1b223d;}
.select2-container--default .select2-selection .select2-selection__rendered	{	color: inherit;	padding-left: 9px;}
.select2-container--default .select2-selection .select2-selection__arrow	{	top: 3px;}
.select2-container--default .select2-selection .select2-selection__choice	{
	background: transparent;
	border-color: rgba(135, 150, 165, 0.35);
	line-height: 1.5;
}
.select2-container--default .select2-selection .select2-selection__choice__remove	{	color: inherit !important;}
.select2-container--default .select2-selection--single .select2-selection__rendered	{	line-height: 30px;}
.select2-container--default .select2-search--inline .select2-search__field	{	margin-top: 6px;}
.select2-container--default .select2-search__field	{	color: inherit;}
.select2-container--default .select2-search--dropdown .select2-search__field	{	border-color: rgba(135, 150, 165, 0.35);}
.select2-container--default .select2-dropdown	{	color: #5e676f;	border-color: rgba(135, 150, 165, 0.35);}
.datepicker	{	width: auto;	padding: 0;	font-size: 0.7rem;}
.datepicker.dropdown-menu	{	padding: 4px;}
.datepicker table	{	width: 100%;}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today:active	{
	background-image: none;
	color: white;
	background-color: #448bff !important;
}
.datepicker table td,
.datepicker table th	{
	height: auto;
	line-height: 1.5 !important;
	border-width: 0;
	vertical-align: middle;
	padding: 4px !important;
}
.datepicker table td span:not(.active),
.datepicker table td:not(.active):hover,
.datepicker table th span:not(.active),
.datepicker table th:not(.active):hover	{	background-color: transparent;}
.datepicker table td span,
.datepicker table th span	{	height: auto !important;	line-height: 2 !important;}
.datepicker table .disabled	{	opacity: 0.4;}
.daterangepicker	{	color: #333;}
.daterangepicker .ranges li.active	{	background-color: #448bff;}
.notie-container	{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	position: fixed;
	height: auto;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1050;
	box-sizing: border-box;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
	padding: 0.875rem 1.5rem;
	background-color: #13182c;
	color: white;
	border-radius: 2px;
	max-width: 35rem;
	min-width: 18rem;
}
.notie-container .btn	{
	padding: 0px 6px;
	line-height: 18px;
	cursor: pointer;
	box-shadow: none !important;
}
.notie-container .btn:empty	{	display: none;}
.notie-textbox	{	-ms-flex: 1;	flex: 1;	margin-right: 1.5rem;}
.notie-overlay	{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: rgba(255, 255, 255, 0);
}


/*	Switch	***********************************	*/
.ui-switch	{
	cursor: pointer;
	position: relative;
	display: inline-block;
	width: 24px;
	height: 14px;
	border-radius: 30px;
	background-color: #448bff;
	margin: 0;
}
.ui-switch input	{
	position: absolute;
	opacity: 0;
	z-index: -1;
}
.ui-switch input:checked + i:before	{
	top: 50%;
	bottom: 50%;
	left: 50%;
	right: 5px;
	border-width: 0;
	border-radius: 5px;
}
.ui-switch input:checked + i:after	{	margin-left: 11px;}
.ui-switch i	{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
}
.ui-switch i:before	{
	content: "";
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: -1px;
	right: -1px;
	background-color: #fff;
	border: 1px solid rgba(135, 150, 165, 0.35);
	border-radius: 30px;
	transition: all 0.2s;
}

@media (prefers-reduced-motion: reduce)	{
	.ui-switch i:before	{	transition: none;}
}

.ui-switch i:after	{
	content: "";
	position: absolute;
	background-color: #fff;
	width: 12px;
	top: 1px;
	bottom: 1px;
	border-radius: 50%;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
	transition: margin 0.3s;
}

@media (prefers-reduced-motion: reduce)	{
	.ui-switch i:after	{	transition: none;}
}

.ui-switch-md	{ width: 32px; height: 20px;}
.ui-switch-md input:checked + i:after	{	margin-left: 13px;}
.ui-switch-md i:after	{	width: 18px;}
.ui-switch-lg	{	width: 40px;	height: 24px;}
.ui-switch-lg input:checked + i:after	{	margin-left: 17px;}
.ui-switch-lg i:after	{	width: 22px;}


/*	Timeline	***********************************	*/
.timeline	{
	position: relative;
	border-color: rgba(160, 175, 185, 0.35);
	padding: 0;
	margin: 0;
}
.tl-item	{
	border-radius: 3px;
	position: relative;
	display: -ms-flexbox;
	display: flex;
}
.tl-item > *	{	padding: 10px;}
.tl-item .avatar	{	z-index: 2;}
.tl-item:last-child .tl-dot:after	{	display: none;}
.tl-item.active .tl-dot:before	{
	border-color: #448bff;
	box-shadow: 0 0 0px 4px rgba(68, 139, 255, 0.2);
}
.tl-dot	{
	position: relative;
	border-color: rgba(160, 175, 185, 0.35);
}
.tl-dot:before,
.tl-dot:after	{
	content: '';
	position: absolute;
	border-color: inherit;
	border-width: 2px;
	border-style: solid;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
}
.tl-dot:after	{
	width: 0;
	height: auto;
	top: 25px;
	bottom: -15px;
	border-right-width: 0;
	border-top-width: 0;
	border-bottom-width: 0;
	border-radius: 0;
}
.tl-content p:last-child	{	margin-bottom: 0;}
.tl-date	{
	font-size: 0.85em;
	margin-top: 2px;
	min-width: 100px;
	max-width: 100px;
}



/*---------------------------
3. Utilities
---------------------------*/
/*	Base	***********************************	*/
.pos-rlt	{	position: relative;}
.pos-abt	{	position: absolute;}
.pos-fix	{	position: fixed !important;}
.pos-stc	{	position: static !important;}
.active > .d-inline,
.active > .auto .d-inline	{	display: none !important;}
.active > .d-none,
.active > .auto .d-none	{	display: inline-block !important;}
.box-shadow	{	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);}
.box-shadows	{	box-shadow: 0 10px 25px 0 rgba(50, 50, 50, 0.35);}
.hide	{	display: none !important;}
.hidden	{	visibility: hidden;}
.show-rtl	{	display: none !important;}
.pointer	{	cursor: pointer;}
.circle	{	border-radius: 500px;}
.clear	{	display: block;	overflow: hidden;}
.no-wrap	{	white-space: nowrap;}
.no-shadow	{	-webkit-box-shadow: none !important;	box-shadow: none !important;}
.no-select	{	pointer-events: none;	user-select: none;}
.p-2-3	{	padding: 0.75rem;}
.p-3-4	{	padding: 1.25rem;}
.scale	{	transform: scale(0.9);}
.scale-75	{	transform: scale(0.75);}
.scale-50	{	transform: scale(0.5);}
.scale-25	{	transform: scale(0.25);}

@media (max-width: 767.98px)	{
	.pos-stc-sm	{	position: static !important;}
}

@media (max-width: 575.98px)	{
	.pos-stc-xs	{	position: static !important;}
}


/*	Border	***********************************	*/
.no-border	{	border-color: transparent !important; border-width: 0 !important;}
.b		{	border-color: rgba(160, 175, 185, 0.35); background-clip: padding-box;}
.b-a	{	border: 1px solid rgba(160, 175, 185, 0.35);}
.b-t	{	border-top: 1px solid rgba(160, 175, 185, 0.35);}
.b-r	{	border-right: 1px solid rgba(160, 175, 185, 0.35);}
.b-b	{	border-bottom: 1px solid rgba(160, 175, 185, 0.35);}
.b-l	{	border-left: 1px solid rgba(160, 175, 185, 0.35);}
.b-1x	{	border-width: 1px;}
.b-2x	{	border-width: 2px;}
.b-3x	{	border-width: 3px;}
.b-4x	{	border-width: 4px;}
.b-5x	{	border-width: 5px;}
.b-t-2x	{	border-top-width: 2px !important;}
.b-t-3x	{	border-top-width: 3px !important;}
.b-t-4x	{	border-top-width: 4px !important;}
.b-t-5x	{	border-top-width: 5px !important;}
.b-r-2x	{	border-right-width: 2px !important;}
.b-r-3x	{	border-right-width: 3px !important;}
.b-r-4x	{	border-right-width: 4px !important;}
.b-r-5x	{	border-right-width: 5px !important;}
.b-b-2x	{	border-bottom-width: 2px !important;}
.b-b-3x	{	border-bottom-width: 3px !important;}
.b-b-4x	{	border-bottom-width: 4px !important;}
.b-b-5x	{	border-bottom-width: 5px !important;}
.b-l-2x	{	border-left-width: 2px !important;}
.b-l-3x	{	border-left-width: 3px !important;}
.b-l-4x	{	border-left-width: 4px !important;}
.b-l-5x	{	border-left-width: 5px !important;}
.b-light	{	border-color: #f5f5f6;}
.b-white	{	border-color: #fff;}
.b-primary	{	border-color: #448bff !important;}
.b-t-primary	{	border-top-color: #448bff;}
.b-r-primary	{	border-right-color: #448bff;}
.b-b-primary	{	border-bottom-color: #448bff;}
.b-l-primary	{	border-left-color: #448bff;}
.b-success		{	border-color: #31c971 !important;}
.b-t-success	{	border-top-color: #31c971;}
.b-r-success	{	border-right-color: #31c971;}
.b-b-success	{	border-bottom-color: #31c971;}
.b-l-success	{	border-left-color: #31c971;}
.b-info		{	border-color: #14bae4 !important;}
.b-t-info	{	border-top-color: #14bae4;}
.b-r-info	{	border-right-color: #14bae4;}
.b-b-info	{	border-bottom-color: #14bae4;}
.b-l-info	{	border-left-color: #14bae4;}
.b-warning	{	border-color: #f4c414 !important;}
.b-t-warning	{	border-top-color: #f4c414;}
.b-r-warning	{	border-right-color: #f4c414;}
.b-b-warning	{	border-bottom-color: #f4c414;}
.b-l-warning	{	border-left-color: #f4c414;}
.b-danger	{	border-color: #f54394 !important;}
.b-t-danger	{	border-top-color: #f54394;}
.b-r-danger	{	border-right-color: #f54394;}
.b-b-danger	{	border-bottom-color: #f54394;}
.b-l-danger	{	border-left-color: #f54394;}
.b-light	{	border-color: #f5f5f6 !important;}
.b-t-light	{	border-top-color: #f5f5f6;}
.b-r-light	{	border-right-color: #f5f5f6;}
.b-b-light	{	border-bottom-color: #f5f5f6;}
.b-l-light	{	border-left-color: #f5f5f6;}
.b-dark		{	border-color: #192039 !important;}
.b-t-dark	{	border-top-color: #192039;}
.b-r-dark	{	border-right-color: #192039;}
.b-b-dark	{	border-bottom-color: #192039;}
.b-l-dark	{	border-left-color: #192039;}
.b-white	{	border-color: #ffffff !important;}
.b-t-white	{	border-top-color: #ffffff;}
.b-r-white	{	border-right-color: #ffffff;}
.b-b-white	{	border-bottom-color: #ffffff;}
.b-l-white	{	border-left-color: #ffffff;}
.b-default	{	border-color: rgba(160, 175, 185, 0.35) !important;}
.b-t-default	{	border-top-color: rgba(160, 175, 185, 0.35);}
.b-r-default	{	border-right-color: rgba(160, 175, 185, 0.35);}
.b-b-default	{	border-bottom-color: rgba(160, 175, 185, 0.35);}
.b-l-default	{	border-left-color: rgba(160, 175, 185, 0.35);}
.no-b-t		{	border-top-width: 0;}
.no-b-r		{	border-right-width: 0;}
.no-b-b		{	border-bottom-width: 0;}
.no-b-l		{	border-left-width: 0;}
.b-dashed	{	border-style: dashed !important;}
.b-transparent	{	border-color: transparent !important;}

@media (max-width: 991.98px)	{
	.no-border-md	{	border-width: 0;}
}
@media (max-width: 767.98px)	{
	.no-border-sm	{	border-width: 0;}
}
@media (max-width: 575.98px)	{
	.no-border-xs	{	border-width: 0;}
}


/*	Hover	***********************************	*/
.hover-show	{	display: none;}
.hover-rotate	{	transition: all 0.2s ease-in-out 0.1s;}

@media (prefers-reduced-motion: reduce)	{
	.hover-rotate	{	transition: none;}
}

.hover-anchor:hover .hover-show,
.hover-anchor:active .hover-show	{	display: inherit;}
.hover-anchor:hover .hover-rotate,
.hover-anchor:active .hover-rotate	{	transform: rotate(45deg);}
.hover-top:hover,
.hover-top:active	{	position: relative;	z-index: 1000;}


/*	Radius	***********************************	*/
.r		{	border-radius: 6px;}
.r-t	{
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
.r-r	{
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}
.r-b	{
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
}
.r-l	{
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}
.r-2x	{	border-radius: 9px;}
.r-3x	{	border-radius: 12px;}
.r-auto	{	border-radius: inherit;}
.no-radius	{	border-radius: 0 !important;}
.no-r-t	{
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.no-r-r	{
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.no-r-b	{
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.no-r-l	{
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}


/*	Scrollable	***********************************	*/
.scrollable	{
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.scrollable.hover	{	overflow-y: hidden;}
.scrollable.hover > *	{	margin-top: -1px;}
.scrollable.hover:hover,
.scrollable.hover:focus,
.scrollable.hover:active	{	overflow: visible;	overflow-y: auto;}
.touch .scrollable	{	overflow-y: auto !important;}
.scroll-x,
.scroll-y	{	overflow: hidden;	-webkit-overflow-scrolling: touch;}
.scroll-y	{	overflow-y: auto;}
.scroll-x	{	overflow-x: auto;}
.no-scroll	{	overflow: hidden;}

.page-header .scrollable .list-row .list-item > * { padding-left: 0.225rem; padding-right: 0.25rem;}
.page-header .scrollable .list-row .list-item > * { padding-left: 0.225rem; padding-right: 0.25rem;}
.page-header .scrollable .list-row .list-item,
.page-header .dropdown-menu { font-size: 0.825rem}



/*	Text	***********************************	*/
a.primary:hover	{	background-color: #3b85ff;}
a.text-primary:hover	{	color: #3b85ff !important;}
.text-primary,
.text-hover-primary a:hover,
.text-hover-primary .active > a	{	color: #448bff !important;}

a.success:hover	{	background-color: #2fc26d;}
a.text-success:hover	{	color: #2fc26d !important;}
.text-success,
.text-hover-success a:hover,
.text-hover-success .active > a	{	color: #31c971 !important;}

a.info:hover	{	background-color: #13b3dc;}
a.text-info:hover	{	color: #13b3dc !important;}
.text-info,
.text-hover-info a:hover,
.text-hover-info .active > a	{	color: #14bae4 !important;}

a.warning:hover	{	background-color: #f4c20b;}
a.text-warning:hover	{	color: #f4c20b !important;}
.text-warning,
.text-hover-warning a:hover,
.text-hover-warning .active > a	{	color: #f4c414 !important;}

a.danger:hover	{	background-color: #f53b8f;}
a.text-danger:hover	{	color: #f53b8f !important;}
.text-danger,
.text-hover-danger a:hover,
.text-hover-danger .active > a	{	color: #f54394 !important;}

a.dark:hover	{	background-color: #161d33;}
a.text-dark:hover	{	color: #161d33 !important;}
.text-dark,
.text-hover-dark a:hover,
.text-hover-dark .active > a	{	color: #192039 !important;}

a.blue:hover	{	background-color: #0077f6;}
a.text-blue:hover	{	color: #0077f6 !important;}
.text-blue,
.text-hover-blue a:hover,
.text-hover-blue .active > a	{	color: #007bff !important;}

a.grey:hover	{	background-color: #CCCCCC;}
a.text-grey:hover	{	color: #CCCCCC !important;}
.text-grey,
.text-hover-grey a:hover,
.text-hover-grey .active > a	{	color: #AAAAAA !important;}

.text-white	{	color: white !important; word-break: keep-all;}
.text-color	{	color: #5e676f;}
.text-inherit,
.text-inherit a	{	color: inherit;}
.text-fade	{	opacity: 0.65;}
.text-gd	{
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	text-fill-color: transparent;
}
.text	{	font-size: 1rem;}
.text-sm	{	font-size: 0.825rem; font-weight: normal;}
.text-md	{	font-size: 1.25rem;}
.text-lg	{	font-size: 2.5rem;}
.text-2x	{	font-size: 2em !important;}
.text-3x	{	font-size: 3em !important;}
.text-4x	{	font-size: 4em !important;}
.l-h-0	{	line-height: 0;}
.l-h	{	line-height: 1.4285714286;}
.l-h-1x	{	line-height: 1;}
.l-h-2x	{	line-height: 2em;}
.l-s-1x	{	letter-spacing: 1px;}
.l-s-2x	{	letter-spacing: 2px;}
.l-s-3x	{	letter-spacing: 3px;}
.l-s-4x	{	letter-spacing: 4px;}
.l-s-n-1x	{	letter-spacing: -1px;}
.l-s-n-2x	{	letter-spacing: -2px;}
.l-s-n-3x	{	letter-spacing: -3px;}
.l-s-n-4x	{	letter-spacing: -4px;}
.h-1x	{
	height: 1.25rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.h-2x	{
	max-height: 2.5rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.h-3x	{
	max-height: 4rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.h-4x	{
	max-height: 5rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.text-serif	{	font-family: Georgia, "Times New Roman", Times, serif;}
.text-ellipsis	{
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.text-shadow	{	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);}
.font-weight-100	{	font-weight: 100 !important;}
.font-weight-300	{	font-weight: 300 !important;}
.font-weight-500	{	font-weight: 500 !important;}
.text-align-auto	{	text-align: inherit;}

@media (max-width: 991.98px)	{
	.display-1	{	font-size: 3.5rem;}
	.display-2	{	font-size: 3.25rem;}
	.display-3	{	font-size: 3rem;}
	.display-4	{	font-size: 1.5rem;}
	.text-lg	{	font-size: 2rem;}
}


/*	Size	***********************************	*/
.w-8	{	width: 8px !important;	height: 8px !important;}
.w-12	{	width: 12px !important;	height: 12px !important;}
.w-16	{	width: 16px !important;	height: 16px !important;}
.w-20	{	width: 20px !important;	height: 20px !important;	font-size: 0.6em;}
.w-24	{	width: 24px !important;	height: 24px !important;	font-size: 0.7em;}
.w-28	{	width: 28px !important;	height: 28px !important;	font-size: 0.8em;}
.w-32	{	width: 32px !important;	height: 32px !important;	font-size: 0.85em;}
.w-36	{	width: 36px !important;	height: 36px !important;	font-size: 0.875em;}
.w-40	{	width: 40px !important;	height: 40px !important;}
.w-48	{	width: 48px !important;	height: 48px !important;}
.w-56	{	width: 56px !important;	height: 56px !important;}
.w-64	{	width: 64px !important;	height: 64px !important;}
.w-72	{	width: 72px !important;	height: 72px !important;}
.w-80	{	width: 80px;}
.w-96	{	width: 96px;}
.w-128	{	width: 128px;}
.w-xs	{	width: 90px;}
.w-sm	{	width: 120px;}
.w		{	width: 190px;}
.w-md	{	width: 240px;}
.w-lg	{	width: 280px;}
.w-xl	{	width: 320px;}
.w-auto	{	width: auto;}
.h-auto	{	height: auto;}
.hv		{	height: 100vh;}
.h-v	{	min-height: 100vh;}
.h-v-50	{	min-height: 50vh;}

@media (max-width: 1199.98px)	{
	.w-auto-lg	{	width: auto !important;}
	.w-100-lg	{	width: 100% !important;}
}

@media (max-width: 991.98px)	{
	.w-auto-md	{	width: auto !important;}
	.w-100-md	{	width: 100% !important;}
}

@media (max-width: 767.98px)	{
	.w-auto-sm	{	width: auto !important;}
	.w-100-sm	{	width: 100% !important;}
}

@media (max-width: 575.98px)	{
	.w-auto-xs	{	width: auto !important;}
	.w-100-xs	{	width: 100% !important;}
}



/*---------------------------
4. Material Design style
---------------------------*/
.md-form-group	{
	padding: 18px 0 24px 0;
	position: relative;
}
.md-input	{
	background: transparent;
	position: relative;
	z-index: 5;
	border: 0;
	box-shadow: none;
	border-radius: 0;
	border-bottom: 1px solid rgba(135, 150, 165, 0.35);
	width: 100%;
	height: 34px;
	padding: 2px;
	color: inherit;
}
.md-input:focus,
.md-input.focus	{
	border-color: #448bff;
	border-bottom-width: 2px;
	padding-bottom: 1px;
}
.md-input:focus ~ label,
.md-input.focus ~ label	{
	color: #448bff;
	opacity: 1;
	top: 0 !important;
	font-size: 0.85em !important;
}
.float-label .md-input ~ label	{	top: 20px;	font-size: 1em;}
.float-label .md-input:not([value=""]) ~ label,
.float-label .md-input:valid ~ label	{	top: 0;	font-size: 0.85em;}
.md-input ~ label	{
	transition: all 0.2s;
	font-size: 0.85em;
	position: absolute;
	z-index: 0;
	opacity: 0.5;
	display: inline-block;
	top: 0px;
	left: 0;
}

@media (prefers-reduced-motion: reduce)	{
	.md-input ~ label	{	transition: none;}
}
.md-input.is-invalid	{border-color: #f54394;}
.md-input.is-valid		{border-color: #31c971;}
.md-input.disabled,
.md-input[disabled]	{	opacity: 0.5;}
textarea.md-input	{	height: auto;}
.md-input-white:focus,
.md-input-white.focus	{	border-color: #fff;}
.md-input-white:focus ~ label,
.md-input-white.focus ~ label	{	color: #fff;}
.md-input-msg	{
	position: absolute;
	bottom: 0;
	line-height: 24px;
	font-size: 0.85em;
}
.md-input-msg.right	{	right: 0;}
.md-check	{
	cursor: pointer;
	padding-left: 1.25rem;
	margin: 0;
	display: inline-block;
	position: relative;
}
.md-check input	{
	position: absolute;
	cursor: pointer;
	z-index: 1;
	opacity: 0;
}
.md-check input:checked + i:before	{
	border-width: 0;
	background-color: inherit;
}
.md-check input:checked + span .active	{	display: inherit;}
.md-check input[type="radio"] + i,
.md-check input[type="radio"] + i:before	{	border-radius: 50%;}
.md-check input[type="checkbox"]:checked + i:after	{
	transform: rotate(45deg);
	position: absolute;
	left: 6px;
	top: 2px;
	display: table;
	width: 6px;
	height: 12px;
	border: 2px solid;
	border-top: 0;
	border-left: 0;
	content: ' ';
}
.md-check input[type="radio"]:checked + i:after	{
	position: absolute;
	left: 6px;
	top: 6px;
	display: table;
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	content: ' ';
}
.md-check input[disabled] + i:before,
fieldset[disabled] .md-check input + i:before	{	opacity: 0.5;}
.md-check input[disabled]:checked + i:before	{	opacity: 0.5;}
.md-check > i	{
	width: 0;
	height: 18px;
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	left: -1.25rem;
	top: -1px;
}
.md-check > i:before	{
	content: "";
	position: absolute;
	width: 18px;
	height: 100%;
	border: 2px solid rgba(135, 150, 165, 0.35);
	border-radius: 2px;
}
.md-check > i.no-icon:after	{	display: none !important;}
.md-switch	{
	cursor: pointer;
	padding-left: 36px;
	margin: 0;
	min-height: 20px;
}
.md-switch input	{
	position: absolute;
	cursor: pointer;
	width: 36px;
	height: 20px;
	z-index: 1;
	opacity: 0;
	margin-left: -36px;
}
.md-switch input:checked + i:before	{	background: inherit;	opacity: 0.5;}
.md-switch input:checked + i:after	{	background: inherit;	left: 16px;}
.md-switch input[disabled] + i:before,
fieldset[disabled] .md-switch input + i:before	{	background-color: rgba(0, 0, 0, 0.12);}
.md-switch input[disabled] + i:after,
fieldset[disabled] .md-switch input + i:after	{	background-color: #bdbdbd;}
.md-switch i	{
	width: 0px;
	height: 18px;
	line-height: 1;
	margin-left: -36px;
	margin-top: -2px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 44px;
	position: relative;
}
.md-switch i:before	{
	content: "";
	left: 1px;
	width: 34px;
	top: 3px;
	height: 14px;
	border-radius: 8px;
	position: absolute;
	background-color: #9e9e9e;
	transition: all 0.2s;
}

@media (prefers-reduced-motion: reduce)	{
	.md-switch i:before	{	transition: none;}
}

.md-switch i:after	{
	content: "";
	position: absolute;
	margin: 0;
	left: 0;
	top: 0;
	outline: none;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.26);
	transition: all 0.2s;
}

@media (prefers-reduced-motion: reduce)	{
	.md-switch i:after	{	transition: none;}
}

.red	{	background-color: #f44336;	color: #fff;}
.pink	{	background-color: #e91e63;	color: #fff;}
.purple	{	background-color: #9c27b0;	color: #fff;}
.deep-purple	{	background-color: #673ab7;	color: #fff;}
.indigo	{	background-color: #3f51b5;	color: #fff;}
.blue	{	background-color: #2196f3;	color: #fff;}
.light-blue	{	background-color: #03a9f4;	color: #fff;}
.cyan	{	background-color: #00bcd4;	color: #fff;}
.teal	{	background-color: #009688;	color: #fff;}
.green	{	background-color: #4caf50;	color: #fff;}
.light-green	{	background-color: #8bc34a;	color: rgba(0, 0, 0, 0.85);}
.lime	{	background-color: #cddc39;	color: rgba(0, 0, 0, 0.85);}
.yellow	{	background-color: #ffeb3b;	color: rgba(0, 0, 0, 0.85);}
.amber	{	background-color: #ffc107;	color: rgba(0, 0, 0, 0.85);}
.orange	{	background-color: #ff9800;	color: rgba(0, 0, 0, 0.85);}
.deep-orange	{	background-color: #ff5722;	color: #fff;}
.brown	{	background-color: #795548;	color: #fff;}
.blue-grey	{	background-color: #607d8b;	color: #fff;}
.grey	{	background-color: #9e9e9e;	color: #fff;}




/*	*********************************************

	CONTENT

*********************************************	/
/*	Commons		*****	*/
#header .navbar .search	{	background: #2b52b6;	max-width: 500px;	margin: 0 auto;}


/*	Dashboard	*****	*/
.dashboard .page-content .usercard .d-flex div > h5 {	font-size: 1.32275rem;}
.dashboard .page-content .usercard .d-flex div > h5 span {	color: #2d56c0;	font-weight: 700;}
.dashboard .page-content .usercard button.btn img {	width: 27px; height: auto; margin: 0px 12px 0 0;}
.dashboard .page-content .usercard button.btn {
	color:#c7cccf; background: #39444d;
	font-size: 0.985rem; font-weight: 500; letter-spacing: -0.051px;
	padding: 0.85rem 1.445rem; margin: 0 20px;
	min-width: 210px;
}
.dashboard .page-content .usercard .card-header { border-bottom: none;}
.dashboard .page-content .usercard button.btn:hover { opacity: 0.75;}
.dashboard .card-body.padding > div.card-text.mb-3 > h3 { font-size: 22px; margin-bottom: 30px; margin-top:10px;}
.dashboard_quiz .ui-check { padding-left:40px;}
.dashboard_quiz .ui-check > p { position: absolute; top: 50%; left:0; margin: -12px 0 0 0;}
.dashboard_quiz .ui-check { font-size: 0.95rem;}
.dashboard_quiz .ui-check > i.dark-white { margin-right: 14px;}
.dashboard_quiz .list-item { padding: 0.5rem 0.5rem 0.4rem 0.5rem;}


/*	Course.html	*****	*/
.lessonListStyle_A	{	overflow: hidden;	margin:30px 0; word-break: keep-all;}
.styleBox { overflow:hidden; position: relative; padding-left:10px; padding-right: 10px; }
.lessonListStyle_A .media { width: 100%;}
.lessonListStyle_A h3 { font-size: 20px; padding-top: 5px; padding-right: 42px;}
.lessonListStyle_A button.btn {
	margin: 15px 0 0 0;
	padding: 0.485rem 1.5rem 0.42rem 1.5rem;
	float: left;
	background: #5a7183;
	color: #FFFFFF;
	border: 1px solid #3b556a;
	border-radius: 0.3rem 0 0 0.3rem;
	clear: both;
	font-weight: bold;
}
.lessonListStyle_A button.btn:active,
.lessonListStyle_A button.btn:hover {
	background: #396cf0; border: 1px solid #3a64d2;
}
.lessonListStyle_A .btn.bookmark { 
	position: absolute;
	top: 0;
	right: 15px;
}
.btn.bookmark { 
	background: #F3F3F3;
	border: 1px solid #CECECE;
	border-radius: 0.3rem 0.3rem;
	padding: 0.345rem 0.725rem 0.3rem;
	min-height: 36px;
}
.bookmark.active {  background: #5a7183 !important; border-color: #5a7183 !important; color: #FFFFFF;}
.bookmark.active .active-primary { color: #ffc107 !important;}
.lessonListStyle_A button.btn > svg { margin: 0 0 0 1rem;}
.lessonListStyle_A .progress { margin:5px auto 0 auto;}
.tab-content.course { padding: 0rem 1rem;}
.tab-content.scroll-y	{	padding: 0 0;}
.tab-content.scroll-y .tab-pane	{
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
    height: calc(100vh - 280px)
}
.course .card .d-flex > .mx-3 { margin-left: 0 !important;}
.course .card .d-flex h5,
.card .d-flex h5 {
	margin: 4px 0 0 0;
	font-size: 22px;
	white-space: nowrap;
}
.course .card .card-header .card_top_stxt {
	font-family: "Noto Sans KR","Poppins";
	font-size: 0.825rem;
	margin: 0 0;
	padding: 2rem 1.75rem 2rem 0;
	opacity: 0.8;
	word-break: keep-all;
}
.course .card .d-flex h5 svg { width: 30px; height: 30px;}
.course .card .card-body .card-title {	margin:0rem 0rem !important}
.course .card .card-body .card-title h5 { line-height: 2.145rem;}
.course .card .card-body .card-title h5 svg { width: 24px; height: 24px;}
.course .nav-pills { width: 94%; margin: 10px auto;}
.course .nav-pills li {
    width: 46%;
    margin: 0 2%;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    -webkit-box-shadow: 0px 3px 1px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 3px 1px 0px rgba(0,0,0,0.15);
}
.course .nav-pills .nav-link {
	width:100%;  padding: 1.45rem 1rem;
	color: #3d6eea; font-size: 18px; font-weight: bold; text-align: center;
	border: none;
}
.nav-pills .nav-link.active {background-color: inherit;}
.course .nav-pills .nav-link svg { width: 24px; height: 24px;}
.course .nav-pills .nav-link span { font-weight: 400; display: block; margin-top: 10px;}
.course .nav-pills .nav-item:hover {
	opacity: 0.65;
	-webkit-box-shadow: 0px 3px 1px 0px rgba(0,0,0,0.0);
    box-shadow: 0px 3px 1px 0px rgba(0,0,0,0.0);
}
#courseList .row .col-md-6 {
	border-bottom:1px solid #EEEEEE;
}
#courseList .row .col-md-6:nth-child(even) {
	border-left:1px solid #EEEEEE;
}
.courseList .aside-sm .navbar > span { margin-bottom: 0.75rem;}
.courseList .aside-sm .navbar span > font {	display:block; font-size:1.042rem; font-weight:bold;}
.courseList .list .col-12 > .card { margin-bottom: 1rem;}

.starRank span { margin:0 -0.1rem;}
.starRank span.num { margin: 0px 0 0 0.25rem; color:#818894; vertical-align:middle;}
.progressBox > span {	font-size: 0.75rem; margin-top: 0.885rem; display: flex;}

.course .alert.alert-primary { padding-top: 2rem !important;}
.course .alert.alert-primary h5.alert-heading	{	font-weight: bold;}
.course .alert.alert-primary > div > ul { margin: 0 auto; margin-top: 1.45rem;}
.course .alert.alert-primary > div > ul > li {list-style: none; margin-bottom:0.45rem; }
.course .alert.alert-primary > div > ul a.btn {
	width: 100%;
	display: inline-block;
	padding: 0.845rem 1rem 0.745rem 1rem;
	color:#2c549a;
}
.course .alert.alert-primary > div > ul a.btn:hover {
	color: #634e00;
	text-shadow: 1px 1px 1px #ffea9d;
	background-color: #f7cf3d;
	border-color: #dcaf08;
}
.course .alert.alert-primary > div > ul a.btn span { float: left;}
.course .alert.alert-primary > div > ul a.btn > svg { float: right;}
table.tbCourseList {}
table.tbCourseList td.flex { padding: 0 0;}
table.tbCourseList td.flex a.item-title {
	display: block;
	padding: 0.75rem;
	font-weight: bold;
	font-size: 0.954rem;
}
table.tbCourseList td.p-bar		{
	min-width: 80px;
	max-width: 200px;
	width: 30%;
}
table.tbCourseList td.b-mark	{
	max-width: 70px;
	min-width: 45px;
	width: 10%;
}



/*	Course-select.html	*****	*/
.course_select > form	{ width: 100%;}
.course_select > #prb_form { margin-top: -2.5rem;}
.course_select .card-header		{	font-size:1.0945rem; letter-spacing: -0.045rem;}
.course_select .card-body hr	{	margin: 1rem 1rem; border-color:#EEEEEE;}
.course_select .form-group		{	margin: 0 0;}
.course_select .card-header		{	padding: 1.25rem 1.45rem 1rem 1.45rem;}
.course_select .checkboxmode	{}
.course_select .checkboxmode .toolbar { margin: 0 -15px;}
.course_select .checkboxmode .col-sm-4	{ margin:0rem;}
.course_select .checkboxmode .checkbox { float: left; width: 50%; word-break: keep-all;}
.course_select .col-sm-3.col-form-label { padding-left: 20px; border-right:1px solid #EEEEEE; margin-right: 2rem; font-weight: bold;}
.course_select .col-sm-3.col-form-label span { display: inline-block; word-break: keep-all; padding-left: 5px;}
.course_select .col-sm-3.col-form-label span#questionCount { color: #f47b14; font-size: 90%; padding-left: 23px; display: inline-block;}
.course_select .col-sm-3.col-form-label > i,
.course_select .col-sm-3.col-form-label > svg{ margin-right: 0.25rem;}
.course_select .ui-check span.badge { margin-left:7px}
.course_select .btn-group-toggle { background: #F5F5FA}
.course_select .btn-group-toggle .btn	{ font-size: 0.85rem; padding:.4rem 0rem .35rem; cursor: pointer; background: #FFFFFF; border: 1px solid #EEEEEE;}
.course_select .btn-group-toggle .btn.active .badge.classnum { background:#14bae4; color: #FFFFFF; border: none;}
.badge.classnum { margin-left:15px; color: #999999; border: 1px solid #DDDDDD; border-radius: 10px 10px;}
.course_select .inputmode .input-group-text { font-size:0.8rem; color: #999999;}
.course_select .inputmode .input-group-text strong { color:#777777;}
.course_select .inputmode .input-group.col-md-12 { padding: 0 0;}
.course_select .inputmode .input-group .input-group-append { font-family:Noto Sans KR;}
.course_select .inputmode .input-group .input-group-append .input-group-text { padding-left:1rem; padding-right: 1rem; }
.course_select .inputmode .input-group input.form-control { min-width: 30px; max-width: 70px; text-align: center;}
.course_select .btn.btn-dark { padding: .875rem .85rem;}
.course_select .btn.btn-dark:hover { color: #634e00; text-shadow: 1px 1px 1px #ffea9d; background-color: #f7cf3d; border-color: #dcaf08; }
.switchmode .col-sm-8 > span { display: inline-block; margin: 7px 7px 0px 0;}
.switchmode .col-sm-8 > .ui-switch { margin:0px 20px -4px 0px;}

/* modal */
.select_curri .checkbox { display: inline-block; float: right;}
.select_curri .checkbox label.ui-check { margin: 0 0;}



/* amuse-login.html *********** */
.memberlogin { height: 100%; height: 100vh; margin-right: 0; margin-left: 0;}
.memberlogin .bg-primary .subtext { font-size: .93rem;}
.memberlogin .bg-primary .text { font-weight: bold; font-size:.875rem;}
.memberlogin .bg-primary > div {
	background:url(../../assets/img/main/main-login-bg.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 125% auto;
}
.memberlogin #content-body h5 { font-weight: bold; font-size: 1.45rem; }
.memberlogin #content-body .p-md-5 { padding-right: 0 !important;}
.memberlogin .btn-login	{
	color: #ffffff;
	background-color: #448bff;
	border-color: #448bff;
	margin-bottom: 1.5rem !important;
	padding-left: 2rem;
	padding-right: 2rem;
}
	@media (max-width: 768px) {
		.memberlogin	{	height: 100% !important;}
		.memberlogin .bg-primary h4 { margin-bottom: 0.35rem !important;}
		.memberlogin .bg-primary .subtext {
			border-bottom: 1px solid;
			border-bottom-color: rgba(255,255,255,0.35);
			padding-bottom: 0.45rem;
			margin-bottom: 0.65rem;
			opacity: 0.75;
		}
		.memberlogin .bg-primary > div { background-size: 100% auto;}
		.memberlogin #content-body { margin-top:1.75rem;}
		.memberlogin #content-body .p-md-5 { padding-right:1rem !important;}
	}

.dashboard div.list.list-row > div.row.list-item.first-content > div:nth-child(2) { background: #FFFFFF;}

/*	Tabs	*****	*/
.card .courses-tab ul.nav	{
	background: #6b7b87;
	border-radius: 0.45rem 0.45rem 0 0;
	overflow: hidden
}
.card .courses-tab ul.nav > li .nav-link {
	padding:1.15rem 1.75rem 1rem 1.75rem; min-width: 103px;
	font-size: 1.075rem; text-align: center; font-family:"Noto Sans KR", "Poppins";
	color: #d4d7da;
}
.card .courses-tab ul.nav > li a.active { background: #FFFFFF; font-weight: bold; color: #39444d;}


/*	Search	*****	*/
.search .page-hero .text-muted span { color:#448bff !important; font-weight: bold;}
.search .searchlist .item-feed a { color:#3d454d;}
.search .searchlist .item-feed a span { color:#448bff; font-weight:700;}


/*	Video	*****	*/
.card.plyrist_video { border: none; border-radius: 0.25rem;}
.area_video .video_title h1.h3 { color: #FFFFFF; font-size: 1.64125rem;}
.area_video .video_title .right_info { min-width: 125px;}
.area_video .video_title .right_info > div { float: left;}
.area_video .video_title .right_info > p { float: right; padding: 0 0; margin: -6px 0;}
.area_video .video_title .right_info a.bookmark { margin-left: 0.75rem; padding: 0.375rem 0.55rem; background:#2f3e4a; border-color: #1b262f;}
.videosec.avatar-group { margin: 20px 0;}
.videosec.avatar-group .avatar:hover { transform: scale( 1.5 );}
.plyrist_video .scrollable { max-height: 500px;}
.plyr-item { list-style: decimal; font-size:11px;}
.plyr-item-poster { display: inline-block; margin: 0 5px;}
.plyr-item-poster img { width: 80px; height: auto; max-height: 80px;}
.plyr-item-title { display: inline-block; vertical-align: middle;}


.commentbox .selectbox {margin-top:15px;}
.commentbox .selectbox .ui-check { float: right; margin-top: 0.5rem;}

/*	Quiz	*****	*/
body.quiz .navbar { padding: 0.68rem 1rem 0.79rem 1rem;}
body.quiz .page-sidenav { min-width: 5rem;}
.quiz-side .badge-circle.answer_right	{background-color: #2196f3; color:#2196f3;}
.quiz-side .badge-circle.answer_wrong	{background-color: #e91e63; color:#e91e63;}
.quiz-side .badge-circle.answer_skip	{background-color: #CCCCCC; color:#CCCCCC;}
.quiz-side .badge-circle.answer_loc {
	background-color: #31c971;
	color: #31c971;
}
.quizContent .modal-xl {}
.quizContent .modal-xl .modal-body img { width: 100%; height: auto;}
.quizContent .question {}
.quizContent .question .q_text { font-size: 1.1rem; line-height: 2.2rem; padding-bottom: 30px;}
.quizContent .question .q_media {}
.quiz-side .scrollable { border-right: 1px solid #EEEEEE; }
.quiz-side .scrollable ul li { border-bottom:1px solid #DDDDDD; text-align:right; padding:10px 18px 9px 6px;}
.quiz-side .scrollable ul li span { float: left;}
.quizContent .btnset { text-align: center; margin-top: 20px;}
.quizContent .btnset .btn { margin: 3px 3px; font-weight: 700;}
.quizContent .btnset .btn-white { border:1px solid #DDDDDD;}
.quizContent .btnset .btn.bg-secondary-lt { color: #999999 !important;}
.quiz .timecheck {
	margin: 0 auto;
	border: 1px solid #2450bf;
	-webkit-box-shadow: inset 4px 4px 8px -4px rgba(255,255,255,0.7);
	box-shadow: inset 4px 4px 8px -4px rgba(255,255,255,0.7);
	background: #2f5ed6;
	padding: 9px 25px 7px 25px;
	min-width: 280px;
	border-radius: 30px 30px;
}
.quiz .timecheck h2 {
	margin: 0 0;
	padding: 0 0;
	color: #FFFFFF;
	font-weight: 300;
	font-size: 16px;
	text-align: center;
}
.quiz .timecheck h2 svg {
	margin-right: 0.335rem;
	margin-bottom: 0.235rem;
	width: 27px;
	height: 27px;
}
.quiz .closequiz {
	margin: 0 auto;
	border: 1px solid #2450bf;
	-webkit-box-shadow: inset 4px 4px 8px -4px rgba(255,255,255,0.7);
	box-shadow: inset 4px 4px 8px -4px rgba(255,255,255,0.7);
	background: #2f5ed6;
	padding: 5px 20px 5px 20px;
	min-width: 100px;
	border-radius: 20px 20px;
	font-size: 20px;
	cursor: pointer;
}


body.quiz .navbar-brand img:nth-child(2) { display: none;}
body.quiz .page-header .navbar .nav-link {	margin-right: 0.75rem; padding: 0 0;}
body.quiz .page-header .navbar .nav-link svg { width: 26px; height: 26px;}

.item-amount button {
	font-size: 13px;
	padding: 5px 10px 4px 10px;
	border-radius: 4px 4px;
	border: 1px solid #CCCCCC;
	color: #777777;
}
.item-amount button:hover {
	border: 1px solid #2284d1;
	color: #FFFFFF;
	background: #38a3f7;	
}

.card-body .card-img {
	border-radius: .1875rem
}

.card-img-actions {
	position: relative
}

.card-img-actions:focus .card-img-actions-overlay, .card-img-actions:hover .card-img-actions-overlay {
	opacity: 1;
	visibility: visible
}

.card-img-actions-overlay {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,.75);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: all ease-in-out .15s
}

/*	Max-Width for mobile	*********************************************** */
@media (max-width: 992px)	{
	#header .navbar .search {	margin-top: 10px;}
	.usercard .avatar.w-96	{	width:66px; height: 66px;}
	.dashboard .page-content .usercard .d-flex div > h5 { margin-top: 0.6rem !important;}
	.dashboard .page-content .usercard button.btn { margin: 0 0;}
	
	.quiz .timecheck { margin: 8px auto 0 auto;}
	.quiz .timecheck h2 { font-size: 20px;}
	.quiz .timecheck h2 svg { width: 21px;}
	
	.lessonListStyle_A .styleBox { padding: 15px 15px 0 15px;	}
	.lessonListStyle_A .btn.bookmark { top: 20px;}
}

@media (max-width: 768px)	{
	svg.feather.mx-2 { margin-left: 0 !important;}
	.navbar { padding-top: 0.0rem; padding-bottom: 0.0rem;}
	.dashboard .page-content .usercard { width: 100%;}
	.usercard .avatar.w-96	{	width:66px; height: 66px; margin: 0 auto;}
	.dashboard .page-content .usercard button.btn { margin: 10px auto;}
	.card.plyrist_video .d-md-flex .flex { min-height: 100px;} 
	.list.list-row .list-item .item-author p.tx-course { margin-top: 20px;}
	.toolbar.p-4 { padding-top: 0 !important;}
	.course .nav-pills { width: 100%;}
	.course .nav-pills li { width: 100%;}
	.course .nav-pills li:first-child { margin-bottom:20px;}
	.course .nav-pills .nav-link { padding: 1rem 1rem}
	#courseList .row .col-md-6 { border-left: none !important;}
	.course .alert.alert-primary { margin: 10% 10% !important;}
	.course .alert.alert-primary > .px-3 { padding: 0 0!important;}
	.course .card .card-header .card_top_stxt { 
		padding: 1.45rem 0.75rem 1.45rem;
		border-top: 1px solid;
		border-top-color: rgba(255,255,255,0.15);
		text-align: center;
	}
	#content .card .card-header .d-flex {
		display: block !important;
		text-align: center;
		margin: 0 auto;
	}
	.course .padding { padding:0.5rem 0.5rem; }
	.course .card .card-body .card-title h5 { text-align: center; float: none; margin-bottom: 0.845rem;}
	.course_select .card-header { font-size: 0.984rem;}
	.course_select .inputmode .input-group .input-group-append .input-group-text { padding-left: 0.5rem; padding-right: 0.5rem;}
	.course_select .form-group > .col-sm-8 { padding-left: 0; padding-right: 0;}
	.list.list-row.col-md-6:last-child { border-top: 1px solid #EEEEEE;}
	.menuside { display: block !important;}
	.tab-content.scroll-y {	padding: 0 1rem;}
	.tab-content.scroll-y .tab-pane	{	overflow-y:inherit; height:100%;}
}

@media screen and	(-ms-high-contrast: active),	(-ms-high-contrast: none)	and	(max-width: 768px)	{
	.navbar { padding-top: 0.75rem; padding-bottom: 0;}
}


@media (max-width: 615px)	{
	#header .navbar-brand > img.pcLogo:nth-child(2) {	display: none;}
	.card .courses-tab ul.nav > li .nav-link { font-size: 1rem; padding: 1.15rem 1.45rem 1rem 1.45rem;}
	.card-body { padding: 1rem 0.875rem;}
}

@media (max-width: 576px)	{
	.layout, .layout-row, .layout-column { display: flex;}
	.card-body { padding: 1rem 1rem;}
	.paddingx3 {	padding: 1rem;}
	.navbar-brand .pcLogo { display: none !important;}
	.mobileLogo { display: block !important;}
	
	.quizContent .question { margin: 0 0;}
	.quiz .page-header > .navbar	{	padding: 0.68rem 0.75rem 0.79rem 0.75rem;}
	.card-header.bigtx svg { width: 24px;}
	.course_select .form-group > .col-sm-8 { padding-left: 15px; padding-right: 15px;}
	.course_select .form-group { margin: 1.5rem 0;}
	.course_select .col-sm-3.col-form-label {
		text-align: left;
		margin: 0 0 0.845rem 0;
		border: none;
		background: rgba(225, 232, 236, 0.75);
		border-radius: 6px 6px;
	}
	.course_select .card-body hr { display: none;}
	.course_select .checkboxmode .col-sm-4 { margin: 0 0;}
	.course_select .form-group:first-child { margin-top: 0.5rem;}
	.course_select .form-group.switchmode .col-sm-8,
	.course_select #timeConfig .col-sm-8	{ width: auto; margin: 0 auto;}
	.course_select .inputmode .input-group input.form-control { max-width: fit-content;}
	.course_select .col-sm-3.col-form-label span#questionCount { padding-left: 5px;}
	.videosec.avatar-group .item-except { font-size:80%; margin-right: 1rem !important; }
	.videosec.avatar-group .item-except svg { margin-right:6px !important;}
	.commentbox .selectbox .ui-check {display: block; float: none;}
	.card-body canvas { width: 100% !important;}
}

@media screen and	(-ms-high-contrast: active),	(-ms-high-contrast: none)	and	(max-width: 576px)	{
	.layout, .layout-row, .layout-column { display/**/:block}
}


@media (max-width: 425px)	{
	.table th, .table td { padding: 0.45rem;}
	.lessonListStyle_A { margin: 20px 0;}
	.card .courses-tab ul.nav > li .nav-link { min-width:50px; padding: 1.15rem 0.945rem 1rem 0.945rem; font-size: 0.85rem; }
	.card-header.bigtx { font-size: 1.25em; padding: 1.25rem 1rem 1rem 1rem;}
	.toolbar.p-4 {display: block}
	.toolbar.p-4 .custom-select { margin: 0.25rem 0;}
	.lessonListStyle_A h3 { font-size: 17px;}
	.tab-content.course { padding: 0 0.25rem;}
	.course .card .d-flex h5 { font-size: 145%;}
	.course .card .d-flex h5 svg { width: 22px;}
	.course .alert.alert-primary > div > ul { padding: 0 0;}
	.course .nav-pills .nav-link { font-size: 14px;}
	.course_select .checkboxmode .checkbox { float: none; width: 100%;}
	.course_select .checkboxmode .toolbar { margin: 0 auto;}
	.course_select .inputmode .input-group input.form-control { max-width: 70px;}
	.course_select .inputmode .input-group .input-group-append .input-group-text:first-child { display: none;}
	.course_select .checkboxmode .toolbar { display: block;}
	.course_select .checkboxmode .col-sm-4 .custom-select { margin-bottom: 0.485rem;}
	.area_video .video_title h1.h3 { font-size: 1.24125rem;}
	.commentbox .selectbox {text-align: center;}
	.ui-check { font-size: 90%;}
}

@media (max-width: 375px)	{
	#header.page-header,
	#main.layout-row { min-width: 300px;}
	.videosec.avatar-group .item-except { font-size: x-small; width: min-content; margin-right: 0.785rem !important; text-align: center; line-height: 100%;}
	.videosec.avatar-group .item-except svg { margin: 0 auto !important;}
	.commentbox > div.card-body .mx-3 > div:nth-child(2)	{ width: 130%; margin-left: -22.5%;}
	.quizContent .question .q_text {font-size: 0.93542rem; line-height: 1.645rem; padding-bottom: 20px;}
	.quizContent .question { padding-top: 1rem;}
	.paddingx3 {	padding: 0.25rem;}
	.quizContent .btnset { margin-top: 5px; margin-bottom: 15px;}
	.card-header.bigtx p { display: none;}
	.input-group-text { padding:0.375rem 0.25rem; }
	.course_select .form-group > .col-sm-8 { padding-left: 5px; padding-right: 5px;}
}



/* IE Hack */
@media screen and	(-ms-high-contrast: active),	(-ms-high-contrast: none)	/* and	(max-width: 768px) */	{
	.card {display: block;}
	.card-body canvas { max-width: 100%; max-height: 100%;}
	.sticky.page-header ~ * .sticky.page-sidenav, .page-header ~ * .fixed-content	{	top:0px;	min-height:100%;}
	.navbar-expand-lg .navbar-collapse { flex-basis:100%;}
}

.page-title {
	padding: 2rem 2rem;
	position: relative;
}
