.btn {
  transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out,background .2s ease-in-out,opacity .2s ease-in-out,box-shadow .2s ease-in-out;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: GPCommerce,arial,sans-serif;
  font-weight: 600;
  text-decoration: none;
  height: 40px;
  min-width: 100px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 36px;
  padding: 0 20px;
  color: #fff;
  background: #0070d9;
  border: 2px solid transparent;
}

.btn:disabled,
.btn.btn-super:disabled {
  opacity: .4;
  color: hsla(0,0%,100%,.4);
}

.btn:hover {
  cursor: pointer;
}

.btn:hover:disabled {
  cursor: default;
}

.btn.btn-large {
  height: 48px;
  line-height: 46px;
}

.btn.btn-secondary {
  color: #4e606a;
  background: #fff;
  border-color: #b7c5cc;
}

.btn.btn-super {
    color: #ffffff;
    background: #0070D9;
    border-color: transparent;
}

.btn.btn-secondary {
  color: #4e606a;
  background: #fff;
  border-color: #b7c5cc;
}

.form-control {
  border: 1px solid #ccc;
  border-radius: 2px;
  color: #333;
  background: #fff;
  padding: 10px;
  width: 100%;
  line-height: 20px;
  height: 40px;
  font-size: 14px;
}

.form-control::placeholder {
  opacity: 0.3;
}

input.form-control {
  padding: 0 10px;
}

.form-control:hover {
  border-color: #8a8a8a;
}

.form-control.has-error {
  background: #ffeae5;
  border: 1px solid #b83014;
}

.form-control:focus,
.form-control:active {
  outline: 0;
}

.form-group-error {
  line-height: 16px;
  margin-top: 6px;
  color: #d63d1f;
  display: flex;
  align-items: center;
}

.ic-cross-r {
  background: no-repeat url(../img/cross-r.svg);
  background-size: contain;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 5px;
}

.alert {
  min-height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.alert i {
  margin: 0 10px;
  width: 16px;
  height: 16px;
}

.alert.alert-danger {
  background: #FFEAE5;
  color: #b83014;
}

input:-ms-input-placeholder {
  color: #d6d6d6;
}

input {
  border: 1px solid #cccccc;
}

input:hover {
  border-color: #8A8A8A;
}

input:focus-visible {
  box-shadow: 0px 0px 0px 4px #0F8CFF;
  border-color: #333;
  border-radius: 2px;
}

a:focus-visible {
  outline: 4px solid #0f8cff;
  outline-offset: 2px;
  border-radius: 2px;
}