/*-----------------------------------------*/
/*         CHECKBOX CLASS STARTS           */
/*-----------------------------------------*/
.radio-checkbox-box.beside-textbox {
	padding-top: 12px;
	padding-bottom: 12px;
}
.radio-checkbox-box input {
	display:none;
}
.radio-checkbox-box .lbl {
	font-weight: normal;
	cursor: pointer;
	margin: 0;
	position: relative;
	color: #A1A8B4;
	display: block;
	font-size: 13px;
	line-height: 19px;
	min-width: 18px;
	padding-left: 25px;
}
.radio-checkbox-box .lbl.normal {
	color: inherit;
	font-size: inherit;
	padding-left: 40px;
}
.radio-checkbox-box input ~ .lbl span {
	color: #A1A8B4;
  	cursor: pointer;
  	display: block;
  	background-color: #fff;
  	border: 2px solid #A1A8B4;
  	position: absolute;
  	top: 0;
  	left: 0;
  	height: 18px;
  	width: 18px;
}
.radio-checkbox-box input:disabled ~ .lbl span {
	opacity: 0.5;
	cursor: not-allowed;
}
.radio-checkbox-box input:disabled ~ .lbl {
	cursor: not-allowed;
}
.radio-checkbox-box input[type="radio"] ~ .lbl span {
	border-radius: 50%;
}
.radio-checkbox-box.rounded-corner input[type="checkbox"] ~ .lbl span {
	border-radius: 5px;
}
.radio-checkbox-box input[type="checkbox"] ~ .lbl span {
	border-radius: 3px;
}
.radio-checkbox-box input[type="radio"]:checked ~ .lbl span::before {
  	content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #A1A8B4;
    left: 2px;
    top: 2px;
}
.radio-checkbox-box input[type="checkbox"]:checked ~ .lbl span::before {
  	content: "\f00c";
  	color: #fff;
  	background: #A1A8B4;
  	font-family: fontawesome;
  	text-align: center;
    position: absolute;
    left: -1px;
    top: 0;
    width: 15px;
    height: 14px;
    font-size: 12px;
  	line-height: 14px;
}
@media(max-width: 1199px) {
	.radio-checkbox-box.beside-textbox {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
@media(max-width: 991px) {
	.radio-checkbox-box .lbl {
		font-size: 12px;
	}
	.radio-checkbox-box.beside-textbox {
		padding-top: 7px;
		padding-bottom: 7px;
	}
	.radio-checkbox-box.pr-5 {
		padding-right: 9px !important;
	}
}
@media(max-width: 767px) {
	.radio-checkbox-box .lbl {
		font-size: 11px;
	}
	.radio-checkbox-box.beside-textbox {
		padding-top: 6px;
		padding-bottom: 6px;
	}
}
/*-----------------------------------------*/
/*         CHECKBOX CLASS ENDS             */
/*-----------------------------------------*/

/*-----------------------------------------*/
/*         BUTTON CLASS STARTS             */
/*-----------------------------------------*/
.btn:focus {
  	outline: 0;
  	-webkit-box-shadow: none;
          box-shadow: none;
}
.btn:not(.dropdown-toggle) {
	padding: 8px 12px;
	font-size: 14px;
	line-height: 1.428571429;
	border-radius: 5px;
	font-family: 'Poppins-Regular';
}
.add-btn img {
	margin-top: -2px;
	width: 20px;
}
.btn-paddding-in {
	padding-top: 6px;
	padding-bottom: 6px;
	display: inline-block;
}
.form-btn-container .btn + .btn {
	margin-left: 10px;
}
.btn.btn-lg {
	font-size: 24px;
	padding: 12px 20px;
	font-family: 'Poppins-SemiBold';
}
.btn.btn-mid-radius {
	border-radius: 7px;
}
.btn.btn-big-radius {
	border-radius: 10px;
}
.btn-min-width130 {
	min-width: 130px;
}
.btn-dark-blue {
	color: #fff;
    background-color: #0F367A;
    border: 1px solid #0F367A;
}
.btn-dark-blue:not(:disabled):hover {
    background-color: #F52C2B;
    border-color: #F52C2B;
	color: #fff;
}
.btn-blue {
	color: #fff;
    background-color: #1745A7;
    border: 1px solid #1745A7;
}
.btn-blue:not(:disabled):hover {
    background-color: #F52C2B !important;
    border-color: #F52C2B !important;
	color: #fff !important;
}
.btn-red {
    color: #fff;
    background-color: #F52C2B;
    border: 1px solid #F52C2B;
}
.btn-red:not(:disabled):hover {
    background-color: #1745A7 !important;
    border-color: #1745A7 !important;
	color: #fff !important;
}
@media(max-width: 1199px) {
	.btn:not(.dropdown-toggle) {
		padding: 6px 10px;
		font-size: 13px;
	}
	.add-btn img {
		margin-top: -2px;
		width: 18px;
	}
	.btn.btn-lg {
		font-size: 22px;
		padding: 10px 18px;
	}
	.btn-min-width130 {
		min-width: 120px;
	}
}
@media(max-width: 991px) {
	.btn:not(.dropdown-toggle) {
		padding: 5px 9px;
	}
	.add-btn img {
		margin-top: -3px;
		width: 15px;
	}
	.btn.btn-lg {
		font-size: 20px;
		padding: 8px 15px;
	}
	.btn.btn-big-radius {
		border-radius: 8px;
	}
	.btn-min-width130 {
		min-width: 110px;
	}
}
@media(max-width: 767px) {
	.btn:not(.dropdown-toggle) {
		padding: 4px 8px;
		font-size: 12px;
	}
	.add-btn img {
		margin-top: -4px;
		width: 13px;
	}
	.btn.btn-lg {
		font-size: 18px;
		padding: 7px 12px;
	}
	.btn-min-width130 {
		min-width: 100px;
	}
}
@media(max-width: 575px) {
	.btn-paddding-in {
		padding-top: 6px;
		padding-bottom: 6px;
	}
	.btn-min-width130 {
		min-width: 90px;
	}
}
/*-----------------------------------------*/
/*         BUTTON CLASS ENDS               */
/*-----------------------------------------*/

/*-----------------------------------------*/
/*         FORM CONTROL CLASS STARTS       */
/*-----------------------------------------*/
.form-group {
	margin-bottom: 20px;
}
.form-group.lg {
	margin-bottom: 30px;
}
.form-group.has-error .input-container {
	position: relative;
}
.form-group.has-error .input-container.static {
	position: static;
}
.form-control {
	border: 1px solid #EAEBEC;
	padding: 10px 20px;
	color: #1245A8;
	border-radius: 5px;
	font-size: 15px;
	margin: 0;
}
.form-control:focus {
  	outline: 0;
  	border-color: #1745A7;
  	-webkit-box-shadow: none;
          box-shadow: none;
}
.form-control::placeholder {
  	color: #C5CDDB !important;
  	opacity: 1;
}
.form-control.lg {
	height: 60px;
	font-size: 18px;
}
.form-control.sm {
	height: 40px;
}
textarea.form-control {
	height: 100px;
}
textarea.form-control.md {
	height: 146px;
}
textarea.form-control.no-resize {
	resize: none;
}
.form-control.no-border {
	border: 1px solid transparent !important;
}
.form-control.with-icon {
    padding-left: 35px;
}
.form-control.lg.with-icon {
    padding-left: 45px;
}
.form-control-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 2;
    display: block;
    text-align: center;
    pointer-events: none;
    left: 12px;
    width: 15px;
    height: 15px;
}
.form-control-icon.lg {
	left: 16px;
	width: 20px;
    height: 20px;
}
.form-control.shadow {
	box-shadow: 2px 2px 6px 1px rgba(0,0,0,0.1) inset;
	border-color: #fff;
}
.form-control.shadow:focus {
	box-shadow: 2px 2px 6px 1px rgba(23,69,167,0.3) inset;
}
.form-group.has-error .form-control,
.form-group.has-error .bootstrap-select .dropdown-toggle,
.form-group.has-error .bootstrap-select:not(.transparent) .dropdown-menu.show,
.form-group.has-error .input-group-text {
	border-color: #f00 !important;
}
.form-group.has-error .form-control.shadow {
	border-color: #fff !important;
	box-shadow: 2px 2px 6px 1px rgba(255,0,0,0.2) inset;
}
.control-label {
	font-size: 13px;
	margin-bottom: 5px;
    font-family: 'Poppins-Regular';
}
.control-label.lg {
    font-size: 18px;
    margin-bottom: 7px;
    font-family: 'Poppins-SemiBold';
}
.form-group.has-error label.error {
	color: #f00 !important;
	font-size: 12px;
	line-height: 18px;
	display: block;
	margin: 0;
	position: absolute;
	left: 0;
	right: 0;
}
.form-group.has-error .input-container.static label.error {
	position: static;
}
.input-group-text {
	background: #fff;
	border: 1px solid #EAEBEC;
	border-radius: 5px;
	padding: 10px 15px;
	color: #A5B2C4;
	font-size: 22px;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control + .input-group-append {
	margin: 0;
}
.form-control:focus + .input-group-append .input-group-text {
  	border-color: #1745A7;
}
.form-control-sub-text {
	font-size: 11px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
	padding: 2px 5px;
}
.form-control[readonly] {
	background: none;
}
.form-control.greyed[readonly] {
	background: #e9ecef;
	border-color: #e9ecef !important;
}
.form-action-icon {
	font-size: 32px;
    margin-top: 6px;
    margin-bottom: 6px;
}
@media(max-width: 1199px) {
	.form-group {
		margin-bottom: 17px;
	}
	.form-group.lg {
		margin-bottom: 25px;
	}
	.form-control {
		padding: 8px 18px;
	}
	.form-control.lg {
		height: 53px;
		font-size: 17px;
	}
	.form-control.sm {
		height: 35px;
	}
	.control-label.lg {
	    font-size: 17px;
	}
	.input-group-text {
		padding: 8px 15px;
		font-size: 20px;
	}
	.form-group.has-error label.error {
		font-size: 11px;
		line-height: 16px;
	}
	.form-action-icon {
	    font-size: 28px;
	    margin-top: 5px;
	    margin-bottom: 5px;
	}
}
@media(max-width: 991px) {
	.form-group {
		margin-bottom: 15px;
	}
	.form-group.lg {
		margin-bottom: 20px;
	}
	.form-control {
		padding: 6px 16px;
		font-size: 13px;
	}
	.form-control.lg {
		height: 46px;
		font-size: 16px;
	}
	.form-control.sm {
		height: 33px;
	}
	.form-control.with-icon {
	    padding-left: 30px;
	}
	.form-control.lg.with-icon {
	    padding-left: 40px;
	}
	.form-control-icon {
	    left: 11px;
	    width: 13px;
	    height: 13px;
	}
	.form-control-icon.lg {
		left: 14px;
		width: 18px;
	    height: 18px;
	}
	.control-label {
		font-size: 12px;
	}
	.control-label.lg {
	    font-size: 16px;
	}
	.input-group-text {
		padding: 7px 12px;
		font-size: 18px;
	}
	.input-group-text img {
		width: 14px;
	}
	.form-control-sub-text {
		font-size: 10px;
	}
	.form-group.has-error label.error {
		font-size: 10px;
		position: static;
		line-height: 18px;
	}
	.form-action-icon {
	    font-size: 22px;
	    margin-top: 4px;
	    margin-bottom: 4px;
	}
}
@media(max-width: 767px) {
	.form-group {
		margin-bottom: 10px;
	}
	.form-group.lg {
		margin-bottom: 15px;
	}
	.form-control {
		padding: 5px 12px;
	}
	.form-control.lg {
		height: 40px;
		font-size: 15px;
	}
	.form-control.sm {
		height: 27px;
	}
	.form-control.with-icon {
	    padding-left: 28px;
	}
	.form-control.lg.with-icon {
	    padding-left: 35px;
	}
	.form-control-icon {
	    left: 10px;
	    width: 12px;
	    height: 12px;
	}
	.form-control-icon.lg {
		left: 12px;
		width: 16px;
	    height: 16px;
	}
	.control-label {
		margin-bottom: 3px;
	}
	.control-label.lg {
	    font-size: 15px;
	    margin-bottom: 5px;
	}
	.input-group-text {
		padding: 7px 10px;
		font-size: 16px;
	}
	.form-action-icon {
	    margin-top: 3px;
	    margin-bottom: 3px;
	}
}
/*-----------------------------------------*/
/*         FORM CONTROL CLASS ENDS         */
/*-----------------------------------------*/

/*-----------------------------------------*/
/*         BOOTSTRAP SELECT STARTS         */
/*-----------------------------------------*/
.text-center .bootstrap-select .filter-option {
	text-align: center;
}
.bootstrap-select .no-results {
	margin: 4px 8px 0 8px;
	padding: 3px 10px;
	font-size: 14px;
	border-radius: 4px;
}
/* NORMAL */
.bootstrap-select {
	height: auto !important;
}
.bootstrap-select .dropdown-toggle {
	border: 1px solid #EAEBEC;
	border-radius: 5px;
	font-size: 15px;
	font-family: 'Poppins-Regular';
	padding: 10px 20px;
}
.bootstrap-select .dropdown-toggle,
.bootstrap-select .dropdown-toggle:hover {
    background: #fff !important;
    border: 1px solid #EAEBEC !important;
}
.bootstrap-select .dropdown-toggle::after {
    border-top-color: #92929C;
    border-top-width: 7px;
	border-left-width: 5px;
    border-right-width: 5px;
    margin-left: 5px;
}
.bootstrap-select.dropup .dropdown-toggle::after {
	border-bottom-color: #92929C;
	border-bottom-width: 7px;
	border-left-width: 5px;
    border-right-width: 5px;
    margin-left: 5px;
}
.bootstrap-select>.dropdown-toggle,
.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
	color: #212529;
}
.bootstrap-select.show .dropdown-toggle {
	border-color: #1745A7 !important;
}
.bootstrap-select.show:not(.transparent):not(.dropup) .dropdown-toggle {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}
.bootstrap-select.show.dropup:not(.transparent) .dropdown-toggle {
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	border-top-color: transparent !important;
}
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
.bootstrap-select .dropdown-toggle:focus {
  	outline: 0 !important;
  	box-shadow: none;
}
.bootstrap-select.font-medium .dropdown-toggle {
	font-family: 'Poppins-Medium';
}
.bootstrap-select.color-blue .dropdown-toggle {
	color: #1245A8;
}
.bootstrap-select .filter-option {
	min-width: 25px;
}
.bootstrap-select .dropdown-menu {
	box-shadow: 0px 6px 10px 0px rgba(0,0,0,0.2);
    border: 0;
    border-radius: 5px;
    min-width: 100% !important;
}
.bootstrap-select .dropdown-menu {
	max-width: 100%;
}
.bootstrap-select:not(.transparent):not(.dropup) .dropdown-menu {
	padding-top: 0;
    margin: -1px 0 0 0;
    border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}
.bootstrap-select:not(.transparent):not(.dropup) .dropdown-menu.show {
	border: 1px solid #1745A7;
	border-top: none !important;
}
.bootstrap-select.dropup:not(.transparent) .dropdown-menu {
	padding-bottom: 0;
	margin: 0 0 -1px 0;
	box-shadow: 0px -6px 10px 0px rgba(0,0,0,0.2);
}
.bootstrap-select.dropup:not(.transparent) .dropdown-menu.show {
	border: 1px solid #1745A7;
	border-bottom: none !important;
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}
.bootstrap-select .dropdown-menu .inner {
	border: none !important;
	max-height: inherit !important;
}
.bootstrap-select .dropdown-menu ul.inner {
	max-height: 186px !important;
	margin: 0 !important;
}
.bootstrap-select .dropdown-item {
    color: #212529;
    font-size: 14px;
    padding: 5px 20px;
}
.bootstrap-select .dropdown-item:focus,
.bootstrap-select .dropdown-item:hover,
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: #0F367B;
    color: #fff;
}
/* SMALL SIZE */
.bootstrap-select.sm .dropdown-toggle {
	padding: 5px 10px;
	height: 36px;
	line-height: 26px;
	font-size: 14px;
}
/* TRANSPARENT */
.bootstrap-select.transparent {
	background: none !important;
}
.bootstrap-select.transparent .dropdown-toggle {
	background: none !important;
	border: 2px solid #D3D3D4 !important;
	border-radius: 7px;
}
.bootstrap-select.transparent .dropdown-menu.show {
	border-radius: 7px;
	border: 2px solid #D3D3D4;
}
/* WITH GRADIENT ARROW BUTTON */
.bootstrap-select.gredient-arrow .dropdown-toggle {
	position: relative;
	padding-right: 38px;
}
.bootstrap-select.gredient-arrow .dropdown-toggle::before {
	position: absolute;
    content: "";
    top: -1px;
    bottom: -1px;
    right: -1px;
    width: 27px;
    background-color: #CDCDD0;
    background-image: linear-gradient(#CFCFD2, #B2B2BA);
    border: 1px solid #aaa;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}
.bootstrap-select.gredient-arrow .dropdown-toggle::after {
	position: absolute;
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 20px;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #91919B;
    border: none;
    width: auto;
    height: auto;
    margin: 0;
    line-height: 1;
}
.bootstrap-select.dropup.gredient-arrow .dropdown-toggle::after {
    content: "\f106";
    margin-top: -1px;
}
.bootstrap-select .dropdown-menu li a span.text {
	font-weight: normal !important;
	font-family: arial;
}
@media(max-width: 1199px) {
	/* NORMAL */
	.bootstrap-select .filter-option {
		min-width: 20px;
	}
	.bootstrap-select .dropdown-toggle {
		padding: 8px 18px;
	}
	.bootstrap-select .dropdown-menu ul.inner {
		max-height: 162px !important;
	}
	.bootstrap-select .dropdown-item {
	    padding: 4px 18px;
	    font-size: 13px;
	}
	/* SMALL SIZE */
	.bootstrap-select.sm .dropdown-toggle {
		height: 32px;
		line-height: 22px;
		padding: 5px 8px;
	}
	/* WITH GRADIENT ARROW BUTTON */
	.bootstrap-select.gredient-arrow .dropdown-toggle {
		padding-right: 34px;
	}
	.bootstrap-select.gredient-arrow .dropdown-toggle::before {
		width: 25px;
	}
	.bootstrap-select.gredient-arrow .dropdown-toggle::after {
		font-size: 18px;
	    right: 6px;
	}
}
@media(max-width: 991px) {
	/* NORMAL */
	.bootstrap-select .filter-option {
		min-width: 16px;
	}
	.bootstrap-select .dropdown-toggle {
		font-size: 13px;
		padding: 6px 16px;
	}
	.bootstrap-select .dropdown-menu ul.inner {
		max-height: 144px !important;
	}
	.bootstrap-select .dropdown-item {
	    font-size: 12px;
	    padding: 3px 16px;
	}
	/* SMALL SIZE */
	.bootstrap-select.sm .dropdown-toggle {
		height: 28px;
		font-size: 13px;
		padding: 3px 6px;
	}
	/* WITH GRADIENT ARROW BUTTON */
	.bootstrap-select.gredient-arrow .dropdown-toggle {
		padding-right: 26px;
	}
	.bootstrap-select.gredient-arrow .dropdown-toggle::before {
	    width: 22px;
	}
	.bootstrap-select.gredient-arrow .dropdown-toggle::after {
		font-size: 16px;
	    right: 5px;
	}
}
@media(max-width: 767px) {
	/* NORMAL */
	.bootstrap-select .dropdown-toggle {
		padding: 5px 12px;
	}
	.bootstrap-select .dropdown-item {
	    padding: 3px 12px;
	}
	/* SMALL SIZE */
	.bootstrap-select.sm .dropdown-toggle {
		padding: 2px 6px;
		height: 26px;
		line-height: 20px;
	}
	.bootstrap-select.gredient-arrow .dropdown-toggle {
		padding-right: 26px;
	}
}
/*-----------------------------------------*/
/*         BOOTSTRAP SELECT ENDS           */
/*-----------------------------------------*/

/*-----------------------------------------*/
/*   DATETIMEPICKER CLASS STARTS           */
/*-----------------------------------------*/
.datetimepicker.dropdown-menu {
	min-width: inherit;
}
.datetimepicker td,
.datetimepicker th {
    width: 35px;
    height: 30px;
    font-size: 15px;
    padding-top: 3px;
}
.datetimepicker th {
	font-family: 'Poppins-SemiBold';
}
.datetimepicker.dropdown-menu {
    color: #36404F;
}
.datetimepicker .table-condensed .prev,
.datetimepicker .table-condensed .next,
.datetimepicker .table-condensed .prev:hover,
.datetimepicker .table-condensed .next:hover {
	background-color: #1245A8;
	color: #fff;
}
.datetimepicker .table-condensed .next:after,
.datetimepicker .table-condensed .prev:after {
	text-align: center;
	width: 20px;
    height: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 0;
    font: normal normal normal 14px/1 FontAwesome;
}
.datetimepicker .table-condensed .next:after {
    content: "\f054";
}
.datetimepicker .table-condensed .prev:after {
    content: "\f053";
}
.datetimepicker table tr td.active:active,
.datetimepicker table tr td.active:hover:active,
.datetimepicker table tr td.active.disabled:active,
.datetimepicker table tr td.active.disabled:hover:active,
.datetimepicker table tr td.active.active,
.datetimepicker table tr td.active:hover.active,
.datetimepicker table tr td.active.disabled.active,
.datetimepicker table tr td.active.disabled:hover.active {
    background-color: #1245A8;
}
.datetimepicker table tr td.active,
.datetimepicker table tr td.active:hover,
.datetimepicker table tr td.active.disabled,
.datetimepicker table tr td.active.disabled:hover {
    background-image: none;
}
.datetimepicker table tr td span.active,
.datetimepicker table tr td span.active:hover,
.datetimepicker table tr td span.active.disabled,
.datetimepicker table tr td span.active.disabled:hover {
    background-image: none;
}
.form-control.datetime-picker[disabled],
.form-control.datetime-picker[disabled] + label {
	cursor: not-allowed !important;
}
@media(max-width: 1199px) {
	.datetimepicker td,
	.datetimepicker th {
	    width: 32px;
	    height: 28px;
	    font-size: 14px;
	    padding-top: 4px;
	}
	.datetimepicker .table-condensed .next:after,
	.datetimepicker .table-condensed .prev:after {
	    font-size: 13px;
	}
}
@media(max-width: 991px) {
	.datetimepicker td,
	.datetimepicker th {
	    width: 28px;
	    height: 25px;
	    font-size: 13px;
	    padding-top: 3px;
	}
	.datetimepicker .table-condensed .next:after,
	.datetimepicker .table-condensed .prev:after {
	    font-size: 12px;
	}
}
@media(max-width: 767px) {
	.datetimepicker td,
	.datetimepicker th {
	    width: 25px;
	    height: 22px;
	    font-size: 12px;
	    padding-top: 2px;
	}
	.datetimepicker .table-condensed .next:after,
	.datetimepicker .table-condensed .prev:after {
	    font-size: 11px;
	}
}
/*-----------------------------------------*/
/*     DATETIMEPICKER CLASS ENDS           */
/*-----------------------------------------*/


/*-----------------------------------------*/
/*         TIMEPICKER CLASS START          */
/*-----------------------------------------*/
.bootstrap-timepicker-widget.dropdown-menu {
	min-width: 120px;
}
.bootstrap-timepicker-widget table td {
	padding: 0;
}
.bootstrap-timepicker-widget table td a {
	padding: 5px 0;
}
.bootstrap-timepicker-widget table td a:hover {
	color: #fff;
	background-color: #17366E;
}

/*-----------------------------------------*/
/*         TIMEPICKER CLASS END            */
/*-----------------------------------------*/


/*-----------------------------------------*/
/*          AUTO COMPLETE START            */
/*-----------------------------------------*/
.ui-state-active, .ui-widget-content .ui-state-active {
	background-color: #1745A7;
	border-color: #1745A7;
}
/*-----------------------------------------*/
/*          AUTO COMPLETE END              */
/*-----------------------------------------*/

/*-----------------------------------------*/
/*          UPLOAD BTN START               */
/*-----------------------------------------*/
.uploadBtn {
	position: relative;
	color: #1745a7;
}
.uploadBtn .form-control,
.uploadBtn .input-group-text {
	background-color: #e8e8e8;
	color: #1745a7;
}
.uploadBtn input {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}
.uploadBtn .btn {
	padding-top: 10px;
	text-align: left;
}
.uploadBtn .btn span {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.uploadBtn .input-group-text {
	border-left: none !important;
}
@media(max-width: 991px) {
	.uploadBtn .btn {
		padding-top: 7px;
	}
}
/*-----------------------------------------*/
/*          UPLOAD BTN END                 */
/*-----------------------------------------*/