.btn {
  display: inline-block;
  color: #157fc4;
  margin-bottom: 0;
  font: normal 16px/40px "Open Sans", OpenSans, Arial, sans-serif;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  background: #dcecf6;
  border: 0;
  text-decoration: none;
  white-space: nowrap;
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 2px  rgba(21, 127, 196, 0.5);
}
.btn:hover,
.btn:focus {
  color: #ffffff;
  background: #157fc4;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background: #106196;
}


.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: .65;
}
.btn-cta {
  background: #ffffff;
  color: #157fc4;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
.btn-cta:hover,
.btn-cta:focus {
  color: #157fc4;
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.2) ;
}
.btn-cta:active,
.btn-cta.active {
  color: #157fc4;
  background: #ffffff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.btn-square {
  border-radius: 3px;
}
.btn-dark {
  background: rgba(24, 24, 24, 0.3);
  color: #ffffff;
}
.btn-dark:hover,
.btn-dark:focus {
  color: #ffffff;
  background: rgba(24, 24, 24, 0.5);
  text-decoration: none;
}
.btn-dark:active,
.btn-dark.active {
  color: #ffffff;
  background: rgba(24, 24, 24, 0.7);
}
.btn-search {
  background: #157fc4;
  color: #ffffff;
}
.btn-search:hover,
.btn-search:focus {
  color: #ffffff;
  background: #106196;
  text-decoration: none;
}
.btn-search:active,
.btn-search.active {
  color: #ffffff;
  background: #45a3ba;
}
.btn-long {
  padding-left: 40px;
  padding-right: 40px;
}
.btn-outline {
  background-color: transparent;
  color: #828282;
  border: solid 1px #b5b5b5;
  line-height: 38px;
}
.btn-outline:hover,
.btn-outline:focus {
  color: #828282;
  background: #ededed;
  text-decoration: none;
  border-color: #b5b5b5;
}
.btn-outline:active,
.btn-outline.active {
  color: #1c1c1c;
  background: #ededed;
  text-decoration: none;
}
.btn-group:before,
.btn-group:after {
  content: " ";
  display: table;
}
.btn-group:after {
  clear: both;
}
.btn-group .btn {
  float: left;
  border-radius: 0;
}
.btn-group .btn + .btn {
  margin-left: -1px;
}
.btn-group .btn:first-child {
  border-radius: 20px 0 0 20px;
}
.btn-group .btn:last-child {
  border-radius: 0 20px 20px 0;
}
.btn-group .btn.btn-square:first-child {
  border-radius: 3px 0 0 3px;
}
.btn-group .btn.btn-square:last-child {
  border-radius: 0 3px 3px 0;
}
.btn-link {
  color: #157fc4;
  cursor: pointer;
  border-radius: 0;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.btn-link:hover,
.btn-link:focus {
  color: #157fc4;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  background-color: transparent;
  color: #157fc4;
  text-decoration: none;
}
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

