@charset "utf-8";

/* IMPORT RESET */
@import url("normalize.css");

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	*behavior: url(../../js/boxsizing.htc);
	/*
		If you need support for IE7 and lower make
		sure the boxsizing.htc file is linked properly.
		More info here:  https://github.com/Schepp/box-sizing-polyfill
	*/
}

/*Scrollbar CSS*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    /*background: #88c932;*/
    background: #1f4719;
}

/*font*/
@font-face
{
    font-family: 'myriad-pro';
    src: url('../../fonts/MyriadPro-Regular.otf');
}
@font-face
{
    font-family: 'myriad-pro-bold';
    src: url('../../fonts/MyriadPro-Bold.otf');
}
@font-face
{
    font-family: 'myriad-pro-semibold';
    src: url('../../fonts/MyriadPro-Semibold.otf');
}

@font-face
{
    font-family: 'segoe-ui';
    src: url('../../fonts/segoeui.ttf');
}
@font-face
{
    font-family: 'segoe-ui-bold';
    src: url('../../fonts/segoeuib.ttf');
}
@font-face
{
    font-family: 'segoe-ui-semibold';
    src: url('../../fonts/seguisb.ttf');
}
@font-face
{
    font-family: 'segoe-ui-italic';
    src: url('../../fonts/segoeuii.ttf');
}

.ft-myriad-pro {
	font-family: 'myriad-pro';
}

.ft-myriad-pro-bold {
	font-family: 'myriad-pro-bold';
}

.ft-myriad-pro-semibold {
	font-family: 'myriad-pro-semibold';
}

.ft-segoe-ui {
	font-family: 'segoe-ui';
}

.ft-segoe-ui-bold {
	font-family: 'segoe-ui-bold';
}

.ft-segoe-ui-semibold {
	font-family: 'segoe-ui-semibold';
}

.ft-segoe-ui-italic {
	font-family: 'segoe-ui-italic';
}

.window-height {
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 0px;
}

.window-width {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 0px;
}


/* Global */
html, body {
	padding: 0px;
	margin: 0px;
}

img {
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: 0;
}

input:focus {
    outline: 0px;
}

.color-orange-creids {
	color: #f7961f;
}

.color-blue-creids {
	color: #0d0f3b;
}

.color-green {
	color: green;
}

.color-blue {
	color: blue;
}

.color-red {
	color: red;
}

.color-orange {
	color: orange;
}

.bg-orange-creids {
	background: #f7961f;
}

.bg-blue-creids {
	background: #0d0f3b;
}

.bg-green {
	background: green !important;
}

.bg-blue {
	background: blue !important;
}

.bg-red {
	/* background: red !important; */
	background: #ea4949 !important;
}

.bg-orange {
	background: orange !important;
}


.blur-container {
	position: fixed;
	display: block;
	width: 100%;
	height: 100vh;
	left: 0px;
	top: 0px;
	/* background: rgba(255, 255, 255, 0.9); */
	background: rgba(0, 0, 0, 0.8);
	z-index: 200;
}

.blur-container.hiden {
    display: none;
}

.blur-content {
    position: relative;
	display: block;
	width: calc(100% - 60px);
	max-width: 350px;
	padding: 20px 30px;
	line-height: 24px;
	color: #222;
	font-size: 14px;
	background: #fff;
	text-align: center;
    margin: 0px auto;
    border-radius: 10px;
}

.blur-content.success {
    border: 2px solid green;
}

.blur-content.warning {
    border: 2px solid orange;
}

.blur-content.error {
    border: 2px solid red;
}

.blur-content-icon {
    position: relative;
    display: block;
    font-size: 35px;
    margin-bottom: 10px;
}

.blur-content.success .blur-content-icon {
    color: green;
}

.blur-content.warning .blur-content-icon {
    color: orange;
}

.blur-content.error .blur-content-icon {
    color: red;
}

.blur-close {
	position: absolute;
    display: block;
    right: -45px;
    font-size: 40px;
    top: 0px;
    color: #fff;
    cursor: pointer;
}


/*Pagination*/
.pagination {
	position: relative;
	display: block;
	font-size: 0px;
	padding: 0px;
	text-align: center;
	margin: 0px 0px 110px;
	/* font-family: "roboto"; */
}

.pagination li {
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 19px;
    margin: 0px 4px;
    border-radius: 15px;
    overflow: hidden;
}

