/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0

------------------------------------------------------------- */
/* BACKGROUND GRADIENT */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSITION */
/* TRIPLE BORDERS */
.navbar-header h1 {
  margin: 0;
  padding: 0;
}

#page-wrapper .page-header {
  margin-bottom: 24px;
}

.hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.login-panel-primary-actions {
  padding: 12px 0 18px 0;
}

.outside-account #page-wrapper {
  border-left: none;
  margin: 0;
}

.form-field-row-action {
  cursor: pointer;
  display: inline-block;
}

.either-or-label {
  font-size: 1.2em;
  line-height: 32px;
  display: block;
  text-align: center;
}

.clickable {
  cursor: pointer;
}

.remove-aka-entry {
  /*font-size: 32px;*/
  font-size: 28px;
  cursor: pointer;
  display: inline-block;
}

#ssnFull {
  line-height: 32px;
  font-size: 16px;
}

@media screen and (min-width: 992px) {
  .form-field-row-action,
.either-or-label {
    padding-top: 17px;
  }

  #ssnFull {
    margin-top: 8px;
  }
}
/*.printable { display: none; }*/
@media print {
  .non-printable {
    display: none;
  }

  .printable {
    display: block;
    overflow: visible;
    width: auto;
    border: 0;
    margin: 0;
    overflow-y: visible;
    /*padding 0; float: none !important; background: transparent; font-size:  12pt;*/
  }

  #print-hack {
    min-height: 500px;
  }
}
.wide-modal .modal-dialog {
  /*width: 1000px;*/
  width: auto;
}

@media screen and (min-width: 1305px) {
  .wide-modal .modal-dialog {
    padding-left: 15%;
    padding-right: 15%;
  }
}
.border {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.highlighted {
  background-color: yellow;
  /*color: red;*/
  min-height: 20px;
}

.fake-label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

.ncbe-help-block {
    /* will not display in red on error */
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    /* color: #737373; */
    color: #5C5C5C;
}

.font-bold {
    font-weight: bold;
}

/* Style Snappy Widget */
#snappy-faq {
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
}

#snappy-faq a.snappy-button {
  padding: 17px 20px 15px 20px !important;
  font-size: 19px !important;
  font-family: "Roboto" !important;
}

#snappy-faq a.snappy-close {
  font-size: 19px !important;
  margin-top: 12px !important;
  margin-right: 6px !important;
}

#snappy-widget-contact {
  font-family: "Roboto" !important;
  text-align: right;
  position: absolute;
  bottom: 1px;
  right: 0;
  padding-right: 12px !important;
  background-color: #F3F3E6;
  width: 50%;
  min-width: 120px;
  height: 38px;
}

#snappy-widget-contact a {
  color: #333;
  display: block;
  float: right;
  font-weight: 600;
  line-height: 24px !important;
  margin-top: 7px !important;
  padding: 0 6px !important;
  border: 1px solid #333 !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  border-radius: 3px !important;
}

#snappy-widget-contact a:hover {
  color: #fff;
  background-color: #0a57a3;
}

#snappy-faq.closed #snappy-widget-contact {
  display: none;
}

#snappy-faq.opened #snappy-widget-contact {
  display: block;
}

.use-snappy-contact #snappy-faq #snappy-widget-contact {
  display: none !important;
}
