/*
 *  Document   : main.css
 *  Author     : pixelcave
 *  Description: The main stylesheet of the template
 *
 *  Structure (with shortcodes):
 *      (#m01mls) MAIN LAYOUT
 *      (#m02hds) HEADER
 *      (#m03sns) SIDEBAR/NAVIGATION
 *      (#m04mcs) MAIN CONTENT
 *      (#m05pgs) PAGES
 *      (#m06bos) BOOTSTRAP OVERWRITE/EXTEND STYLES
 *      (#m07hes) HELPERS
 *      (#m08ths) THEMES
 *      (#m09res) RESPONSIVE
 *      (#m10rts) RETINA
 */

/*
=================================================================
(#m01mls) MAIN LAYOUT
=================================================================
*/

/* Include Poppins font from Google Web Fonts */
/* @import url('http://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap'); */
@import
	url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap')
	;

body {
	font-family: 'Roboto', sans-serif;
	color: #333;
	font-size: 14px;
	background-color: #ffffff;
}

#page-container,#main-container {
	min-width: 320px;
}

#page-container {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	overflow-x: hidden;
	-webkit-transition: background-color 0.2s ease-out;
	transition: background-color 0.2s ease-out;
}

#sidebar {
	width: 0;
	position: absolute;
	overflow: hidden;
}

#sidebar,#main-container,.header-fixed-top header,.header-fixed-bottom header
	{
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

#page-content {
	margin-top: 70px;
	padding: 10px 5px 1px;
	min-height: 1200px;
	/* background: #4ab0d621; */
	background: #fff;
}

#page-content+footer {
	padding: 9px 10px;
	font-size: 11px;
	background-color: #ffffff;
	border-top: 1px solid #dbe1e8;
}

/* Fixed Header */
#page-container.header-fixed-top {
	padding: 50px 0 0;
}

#page-container.header-fixed-bottom {
	padding: 0 0 50px;
}

/* Sidebar + Static Header */
.sidebar-open #sidebar {
	width: 60px;
}

.sidebar-open #main-container {
	margin-left: 60px;
}

/* Sidebar + Fixed Header */
.header-fixed-top #sidebar,.header-fixed-bottom #sidebar {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
}

.header-fixed-top .sidebar-content,.header-fixed-bottom .sidebar-content
	{
	padding-bottom: 50px;
}

.sidebar-open header.navbar-fixed-top,.sidebar-open header.navbar-fixed-bottom
	{
	left: 60px;
}

/*
=================================================================
(#m02hds) HEADER
=================================================================
*/
header.navbar-default,header.navbar-inverse {
	padding: 0;
	margin: 0;
	min-width: 320px;
	max-height: 50px;
	border: none;
}

header.navbar-fixed-top,header.navbar-fixed-bottom {
	max-height: 51px;
}

header.navbar-default.navbar-fixed-top {
	border-bottom: 1px solid #eaedf1;
}

header.navbar-default.navbar-fixed-bottom {
	border-top: 1px solid #eaedf1;
}

header.navbar-inverse.navbar-fixed-top {
	border-bottom: 1px solid #394263;
}

header.navbar-inverse.navbar-fixed-bottom {
	border-top: 1px solid #394263;
}

/* Header Nav */
.nav.navbar-nav-custom {
	float: left;
	margin: 0;
}

.nav.navbar-nav-custom>li {
	min-height: 70px;
	float: left;
}

.nav.navbar-nav-custom>li.dropdown .dropdown-toggle i {
	margin-top: 7px;
	display: inline-block;
	font-size: 24px;
}

.nav.navbar-nav-custom>li.dropdown .dropdown-toggle {
	background-color: transparent;
}

.dropdown-menu.dropdown-custom>li>a:hover {
	background: #0090C5;
	color: #ffffff;
}

.dropdown-menu.dropdown-custom>li>a i {
	color: #000000;
}

.dropdown-menu.dropdown-custom>li>a:hover i {
	color: #ffffff;
}

a#sidebar-toggle-lg i {
	font-size: 28px;
}

.nav.navbar-nav-custom>li>a {
	min-width: 50px;
	padding: 10px 16px;
	text-align: center;
	line-height: 40px;
	color: #394263;
}

a#sidebar-toggle-lg {
	padding: 11px 7px;
	line-height: 18px;
}

.nav.navbar-nav-custom>li>a .gi,.nav.navbar-nav-custom>li>a .hi,.nav.navbar-nav-custom>li>a .si,.nav.navbar-nav-custom>li>a .fi
	{
	margin-top: -3px;
}

.navbar-inverse .nav.navbar-nav-custom>li>a {
	color: #ffffff;
}

.nav.navbar-nav-custom>li.open>a,.nav.navbar-nav-custom>li>a:hover,.nav.navbar-nav-custom>li>a:focus
	{
	
}

.nav.navbar-nav-custom>li>a>img {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	vertical-align: top;
}

/* Header Search */
.navbar-form-custom {
	padding: 0;
	width: 100px;
	float: left;
	height: 50px;
}

.navbar-form-custom .form-control {
	padding: 10px;
	margin: 0;
	height: 50px;
	font-size: 15px;
	background: transparent;
	border: none;
	z-index: 2000;
}

.navbar-form-custom .form-control:hover,.navbar-form-custom .form-control:focus
	{
	background-color: #ffffff;
}

.navbar-form-custom .form-control:focus {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	font-size: 18px;
	padding: 10px 20px;
}

.navbar-inverse .navbar-form-custom .form-control {
	color: #ffffff;
}

.navbar-inverse .navbar-form-custom .form-control:hover,.navbar-inverse .navbar-form-custom .form-control:focus
	{
	background: #000000;
	color: #ffffff;
}

/*
=================================================================
(#m03sns) SIDEBAR/NAVIGATION
=================================================================
*/

/* Sidebar Content */
.sidebar-content {
	width: 60px;
	color: #ffffff;
}

.sidebar-section {
	padding: 8px;
}

/* Sidebar Brand */
.sidebar-brand {
	line-height: 50px;
	padding: 10px 10px;
	font-weight: 300;
	font-size: 18px;
	display: inline-block;
	color: #ffffff;
	float: left;
	min-width: 200px;
}

a.sidebar-brand img {
	max-width: 100%;
}

.sidebar-brand:hover,.sidebar-brand:focus {
	/*background-color: #1bbae1;*/
	color: #ffffff;
	text-decoration: none;
}

.sidebar-brand i {
	font-size: 14px;
	display: inline-block;
	width: 18px;
	text-align: center;
	margin-right: 10px;
	opacity: 0.5;
	filter: alpha(opacity = 50);
}

/* Sidebar User */
/*
.sidebar-user {
    padding-left: 88px;
    background: url('../img/template/ie8_opacity_light_10.png') repeat;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}
*/
/*
.sidebar-user-avatar {
   width: 68px;
    height: 68px;
    float: left;
    padding: 2px;
    margin-left: -78px;
    border-radius: 34px;
    background: url('../img/template/ie8_opacity_light_75.png') repeat;
    background: rgba(255, 255, 255, 0.75);
}
*/
.sidebar-user-avatar img {
	width: 44px;
	height: 44px;
	border-radius: 32px;
}

