/* Need to check with designer */
/* Need to check with designer */
:host {
  font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

@media screen and (prefers-reduced-motion: reduce) {
  .fw-btn {
    transition: none;
  }
}
.fw-btn {
  font-size: 14px;
  line-height: 20px;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: 0;
  color: #264966;
  cursor: pointer;
  transition: all 0.2s linear;
  letter-spacing: 0.3px;
  font-weight: 500;
  min-width: 87px;
  height: 32px;
}
.fw-btn:focus {
  border: 1px solid #264966;
  box-shadow: 0 0 0 1px #264966;
  outline: none;
}
.fw-btn:active {
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.25);
}
.fw-btn.disabled, .fw-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.4;
}
.fw-btn--primary {
  background-color: #264966;
  color: #fff;
  border: 1px solid #12344d;
  background-image: linear-gradient(to bottom, #264966, #12344d);
}
.fw-btn--primary:active {
  border: 1px solid #264966;
}
.fw-btn--primary:focus:not([disabled]), .fw-btn--primary:hover:not([disabled]) {
  background-color: #12344d;
  background-image: none;
}
.fw-btn--secondary {
  background-color: #f3f5f7;
  color: #12344d;
  border: 1px solid #cfd7df;
  background-image: linear-gradient(to bottom, #fff, #f3f5f7);
}
.fw-btn--secondary:active {
  border: 1px solid #ebeff3;
}
.fw-btn--secondary:focus:not([disabled]), .fw-btn--secondary:hover:not([disabled]) {
  background-color: #f3f5f7;
  background-image: none;
}
.fw-btn--danger {
  color: #fff;
  background-color: #d72d30;
  border: 1px solid #c82124;
  background-image: linear-gradient(to bottom, #d72d30, #c82124);
}
.fw-btn--danger:focus:not([disabled]), .fw-btn--danger:hover:not([disabled]) {
  background-color: #c82124;
  background-image: none;
}
.fw-btn--link {
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  color: #2c5cc5;
}
.fw-btn--link:focus:not([disabled]), .fw-btn--link:hover:not([disabled]) {
  background-color: #ebeff3;
  border-color: #ebeff3;
}
.fw-btn--text {
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  color: #264966;
}
.fw-btn--text:focus:not([disabled]), .fw-btn--text:hover:not([disabled]) {
  background-color: #ebeff3;
  border-color: #ebeff3;
}
.fw-btn--block {
  width: 100%;
}
.fw-btn--mini {
  padding: 2px 2px;
  font-size: 10px;
  line-height: 10px;
  min-width: 16px;
  height: 16px;
}
.fw-btn--small {
  padding: 5px 8px;
  font-size: 12px;
  line-height: 12px;
  min-width: 70px;
  height: 24px;
}
.fw-btn--icon {
  min-width: 32px;
  width: 32px;
  padding: 0;
}