html,
body {
	height: 100%;
}

body {
	background-color: #fff;
	height: 100%;
	color: #555555;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
}


/*------Basic Styles-------*/

strong,
b {
	font-weight: 700;
}

p {
	margin-bottom: 0;
}

ul {
	padding: 0;
	list-style: none;
}
.list-group-item{
	background-color: transparent;
	border: 0;
}
.colored-text{
	color: #437C92;
}

a:hover{
	color: #437C92;
}

.custom-meassage{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	width: 100%;
	display: none;
}
.custom-meassage-content{
	border: 1px solid rgba(204,204,204,0.80);
	font-size: 1rem;
	color: #555555;
}
.custom-meassage-content .icon{
	font-size: 1.8rem;
}

.custom-meassage.active{
	display: flex;
	-webkit-animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	animation-name: fadeIn;
	animation-duration: 1s;
}

@-webkit-keyframes fadeIn { 
	0% { opacity: 0; }
	20% { opacity: 0; }
	40% { opacity: 0.3; }
	60% { opacity: 0.5; }
	80% { opacity: 0.9; }
	100% { opacity: 1; }
  }
  
  @keyframes fadeIn {
	0% { opacity: 0; }
	20% { opacity: 0; }
	40% { opacity: 0.3; }
	60% { opacity: 0.5; }
	80% { opacity: 0.9; }
	100% { opacity: 1; }
  }

/*------!Basic Styles------*/


/*---Button---*/

.btn {
	font-weight: 400;
	letter-spacing: 0.5px;
	border-radius: 0;
	font-size: 0.8rem;
	text-transform: uppercase;
	padding: .5rem .85rem;
	outline: none;
	box-shadow: none !important;
}

.btn-primary {
	background-color: #75B8D2;
	border: 0;
}

.btn-primary:hover{
	background-color: #437C92;
	border-color: #437C92;
}

.btn-secondary {
	background-color: #437C92;
	border: 0;
	color: #fff;
}

.btn-secondary.disabled, .btn-secondary:disabled{
	background-color: #B4CBD3;
    border-color: #B4CBD3;
}

