body {
    font-family: "Georgia",serif;
    font-size: 16px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

* { box-sizing:border-box; }

/* form starting stylings ------------------------------- */
.group            { 
  position:relative; 
  margin-bottom:45px; 
}
input               {
  font-size:18px;
  padding:10px 10px 10px 5px;
  display:block;
  width:300px;
  border:none;
  border-bottom:1px solid #757575;
}
input:focus         { outline:none; }

/* LABEL ======================================= */
label                {
  color:#999; 
  font-size:18px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

/* active state */
input:focus ~ label, input:valid ~ label        {
  top:-20px;
  font-size:14px;
  color:#5264AE;
}

/* BOTTOM BARS ================================= */
.bar    { position:relative; display:block; width:300px; }
.bar:before, .bar:after     {
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#5264AE; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
}

/* active state */
input:focus ~ .bar:before, input:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}
@keyframes inputHighlighter {
    from { background:#5264AE; }
  to    { width:0; background:transparent; }
}

.a1  { animation-delay:0.3s; -moz-animation-delay:0.3s; -webkit-animation-delay:0.3s; }
.a2  { animation-delay:0.5s; -moz-animation-delay:0.5s; -webkit-animation-delay:0.5s; }
.a3  { animation-delay:2s; -moz-animation-delay:2s; -webkit-animation-delay:2s; }
.a4  { animation-delay:2s; -moz-animation-delay:2s; -webkit-animation-delay:2s; }


.btn-outline {
    background-color: transparent;
    color: inherit;
    transition: all .5s;
}

.btn-primary.btn-outline {
    color: #428bca;
}

.btn-success.btn-outline {
    color: #5cb85c;
}

.btn-info.btn-outline {
    color: #5bc0de;
}

.btn-warning.btn-outline {
    color: #f0ad4e;
}

.btn-danger.btn-outline {
    color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
    color: #fff;
}

/*Layout Overrides Helpers 20131031*/

body .normal-font,
body .normal-font li {
    font-size: 100% !important;
}

body .no-italic {
    font-style: normal !important;
}

body .no-bold,
body .no-bold a,
body .no-bold li {
    font-weight: normal !important;
}

body .no-m-all,
body ul.no-m-all,
body li.no-m-all {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body .no-p-all,
body ul.no-p-all,
body li.no-p-all {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

body .no-m-top,
body ul.no-m-top,
body li.no-m-top {
    margin-top: 0 !important;
}

body .no-m-bottom,
body ul.no-m-bottom,
body li.no-m-bottom {
    margin-bottom: 0 !important;
}

body .no-m-left,
body ul.no-m-left,
body li.no-m-left {
    margin-left: 0;
}

body .no-m-right,
body ul.no-m-right,
body li.no-m-right {
    margin-right: 0;
}

body .no-p-top,
body ul.no-p-top,
body li.no-p-top {
    padding-top: 0 !important;
}

body .no-p-bottom,
body ul.no-p-bottom,
body li.no-p-bottom {
    padding-bottom: 0 !important;
}

body .no-p-left,
body ul.no-p-left,
body li.no-p-left {
    padding-left: 0;
}

body .no-p-right,
body ul.no-p-right,
body li.no-p-right {
    padding-right: 0;
}

body .s-m-bottom {
    margin-bottom: 5px !important;
}

body .s-m-top {
    margin-top: 5px !important;
}

body .m-m-bottom {
    margin-bottom: 10px !important;
}

body .m-m-top {
    margin-top: 10px !important;
}

body .l-m-bottom {
    margin-bottom: 15px !important;
}

body .xl-m-bottom {
    margin-bottom: 20px !important;
}

body .l-m-top {
    margin-top: 15px !important;
}

body .xl-m-top {
    margin-top: 20px !important;
}

body .s-m-left {
    margin-left: 5px !important;
}

body .s-m-right {
    margin-right: 5px !important;
}

body .m-m-left {
    margin-left: 10px !important;
}

body .m-m-right {
    margin-right: 10px !important;
}

body .l-m-left {
    margin-left: 15px !important;
}

body .xl-m-left {
    margin-left: 20px !important;
}

body .l-m-right {
    margin-right: 15px !important;
}

body .xl-m-right {
    margin-right: 20px !important;
}

body .s-p-bottom {
    padding-bottom: 5px !important;
}

body .s-p-top {
    padding-top: 5px !important;
}

body .m-p-bottom {
    padding-bottom: 10px !important;
}

body .m-p-top {
    padding-top: 10px !important;
}

body .l-p-bottom {
    padding-bottom: 15px !important;
}

body .xl-p-bottom {
    padding-bottom: 20px !important;
}

body .l-p-top {
    padding-top: 15px !important;
}

body .xl-p-top {
    padding-top: 20px !important;
}

body .s-p-left {
    padding-left: 5px !important;
}

body .s-p-right {
    padding-right: 5px !important;
}

body .m-p-left {
    padding-left: 10px !important;
}

body .m-p-right {
    padding-right: 10px !important;
}

body .l-p-left {
    padding-left: 15px !important;
}

body .xl-p-left {
    padding-left: 20px !important;
}

body .l-p-right {
    padding-right: 15px !important;
}

body .xl-p-right {
    padding-right: 20px !important;
}

body .xl-p-all {
    padding: 20px !important;
}

body .xl-m-all {
    margin: 20px !important;
}

.no-indent {
    text-indent: 0;
}