body {
  /*color: #808080;*/
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.group-row {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}
.input-inline {
  display: block;
  border: none;
  outline: none;
  background: none;
  border-bottom: 1px solid #808080;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

.input-inline:focus {
  border-color: #4a90e2;
  color: #4a90e2;
}
.input-inline::-webkit-input-placeholder{
  color: #808080;
}
.input-inline:focus::-webkit-input-placeholder{
  color: #4a90e2;
}
.input-inline:-webkit-input-placeholder{
  color: #808080;
}
.input-inline:focus:-webkit-input-placeholder{
  color: #4a90e2;
}
.input-inline::-moz-placeholder{
  color: #808080;
}
.input-inline:focus::-moz-placeholder{
  color: #4a90e2;
}
.input-inline:-moz-placeholder{
  color: #808080;
}
.input-inline:focus:-moz-placeholder{
  color: #4a90e2;
}

.clearable{
  background: #fff url(http://i.stack.imgur.com/mJotv.gif) no-repeat right -10px center;
  padding-right: 18px;
  transition: background 0.4s;
}
.clearable.x  { background-position: right 5px center; }
.clearable.onX{ cursor: pointer; }
.clearable::-ms-clear {display: none; width:0; height:0;}

.progress-container {
  position: relative;
  width: 100%;
  height: 17px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #4c8fe1;
  box-sizing: border-box;
}

.progress-bar {
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: #4c8fe1;
  transition: width 0.5s;
}

.progress-number {
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 12px;
  color: #4c8fe1;
  transform: scale(0.9);
}

.btn {
  background-color: #4a90e2;
  color: #fff;
  width: 100%;
  border-radius: 100px;
  text-align: center;
  padding: 10px 0;
}
.btn:focus, .btn:active {
  opacity: 0.8;
}
.btn.btn-disable {
  color: #fff;
  background-color: #b6b6b6;
}
.btn.btn-opacity {
  background-color: #deedf9;
  color: #4a90e2;
}
.rec-btn {
  display: inline-block;
  text-align: center;
  background-color: #fff;
  border: 2px solid #4a90e2;
  color: #4a90e2;
  font-size: 13px;
  padding: 5px 0px;
  border-radius: 7px;
}
.rec-btn.active {
  color: #fff;
  background-color: #4a90e2;
}

.link-red {
  color: #ff0000;
  text-decoration: underline;
  font-size: 12px;
}

.c-blue {
  color: #4a90e2;
}

.link {
  color: #4a90e2;
  text-decoration: underline;
  font-size: 14px;
}

.ta-center {
  text-align: center;
}

.hide {
  display: none!important;
}

.overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  top: 0;
  z-index: 1000;
}
.overlay-container {
  width: 245px;
  height: 375px;
  position: absolute;
  left: 50%;
  margin-left: -123px;
  top: 80px;
  background-color: #fff;
  border: 2px solid #4a90e2;
  border-radius: 10px;
}
.overlay-content {
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  box-sizing: border-box;
}
.overlay-close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.overlay-close > img {
  width: 15px;
}

.close {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
.close:hover::before, .close:hover::after {
  background: #1ebcc5;
}
.close::before, .close::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #000;
}
.close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.close.big {
  -webkit-transform: scale(3);
  -moz-transform: scale(3);
  -ms-transform: scale(3);
  -o-transform: scale(3);
  transform: scale(3);
}
.close.hairline::before, .close.hairline::after {
  height: 1px;
}
.close.thick::before, .close.thick::after {
  height: 4px;
  margin-top: -2px;
}
.close.black::before, .close.black::after {
  height: 8px;
  margin-top: -4px;
}
.close.heavy::before, .close.heavy::after {
  height: 12px;
  margin-top: -6px;
}
.close.pointy::Before, .close.pointy::after {
  width: 200%;
  left: -50%;
}
.close.rounded::before, .close.rounded::after {
  border-radius: 5px;
}
.close.blades::before, .close.blades::after {
  border-radius: 5px 0;
}
.close.warp::before, .close.warp::after {
  border-radius: 120% 0;
}
.close.fat::before, .close.fat::after {
  border-radius: 100%;
}