.error, .ok, .warning {
    border-width: 2px;
    border-style: dashed;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.error {
    color: #db4437;
}

.warning {
    color: #2962FF;
    font-weight: bolder;
}

.ok {
    color: green;
}

.lilet {
    list-style-type: lower-roman;
}

.mar10b {
    margin-bottom: 10px;
}

 *, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #97C8DB;
}

h1 {
  font-size: 40px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 26px;
  font-weight: 400;
}

a {
  color: #000;
  &:hover,
  &:active {
    text-decoration: none;
  }
}

.about {
  /*width: 90%;*/
  margin: 0 auto;
    /*border-style: dashed;*/
    /*border-width: 2px;*/
    /*border-bottom-color: #0a4b78;*/
    /*background: antiquewhite;*/
    background: #e5e4e0;
    margin-bottom: 10px;
}

.about:after {
  content: "";
  display: table;
  clear: both;
}

.bio {
  float: left;
  width: 33%;
  padding-right: 30px;
  overflow: hidden;
  &:last-child {
    padding-right: 0;
  }
}

.expanded {
  display: none;
  animation-duration: 0.3s;
}

/** glow **/
#glow8 {
	max-width: none;
}

.ie .glowing-section input {
	line-height: 40px;
}

.glowing-section input::-webkit-input-placeholder {
   color: #888;
}

.glowing-section input:-moz-placeholder {
   color: #888;
}

.glowing-section input {
	animation: glow 800ms ease-out infinite alternate;
	/*background: #222922;*/
	/*background: linear-gradient(#333933, #222922);*/
	/*border-color: #393;*/
	border-color: #0069d9;
	/*box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,.1), 0 2px 0 #000;*/
	box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,.1), 0 2px 0 #b7fbb9;
	/*color: #efe;*/
	outline: none;
}

.glowing-section input::-webkit-input-placeholder {
	/*color: #efe;*/
}

.glowing-section input:-moz-placeholder {
	/*color: #efe;*/
}

@keyframes glow {
    0% {
		/*border-color: #393;*/
		border-color: #0069d9;
		/*box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,.1), 0 2px 0 #000;*/
		box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,.1), 0 2px 0 #b7fbb9;
    }
    100% {
		/*border-color: #6f6;*/
		border-color: #00d2d9;
		/*box-shadow: 0 0 20px rgba(0,255,0,.6), inset 0 0 10px rgba(0,255,0,.4), 0 2px 0 #000;*/
		box-shadow: 0 0 20px rgba(0,255,0,.6), inset 0 0 10px rgba(0,255,0,.4), 0 2px 0 #b7fbb9;
    }
}

/** glow end **/