/* Main SCSS File */
/* BRANDING */
/* images */
/* fonts */
@font-face {
  font-family: "Frutiger LT Std";
  src: url("../fonts/FrutigerLTStd-Roman.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Frutiger LT Std";
  src: url("../fonts/FrutigerLTStd-Light.otf");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Frutiger LT Std";
  src: url("../fonts/FrutigerLTStd-Bold.otf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Rockwell";
  src: url("../fonts/Rockwell-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rockwell";
  src: url("../fonts/Rockwell-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
/* fonts */
/*@mixin max-font-size($scale, $max_scale) {

  @if $width == 'auto' {

    // if width is not passed, or empty do this

  } @else {
    display: inline-block;
    width: $width;
  }

  font-size: unquote( (16 * $scale) + 'px');
}*/
body.small-font {
  font-size: 16px;
}

body.medium-font {
  font-size: 18px;
}

body.large-font {
  font-size: 21px;
}

/*
body.large-font .max-medium-font {
  @include fixed-font-size($medium_scale);
}*/
/* colors */
/* transparency */
/* times */
/*  _helpers.scss  */
html, body {
  height: 100%;
  position: relative;
  min-height: 100%;
  padding: 0;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  /* Dissable selectable text in IE */
  -ms-user-select: none;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* make transparent link selection, adjust last value opacity 0 to 1.0 */
  margin: 0;
}

body {
  -webkit-touch-callout: none;
  /* prevent callout to copy image, etc when tap to hold */
  -webkit-text-size-adjust: none;
  /* prevent webkit from resizing text to fit */
  -webkit-user-select: none;
  /* prevent copy paste, to allow, change 'none' to 'text' */
  font-size: 16px;
}

/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
}

strong {
  font-weight: bold;
}

a, a:hover, a:active, a:visited {
  color: inherit;
  text-decoration: none;
}

input[type=text] {
  -webkit-user-select: text;
  user-select: text;
}

.clickable {
  cursor: pointer;
  transition: all 0.2s ease;
}
.clickable.text:active, .clickable.text.ng-click-active {
  text-shadow: 0px -2.5px #888888;
}
.clickable.image:active, .clickable.image.ng-click-active {
  -webkit-filter: brightness(50%);
}
.clickable.bg:active, .clickable.bg.ng-click-active {
  background: rgba(219, 218, 218, 0.5);
}

.animate-show {
  -moz-transition: all linear 1s;
  -o-transition: all linear 1s;
  transition: all linear 1s;
  -webkit-transition: all linear 1s;
  transition: all linear 1s;
  opacity: 1;
}

/*  _typography  */
h1 {
  font-size: 1.5em;
}

body.large-font h1.max-medium-font {
  font-size: 27px;
}

body {
  font-family: Frutiger LT Std, sans-serif, serif;
  color: #333333;
  font-weight: 200;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.keyword {
  color: #ff6600;
}

.side-note {
  color: #888888;
}

.checkmark {
  width: 19px;
  height: 14px;
  margin-top: 1em;
  float: right;
}

.truncate {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/***************************************
Contains .css for the navigation bar and footer on top and bottom of most pages.
- Keyframes
- Navigation-bar
-- Navigation menu bar
- Footer
- Navigation bar impact on content
****************************************/
/************ Keyframes **************/
@-webkit-keyframes spinUp {
  0% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-webkit-keyframes spinDown {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
  }
}
@keyframes spinUpIE {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spinDownIE {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
/************ Navigation **************/
#navigation-bar {
  background-color: #333333;
  color: #FFFFFF;
  border-bottom: 1px solid #1a1a1a;
  overflow: hidden;
  z-index: 100;
  position: relative;
  height: 64px;
  display: block;
  /************ Navigation menu bar **************/
}
#navigation-bar.menu-opened {
  height: 128px;
  transition: height 300ms;
}
#navigation-bar.menu-closed {
  height: 64px;
  transition: height 300ms;
}
#navigation-bar .back-button {
  position: absolute;
  z-index: 20;
  width: 73px;
  padding: 26px 20px 14px 20px;
  left: 1%;
}
#navigation-bar #header {
  position: absolute;
  z-index: 10;
  left: 0px;
  right: 0px;
  text-align: center;
}
#navigation-bar #header .title {
  font-size: 24px;
  position: relative;
  padding-top: 28px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 200;
  height: 64px;
  margin: 0 auto;
}
#navigation-bar #header .title .collapse-button {
  position: absolute;
  right: -40px;
  top: 25px;
  width: 25px;
  height: 25px;
}
#navigation-bar #navigation-bar-icon-container {
  position: absolute;
  z-index: 20;
  right: 0;
  display: inline-block;
  height: 64px;
  padding-top: 9px;
  padding-right: 2%;
}
#navigation-bar .navigation-bar-icon {
  width: 64px;
  height: 55px;
  padding: 10px 15px;
}
#navigation-bar #collapsible-menu {
  font-size: 20px;
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  font-weight: 200;
  text-align: center;
  white-space: nowrap;
}
#navigation-bar .collapsible-menu-icon-opened {
  -webkit-animation: spinUp 300ms 1 linear;
  -webkit-animation-fill-mode: forwards;
  animation: spinUpIE 300ms 1 linear;
  animation-fill-mode: forwards;
}
#navigation-bar .collapsible-menu-icon-closed {
  -webkit-animation: spinDown 300ms 1 linear;
  -webkit-animation-fill-mode: forwards;
  animation: spinDownIE 300ms 1 linear;
  animation-fill-mode: forwards;
}
#navigation-bar #collapsible-menu .menu-item {
  display: inline-block;
  width: 25%;
  font-weight: 200;
  padding-top: 10px;
}
#navigation-bar #collapsible-menu .icon {
  width: 32px;
  height: 32px;
  vertical-align: bottom;
  margin-right: 10px;
  margin-top: 4px;
}
#navigation-bar #collapsible-menu hr {
  color: #bebebe;
  background-color: #bebebe;
  height: 1px;
  width: 93.75%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

/************ Footer **************/
#footer {
  font-size: 16px;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 45px;
  line-height: 45px;
}
#footer.breadcrumb {
  color: #F6F6F6;
  font-weight: bold;
  padding: 0 2em;
  margin: 0;
  list-style: none;
  background-color: #333333;
  border-radius: 0;
  text-transform: uppercase;
}
#footer #footer-root {
  font-weight: bold;
  margin-right: 16px;
  color: #FFFFFF;
  display: inline-block;
}
#footer #footer-detail {
  font-weight: 200;
  color: #FFFFFF;
}

/************ Navigation bar impact on content **************/
.content-with-bar {
  position: absolute;
  top: 64px;
  bottom: 45px;
  height: auto;
  width: 100%;
  background-color: #f2f2f2;
}

.content-without-bar {
  position: absolute;
  top: 0px;
  bottom: 0px;
  height: auto;
  width: 100%;
}

