
/*_______________Custom Style Sheet 10-04-2018____________*/
/*Custom input*/
/*custom input feild*/


/*login Page*/
.login-panel{
	padding: 7% 0;
	background: #3c8dbc url(../img/login-bg.png);	
    height: 100%;
}
.login-box{
	width: 670px;
	position: relative;
	margin: 0 auto;	   
}
.login-wrap {
    display: block;
    min-height: 400px;
    background:linear-gradient(to bottom, transparent, #fff ) ,url(../img/login-img.jpg) center center no-repeat;
	background-size: cover;
    width: 450px;
	position: relative;
    box-shadow: -5px 8px 36px;
	border-radius: 5px;
}
.login-msg {
    position: absolute;
    bottom: 32px;
    left: 40px;	
}
.login-msg h4{
	font-weight: bold;
}
.login-box-body {
    position: absolute;
    top: 17%;
    right: 0;
    width: 354px;
    padding: 45px 30px;
    border-radius: 5px;
    box-shadow: 5px 1px 26px;
}
/*Devices*/
.custom-table thead{	
	background: #0085d03d;
}
.btn-wrapper{
	width: 135px;
} 

.custom-boxes.checkbox,
.custom-boxes.radio {
    min-width: 100px;
    display: inline-block;
}



/****  floating-Lable style start ****/
.floating-label { 
  position:relative;  
 width: 100%;
  display:inline-block;
  vertical-align: middle;
  margin: 10px 0 20px;
}
.floating-input , .floating-select {
  font-size:14px;
  padding:4px 4px;
  display:block;
  width:100%;
  height:30px;
  background-color: transparent;
  border:none;
  border-bottom:1px solid #ddd;
}

.floating-input:focus , .floating-select:focus {
     outline:none;
     border-bottom:2px solid #3c8dbc; 
}

.floating-label label {
  color:#999; 
  font-size:14px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:5px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

.floating-input:focus ~ label, .floating-input:not(:placeholder-shown) ~ label {
  top:-15px;
  font-size:12px;
  color:#3c8dbc;
}

 .floating-input:not(:placeholder-shown)  {
  border-bottom:1px solid #3c8dbc; 
}
.floating-select:not([value=""]):valid {
	border-bottom:1px solid #3c8dbc; 
}

.floating-select:focus ~ label , .floating-select:not([value=""]):valid ~ label {
  top:-15px;
  font-size:12px;
  color:#3c8dbc;
}
/*error class start*/
.floating-input.error:focus , .floating-select.error:focus {
     border-bottom:2px solid #d9534f; 
}
 .floating-input.error:not(:placeholder-shown)  {
  border-bottom:1px solid #d9534f; 
}
.floating-select.error:not([value=""]):valid {
	border-bottom:1px solid #d9534f; 
}
.floating-select.error:focus ~ label , .floating-select.error:not([value=""]):valid ~ label {  
  color: #d9534f;
}
.floating-input.error:focus ~ label, .floating-input.error:not(:placeholder-shown) ~ label {
 color: #d9534f;
}
/*error class end*/

/* active state */
.floating-input:focus ~ .bar:before, .floating-input:focus ~ .bar:after, .floating-select:focus ~ .bar:before, .floating-select:focus ~ .bar:after {
  width:50%;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.floating-textarea {
   min-height: 60px;
   max-height: 260px; 
   overflow:hidden;
  overflow-x: hidden; 
	resize: none;
}
textarea{
	width: 100%;
	resize: none;
	border:1px solid #ddd;
	background: transparent;
}

/* highlighter */
.highlight {
  position:absolute;
  height:50%; 
  width:100%; 
  top:15%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}
.list-group.assign-roles {
    width: 354px;
}
/* active state */
.floating-input:focus ~ .highlight , .floating-select:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* animation for background color */
@-webkit-keyframes inputHighlighter {
	from { background:#3c8dbc; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#0085d024; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#0085d024; }
  to 	{ width:0; background:transparent; }
}

/****  floating-Lable style end ****/

/*custom checkbox with on off Start*/
.material-switch > input[type="checkbox"] {
    display: none;   
}

.material-switch > label {
    cursor: pointer;
    height: 0;
    position: relative; 
    width: 40px;  
}

.material-switch > label::before {
    background: rgb(0, 0, 0);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    content: '';
    height: 16px;
    margin-top: -8px;
    position:absolute;
    opacity: 0.3;
    width: 40px;
}
.material-switch > label::after {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 24px;
    left: -4px;
    margin-top: -8px;
    position: absolute;
    top: -4px;
    transition: 0.3s ease-in-out;
    width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
    background: inherit;
    opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
    background: inherit;
    left: 20px;
}
/*custom checkbox with on off End*/

/*custom radio buton start*/
.custom-switch-btns{
	display: inline-block;
    min-width: 100px;
}
.custom-switch-btns label{
	font-weight: 400;
}
.custom-switch-btns [type="radio"]:not(:checked),
.custom-switch-btns [type="radio"]:checked {
    left: -999999999px;
    position: absolute;
}
.custom-switch-btns [type="radio"]:not(:checked) + label::before,
.custom-switch-btns [type="radio"]:checked + label::before { 
    content: "";
    width: 14px;
    left: 0;
    position: absolute;
    height: 14px;
    top: 7px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #adadad;
}
.custom-switch-btns [type="radio"]:not(:checked) + label,
.custom-switch-btns [type="radio"]:checked + label {
    position: relative;
    padding-left: 22px;
    padding-top: 3px;
}
.custom-switch-btns [type="radio"]:not(:checked) + label::after {
    opacity: 0;
    transform: scale(0);
}
.custom-switch-btns [type="radio"]:checked + label::after {
    opacity: 1;
    transform: scale(1);
}
.custom-switch-btns [type="radio"]:not(:checked) + label::after,
.custom-switch-btns [type="radio"]:checked + label::after {
    content: "";
    width: 6px;
    height: 6px;
    left: 0;
    position: absolute;
    top: 7px;
    background-color: #ffffff;
    border-radius: 100%;
    border: 7px solid #3c8dbc;
    border-style: double;
}
/*custom radio button end*/

/*custom checkbox button start*/
.custom-switch-btns [type="checkbox"]:not(:checked),
.custom-switch-btns [type="checkbox"]:checked {
    left: -999999999px;
    position: absolute;
}
.custom-switch-btns [type="checkbox"]:not(:checked) + label::before,
.custom-switch-btns [type="checkbox"]:checked + label::before { 
    content: "";
    width: 14px;
    left: 0;
    position: absolute;
    height: 14px;
    top: 7px;
    background-color: #fff;
    border-radius: 0;
    border: 1px solid #adadad;
}
.custom-switch-btns [type="checkbox"]:not(:checked) + label,
.custom-switch-btns [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 22px;
    padding-top: 3px;
}
.custom-switch-btns [type="checkbox"]:not(:checked) + label::after {
    opacity: 0;
    transform: scale(0);
}
.custom-switch-btns [type="checkbox"]:checked + label::after {
    opacity: 1;
    transform: scale(1);
}
.custom-switch-btns [type="checkbox"]:not(:checked) + label::after,
.custom-switch-btns [type="checkbox"]:checked + label::after {
    content: "";
    width: 6px;
    height: 6px;
    left: 0;
    position: absolute;
    top: 7px;
    background-color: #ffffff;
    border-radius: 0;
    border: 7px solid #3c8dbc;
    border-style: double;
}
/*custom checkbox button end*/

.outer-wrap {
    background: #f5f5f5;
    padding: 10px 20px;
    border: 1px solid #eee;
}
.qty-input input[type="text"] {
    width: 35px;
    border: 1px solid #ddd;
    border-radius: 2px;
	padding: 0 5px;
}
.btn-border{
	background: none;
	border: 1px solid #3c8dbc;
	color: #3c8dbc;
}
.btn {
  min-width: 100px;
}
.action .badge {
    border-radius: 2px;
    font-weight: 400;
    font-size: 10px;
}
/*modal*/
.modal-dialog {
    width: 830px;
}
.modal-content {
    border-radius: 2px;
}
.modal-body {
    background: #f7f7f7;
}
.modal-header {
    background: #3c8dbc;
    color: #fff;
    border-bottom: 4px double;
}
.modal-footer .pull-left{
	float: none !important;
}
.modal-footer .btn{
	background: transparent;
	border: 1px solid #3c8dbc;
	color: #3c8dbc;
}

.fixed-width-table thead tr th:first-child{
	width: 10px;
}
.fixed-width-table thead tr th:last-child{
	width: 220px;
}

.wrapper.wrapper-footer .main-footer {
    margin-left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.top-actions {
    width: 260px;
}
.top-actions .floating-label {
    margin: 0;
    margin-top: 4px;
}
.btn-wrap {
    padding: 9px 0;
}
.top-actions.per-page {
    width: 80px;
    margin-right: 25px;
}

/*alets modal start*/

.alerts-modal .modal-dialog {
    width: 480px;
 text-align: center;
}
.alerts-modal .modal-body {
    padding: 0;
    padding-top: 15px;
}
span.head-icon {
    display: block;
    font-size: 34px;
    margin-bottom: 5px;
}
.alerts-btn {
    width: 100%;
    padding: 15px;
 border-radius: 0;
}
.alets-title {
    margin-top: 12px;
}
.alerts-msgg {
    margin-bottom: 15px;
}
/*alets modal end*/