.btn-outline-primary.focus, .btn-outline-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(67,126,144,.5);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #437C92;
    border-color: #437C92;
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle{
	background-color: #437C92;
    border-color: #437C92;
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-primary.dropdown-toggle:focus{
	box-shadow: 0 0 0 0.2rem rgba(67,126,144,.5);
}

.btn-outline-secondary {
    color: #027F95;
    border-color: #75B8D2;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show>.btn-outline-secondary.dropdown-toggle{
	background-color: #437C92;
    border-color: #437C92;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-secondary.dropdown-toggle:focus{
	box-shadow: 0 0 0 0.2rem rgba(67,126,144,.5);
}

.btn-outline-info{
	color: #fff;
    border-color: #FFFFFF;
}

.btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active, .show>.btn-outline-info.dropdown-toggle{
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

.btn-outlined{
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.8rem;
	padding-top: 15px !important;
	padding-bottom: 15px !important;
	padding-right: 15px;
	padding-left:15px;
	background-color: #fff;

}

.btn-edit-outlined{
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.8rem;
	padding-top: 1px;
	padding-bottom: 1px;
	padding-right: 8px!important;
	padding-left:8px!important;
	background-color: #fff;
}


.btn-outline-primary{
	border-color: #0D0E0E;
	color: #000000;
}


/*---!button---*/


/*----Form Style----*/

.form-group{
	margin-bottom: 1.5rem;
}
.form-group label {
	font-weight: 400;
	display: block;
	font-size: 0.85rem;
	color: #555555;
	margin-bottom: 0.3rem;
}

.form-control {
	background-clip: border-box;
	border-radius: 0;
	font-size: 0.9rem;
	padding: .6rem .75rem;
	height: auto;
	font-weight: 400;
	background-color: #fff;
	border-radius: 2px;
	border-color: #AAC0C6;
}

.form-control:focus{
	border-color: #75B8D2;
    box-shadow: inset 1px 0 #75B8D2, inset -1px 0 #75B8D2, inset 0 -1px #75B8D2, inset 0 1px #75B8D2;
    outline: none;
}

.custom-textbox, .custom-selectbox{
	position: relative;
}

.custom-textbox > input, .custom-textbox > textarea {
    box-sizing: border-box;
    margin: 0;
    border: solid 1px;
    border-color: #AAC0C6;
    border-radius: 2px;
    padding: 12px 10px 10px;
    width: 100%;
    height: inherit;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    background-color: transparent;
    box-shadow: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    caret-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    transition: border 0.2s, box-shadow 0.2s;
}

.custom-textbox > input + span,
.custom-textbox > textarea + span {
    position: absolute;
	top: -10px;
	left: 10px;
	background-color: #fff;
	padding: 0.2rem 0.4rem;
	font-size: 0.8rem;
	line-height: 15px;
	color: #75B8D2;
}

.custom-button  .btn-label {
    position: absolute;
	top: -10px;
	left: 10px;
	background-color: #fff;
	padding: 0.2rem 0.4rem;
	font-size: 0.8rem;
	line-height: 15px;
	color: #75B8D2;
}

.custom-button  .color-label {
    position: absolute;
	top: -10px;
	left: 10px;
	background-color: #fff;
	padding: 0.2rem 0.4rem;
	font-size: 0.8rem;
	line-height: 15px;
	color: #75B8D2;
}
.custom-button{
	box-sizing: border-box;
    margin: 0;
    border: solid 1px;
    border-color: #AAC0C6;
    border-radius: 2px;
    padding: 12px 10px 10px;
    width: 100%;
    height: inherit;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    background-color: transparent;
    box-shadow: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    caret-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
	transition: border 0.2s, box-shadow 0.2s;
	text-transform: capitalize;
}

.custom-button:after{	
    font-size: 1.2rem;
    line-height: normal;
    pointer-events: none;
    position: absolute;
    right: 17px;
    top: 19px;
    background: transparent;
    color: #027F95;
}


/* Hover */
.custom-textbox:hover > input,
.custom-textbox:hover > textarea {
    border-color: #75B8D2;
}


/* Focus */
.custom-textbox > input:focus,
.custom-textbox > textarea:focus {
    border-color: #75B8D2;
    box-shadow: inset 1px 0 #75B8D2, inset -1px 0 #75B8D2, inset 0 -1px #75B8D2,  inset 0 1px #75B8D2;
    outline: none;
}

.custom-textbox > input:focus + span,
.custom-textbox > textarea:focus + span {
    color: #75B8D2;
}

.custom-textbox > input:focus + span::before,
.custom-textbox > input:focus + span::after,
.custom-textbox > textarea:focus + span::before,
.custom-textbox > textarea:focus + span::after {
    border-top-color: #75B8D2 !important;
    box-shadow: inset 0 1px #75B8D2;
}



.custom-textbox >  span {
    position: absolute;
    top: -10px;
    left: 10px;
    background-color: #fff;
    padding: 0.2rem 0.4rem;
    font-size: 0.8rem;
    line-height: 15px;
    color: #75B8D2;
	z-index: 1;
}
.iti--separate-dial-code .iti__selected-flag{
	background-color: #fff;
}
.custom-tel-no .iti{
	width: 100%;
}



.custom-selectbox {
	position: relative;
}

select {
	-webkit-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-indent: 1px;
	text-overflow: '';
	outline: none;
	font-size: 1rem;
	height: auto;
	font-weight: 400;
}

select::-ms-expand {
	display: none;
}

select option {
	color: #555;
}

.custom-selectbox::after {
	font-family: 'icomoon';
    content: "\e917";
    font-size: 0.4rem;
    line-height: normal;
    pointer-events: none;
    position: absolute;
    right: 17px;
    top: 19px;
    background: transparent;
    color: #027F95;
}

.custom-selectbox > select + span{
    position: absolute;
	top: -10px;
	left: 10px;
	background-color: #fff;
	padding: 0.2rem 0.4rem;
	font-size: 0.8rem;
	line-height: 15px;
	color: #75B8D2;
}

.custom-selectbox .form-control {
	padding: 12px 32px 10px 10px !important;
	border-color: #AAC0C6;
	border-radius: 2px;
}


/*---Multiselect---*/

/* .custom-selectbox.multi-selectbox ul {
	padding: 0 !important;

} */
/* .custom-selectbox.multi-selectbox input{
	min-height: 45px;
} */

.custom-selectbox.multi-selectbox ul{
	/* padding: 0.8rem; */
}

.custom-selectbox.multi-selectbox ul.focus{
	border-color: #75B8D2 !important;
    box-shadow: inset 1px 0 #75B8D2, inset -1px 0 #75B8D2, inset 0 -1px #75B8D2, inset 0 1px #75B8D2 !important;
    outline: none !important;
}

.custom-selectbox.multi-selectbox ul .badge{
	padding: 0.5rem 0.8rem !important;
	background-color: #718E95;
	margin-right: 0.7rem;
	display: flex;
	align-items: center;
	color: #fff;
	border-radius: 0;
	margin-bottom: 0.7rem;
	font-weight: 400;
	
}
.custom-selectbox.multi-selectbox ul li .form-control{
	padding: 0 !important;
}

.custom-selectbox.multi-selectbox .dropdown-menu li{
	padding: 0.4rem 0;
}

.custom-selectbox.multi-selectbox .dropdown-menu li.text-primary{
	color: #437C92 !important;
}
.custom-selectbox.multi-selectbox ul .badge span{
	margin-right: 5px;
}
.custom-selectbox.multi-selectbox .dropdown-menu{
    min-width: 10rem;
    margin-top: 0;
    margin-left: auto;
    column-count: auto !important;
    transform: none !important;
    top: 100% !important;
    right: 0;
    left: auto !important;
}

.custom-selectbox.multi-selectbox ul .badge .close{
	opacity: 1;
}

.custom-selectbox.multi-selectbox ul .badge .close span{
	text-indent: -9999px;
	position: relative;
	display: inline-block;
	margin-right: 5px;
	margin-top: 2px;
	
}
.dashboardcode-bsmultiselect{
	position: relative;
}

.custom-selectbox.multi-selectbox ul .badge .close span:before{
	content: "\e92b";
    font-family: 'icomoon';
    text-shadow: none;
    color: #fff;
	opacity: 1;
	font-size: 0.6rem;
	float:left;/* or display:block */
	text-indent:0;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before{
	background-color: #437C92;
	border-color: #437C92;
}

.custom-control-label::before{
	background-color: transparent;
    border: 1px solid #AFAFAF;
    border-radius: 2px !important;
    width: 1.2rem;
    height: 1.2rem;
    top: 2px;
}

.custom-control-label::after {
    position: absolute;
    top: 2px;
    left: 0;
    display: block;
    width: 1.1rem;
    height: 1.2rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    font-size: 3rem;
}
.custom-control{
	align-items: center;
}

.custom-selectbox > .dashboardcode-bsmultiselect + span{
    position: absolute;
	top: -10px;
	left: 10px;
	background-color: #fff;
	padding: 0.2rem 0.4rem;
	font-size: 0.8rem;
	line-height: 15px;
	color: #75B8D2;
}

.multiselect.dropdown-toggle::after{
	font-family: 'icomoon';
    content: "\e917";
}

.form-group .custom-control-label{
	margin: 0;
}


.custom-chips-multi-select{
	position: relative;
}
/* .custom-chips-multi-select{
	box-sizing: border-box;
    margin: 0;
    border: solid 1px;
    border-color: #AAC0C6;
    border-radius: 2px;
    padding: 12px 10px 10px;
    width: 100%;
    height: inherit;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    background-color: transparent;
    box-shadow: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    caret-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    transition: border 0.2s, box-shadow 0.2s;
}

.custom-chips-multi-select label{
    position: absolute;
	top: -10px;
	left: 10px;
	background-color: #fff;
	padding: 0.2rem 0.4rem;
	font-size: 0.8rem;
	line-height: 15px;
	color: #75B8D2;
} */

.custom-chips-multi-select-drop ul{
	margin-bottom: 0;
}

.custom-chips-multi-select-drop .badge{
	padding: 0.5rem 0.8rem !important;
	background-color: #718E95;
	margin-right: 0.7rem;
	display: flex;
	align-items: center;
	color: #fff;
	border-radius: 0;
	margin-bottom: 0.7rem;
	font-weight: 400;
	line-height: 1.5em;
}

.custom-chips-multi-select-drop .badge .close{
	font-size: inherit;
	opacity: 1;
}
.custom-chips-multi-select-drop .badge span{
	margin-right: 5px;
}

.custom-chips-multi-select-drop .badge .close span:before {
    content: "\e92b";
    font-family: 'icomoon';
    text-shadow: none;
    color: #fff;
    opacity: 1;
    font-size: 0.6rem;
    float: left;
    text-indent: 0;
}

.custom-chips-multi-select-drop .badge .close span {
    text-indent: -9999px;
    position: relative;
    display: inline-block;
    margin-right: 0;
}

.custom-chips-multi-select-btn{
	background-color: transparent;
	padding: 0.1rem .5rem;
}
.custom-chips-multi-select-btn .icon{
	pointer-events: none;
}


/*---Multiselect---*/

select.form-control:not([size]):not([multiple]){
	height: auto;
}

/*---Material Checkbox---*/


.pure-material-checkbox {
    z-index: 0;
    position: relative;
    display: inline-block;
    color: #555555;
	line-height: 1.5;
	margin: 0 !important
}

/* Input */
.pure-material-checkbox > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -8px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}

/* Span */
.pure-material-checkbox > span {
    display: flex;
    width: 100%;
	cursor: pointer;
	font-size: 0.9rem;
}

/* Box */
.pure-material-checkbox > span::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 1px 11px 0px 1px;
    border: solid 1px; /* Safari */
    border-color: #AFAFAF;
    border-radius: 2px;
    width: 18px;
    height: 18px;
    vertical-align: top;
	transition: border-color 0.2s, background-color 0.2s;
	flex-shrink: 0;
}

/* Checkmark */
.pure-material-checkbox > span::after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 6px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}

