/* Ajax Progress Bar */
.ajax-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    text-align: center;
    width: 0px;
    height: 3px;
    background: #F09;
    transition: width .3s;
    z-index: 9999;
}
.ajax-progress-bar.hide {
    opacity: 0;
    transition: opacity 1.3s;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e3e3e3;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 4px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 5px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #61C8D7;
}

input:focus + .slider {
  box-shadow: 0 0 1px #61C8D7;
}

input:checked + .slider:before {
  -webkit-transform: translateX(45px);
  -ms-transform: translateX(45px);
  transform: translateX(45px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.switch-label {
    position: relative;
    top: 7px;
    font-weight: 400;
}
.switch-label-n {
    left: 45px;
    color: #333;
}
.switch-label-y {
    color: #FFF;
    left: 15px;
    display: none;
}

input:checked + .slider .switch-label-y {
    display: block;

}
input:checked + .slider .switch-label-n {
    display: none;
}


.typed-cursor{
	opacity: 1;
	-webkit-animation: blink 0.7s infinite;
	-moz-animation: blink 0.7s infinite;
	animation: blink 0.7s infinite;
}
@keyframes blink{
	0% { opacity:1; }
	50% { opacity:0; }
	100% { opacity:1; }
}
@-webkit-keyframes blink{
	0% { opacity:1; }
	50% { opacity:0; }
	100% { opacity:1; }
}
@-moz-keyframes blink{
	0% { opacity:1; }
	50% { opacity:0; }
	100% { opacity:1; }
}


/* Form Group */
.login-inputs .form-group {
    margin-bottom: 0px;
    margin-top: -1px;
    position: relative;
}
.login-inputs .form-group input {
    /*border-bottom-width:  0;*/
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 10;
}
.login-inputs .form-group:first-child input {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.login-inputs .form-group:last-child input {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    /*border-bottom-width:  1px;*/
}
.login-inputs .form-group input:focus {
    z-index: 11;
    position: relative;
}
.login-inputs .username-url-mask-input {
    padding-left: 113px;
}
.login-inputs .username-url-mask {
    font-size: 14px;
    color: #0FACF3;
    top: 14px;
    position: absolute;
    font-weight: 300;
    left: 20px;
    z-index: 999;
}

.login-inputs .form-group.has-error input {
    border-color: #d3dce6 !important;
}


/*  Input Autocomplete Suggestions */

.input-suggestions {
    width: 70%;
    height: 160px;
    background-color: #fdfdfd;
    box-shadow: 0 0 1px rgba(0,0,0,.1);
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 10px;
    border-radius: 8px;
    overflow-y: auto;
    padding: 15px;
    display: none;
}
.input-suggestions-up {
    width: 100%;
    height: 217px;
    bottom: 100%;
    top: auto;
    margin-bottom: 1px;
    z-index: 999;
}