.pagination li * {
	position: relative;
	display: block;
	height: 50px;
	width: 50px;
	line-height: 50px;
	background: transparent;
	color: #444344;
	border: 0px !important;
	margin: 0px !important;
	padding: 0px !important;
	outline: 0px !important;

	-webkit-transition: color 0.4s, background 0.4s;
	-moz-transition: color 0.4s, background 0.4s;
	-ms-transition: color 0.4s, background 0.4s;
	transition: color 0.4s, background 0.4s;
}

.pagination li:hover * {
	background: #c9252d;
	color: #fff;

	-webkit-transition: color 0.4s, background 0.4s;
	-moz-transition: color 0.4s, background 0.4s;
	-ms-transition: color 0.4s, background 0.4s;
	transition: color 0.4s, background 0.4s;
}

.pagination li.active * {
	background: #c9252d !important;
	color: #fff !important;
}

.page-item:first-child {
	display: none;
}

.page-item:last-child {
	display: none;
}

.page-item[aria-label="« Previous"] {
	font-size: 0px;
}

.page-item[aria-label="Next »"] {
	font-size: 0px;
}

.page-link[aria-label="« Previous"]:parent {
	font-size: 0px;
}

.page-link[aria-label="Next »"]:parent {
	font-size: 0px;
}

.flex.items-center.justify-between {
    position: relative;
	display: block;
	font-size: 0px;
	padding: 30px 0px;
	font-family: myriad-pro;
}

.flex.items-center.justify-between > * {
    position: relative;
	display: inline-block;
	vertical-align: top;
}

.relative.z-0.inline-flex.shadow-sm.rounded-md > span, .relative.z-0.inline-flex.shadow-sm.rounded-md > a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 24px !important;
    color: #5c5c5c;
    margin: 0px 5px 10px !important;
    min-width: 24px;
    padding: 0px 5px !important;
    height: 24px !important;
    border: 0px !important;
    text-align: center !important;
    -webkit-transition: border 0.3s, color 0.3s;
    -moz-transition: border 0.3s, color 0.3s;
    -ms-transition: border 0.3s, color 0.3s;
    transition: border 0.3s, color 0.3s;
}

.w-5.h-5 {
    position: absolute;
    display: block;
    width: 100%;
    left: 0px;
    top: -1px;
}

.flex.items-center.justify-between > *:first-child {
    display: none !important;
}

.flex.items-center.justify-between > .hidden > *:first-child {
    display: none !important;
}

.relative.z-0.inline-flex.shadow-sm.rounded-md > span[aria-disabled="true"] {
    display: none;
}

.relative.z-0.inline-flex.shadow-sm.rounded-md span {
	/* border: 1px solid #0697db; */
    border: 0px !important;
    padding: 0px 5px !important;
	color: #f7961f;
}

.relative.z-0.inline-flex.shadow-sm.rounded-md > a:hover {
	border: 1px solid #f7961f;
	color: #f7961f;
	-webkit-transition: border 0.3s, color 0.3s;
	-moz-transition: border 0.3s, color 0.3s;
	-ms-transition: border 0.3s, color 0.3s;
	transition: border 0.3s, color 0.3s;
}


/* ----- Master CSS ----- */

.mid {
	position: relative;
	width: 100%;
	height: 100%;

	justify-content: center;
	display: flex;
	align-items: center;
}

.container {
	position: relative;
	display: block;
	width: 100%;
	max-width: unset;
	color: #222;
	font-size: 14px;
    padding: 0px;
    overflow: hidden;
}

.header-container {
    position: fixed;
    display: block;
    width: 100%;
    height: 70px;
    z-index: 10;
}

.header-logo {
    position: absolute;
    /* top: 0px; */
    top: 25px;
    left: 30px;
    display: block;
    /* height: 100%; */
    height: auto;
    width: 155px;
    /* background: url('../../img/back/creids_logo_white.png') no-repeat; */
    background: url('../../img/back/pekerjaan_anak_logo.svg') no-repeat;
    background-position: 50% !important;
    background-size: contain !important;
    /* background-size: auto 20px !important; */

    aspect-ratio: 155/99;
}

.header-icon-group {
    margin: 0px;
    padding: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    text-align: right;
    height: 100%;
}