.scrollable-content {
  display: inline-block;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  float: left;
}

.presentation-container {
  position: absolute;
  height: auto;
  width: 100%;
  top: 0px;
  bottom: 0px;
  left: 0;
  right: 0;
  overflow-x: hidden;
}

#presentation-navigation-bar {
  position: absolute;
  bottom: 2%;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  z-index: 40;
}

#presentation-navigation-bar ul {
  text-align: center;
}

#presentation-navigation-bar .click-area {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding-top: 15px;
}
#presentation-navigation-bar .click-area.ng-click-active .numbered-bullet {
  background: rgba(219, 218, 218, 0.5);
}

#presentation-navigation-bar .numbered-bullet {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid #333333;
  padding-top: 2px;
  font-size: 12px;
  color: #333333;
  margin: auto;
  background-color: #F6F6F6;
}

#presentation-navigation-bar .selected {
  background-color: #333333;
  color: white;
}

.angular-animate-left-add {
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 505ms;
  -webkit-transition-timing-function: ease-in-out;
}

.angular-animate-visible-add {
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 505ms;
  -webkit-transition-timing-function: ease-in-out;
}

.angular-animate-right-add {
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 505ms;
  -webkit-transition-timing-function: ease-in-out;
}

/***************************************
Contains .css for all highcharts.
- Font resize overrides
- Tooltips
- Axes
- Containers
****************************************/
/************ Font resize overrides **************/
body.medium-font .graph-container {
  height: 80%;
}

body.large-font .graph-container {
  height: 75%;
}

/************ Tooltips **************/
.highcharts-tooltip span {
  width: 400px !important;
  overflow: auto;
  white-space: normal !important;
  line-height: 1.5em !important;
  font-size: 0.9em !important;
  font-family: Frutiger LT Std, sans-serif !important;
  padding: 8px !important;
}

/************ Axes **************/
#highcharts-x-axis-month {
  text-transform: uppercase !important;
  color: #888888;
  font-size: 11px;
}

/************ Containers **************/
.graph-container {
  margin-top: 20px;
  width: 100%;
  height: 85%;
}

.mail-modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 32, 32, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mail-modalOverlay.active {
  opacity: 1;
  visibility: visible;
}

.mail-modalContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 201;
  width: 70%;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  visibility: hidden;
}
.mail-modalContainer.active {
  visibility: visible;
}

.mail-modal {
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s;
  background-color: #F6F6F6;
  position: relative;
  border-radius: 3px;
  margin: 0 auto;
}
.mail-modal.active {
  transform: scale(1);
  opacity: 1;
}

.mail-modalTitle {
  background-color: #ff6600;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  padding: 4px;
  font-family: "Montserrat", sans-serif;
  border-radius: 3px 3px 0 0;
}

.mail-modalContent {
  padding: 20px;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  background-color: white;
  -ms-user-select: text;
  -moz-user-select: text;
  -webkit-user-select: text;
  user-select: text;
}
.mail-modalContent a {
  color: #ff6600;
  text-decoration: underline;
}
.mail-modalContent p.mailText {
  margin-bottom: 20px;
  font-size: 10px;
}
.mail-modalContent p.explanation {
  font-size: 13px;
  text-align: center;
  -ms-user-select: none;
  padding-bottom: 10px;
  color: #888888;
}

.mail-modalClose {
  position: absolute;
  right: 0;
  top: 0;
  padding: 4px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  color: white;
}

/* .mail-modalClose{
    text-align: center;
    vertical-align: top;
    padding:4px;
    line-height: 30px;
    font-size:18px;
    width:100px;
    margin:20px auto 0 auto;
    background-color: $main_background_color;
    border-radius: 2px;
    cursor:pointer;

    &:hover{
        color: $dark_text_color;
    }
} */
/***************************************
Contains .css for home (landing) page.
- Common properties
- Slideshow dashboard
- Simulation button
- Sub menu list
- Last saved simulation search
- Recent documents
****************************************/
/************ Font resize overrides **************/
body.large-font #home .title.max-medium-font {
  font-size: 27px;
}

