/*
google fonts
*/
/*  For all headings  
font-family: 'Mukta', sans-serif;
@import url('https://fonts.googleapis.com/css2?family=Mukta&display=swap');


it is already imported in sb-admin.css so we are not importing it again here
*/

/* For all other general fonts : font-family: 'Assistant', sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Assistant&display=swap');

html {
  height: 100%;
}
body {
  min-height: 100%;
  font-family: 'Assistant', sans-serif;
  font-size: 14px;
}

/*
input settings
*/
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}

/*
js script alert
*/
.app-alert
{
	position: fixed;
	top: 10%;
	right: 0;
	z-index:10;
	width:40%;
	font-size: 16px;
	padding: 10px;
}

.app-alert.success
{
	background-color: #cfffd1;
	border: #1d7521 thin solid;
}

.app-alert.danger
{
	background-color: #ffcfd1;
	border: #751d21 thin solid;
}

.app-alert.warning
{
	background-color: #ffdbb3;
	border: #e68010 thin solid;
}

.alert-dismissable .close, .alert-dismissible .close
{
	right: -5px;
}

/*
defaults
*/
.col-def 
{
	padding:0px !important;
}

.row
{
	margin: 0px !important;
}

.container-fluid, .container
{
	padding:0px !important;
}

.y-scroll
{
	scroll-direction: horizontal;
	overflow-x: scroll;
}


/*
content css
*/
.full-page
{
}

.top-bar
{
	background-color: #036290;
	text-align: center;
	font-size: 16px;
	padding: 5px;
}

.top-bar a
{
	color: #fff;
	text-decoration: none;
}

/*
header
*/
.header
{
}

/*
bottom
*/
.bottom
{
	padding: 5px;
	text-align: left;
	position: fixed;
    bottom: 0px;
	left: 200px;
	background-color: #333;
	color: #fff;
	width: 100%;
}

.bottom a, .bottom
{
	color: #fff;
}


/*
admin panel css
*/
.admin-panel-content
{
	padding: 25px 15px;
}

.admin-panel-header
{
	padding: 0 !important;
	border-bottom: #ddd thin solid;
	margin: 15px;
	margin-bottom: 20px;
}

.admin-panel-header h1
{
	margin: 10px 0px;
	font-size: 18px;
	font-weight: bold;
	font-family: 'Mukta', sans-serif;
}

.panel
{
	border: #323b63 1px solid;
}

.panel .panel-heading
{
	border-bottom: #ddd thin solid;
	padding-top: 20px;
	padding-bottom: 20px;
}

.panel .panel-heading .panel-title
{
	font-family: 'Mukta', sans-serif;
	font-weight: bold;
	font-size: 18px;
}

.panel .panel-heading .panel-title a
{
	background-color: #4c84ff;
	color: #fff;
	text-decoration: none;
	font-weight: normal;
	padding: 5px;
	font-size: 12px;
	border-radius: 5px;
	margin: 0px;
}

.panel .panel-heading .panel-title .small
{
	font-size: 14px;
}

/*
form-1
*/
.form-1 .form-section-heading
{
	font-family: 'Mukta', sans-serif;
	font-size: 16px;
	font-weight: bold;
	border-bottom: #ddd thin solid;
	padding-bottom: 5px;
	margin-bottom: 15px;
	margin-top: 10px;
	background-color: #323b63;
	color: #fff;
	padding: 5px 10px;
}

/*
index-dashboard-box
*/
.index-dashboard-box
{
	padding: 15px;
	margin: 10px;
	background-color: #fff;
	box-shadow: #ddd 3px 3px 10px, #aaa -3px -3px 10px;
	border-left: #000 5px solid;
}

.index-dashboard-box a
{
	text-decoration: none !important;
	color: #000;
}

.index-dashboard-box .heading
{
	font-size: 22px;
	font-weight: bold;
	margin: 0;
}

.index-dashboard-box .content
{
	font-size: 18px;
	font-weight: bold;
}