/* Checked, Indeterminate */
.pure-material-checkbox > input:checked,
.pure-material-checkbox > input:indeterminate {
    background-color: #437C92;
}

.pure-material-checkbox > input:checked + span::before,
.pure-material-checkbox > input:indeterminate + span::before {
    border-color: #437C92;
    background-color: #437C92;
}

.pure-material-checkbox > input:checked + span::after,
.pure-material-checkbox > input:indeterminate + span::after {
    border-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
}

.pure-material-checkbox > input:indeterminate + span::after {
    border-left: none;
    transform: translate(4px, 3px);
}

/* Hover, Focus */
.pure-material-checkbox:hover > input {
    opacity: 0.04;
}

.pure-material-checkbox > input:focus {
    opacity: 0.12;
}

.pure-material-checkbox:hover > input:focus {
    opacity: 0.16;
}

/* Active */
.pure-material-checkbox > input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.pure-material-checkbox > input:active + span::before {
    border-color: #437C92;
}

.pure-material-checkbox > input:checked:active + span::before {
    border-color: transparent;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}

/* Disabled */
.pure-material-checkbox > input:disabled {
    opacity: 0;
}

.pure-material-checkbox > input:disabled + span {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    cursor: initial;
}

.pure-material-checkbox > input:disabled + span::before {
    border-color: currentColor;
}

.pure-material-checkbox > input:checked:disabled + span::before,
.pure-material-checkbox > input:indeterminate:disabled + span::before {
    border-color: transparent;
    background-color: currentColor;
}


/*---!Material Checkbox---*/