#home {
  /************ Common properties **************/
  background-image: url("../img/main-background.jpg");
  width: 100%;
  background-size: cover;
  min-width: 770px;
  padding-top: 20px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  height: 630px;
  /*********** Slideshow dashboard ***********/
  /*********** Simulation button ***********/
  /*********** Budget button ***********/
  /*********** Sub menu list ***********/
  /*********** Last saved simulation search ***********/
  /*********** Recent documents ***********/
}
@media screen and (min-height: 601px) {
  #home {
    height: auto;
  }
}
#home button h1.title {
  font-size: 1.3rem;
}
#home .page-column {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}
#home .column-inner {
  width: 100%;
  padding: 0 3.125%;
  vertical-align: top;
}
#home .region {
  width: 100%;
  margin-bottom: 32px;
  min-width: 364px;
}
#home .title {
  font-family: Rockwell, sans-serif;
  font-weight: bold;
  display: block;
  height: 62px;
  line-height: 62px;
}
#home .sub-menu .ship-text {
  position: fixed;
  bottom: 58px;
  width: 50%;
}
#home .sub-menu .ship-text a,
#home .sub-menu .ship-text p {
  font-size: 12px;
  text-shadow: 0 0 5px black;
  padding: 8px 0 0;
}
#home #footer {
  font-size: 16px;
  display: block;
  background-color: #F6F6F6;
}
#home #footer .breadcrumb {
  font-weight: normal;
  color: #ff6600;
  background-color: #F6F6F6;
}
#home #footer .text {
  position: absolute;
  left: 190px;
  right: 3px;
  bottom: 3px;
  font-size: 8px;
  text-align: right;
  line-height: normal;
}
#home #slideshow-dashboard {
  background-color: rgba(246, 246, 246, 0.8);
  box-shadow: 0px 2px 0px 0px rgba(119, 119, 119, 0.2);
  height: 270px;
}
#home #slideshow-dashboard .title {
  margin: 0 24px;
  text-align: center;
  white-space: nowrap;
}
#home #slideshow-dashboard .sub {
  text-align: center;
  font-size: 14px;
}
#home #slideshow-dashboard .icon-menu {
  display: block;
}
#home #slideshow-dashboard .icon-menu .item {
  display: inline-block;
  width: 25%;
  border-left: 1px solid #bcbcbc;
  height: 160px;
  vertical-align: top;
  margin-top: 24px;
  padding: 0 1%;
}
#home #slideshow-dashboard .icon-menu .item:active {
  background: rgba(188, 188, 188, 0.3);
}
#home #slideshow-dashboard .icon-menu .item:first-child {
  border-left: none;
}
#home #slideshow-dashboard .icon-menu .icon {
  display: block;
  width: 67px;
  height: 67px;
  margin: 25px auto 10px auto;
}
#home #slideshow-dashboard .icon-menu .item-label {
  display: block;
  text-align: center;
  font-size: 1em;
  line-height: 1.125em;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-height: 740px) {
  #home #slideshow-dashboard {
    height: auto;
  }
  #home #slideshow-dashboard .icon-menu .item {
    margin-top: 20px;
    margin-bottom: 20px;
    height: auto;
  }
  #home #slideshow-dashboard .icon-menu .icon {
    margin-top: 10px;
  }
  #home #slideshow-dashboard .icon-menu .item-label {
    margin-bottom: 10px;
  }
}
#home #simulation-home {
  background-color: rgba(238, 128, 0, 0.8);
  box-shadow: 0px 2px 0px 0px rgba(172, 92, 0, 0.8);
  height: 120px;
  text-align: center;
  color: #FFFFFF;
  border: none;
  width: 49%;
  float: left;
  margin-bottom: 32px;
  margin-right: 2%;
  min-width: 200px;
  transition: all 0.2s ease;
}
#home #simulation-home:active {
  background-color: rgba(238, 128, 0, 0.9);
}
#home #simulation-home img {
  display: block;
  width: auto;
  height: 50px;
  margin: 20px auto 10px;
}
#home #simulation-home h1 {
  line-height: normal;
}
@media screen and (max-width: 1152px) {
  #home #simulation-home {
    transition: all 0.1s;
  }
  #home #simulation-home img {
    margin: 20px auto 10px;
  }
  #home #simulation-home h1 {
    font-size: 0.9em;
  }
}
#home #budget-home {
  background-color: rgba(238, 128, 0, 0.8);
  box-shadow: 0px 2px 0px 0px rgba(172, 92, 0, 0.8);
  height: 120px;
  text-align: center;
  color: #FFFFFF;
  border: none;
  width: 49%;
  margin-bottom: 32px;
  min-width: 200px;
  transition: all 0.2s ease;
}
#home #budget-home:active {
  background-color: rgba(238, 128, 0, 0.9);
}
#home #budget-home img {
  display: block;
  width: auto;
  height: 50px;
  margin: 20px auto 10px;
}
#home #budget-home h1 {
  line-height: normal;
}
@media screen and (max-width: 1152px) {
  #home #budget-home {
    transition: all 0.1s;
  }
  #home #budget-home img {
    margin: 20px auto 10px;
  }
  #home #budget-home h1 {
    font-size: 0.9em;
  }
}
#home .sub-menu {
  color: #FFFFFF;
  margin-bottom: 5.5%;
}
#home .sub-menu ul {
  font-size: 1.3125em;
  list-style-type: none;
  width: 100%;
  padding-left: 0;
  text-shadow: 1px 1px #000000;
  font-family: Rockwell, sans-serif;
}
#home .sub-menu .list-item {
  margin-bottom: 1em;
}
#home .sub-menu .list-item .icon {
  width: 35px;
  height: 35px;
  margin-right: 1em;
  display: inline-block;
  vertical-align: middle;
}
#home .sub-menu a,
#home .sub-menu p {
  font-size: 14px;
  text-shadow: 0 0 5px black;
  padding-bottom: 8px;
}
#home #recent-simulations {
  background-color: rgba(238, 128, 0, 0.8);
  height: 192px;
  box-shadow: 0px 2px 0px 0px rgba(172, 92, 0, 0.8);
  padding: 0 5%;
}
@media screen and (max-height: 740px) {
  #home #recent-simulations {
    height: 170px;
  }
}
#home #recent-simulations h1 {
  color: #F6F6F6;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#home #recent-simulations label {
  display: block;
  color: #F6F6F6;
  font-weight: 200;
  margin-bottom: 0.5em;
  font-size: 1.125em;
  line-height: 1.125em;
  vertical-align: top;
}
#home #recent-simulations .search-form {
  position: relative;
}
#home #recent-simulations #search {
  font-size: 24px;
  -webkit-appearance: none;
  outline: 0;
  border: none;
  height: 48px;
  border-radius: 0;
  width: 85%;
  margin: 0;
  display: inline-block;
  padding: 0.2em;
}
#home #recent-simulations #search_simulation_button {
  background-color: #ffffff;
  width: 15%;
  height: 48px;
  background-image: url("../img/search@2x.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 36px 36px;
  vertical-align: top;
  border: none;
  outline: none;
  margin: 0;
  display: inline-block;
}
#home #recent-simulations #simulation-search-autocomplete {
  font-size: 24px;
  position: absolute;
  background-color: #ffffff;
  width: 100%;
  max-height: 5.6em;
  overflow-y: scroll;
  overflow-x: hidden;
}
#home #recent-simulations #simulation-search-autocomplete .option {
  padding: 0.2em;
}
#home #recent-simulations #simulation-search-autocomplete .option .highlight {
  color: #ee8000;
}
#home #recent-documents {
  background-color: rgba(246, 246, 246, 0.8);
  box-shadow: 0px 4px 0px 0px rgba(119, 119, 119, 0.8);
  height: 422px;
  padding: 0 5% 2%;
  width: 100%;
  /* Hides the scrollbar in the recent documents, no problem on iOS
      .recent-documents-list::-webkit-scrollbar {
        display: none;
      }
  */
}
#home #recent-documents h1 {
  color: #333333;
}
#home #recent-documents ul {
  list-style-type: none;
  padding-left: 0;
}
#home #recent-documents li {
  clear: both;
  display: block;
  border-top: 1px solid darkgray;
  height: 3.1em;
  vertical-align: middle;
  line-height: 3.1em;
  font-weight: 200;
  font-size: 1.125em;
}
#home #recent-documents li:last-child {
  border-bottom: 1px solid darkgray;
}
#home #recent-documents .recent-documents-list {
  display: inline-block;
  overflow-x: hidden;
  /* overflow-y: scroll !important; */
  overflow-y: hidden;
  height: 340px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
#home #recent-documents .recent-documents-list .pdf-icon {
  background-repeat: no-repeat;
  background-image: url("../img/pdf-icon@2x.png");
  background-size: 23px 33px;
  background-position: center;
  width: 10%;
  height: 100%;
  display: inline-block;
}
#home #recent-documents .recent-documents-list .document-title {
  text-overflow: ellipsis;
  max-width: 75%;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: top;
}
#home #recent-documents .recent-documents-list .right-arrow {
  float: right;
  background-repeat: no-repeat;
  background-image: url("../img/right-arrow@2x.png");
  background-size: 7px 17px;
  background-position: center;
  display: inline-block;
  width: 8%;
  height: 100%;
  vertical-align: top;
}
@media screen and (max-height: 740px) {
  #home #recent-documents {
    height: auto;
  }
  #home #recent-documents li {
    font-size: 0.9em;
  }
  #home #recent-documents .recent-documents-list {
    height: auto;
  }
}