.header-icon {
    position: relative;
    display: block;
    padding: 0px 10px;
	margin: 0px 10px;
	cursor: pointer;
    height: 100%;
}

.header-icon:last-child {
    margin-right: 20px;
}

.header-icon-hello {
    position: relative;
    display: block;
    padding: 5px 20px 10px;
    margin-bottom: 10px;
    /* text-align: center; */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.header-icon-hello span {
    position: relative;
    display: block;
    line-height: 20px;
    color: #222 !important;
}

.header-icon-switch {
	position: relative;
	display: block;
    color: #fff;
	height: 100%;
}

.bi:before {
	vertical-align: top;
}

.header-icon > .header-icon-switch > .bi {
	position: relative;
    display: block;
    font-size: 20px;
    height: 25px;
    top: calc((100% - 25px) / 2);
	color: #222;

	-webkit-transition: color 0.4s;
	-moz-transition: color 0.4s;
	-ms-transition: color 0.4s;
	transition: color 0.4s;
}

.header-icon:hover > .header-icon-switch > .bi {
	/* color: #f7961f; */

	-webkit-transition: color 0.4s;
	-moz-transition: color 0.4s;
	-ms-transition: color 0.4s;
	transition: color 0.4s;
}

.header-icon.active > .header-icon-switch > .bi {
	/* color: #f7961f !important; */
}

.header-icon > .header-icon-switch > span {
	position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 20px;
    font-size: 9px;
    border-radius: 50%;
    right: -8px;
    top: calc((100% - 37px) / 2);
    background: red;
}

.header-icon.menu .header-icon-switch {
    width: 25px;
    height: 16px;
    top: calc((100% - 16px) / 2);

}

.header-icon.notification .bi:before {
    font-size: 18px;
    top: 1px;
    position: relative;
}

.header-icon.help .bi:before {
    font-size: 23px;
    top: -1px;
    position: relative;
}

.header-icon.search .bi:before {
    font-size: 16px;
    top: calc((100% - 16px) / 2);
}

.header-icon.search .bi {
    top: calc((100% - 16px) / 2);
}

.header-icon.menu {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);

    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    -ms-transition: -ms-transform 0.5s;
    transition: transform 0.5s;
}

.nav-container .header-icon.menu {
    position: absolute;
    display: block;
    padding: 0px 10px;
	margin: 0px 10px;
	cursor: pointer;
    height: 70px;
    right: 10px;
    top: 0px;
}

.header-icon.menu.active {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);

    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    -ms-transition: -ms-transform 0.5s;
    transition: transform 0.5s;
}

.header-icon-menu-line {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background: #222;
    margin-bottom: 5px;
    border-radius: 1px;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.header-icon:hover .header-icon-menu-line {
    /* background: #f7961f; */

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.header-icon.active .header-icon-menu-line {
    /* background: #f7961f !important; */
}

.header-icon.active .header-icon-menu-line.line1 {
    top: 0px;

    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);

    -webkit-transition: -webkit-transform 0.5s, top 0.5s, background 0.4s;
    -moz-transition: -moz-transform 0.5s, top 0.5s, background 0.4s;
    -ms-transition: -ms-transform 0.5s, top 0.5s, background 0.4s;
    transition: transform 0.5s, top 0.5s, background 0.4s;
}

.header-icon.active .header-icon-menu-line.line1 {
    top: 6px;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);

    -webkit-transition: -webkit-transform 0.5s, top 0.5s, background 0.4s;
    -moz-transition: -moz-transform 0.5s, top 0.5s, background 0.4s;
    -ms-transition: -ms-transform 0.5s, top 0.5s, background 0.4s;
    transition: transform 0.5s, top 0.5s, background 0.4s;
}

.header-icon .header-icon-menu-line.line2 {
    opacity: 1;

    -webkit-transition: opacity 0.5s, background 0.4s;
    -moz-transition: opacity 0.5s, background 0.4s;
    -ms-transition: opacity 0.5s, background 0.4s;
    transition: opacity 0.5s, background 0.4s;
}

.header-icon.active .header-icon-menu-line.line2 {
    opacity: 0;

    -webkit-transition: opacity 0.5s, background 0.4s;
    -moz-transition: opacity 0.5s, background 0.4s;
    -ms-transition: opacity 0.5s, background 0.4s;
    transition: opacity 0.5s, background 0.4s;
}