/*---Material Radio Button---*/
@keyframes ripple {
	0% {
	  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
	}
	50% {
	  box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
	}
	100% {
	  box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
	}
  }
  .material-radio {
	margin: 0.6rem 0;
  }
  .material-radio.material-radio-inline {
	display: inline-block;
  }
  .material-radio input[type="radio"] {
	display: none;
  }
  .material-radio input[type="radio"]:checked + label:before {
	border-color: #AAC0C6;
	animation: ripple 0.2s linear forwards;
  }
  .material-radio input[type="radio"]:checked + label:after {
	transform: scale(1);
  }
  .material-radio label {
	display: inline-block;
	min-height: 20px;
	position: relative;
	padding: 0 0 0 30px;
	margin-bottom: 0;
	cursor: pointer;
	vertical-align: bottom;
	font-size: 0.9rem;
  }
  .material-radio label:before, .material-radio label:after {
	position: absolute;
	content: '';
	border-radius: 50%;
	transition: all .3s ease;
	transition-property: transform, border-color;
  }
  .material-radio label:before {
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #AAC0C6;
  }
  .material-radio label:after {
	top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
	transform: scale(0);
	background: #437C92;
  }
  /*---!Material Radio Button---*/


  /*----Input Number----*/
  .spinner {
	width: 140px;
  }
  .spinner input {
	text-align: left;
	padding-right: 50px;
  }
  .spinner .input-group-btn-vertical {
	position: absolute;
	white-space: nowrap;
	right: 0;
	top: 2px;
  }
  .spinner .input-group-btn-vertical > .btn {
	display: block;
	float: none;
	width: 100%;
	max-width: 100%;
	padding: 0 8px;
	margin-left: -1px;
	position: relative;
	border-radius: 0;
	text-decoration: none;
  }
  .spinner .input-group-btn-vertical > .btn:first-child {
	border-top-right-radius: 4px;
  }
  .spinner .input-group-btn-vertical > .btn:last-child {
	margin-top: -2px;
	border-bottom-right-radius: 4px;
  }
  .spinner .input-group-btn-vertical i{
	position: absolute;
	top: 0;
	left: 4px;
  } 
  .spinner input::-webkit-outer-spin-button,
  .spinner input::-webkit-inner-spin-button {
	  /* display: none; <- Crashes Chrome on hover */
	  -webkit-appearance: none;
	  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
  }
  
  .spinner input[type=number]::-webkit-outer-spin-button,
  .spinner input[type=number]::-webkit-inner-spin-button {
	  -webkit-appearance: none;
	  margin: 0;
  }
  
  .spinner input[type=number] {
	  -moz-appearance:textfield;
  }
  .spinner .icon{
	  position: relative;
	  text-decoration: none;
  }
  .spinner .icon{
	  font-size: 0.5rem;
  }

  .spinner .arrow-top .icon{
	position: absolute;
	transform: rotate(180deg);
  }
  /*----!Input Number----*/

    /*----File Upload Button----*/
	.btn-file{
		position: relative;
		overflow: hidden;
	}
	.btn-file input{
	  opacity: 0;
	  position: absolute;
	  font-size: 50px;
	  opacity: 0;
	  right: 0;
	  top: 0;
	}
	/*----!File Upload Button----*/


/*----!Form Style----*/


/*------Loader Styles-------*/

#loaderOverlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #343434;
}

.custom-loader {
	text-align: center;
}

.custom-loader img {
	animation: rotation 2s infinite linear;
	-webkit-animation: rotation 2s infinite linear;
}

.custom-loader span {
	display: block;
	margin-top: 0.7rem;
}


/*------!Loader Styles-------*/

.wrapper {
	padding-top: 70px;
}

#page-content-wrapper{
	overflow-y: auto;
}

#sidebar-wrapper{
	box-shadow: 0px -5px 5px rgba(0,0,0,0.05);
	background-color: #fff;
	height: 100%;
	overflow-y: auto;
}

.sidebar-wrapper li.side-active a{
	font-weight: 600;
	color: #437C92;
}
.sidebar-wrapper li.side-active a .icon:before, .sidebar-wrapper li a:hover .icon:before{
	color: #75B8D2 !important;
}

.sidebar-wrapper li.side-active a:after{
	content: "";
    position: absolute;
    right: 0;
    width: 4px;
    height: 80%;
    top: 5px;
    background-color: #437C92;
    border-radius: 10px;
}

.page-heading {
	font-size: 1.2rem;
	color: #437C92;
}

.sidebar-wrapper{
	width: 18rem;
}
.sidebar-wrapper li a{
	color: #555555;
	text-decoration: none;
	border-radius: 2px;
	display: flex;
	align-items: center;
}
.sidebar-wrapper li a:hover{
	background-color: #F5FAFC;
}
.sidebar-wrapper li.active > a{
	background-color: #F5FAFC;
	font-weight: 700;
}

.sidebar-wrapper li a:hover > .icon::before, .sidebar-wrapper li a:hover, .sidebar-wrapper li.active > a, .sidebar-wrapper li.active > a .icon:before{
	color: #555555;
}

.sidebar-menu-list .icon{
	margin-right: 1.3rem;
	color: #555555;
	font-size: 1.2rem;
}

.sidebar-menu-list .icon:before{
	color: #555555;
}

.sidebar-menu-list .list-group-item{
	display: flex;
	align-items: center;
}

.sidebar-menu-list .list-group-item:hover, .sidebar-menu-list .list-group-item.active{
	background-color: #F5FAFC;
}

.sidebar-menu-list .list-group-item:hover .icon:before, .sidebar-menu-list .list-group-item.active .icon:before{
	color: #fff;
}

.sidebar-menu-list li > a{
	padding: .9rem 1.2rem;
	position: relative;
}

.sidebar-menu-list li > a:hover{
	color: #437C92;
}

.sidebar-menu-list li.panel .sidebar-arrow{
	transition: all 0.4s ease;
	margin-right: 0;
}

.sidebar-menu-list li.panel .collapsed .sidebar-arrow:before{
	font-family: 'icomoon';
	content: "\e928";
	transition: all 0.4s ease;
}


.sidebar-menu-list li .panel-collapse .panel-body li a{
	font-size: 0.8rem;
}

.sidebar-menu-list li .sub-menu, .sidebar-menu-list li.active{
	background-color: #F5FAFC;
}