/***************************************
Contains .css for faq page.
- Common properties
- Question/Answer wrapper
- Question
- Answer
- Icon
- Question/Icon wrapper
****************************************/
#faq {
  /************ Common properties **************/
  height: 100%;
  width: 100%;
  background-color: #efefef;
  /************ Question/Answer wrapper **************/
  /************ Question **************/
  /************ Answer **************/
  /************ Icon **************/
  /************ Question/Icon wrapper **************/
}
#faq .faq-question-answer-group {
  transition-duration: 350ms;
  -webkit-transition-duration: 350 msms;
}
#faq .faq-question-open {
  background-color: #F6F6F6;
}
#faq .faq-question {
  font-size: 1.3125em;
  line-height: 1.5238095238em;
  font-weight: 200;
  color: #333333;
  display: inline-block;
  width: 91.75%;
  padding-left: 3.125%;
  vertical-align: middle;
}
#faq .faq-answer > * {
  font-size: 1.125em;
}
#faq .faq-answer {
  padding-bottom: 0.8888888889em;
  padding-left: 9.5%;
  padding-right: 6.25%;
  line-height: 1.3333333333em;
}
#faq .faq-answer li {
  margin-left: 2em;
  list-style-type: disc;
  margin-top: 1em;
  margin-bottom: 1em;
}
#faq .faq-icon {
  width: 3.125%;
  height: 2em;
  display: inline-block;
  vertical-align: top;
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
}
#faq .faq-icon-opened {
  background-image: url("../img/minus-sign@2x.png");
}
#faq .faq-icon-closed {
  background-image: url("../img/plus-sign@2x.png");
}
#faq .faq-question-answer-group > div:first-child {
  padding-left: 3.125%;
  padding-bottom: 1em;
  padding-top: 1em;
}

/***************************************
Contains .css for in-depth page.
Navigate from home slideshow panel.
- Background
- Content
-- Animation
-- Page
-- Triangle approach
-- To simulation
****************************************/
/************ Font resize overrides **************/
body.medium-font #in-depth .content .page {
  padding-top: 4%;
}

body.large-font #in-depth .content .page {
  padding-top: 3%;
}
body.large-font #in-depth .content .page p {
  margin-bottom: 0.7em;
  line-height: 1.5em;
}

#in-depth {
  /************ Background **************/
  /************ Content **************/
}
#in-depth .background-photo {
  width: 50%;
  background-image: url("../img/couple@2x.png");
  margin: 0 auto;
  background-size: cover;
  height: 100%;
  float: left;
}
#in-depth .content {
  width: 50%;
  background-color: white;
  height: 100%;
  float: left;
  overflow-x: hidden;
  /************ Page **************/
  /************ Animation **************/
  /************ Triangle approach **************/
  /************ To simulation **************/
}
#in-depth .content .page {
  width: 50%;
  height: 100%;
  display: inline-block;
  padding-top: 8%;
  padding-left: 3.125%;
  padding-right: 3.125%;
  background-color: rgba(246, 246, 246, 0.7);
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch;
}
#in-depth .content .page .title {
  font-size: 1.5em;
  margin-bottom: 1em;
  font-weight: bold;
}
#in-depth .content .page p {
  margin-bottom: 1em;
  font-size: 1.25em;
  line-height: 1.6875em;
  font-weight: 200;
}
#in-depth .content .page li {
  margin: 0 15px;
  padding: 5px 10px;
  list-style: disc;
}
#in-depth .content .page li ul li {
  list-style: circle;
}
#in-depth .content .page.angular-animate-left {
  position: absolute;
  z-index: 30;
  transform: translate(-200%, 0);
}
#in-depth .content .page.angular-animate-visible {
  position: absolute;
  z-index: 30;
}
#in-depth .content .page.angular-animate-right {
  position: absolute;
  z-index: 30;
  transform: translate(200%, 0);
}
#in-depth .content .page #triangle img {
  width: 60%;
  margin: 0 auto 1em auto;
  display: block;
}
#in-depth .content .page #triangle .top {
  margin: 0 auto 0.5em auto;
  display: block;
  vertical-align: top;
  text-align: center;
}
#in-depth .content .page #triangle .left {
  display: inline-block;
  width: 30%;
  text-align: center;
}
#in-depth .content .page #triangle .right {
  display: inline-block;
  float: right;
  width: 30%;
  text-align: center;
}
#in-depth .content .page button {
  font-size: 1.3125em;
  background-color: #ff6600;
  border: none;
  box-shadow: 0px 2px 0px 0px rgba(172, 92, 0, 0.8);
  width: 75%;
  height: 44px;
  margin: 1.5238095238em auto 0.7619047619em auto;
  color: #F6F6F6;
  display: block;
}

@media screen and (max-height: 700px) {
  #in-depth .background-photo {
    background-position: 0% 40%;
    width: 40%;
  }
  #in-depth .content {
    width: 60%;
  }
  #in-depth .content .page {
    width: 60%;
    padding-top: 3%;
  }
  #in-depth .content .page #triangle img {
    width: 40%;
  }
}
/***************************************
Contains .css for fiscality page.
- Common properties
- Page animation
- Texts
****************************************/
#fiscality {
  /************ Common properties **************/
  height: 85%;
  /************ Page animation **************/
  /************ Texts **************/
}
#fiscality .fiscality-page {
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 20px 16.6015625% 0 16.6015625%;
  z-index: 30;
  position: absolute;
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch;
}
#fiscality .angular-animate-left {
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
#fiscality .angular-animate-right {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
#fiscality .header {
  margin-bottom: 1em;
  padding-bottom: 0.3333333333em;
  font-weight: 200;
  border-bottom: 1px solid #333333;
  text-transform: uppercase;
}
#fiscality .subtitle {
  font-size: 1.125em;
  font-weight: bold;
  margin-top: 0.8888888889em;
  margin-bottom: 0.8888888889em;
}
#fiscality p {
  font-size: 1em;
  margin-top: 1em;
  line-height: 1.5em;
  font-weight: 200;
}

/***************************************
Contains .css for possible evolutions page.
- Common properties
- Page animation
- Neutral chart navigation
****************************************/
#possible-evolutions {
  /************ Common properties **************/
  height: 100%;
  position: relative;
  /************ Page animation **************/
  /************ Positive chart navigation **************/
}
#possible-evolutions .possible-evolutions-page {
  width: 100%;
  height: 90%;
  display: inline-block;
  padding: 20px 5% 0 5%;
}
#possible-evolutions p {
  margin-bottom: 0.9em;
  font-size: 0.9em;
  line-height: 1.375em;
  font-weight: 200;
  padding: 0 5%;
}
#possible-evolutions .angular-animate-left,
#possible-evolutions .angular-animate-right,
#possible-evolutions .angular-animate-visible {
  position: absolute;
  z-index: 30;
}
#possible-evolutions .angular-animate-left {
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
#possible-evolutions .angular-animate-right {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
#possible-evolutions #positive-chart-buttons {
  display: inline-block;
  position: absolute;
  right: 5%;
  bottom: -8%;
  height: 52px;
  width: 180px;
  background-color: #f2f2f2;
}
#possible-evolutions #positive-chart-buttons .button {
  border: none;
  background-image: url("../img/play@2x.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50px 50px;
  position: absolute;
  width: 50px;
  height: 50px;
}
#possible-evolutions #positive-chart-buttons .previous {
  right: 120px;
}
#possible-evolutions #positive-chart-buttons .next {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  right: 40px;
}

