﻿/* ==========================================================================
   Buttons
   ========================================================================== */

.nsp-button {
  height: 34px;
  line-height: 17px;
  padding: 5px 0;
  width: 120px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: none;
  color: #0e73a1;
  text-transform: uppercase;
  font-weight: bold;
  margin: 5px 20px 5px 0;
  border: 1px solid transparent;
  -webkit-tap-highlight-color: transparent;
  transition: all .3s ease-out;
  cursor: pointer;
}

    .nsp-button.lg-text {
        width: 200px;
    }


  .nsp-button.sm-text {
        font-size: 12px;
        width: 161px;
        float:left;
        margin:4px;

    }

a.nsp-button {
  line-height: 21px;
  display:inline-block;
  text-align:center;
}

.nsp-button:last-of-type {
  margin-right: 0;
}

.nsp-button.capitalize {
  text-transform: capitalize !important;
}

.nsp-button.primary {
  background: #0072ce;
  color: #ffffff;
}

.nsp-button.secondary {
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #004c97;
}

.nsp-button.action {
  background: #ff4c1f;
  color: #ffffff;
}

.nsp-button.access {
  background: #009639;
  color: #ffffff;
}

.nsp-button.external {
    background: #e73232;
    color: #ffffff;
}

.nsp-button.full {
    width: 100%;
}

.nsp-button:disabled {
  color: #ccc;
}

.nsp-button.primary:disabled,
.nsp-button.secondary:disabled,
.nsp-button.action:disabled,
.nsp-button.access:disabled {
  background: #f3f3f3 !important;
  color: #999999;
  border: 1px solid #e5e5e5;
  box-shadow: none !important;
}

.nsp-button.primary.disabled,
.nsp-button.secondary.disabled,
.nsp-button.action.disabled,
.nsp-button.access.disabled {
    background: #f3f3f3 !important;
    color: #999999;
    border: 1px solid #e5e5e5;
    box-shadow: none !important;
}

.nsp-button.lg {
  padding: 5px 26px;
  width: auto;
}

.nsp-button.primary:hover {
  background: #338ed8;
  box-shadow: 0 3px 8px 0 rgba(0,0,0,0.18), 0 2px 12px 0 rgba(0,0,0,0.15);
}

.nsp-button.secondary:hover {
  box-shadow: 0 3px 8px 0 rgba(0,0,0,0.18), 0 2px 12px 0 rgba(0,0,0,0.15);
}

.nsp-button.action:hover {
  background: #fe6f4b;
  box-shadow: 0 3px 8px 0 rgba(0,0,0,0.18), 0 2px 12px 0 rgba(0,0,0,0.15);
}

.nsp-button.access:hover {
  background: #33ab61;
  box-shadow: 0 3px 8px 0 rgba(0,0,0,0.18), 0 2px 12px 0 rgba(0,0,0,0.15);
}

.nsp-button.action div.button-subtitle {
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    margin-top: -5px;
}

.nsp-button.primary div.button-subtitle {
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    margin-top: -5px;
}

.nsp-button.action div.button-toptitle {
    margin-top: -4px;
}

.nsp-button.primary div.button-toptitle {
    margin-top: -4px;
}



