@font-face {
	font-family: "helveticaregular";

	src: url("../fonts/helvetica-webfont.woff2") format("woff2"),
		url("../fonts/helvetica-webfont.woff") format("woff");

	font-weight: normal;

	font-style: normal;
}

@font-face {
	font-family: "galanoregular";
	src: url("../fonts/galano_grotesque-webfont.woff2") format("woff2"),
		url("../fonts/galano_grotesque-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "galanogrotesque-bold";

	src: url("../fonts/galano_grotesque_bold-webfont.woff2") format("woff2"),
		url("../fonts/galano_grotesque_bold-webfont.woff") format("woff");

	font-weight: normal;

	font-style: normal;
}

@font-face {
	font-family: "galano-alt";
	src: url("../fonts/galano_grotesque_alt-webfont.woff2") format("woff2"),
		url("../fonts/galano_grotesque_alt-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

:root {
	--primary-color: #004269;

	--secondary-color: #009da5;

	--light-color: #fff;

	--medium-color: #d9d9d9;

	--dark-color: #000;

	--success-color: #00a531;

	--danger-color: #bf111f;

	--mature-color: #3e6267;

	--max-width: 100%;

	--primary-font: "galano-alt";

	--secondary-font: "galanogrotesque-bold";
}

*,
*::after,
*::before {
	padding: 0;

	margin: 0;

	box-sizing: border-box;
}

body {
	font-family: var(--primary-font);

	line-height: 1.5;

	font-size: 13px;

	background-color: var(--medium-color);

	color: var(--dark-color);
}

p {
	margin-bottom: 1rem;
}

a {
	text-decoration: none;

	color: var(--primary-color);

	transition: color 0.5s;
}

a:hover {
	color: var(--mature-color);

	text-decoration: none;
}

h1 {
	font-size: 40px;

	line-height: 3.5rem;

	margin-bottom: 1rem;

	font-family: var(--secondary-font);
}

h2 {
	font-size: 35px;

	line-height: 2.5rem;

	margin-bottom: 1rem;

	font-family: var(--secondary-font);
}

h3 {
	font-size: 30px;

	line-height: 2rem;

	margin-bottom: 1rem;

	font-family: var(--secondary-font);
}

h4 {
	font-size: 27px;

	line-height: 2.4rem;

	margin-bottom: 1rem;

	font-family: var(--secondary-font);
}

h5 {
	font-size: 24px;

	line-height: 2rem;

	margin-bottom: 1rem;

	font-family: var(--secondary-font);
}

h6 {
	font-size: 21px;

	margin-bottom: 1rem;

	font-family: var(--secondary-font);
}

ul {
	list-style: none;
	margin: 0;
}

input,
select,
textarea {
	font-family: var(--primary-font);

	padding: 0.5rem;

	border: 1px solid var(--medium-color);

	outline: none;

	border-radius: 5px;

	font-size: 15px;
}

input:disabled,
select:disabled,
textarea:disabled {
	background-color: #ccc;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

input[type="number"] {
	-webkit-appearance: textfield;

	-moz-appearance: textfield;

	appearance: textfield;
}

progress {
	width: 100%;
}

img {
	max-width: var(--max-width);

	width: 100%;
}

/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: var(--light-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--secondary-color);
}

.container {
	max-width: var(--max-width);

	overflow: hidden;

	margin: auto;

	padding-left: 1rem;

	padding-right: 1rem;
}

.height-100 {
	height: 100vh;
}

/* css padiing start */

.py-1 {
	padding: 1rem 0 !important;
}

.py-2 {
	padding: 2rem 0 !important;
}

.py-3 {
	padding: 3rem 0 !important;
}

.px-1 {
	padding: 0 1rem !important;
}

.px-2 {
	padding: 0 2rem !important;
}

.px-3 {
	padding: 0 3rem !important;
}

.pt-1 {
	padding-top: 1rem;
}

.pt-2 {
	padding-top: 2rem;
}

.pt-3 {
	padding-top: 3rem;
}

.pb-1 {
	padding-bottom: 1rem;
}

.pb-2 {
	padding-bottom: 2rem;
}

.pb-3 {
	padding-bottom: 3rem;
}

/* css padding end */

/* css margin start */

.my-0 {
	margin: 0.5rem 0 !important;
}

.my-1 {
	margin: 1rem 0 !important;
}

.my-2 {
	margin: 2rem 0 !important;
}

.my-3 {
	margin: 3rem 0 !important;
}

.mx-1 {
	margin: 0 1rem !important;
}

.mx-2 {
	margin: 0 2rem !important;
}

.mx-3 {
	margin: 0 3rem !important;
}

.mb-1 {
	margin-bottom: 1rem;
}

.mb-2 {
	margin-bottom: 2rem;
}

.mb-3 {
	margin-bottom: 3rem;
}

/* css start end */

/* css text start */

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-primary {
	color: var(--primary-color);
}

.text-secondary {
	color: var(--secondary-color) !important;
}

.text-secondary:hover {
	color: var(--secondary-color) !important;
}

.text-success {
	color: var(--success-color);
}

.text-danger {
	color: var(--danger-color);
}

.text-mature {
	color: var(--mature-color);
}

.text-white {
	color: var(--light-color);
}
/* csss text end */

/* css flex start */
.d-flex {
	display: flex;
}

.flex-space-between {
	justify-content: space-between;

	align-items: flex-start;
}

.flex-start {
	justify-content: start;

	align-items: start;
}

.flex-center {
	justify-content: center;
	justify-items: center;
	align-items: center;
}

.flex-end {
	align-items: flex-end;

	justify-content: flex-end;
}

.align-center {
	align-items: center;
}

.justify-end {
	justify-content: flex-end;
}

.flex-column {
	-webkit-box-orient: vertical;

	-webkit-box-direction: normal;

	-ms-flex-direction: column;

	flex-direction: column;
}

.flex-row {
	-webkit-box-orient: vertical;

	-webkit-box-direction: normal;

	-ms-flex-direction: row;

	flex-direction: row;
}

.flex-root {
	-webkit-box-flex: 1;

	flex: 1;
}

.flex-row-fluid {
	-webkit-box-flex: 1;

	flex: 1 auto;

	-ms-flex: 1 0 0px;

	min-width: 0;
}

.align-item-end {
	align-items: flex-end;
}

/* css flex end */

.grid-1 {
	display: grid;

	grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
	display: grid;

	grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
	display: grid;

	grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
	display: grid;

	grid-template-columns: repeat(4, 1fr);
}

.grid-gap-1 {
	grid-gap: 1rem;
}

.grid-gap-2 {
	grid-gap: 2rem;
}

.grid-gap-3 {
	grid-gap: 3rem;
}

/* css header start */
.page-header {
	background-color: #00c4cf;

	position: fixed;

	left: 0;

	top: 0;

	right: 0;

	z-index: 1;

	width: calc(100% - 300px);

	margin-left: 300px;

	transition: 0.3s;
}

#Menumobile {
	font-size: 22px;
	color: #fff;
	cursor: pointer;
	display: none;
}

.nav-menu .menu-items {
	position: relative;

	padding: 1.25rem 1.1rem;
}

.nav-menu .menu-items:first-child {
	padding-left: 0;
}

.menu-items a {
	color: var(--light-color);
}

.Accounts button,
.search .btn-search {
	background: none;
	border: none;
	outline: none;
	color: #fff;
	font-size: 15px;
	padding: 1.25rem 1.1rem;
	cursor: pointer;
}

.dropdownAccount {
	display: none;
	position: absolute;
	right: 3%;
	background-color: var(--light-color);
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
	z-index: 1;
}

.dropdownSearch {
	display: none;
	position: absolute;
	right: 8%;
	z-index: 1;
	background-color: var(--light-color);
	padding: 10px;
}

.dropdownSearch .grid-search {
	grid-template-columns: 3fr 1fr;
}

.dropdownSearch .grid-search input {
	border: 1px solid #ccc;
	border-right: none;
}

.dropdownSearch .grid-search .btn {
	width: auto;
}

.dropdownAccount a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdownAccount a > i {
	margin-right: 10px;
}

.Accounts:hover .dropdownAccount {
	display: block;
}

.search:hover .dropdownSearch {
	display: block;
}

/* css header end */

/* css breadcrumb start */

.breadcrumb-wrapper {
	background: #fff;
	width: calc(100% - 300px);
	margin-left: 300px;
	position: absolute;
	top: 63px;
	padding: 0.5rem;
}

.breadcrumb {
	padding: 0 1.5rem;
}

.breadcrumb a {
	font-size: 14px;
}

.breadcrumb a + a::before {
	content: "\f054";
	font-family: FontAwesome;
	font-size: 11px;
	position: relative;
	bottom: 1px;
	margin: 0 7px;
}

/* css breadcrumb end */

/* css aside start */
.aside {
	background-color: #00649d;

	color: var(--medium-color);
}

.aside-menu-header {
	position: fixed;

	top: 0;

	bottom: 0;

	left: 0;

	z-index: 1;

	width: 300px;

	transition: 0.3s;

	transition-property: width;
}

.logo {
	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;

	-webkit-box-pack: justify;

	-ms-flex-pack: justify;

	justify-content: space-between;

	-webkit-box-align: center;

	-ms-flex-align: center;

	align-items: center;

	-webkit-box-orient: horizontal;

	-webkit-box-direction: normal;

	-ms-flex-direction: row;

	flex-direction: row;

	padding: 0 25px;

	height: 62px;

	border-bottom: 1px solid #d9d9d9;

	gap: 1rem;
}

/* .logo img {
  width: 80%;
} */

.logo-toggle {
	outline: none;

	background: none;

	border: none;

	padding: 10px 0;

	font-size: 21px;

	color: var(--medium-color);

	cursor: pointer;
	transition: 0.3s;
	transition-property: color;
}

.icon-toggle-mobile {
	outline: none;

	background: none;

	border: none;

	padding: 10px 0;

	font-size: 21px;

	color: var(--medium-color);

	cursor: pointer;
	transition: 0.3s;
	transition-property: color;
	display: none;
}

.logo-toggle:hover {
	color: var(--primary-color);
}

.scroll-menu {
	height: 689px;

	overflow: auto;
}

/* width */
.scroll-menu::-webkit-scrollbar {
	width: 8px;
}

/* Track */
.scroll-menu::-webkit-scrollbar-track {
	background: #00649d;
}

/* Handle */
.scroll-menu::-webkit-scrollbar-thumb {
	background: var(--primary-color);
}

/* Handle on hover */
.scroll-menu::-webkit-scrollbar-thumb:hover {
	background: #d9d9d9;
}

.side-menu .menu-nav {
	margin: 0;

	list-style: none;

	padding: 15px 0;
}

.side-menu .menu-nav .side-menu-item {
	position: relative;

	margin: 0;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;

	-webkit-box-orient: vertical;

	-webkit-box-direction: normal;

	-ms-flex-direction: column;

	flex-direction: column;

	-webkit-box-flex: 1;

	-ms-flex-positive: 1;

	flex-grow: 1;

	float: none;

	padding: 0;
}

.side-menu .menu-nav .menu-active {
	background-color: var(--primary-color);
}

.side-menu .menu-nav .side-menu-item a {
	padding: 9px 25px;

	color: var(--light-color);

	cursor: pointer;

	min-height: 44px;
}

.side-menu .menu-nav .side-menu-item a:hover {
	background-color: var(--secondary-color);
}

.side-menu .menu-nav .side-menu-item a .menu-icon {
	position: relative;

	padding-right: 5px;

	font-size: 20px;
}

.side-menu .menu-nav .menu-section {
	margin-top: 20px;

	height: 40px;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;

	padding: 0 25px;
}

.side-menu .menu-nav .menu-section h4 {
	font-size: 16px;

	text-transform: uppercase;

	letter-spacing: 0.3px;
}

.menu-collaps:after {
	content: "\f078";

	font-family: FontAwesome;

	color: white;

	font-weight: bold;

	position: relative;

	top: 5px;

	float: right;

	margin-left: 5px;

	transition: all 0.5s ease;
}

.menu-collaps-active:after {
	transform: rotate(180deg);
}

.submenu-menu-item {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s;
}

.submenu-menu-item .side-menu-item {
	padding-left: 1rem;
}

.submenu-menu-item .side-menu-item .submenu-menu-item .side-menu-item {
	padding-left: 1rem;
}

.submenu-menu-item .side-menu-item .submenu-menu-item .side-menu-item:hover {
	padding-left: 1rem !important;
	background-color: var(--secondary-color);
}

/* .submenu-menu-item .side-menu-item a::before {
  content: "\2212";

  position: relative;

  float: left;

  padding-right: 15px;
} */

.submenu-menu-item .side-menu-item a .menu-icon-child {
	position: relative;
	font-size: 1rem;
	padding-right: 5px;
	padding-left: 1rem;
}

.wrapper.collapse .aside {
	width: 90px;
}

.wrapper.collapse .aside:hover {
	width: 300px;
	z-index: 5;
}

.wrapper.collapse .logo-toggle {
	transform: rotate(180deg);
}

.wrapper.collapse .aside .logo {
	gap: 0;
}

.wrapper.collapse .aside .logo img,
.wrapper.collapse .aside .menu-section,
.wrapper.collapse .aside .side-menu-item .menu-title,
.wrapper.collapse .aside .menu-collaps:after,
.wrapper.collapse .aside .submenu-menu-item {
	display: none;
}

.wrapper.collapse .aside:hover .logo img,
.wrapper.collapse .aside:hover .menu-section,
.wrapper.collapse .aside:hover .side-menu-item .menu-title,
.wrapper.collapse .aside:hover .menu-collaps:after {
	display: inline-flex;
}

.wrapper.collapse .aside:hover .submenu-menu-item {
	display: block;
}

.wrapper.collapse .content,
.wrapper.collapse .page-header,
.wrapper.collapse .breadcrumb-wrapper {
	margin-left: 90px;
	width: calc(100% - 90px);
}

.collapse:not(.show) {
	display: inherit;
}

/* css aside end */

/* css content */
.content {
	margin-left: 300px;
	margin-top: 115px;
	width: calc(100% - 300px);
	transition: 0.3s;
}

/* css card start */
.card {
	background-color: var(--light-color);

	padding: 1rem;

	border-radius: 10px;
}

.card-header {
	padding: 0 1rem;

	border-bottom: 1px solid var(--medium-color);

	margin-bottom: 1rem;

	background: none;
}

.card-border {
	margin-bottom: 1rem;
	border: 3px solid var(--medium-color);
	border-radius: 10px;
}

.img-circle {
	width: 75px;

	border-radius: 50%;

	margin-right: 1rem;
}

.img-circle-dp {
	width: 150px;

	border-radius: 50%;
}

.card-name-wrapper h6 {
	margin-bottom: 0;

	line-height: 2.5rem;
}

.card-title {
	font-weight: 600;
	font-size: 1.1rem;
}

/* css card end */

/* css btn start */

.btn {
	border: none;

	outline: none;

	padding: 0.75rem 0.5rem;

	cursor: pointer;

	font-size: 16px;

	width: 50%;

	background: none;
	border-radius: 5px;
}

.btn:active {
	transform: translateY(4px);
}

.btn-primary {
	color: #fff;
	background-color: var(--primary-color);
	border-color: none;
}

.btn-primary:hover {
	background-color: rgba(0, 66, 105, 0.5);
}

.btn-secondary {
	color: #fff;
	background-color: var(--secondary-color);
	border-color: none;
}

.btn-success {
	color: #fff;
	background-color: var(--success-color);
	border-color: none;
}

.btn-secondary:hover {
	background-color: rgba(0, 157, 165, 0.5);
}

.btn-danger {
	color: #fff;
	background-color: #bf111f;
}

.btn-danger:hover {
	background-color: rgba(191, 17, 31, 0.5);
	color: #000;
}

.btn-mature {
	background-color: var(--mature-color);
	color: #fff;
}

.btn-medium {
	background-color: var(--medium-color);
}

.btn-submit,
.btn-cancel {
	border-radius: 5px;
	width: 30%;
	box-shadow: 3px 4px 5px 1px #ccc;
}

.btn-link {
	font-size: 1rem;
	/*padding: 0.45rem 0.5rem;*/
	border-radius: 5px;
	width: auto;
}

.btn-link:hover {
	text-decoration: none;
}

.btn-status {
	padding: 0.5rem 0.85rem;
	border-radius: 5px;
}

/* css btn end */

/* css pagination start */

.pagination > ul > li {
	margin: 0.25rem 0.5rem;
}

.pagination > ul > li > a {
	padding: 0.5rem 0.75rem;

	font-size: 16px;

	border-radius: 5px;
}

.pagination > ul > li > a:hover {
	background-color: var(--primary-color);
}

.pagination > ul > li > .pagination-active {
	background-color: var(--primary-color);

	color: #fff;
}

.pagination-icon {
	background-color: rgba(77, 158, 165, 0.5);
}

/* css pagination end */

/* css filtering start */
.grid-search {
	display: grid;

	grid-template-columns: 2fr 1fr;
}

.grid-search input {
	border: none;

	border-radius: 5px 0 0 5px;
}

.grid-search .btn {
	border-radius: 0 5px 5px 0;
}

.info-filter {
	margin-left: 1rem;

	position: relative;

	top: 5px;

	color: #8b8585;
}

.filter-wrapper select {
	border-radius: 5px;
}

/* css filtering end */

/* css form start */

.form-inputs {
	display: grid;

	grid-template-columns: 1fr 3fr;

	margin-bottom: 1rem;
}

.form-inputs label {
	font-size: 1rem;
}

.form-text {
	color: #888888;

	font-size: 12px;

	font-weight: 400;
}

.alert {
	padding: 1rem;

	border-radius: 5px;
}

.alert-red {
	background: #bf111f;
}

.alert-green {
	background: #00a531;
}

.alert-primary {
	background-color: var(--primary-color);
}

.alert-secondary {
	background-color: var(--secondary-color);
}

.alert h6,
.alert p {
	margin: 0;

	font-size: 15px;

	color: #fff;
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

input:checked + .slider {
	background-color: transparent;
	border: 1px solid var(--secondary-color);
}

input:focus + .slider {
	box-shadow: 0 0 1px #ccc;
}

input:checked + .slider:before {
	content: "\f00c";
	font-family: FontAwesome;
	font-size: 10px;
	color: #fff;
	text-align: center;
	line-height: 25px;

	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
	background: var(--secondary-color);
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

input[type="file"]::file-selector-button {
	float: right;
	padding: 0.5rem;
	position: relative;
	left: 5px;
	border: none;
	cursor: pointer;
	outline: none;
}

input[type="file"]::file-selector-button:focus {
	outline: none;
}

input[type="file"] {
	padding: 0;
	line-height: 2rem;
	padding-left: 0.5rem;
}

.radio-button {
	display: inline-block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	margin-right: 1rem;
	cursor: pointer;
	font-weight: normal;
	font-size: 15px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.radio-button input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.radio-button .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #eee;
	border-radius: 50%;
}

.radio-button:hover input ~ .checkmark {
	background-color: #ccc;
}

.radio-button input:checked ~ .checkmark {
	background-color: var(--secondary-color);
}

.radio-button .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.radio-button input:checked ~ .checkmark:after {
	display: block;
}

.radio-button .checkmark:after {
	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

.checkbox {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkbox .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #eee;
	border: 1px solid #ccc;
}

.checkbox:hover input ~ .checkmark {
	background-color: #ccc;
}

.container input:checked ~ .checkmark {
	background-color: var(--secondary-color);
}

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.checkbox input:checked ~ .checkmark:after {
	display: block;
}

.checkbox .checkmark:after {
	left: 7px;
	top: 4px;
	width: 7px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* css form end */

/* css tabs start */
.content-tabs {
	width: 100%;

	height: auto;

	margin: 0 auto;

	padding: 30px;
}

.nav {
	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;

	padding-left: 0;

	margin-bottom: 0;

	list-style: none;
}

.nav-pills {
	width: auto;
}

.nav-item {
	width: 50%;
}

.nav-link {
	display: block;

	padding: 0.5rem 1rem;
}

.nav-link:focus,
.nav-link:hover {
	text-decoration: none;
}

.nav-pills .nav-link {
	font-weight: bold;

	padding-top: 13px;

	text-align: center;

	background: var(--primary-color);

	color: #fff;

	border-radius: 10px;

	height: 115px;
}

.nav-pills .nav-link.active {
	background: #fff;
	color: #000;
}

.tab-content {
	position: relative;

	width: 100%;

	height: auto;

	margin-top: -50px;

	background: #fff;

	color: #000;

	border-radius: 10px;

	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.4);

	padding: 30px;

	margin-bottom: 50px;
}

.tab-content .tab-pane {
	display: none;
}

.tab-content .tab-pane.active {
	display: block;
}

.wizard-wrapper {
	display: flex;
	align-items: center;
}
.nav-pills .nav-link.active .wizard-number {
	background-color: var(--primary-color);
}
.wizard-number {
	background: var(--secondary-color);
	color: var(--medium-color);
	width: 40px;
	height: 40px;
	font-size: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	margin-right: 1rem;
}

.wizard-label {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	text-align: left;
	cursor: pointer;
}

.nav-pills .nav-link.active .wizard-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-color);
}

/* css tabs end */

/* css table start*/

table {
	border-collapse: collapse;

	border-spacing: 0;

	width: 100% !important;
}

td {
	text-align: left;

	padding: 8px;

	border-bottom: 1px solid #ccc;

	font-size: 1rem;
}

th {
	text-align: left;

	padding: 8px;

	border-bottom: 1px solid #ccc;
}

.basic-table thead {
	background-color: var(--medium-color);
}

.table-list tbody > tr:nth-child(odd) {
	background-color: var(--medium-color);
}

.table-list tbody > tr:hover {
	transform: translate(0.5);
}

.table-list thead > tr:first-child {
	background-color: var(--light-color);
}

table.dataTable thead th,
table.dataTable.no-footer {
	border-bottom: none;
	white-space: nowrap;
}

.table-responsive {
	overflow-x: auto;
}

.bg-color-primary {
	background-color: var(--primary-color);
	color: #fff;
}

.bg-color-secondary {
	background-color: var(--secondary-color);
	color: #fff;
}

.bg-color-danger {
	background-color: var(--danger-color);
	color: #fff;
}

.dataTables_filter,
.dataTables_length {
	margin-bottom: 1rem;
}

.dataTables_filter input,
.dataTables_length select {
	border: none !important;

	background: #ddd !important;

	padding: 0.5rem !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next {
	background-color: rgba(77, 158, 165, 0.5);

	padding: 0.5rem 1rem;

	font-size: 16px;

	border-radius: 5px;

	color: var(--primary-color) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	color: #fff !important;

	border: none;

	border-radius: 5px;

	padding: 0.5rem 1rem;

	background-color: var(--primary-color);

	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0%, white),
		color-stop(100%, #004269)
	);

	background: -webkit-linear-gradient(top, white 0%, #004269 100%);

	background: -moz-linear-gradient(top, white 0%, #004269 100%);

	background: -ms-linear-gradient(top, white 0%, #004269 100%);

	background: -o-linear-gradient(top, white 0%, #004269 100%);

	background: #004269;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	color: #fff !important;

	border: none;

	border-radius: 5px;

	padding: 0.5rem 1rem;

	background-color: #585858;

	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0%, #585858),
		color-stop(100%, #1e4269)
	);

	background: -webkit-linear-gradient(top, #d9d9d9 0%, #1e4269 100%);

	background: -moz-linear-gradient(top, #d9d9d9 0%, #1e4269 100%);

	background: -ms-linear-gradient(top, #d9d9d9 0%, #1e4269 100%);

	background: -o-linear-gradient(top, #d9d9d9 0%, #1e4269 100%);

	background: #1e4269 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button,
.dataTables_wrapper .dataTables_paginate {
	color: var(--primary-color) !important;
}

/* css table end */

/* css export start */
.select-export {
	position: relative;
	bottom: 8px;
	display: inline-block;
}

.dropdown-button {
	padding: 0.65rem 1rem;
	color: #fff;
}

.type-export {
	display: none;
	position: absolute;
	background-color: var(--light-color);
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.type-export a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.type-export a > i {
	margin-right: 10px;
}

.type-export a:hover {
	background-color: var(--secondary-color);
	color: var(--light-color);
}

.select-export:hover .type-export {
	display: block;
}

/* css export end */

/* css menu widget start */

.menu-widget li {
	position: relative;
	display: flex;
	background: #1e4269;
	border-radius: 5px;
	margin-bottom: 5px;
}

.menu-widget li > a {
	width: 100%;
	padding: 9px 25px;
	padding: 9;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
}

.menu-widget li:hover,
.menu-widget li.active {
	background-color: #0084d0;
}

/* css menu-widget end */

/* css modal start*/
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-dialog {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 1px solid #888;
	max-width: 500px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.75s;
	animation-name: animatetop;
	animation-duration: 0.75s;
}

.modal-dialog-centered {
	top: 25%;
	-webkit-animation-name: animatetoCenter;
	-webkit-animation-duration: 0.75s;
	animation-name: animatetoCenter;
	animation-duration: 0.75s;
}

.modal-dialog-scrollable .modal-body {
	overflow-y: auto;
}

.close {
	float: right;
	font-size: 28px;
	font-weight: bold;
	border: none;
	outline: none;
	background: none;
	position: absolute;
	top: 2px;
	right: 10px;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.modal-header {
	padding: 8px 16px;
}

.modal-body {
	padding: 16px;
}

.modal-footer {
	padding: 8px 16px;
	display: flex;
	gap: 0.5rem;
	justify-content: start;
	align-items: start;
}

/* Add Animation */
@-webkit-keyframes animatetop {
	from {
		top: -300px;
		opacity: 0;
	}
	to {
		top: 0;
		opacity: 1;
	}
}

@keyframes animatetop {
	from {
		top: -300px;
		opacity: 0;
	}
	to {
		top: 0;
		opacity: 1;
	}
}

@keyframes animatetoCenter {
	from {
		top: -300px;
		opacity: 0;
	}
	to {
		top: 25%;
		opacity: 1;
	}
}

/* css modal end */

/* css page error start */

.error {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.padding-error {
	padding: 7.5rem;
	min-height: 100vh;
}

.error-title {
	font-size: 15.7rem;
	line-height: 0.75;
	-webkit-text-stroke-width: 0.35rem;
	-webkit-text-stroke-color: var(--primary-color);
	color: transparent;
}

.display-text-info {
	font-size: 2.5rem;
	font-weight: 700;
}

.text-info-danger {
	font-weight: 700;
	font-size: 1.75rem;
}

.text-display-error {
	font-size: 1.5rem;
}

.error-btn {
	width: auto;
	padding: 0.75rem;
	border-radius: 5px;
	box-shadow: -3px 4px 5px #948e8e;
}

.error-btn:hover {
	background-color: var(--primary-color);
	color: #fff;
}

/* css page error end */

/* css symbol no image start*/
.symbol {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: 5px;
}

.symbol-primary {
	background: var(--primary-color);
	color: var(--medium-color);
}

.symbol-secondary {
	background: var(--secondary-color);
	color: var(--medium-color);
}

.symbol-danger {
	background: var(--danger-color);
	color: var(--medium-color);
}

.symbol-medium {
	background: var(--medium-color);
	color: var(--dark-color);
}

/* css symbol no image end */

/* css nestable start */

.dd {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	max-width: 100%;
	list-style: none;
	font-size: 13px;
	line-height: 20px;
}

.dd-list {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}
.dd-list .dd-list {
	padding-left: 30px;
}
.dd-collapsed .dd-list {
	display: none;
}

.dd-item,
.dd-empty,
.dd-placeholder {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	min-height: 20px;
	font-size: 15px;
	line-height: 20px;
}

.dd-handle {
	display: block;
	height: 35px;
	margin: 5px 0;
	padding: 5px 10px;
	color: #333;
	text-decoration: none;
	font-weight: bold;
	border: 1px solid #ccc;
	background: #61c5d0;
	background: -webkit-linear-gradient(top, #61c5d0 0%, #eee 100%);
	background: -moz-linear-gradient(top, #61c5d0 0%, #eee 100%);
	background: linear-gradient(top, #61c5d0 0%, #eee 100%);
	-webkit-border-radius: 3px;
	border-radius: 3px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.dd-handle:hover {
	color: #2ea8e5;
	background: #fff;
}

.dd-item > button {
	display: block;
	position: relative;
	cursor: pointer;
	float: left;
	width: 25px;
	height: 20px;
	margin: 5px 0;
	padding: 0;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: 0;
	background: transparent;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	font-weight: bold;
}
.dd-item > button:before {
	content: "+";
	display: block;
	position: absolute;
	width: 100%;
	text-align: center;
	text-indent: 0;
}
.dd-item > button[data-action="collapse"]:before {
	content: "-";
}

.dd-placeholder,
.dd-empty {
	margin: 5px 0;
	padding: 0;
	min-height: 30px;
	background: #f2fbff;
	border: 1px dashed #b6bcbf;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.dd-empty {
	border: 1px dashed #bbb;
	min-height: 100px;
	background-color: #e5e5e5;
	background-image: -webkit-linear-gradient(
			45deg,
			#fff 25%,
			transparent 25%,
			transparent 75%,
			#fff 75%,
			#fff
		),
		-webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff
					75%, #fff);
	background-image: -moz-linear-gradient(
			45deg,
			#fff 25%,
			transparent 25%,
			transparent 75%,
			#fff 75%,
			#fff
		),
		-moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff
					75%, #fff);
	background-image: linear-gradient(
			45deg,
			#fff 25%,
			transparent 25%,
			transparent 75%,
			#fff 75%,
			#fff
		),
		linear-gradient(
			45deg,
			#fff 25%,
			transparent 25%,
			transparent 75%,
			#fff 75%,
			#fff
		);
	background-size: 60px 60px;
	background-position: 0 0, 30px 30px;
}

.dd-dragel {
	position: absolute;
	pointer-events: none;
	z-index: 9999;
}
.dd-dragel > .dd-item .dd-handle {
	margin-top: 0;
}
.dd-dragel .dd-handle {
	-webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
}

/**
 * Nestable Extras
 */

.nestable-lists {
	display: block;
	clear: both;
	padding: 30px 0;
	width: 100%;
	border: 0;
	border-top: 2px solid #ddd;
	border-bottom: 2px solid #ddd;
}

#nestable-menu {
	padding: 0;
	margin: 20px 0;
}

#nestable-output,
#nestable2-output {
	width: 100%;
	height: 7em;
	font-size: 0.75em;
	line-height: 1.333333em;
	font-family: Consolas, monospace;
	padding: 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#nestable2 .dd-handle {
	color: #fff;
	border: 1px solid #999;
	background: #bbb;
	background: -webkit-linear-gradient(top, #bbb 0%, #999 100%);
	background: -moz-linear-gradient(top, #bbb 0%, #999 100%);
	background: linear-gradient(top, #bbb 0%, #999 100%);
}
#nestable2 .dd-handle:hover {
	background: #bbb;
}
#nestable2 .dd-item > button:before {
	color: #fff;
}

.dd {
	float: left;
	width: 100%;
}
.dd + .dd {
	margin-left: 2%;
}

.dd-hover > .dd-handle {
	background: #2ea8e5 !important;
}

/**
 * Nestable Draggable Handles
 */

.dd3-content {
	display: block;
	height: 30px;
	margin: 5px 0;
	padding: 5px 10px 5px 40px;
	color: #333;
	text-decoration: none;
	font-weight: bold;
	border: 1px solid #ccc;
	background: #fafafa;
	background: -webkit-linear-gradient(top, #fafafa 0%, #eee 100%);
	background: -moz-linear-gradient(top, #fafafa 0%, #eee 100%);
	background: linear-gradient(top, #fafafa 0%, #eee 100%);
	-webkit-border-radius: 3px;
	border-radius: 3px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.dd3-content:hover {
	color: #2ea8e5;
	background: #fff;
}

.dd-dragel > .dd3-item > .dd3-content {
	margin: 0;
}

.dd3-item > button {
	margin-left: 30px;
}

.dd3-handle {
	position: absolute;
	margin: 0;
	left: 0;
	top: 0;
	cursor: pointer;
	width: 30px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: 1px solid #aaa;
	background: #ddd;
	background: -webkit-linear-gradient(top, #ddd 0%, #bbb 100%);
	background: -moz-linear-gradient(top, #ddd 0%, #bbb 100%);
	background: linear-gradient(top, #ddd 0%, #bbb 100%);
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.dd3-handle:before {
	content: "≡";
	display: block;
	position: absolute;
	left: 0;
	top: 3px;
	width: 100%;
	text-align: center;
	text-indent: 0;
	color: #fff;
	font-size: 20px;
	font-weight: normal;
}
.dd3-handle:hover {
	background: #ddd;
}

/**
 * Socialite
 */

.socialite {
	display: block;
	float: left;
	height: 35px;
}

.collaps-form {
	position: relative;
	color: var(--primary-color);
	cursor: pointer;
	width: 34px;
	height: 34px;
	background: -webkit-linear-gradient(top, #61c5d0 0%, #eee 100%);
	background: -moz-linear-gradient(top, #61c5d0 0%, #eee 100%);
	background: linear-gradient(top, #61c5d0 0%, #eee 100%);
	bottom: 0;
	left: 0;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	float: right;
	border: none;
	outline: none;
}

.collaps-form:hover {
	background: #fac1c6;
}

.collaps-form::before {
	content: "\f013";
	font-family: FontAwesome;
	font-size: 13px;
	margin-right: 0;
	transition: all ease-in-out 5s;
}

.active::before {
	transform: rotate("infinite");
}

.collaps-form-content {
	display: none;
	background-color: transparent;
	padding: 1rem;
	border: 1px solid var(--medium-color);
	border-top: none;
	position: relative;
	bottom: 6px;
}

/* css nestable end */

/* css chart start */
.chart-container {
	height: 60vh;
	position: relative;
}
/* css chart end */

/*css message page start*/
.message-page-tittle {
	padding: 0;
	margin: 0;
}

.message-left-side {
	width: 35%;
}

.message-list-panel {
	height: 60vh;
	overflow-y: auto;
}

.message-right-side {
	width: 65%;
}

.btn-message-list {
	background-color: rgba(217, 217, 217, 0.5);
	text-align: left;
	border-bottom: 1px solid var(--medium-color);
	margin-bottom: 5px;
	width: 90%;
	position: relative;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.btn-message-list:hover {
	background-color: var(--medium-color);
}

.btn-message-list-active {
	background-color: var(--primary-color);
	text-align: left;
	border-bottom: 1px solid var(--primary-color);
	margin-bottom: 5px;
	width: 90%;
	color: #fff;
	position: relative;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.btn-message-list-active:hover {
	background-color: #0084d0;
}

.btn-message-dot {
	width: 10%;
	float: right;
	background-color: rgba(217, 217, 217, 0.5);
	text-align: center;
	align-content: center;
	border-bottom: 1px solid var(--medium-color);
	margin-bottom: 5px;
	position: relative;
}

.btn-message-dot:hover {
	background-color: var(--medium-color);
}

.btn-message-dot-active {
	width: 10%;
	float: right;
	background-color: var(--primary-color);
	text-align: center;
	color: #fff;
	align-content: center;
	border-bottom: 1px solid var(--primary-color);
	margin-bottom: 5px;
	position: relative;
}

.btn-message-dot-active:hover {
	background-color: #0084d0;
}

.message-first-panel {
	background-color: rgba(217, 217, 217, 0.3);
	border: 1px solid var(--medium-color);
	height: 100%;
	text-align: center;
	align-content: center;
	position: relative;
}

.chat-logo {
	width: 50%;
	height: 50%;
	margin-top: 5%;
}

.info-panel-message {
	width: 300px;
	margin: 0 auto;
	text-align: center;
	align-content: center;
	position: relative;
}

.form-new-message {
	border: 1px solid var(--medium-color);
	height: 100%;
	position: relative;
}

.message-label {
	margin-bottom: 10px;
}

.label-float-icon {
	float: right;
}

.btn-send {
	float: right;
	color: #fff;
	background-color: var(--secondary-color);
	border-color: none;
}

.btn-send:hover {
	background-color: rgba(0, 157, 165, 0.5);
}

.message-display {
	background-color: rgba(217, 217, 217, 0.3);
	border: 1px solid var(--medium-color);
	height: 100%;
	position: relative;
	margin: 0;
	padding: 0;
}

.message-subject {
	margin: 0 0 5px 0;
	padding: 1rem;
	width: 100%;
	height: 10%;
	background-color: #fff;
	border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
	-webkit-border-radius: 10px 10px 0 0;
}

.message-subject h6 {
	display: inline-block;
	width: 80%;
	top: 0;
	margin-bottom: 0;
	position: absolute;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 7px;
}

.message-subject .message-session-cek {
	position: absolute;
	right: 30px;
	top: 8px;
}

.message-play {
	height: 55vh;
	overflow-y: auto;
	overflow-x: hidden;
}

.message-play-list {
	padding: 0 1rem 0 1rem;
}

.talkbubble-other {
	width: fit-content;
	height: max-content;
	max-width: 57%;
	min-width: 10%;
	background: #5cf2e5;
	position: relative;
	padding: 5px 1rem 5px 1rem;
	margin: 0 0 5px 1rem;
	display: inline-block;
	-moz-border-radius: 0px 10px 10px 10px;
	-webkit-border-radius: 0px 10px 10px 10px;
	border-radius: 0px 10px 10px 10px;
}

.talkbubble-other:before {
	content: "";
	position: absolute;
	right: 98%;
	top: 0;
	width: 0;
	height: 0;
	border-top: 1px solid transparent;
	border-right: 26px solid #5cf2e5;
	border-bottom: 13px solid transparent;
}

.talkbubble-other p {
	width: 100%;
	position: relative;
	overflow-wrap: break-word;
	margin: 0;
	display: inline-block;
}

.other-user {
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.message-play-list img {
	width: 50px;
	float: left;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.talkbubble-self {
	width: fit-content;
	height: max-content;
	max-width: 57%;
	min-width: 10%;
	background: #5cf2ad;
	position: relative;
	padding: 5px 1rem 5px 1rem;
	margin: 0 1rem 5px 0;
	-moz-border-radius: 10px 0px 10px 10px;
	-webkit-border-radius: 10px 0px 10px 10px;
	border-radius: 10px 0px 10px 10px;
	float: right;
}

.talkbubble-self:before {
	content: "";
	position: absolute;
	left: 98%;
	top: 0;
	width: 0;
	height: 0;
	border-top: 1px solid transparent;
	border-left: 26px solid #5cf2ad;
	border-bottom: 13px solid transparent;
}

.talkbubble-self p {
	width: 100%;
	position: relative;
	overflow-wrap: break-word;
	margin: 0;
}

.message-send {
	background-color: #fff;
	position: absolute;
	bottom: 0;
	height: 10%;
	border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	-webkit-border-radius: 0 0 10px 10px;
}

.input-text {
	width: 65%;
	margin: 7px;
	border: 1px solid var(--medium-color);
}

.btn-send-second {
	width: 30%;
	margin: 2px 8px;
	color: #fff;
	background-color: var(--secondary-color);
	border-color: none;
	float: right;
	border-radius: 5px;
}

.btn-send-second:hover {
	background-color: rgba(0, 157, 165, 0.5);
}

/*css message page end*/

/* css progress bar start */
.progress-bar-primary > progress {
	width: 100%;
	height: 13px;
	border-radius: 10px;
}
.progress-bar-primary > progress::-webkit-progress-bar {
	background: rgba(30, 66, 105, 0.3);
	border-radius: 10px;
}

.progress-bar-primary > progress::-webkit-progress-value {
	background: var(--primary-color);
	border-radius: 10px;
}

.progress-bar-secondary > progress {
	width: 100%;
	height: 13px;
	border-radius: 10px;
}
.progress-bar-secondary > progress::-webkit-progress-bar {
	background: rgba(75, 192, 192, 0.3);
	border-radius: 10px;
}

.progress-bar-secondary > progress::-webkit-progress-value {
	background: var(--secondary-color);
	border-radius: 10px;
}

.progress-bar-danger > progress {
	width: 100%;
	height: 13px;
	border-radius: 10px;
}
.progress-bar-danger > progress::-webkit-progress-bar {
	background: rgba(232, 90, 103, 0.3);
	border-radius: 10px;
}

.progress-bar-danger > progress::-webkit-progress-value {
	background: #e85a67;
	border-radius: 10px;
}

/* css progress bar end */

/* CSS RKK Start */
.rkk-page-tittle {
	padding: 0;
	margin: 0;
}

.rkk-list-panel {
	height: 80vh;
	overflow-y: auto;
}

.rkk-list-finish {
	border: none;
	outline: none;
	padding: 0.75rem 0.5rem;
	font-size: 16px;
	width: 100%;
	background-color: #f15b67;
	font-weight: bold;
	margin-bottom: 5px;
	border-radius: 5px;
}

.rkk-list-active {
	border: none;
	outline: none;
	padding: 0.75rem 0.5rem;
	font-size: 16px;
	width: 100%;
	background-color: var(--secondary-color);
	font-weight: bold;
	margin-bottom: 5px;
	border-radius: 5px;
}

.rkk-list {
	border: none;
	outline: none;
	padding: 0.75rem 0.5rem;
	font-size: 16px;
	width: 100%;
	background-color: var(--medium-color);
	color: var(--dark-color);
	font-weight: bold;
	margin-bottom: 5px;
	border-radius: 5px;
}

.rkk-hor-form {
	display: grid;
	grid-template-columns: 2fr 2fr;
	margin-bottom: 1rem;
	position: relative;
	font-weight: bold;
}

.rkk-bold {
	font-weight: bold;
}

.rkk-p-modal {
	margin-left: 2rem;
}

.grid-3-rkk {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

/* CSS RKK End */

footer {
	background-color: var(--light-color);
	padding-left: 300px;
}

footer p {
	margin: 0;
}

/*============= BEGIN TAMBAH CSS CUSTOM ===============*/
.desc-label{
	font-size: 14px;
	padding:10px
}

.date-label{
	font-size:14px;
	font-weight: bold;
	color : white;
	padding : 5px;
	background-color: red
}

.date-label-sub{
	font-size:13px;
	font-weight: bold;
	padding : 5px;
}

.header-tb{
	background-color: #004269;
	color:white
}

.font-red{
	color : red;
}

.label-red{
	background-color : red;
	padding : 4px;
}

.font-white{
	color : white;
}

.left{
	text-align: left !important;
}
.right{
	text-align: right  !important;
}
.center{
	text-align: center !important;
}

/*------- BEGIN TILES -------*/
.desc-label{
        font-size: 15px;
    }
    .desc-export{
        font-size: 12px;
        width:90px
    }
    .btn-present{
        padding: 7px 7px;;
        vertical-align: middle
    }
    .btn-yellow{
        background-color: yellow
    }

    .border {
        font-size: 1.6rem;
        display: grid;
        border: 3px solid;
        padding: 1rem;
        border-color: rgba(31, 21, 26, 0.38);
    }

    .full-withradius {
    background-color: rgba(157, 157, 157, 0.78);

    /*The background extends to the outside edge of the padding. No background is drawn beneath the border.*/
    background-clip: padding-box;

    border: solid 8px transparent;
    border-radius: 0.8rem;

    &:before {
        content: "";
        z-index: -1;
        margin: -8px; /* same as border width */
        border-radius: inherit; /* inherit container box's radius */
        background: linear-gradient(to left, turquoise, greenyellow);
    }
}

.border-inner {
    padding: 10px;
    padding-left : 5px;
    width: :50px !important;
}

.text-inner {
    font-size:15px;
}

.inner-label{
    padding : 7px;
}

.header-tiles{
    font-size:16px;
}

.card-container {
  display: flex;
  justify-content: center;
}

.card-group {
  display: grid;
  width: 95%;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 15px;
}

.card-tiles {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(149, 134, 149, 0.96);
  color: white;
}
/*------- END TILES -------*/


/*============= END TAMBAH CSS CUSTOM ===============*/