.tooltip-info {
  position: absolute;
  top: 20px;
  right: 100px;
  width: 240px;
  height: 80px;
  color: #ff6600;
}

.tooltip-toggle {
  display: none;
}

/***************************************
Contains .css for settings page.
- Common properties
- Sidebar
- Language
- Font size
- Email template
- Backup email
****************************************/
#settings {
  overflow-y: hidden;
  /************ Common properties **************/
  /************ Sidebar **************/
  /************ Language **************/
  /************ Update **************/
  /************ Email template **************/
  /************ Backup email **************/
}
#settings .page-column {
  display: inline-block;
  height: 100%;
  width: 50%;
  vertical-align: top;
}
#settings .sidebar {
  background-color: #ababab;
  width: 26.5625%;
}
#settings .content {
  background-color: #f2f2f2;
  width: 73.4375%;
}
@media screen and (max-height: 740px) {
  #settings .content {
    height: auto;
    overflow-y: hidden;
  }
}
#settings .sidebar .category {
  font-size: 1.125em;
  color: #FFFFFF;
  display: block;
  padding: 2.2222222222em 11.94% 0.8888888889em;
  font-weight: bold;
}
#settings .sidebar .sidebar-item {
  background-color: #bcbcbc;
  color: #FFFFFF;
  height: 3em;
  line-height: 3em;
  transition: all 0.2s ease;
}
#settings .sidebar .sidebar-item:active {
  background-color: #a2a2a2;
}
#settings .sidebar .sidebar-item .link {
  height: 100%;
  display: inline-block;
  width: 100%;
  line-height: 3em;
  margin-left: 11.94%;
}
#settings .sidebar .sidebar-item .top-border {
  border-top: solid 1px #FFFFFF;
}
#settings .sidebar .category .list .sidebar-item:first-child .link {
  border-topr: none;
}
#settings .sidebar .sidebar-item.selected {
  background-color: #ff6600;
}
#settings #language, #settings #fontsize {
  width: 100%;
  height: 100%;
}
#settings #language .title, #settings #fontsize .title {
  text-transform: uppercase;
  padding-top: 31px;
  padding-bottom: 0.6666666667em;
  padding-left: 5%;
  font-weight: 200;
}
#settings #language .list-item, #settings #fontsize .list-item {
  padding: 0 5%;
  height: 3em;
  line-height: 3em;
  background-color: #F6F6F6;
  border-bottom: 1px solid #f2f2f2;
  display: block;
  transition: all 0.2s ease;
}
#settings #language .list-item:active, #settings #fontsize .list-item:active {
  background-color: #dddddd;
}
#settings #update {
  width: 100%;
  height: 100%;
  padding: 2% 20px;
}
#settings #update .title {
  text-transform: uppercase;
  padding-top: 31px;
  padding-bottom: 0.6666666667em;
  padding-left: 0;
  font-weight: 200;
}
#settings #update .subtitle {
  text-transform: uppercase;
  padding-top: 31px;
  padding-bottom: 1em;
  margin-bottom: 1em;
  padding-left: 0;
  font-weight: bold;
  border-bottom: 1px solid #ababab;
}
#settings #update p {
  padding: 0 5%;
}
#settings #update .list-item {
  padding: 0 5%;
  height: 3em;
  line-height: 3em;
  background-color: #F6F6F6;
  border-bottom: 1px solid #f2f2f2;
  display: block;
}
#settings #update .button {
  font-size: 1.1666666667em;
  text-align: center;
  background-color: #ff6600;
  border: none;
  box-shadow: 0px 2px 0px 0px rgba(172, 92, 0, 0.8);
  margin: 28px 5%;
  height: 45px;
  line-height: 45px;
  color: #F6F6F6;
  outline: none;
  width: 300px;
}
#settings #update .button:active {
  box-shadow: inset 2px 2px 0px 0px rgba(172, 92, 0, 0.8);
}
#settings #update .button:disabled {
  opacity: 0.5;
}
#settings #mail-template {
  width: 100%;
  height: 100%;
  padding: 2% 20px;
}
#settings #mail-template select {
  /* background: url("../img/downward-arrow@2x.png") no-repeat 98% center $secondary_background_color;
  background-size: 23px 12px;
  -webkit-appearance: none; */
  margin-bottom: 1.3333333333em;
  height: 45px;
  background-color: #F6F6F6;
}
#settings #mail-template .mail-text {
  width: 100%;
  text-align: left;
  border: none;
  height: 300px;
  background-color: #F6F6F6;
  margin-bottom: 1.3333333333em;
  padding: 0.8888888889em 6px;
}
#settings #mail-template .mail-text::-webkit-input-placeholder {
  color: #888888;
}
#settings #mail-template .label {
  margin-bottom: 0.7619047619em;
  margin-top: 0.7619047619em;
  font-weight: bold;
  color: #333333;
  font-size: 1em;
  display: inline-block;
}
#settings #mail-template .form-input {
  line-height: 45px;
  padding: 0 1%;
  border: 0;
  outline: none;
  display: block;
}
#settings #mail-template #entry-cost-container {
  overflow: hidden;
}
#settings #mail-template .title {
  text-transform: uppercase;
  padding-top: 31px;
  padding-bottom: 0.6666666667em;
  padding-left: 0;
  font-weight: 200;
  margin-bottom: 0.6666666667em;
}
@media screen and (max-height: 740px) {
  #settings #mail-template .title {
    padding-top: 10px;
  }
}
#settings #mail-template p {
  padding: 0 5%;
}
#settings #mail-template .list-item {
  padding: 0 5%;
  height: 3em;
  line-height: 3em;
  background-color: #F6F6F6;
  border-bottom: 1px solid #f2f2f2;
  display: block;
}
#settings #mail-template .button {
  font-size: 1.1666666667em;
  text-align: center;
  background-color: #ff6600;
  border: none;
  box-shadow: 0px 2px 0px 0px rgba(172, 92, 0, 0.8);
  height: 45px;
  line-height: 45px;
  color: #F6F6F6;
  outline: none;
  width: 300px;
}
#settings #back-up-mail {
  width: 100%;
  height: 100%;
  padding: 2% 20px;
}
#settings #back-up-mail .title {
  text-transform: uppercase;
  padding-top: 31px;
  padding-bottom: 0.6666666667em;
  padding-left: 0;
  font-weight: 200;
  margin-bottom: 0.6666666667em;
}
#settings #back-up-mail .form-input {
  padding: 0 1%;
  border: 0;
  outline: none;
  width: 100%;
  height: 100%;
  margin: 0;
}
#settings #back-up-mail .form-row {
  display: block;
  width: 100%;
  text-align: left;
}
#settings #back-up-mail .list-item {
  padding: 0;
  height: 3em;
  background-color: #F6F6F6;
  border-bottom: 1px solid #f2f2f2;
  display: block;
}