.sidebar-user-name {
	font-size: 17px;
	font-weight: 300;
	line-height: 26px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.sidebar-user-links a {
	color: #ffffff;
	opacity: 0.3;
	filter: alpha('opacity: 30');
	margin-right: 5px;
}

.sidebar-user-links a:hover,.sidebar-user-links a:focus {
	color: #ffffff;
	text-decoration: none;
	opacity: 1;
	filter: alpha('opacity: 100');
}

.sidebar-user-links a>i {
	font-size: 14px;
}

/* Sidebar Color Themes */
.sidebar-themes {
	list-style: none;
	margin: 0;
	padding-bottom: 7px;
	background: url('../img/template/ie8_opacity_dark_15.png') repeat;
	background: rgba(0, 0, 0, 0.15);
}

.sidebar-themes li {
	float: left;
	margin: 0 3px 3px 0;
}

.sidebar-themes li a {
	display: block;
	width: 17px;
	height: 17px;
	border-radius: 10px;
	border-width: 2px;
	border-style: solid;
}

.sidebar-themes li a:hover,.sidebar-themes li a:focus {
	border-color: #ffffff !important;
}

.sidebar-themes li.active a {
	border-color: #ffffff !important;
}

/* Sidebar Navigation */
.sidebar-nav {
	list-style: none;
	margin: 0;
	padding: 0px 0 0;
}

.sidebar-nav .sidebar-header:first-child {
	margin-top: 0;
}

.sidebar-nav a {
	display: block;
	color: #fff;
	padding: 10px 0;
	font-size: 15px;
	letter-spacing: 1px;
	text-decoration: none;
}

.sidebar-nav a:hover,.sidebar-nav a.open,.sidebar-nav li.active>a {
	color: #ffffff;
	text-decoration: none;
	background: url('../img/template/ie8_opacity_dark_15.png') repeat;
	background: #1c233c;
}

.sidebar-nav a.active {
	padding-left: 5px;
	border-left: 5px solid #1bbae1;
	background: url('../img/template/ie8_opacity_dark_30.png') repeat;
	background: rgba(0, 0, 0, 0.3);
}

.sidebar-nav a>.sidebar-nav-indicator {
	float: right;
	line-height: inherit;
	margin-left: 4px;
	-webkit-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}

.sidebar-nav a>.sidebar-nav-icon,.sidebar-nav a>.sidebar-nav-indicator {
	display: inline-block;
	opacity: 0.7;
	font-size: 18px;
	text-align: center;
}

.sidebar-nav a:hover,.sidebar-nav a:hover>.sidebar-nav-icon,.sidebar-nav a:hover>.sidebar-nav-indicator,.sidebar-nav a.active,.sidebar-nav a.active>.sidebar-nav-icon,.sidebar-nav a.active>.sidebar-nav-indicator,.sidebar-nav a.open,.sidebar-nav a.open>.sidebar-nav-icon,.sidebar-nav a.open>.sidebar-nav-indicator,.sidebar-nav li.active>a,.sidebar-nav li.active>a>.sidebar-nav-icon,.sidebar-nav li.active>a>.sidebar-nav-indicator
	{
	opacity: 1;
	filter: alpha('opacity: 100');
}

.sidebar-nav a.active>.sidebar-nav-indicator,.sidebar-nav a.open>.sidebar-nav-indicator,.sidebar-nav li.active>a>.sidebar-nav-indicator
	{
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.sidebar-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: none;
	background: url('../img/template/ie8_opacity_dark_30.png') repeat;
	background: rgba(0, 0, 0, 0.3);
}

.sidebar-nav li.active>ul {
	display: block;
}

.sidebar-nav ul a {
	margin: 0;
	font-size: 12px;
	padding-left: 15px;
	min-height: 32px;
	line-height: 32px;
}

.sidebar-nav ul a.active,.sidebar-nav ul a.active:hover {
	border-left: 5px solid #1bbae1;
	padding-left: 10px;
}

.sidebar-nav ul ul {
	background: url('../img/template/ie8_opacity_dark_40.png') repeat;
	background: rgba(0, 0, 0, 0.4);
}

.sidebar-nav ul ul a {
	padding-left: 25px;
}

.sidebar-nav ul ul a.active,.sidebar-nav ul ul a.active:hover {
	padding-left: 20px;
}

/* Sidebar Header */
.sidebar-header {
	margin: 10px 0 0;
	padding: 10px;
	line-height: 12px;
}

.sidebar-header+.sidebar-section {
	padding-top: 0px;
	padding-bottom: 0px;
}

.sidebar-header .sidebar-header-title {
	color: #ffffff;
	font-size: 11px;
	text-transform: uppercase;
	opacity: 0.5;
	filter: alpha('opacity: 50');
}

.sidebar-header-options {
	display: inline-block;
	float: right;
}

.sidebar-header-options>a,.sidebar-nav .sidebar-header-options a {
	float: right;
	margin: 0;
	padding: 0;
	min-height: 0;
	line-height: inherit;
	display: block;
	min-width: 18px;
	text-align: center;
	color: #ffffff;
	opacity: 0.3;
	filter: alpha('opacity: 30');
}

.sidebar-header-options a.active,.sidebar-header-options a:hover,.sidebar-header-options a:focus,.sidebar-nav .sidebar-header-options a.active,.sidebar-nav .sidebar-header-options a:hover,.sidebar-nav .sidebar-header-options a:focus
	{
	background: none;
	color: #ffffff;
	opacity: 1;
	filter: alpha('opacity : 100');
}

.sidebar-header-options a>i {
	font-size: 14px;
}

/*
=================================================================
(#m04mcs) MAIN CONTENT
=================================================================
*/

/* Content Header */
.content-header {
	background-color: #ffffff;
	border-top: 1px solid #eaedf1;
	border-bottom: 1px solid #dbe1e8;
}

.content-header h1,.content-header h2 {
	margin: 0;
	font-size: 26px;
	line-height: 32px;
}

.content-header small
.content-header small {
	font-size: 17px;
}

.header-section h1 i {
	font-size: 56px;
	float: right;
	margin: 2px 0 0 10px;
	color: #eaedf1;
	margin: 0 0 0 10px;
	line-height: 64px;
}

.header-section {
	padding: 30px 10px;
}

.content-header,.content-top {
	margin: -10px -5px 10px;
}

.content-top {
	background-color: #ffffff;
	border-bottom: 1px solid #dbe1e8;
}

.content-header-media {
	position: relative;
	height: 248px;
	overflow: hidden;
	border-top-color: #222222;
}

.content-header-media .header-section {
	z-index: 200;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	color: #ffffff;
	background: url('../img/template/ie8_opacity_dark_60.png') repeat;
	background: rgba(0, 0, 0, 0.6);
}

.content-header-media small,.content-header-media i {
	color: #dddddd;
}

.content-header-media>img {
	position: absolute;
	top: 0;
	left: 50%;
	width: 2560px;
	height: 248px;
	margin-left: -1280px;
}

.content-header-media>.content-header-media-map {
	height: 270px;
}

/* Blocks */
.block {
	
}

.block.full {
	padding: 20px 15px;
}

.block .block-content-full {
	margin: -20px -15px -1px;
}

.block .block-content-mini-padding {
	padding: 8px;
}

.block.full .block-content-full {
	margin: -20px -15px;
}

.block-title .nav-tabs,.block-options {
	min-height: 40px;
	line-height: 38px;
}

.block-title .nav-tabs {
	padding: 3px 1px 0;
	border-bottom: none;
}

.block-title .nav-tabs>li>a {
	border-bottom: none;
}

.block-title .nav-tabs {
	margin-bottom: -2px;
}

.block-title .nav-tabs>li>a {
	margin-bottom: 0;
}

.block-title .nav-tabs>li>a:hover {
	background: none;
}

.block-title .nav-tabs>li.active>a,.block-title .nav-tabs>li.active>a:hover,.block-title .nav-tabs>li.active>a:focus
	{
	border: 1px solid #eaedf1;
	border-bottom-color: #ffffff;
	background-color: #ffffff;
}

.block-title code {
	padding: 2px 3px;
}

.block-options {
	margin: 0 6px;
	line-height: 37px;
}

.block-options .label {
	display: inline-block;
	padding: 6px;
	vertical-align: middle;
	font-size: 13px;
}

.block-top {
	margin: -20px -15px 20px;
	border-bottom: 1px dotted #dbe1e8;
}

.block-section {
	margin-bottom: 20px;
}

/* Widgets */
.widget {
	box-shadow: 0 0 8px transparent !important;
}

.widget .widget-extra-full,.widget .widget-extra {
	position: relative;
	padding: 15px;
}

.widget .widget-extra {
	padding-top: 1px;
	padding-bottom: 1px;
}

.widget .widget-content-light {
	color: #ffffff;
}

.widget .widget-content-light small {
	color: #eeeeee;
}

.widget .widget-image,.widget .widget-icon {
	width: 64px;
	height: 64px;
}

.widget .widget-icon {
	display: inline-block;
	line-height: 64px;
	text-align: center;
	font-size: 28px;
	color: #ffffff;
	border-radius: 32px;
}

.widget .widget-icon .gi,.widget .widget-icon .si,.widget .widget-icon .hi,.widget .widget-icon .fi
	{
	margin-top: -3px;
}

.widget .widget-options,.widget .widget-options-left {
	position: absolute;
	top: 5px;
	opacity: 0.5;
	filter: alpha(opacity = 50);
}

.widget .widget-options {
	right: 5px;
}

.widget .widget-options-left {
	left: 5px;
}

.widget .widget-options:hover,.widget .widget-options-left:hover {
	opacity: 1;
	filter: alpha(opacity = 100);
}

.widget-simple {
	padding: 15px;
}

.widget-simple:before,.widget-simple:after {
	content: " ";
	display: table;
}

.widget-simple:after {
	clear: both;
}

.widget-simple .widget-image,.widget-simple .widget-icon {
	margin: 0 15px;
}

.widget-simple .widget-image.pull-left,.widget-simple .widget-icon.pull-left
	{
	margin-left: 0;
}

.widget-simple .widget-image.pull-right,.widget-simple .widget-icon.pull-right
	{
	margin-right: 0;
}

.widget-simple .widget-content {
	font-size: 18px;
	margin: 12px 0;
}

.widget-simple .widget-content small {
	display: block;
	margin-top: 7px;
	font-size: 13px;
	font-weight: 400;
}

.widget-advanced .widget-header {
	position: relative;
	padding: 15px 15px 50px;
	height: 150px;
	overflow: hidden;
}

.widget-advanced .widget-background {
	position: absolute;
	top: 0;
	left: 0;
	height: 150px;
}

.widget-advanced .widget-background-map {
	height: 180px;
	width: 100%;
}

.widget-advanced .widget-content-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 15px;
	margin: 0;
	background: url('../img/template/ie8_opacity_dark_60.png') repeat;
	background: rgba(0, 0, 0, 0.6);
}