.header-icon.active .header-icon-menu-line.line3 {
    top: -5px;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);

    -webkit-transition: -webkit-transform 0.5s, top 0.5s, background 0.4s;
    -moz-transition: -moz-transform 0.5s, top 0.5s, background 0.4s;
    -ms-transition: -ms-transform 0.5s, top 0.5s, background 0.4s;
    transition: transform 0.5s, top 0.5s, background 0.4s;
}

.header-icon .header-icon-menu-line.line3 {
    top: 0px;

    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);

    -webkit-transition: -webkit-transform 0.5s, top 0.5s, background 0.4s;
    -moz-transition: -moz-transform 0.5s, top 0.5s, background 0.4s;
    -ms-transition: -ms-transform 0.5s, top 0.5s, background 0.4s;
    transition: transform 0.5s, top 0.5s, background 0.4s;
}

.header-icon-menu-line:last-child {
    margin-bottom: 0px;
}

.header-icon-dropdown-group {
    position: absolute;
    /* display: block; */
    display: none;
    right: 0px;
    top: calc(100% - 20px);
    background: #fff;
    padding: 10px 0px;
    margin: 0px;
    width: 230px;
    /* border: 1px solid #d2d2d2; */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    text-align: left;
    font-size: 14px;
    overflow: hidden;
    max-height: calc(100vh - 140px);
    border-radius: 10px;
}

.header-icon-dropdown-group.active {
    display: block;
}

.header-icon-dropdown-list {
    position: relative;
    padding: 10px 20px 10px 30px;
    width: 100%;
}

.header-icon-dropdown-list.no-dot {
    display: block;
    padding: 0px;
}

.header-icon-dropdown-list.no-dot a {
    position: relative;
    display: block;
    background: transparent;
    padding: 5px 20px;
    color: #222;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.header-icon-dropdown-list.no-dot a:hover {
    color: #fff;
    background: #f7961f;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.header-icon-dropdown-list.no-dot a span.strong {
    font-weight: bold;
    color: #f7961f;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    transition: color 0.4s;
}

.header-icon-dropdown-list.no-dot a:hover span.strong {
    color: #fff;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    transition: color 0.4s;
}


.header-icon-dropdown-list.with-icon {
    display: block;
    /* padding: 10px 20px 10px 50px; */
    padding: 0px;
}

.header-icon-dropdown-list.with-icon .bi {
    position: absolute;
    display: block;
    top: 7px;
    left: 20px;
    font-size: 17px;
}

.header-icon-dropdown-list.with-icon a {
    position: relative;
    display: block;
    background: transparent;
    padding: 5px 20px 5px 50px;
    color: #222;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.header-icon-dropdown-list.with-icon a:hover {
    color: #fff;
    background: #1f4719;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.header-icon-dropdown-list.with-icon a span.strong {
    font-weight: bold;
    color: #1f4719;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    transition: color 0.4s;
}

.header-icon-dropdown-list.with-icon a:hover span.strong {
    color: #fff;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    transition: color 0.4s;
}

.help-container {
    position: relative;
    display: none;
    width: calc(100% - 60px);
    margin: 0px auto;
    /* border: 1px solid #84c315; */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    top: calc(100% + 20px);
    padding: 20px 20px 20px 45px;
    font-size: 14px;
    line-height: 26px;
    /* background: #feead2; */
    background: #fff;
    color: #222;
    border-radius: 10px;
    z-index: 10;
    max-height: calc(100vh - 140px);
    overflow: auto;
}

.help-container.active {
    display: block;
}

.help-title {
    position: relative;
    display: table;
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    left: -15px;
    font-weight: normal;
    line-height: normal;
    border-bottom: 1px solid #fff;
}

.help-list {
    position: relative;
}

.header-container.active {
	opacity: 1 !important;
	top: 0px !important;
	/* background: #222 !important; */
    background: #84c315 !important;
}




.not-active.headroom--pinned {
    opacity: 1 !important;
	top: 0px !important;
	/* background: #222; */
    background: #84c315;

    -webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
}


.not-active.headroom--unpinned {
    opacity: 0 !important;
	top: -80px !important;

    -webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
}

.not-active.nav-opened .headroom--unpinned {
	opacity: 1 !important;
	top: 0px !important;
	/* background: #222 !important; */
    background: #84c315 !important;

	-webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
}