/***************************************
Contains .css for history page.
- Font resize overrides
- Common properties
- Graph
- Subtext
****************************************/
/************ Font resize overrides **************/
body.medium-font #history .graph-container {
  height: 57%;
}

body.large-font #history .graph-container {
  height: 54%;
}

#history {
  /************ Common properties **************/
  height: 100%;
  width: 100%;
  display: inline-block;
  padding-top: 20px;
  padding-left: 5%;
  padding-right: 5%;
  /************ Graph **************/
  /************ Subtext **************/
}
#history .title {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}
#history .legend {
  font-size: 14px;
  margin-top: 15px;
}
#history .graph-container {
  margin-top: 20px;
  width: 100%;
  height: 300px;
}
#history .graph-source {
  font-size: 12px;
  margin-bottom: 30px;
  padding-left: 65px;
}
#history div.historyLegend {
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.9375em;
  line-height: 1.375em;
  font-weight: 200;
  padding-left: 50px;
  box-sizing: border-box;
  position: relative;
}
#history div.historyLegend div.percentage-group {
  display: inline-block;
  margin-right: 14px;
}
#history div.historyLegend div.percentage-group .percentage {
  display: inline-block;
  vertical-align: top;
  padding: 8px 5px 8px 15px;
  border-right: 1px solid black;
  font-size: 1.1em;
}
#history div.historyLegend div.percentage-group .definition-group {
  display: inline-block;
}
#history div.historyLegend .disclaimer {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
  padding-top: 10px;
  padding-right: 0px;
  margin-right: 0px;
  width: 36%;
  font-size: 0.8em;
  font-weight: bold;
}

.perc {
  width: 60%;
}

@media screen and (max-width: 1300px) {
  .perc {
    width: 80%;
  }

  #history div.historyLegend .disclaimer {
    width: 35%;
  }
}
@media screen and (max-width: 1120px) {
  #history div.historyLegend .disclaimer {
    width: 30%;
  }
}
@media screen and (min-height: 660px) {
  #history .graph-container {
    height: 400px;
  }
}
@media screen and (min-height: 800px) {
  #history .graph-container {
    height: 500px;
  }
}
@media screen and (min-height: 900px) {
  #history .graph-container {
    height: 600px;
  }
}
/***************************************
Contains .css for the simulations page.
- Common properties
- Simulation input form
- Simulation result
- Animation
****************************************/
#simulation {
  /************ Common properties **************/
  height: 100%;
  width: 100%;
  display: inline-block;
  overflow-y: scroll;
  /************ Simulation input form **************/
  /************ Simulation result **************/
  /************ Animation **************/
}
#simulation .page-column {
  display: inline-block;
  width: 50%;
  height: 100%;
  vertical-align: top;
}
#simulation .back-button {
  position: fixed;
  top: 0;
  z-index: 200;
  width: 73px;
  padding: 26px 20px 14px 20px;
  left: 1%;
}
#simulation .arrow-box {
  position: relative;
  border-right: 1px solid #333333;
  height: 100%;
  width: 1px;
  display: inline-block;
}
#simulation .arrow-box:after, #simulation .arrow-box:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
#simulation .arrow-box:after {
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #f2f2f2;
  border-width: 30px;
  margin-top: -30px;
}
#simulation .arrow-box:before {
  border-color: rgba(0, 0, 0, 0);
  border-left-color: #333333;
  border-width: 31px;
  margin-top: -31px;
}
@media screen and (min-height: 600px) {
  #simulation {
    overflow-y: hidden;
  }
}
#simulation #simulation-form {
  font-size: 18px;
  width: 100%;
  padding: 0 10.1%;
}
#simulation #simulation-form select {
  /*
  background: url("../img/downward-arrow@2x.png") no-repeat 94% center $secondary_background_color;
  background-size: 23px 12px;
  -webkit-appearance: none; */
  /* not supported by IE */
}
#simulation #simulation-form .form-row {
  display: block;
  width: 100%;
  text-align: left;
}
#simulation #simulation-form .label {
  margin-bottom: 6px;
  margin-top: 24px;
  font-weight: bold;
  color: #333333;
  font-size: 1em;
}
#simulation #simulation-form .form-input {
  line-height: 45px;
  padding: 0 5%;
  height: 45px;
  background-color: #F6F6F6;
  border: 0;
  outline: none;
}
#simulation #simulation-form #entry-cost-container {
  overflow: hidden;
}
#simulation #simulation-form .entry-cost-unit {
  font-weight: 200;
}
#simulation #simulation-form .button {
  font-size: 1.1666666667em;
  text-align: center;
  background-color: #ff6600;
  border: none;
  box-shadow: 0px 2px 0px 0px rgba(172, 92, 0, 0.8);
  margin-top: 28px;
  margin-bottom: 20px;
  height: 45px;
  color: #F6F6F6;
  outline: none;
}
#simulation #simulation-form .button:active {
  box-shadow: inset 2px 2px 0px 0px rgba(172, 92, 0, 0.8);
}
@media screen and (max-height: 740px) {
  #simulation #simulation-form .button {
    height: 30px;
    margin-top: 18px;
    line-height: 30px;
  }
  #simulation #simulation-form .label:first-child {
    margin-top: 24px;
  }
  #simulation #simulation-form .label {
    margin-top: 10px;
  }
  #simulation #simulation-form .form-input {
    height: 30px;
    line-height: 30px;
  }
  #simulation #simulation-form #entry-cost-container .label:first-child {
    margin-top: 10px;
  }
}
#simulation .ng-invalid .button {
  opacity: 0.5;
}
#simulation .ng-invalid {
  border-color: solid 1px red;
}
#simulation #simulation-result {
  font-size: 1.125em;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 24%;
  text-align: center;
  width: 100%;
  padding: 0 5%;
}
#simulation #simulation-result .summary {
  font-size: 1.3333333333em;
  color: #888888;
  line-height: 1.3333333333em;
}
#simulation #simulation-result .result {
  font-size: 56.8888888889px;
  color: #333333;
  padding-top: 30px;
  padding-bottom: 30px;
}
#simulation #simulation-result .result small {
  color: #333333;
}
#simulation #simulation-result #simulation-menu {
  vertical-align: top;
}
#simulation #simulation-result #simulation-menu .action {
  display: inline-block;
  width: 33%;
  color: #ff6600;
  text-align: center;
  font-size: 0.8888888889em;
  vertical-align: top;
}
#simulation #simulation-result #simulation-menu .action .icon {
  height: 72px;
  display: block;
  margin: 0 auto 0.8888888889em auto;
}
#simulation #simulation-result p.net-premium-star-rule {
  font-size: 0.8em;
  margin-top: 160px;
}
@media screen and (max-height: 740px) {
  #simulation #simulation-result p.net-premium-star-rule {
    margin-top: 60px;
  }
}
#simulation .animation-container {
  display: inline-block !important;
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 0.505s;
  -webkit-transition-timing-function: ease-in-out;
  transition-property: transform;
  transition-duration: 0.505s;
  transition-timing-function: ease-in-out;
}
#simulation .angular-animate-result-slide-in {
  -webkit-transform: translateX(0%);
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 0.505s;
  -webkit-transition-timing-function: ease-in-out;
  transform: translateX(0%);
  transition-property: transform;
  transition-duration: 0.505s;
  transition-timing-function: ease-in-out;
}
#simulation .angular-animate-result-slide-in.ng-hide {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
#simulation .angular-animate-form-slide-in {
  -webkit-transform: translateX(0%) !important;
  transform: translateX(0%) !important;
}
#simulation .angular-animate-form-slide {
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
#simulation .angular-animate-fade-in {
  display: inline-block !important;
  opacity: 1;
  height: 100px;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-delay: 0.505s;
  -webkit-transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-delay: 0.505s;
  transition-timing-function: ease-in-out;
}
@media screen and (max-height: 740px) {
  #simulation .angular-animate-fade-in {
    height: 80px;
  }
}
#simulation .angular-animate-fade-in.ng-hide {
  opacity: 0;
  height: 40px;
}