.widget-advanced .widget-main {
	position: relative;
	padding: 50px 15px 15px;
}

.widget-advanced .widget-image-container {
	position: absolute;
	display: inline-block;
	padding: 5px;
	width: 74px;
	height: 74px;
	top: -36px;
	left: 50%;
	margin-left: -36px;
	border-radius: 36px;
	background-color: #ffffff;
}

.widget-advanced .widget-header .widget-image-container {
	position: static;
	left: auto;
	top: auto;
	margin: 0;
}

.widget-advanced-alt .widget-header,.widget-advanced-alt .widget-main {
	padding: 15px;
}

.widget-advanced-alt .widget-header {
	height: auto;
	min-height: 150px;
}

/* Content which contains floats */
.content-float .pull-left {
	margin: 0 20px 20px 0;
}

.content-float .pull-right {
	margin: 0 0 20px 20px;
}

/* Scroll to top link */
#to-top {
	display: none;
	position: fixed;
	bottom: 40px;
	right: 15px;
	border-radius: 3px;
	padding: 0 12px;
	font-size: 28px;
	text-align: center;
	color: #ffffff;
	background-color: #000000;
	opacity: 0.1;
	filter: alpha(opacity = 10);
}

#to-top:hover {
	color: #ffffff;
	background-color: #394263;
	text-decoration: none;
	opacity: 1;
	filter: alpha(opacity = 100);
}

.widget_items {
	display: flex;
	justify-content: space-between;
}

.widget_items_content {
	margin-top: 15px;
	margin-right: 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.widget_items .icon img {
	width: 100px !important;
	position: relative;
	top: -15px;
}

/*
=================================================================
(#m05pgs) PAGES
=================================================================
*/

/* Login */
#login-background {
	width: 100%;
	height: 224px;
	overflow: hidden;
	position: relative;
}

#login-background>img {
	position: absolute;
	width: 2560px;
	height: 400px;
	left: 50%;
	margin-left: -1280px;
}

#login-container {
	position: relative;
}

#login-container .login-title {
	margin-bottom: 60px
}

#login-container .login-title h1 {
	text-align: center;
	font-weight: 600;
	font-size: 25px;
	line-height: 37px;
	color: #000000;
}

#login-container .login-title small {
	font-size: 16px;
	color: #dddddd;
}

#login-container>.block {
	border: none;
}

#login-container .register-terms {
	line-height: 30px;
	margin-right: 10px;
	float: left;
}

/* Calendar */
.calendar-events {
	list-style: none;
	margin: 0;
	padding: 0;
}

.calendar-events li {
	color: #ffffff;
	margin-bottom: 5px;
	padding: 5px 10px;
	border-radius: 3px;
	background-color: #555555;
	opacity: 0.85;
	filter: alpha(opacity = 85);
}

.calendar-events li:hover {
	cursor: move;
	opacity: 1;
	filter: alpha(opacity = 100);
}

/* Gallery */
.gallery img,.gallery a img,.gallery-image img,a[data-toggle="lightbox-image"] img
	{
	max-width: 100%;
}

a[data-toggle="lightbox-image"],a.gallery-link {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.gallery a:hover img,.gallery-image:hover img,a[data-toggle="lightbox-image"]:hover img
	{
	opacity: 0.75;
	filter: alpha(opacity = 75);
}

.gallery-image {
	position: relative;
}

.gallery-image-options {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	padding: 10px;
}

.gallery-image:hover .gallery-image-options {
	display: block;
}

.gallery>.row>div {
	margin-bottom: 15px;
}

.gallery.gallery-widget>.row>div {
	margin-bottom: 0;
	padding-top: 7px;
	padding-bottom: 7px;
}

/* Charts */
.pie-chart .pie-avatar {
	position: absolute;
	top: 8px;
	left: 8px;
}

.chart {
	height: 360px;
}

.chart-tooltip,.mini-chart-tooltip {
	position: absolute;
	display: none;
	color: #ffffff;
	background-color: #000000;
	padding: 4px 10px;
}

.chart-pie-label {
	font-size: 12px;
	text-align: center;
	padding: 8px 12px;
	color: #ffffff;
}

.mini-chart-tooltip {
	left: 0;
	top: 0;
	visibility: hidden;
}

/* Timeline */
.timeline {
	position: relative;
}

.timeline-header {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	padding: 0 15px;
	min-height: 60px;
	line-height: 60px;
	background-color: #ffffff;
	border-bottom: 2px solid #f0f0f0;
	z-index: 500;
}

.timeline-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.timeline-list:after {
	position: absolute;
	display: block;
	width: 2px;
	top: 0;
	left: 95px;
	bottom: 0;
	content: "";
	background-color: #f0f0f0;
	z-index: 1;
}

.timeline-header+.timeline-list:after {
	top: 60px;
}

.timeline-list li {
	position: relative;
	margin: 0;
	padding: 15px 0;
}

.timeline-list.timeline-hover li:hover {
	background-color: #f9f9f9;
}

.timeline-list .timeline-icon {
	position: absolute;
	left: 80px;
	top: 10px;
	width: 30px;
	height: 30px;
	line-height: 28px;
	font-size: 14px;
	text-align: center;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 15px;
	z-index: 500;
}

.timeline-list .active .timeline-icon {
	background-color: #1bbae1;
	border-color: #1bbae1;
	color: #ffffff;
}

.timeline-list .timeline-time {
	float: left;
	width: 70px;
	text-align: right;
}

.timeline-list .timeline-content {
	margin-left: 120px;
}

.block-content-full .timeline-content {
	padding-right: 20px;
}

.media-feed {
	margin-bottom: 0;
}

.media-feed>.media {
	margin-top: 0;
	padding: 20px 20px 0;
	border-top: 1px dotted #dbe1e8;
}

.media-feed>.media:first-child {
	border-top: none;
}

.media-feed.media-feed-hover>.media:hover {
	background-color: #f9f9f9;
}

/* Error */
#error-container {
	padding: 120px 20px;
	position: relative;
}

#error-container .error-options {
	position: absolute;
	top: 20px;
	left: 20px;
}

#error-container h1 {
	font-size: 96px;
	color: #ffffff;
	margin-bottom: 40px;
}

#error-container h2 {
	color: #cccccc;
	margin-bottom: 40px;
	line-height: 1.4;
}

#error-container form {
	padding: 20px;
	border-radius: 3px;
	background: #ffffff;
	background: url('../img/template/ie8_opacity_light_10.png') repeat;
	background: rgba(255, 255, 255, 0.1);
}

#error-container .form-control {
	border-color: #ffffff;
}

/* Pricing Table */
.table.table-pricing {
	background-color: #ffffff;
}

.table-pricing th,.table-pricing td {
	text-align: center;
}

.table-pricing th {
	font-size: 24px !important;
}

.table-pricing td {
	font-size: 15px;
	padding-top: 12px !important;
	padding-bottom: 12px !important;
}

.table-pricing .table-price {
	background-color: #f9f9f9;
}

.table-pricing.table-featured .table-price,.table-pricing .table-price.table-featured
	{
	background-color: #252525;
}

.table-pricing.table-featured th,.table-pricing th.table-featured {
	background-color: #1bbae1;
	border-bottom: 2px solid #394263;
	color: #ffffff;
}

.table-pricing.table-featured td,.table-pricing td.table-featured {
	background-color: #394263;
	color: #ffffff;
}

/*
=================================================================
(#m06bos) BOOTSTRAP OVERWRITE/EXTEND STYLES
=================================================================
*/

/* Navbar */
.navbar.navbar-default {
	z-index: 999;
	position: fixed;
	top: 0;
	width: 100% !important;
	background-color: #FFFFFF;
	border: 1px solid #e5e5e5;
	/* box-shadow: 0 0 8px rgba(0, 0, 0, 0.08); */
	max-height: 70px;
	padding: 0px 25px;
}

.navbar.navbar-inverse {
	background-color: #4c5471;
}

.navbar-fixed-top,.navbar-fixed-bottom {
	border-width: 0;
}

