/* FONTS */
@font-face {
    font-family: 'ainohead';
    src: url('/assets/Aino-Headline.woff2') format('woff2'),
         url('/assets/Aino-Headline.woff') format('woff'),
         url('/assets/Aino-Headline.otf') format('truetype');
    font-weight: 400;
    font-style: normal;

}




@font-face {
    font-family: 'aino';
    src: url('/assets/Aino_Bold.woff2') format('woff2'),
         url('/assets/Aino_Bold.woff') format('woff'),
         url('/assets/Aino_Bold.otf') format('truetype');
    font-weight: 700;
    font-style: normal;

}




@font-face {
    font-family: 'aino';
    src: url('/assets/Aino_Regular.woff2') format('woff2'),
         url('/assets/Aino_Regular.woff') format('woff'),
         url('/assets/Aino_Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

/* GLOBAL */
* {
  box-sizing: border-box;
}
html {
	position: relative;
  height: 100%;
}
body {
	color: #000;
	font-family: 'aino';
	font-size: 18px;
	font-weight: normal;
	position: relative;
	margin: 0;
	padding: 0;
	line-height: 1.5;
}
body.overflow {
  overflow: hidden;
}
header,
main,
section,
footer {
  display: block;
}
.main-wrapper {
  transition: all 0.3s ease-in-out;
}
.blur {
  filter: blur(2px);
}
header {
  width: 100%;
  position: relative;
  z-index: 100;
}
button {
  border: none;
  outline: none;
  font-family: inherit;
}
button.unbind {
  pointer-events: none;
}
input,
textarea {
  font-size: 18px;
  line-height: 28px;
  font-weight: normal;
  border: none;
  resize: none;
  outline: none;
  margin: 0;
  padding: 0;
}
h1 {
  color: #0000f0;
  font-size: 50px;
  line-height: 60px;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: 'ainohead';

}
h2 {
  color: #0000f0;
  font-size: 40px;
  line-height: 48px;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: 'ainohead';

}
h3 {
  color: #000;
  font-size: 30px;
  font-weight: normal;
  line-height: 40px;
  margin: 30px 0;
}
ol ,
ul {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}
li {
  padding-left: 40px;
  position: relative;
}
ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
ul li:before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: #0000f0;
  position: absolute;
  top: 10px;
  left: 20px;
  border-radius: 50%;
}
ol li:before {
    content: counter(list-0, decimal) '. ';
    display: block;
    /* width: 7px; */
    /* height: 7px; */
    /* background: #0000f0; */
    position: absolute;
    top: 5px;
    left: 20px;
    /* border-radius: 50%; */
    color: #0000f0;
    font-size: 14px;
    font-weight: bold;
}
a {
  color: #0000f0;
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
}
a:before {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #0000f0;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease-in-out;
}
a:hover,
a:focus {
  text-decoration: none;
}
a:hover:before {
  width: 100%;
}
a[target="_blank"]:not([class]):after {
  content: '';
  display: inline-block;
  vertical-align: text-top;
  height: 8px;
  width: 8px;
  background-image: url(/assets/target.svg);
  background-position: center;
  background-size: 8px 8px;
  background-repeat: no-repeat;
  margin-left: 2px;
}
p {
  margin: 20px 0;
}
button {
  color: inherit;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
strong {
  font-weight: 700;
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder {
  color: transparent;
}
input:focus:-moz-placeholder {
  color: transparent;
}
textarea:focus::-webkit-input-placeholder { 
  color: transparent;
}
textarea:focus::-moz-placeholder { 
  color: transparent;
}
textarea:focus:-ms-input-placeholder {
  color: transparent;
}
textarea:focus:-moz-placeholder { 
  color: transparent;
}
/* GLOBAL: Classes */
.hidden{
  display: none !important;
}
.custom-btn {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: text-top;
  border: 2px solid #0000f0;
  border-radius: 30px;
  padding: 12px 40px;
  text-align: center;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}
.safari .custom-btn {
  padding-top: 14px;
}
.custom-btn:before {
  display: none;
}
.custom-btn:hover {
  color: #fff;
  background-color: #0000f0;
}
.custom-btn.btn-sm {
  padding: 2px 15px;
}
.safari .custom-btn.btn-sm {
  padding-top: 4px;
}
.custom-btn.white {
  color: #0000f0;
  background-color: #fff;
  border-color: #fff;
}
.custom-btn.white:hover {
  color: #fff;
  background-color: transparent;
}
.custom-btn.invert-color {
  color: #0000f0;
  border-color: #f0f1f2;
}
.custom-btn.success {
  min-width: 55px;
  min-height: 46px;
  background-image: url(/assets/success-white.svg);
  background-position: center;
  background-size: 20px 15px;
  background-repeat: no-repeat;
}
.custom-btn.white.success {
  background-image: url(/assets/success.svg);
}
.custom-btn.success.btn-sm {
  min-height: 26px;
}
.close-btn {
  display: block;
  width: 80px;
  height: 80px;
  background-color: #ffca9f;
  border-radius: 50%;
  background-image: url(/assets/close-basic.svg);
  background-position: center;
  background-size: 32% 32%;
  background-repeat: no-repeat;
  position: relative;
}
.close-btn:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/assets/circle.svg);
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;

  transition: transform 0.5s cubic-bezier(.06,3,.35,.5);
}
.close-btn:hover:before {
  transform: scale(0.95);
}
.back-btn {
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  text-transform: uppercase;
  padding: 0;
  padding-left: 45px;
  position: relative;
}
.back-btn:before {
  display: none;
}
.back-btn:after {
  content: '';
  display: block;
  width: 24px;
  height: 16px;
  background-image: url(/assets/left.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 5px;
  bottom: 0;
  margin: auto;
}
.back-btn.white {
  color: #fff;
}
.back-btn.white:after {
  background-image: url(/assets/left-white.svg);
}
.back-btn:hover:after {
  animation: back-btn 1.8s infinite ease-in-out;
}
@keyframes back-btn {
  0% { left: 5px; }
  10% { left: -5px; }
  20% { left: 5px; }
  30% { left: -3px; }
  45% { left: 5px; }
  100% { left: 5px; }
}
.subtitle {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.container {
  width: 100%;
  max-width: 1290px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.display-table {
  display: table;
  width: 100%;
  height: 100%;
}
.display-cell {
  display: table-cell;
  vertical-align: middle;
}
.c-fix {
  clear: both;
}
/* HEADER */
.header-wrapper {
    padding-top: 40px;
}
.header-wrapper a {
  color: #fff;
}
.header-wrapper a:before {
  background: #fff;
}
.langs {
    font-size: 16px;
    float: right;
    margin: 0;
    padding: 0;
}
.langs li {
    float: left;
    padding: 0;
}
.langs li:before {
  display: none;
} 
.langs li + li {
    margin-left: 10px;
}
.langs li a.active:before {
    width: 100%;
}
/* FRONT PAGE */
.front-page .langs li a {
    color: #0000f0;
}
.front-page .langs li a:before {
  background: #0000f0;
}
.intro-container {
    min-height: 600px;
}
.intro-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 100%;
    z-index: -1;
}
.intro-slider .carousel-inner {
    height: 100%;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.intro-slider .carousel-inner .item {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}
.intro-inner {
    float: right;
    width: 100%;
    max-width: 630px;
}
/* QUESTION */
.question-page .main-wrapper {
  overflow: hidden;
}
.question-wrapper {
  position: relative;
  min-height: 700px;
}
.question-wrapper,
.question-wrapper h1,
.question-wrapper .custom-btn:not(.white),
.qestion-page button {
  color: #fff;
}
.question-wrapper a.final,
.question-wrapper button {
  border-color: rgba(255, 255, 255, 0.3);
}
.question-wrapper .custom-btn:not(.white):hover {
  border-color: #fff;
  background-color: transparent;
}
.question-header {
  display: flex;
  margin-bottom: 30px;
}
.question-header .number {
  font-size: 50px;
  font-weight: 400;
  font-family: 'ainohead';
  line-height: 80px;
  width: 80px;
  height: 80px;
  text-align: center;
  background-image: url(/assets/circle-white.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  float: left;
}
.question-header .question-tree {
  color: #fff;
  float: right;
  padding-right: 80px;
  position: relative;
  margin-left: auto;
  align-self: center;
}
.question-header .question-tree:before,
.question-header .question-tree:after {
  content: '';
  display: block;
  height: 60px;
  width: 60px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url(/assets/tree-basic-white.svg);
  background-position: center;
  background-size: 27px 35px;
  background-repeat: no-repeat;
}
.question-header .question-tree:before {
  background-image: url(/assets/circle-white.svg);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;

  transition: transform 0.5s cubic-bezier(.06,3,.35,.5);
}
.question-header .question-tree:hover:before {
  transform: scale(0.95);
}
.question-area .title {
  display: table;
  height: 180px;
  font-size: 50px;
  font-family: 'ainohead';
  line-height: 60px;
  margin-bottom: 30px;
  font-weight: 400;
}
.question-area .title .title-inner {
  display: table-cell;
  vertical-align: bottom;
}
.question-buttons {
  margin-left: -15px;
  margin-top: -15px;
}
.question-buttons .custom-btn {
  margin: 15px 15px 0;
}
.question-buttons .custom-btn:last-child {
  margin-right: 0;
}
.prev-questions {
  height: 250px;
  max-height: 250px;
  margin-top: 40px;
  padding-top: 40px;
  position: relative;

  transition: height 0.5s ease-in-out;
}
.prev-questions.empty {
  height: 0;
  opacity: 0;
}
.prev-questions.empty:before:hover {
  transition: none;
}
.prev-questions:before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.15);
}
.prev-questions-inner {
  display: block;
  width: 100%;
  padding: 0 50px;
  margin: auto;
  margin-top: 20px;
  position: relative;
}
.prev-questions-slider {
  display: flex;
  width: 100%;
}
.prev-question {
  width: 50%;
  float: left;
  padding: 0 50px;
  position: relative;
  display: none;
}
.prev-question.active {
  display: block;
}
.prev-question .subtitle {
  margin-bottom: 5px;
}
.prev-question .answer {
  margin-top: 10px;
}
.prev-question .answer .custom-btn {
  pointer-events: none;
  vertical-align: middle;
}
.prev-question.active + .prev-question.active:after {
  content: '';
  display: block;
  width: 2px;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  transition: height 0.3s ease-in-out;
}
.prev-question.active + .prev-question.active.complete:after {
  height: 100%;
}
.questions-nav-btn {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 10px;
  background-position: center;
  background-size: 35px 18px;
  background-repeat: no-repeat;

  transition: opacity 0.3s ease-in-out;
}
.questions-nav-btn.empty {
  opacity: 0.3
}
.questions-nav-btn:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/assets/circle-white.svg);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  
  transition: transform 0.5s cubic-bezier(.06,3,.35,.5);
}
.questions-nav-btn:hover:before {
  transform: scale(0.95);
}
.questions-nav-btn.prev {
  left: 0;
  background-image: url(/assets/left-white.svg);
}
.questions-nav-btn.next {
  right: 0;
  background-image: url(/assets/right-white.svg);
}
.report-bug {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  position: absolute;
  left: 0;
  bottom: 30px;
}
.report-bug:before {
  background: #fff;
}
.slider-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.slider-bg:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 180, 0.65);
  z-index: 1;
}
.slider-bg .item {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;

  /*transition: opacity 1.5s ease-in-out;*/
}
.slider-bg .item.active {
  opacity: 1;
}
/* SUMMARY */
.summary-page header {
  position: absolute;
  top: 0;
  left: 0;
}
.summary-top .cover-image {
  height: 660px;
  width: 100%;
  background-image: url(/images/slider1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.summary-top .cover-image:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(0,0,180,1) 0%,rgba(0,0,180,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0000b4', endColorstr='#000000b4',GradientType=1 );
}
.summary-container {
  margin-top: -360px;
  position: relative;
  z-index: 1;
}
.summary-title {
  color: #fff;
  height: 160px;
}
.summary-title h1 {
  color: #fff;
}
.summary-wrapper {
  float: left;
  width: calc(100% - 260px);
  padding-right: 50px;
  position: relative;
  background: #fff;
}
.summary-wrapper:before {
  content: '';
  display: block;
  width: 50vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50vw;
  background: #fff;
}
.summary-sidebar {
  float: left;
  width: 260px;
}
.summary-header {
  color: #0000f0;
  font-size: 26px;
  line-height: 34px;
  padding: 40px 0;
  display: flex;
  border-bottom: 2px solid #0000f0;
}
.summary-header span:first-child {
  width: 75%;
}
.summary-header span:last-child {
  width: 25%;
}
.summary-block {
  float: left;
  width: 100%;
  padding: 30px 0;
  border-bottom: 2px solid #f0f1f2;
}
.summary-block .number {
    color: #0000f0;
    font-size: 32px;
    font-family: 'ainohead';
    font-weight: 400;
    float: left;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-image: url(/assets/circle.svg);
    background-position: center;
    background-size: 100% 100%;
    cursor: pointer;
    background-repeat: no-repeat;
    -webkit-transition: all 0.1s linear;
}
.summary-block .number:hover {
    background-size: 90% 90%;
}
.summary-block .question {
  float: left;
  width: calc(75% - 60px);
  padding: 0 90px 0 45px;
}
.summary-block .question .title {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
}
.summary-block .question .description {
  font-size: 16px;
  line-height: 24px;
  position: relative;
}
.summary-block .question .description.with-icon {
  padding-left: 40px;
}
.summary-block .question .description.with-icon:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.summary-block .question .description.with-icon.time:before {
  background-image: url(/assets/time-brown.svg);
}
.summary-block .answer {
  float: left;
  width: 25%;
}
.summary-block .answer .answered {
  color: #0000f0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid #f0f1f2;
  min-width: 70px;
  height: 32px;
  padding: 5px 20px;
  border-radius: 30px;
  text-align: center;
}
.summary-block .answer .answered.success {
  background-image: url(/assets/success.svg);
  background-position: center;
  background-size: 20px 15px;
  background-repeat: no-repeat;
}
.summary-block .answer .custom-btn.info {
  padding: 5px 20px;
  float: right;
}
.safari .summary-block .answer .answered,
.safari .summary-block .answer .custom-btn.info {
  padding-top: 7px;
}
.note-block {
  float: left;
  width: 100%;
  padding: 60px 0;
  margin-top: -2px;
  border-top: 2px solid #0000f0;
}
.note-block:before {
  content: '';
  float: left;
  width: 60px;
  height: 60px;
  background-image: url(/assets/document.svg);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.note-block .note-wrapper {
  float: left;
  width: calc(100% - 60px);
  padding-left: 45px;
}
.note-block .title {
    color: #0000f0;
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 40px;
    margin-top: 15px;
}
.note-block textarea {
  width: 100%;
  height: 150px;
  font-family: "aino";
}
.summary-sidebar .action-item {
  display: flex;
  width: 100%;
  height: 200px;
  background: #f0f1f2;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
.summary-sidebar .action-item .subtitle {
  padding: 0 15px;
  text-align: center;
}
.summary-sidebar .action-item:hover {
  background: #e5e7e9;
}
.summary-sidebar .action-item.print {
  color: #fff;
  background: rgba(0, 0, 240, 0.7);
}
.summary-sidebar .action-item.print:hover {
  background-color: #0000f0;
}
.summary-sidebar .action-item .subtitle:before {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;

}
.summary-sidebar .action-item.print .subtitle:before {
  background-image: url(/assets/print-white.svg);
}
.summary-sidebar .action-item.email .subtitle:before {
  background-image: url(/assets/email.svg);
}
.summary-sidebar .action-item.home .subtitle:before {
  background-image: url(/assets/address.svg);
}
/* POPUP */
.popup {
  position: fixed;
  right: -700px;
  top: 0;
  display: block;
  width: 100%;
  max-width: 600px;
  height: 100vh;
  background: #f0f1f2;
  z-index: 102;

  transition: right 0.6s ease-in-out;
}
.popup.report {
  right: auto;
  left: -700px;
  transition: left 0.6s ease-in-out;
}
.popup-scrollbar {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 17px;
  height: 100%;
  background: #f0f1f2;
}
.popup.open {
  right: 0;
}
.popup.report.open {
  right: auto;
  left: 0;
}
.popup .close-btn {
  position: absolute;
  top: 120px;
  left: -40px;
  z-index: 1;
}
.popup.report .close-btn {
  left: auto;
  top: 120px;
  right: -40px;
}
.popup-inner {
  padding: 120px 70px;
  height: 100%;
  overflow: auto;
  background: #f0f1f2;
}
.popup-header {
  position: relative;
}
.popup-header:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 20px 0;
}
.popup h2 {
  margin-top: 15px;
}
.popup-contacts li {
  position: relative;
  padding-left: 80px;
  padding-top: 16px;
  padding-bottom: 16px;
  margin: 15px 0;
  line-height: 28px;
}
.popup-contacts li:before {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
}
.popup-address:before {
  background-image: url(/assets/address.svg);
}
.popup-phone:before {
  background-image: url(/assets/mobile.svg);
}
.popup-email:before {
  background-image: url(/assets/email.svg);
}
.popup-content .subtitle {
  color: #0000f0;
}
.report-input {
  padding: 15px 20px;
  height: 150px;
  width: 100%;
  margin: 20px 0;
}
.popup-area {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  z-index: -1;
}
.popup.open .popup-area {
  display: block;
}
/* FOOTER */
.footer {
    border-top: 2px solid #f0f1f2;
    background-color: #fff;
}
.footer a {
  padding-bottom: 0;
}
.footer a:before {
  display: none;
}
.footer-container {
  display: flex;
}
.footer-logos {
  width: 50%;
  align-self: center;
  margin-left: -15px;
  padding: 10px 0;
}
.footer-logos p {
  margin: 0;
}
.footer-logos img {
  max-height: 35px;
  margin: 10px 15px;
}
.footer-links {
  width: 50%;
  align-self: center;
  margin-left: auto;
  margin-right: -15px;
  padding: 10px 0;
}
.footer-link {
  line-height: 30px;
  float: left;
  color: #808284;
  margin: 10px 15px;
}
.footer-link:hover {
  color: #0000f0;
}
.footer-link:not(.link-contact):before {
  content: '';
  display: inline-block;
  vertical-align: text-bottom;
  width: 25px;
  height: 25px;
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  margin-right: 10px;
  position: inherit;
}
.footer-link.fb:before {
    background-image: url(/assets/fb-gray.svg);
}
.footer-link.fb:hover:before {
    background-image: url(/assets/fb.svg);
}
.footer-link.linkedin:before {
    background-image: url(/assets/linkedin-gray.svg);
}
.footer-link.linkedin:hover:before {
    background-image: url(/assets/linkedin.svg);
}
/* IE */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .prev-questions {
      max-width: 1290px;
    }
}
/* CAROUSEL */
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
       -o-transition: .6s ease-in-out left;
          transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}

/*
  Bootstrap Carousel Fade Transition (for Bootstrap 3.3.x)
  CSS from:       http://codepen.io/transportedman/pen/NPWRGq
  and:            http://stackoverflow.com/questions/18548731/bootstrap-3-carousel-fading-to-new-slide-instead-of-sliding-to-new-slide
  Inspired from:  http://codepen.io/Rowno/pen/Afykb 
*/
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

/*
  WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
  Need to override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}

.clone {
  display: none;
}
.summary-block.last .number {
    pointer-events: none;
}



.treemodal {
    display: block;
    background-color: #fff;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    opacity: 0;
    z-index: -1;
    overflow: auto;
    text-align: left;
}
.treemodal h1{
  padding: 0 30px;
}
#graphContainer {
    position: relative;
    overflow: auto;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    touch-action: auto !important;
    height: calc(100vh - 120px);
    padding: 30px 15px;
}
#graphContainer rect + text{
  font-weight: bold;
}
#graphContainer svg{
  width: auto !important;
  margin:auto;
}
#graphContainer svg rect,
#graphContainer svg g,
#graphContainer svg path{
  pointer-events:none !important;
}
.modal-inner {
    position: relative;
    margin: auto;
    overflow: hidden;
    padding: 30px 0px 0px;
}
.modal-inner .close-btn {
    position: absolute;
    top: 15px;
    /* left: 0; */
    right: 30px;
    margin: auto;
}
.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.treeItems button.edit {
    margin: 2px 15px 0 0;
}