.index-dashboard-box.box-1
{
	border-left-color: #0f5dbd;
	color: #000;
	background: linear-gradient(to right, #0f5dbd 50%, #fff 50%);
	background-size: 200% 100%;
	background-position: bottom right;
	transition: all .7s ease-out;
}
.index-dashboard-box.box-1:hover, .index-dashboard-box.box-1:hover a
{
	background-position: left bottom;
	color: #fff !important;
}

.index-dashboard-box.box-2
{
	border-left-color: #e31037;
	color: #000;
	background: linear-gradient(to right, #e31037 50%, #fff 50%);
	background-size: 200% 100%;
	background-position: bottom right;
	transition: all .7s ease-out;
}
.index-dashboard-box.box-2:hover, .index-dashboard-box.box-2:hover a
{
	background-position: left bottom;
	color: #fff !important;
}

.index-dashboard-box.box-3
{
	border-left-color: #1b9c0c;
	color: #000;
	background: linear-gradient(to right, #1b9c0c 50%, #fff 50%);
	background-size: 200% 100%;
	background-position: bottom right;
	transition: all .7s ease-out;
}
.index-dashboard-box.box-3:hover, .index-dashboard-box.box-3:hover a
{
	background-position: left bottom;
	color: #fff !important;
}

.index-dashboard-box.box-4
{
	border-left-color: #851ee6;
	color: #000;
	background: linear-gradient(to right, #851ee6 50%, #fff 50%);
	background-size: 200% 100%;
	background-position: bottom right;
	transition: all .7s ease-out;
}
.index-dashboard-box.box-4:hover, .index-dashboard-box.box-4:hover a
{
	background-position: left bottom;
	color: #fff !important;
}

/*
select2
*/
.select2-selection
{
	height: 34px !important;
	font-size: 16px;
}

.table-container
{
	overflow-x: scroll;
}

.list-table
{
	width: 100% !important;
}

.list-table th
{
	color: #051937;
	text-align: center;
}

.list-table .pagination
{
	margin-top: 10px;
}

.list-table td
{
	white-space: nowrap;
}

.list-table td .square-img-sm
{
	height: 50px;
	width: 50px;
	background-color: #fff;
	border-radius: 5px;
	padding: 2px;
}

.list-table td .rectangle-horizontal-img-sm
{
	height: 50px;
	width: 125px;
	background-color: #fff;
	border-radius: 5px;
	padding: 2px;
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus, .pagination > li > a, .pagination > li > span
{
	background-color: #fff !important;
	border: none;
	border: #aaa 1px solid;
	color: #051937;
	font-weight: bold;
	text-shadow: none;
}

 .pagination > .disabled > a:focus, .pagination > li > a:hover
 {
	color: #000;
 }

.pagination > .active > a
{
	color: #000;
	border: #aaa 1px solid;
}


/*
special-heading-1
*/
.special-heading-1
{
	margin-top: 30px;
	text-align: center;
	color: #fff;
	font-size: 35px;
}

.special-sub-heading-1
{
	margin-bottom: 30px;
	text-align: center;
	color: #fff;
	font-size: 25px;
}


.project-window-header
{
	background-color: #323b63;
	color: #fff;
	padding: 20px 10px;
	text-align: center;
}

.project-window-header dt, .project-window-header dd
{
	font-size: 14px;
	text-align: left;
	margin: 0px;
	margin-bottom: 5px;
	padding: 0px;
}

.project-action-links
{
	text-align: center;
	padding: 10px 0px;
	margin: 0px 0px 20px 0px;
	border-bottom: #323b63 1px solid;
	background-color: #e3f9ff;
}

.nav-tab-app-1 .nav-tabs
{
	background-color: #036290;
}

.nav-tab-app-1 .nav-tabs li a
{
	color: #fff;
}

.nav-tab-app-1 .nav-tabs li:hover, .nav-tab-app-1 .nav-tabs li:hover a
{
	background-color: #036290;
}

.nav-tab-app-1 .nav-tabs li.active
{
	background-color: #051937;
}

.nav-tab-app-1 .nav-tabs li.active a
{
	background-color: #051937;
	color: #fff;
	border: none;
}

.nav-tab-app-1 .tab-pane
{
	background-color: #fff;
	border: #eee 2px solid;
	border-top: none;
	padding: 20px 50px 20px 50px;
}

.nav-tab-app-1 .tab-pane .heading
{
	margin-top: 0px;
	text-align: center;
	font-weight: bold;;
}