/* Typography */
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
}

h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small
	{
	font-weight: 300;
	color: #777777;
}

h1,h2,h3 {
	margin-bottom: 15px;
}

a {
	color: #00A7FA;
	cursor: pointer;
}

.text-primary,.text-primary:hover,a:hover,a:focus {
	color: #00A7FA;
	text-decoration: none;
}

.text-danger,.text-danger:hover,a.text-danger,a.text-danger:hover,a.text-danger:focus
	{
	color: #e74c3c;
}

.text-warning,.text-warning:hover,a.text-warning,a.text-warning:hover,a.text-warning:focus
	{
	color: #e67e22;
}

.text-success,.text-success:hover,a.text-success,a.text-success:hover,a.text-success:focus
	{
	color: #27ae60;
}

.text-info,.text-info:hover,a.text-info,a.text-info:hover,a.text-info:focus
	{
	color: #3498db;
}

.text-muted,.text-muted:hover,a.text-muted,a.text-muted:hover,a.text-muted:focus
	{
	color: #999999;
}

b,strong {
	font-weight: 600;
}

ul,ol {
	padding-left: 30px;
}

.list-li-push li {
	margin-bottom: 10px;
}

p {
	line-height: 1.6;
}

article p {
	font-size: 16px;
	line-height: 1.8;
}

.well {
	background-color: #f9f9f9;
	border: 1px solid #eeeeee;
}

.page-header {
	border-bottom-width: 1px;
	border-bottom-color: #dddddd;
	margin: 30px 0 20px;
}

.sub-header {
	margin: 10px 0 20px;
	padding: 10px 0;
	border-bottom: 1px dotted #dddddd;
}

blockquote {
	border-left-width: 3px;
}

blockquote {
	margin: 20px 0;
	padding: 30px 60px 30px 20px;
	position: relative;
	width: 100%;
	border-color: #eaedf1;
}

blockquote:before {
	display: block;
	content: "\201C";
	font-family: serif;
	font-size: 96px;
	position: absolute;
	right: 10px;
	top: -30px;
	color: #eaedf1;
}

blockquote.pull-right:before {
	left: 10px;
	right: auto;
}

/* Forms */
label {
	font-weight: 600;
}

fieldset legend {
	font-size: 16px;
	padding: 30px 0 10px;
	border-bottom: 2px solid #eaedf1;
}

input[type="file"] {
	padding-top: 7px;
}

input[type="text"].form-control,input[type="password"].form-control,input[type="email"].form-control,textarea.form-control
	{
	-webkit-appearance: none;
}

textarea.form-control {
	border-radius: 5px !important;
}

.input-group {
	display: block;
}

.form-control {
	height: auto;
	padding: 8px 15px;
	background-color: #ffffff !important;
	border: 1px solid #ced4da;
	border-radius: 30px !important;
	font-size: 13px;
	color: #333 !important;
}

.form-control:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px transparent inset;
	transition: background-color 5000s ease-in-out 0s;
	font-size: inherit;
}

.form-control-borderless .form-control,.form-control-borderless .input-group-addon,.form-control-borderless,.form-control-borderless:focus
	{
	border: transparent !important;
}

.form-control .input-group {
	margin-top: 1px;
	margin-bottom: 1px;
}

.input-group .form-control {
	margin-top: 0;
}

.form-control:focus {
	border-color: #1bbae1;
}

.help-block {
	color: #777777;
	font-weight: 400;
}

.input-group-addon {
	min-width: 45px;
	text-align: center;
	display: inline-block;
	border: 0;
	position: absolute;
	right: 0;
	top: 7px;
	background: transparent;
}

@media screen and (max-width: 992px) {
	.form-horizontal .control-label {
		margin-bottom: 5px;
	}
	.form-horizontal .big-control .control-label {
		margin-bottom: 5px;
	}
	#tblList label.view-label {
		display: block;
	}
	#tblList .collapse.in label {
		display: block;
	}
}

@media screen and (min-width: 992px) {
	.form-horizontal .control-label {
		margin-bottom: 5px;
		padding: 0;
		padding-top: 8px;
		padding-left: 15px;
	}
	.form-horizontal .big-control .control-label {
		margin-bottom: 5px;
		padding: 0;
		padding-left: 15px;
	}
}

.form-bordered {
	margin: -15px -15px -1px;
}

.modal-body .form-bordered {
	margin-bottom: -20px;
}

.form-bordered fieldset legend {
	margin: 0;
	padding-left: 20px;
	padding-right: 20px;
}

.form-bordered .form-group {
	margin: 0;
	border: none;
	padding: 15px;
	border-bottom: 0px dashed #eaedf1;
}