.not-active.headroom--top {
	opacity: 1 !important;
	top: 0px !important;
	/* background: #222 !important; */
    background: #84c315 !important;

    -webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
}

.active.headroom--top {
	opacity: 1 !important;
	top: 0px !important;
	/* background: #222 !important; */
    background: #84c315 !important;

    -webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
}



.not-active.headroom--not-top {
	/* background: #222; */
    background: #84c315;

    -webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
}

.not-active.headroom--not-top .header-nav-list:hover span {
	/* color: #ec3137; */
}

.not-active.headroom--not-top .header-nav-list span {
	/* color: #fff; */
}

.not-active.headroom--not-top .header-nav-list.box {
	/* border: 1px solid #222; */
	/* background: #222; */
	border: 1px solid #84c315;;
    background: #84c315;

	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-ms-transition: background 0.4s;
	transition: background 0.4s;
}

.not-active.headroom--not-top .header-nav-list.box:hover {
	/* border: 1px solid #ec3137; */
	/* background: #222; */
    background: #84c315;

	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-ms-transition: background 0.4s;
	transition: background 0.4s;
}

.not-active.headroom--not-top .header-nav-list.group .after {
	border-left: 2px solid #222;
	border-bottom: 2px solid #222;
}

.not-active.headroom--not-top .header-nav-list.group:hover:after {
	border-left: 2px solid #ec3137;
	border-bottom: 2px solid #ec3137;
}



.nav-opened .headroom--not-top {
	/* background: #222 !important; */
    background: #84c315;

	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-ms-transition: background 0.4s;
	transition: background 0.4s;
}



.nav-container {
    position: fixed;
    display: none;
    top: 70px;
    /* top: 0px; */
    right: 0px;
    color: #fff;
    height: calc(100vh - 70px);
    /* height: 100vh; */
    width: 270px;
    font-size: 14px;
    overflow: auto;
    /* background: #222; */
    background: #84c315;
    z-index: 10;

    /* padding-top: 70px; */
}