.sidebar-arrow:before{
	font-size: 0.8rem;
	transition: all 0.4s ease;
}



/*-Navbar Styles-*/

.navbar {
	height: 70px;
	padding-left: 0;
	padding-right: 0;
	transition: all .5s;
}

.main-navbar{
	border-bottom: 1px solid rgba(204,204,204,0.3);
}

.nav-user-prifile-image{
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 50%;
}

.nav-user-prifile-image img{
	max-width: 100%;
}

.dropdown-toggle{
	outline: none !important;
}

.navbar-brand img{
	max-height: 50px;
}
/*-!Navbar Styles-*/


.search-icon-btn{
	cursor: pointer;
	display: flex;
	align-items: center;
}

.search-icon-btn .icon{
	font-size: 1.1rem;
}
.search-icon-btn.search-active .icon:before{
	color: #12698a;
}

.table-filter-right .dropdown-menu{
	border-color: #437C92;
	margin-top: 1rem;
}


.search-icon-wrapper{
	position: relative;
}

.search-container {
	position: absolute;
    display: none;
    background-color: #fff;
    left: 0;
    width: 300px;
    z-index: 100;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
}
.search-container:after {
	position: absolute;
    left: 0;
    content: " ";
    border-top: 9px solid transparent;
    border-bottom: 9px solid #75B8D2;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    margin-top: -10px;
    top: -8px;
}
.search-container .form-control{
	outline: none;
	box-shadow: none;
}

.search-container-inner .btn{
	height: 42px;
}
.search-container-inner .btn .icon:before{
	color: #fff;
}
  

.filter-dropdown .filter-drop-btn .icon:before{
	color: #AFAFAF;
}

.table-secondary-filter .filter-drop-btn .icon{
	margin-right: 0.5rem;
	font-size: 1rem;
}

.table-secondary-filter ul li{
	margin-right: 0.6rem;
}

.table-secondary-filter ul li .filter-checkbox{
	font-size: 0.85rem;
}

.add-new-btn{
	background-color: transparent;
	color: #75B8D2;
	font-weight: 600;
	margin: 0;
	padding: 0;
	border: 0;
	outline: none !important;
	text-decoration: none !important;
	cursor: pointer;
}
.icon-btn-primary{
	padding: 0.5rem 0.6rem;
	border-radius: 4px;
}
.table-filter-hr {
    margin: 0 1.5rem;
    width: 1px;
    height: 25px;
    border: 0;
    border-left: 0.5px solid #555555;
}