.form-bordered .form-group.form-actions {
	border-bottom: none;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.form-horizontal.form-bordered .form-group {
	padding-left: 0;
	padding-right: 0;
}

.form-bordered .help-block {
	margin-bottom: 0;
}

.has-success .help-block,.has-success .control-label,.has-success .input-group-addon,.has-success .checkbox,.has-success .checkbox-inline,.has-success .radio,.has-success .radio-inline
	{
	color: #27ae60;
}

.has-success .form-control,.has-success .input-group-addon {
	border-color: #27ae60;
	background-color: #ffffff;
}

.has-success .form-control:focus {
	border-color: #166638;
}

.has-warning .help-block,.has-warning .control-label,.has-warning .input-group-addon,.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .radio,.has-warning .radio-inline
	{
	color: #e67e22;
}

.has-warning .form-control,.has-warning .input-group-addon {
	border-color: #e67e22;
	background-color: #ffffff;
}

.has-warning .form-control:focus {
	border-color: #b3621b;
}

.has-error .help-block,.has-error .control-label,.has-error .input-group-addon,.has-error .checkbox,.has-error .checkbox-inline,.has-error .radio,.has-error .radio-inline
	{
	color: #e74c3c;
}

.has-error .form-control,.has-error .input-group-addon {
	border-color: #e74c3c;
	background-color: #ffffff;
}

.has-error .form-control:focus {
	border-color: #c0392b;
}

/* Form Wizards */
.wizard-steps {
	border-bottom: 1px solid #eaedf1;
	margin-bottom: 20px;
}

.form-bordered .wizard-steps {
	margin-bottom: 0;
}

.wizard-steps .row {
	margin: 0;
}

.wizard-steps .row div {
	padding: 15px 0;
	font-size: 15px;
	text-align: center;
}

.form-bordered .wizard-steps .row div {
	padding-top: 10px;
}

.wizard-steps span {
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	border: 1px solid #1bbae1;
	border-radius: 50px;
}

.wizard-steps div.done span,.wizard-steps div.active span {
	background-color: #1bbae1;
	color: #ffffff;
}

.wizard-steps div.done span {
	opacity: 0.25;
	filter: alpha(opacity = 25);
}

.wizard-steps div.active span {
	opacity: 1;
	filter: alpha(opacity = 100);
}

/* Form Select Switches */
.switch {
	margin: 1px 0;
	position: relative;
	cursor: pointer;
}

.switch input {
	position: absolute;
	opacity: 0;
	filter: alpha(opacity = 0);
}

.switch span {
	position: relative;
	display: inline-block;
	width: 54px;
	height: 28px;
	border-radius: 28px;
	background-color: #f9f9f9;
	border: 1px solid #dddddd;
	-webkit-transition: background-color 0.35s;
	transition: background-color 0.35s;
}

.switch span:after {
	content: "";
	position: absolute;
	left: 7px;
	top: 7px;
	bottom: 7px;
	width: 12px;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 24px;
	-webkit-box-shadow: 1px 0 3px rgba(0, 0, 0, 0.05);
	box-shadow: 1px 0 3px rgba(0, 0, 0, 0.05);
	-webkit-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}

.switch input:checked+span:after {
	left: 26px;
	width: 24px;
	top: 1px;
	bottom: 1px;
	border: none;
	-webkit-box-shadow: -2px 0 3px rgba(0, 0, 0, 0.1);
	box-shadow: -2px 0 3px rgba(0, 0, 0, 0.1);
}

.switch input:checked+span {
	background-color: #eeeeee;
}

.switch-default span {
	border-color: #dbe1e8;
}

.switch-default input:checked+span {
	background-color: #dbe1e8;
}

.switch-primary span {
	border-color: #1bbae1;
}

.switch-primary input:checked+span {
	background-color: #1bbae1;
}

.switch-info span {
	border-color: #7abce7;
}

.switch-info input:checked+span {
	background-color: #7abce7;
}

.switch-success span {
	border-color: #aad178;
}

.switch-success input:checked+span {
	background-color: #aad178;
}

.switch-warning span {
	border-color: #f7be64;
}

.switch-warning input:checked+span {
	background-color: #f7be64;
}

.switch-danger span {
	border-color: #ef8a80;
}

.switch-danger input:checked+span {
	background-color: #ef8a80;
}

/* Tables */
.table.table-vcenter th,.table.table-vcenter td {
	vertical-align: middle;
}

.table-options {
	padding: 6px 0;
}

.table thead>tr>th {
	font-size: 15px;
	font-weight: 500;
	color: #8f8f8fd6;
}

.table thead>tr>th>small {
	font-weight: 400;
	font-size: 75%;
}

.table thead>tr>th,.table thead>tr>td,.table tfoot>tr>th,.table tfoot>tr>td
	{
	padding-top: 14px;
	padding-bottom: 14px;
}

.table tfoot>tr>th,.table tfoot>tr>td {
	background-color: #f9fafc;
}

.table-borderless tbody>tr>th,.table-borderless tbody>tr>td {
	border-top-width: 0;
}

.table thead>tr>th,.table tbody>tr>th,.table tfoot>tr>th,.table thead>tr>td,.table tbody>tr>td,.table tfoot>tr>td,.table tbody+tbody,.table-bordered,.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td
	{
	border-color: #eaedf1;
}

.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th {
	background-color: #eaedf1;
}

/* List Group */
.list-group-item {
	border-color: #eaedf1;
}

a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus
	{
	background-color: #1bbae1;
	border-color: #1bbae1;
}

a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text
	{
	color: #ffffff;
}

a.list-group-item:hover,a.list-group-item:focus {
	background-color: #f9fafc;
}

a.list-group-item.active>.badge {
	background: url('../img/template/ie8_opacity_dark_40.png') repeat;
	background: rgba(0, 0, 0, 0.4);
	color: #ffffff;
}

/* Navs */
.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus,.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus,.nav .open>a,.nav .open>a:hover,.nav .open>a:focus
	{
	color: #fff;
	background-color: #394263;
}

.nav>li i {
	font-size: 18px;
	color: #9399AA;
}

.nav-pills>.active>a>.badge {
	color: #1bbae1;
}

.nav-stacked>li>a {
	margin: 4px 0 0;
}

.nav .caret,.nav a:hover .caret,.nav a:focus .caret {
	border-top-color: #1bbae1;
	border-bottom-color: #1bbae1;
}

.nav>li>a:hover,.nav>li>a:focus {
	background-color: #f9fafc;
}

.nav-tabs {
	border-bottom-color: #eaedf1;
}

.nav-tabs>li {
	margin-bottom: 0;
}

.nav-tabs>li>a {
	padding-left: 7px;
	padding-right: 7px;
	margin-bottom: -1px;
}

.nav-tabs>li>a:hover {
	border-color: #eaedf1;
}

.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus
	{
	color: #394263;
	border-color: #eaedf1;
	border-bottom-color: transparent;
}

.nav-pills>li.active>a>.badge {
	background: url('../img/template/ie8_opacity_dark_20.png') repeat;
	background: rgba(0, 0, 0, 0.2);
	color: #ffffff;
}

.dropdown-menu {
	padding: 0;
	font-size: 13px;
	border-color: #dbe1e8;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu>li>a {
	padding: 6px 10px;
}

.dropdown-menu>li:first-child>a {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.dropdown-menu>li:last-child>a {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.dropdown-menu i {
	opacity: 0.2;
	filter: alpha(opacity = 20);
	line-height: 17px;
}

.dropdown-menu a:hover i {
	opacity: 0.5;
	filter: alpha(opacity = 50);
}

.dropdown-menu .divider {
	margin: 2px 0;
	padding: 0 !important;
	background-color: #f0f0f0;
}

li.dropdown-header {
	padding: 5px 10px;
	color: #394263;
	background-color: #f9fafc;
	border-top: 1px solid #eaedf1;
	border-bottom: 1px solid #eaedf1;
}

.dropdown-menu li:first-child.dropdown-header {
	border-top: none;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.dropdown-menu.dropdown-custom {
	min-width: 200px;
}

.dropdown-menu.dropdown-custom>li {
	padding: 0px;
	margin: 2px 0px;
	font-size: 12px;
}

li.dropdown-header.text-center {
	padding: 5px;
	font-size: 14px;
	font-weight: 500;
	color: #8c8c8c;
}

.dropdown-menu.dropdown-custom>li>a {
	border-radius: 0px;
}

.pagination>li>a,.pagination>li>span {
	color: #1bbae1;
	margin-left: 5px;
	margin-right: 5px;
	border: none !important;
	border-radius: 25px !important;
}

.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus
	{
	background-color: #1bbae1;
}

.pager>li>a,.pager>li>span {
	border-color: #eaedf1;
}

.pager>li>a:hover,.pagination>li>a:hover {
	background-color: #1bbae1;
	border-color: #1bbae1;
	color: #ffffff;
}

.pager>li.disabled>a:hover {
	border-color: #eaedf1;
}

/* Popover */
.popover-title {
	background: none;
	border: none;
	font-size: 17px;
	font-weight: 600;
}

/* Tooltip */
.tooltip {
	z-index: 1051;
}

.tooltip.in {
	opacity: 1;
	filter: alpha(opacity = 100);
}

.tooltip-inner {
	padding: 4px 6px;
	background-color: #000000;
	color: #ffffff;
}

.tooltip.top .tooltip-arrow,.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow
	{
	border-top-color: #000000;
}

.tooltip.right .tooltip-arrow {
	border-right-color: #000000;
}

.tooltip.left .tooltip-arrow {
	border-left-color: #000000;
}

.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow
	{
	border-bottom-color: #000000;
}

/* Breadcrumps */
.breadcrumb {
	background-color: #ffffff;
}

.breadcrumb i {
	font-size: 14px;
}

.breadcrumb-top {
	margin: -10px -5px 10px;
	padding: 7px 10px;
	border-top: 1px solid #eaedf1;
	border-bottom: 1px solid #dbe1e8;
	font-size: 12px;
}

.content-header+.breadcrumb-top,.breadcrumb-top+.content-header {
	margin-top: -11px;
}

.breadcrumb>li+li:before {
	content: "\203a";
}

/* Progress Bars */
.progress,.progress-bar {
	height: 20px;
	line-height: 20px;
}

.progress-bar-danger {
	background-color: #e74c3c;
}

.progress-bar-warning {
	background-color: #f39c12;
}

.progress-bar-success {
	background-color: #2ecc71;
}

.progress-bar-info {
	background-color: #3498db;
}

/* Modals */
.modal-content {
	border-radius: 10px;
}

.modal-header {
	margin-bottom: 15px;
	padding: 15px;
	border-bottom: 1px solid #eeeeee;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.modal-title {
	font-weight: 300;
}

.modal-body {
	padding: 20px 15px;
}

.modal-body .btn {
	border-radius: 30px !important;
}

.modal-body .nav-tabs {
	margin: 0 -15px 15px;
	padding: 0 5px !important;
}

.modal-footer {
	margin-top: 0;
	padding: 14px 15px 15px;
	border-top: 1px solid #eeeeee;
	background-color: #f9f9f9;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.modal-footer .btn {
	border-radius: 30px !important;
}

/* Buttons */
.btn {
	margin: 1px 0;
	background-color: #ffffff;
	border-radius: 10px;
	padding: 7px 20px;
	border-radius: 30px !important;
}

.btn .gi,.btn .hi,.btn .si,.btn .fi {
	line-height: 1;
}

.btn.disabled,.btn[disabled],fieldset[disabled] .btn {
	opacity: 0.4;
	filter: alpha(opacity = 40);
}

.block-options .btn,.input-group .btn,.modal-content .btn {
	margin-top: 0;
	margin-bottom: 0;
}

.btn-default {
	background-color: #f1f3f6;
	border-color: #dbe1e8;
	color: #394263;
}

.btn-default.btn-alt {
	background-color: #ffffff;
}

.btn-default:hover {
	background-color: #eaedf1;
	border-color: #c2c8cf;
}

.btn-default:focus,.btn-default:active,.btn-default.active,.open .btn-default.dropdown-toggle
	{
	background-color: #eaedf1;
	border-color: #eaedf1;
}

.btn-default.disabled,.btn-default.disabled:hover,.btn-default.disabled:focus,.btn-default.disabled:active,.btn-default.disabled.active,.btn-default[disabled]:hover,.btn-default[disabled]:focus,.btn-default[disabled]:active,.btn-default[disabled].active,fieldset[disabled] .btn-default:hover,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default.active
	{
	background-color: #eaedf1;
	border-color: #eaedf1;
}

.btn-primary {
	background-color: #15ADE4;
	border-color: #15ADE4;
	color: #ffffff;
	padding: 7px 20px;
	transition: all .2s;
	border-radius: 30px !important;
}

.btn-primary.btn-alt {
	background-color: #ffffff;
	color: #1bbae1;
}

.btn-primary:hover {
	background-color: #1798c7;
	border-color: #1798c7;
	color: #ffffff;
}

.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .btn-primary.dropdown-toggle
	{
	background-color: #000;
	border-color: #000;
	color: #ffffff;
}

.btn-primary.disabled,.btn-primary.disabled:hover,.btn-primary.disabled:focus,.btn-primary.disabled:active,.btn-primary.disabled.active,.btn-primary[disabled]:hover,.btn-primary[disabled]:focus,.btn-primary[disabled]:active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary:hover,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary.active
	{
	background-color: #1798c7;
	border-color: #1798c7;
	color: #ffffff;
}

.btn-danger {
	background-color: #ef8a80;
	border-color: #ef8a80;
	color: #ffffff;
}

.btn-danger.btn-alt {
	background-color: #ffffff;
	color: #e74c3c;
}

.btn-danger:hover {
	background-color: #e74c3c;
	border-color: #e74c3c;
	color: #ffffff;
}

.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .btn-danger.dropdown-toggle
	{
	background-color: #e74c3c;
	border-color: #e74c3c;
	color: #ffffff;
}

.btn-danger.disabled,.btn-danger.disabled:hover,.btn-danger.disabled:focus,.btn-danger.disabled:active,.btn-danger.disabled.active,.btn-danger[disabled]:hover,.btn-danger[disabled]:focus,.btn-danger[disabled]:active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger:hover,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger.active
	{
	background-color: #e74c3c;
	border-color: #e74c3c;
	color: #ffffff;
}

.btn-warning {
	background-color: #8d8f90;
	border-color: #8d8f90;
	color: #ffffff;
	border-radius: 30px;
}

.btn-warning.btn-alt {
	background-color: #ffffff;
	color: #f39c12;
}

.btn-warning:hover {
	background-color: #6d6d6d;
	border-color: #6d6d6d;
	color: #ffffff;
}

.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .btn-warning.dropdown-toggle
	{
	background-color: #8d8f90;
	border-color: #8d8f90;
	color: #ffffff;
}

.btn-warning.disabled,.btn-warning.disabled:hover,.btn-warning.disabled:focus,.btn-warning.disabled:active,.btn-warning.disabled.active,.btn-warning[disabled]:hover,.btn-warning[disabled]:focus,.btn-warning[disabled]:active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning:hover,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning.active
	{
	background-color: #f39c12;
	border-color: #f39c12;
	color: #ffffff;
}

.btn-success {
	background-color: #aad178;
	border-color: #aad178;
	color: #ffffff;
}

.btn-success.btn-alt {
	background-color: #ffffff;
	color: #7db831;
}

.btn-success:hover {
	background-color: #7db831;
	border-color: #7db831;
	color: #ffffff;
}

.btn-success:focus,.btn-success:active,.btn-success.active,.open .btn-success.dropdown-toggle
	{
	background-color: #7db831;
	border-color: #7db831;
	color: #ffffff;
}

.btn-success.disabled,.btn-success.disabled:hover,.btn-success.disabled:focus,.btn-success.disabled:active,.btn-success.disabled.active,.btn-success[disabled]:hover,.btn-success[disabled]:focus,.btn-success[disabled]:active,.btn-success[disabled].active,fieldset[disabled] .btn-success:hover,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success.active
	{
	background-color: #7db831;
	border-color: #7db831;
	color: #ffffff;
}

.btn-info {
	background-color: #7abce7;
	border-color: #7abce7;
	color: #ffffff;
}

.btn-info.btn-alt {
	background-color: #ffffff;
	color: #3498db;
}

.btn-info:hover {
	background-color: #3498db;
	border-color: #3498db;
	color: #ffffff;
}

.btn-info:focus,.btn-info:active,.btn-info.active,.open .btn-info.dropdown-toggle
	{
	background-color: #3498db;
	border-color: #3498db;
	color: #ffffff;
}

.btn-info.disabled,.btn-info.disabled:hover,.btn-info.disabled:focus,.btn-info.disabled:active,.btn-info.disabled.active,.btn-info[disabled]:hover,.btn-info[disabled]:focus,.btn-info[disabled]:active,.btn-info[disabled].active,fieldset[disabled] .btn-info:hover,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info.active
	{
	background-color: #3498db;
	border-color: #3498db;
	color: #ffffff;
}

.btn-link,.btn-link:hover,.btn-link:focus,.btn-link.btn-icon:hover,.btn-link.btn-icon:focus
	{
	color: #1bbae1;
}

.btn-link.btn-icon {
	color: #999999;
}

.btn-link.btn-icon:hover,.btn-link.btn-icon:focus {
	text-decoration: none;
}

.block-options .btn {
	border-radius: 15px;
	padding-right: 8px;
	padding-left: 8px;
	min-width: 30px;
	text-align: center;
}

/* Panels */
.panel {
	margin-bottom: 20px;
}

.panel-heading {
	padding: 15px;
}

.panel-title {
	font-size: 14px;
}

.panel-default>.panel-heading {
	background-color: #f9f9f9;
}

.panel-group {
	margin-bottom: 20px;
}

/* Pre, Code */
pre {
	background: #151515;
	overflow: scroll;
}

code {
	border: 1px solid #fad4df;
	margin: 1px 0;
	display: inline-block;
}

.btn code {
	display: inline;
	margin: 0;
}

/* Alerts */
.alert {
	border-top-width: 0;
	border-right-width: 2px;
	border-bottom-width: 0;
	border-left-width: 2px;
}

.alert-danger {
	color: #e74c3c;
	background-color: #ffd1cc;
	border-color: #ffb8b0;
}

.alert-danger .alert-link {
	color: #e74c3c;
}

.alert-warning {
	color: #e67e22;
	background-color: #ffe4cc;
	border-color: #ffd6b2;
}

.alert-warning .alert-link {
	color: #e67e22;
}

.alert-success {
	color: #27ae60;
	background-color: #daf2e4;
	border-color: #b8e5cb;
}

.alert-success .alert-link {
	color: #27ae60;
}

.alert-info {
	color: #3498db;
	background-color: #dae8f2;
	border-color: #b8d2e5;
}

.alert-info .alert-link {
	color: #3498db;
}

.alert-dismissable .close {
	top: -5px;
	right: -25px;
}

.close {
	text-shadow: none;
}

/* Alternative Alerts */
.alert.alert-alt {
	margin: 0 0 2px;
	padding: 5px;
	font-size: 12px;
	border-width: 0;
	border-left-width: 2px;
}

.alert.alert-alt small {
	opacity: 0.75;
	filter: alpha(opacity = 75);
}

.alert-alt.alert-dismissable .close {
	right: 0;
}

.alert-alt.alert-dismissable .close:hover {
	color: #ffffff;
}

.alert-danger.alert-alt {
	border-color: #e74c3c;
}

.alert-warning.alert-alt {
	border-color: #e67e22;
}

.alert-success.alert-alt {
	border-color: #27ae60;
}

.alert-info.alert-alt {
	border-color: #3498db;
}

.sidebar-content .alert.alert-alt {
	margin-left: -10px;
	padding-left: 15px;
	background: transparent;
	color: #ffffff;
}

/* Labels, Badges */
.label,.badge {
	font-weight: normal;
	font-size: 90%;
}

.label {
	padding: 1px 4px;
}

.badge {
	background: url('../img/template/ie8_opacity_dark_30.png') repeat;
	background: rgba(0, 0, 0, 0.3);
	padding: 3px 6px;
}

.label-danger {
	background-color: #e74c3c;
}

.label-danger[href]:hover,.label-danger[href]:focus {
	background-color: #ff5542;
}

.label-warning {
	background-color: #e67e22;
}

.label-warning[href]:hover,.label-warning[href]:focus {
	background-color: #ff8b26;
}

.label-success {
	background-color: #064e05;
}

.label-success[href]:hover,.label-success[href]:focus {
	background-color: #2cc76c;
}

.label-info {
	background-color: #2980b9;
}

.label-info[href]:hover,.label-info[href]:focus {
	background-color: #2f92d4;
}

.label-primary {
	background-color: #1bbae1;
}

.label-primary[href]:hover,.label-primary[href]:focus {
	background-color: #5ac5e0;
}

.label-default {
	background-color: #999999;
}

.label-default[href]:hover,.label-default[href]:focus {
	background-color: #777777;
}

/* Carousel */
.carousel-control.left,.carousel-control.right,.carousel-control.left.no-hover:hover,.carousel-control.right.no-hover:hover
	{
	background: none;
}

.carousel-control.left:hover,.carousel-control.right:hover {
	background: url('../img/template/ie8_opacity_dark_30.png') repeat;
	background: rgba(0, 0, 0, 0.30);
}

.carousel-control span {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	display: inline-block;
}

.carousel-control i {
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
}

/* Bottom Margin */
p,.table,.alert,.carousel {
	margin-bottom: 20px;
}

/* Removing shadows and radius */
.navbar-form-custom .form-control:hover,.navbar-form-custom .form-control:focus,.form-control,.form-control:focus,.has-success .form-control:focus,.has-warning .form-control:focus,.has-error .form-control:focus,.popover,.progress,.progress-bar,.btn.active,.open .btn.dropdown-toggle,.panel
	{
	-webkit-box-shadow: none;
	box-shadow: none;
}

.navbar-form-custom .form-control,.navbar,.dropdown-menu,.tooltip-inner,.breadcrumb,.alert.alert-alt
	{
	border-radius: 0;
}

/*
=================================================================
(#m07hes) HELPERS
=================================================================
*/
.push-bit {
	margin-bottom: 10px !important;
}

.push {
	margin-bottom: 15px !important;
}

.push-top-bottom {
	margin-top: 40px;
	margin-bottom: 40px;
}

.lt-ie9 .hidden-lt-ie9 {
	display: none !important;
}

.display-none {
	display: none;
}

.remove-margin {
	margin: 0 !important;
}

.remove-padding {
	padding: 0 !important;
}

.remove-radius {
	border-radius: 0 !important;
}

.remove-box-shadow {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.remove-transition {
	-moz-transition: none !important;
	-webkit-transition: none !important;
	transition: none !important;
}

:focus {
	outline: 0 !important;
}

/*
=================================================================
(#m08ths) THEMES
=================================================================
*/

/* Alternative Main Style */
.style-alt #page-content {
	background-color: #ffffff;
}

.style-alt .block {
	border-color: #dbe1e8;
}

.style-alt .block.block-alt-noborder {
	border-color: transparent;
}

.style-alt .block-title {
	background-color: #dbe1e8;
	border-bottom-color: #dbe1e8;
}

.style-alt .content-header+.breadcrumb-top,.style-alt .breadcrumb-top+.content-header,.style-alt #page-content+footer
	{
	background-color: #f9fafc;
}

.style-alt .content-header,.style-alt .breadcrumb-top {
	border-bottom-color: #eaedf1;
}

.style-alt #page-content+footer {
	border-top-color: #eaedf1;
}

.style-alt .widget {
	background-color: #f6f6f6;
}

/* Test Circle used in Color Themes Page */
.test-circle {
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	border-radius: 50px;
	background-color: #eeeeee;
	border: 2px solid #cccccc;
	color: #ffffff;
	margin-bottom: 15px;
}

/* Default Color Theme specific colors */
.themed-color {
	color: #1bbae1;
}

.themed-border {
	border-color: #1bbae1;
}

.themed-background {
	background-color: #1bbae1;
}

.themed-color-dark {
	color: #394263;
}

.themed-border-dark {
	border-color: #394263;
}

.themed-background-dark {
	background-color: #394263;
}

/*
=================================================================
(#m09res) RESPONSIVE
=================================================================
*/

/* Small devices, Tablets (>767px) */
@media screen and (max-width: 400px) {
	div#main-container header.navbar.navbar-default {
		margin-left: -60px;
		width: calc(100% +   0px);
	}
}

@media screen and (min-width: 768px) { /* General */
	#login-background {
		height: 400px;
	}
	#login-background>img {
		top: 0;
	}
	#main-container {
		min-width: 768px;
	}
	#page-content {
		padding: 0px 40px;
	}
	.header-section,.breadcrumb-top,.block,.block.full,.modal-body,#page-content+footer
		{
		padding-left: 0px;
		padding-right: 0px;
	}
	.block .block-content-full {
		margin: -20px -20px -1px;
	}
	.block.full .block-content-full {
		margin: -20px;
	}
	.content-header,.content-top,.breadcrumb-top {
		margin: -20px -20px 20px;
	}
	.content-header+.breadcrumb-top,.breadcrumb-top+.content-header {
		margin-top: -21px;
	}
	.block,.widget {
		margin-bottom: 20px;
	}

	/* Forms */
	.form-bordered {
		margin-left: -20px;
		margin-right: -20px;
	}
	.form-bordered .form-group {
		padding-left: 20px;
		padding-right: 20px;
	}
	.form-horizontal.form-bordered .form-group {
		padding-left: 5px;
		padding-right: 5px;
	}

	/* Tabs */
	.nav-tabs>li>a {
		padding-left: 15px;
		padding-right: 15px;
		margin-left: 3px;
		margin-right: 3px;
	}
}