#simulation-filter-container {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  background-color: #f2f2f2;
  overflow: hidden;
  -webkit-transition: padding 0.3s, height 0.3s;
  /* For Safari 3.1 to 6.0 */
  transition: padding 0.3s, height 0.3s;
  z-index: 50;
}
#simulation-filter-container #simulation-filter {
  padding: 0 4% 0 2%;
  height: 38px;
  background-color: #F6F6F6;
  display: block;
  width: 100%;
  outline: none;
  margin: 0;
  font-size: 20px;
  border: 0;
}
#simulation-filter-container #simulation-clear-button {
  position: absolute;
  right: 4%;
  top: 1em;
  width: 16px;
  height: 38px;
  line-height: 38px;
  visibility: visible;
  opacity: 1;
  margin: 0;
  color: #888888;
}

#simulation-list-container {
  -webkit-transition: padding 0.3s;
  /* For Safari 3.1 to 6.0 */
  transition: padding 0.3s;
}

.filter-is-open {
  padding-top: 64px;
}

.filter-opened {
  height: 64px;
  padding: 1em 3%;
}

.filter-closed {
  height: 0px;
  padding: 0em 3%;
}

#simulation-list {
  height: 100%;
  padding: 1em 3%;
}
#simulation-list .simulation-group {
  border-bottom: 1px solid #c7c7c7;
  text-align: right;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 3.125em;
  padding-right: 0;
  display: block;
}
#simulation-list .simulation-row {
  display: block;
  border-bottom: 1px solid #c7c7c7;
  padding: 1em 0;
}
#simulation-list .simulation-row .date {
  display: inline-block;
  width: 11%;
  text-align: left;
  color: #888888;
  vertical-align: middle;
}
#simulation-list .simulation-row .date .date-day {
  font-weight: bold;
  font-size: 1.5em;
  display: block;
}
#simulation-list .simulation-row .date .date-month {
  text-transform: uppercase;
  font-size: 0.9375em;
}
#simulation-list .simulation-row .name {
  display: inline-block;
  width: 48%;
  vertical-align: middle;
}
#simulation-list .simulation-row .name h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 0.3em;
}
#simulation-list .simulation-row .name .entry-cost {
  color: #888888;
  font-size: 0.9375em;
}
#simulation-list .simulation-row .details {
  display: inline-block;
  width: 34%;
  vertical-align: middle;
}
#simulation-list .simulation-row .details .amount {
  font-size: 1.125em;
  display: block;
  padding-bottom: 0.3em;
}
#simulation-list .simulation-row .details .periodicity {
  font-size: 0.9375em;
  color: #888888;
}
#simulation-list .simulation-row .arrow-container {
  display: inline-block;
  height: 100%;
  width: 6%;
  text-align: right;
  vertical-align: middle;
}
#simulation-list .simulation-row .arrow-container .arrow {
  width: 12px;
  height: 24px;
  text-align: right;
  display: inline-block;
}

/***************************************
Contains .css for document center page.
****************************************/
#document-center {
  /************ Common properties **************/
  height: 100%;
  width: 100%;
  padding: 20px 3% 0 3%;
}
#document-center .header {
  margin-bottom: 1.1428571429em;
  padding-bottom: 0.380952381em;
  font-weight: 200;
  border-bottom: 1px solid #333333;
  text-transform: uppercase;
}
#document-center .thumbnail {
  width: 288;
  height: 185px;
  display: inline-block;
  margin: 5px 2% 40px 2%;
}
#document-center .custom-thumbnail-container {
  display: inline-block;
  margin: 5px 2% 40px 2%;
  background-color: #ffffff;
  padding: 4px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  cursor: pointer;
}
#document-center .custom-thumbnail {
  position: relative;
  display: table-cell;
  width: 288px;
  height: 175px;
  background: linear-gradient(147deg, #383838, #282828 50%, #333333 50%, #1D1D1D);
  text-align: center;
  vertical-align: middle;
  border-radius: 2px;
}
#document-center .custom-thumbnail-name {
  padding: 12px;
  color: #ffffff;
  font-size: 20px;
}
#document-center .custom-thumbnail-language {
  position: absolute;
  left: 12px;
  bottom: 0;
  background: #FF6600;
  padding: 12px 20px 8px;
  color: #ffffff;
  font-size: 14px;
  border-radius: 8px 8px 0 0;
}

/***************************************
Contains .css for document details page.
****************************************/
#document-details {
  /************ Common properties **************/
  height: 100%;
  width: 100%;
}