.nav-group-ctn {
    position: relative;
    display: none;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.nav-group-ctn.active {
    display: block;
}

.nav-container.active {
    display: block;
}

.nav-group {
    position: relative;
    display: block;
    padding: 20px 0px;
    margin-bottom: 10px;
}

.nav-group:before {
    content: '';
    position: absolute;
    display: block;
    width: calc(100% - 60px);
    left: 30px;
    bottom: 0px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.nav-group:first-child {
    padding-top: 20px;
}

.search-content .nav-group:nth-child(2) {
    padding-top: 20px;
}

.nav-group:last-child {
    padding-bottom: 30px;
}

.nav-group:last-child:before {
    display: none;
}

.nav-group-title {
    position: relative;
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    padding: 0px 30px;
    font-weight: bold;

    color: #222 !important;
}

.nav-item-group {
    position: relative;
    display: block;
}

.nav-item-list {
    position: relative;
    display: block;
    background: transparent;
    color: #222;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.nav-item-list:hover {
    background: #537a0d;
    color: #fff;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

a.nav-item-list {
    padding: 8px 30px;
}

.nav-item-switch {
    position: relative;
    display: block;
    padding: 8px 30px;
    cursor: pointer;
    background: transparent;
    color: #222;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.nav-item-switch:hover {
    background: #537a0d;
    color: #fff;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.nav-item-switch:after {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: top;
    top: 3px;
    margin-left: 5px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #222;
    border-left: 2px solid #222;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);

    -webkit-transition: -webkit-transform 0.4s, top 0.4s, border 0.4s;
    -moz-transition: -moz-transform 0.4s, top 0.4s, border 0.4s;
    -ms-transition: -ms-transform 0.4s, top 0.4s, border 0.4s;
    transition: transform 0.4s, top 0.4s, border 0.4s;
}

.nav-item-switch:hover:after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;

    -webkit-transition: -webkit-transform 0.4s, top 0.4s, border 0.4s;
    -moz-transition: -moz-transform 0.4s, top 0.4s, border 0.4s;
    -ms-transition: -ms-transform 0.4s, top 0.4s, border 0.4s;
    transition: transform 0.4s, top 0.4s, border 0.4s;
}

.nav-item-switch.active:after {
    top: 8px;

    -webkit-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    -ms-transform: rotate(-225deg);
    transform: rotate(-225deg);

    -webkit-transition: -webkit-transform 0.4s, top 0.4s;
    -moz-transition: -moz-transform 0.4s, top 0.4s;
    -ms-transition: -ms-transform 0.4s, top 0.4s;
    transition: transform 0.4s, top 0.4s;
}

.nav-item-drop {
    position: relative;
    display: none;
    margin: 0px;
    padding: 0px;
}

.nav-item-drop-list {
    position: relative;
    display: block;
}

.nav-item-drop-list .nav-item {
    padding-left: 50px;
}

.nav-item-drop-list .nav-item:before {
    content: '';
    position: absolute;
    display: block;
    left: 30px;
    top: 14px;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #222;
    border-right: 2px solid #222;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);

    -webkit-transition: border 0.4s;
    -moz-transition: border 0.4s;
    -ms-transition: border 0.4s;
    transition: border 0.4s;
}

.nav-item-drop-list:hover .nav-item:before {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;

    -webkit-transition: border 0.4s;
    -moz-transition: border 0.4s;
    -ms-transition: border 0.4s;
    transition: border 0.4s;
}

.nav-item {
    position: relative;
    display: block;
    padding: 8px 30px;
}

.nav-item-add {
    position: absolute;
    display: block;
    right: 0px;
    top: 0px;
    height: 100%;
    padding: 10px 7px;
    background: #222;
    font-size: 20px;
    /* border-left: 1px solid rgba(255, 255, 255, 0.2); */

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.nav-item-add:hover {
    background: #f7961f;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}


.search-item {
    position: relative;
    display: block;
    padding: 0px 30px;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
}

.search-item.submit {
    padding-top: 20px;
}

.search-label {
    position: relative;
    display: block;
}

.search-text {
    position: relative;
    display: block;
    width: 100%;
    height: 30px;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    background: #fff;
    padding: 0px 15px;
}

.search-item .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 28px;
}

.search-item .select2-container .select2-selection--single {
    height: 30px;
}

.search-item .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
}

.select2-container--default .select2-selection--single {
    border-radius: 10px;
}

.search-range-group {
    position: relative;
    display: block;
}

.search-text-separator {
    position: relative;
    display: block;
    text-align: center;
    padding: 10px 0px;
}

.search-radio-group {
    position: relative;
}

.search-radio-item {
    text-align: center;
}

.search-radio-img {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
}

.search-submit {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 10px;
    background: #1f4719;
    color: #fff;

    -webkit-transition: background 0.4s, border 0.4s, color 0.4s;
    -moz-transition: background 0.4s, border 0.4s, color 0.4s;
    -ms-transition: background 0.4s, border 0.4s, color 0.4s;
    transition: background 0.4s, border 0.4s, color 0.4s;
}

.search-submit:hover {
    border: 1px solid #222;
    background: #fff;
    color: #222;

    -webkit-transition: background 0.4s, border 0.4s, color 0.4s;
    -moz-transition: background 0.4s, border 0.4s, color 0.4s;
    -ms-transition: background 0.4s, border 0.4s, color 0.4s;
    transition: background 0.4s, border 0.4s, color 0.4s;
}

.content {
    position: relative;
    display: block;
    min-height: 200px;
}

.content-title-container {
    position: relative;
    display: block;
    width: 100%;
    /* padding: 100px 30px 50px; */
    padding: 130px 30px 50px;
    color: #fff;
    /* background: #222; */
    background: #84c315;
}

.content-title {
    position: relative;
    display: block;
    font-size: 24px;
    margin: 10px 0px 0px;
    /* color: #f7961f; */
    color: #fff;
}

.head-title-cust {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 21px;
}

.head-title-desc {
    position: relative;
    display: block;
    max-width: 645px;
    font-size: 14px;
    line-height: 17px;
}

.content-bre {
    position: relative;
    display: block;
    color: #fff;
}

.content-bre span {
    /* color: #f7961f; */
    color: #fff;
}

.content-ctn {
    position: relative;
    display: block;
    width: calc(100% - 60px);
    margin: -30px auto 0px;
}

/* .content-ctn > .row { */
.content-ctn .row {
    position: relative;
    width: calc(100% + 20px);
    left: -10px;
}

.content-group {
    margin: 0px auto 20px;
    padding: 0px
}

.content-group:last-child {
    margin-bottom: 0px;
}

.content-col {
    padding: 0px 10px;
}

.content-item {
    position: relative;
    display: block;
    background: #fff;
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
    /* border: 1px solid #d2d2d2; */
    /* box-shadow: 0px 2px 5px #ccc; */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.content-item .content-item {
    padding: 0px;
    box-shadow: 0px 0px 0px 0px;
    margin-bottom: 30px;
}

.content-item-title {
    position: relative;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d2d2d2;;
    font-size: 16px;
    /* color: #f7961f; */
}

.footer-container {
    position: relative;
    display: block;
    padding: 50px 30px;
    font-size: 12px;
}



/*
	CREIDS DB CSS
*/

.db-container {
	position: relative;
	display: block;
	width: 100vw;
	height: 100vh;
}

.db-content {
	position: relative;
	display: table;
	margin: auto;
	width: calc(100% - 40px);
	text-align: center;
	font-size: 0px;
}

.db-img {
	width: 200px;
	position: relative;
	display: block;
	margin: auto;
	margin-bottom: 50px;
}

.db-group {
	position: relative;
	display: block;
	margin-bottom: 50px;
}

.db-item {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin: 0px 3px;
	width: calc((100% / 3) - 6px);
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #fff;
	max-width: 150px;
	cursor: pointer;

	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-ms-transition: background 0.4s;
	transition: background 0.4s;
}

.pending {
	background: #d2d2d2 !important;
	cursor: auto !important;

	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-ms-transition: background 0.4s;
	transition: background 0.4s;
}

.migrate {
	background: green;
}

.fill {
	background: blue;
}

.rollback {
	background: red;
}

.db-status {
	position: relative;
	display: block;
	width: 100%;
	margin: auto;
	font-size: 18px;
	color: #0d0f3b;
}

.db-status.success {
	color: green;
}


.top-anim {
	top: 100px;
	opacity: 0;
}

.mob-icon-group {
    position: fixed;
    display: none;
    width: 100%;
    height: 50px;
    background: #84c315 !important;
    z-index: 100;
    bottom: 0px;
    left: 0px;
    margin: 0px;
    text-align: center;
}


/* Desktops and laptops */
@media screen and (max-width : 1366px) {

}

/* Tablet */
@media screen and (max-width: 1024px) {

}

/* Mobile */
@media screen and (max-width: 768px) {

}

@media screen and (max-width : 500px) {
    .header-container {
        height: 60px;
    }

    .header-logo {
        width: 110px;
        left: 20px;
        /* background-size: auto 17px !important; */
    }

    .header-icon-group {
        display: none;
    }

    .mob-icon-group {
        display: flex;
    }

    .header-icon:last-child {
        margin-right: 10px;
    }

    .header-icon.menu .header-icon-switch {
        margin: 0px auto;
    }

    .header-icon > .header-icon-switch > span {
        right: calc(50% - 18px);
    }

    .content-title-container {
        padding: 100px 20px 50px;
    }

    .content-ctn {
        width: calc(100% - 40px);
    }

    .nav-container {
        height: auto;
        max-height: calc(100vh - 60px - 50px);
        top: auto;
        bottom: 50px;
        width: 100vw;
    }

    .nav-group:last-child {
        padding-bottom: 10px;
    }

    .header-icon-dropdown-group {
        position: fixed;
        left: 0px;
        top: auto;
        bottom: 50px;
        padding: 20px 0px;
        width: 100vw;
        box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
        border-radius: 0px;
        max-height: calc(100vh - 50px - 60px);
    }

    .help-container {
        width: 100vw;
        background: #fff;
        box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
        position: fixed;
        bottom: 50px;
        left: 0px;
        top: auto;
        color: #222;
        border-radius: 0px;
        padding: 20px 20px 20px 35px;
        max-height: calc(100vh - 50px - 60px);
    }

    .help-title {
        border-bottom: 1px solid #222;
    }

    .content-title {
        font-size: 22px;
    }

    .blur-content {
        max-width: unset;
        width: calc(100% - 40px);
    }

    .blur-close {
        right: 0px;
        top: -45px;
    }

    .content-col {
        padding: 0px 10px;
        margin-bottom: 20px;
    }

    .content-col.col-12 {
        margin-bottom: 0px;
    }

    .content-col:last-child {
        margin-bottom: 0px;
    }

    .footer-container {
        padding-bottom: 100px;
    }
}