/* Medium devices, Desktops (>991px) */
@media ( min-width : 992px) { /* Main Layout */
	#sidebar {
		-webkit-transition: opacity 0.5s linear, background-color 0.2s ease-out;
		transition: opacity 0.5s linear, background-color 0.2s ease-out;
	}
	#main-container,.header-fixed-top header,.header-fixed-bottom header {
		-webkit-transition: none;
		transition: none;
	}
	#sidebar {
		width: 65px !important;
		opacity: 0.2;
		filter: alpha(opacity = 20);
	}
	#main-container {
		
	}
	.sidebar-brand i {
		display: none;
	}
	#sidebar:hover,.sidebar-full #sidebar {
		width: 60px !important;
		opacity: 1;
		filter: alpha(opacity = 100);
	}
	#sidebar:hover .sidebar-brand i,.sidebar-full #sidebar .sidebar-brand i
		{
		display: inline-block;
	}
	#sidebar:hover+#main-container,.sidebar-full #main-container {
		margin-left: 60px !important;
	}
	header.navbar-fixed-top,header.navbar-fixed-bottom,.sidebar-open header.navbar-fixed-top,.sidebar-open header.navbar-fixed-bottom
		{
		left: 65px;
	}
	#sidebar:hover+#main-container header.navbar-fixed-top,#sidebar:hover+#main-container header.navbar-fixed-bottom,.sidebar-full header.navbar-fixed-top,.sidebar-full header.navbar-fixed-bottom
		{
		left: 60px;
	}
}

