/*Custom Css*/

/*Hide Number Input arrow*/
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

/*Checkbox Slider*/
/* Basic Rules */
.switch input { 
    display:none;
}
.switch {
    display:inline-block;
    width:60px;
    height:30px;
    margin:8px;
    transform:translateY(50%);
    position:relative;
}
/* Style Wired */
.slider {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    border-radius:30px;
    box-shadow:0 0 0 2px #777, 0 0 4px #777;
    cursor:pointer;
    border:4px solid transparent;
    overflow:hidden;
     transition:.4s;
}
.slider:before {
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    background:#777;
    border-radius:30px;
    transform:translateX(-30px);
    transition:.4s;
}

input:checked + .slider:before {
    transform:translateX(30px);
    background:limeGreen;
}
input:checked + .slider {
    box-shadow:0 0 0 2px limeGreen,0 0 2px limeGreen;
}

/* Style Flat */
.switch.flat .slider {
 box-shadow:none;
}
.switch.flat .slider:before {
  background:#FFF;
}
.switch.flat input:checked + .slider:before {
 background:white;
}
.switch.flat input:checked + .slider {
  background:limeGreen;
}


/*Login Page*/
/*Custom Css*/

:root {
  --blue: #332955 ;
}
 /* Login Page , Forgot Password Page*/
 .login-bg{
   background-color: var(--blue);
 }
 .login{
   margin-top:100px;
 }
 .loginContent{
    width: 500px;
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
  }
  .loginContent h4{
    font-weight: 400;
  }
  .loginForm{
    margin-top: 30px;
  }
  .loginForm label, .formItem label{
    font-size: 14px;
  }
  .loginForm input:focus, .formItem input:focus, .formItem select:focus, .formItem textarea:focus{
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
  }
  .formItem textarea{
    height: 150px !important;
  }
  .forgotPassword{
      font-size: 13px;
  }
  .forgotPassword:hover{
    text-decoration: underline;
  }
  .btnLogin{
    box-shadow: 0 1px 0 rgb(255 255 255 / 40%) inset;
    background: #332955;
    /*background: -moz-linear-gradient(top,  #d84b4e 0%, #da3237 100%); */
    /*background: -webkit-linear-gradient(top,  #d84b4e 0%,#da3237 100%); */
    /*background: linear-gradient(to bottom,  #d84b4e 0%,#da3237 100%); */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d84b4e', endColorstr='#da3237',GradientType=0 );*/
    height: 50px;
    width: 100%;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #332955;
    margin-top: 25px;
    border-radius: 5px;
  }
  .btnLogin:hover{
      color: #fff;
    background: #BE3C5D; 
    background: -moz-linear-gradient(top,  #BE3C5D 0%, #332955 100%);
    background: -webkit-linear-gradient(top,  #BE3C5D 0%,#332955 100%); 
    background: linear-gradient(to bottom,  #BE3C5D 0%,#332955 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#BE3C5D', endColorstr='#332955',GradientType=0 );
  
  }
  
  
  
  /*Drag & Drop*/
  .files input {
    outline: 2px dashed #92b0b3;
    outline-offset: -10px;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
    padding: 120px 0px 85px 35%;
    text-align: center !important;
    margin: 0;
    width: 100% !important;
}
.files input:focus{     outline: 2px dashed #92b0b3;  outline-offset: -10px;
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear; border:1px solid #92b0b3;
 }
.files{ position:relative}
.files:after {  pointer-events: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 50px;
    right: 0;
    height: 56px;
    content: "";
    background-image: url(https://image.flaticon.com/icons/png/128/109/109612.png);
    display: block;
    margin: 0 auto;
    background-size: 100%;
    background-repeat: no-repeat;
}
.color input{ background-color:#f1f1f1;}
.files:before {
    position: absolute;
    bottom: 10px;
    left: 0;  pointer-events: none;
    width: 100%;
    right: 0;
    height: 57px;
    content: " or drag it here. ";
    display: block;
    margin: 0 auto;
    color: #2ea591;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
}



@media only screen and (max-width : 768px)
{
	.mobile-none
	{
		display: none;
	}
	.desktop-none
	{
		display: block;
	}
	.logo{
	    width: 60%;
	}
}

@media only screen and (min-width : 768px){
    .desktop-none
	{
		display: none;
	}
    
}


/*Fieldsset*/
   fieldset{
	border:1px solid #222;
	@include border-radius(8px);
	/*margin:20px 0 0 0;*/
	/*min-height: 90px;*/
	/*line-height: 90px;*/
	position: relative;
	/*float: left;*/
	/*margin-right: 20px;*/
	padding:20px;
	h2{
		font-family: 'Lobster', cursive;
		font-weight: normal;
		text-shadow:0 1px 0 rgba(255,255,255,.12);
		display: inline-block;
		margin: 0;
		line-height: 1.5;
		position: absolute;
		top: -20px;
		padding: 0 5px 0 10px;
	}
}