.uploader {
	display: block;
	clear: both;
	margin: 0 auto;
	width: 100%;
	max-width: 600px;
  }
  .uploader label {
	width: 100%;
	padding: 2rem 1.5rem 1.5rem;
	margin-bottom: 0;
	text-align: center;
	background: #F8F8F8;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
  }

  .uploader label.hover #start i.fa {
	-webkit-transform: scale(0.8);
			transform: scale(0.8);
	opacity: 0.3;
  }
  .uploader #start {
	float: left;
	clear: both;
	width: 100%;
  }
  .uploader #start.hidden {
	display: none;
  }
  .uploader #response {
	float: left;
	clear: both;
	width: 100%;
  }
  .uploader #response.hidden {
	display: none;
  }
  .uploader #response #messages {
	margin-bottom: .5rem;
  }
  .uploader #file-image {
	display: inline;
	margin: 0 auto .5rem auto;
	width: auto;
	height: auto;
	max-width: 180px;
  }
  .uploader #file-image.hidden {
	display: none;
  }
  .uploader #notimage {
	display: block;
	float: left;
	clear: both;
	width: 100%;
  }
  .uploader #notimage.hidden {
	display: none;
  }
  .uploader progress,
  .uploader .progress {
	display: inline;
	clear: both;
	margin: 0 auto;
	width: 100%;
	max-width: 180px;
	height: 8px;
	border: 0;
	border-radius: 4px;
	background-color: #eee;
	overflow: hidden;
  }
  .uploader .progress[value]::-webkit-progress-bar {
	border-radius: 4px;
	background-color: #eee;
  }
  .uploader .progress[value]::-webkit-progress-value {
	background: -webkit-gradient(linear, left top, right top, from(#393f90), color-stop(50%, #454cad));
	background: linear-gradient(to right, #393f90 0%, #454cad 50%);
	border-radius: 4px;
  }
  .uploader .progress[value]::-moz-progress-bar {
	background: linear-gradient(to right, #393f90 0%, #454cad 50%);
	border-radius: 4px;
  }
  .uploader input[type="file"] {
	display: none;
  }
  .uploader div {
	/* margin: 0 0 1rem 0; */
	color: #555555;
  }

  


/*----Table---*/

/* table {
    border-collapse: collapse;
} */

/* .table td, .table th {
    text-align: left;
	padding: 0.7rem 0.8rem;
	vertical-align: middle;
	border-top: 0;
} */
/* .table td .icon:before{
	color: #75B8D2;
	font-size: 1.1rem;
} */
/* .table thead th
{
	background-color: #F8F8F8;
	border-right: 5px solid #fff;
	border-top: 0;
	border-bottom: 0;
	color: #555555;
	font-weight: 500;
	font-size: 0.9rem;
	vertical-align: middle;
	height: 43px;
} */

/* .table.fixed-col  thead th{
	position: sticky;
	top: 0;
	vertical-align: middle;
	padding: 0.3rem 0.8rem;
} */

/* .table.fixed-col th:last-child, .table.fixed-col td:last-child
{
  position:sticky;
  right:0px;
  width: 208px;
  background-color: #fff; 
} */
/* .table.fixed-col th:last-child{
	border-right: 0;
} */

/* table td{
	border: 0
} */
/* table td{
	border-bottom: 1px solid #AAC0C6;
	border-top: 0;
} */

.table-image{
	height: 70px;
}
.table-image img{
	max-height: 100%;
}

.info-table{
	min-width: auto !important;
}

.no-data-info{
	background-color: rgba(67,124,146,0.10);
	color: #555555;
	text-align: center;
	padding-bottom: 0.7rem;
	padding-top: 0.7rem;
}

/* .info-table thead th{
	font-size: 0.75rem;
	background-color: transparent;
} */

.filter-drop-btn{
	background-color: transparent;
	border: 0;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 0.8rem;
}

.filter-drop-btn .muted-text{
	color: #AFAFAF;
}
.filter-drop-btn .icon{
	margin-right: 0.5rem;
	font-size: 1.2rem;	
}
.filter-drop-btn .icon:before{
	color: #AFAFAF;
}

.filter-drop-btn.dropdown-toggle::after{
	color: #027F95;
	margin-left: 0.3rem;
}

.btn-table-delete{
	font-size: 1.23rem;
}
.btn-table-delete:hover .icon:before{
	color: #437C92 !important;
}

.table td .btn-table-delete .icon:before{
	color: #AEAEAE;
}

.table td .btn-table-detail_delete .icon:before{
	color: #AEAEAE;
}


.table td .btn-table-edit .icon:before{
	color: #AEAEAE;
}

.btn-table-edit:hover .icon:before{
	color: #437C92 !important;
}


.row-active td{
	background-color: #F5FAFC !important;
}

.remove-all-btn{
	visibility: hidden;
}

.remove-all-btn.visible{
	visibility: visible;
}

.remove-all-btn .icon:before{
	color: #fff;
}

.pagination .page-link{
	font-size: 0.9rem;
	font-weight: 500;
	color: #555555;
	padding: .5rem 1rem;
}

.pagination-arrows .icon{
	font-size: 0.7rem;
}

.page-item.active .page-link{
	background-color: #75B8D2;
	border-color: #75B8D2;
	border-color: #CCCCCC;
}

.page-link.pagination-arrows{
	color: #75B8D2;
}

.page-count-block{
	color: #7B7B7B;
	font-size: 0.85rem;
}

.dropdown-menu .dropdown-item{
	font-size: 0.85rem;
	padding: .3rem 0.8rem;
}


.table-search-box{
	position: relative;
	width: 250px;
}

.table-search-box .icon{
	position: absolute;
    right: 12px;
    top: 12px;
    font-size: 1.3rem;
}

/*--Modal Styles--*/

.modal-header{
	background-color: #718E95;
	color: #fff;
	border-radius: 0;
	border: 0;
	font-weight: 500;
	text-transform: uppercase;
	padding-left: 2rem;
	padding-right: 1.5rem;
}

.modal-title{
	font-size: 1rem;
}

.modal-medium{
	width: 360px;
}

.modal-large{
	max-width: 660px;
}

.modal-body{
	padding: 2rem;
}
.modal .btn{
	width: 180px;
	font-weight: 600;
	font-size: 0.8rem;
	padding: .6rem .75rem;
	text-transform: uppercase;
}
.modal-content{
	border-radius: 0;
}

.modal-large{
	max-width: 90%;
}

.modal .table td .btn{
	width: auto;
}

.modal .table.fixed-col th:last-child, .modal .table.fixed-col td:last-child{
	width: 120px;
}
/*--!Modal Styles--*/


.content-add-panel{
	border: 1px solid #E0E0E0;
}

.content-add-panel-head{
	border-bottom: 1px solid #E0E0E0;
}

.content-add-panel-title{
	font-size: 1rem;
	font-weight: 500;
}
.content-add-panel-head .btn .icon{
	font-size: 1.4rem;
}

/*-Slick Slider Styles-*/

.slick-prev {
	left: 0;
}

.slick-next {
	right: 0;
}

.slick-arrow {
	z-index: 100;
}

.slick-prev:before {
	content: url(../images/arrow-left.svg);
}

.slick-next:before {
	content: url(../images/arrow-right.svg);
}

.scrtabs-tab-scroll-arrow{
	display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.scrtabs-tab-scroll-arrow:hover{
	background-color: #437C92 !important;
}

.glyphicon.glyphicon-chevron-left:before{
	content: "\e90f";
	font-family: 'icomoon';
	color: #fff;
}
.glyphicon.glyphicon-chevron-right:before{
	content: "\e910";
	font-family: 'icomoon';
	color: #fff;
}


.delete-modal-content{
	width: 285px;
	text-align: center;
}

.delete-modal-content p{
	font-size: 1rem;
}

.help-info li{
	padding: 0.5rem 0;
	display: flex;
	align-items: center;

}
.help-info li span.help-info-label{
	font-weight: 600;
	font-size: 1rem;
	min-width: 90px;
	display: inline-block;
	justify-content: space-between;
}


/*--No Data---*/
.no-data-wrapper .no-data-main-icon{
	font-size: 6rem;
	color: #437C92;
}
.no-data-wrapper .no-data-main-icon:before{
	color: #437C92;
}
.no-data-wrapper h4{
	color: #437C92;
}
.no-data-wrapper .btn{
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
}
.no-data-wrapper .btn .icon{
	font-size: 0.5rem;
}
.no-data-wrapper{
	margin-top: 8rem;
}
/*--No Data---*/

/*-!Slick Slider Styles-*/

/* .sorting{
	display: inline-block;
	float: right;
} */
.sorting a{
	text-decoration: none;
}

.back-btn{
	background-color: #fff;
	font-weight: 600;
	text-transform: capitalize;
	padding-left: 0;
	padding-right: 0;
	outline: none;
	color: #555;
}
.back-btn .icon:before{
	color: #000;
}

.back-btn:hover .icon:before{
	color: #437C92;
}

.breadcrumb{
	background-color: transparent;
	padding: 0;
}

.breadcrumb .breadcrumb-item{
	font-size: 1.1rem;
	color: #555;
}
.breadcrumb .breadcrumb-item a{
	color: #555;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before{
	content: "\e910";
	font-family: 'icomoon';
	font-size: 0.7rem;
	color: #000;
	padding-left: 1rem;
	padding-right: 1rem;
}

.breadcrumb .breadcrumb-item.active{
	font-weight: 700;
	color: #555;
}


/*--Image Add Block---*/
.image-add{
	border: 1px solid #718E95;
	text-align: center;
	border-radius: 4px;
	max-width: 200px;
}
.image-add .icon{
	font-size: 2.5rem;
}
.user-image-add .icon{
	font-size: 4rem;
}
.user-image-add img{
	max-width: 100%;
	max-height: 100%;
}
.image-add  p{
	margin: 1.8rem 0;
	font-size: 0.9rem;
}

.image-preview {
	height: 100px;
}

/* .image-preview img{
	height: 150px;
	max-height: 100%;
	max-width: 100%;
} */

.image-add-with-preview .image-add-icon{
	height: 60px !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.image-add-with-preview p{
	margin: 1rem 0;
}

.user-image-add .image-add-icon{
	height: 130px !important;
	display: flex;
	align-items: center;
	justify-content: center;
}


/*--Popover---*/
.popover{
	border-color: #75B8D2;
	max-width: none;
}

.measurement-types ul li{
	padding: 0.3rem 0;
	width: 90px;
	border-bottom:1px solid #F8F8F8;
}

.bs-popover-auto[x-placement^=left] .arrow::before, .bs-popover-left .arrow::before{
	border-left-color: #75B8D2
}

.popover-icon{
	text-decoration: none !important;
}


.style-collection-popover ul li{
	padding: 0.3rem 0;
	width: 310px;
	display: flex;
	color: #555555;
}
.style-collection-popover ul li label{
	width: 140px;
	display: flex;
	justify-content: space-between;
	margin: 0;
}
.style-collection-popover h5{
	color: #555;
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
}

/*--Table Tabs--*/
.table-tabs .nav .nav-item .nav-link{
	border: 1px solid #0D0E0E;
	margin-right: 0.5rem;
	border-radius: 0;
	color: #0D0E0E;
	text-transform: uppercase;
	font-size: 0.8rem;
	font-weight: 600;
	text-align: center;
	min-width: 150px;
	padding: 2px;
}
.table-tabs .nav .nav-item .nav-link.active{
	background-color: #75B8D2;
	border-color: #75B8D2;
	color: #fff;
}

.table-tabs .nav .nav-item{
	position: relative;
	margin-bottom: 5px !important;
}
.tab-error{
	position: absolute;
    top: -15px;
    right: 20px;
    font-size: 1.5rem;
}

.tab-error .icon-error:before{
	background: #fff;
}

.add-more{
	color: #75B8D2 !important;
	font-weight: 500;
	padding-left: 20%;
}

.add-more .icon{
	font-size: 1.1rem;
}

.table-col-image{
	height: 80px;
}

.table-col-image img{
	max-height: 100%;
	max-width: 100%;
}


.add-new-style{
	padding-top: 1.3rem;
	border-top: 1px solid #DEDEDE;
}

.add-new-style:first-child{
	border: 0;
	padding-top: 0;
}

.images-wrapper-tabs .table-tabs .nav .nav-item .nav-link{
	min-width: auto;
	padding: .35rem 1rem;
}


/* .product-info-image{
	border-radius: 4px;
	padding: 1.5rem;
	border: 1px solid #718E95;
	height: 170px;
} */



.product-info-image img{
	max-height: 100%;
	max-width: 100%;
}

.product-info-desc ul li{
	display: flex;
	align-items: center;
	padding: 0.3rem 0;
}
.product-info-desc ul li .product-info-list-label{
	min-width: 80px;
	margin-right: 1rem;
	font-size: 0.8rem;
	color: #343434;
}
.product-info-list-span{
	font-size: 0.9rem;
	font-weight: 500;
	color: #343434;
}


.card-list-wrapper{
	border: 1px solid #718E95;
	border-radius: 4px;
}

.card-list-header H4{
	color: #000;
	font-weight: 400;
}


.card-item{
	border: 1px solid #718E95;
	border-radius: 4px;
	margin-bottom: 1.2rem;
}
.card-item-image img{
	max-width: 100%;
	max-height: 100%;
}

.card-item-image-wrapper{
	color: #000;
	text-align: center;
}

.card-item-details-btn{
	border-top: 1px solid #718E95;
	cursor: pointer;
}

.searchbox{
	position: relative;
}

.searchbox .form-control{
	padding: 0.5rem 2.6rem 0.5rem 0.9rem
}

.searchbox .icon {
    position: absolute;
    right: 10px;
    top: 10px;
	font-size: 1.2rem;
	color: #437C92;
}
.block-heading{
	color: #000;
}

.card-item-details-btn{
	color: #437C92;
}
.product-type-image-hover{
	display: none;
}
.card-item-image-wrapper:hover .product-type-image, .product-info-image:hover .product-type-image{
	display: none;
}
.card-item-image-wrapper:hover .product-type-image-hover, .product-info-image:hover .product-type-image-hover{
	display: block;
}

/*----Horizontal Tabs----*/

.horizotal-scroll-tabs .scrtabs-tab-container{
	display: flex;
	align-items: center;
}
.horizotal-scroll-tabs .scrtabs-tab-container ul{
	border: 0;
}
.horizotal-scroll-tabs .scrtabs-tab-container ul li{
	padding: 0 1rem;
}
.horizotal-scroll-tabs .scrtabs-tab-container ul li a{
	padding: 0.7rem 0;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #000000;
	height: 50px;
	position: relative;
	text-transform: uppercase;
	font-size: 0.8rem;
}

.horizotal-scroll-tabs .scrtabs-tab-container ul li a.active{
	font-weight: 700;
	color: #437C92;
}
.horizotal-scroll-tabs .scrtabs-tab-container ul li a.active:after{
	height: 3px;
	content: "";
	background-color: #437C92;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.horizotal-scroll-tabs .scrtabs-tab-container{
	border-top-left-radius: 4px;
	border: 1px solid #718E95;
	border-bottom: 0;
}
.horizotal-scroll-tabs .tab-content{
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border: 1px solid #718E95;
}


.horizotal-scroll-tabs .tab-content{
	padding: 1.5rem;
}

.tabed-prdct-item, .image-add-box-col{
	margin-right: 1rem;
	margin-bottom: 1rem;
	width: 200px;
}
/*----Horizontal Tabs----*/

/*----Product Image Card----*/
.product-item{
	border: 1px solid #E7E7E7;
	font-family: 'Poppins', sans-serif;
	height: 100%;
	display: flex;
    flex-direction: column;
	justify-content: space-between;
	margin-bottom: 1rem;
}
.product-image{
	height: 200px;
	text-align: center;
}
.product-image img{
	max-height: 100%;
	max-width: 100%;
}
/*----Product Image Card----*/



.custom-radio .custom-control-label::before{
	border-radius: 50% !important;
}

.date-picker-input-wrap{
	position: relative;
}
.date-picker-input-wrap:after{
	content: '\e92c';
	font-size: 1.2rem;
	font-family: 'icomoon';
	color: #75B8D2;
	position: absolute;
	right: 15px;
	top: 8px;
	pointer-events: none;
}

.time-picker-input-wrap:after{
	content: '\e92d';
	font-size: 1.2rem;
	font-family: 'icomoon';
	color: #75B8D2;
	position: absolute;
	right: 15px;
	top: 8px;
	pointer-events: none;
}


/*----Date And Time Picker----*/

.flatpickr-calendar{
	border: 2px solid #75B8D2;
	border-radius: 2px;
	padding: 0 1rem;
	/* width: 380px; */
}
.flatpickr-months{
	padding-bottom: 1rem;
}
.flatpickr-current-month .flatpickr-monthDropdown-months, .numInputWrapper input{
	color: #437C92 !important;
}
.flatpickr-current-month{
	display: flex;
	justify-content: center;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay{
	background-color: rgba(129,195,220,0.08);
	border: 1px solid #75B8D2;
	color: #111111;
	border-radius: 0;
}
.flatpickr-day.today{
	border-color: #75B8D2;
	background-color: rgba(129,195,220,0.08);
	border: 1px solid #75B8D2;
	color: #111111;
	border-radius: 0;
}
.flatpickr-day{
	font-weight: 600;
}
/*----Date And Time Picker----*/

.role-dropdown .dropdown-menu{
	left: auto !important;
	right: 0;
}

.noUi-horizontal{
	border: 0;
	box-shadow: none;
	height: 2px;
}
.noUi-horizontal .noUi-handle{
	box-shadow: none;
	border: 2px solid #437C92;
	width: 20px;
	height: 20px;
	top: -10px;
	outline: none;
}
.noUi-connects{
	background: #CCCCCC;
}
.noUi-connect{
	background: #437C92;
}

.noUi-handle:before, .noUi-handle:after{
	display: none;
}

.length-val{
	font-weight: 700;
	color: #437C92;
}
.slider-range-labels{
	font-size: 0.8rem;
}


.customazable-dropdown .dropdown-menu{
	left: 0;
	right: 0;
	width: 100%;
	top: 100% !important;
	margin-top: 0.3rem;
}
.customazable-dropdown .dropdown-menu:after{
	display: none;
}
.customazable-dropdown-list li{
	margin-right: 0.8rem;
	display: flex;
	align-items: center;
}
.customazable-dropdown-list li .icon{
	font-size: 0.9rem;
}


@media only screen and (max-width: 1500px) {
	.table{
		min-width: 1200px;
	}

	.recentorderClass , .msfixedcol{
		min-width: 1000px !important;
	}
	.msfixedcol1{
		min-width: 1600px !important;
	}
	.msfixedcol2{
		min-width: 1650px !important;
	}
	.msfixedcolcus{
		min-width: 1250px !important;
	}
	.msfixedcolinvent{
		min-width: 1000px !important;
	}
	.previewtableClass{
		min-width: 300px;
		width:60%;
	}

	
}

@media only screen and (max-width: 1200px) {
	
}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
	.navbar {
		height: auto;
	}
	.wrapper {
		padding-top: 56px;
	}
}

@media only screen and (max-width: 576px) {
	
}

@media only screen and (max-width: 400px) {}



.tabChange table {
    table-layout: fixed;
}

.tabChange table th,
.tabChange table td {
    word-wrap: break-word;
}



 


  