/* Large devices, Desktops (>1199px) */
@media ( min-width : 1200px) { /* Main Layout */
	.header-fixed-top .sidebar-content,.header-fixed-bottom .sidebar-content
		{
		padding-bottom: 0;
	}

	/* General */
	article p {
		font-size: 19px;
		line-height: 1.9;
	}
}

/*
=================================================================
(#m10rts) RETINA
=================================================================
*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) , only screen and
		(-moz-min-device-pixel-ratio: 1.5) , only screen and
		(-o-min-device-pixel-ratio: 3/2) , only screen and
	(min-device-pixel-ratio: 1.5) {
	/* If you used a CSS img background, you can put your high resolution here */
}

a.widget.widget-hover-effect1 .widget-simple {
	margin: 0px 0 10px 0;
	box-shadow: 0 0 8px transparent !important;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	background-color: transparent;
	transition: all 0.3s;
}

a.widget {
	text-decoration: none;
	display: block;
	border-radius: 10px;
}

a.widget.widget-hover-effect1 .widget-simple:hover {
	margin-top: -5px;
}

a {
	text-decoration: none;
}

div#page-content .alljob-list table tr td:nth-of-type(6) .btn-group a,table#tblList tr td:nth-of-type(6) .btn-group a
	{
	border: 0;
	background: transparent;
}

a.btn {
	letter-spacing: 0.8px;
	font-size: 13px;
}

a.btn i.fa {
	font-size: 21px;
}

.block-title h2 a {
	text-decoration: none;
}

.col-md-1.expand-table .btn-group.btn-group-xs a {
	background: transparent;
	border: 0;
	margin: 0 3px;
	font-size: 13px;
}

ul.pagination span {
	background: transparent !important;
	color: #969696 !important;
	font-weight: 700 !important;
	letter-spacing: 0.5px;
	font-size: 13px !important;
}

.allJobsclient input[type="checkbox"] {
	margin: 14px 5px 18px;
	height: 14px;
	width: 14px;
	border-radius: 50px !important;
	vertical-align: middle;
}

.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th
	{
	background-color: #fff;
}

table#tblList tr td:nth-of-type(5) span.label.label-success {
	padding: 5px 10px;
	border-radius: 15px;
}

div#modelViewDlg div#cndViewModel .col-md-4 h4 {
	display: inline-block;
	margin-left: 6px;
}

div#sidebar ul.sidebar-nav li a i {
	font-size: 28px;
}

div#sidebar ul.sidebar-nav li {
	text-align: center;
	padding: 0;
	margin: 0;
}