/***************************************
Contains .css for the budgets page.
- Common properties
- Simulation input form
- Simulation result
- Animation
****************************************/
#budget {
  /************ Common properties **************/
  height: 100%;
  width: 100%;
  display: inline-block;
  /************ Simulation input form **************/
  /************ Simulation result **************/
  /************ Animation **************/
}
#budget .page-column {
  display: inline-block;
  width: 70%;
  height: 100%;
  vertical-align: top;
}
#budget #budget-form, #budget #budget-expences-form, #budget #budget-expences-form2 {
  font-size: 18px;
  width: 100%;
}
#budget #budget-form select, #budget #budget-expences-form select, #budget #budget-expences-form2 select {
  /*
  background: url("../img/downward-arrow@2x.png") no-repeat 94% center $secondary_background_color;
  background-size: 23px 12px;
  -webkit-appearance: none; */
  /* not supported by IE */
}
#budget #budget-form label.budget-partner-header, #budget #budget-expences-form label.budget-partner-header, #budget #budget-expences-form2 label.budget-partner-header {
  width: 25%;
  float: left;
  text-align: center;
  margin-bottom: 6px;
  margin-top: 10%;
  font-weight: bold;
  color: #333333;
  font-size: 1em;
}
#budget #budget-form label.budget-partner-header:first-child, #budget #budget-expences-form label.budget-partner-header:first-child, #budget #budget-expences-form2 label.budget-partner-header:first-child {
  padding-left: 20%;
  width: 45%;
}
#budget #budget-form .form-row, #budget #budget-expences-form .form-row, #budget #budget-expences-form2 .form-row {
  display: block;
  width: 100%;
  text-align: left;
}
#budget #budget-form .label, #budget #budget-expences-form .label, #budget #budget-expences-form2 .label {
  float: left;
  height: 35px;
  margin-top: 25px;
  margin-right: 5px;
  color: #333333;
  font-size: 0.8em;
  width: 20%;
  vertical-align: middle !important;
  text-align: right;
  direction: rtl;
}
#budget #budget-form .totaleInkomsten .p, #budget #budget-form .totaleInkomsten label, #budget #budget-expences-form .totaleInkomsten .p, #budget #budget-expences-form .totaleInkomsten label, #budget #budget-expences-form2 .totaleInkomsten .p, #budget #budget-expences-form2 .totaleInkomsten label {
  margin-top: 75px;
  margin-bottom: 50px;
}
#budget #budget-form .p, #budget #budget-expences-form .p, #budget #budget-expences-form2 .p {
  padding: 0 5%;
  height: 45px;
  float: left;
  margin-bottom: 6px;
  margin-right: 2%;
  margin-top: 24px;
  font-weight: bold;
  color: #333333;
  font-size: 1em;
  width: 23%;
  text-align: center;
  vertical-align: top !important;
}
#budget #budget-form .form-input, #budget #budget-expences-form .form-input, #budget #budget-expences-form2 .form-input {
  float: left;
  line-height: 45px;
  padding: 0 5%;
  margin-right: 1%;
  margin-left: 1%;
  margin-top: 15px;
  height: 45px;
  background-color: #F6F6F6;
  border: 0;
  outline: none;
  width: 23%;
  box-sizing: border-box;
}
#budget #budget-form #entry-cost-container, #budget #budget-expences-form #entry-cost-container, #budget #budget-expences-form2 #entry-cost-container {
  overflow: hidden;
}
#budget #budget-form .entry-cost-unit, #budget #budget-expences-form .entry-cost-unit, #budget #budget-expences-form2 .entry-cost-unit {
  font-weight: 200;
}
#budget #budget-form .button, #budget #budget-expences-form .button, #budget #budget-expences-form2 .button {
  font-size: 1.1666666667em;
  text-align: center;
  background-color: #ff6600;
  border: none;
  box-shadow: 0px 2px 0px 0px rgba(172, 92, 0, 0.8);
  height: 45px;
  color: #F6F6F6;
  outline: none;
  width: 50%;
  margin: 40px auto;
}
#budget #budget-form .button:active, #budget #budget-expences-form .button:active, #budget #budget-expences-form2 .button:active {
  box-shadow: inset 2px 2px 0px 0px rgba(172, 92, 0, 0.8);
}
#budget #budget-form .buttondiv, #budget #budget-expences-form .buttondiv, #budget #budget-expences-form2 .buttondiv {
  height: 70px;
}
@media screen and (max-height: 740px) {
  #budget #budget-form .button, #budget #budget-expences-form .button, #budget #budget-expences-form2 .button {
    height: 30px;
    margin-top: 18px;
    line-height: 30px;
  }
  #budget #budget-form .label:first-child, #budget #budget-expences-form .label:first-child, #budget #budget-expences-form2 .label:first-child {
    margin-top: 24px;
  }
  #budget #budget-form .label, #budget #budget-expences-form .label, #budget #budget-expences-form2 .label {
    margin-top: 10px;
  }
  #budget #budget-form .form-input, #budget #budget-expences-form .form-input, #budget #budget-expences-form2 .form-input {
    height: 30px;
    line-height: 30px;
  }
  #budget #budget-form #entry-cost-container .label:first-child, #budget #budget-expences-form #entry-cost-container .label:first-child, #budget #budget-expences-form2 #entry-cost-container .label:first-child {
    margin-top: 10px;
  }
}
#budget #budget-expences-form2 {
  position: relative;
  top: 30%;
}
#budget #budget-expences-form2 label.budget-partner-header {
  width: 33% !important;
  float: left;
  text-align: center;
  margin-bottom: 6px;
  margin-top: 10%;
  font-weight: bold;
  color: #333333;
  font-size: 1em;
}
#budget #budget-expences-form2 label.budget-partner-header:first-child {
  padding-left: 20%;
  width: 66% !important;
}
#budget #budget-expences-form2 .form-input {
  width: 33%;
}
#budget .ng-invalid .button {
  opacity: 0.5;
}
#budget .ng-invalid {
  border-color: solid 1px red;
}
#budget #simulation-result-container {
  width: 100vw !important;
  height: 80vh;
}
#budget #simulation-result-container #simulation-result {
  padding-left: 5%;
  padding-right: 5%;
  width: 49vw !important;
  height: 100%;
  float: left;
  vertical-align: middle;
  text-align: center;
}
#budget #simulation-result-container #simulation-result h4 {
  position: relative;
  top: 40%;
  font-size: xx-large;
  text-align: center;
}
#budget #simulation-result-container #simulation-result h2 {
  position: relative;
  top: 40%;
  text-align: center;
  font-size: x-large;
  margin-bottom: 20px;
}
#budget #simulation-result-container #simulation-result-column2 {
  width: 49vw !important;
  height: 100%;
  float: right;
}
#budget #simulation-result-container #simulation-result-column2 h3 {
  position: relative;
  top: 38%;
  font-size: large;
  margin-bottom: 20px;
}
#budget #simulation-result-container #simulation-result-column2 button {
  width: 37%;
  margin-left: 2%;
  float: right;
}
#budget #simulation-result-container #simulation-result-column2 .buttondiv {
  margin-right: 10%;
}
#budget .angular-animate-form-slide-in {
  -webkit-transform: translateX(0%) !important;
  transform: translateX(0%) !important;
}
#budget .angular-animate-form-slide {
  -webkit-transform: translateX(50%);
  transform: translateX(20%);
}

/*# sourceMappingURL=all.css.map */