table#tblList tbody tr td:nth-of-type(4) .label-success {
	padding: 5px 15px;
	border-radius: 30px;
}

#sidebar:hover,.sidebar-full #sidebar {
	width: 60px !important;
	opacity: 1;
	filter: alpha(opacity = 100);
}

#sidebar:hover+#main-container,.sidebar-full #main-container {
	margin-left: 60px !important;
}

.row.expand-detail-view .btn-group.btn-group-xs a {
	background: transparent;
	border: 0;
	font-size: 15px !important;
	margin: 0;
	padding: 0 5px;
	display: inline-block;
}

/*--- css add by ajay  ----*/
#login_pg .left_bg {
	position: relative;
	height: 100vh;
	padding: 30px 60px;
	background: #15ade4 !important;
	background-size: contain;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center !important;
}

#login_pg .right_pg {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center !important;
	position: relative;
	height: 100vh;
}

.left_bg .loginIMG {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.left_bg .loginIMG .img img {
	width: 100%;
	max-width: 300px;
}

.left_bg .loginIMG h1 {
	color: #fff;
}

#login_pg .right_pg .form-group label {
	font-size: 14px;
	font-weight: 500
}

#login_pg .right_pg .form-group .input-group input {
	border-radius: 30px !important;
	padding: 8px 15px;
}

#login_pg .right_pg .form-group .input-group i.uil {
	top: 7px !important;
}

#login_pg .right_pg .form-group .input-group input::placeholder {
	font-size: 14px !important;
}

.loginFrg_btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0px 20px;
}

.loginFrg_btn p a:hover {
	color: #15ADE4 !important;
}

@media ( max-width : 992px) {
	#login_pg .left_bg {
		display: none !important;
	}
	#login_pg .right_pg .form-control {
		min-width: 100%;
	}
}

@media ( max-width : 499px) {
	#login_pg .right_pg .form-control {
		min-width: 100% !important;
	}
}

.back-btn {
	float: right;
	background: #15ADE4;
	border-radius: 30px;
	padding: 7px 20px;
	display: inline-block;
	color: #ffffff;
	border: none;
}

.menu_btn {
	padding: 0;
	background: none;
	border: none;
}

.dropdown-menu_items {
	padding: 5px 5px !important;
	width: auto !important;
	min-width: 150px;
	border-radius: 7px;
	left: -138px;
}

.dropdown-menu_items .dropdown_link .dropdown-item .menu_item {
	color: #000 !important;
	width: 150px !important;
	border-radius: 7px;
	padding: 5px 10px;
	background: #ffff;
}

.dropdown-menu_items .dropdown_link .dropdown-item .menu_item:hover {
	color: #000 !important;
	padding: 5px 10px;
	background: #f1f2f7;
}

.footer_section {
	background: #fff;
	padding: 0px 20px;
}

.foot_inner .foot_innerItems {
	display: flex;
	justify-content: center;
	align-items: center;
}

.foot_innerItems {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.foot_innerItems .foot_item .logo {
	width: 96px;
}

.foot_innerItems .foot_item h6 {
	font-size: 12px;
	color: #b2b2b2;
	font-weight: 400;
	margin-top: 14px;
	margin-right: 5px;
}

.modal-dialog {
	width: 60% !important;
	height: 100vh !important;
	margin: 0px !important;
	float: right;
	background: #ffff !important;
}

.modalINoverly {
	background: #0000004a !important;
	overflow-y: scroll !important;
}

.modalINoverly .modal-content {
	padding: 0px 15px;
}

.dialog_inPopup .modal-dialog .modal-content {
	border-radius: 10px !important;
}

#modelViewDlg .modal-dialog {
	width: 600px !important;
	margin: 30px auto !important;
	height: auto !important;
	float: none !important;
	border-radius: 10px !important;
}

#modelViewDlg .modal-dialog .modal-body {
	padding: 15px;
}

#modelViewDlg .modal-dialog .modal-footer {
	padding: 15px;
	border-radius: 0px 0px 10px 10px;
}

.modal.in .modal-dialog {
	transform: translate(39%, 0) !important;
}

.modal.fade .modal-dialog {
	transform: translate(0%, 0) !important;
	transition: transform 0.1s ease-out !important;
}

.modal-content {
	border: none !important;
	box-shadow: none !important;
}

.modal-dialog .modal-body {
	padding: 0 !important
}

.modal-body table thead {
	background: #fff;
	border-bottom: 1px solid #E5E5E5 !important;
}

.modal-body table tbody tr {
	padding: 10px !important;
	border-bottom: 1px solid #E5E5E5 !important;
}

.modal-body table thead th {
	padding-top: 0px !important;
	font-size: 14px !important;
	color: #818181 !important;
	font-weight: 500 !important;
}

.modal-body table tbody td {
	padding: 10 !important;
	font-size: 14px !important;
	color: #333 !important;
	font-weight: 400 !important;
}

.modal-body table tbody td a {
	font-size: 14px !important;
	color: #00A7FA !important;
	font-weight: 400 !important;
}

.modal-body table tbody td a:hover {
	font-size: 14px !important;
	color: #00A7FA !important;
	font-weight: 400 !important;
}

.modal-footer {
	background-color: #fff !important;
}

@media ( max-width : 768px) {
	.modal-dialog {
		width: 60% !important;
		margin: 0px !important;
		float: right;
	}
}

.jobCreateModel_DLG .createjobContent .form-group_items {
	display: flex;
	justify-content: space-between;
	padding: 0px 10px;
}

.form-group_items .form-group {
	width: 49% !important;
	padding: 0px;
	margin-bottom: 10px;
}

.form-group_items .form-group .control-label {
	width: 49% !important;
	padding: 0px;
	margin-bottom: 10px;
	padding-left: 0px;
	color: #333;
}

.jobCreateModel_DLG .form-bordered fieldset legend {
	font-size: 16px;
	font-weight: 500;
	border: 0px solid #e5e5e5;
}

.jobCreateModel_DLG .createjobContent {
	margin-bottom: 30px;
	background: #ffffff;
	border-radius: 10px;
	border: 0px solid #e5e5e5;
	padding-left: 15px;
	padding-right: 15px;
}

.jobCreateModel_DLG .createjobContent .form-group_items .form-group_input textarea
	{
	height: 125px;
}

.createjobContent .jobInternalInfo textarea {
	width: 100%;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
}

.createjobContent .approver_info {
	padding: 15px;
}

.jobCreateModel_DLG .modal-content .modal-body .form-actions_button {
	position: sticky;
	bottom: 0;
	background: #fff;
	padding: 10px 0px 10px !important;
	margin: 0;
	box-shadow: 1px 0px 0px 0px 15px red;
	box-shadow: rgb(0 0 0/ 10%) 0px 0px 10px 5px;
}

.form-group_items .job_position_doc .form-group_input input {
	border: none;
}

.form-group_items .form-group_input select option {
	width: 90% !important;
}

.profile_latter {
	background: #0090c5;
	color: #ffff;
	border-radius: 50%;
	height: 45px;
	width: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 25px;
}

.profile_head .dropdown-menu-right {
	left: auto;
	top: 60px;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	box-shadow: 0 1px 6px rgb(0 0 0/ 8%);
	padding: 0px;
}

.profile_head .dropdown-menu-right .dropdown-header {
	background: #fff;
}

.profile_head .dropdown-custom {
	min-width: 250px !important;
}

.profile_head .dropdown-menu li .menu_link {
	display: block;
	padding: 7px 15px;
	clear: both;
	font-weight: 500;
	line-height: 1.428571429;
	color: #707070;
	font-size: 14px;
	white-space: nowrap;
	border-radius: 10px;
}

.profile_head .dropdown-menu li .menu_link:hover {
	background: transparent !important;
	color: #000;
	font-weight: 400;
}

.profile_head .dropdown-menu li .menu_link:focus {
	background: transparent !important;
}

.profile_head .dropdown-menu.dropdown-custom>li>a i {
	color: #000000;
	font-size: 19px !important;
	font-weight: 900 !important;
}

.dropdown_lang:hover>.dropdown-menu {
	display: block;
	position: absolute;
	top: 48px;
	left: -101px;
	min-width: 100px;
	padding: 10px 10px;
	border-bottom: 1px solid #e5e5e5;
	border-radius: 10px 0px 10px 10px;
	height: 210px;
	overflow-y: scroll;
	scrollbar-width: thin !important;
}

.dropdown_lang>.dropdown-toggle:active {
	pointer-events: none;
}

.dropdown_lang .dropdown-menu .dropdown-item {
	display: block;
	margin-bottom: 10px;
	color: #707070;
}

.dropdown_lang .dropdown-menu .dropdown-item:hover {
	color: #000;
}

/*--- css add by ajay  END ----*/