body.stop-scrolling {
  height: 100%;
  overflow: hidden; }

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000; }

.sweet-alert {
  background-color: white;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999; }
  @media all and (max-width: 540px) {
    .sweet-alert {
      width: auto;
      margin-left: 0;
      margin-right: 0;
      left: 15px;
      right: 15px; } }
  .sweet-alert h2 {
    color: #575757;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 25px 0;
    padding: 0;
    line-height: 40px;
    display: block; }
  .sweet-alert p {
    color: #797979;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    position: relative;
    text-align: inherit;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal; }
  .sweet-alert fieldset {
    border: none;
    position: relative; }
  .sweet-alert .sa-error-container {
    background-color: #f1f1f1;
    margin-left: -17px;
    margin-right: -17px;
    overflow: hidden;
    padding: 0 10px;
    max-height: 0;
    webkit-transition: padding 0.15s, max-height 0.15s;
    transition: padding 0.15s, max-height 0.15s; }
    .sweet-alert .sa-error-container.show {
      padding: 10px 0;
      max-height: 100px;
      webkit-transition: padding 0.2s, max-height 0.2s;
      transition: padding 0.25s, max-height 0.25s; }
    .sweet-alert .sa-error-container .icon {
      display: inline-block;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #ea7d7d;
      color: white;
      line-height: 24px;
      text-align: center;
      margin-right: 3px; }
    .sweet-alert .sa-error-container p {
      display: inline-block; }
  .sweet-alert .sa-input-error {
    position: absolute;
    top: 29px;
    right: 26px;
    width: 20px;
    height: 20px;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.1s;
    transition: all 0.1s; }
    .sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
      content: "";
      width: 20px;
      height: 6px;
      background-color: #f06e57;
      border-radius: 3px;
      position: absolute;
      top: 50%;
      margin-top: -4px;
      left: 50%;
      margin-left: -9px; }
    .sweet-alert .sa-input-error::before {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .sweet-alert .sa-input-error::after {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    .sweet-alert .sa-input-error.show {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1); }
  .sweet-alert input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    height: 43px;
    margin-top: 10px;
    margin-bottom: 17px;
    font-size: 18px;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
    padding: 0 12px;
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    .sweet-alert input:focus {
      outline: none;
      box-shadow: 0px 0px 3px #c4e6f5;
      border: 1px solid #b4dbed; }
      .sweet-alert input:focus::-moz-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
      .sweet-alert input:focus:-ms-input-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
      .sweet-alert input:focus::-webkit-input-placeholder {
        transition: opacity 0.3s 0.03s ease;
        opacity: 0.5; }
    .sweet-alert input::-moz-placeholder {
      color: #bdbdbd; }
    .sweet-alert input:-ms-input-placeholder {
      color: #bdbdbd; }
    .sweet-alert input::-webkit-input-placeholder {
      color: #bdbdbd; }
  .sweet-alert.show-input input {
    display: block; }
  .sweet-alert .sa-confirm-button-container {
    display: inline-block;
    position: relative; }
  .sweet-alert .la-ball-fall {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -27px;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden; }
  .sweet-alert button {
    background-color: #8CD4F5;
    color: white;
    border: none;
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    -webkit-border-radius: 4px;
    border-radius: 5px;
    padding: 10px 32px;
    margin: 26px 5px 0 5px;
    cursor: pointer; }
    .sweet-alert button:focus {
      outline: none;
      box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05); }
    .sweet-alert button:hover {
      background-color: #7ecff4; }
    .sweet-alert button:active {
      background-color: #5dc2f1; }
    .sweet-alert button.cancel {
      background-color: #C1C1C1; }
      .sweet-alert button.cancel:hover {
        background-color: #b9b9b9; }
      .sweet-alert button.cancel:active {
        background-color: #a8a8a8; }
      .sweet-alert button.cancel:focus {
        box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important; }
    .sweet-alert button[disabled] {
      opacity: .6;
      cursor: default; }
    .sweet-alert button.confirm[disabled] {
      color: transparent; }
      .sweet-alert button.confirm[disabled] ~ .la-ball-fall {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s; }
    .sweet-alert button::-moz-focus-inner {
      border: 0; }
  .sweet-alert[data-has-cancel-button=false] button {
    box-shadow: none !important; }
  .sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
    padding-bottom: 40px; }
  .sweet-alert .sa-icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border-radius: 50%;
    margin: 20px auto;
    padding: 0;
    position: relative;
    box-sizing: content-box; }
    .sweet-alert .sa-icon.sa-error {
      border-color: #F27474; }
      .sweet-alert .sa-icon.sa-error .sa-x-mark {
        position: relative;
        display: block; }
      .sweet-alert .sa-icon.sa-error .sa-line {
        position: absolute;
        height: 5px;
        width: 47px;
        background-color: #F27474;
        display: block;
        top: 37px;
        border-radius: 2px; }
        .sweet-alert .sa-icon.sa-error .sa-line.sa-left {
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          left: 17px; }
        .sweet-alert .sa-icon.sa-error .sa-line.sa-right {
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
          right: 16px; }
    .sweet-alert .sa-icon.sa-warning {
      border-color: #F8BB86; }
      .sweet-alert .sa-icon.sa-warning .sa-body {
        position: absolute;
        width: 5px;
        height: 47px;
        left: 50%;
        top: 10px;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        margin-left: -2px;
        background-color: #F8BB86; }
      .sweet-alert .sa-icon.sa-warning .sa-dot {
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        margin-left: -3px;
        left: 50%;
        bottom: 10px;
        background-color: #F8BB86; }
    .sweet-alert .sa-icon.sa-info {
      border-color: #C9DAE1; }
      .sweet-alert .sa-icon.sa-info::before {
        content: "";
        position: absolute;
        width: 5px;
        height: 29px;
        left: 50%;
        bottom: 17px;
        border-radius: 2px;
        margin-left: -2px;
        background-color: #C9DAE1; }
      .sweet-alert .sa-icon.sa-info::after {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        margin-left: -3px;
        top: 19px;
        background-color: #C9DAE1; }
    .sweet-alert .sa-icon.sa-success {
      border-color: #A5DC86; }
      .sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
        content: '';
        -webkit-border-radius: 40px;
        border-radius: 40px;
        border-radius: 50%;
        position: absolute;
        width: 60px;
        height: 120px;
        background: white;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg); }
      .sweet-alert .sa-icon.sa-success::before {
        -webkit-border-radius: 120px 0 0 120px;
        border-radius: 120px 0 0 120px;
        top: -7px;
        left: -33px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 60px 60px;
        transform-origin: 60px 60px; }
      .sweet-alert .sa-icon.sa-success::after {
        -webkit-border-radius: 0 120px 120px 0;
        border-radius: 0 120px 120px 0;
        top: -11px;
        left: 30px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 0px 60px;
        transform-origin: 0px 60px; }
      .sweet-alert .sa-icon.sa-success .sa-placeholder {
        width: 80px;
        height: 80px;
        border: 4px solid rgba(165, 220, 134, 0.2);
        -webkit-border-radius: 40px;
        border-radius: 40px;
        border-radius: 50%;
        box-sizing: content-box;
        position: absolute;
        left: -4px;
        top: -4px;
        z-index: 2; }
      .sweet-alert .sa-icon.sa-success .sa-fix {
        width: 5px;
        height: 90px;
        background-color: white;
        position: absolute;
        left: 28px;
        top: 8px;
        z-index: 1;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .sweet-alert .sa-icon.sa-success .sa-line {
        height: 5px;
        background-color: #A5DC86;
        display: block;
        border-radius: 2px;
        position: absolute;
        z-index: 2; }
        .sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
          width: 25px;
          left: 14px;
          top: 46px;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }
        .sweet-alert .sa-icon.sa-success .sa-line.sa-long {
          width: 47px;
          right: 8px;
          top: 38px;
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }
    .sweet-alert .sa-icon.sa-custom {
      background-size: contain;
      border-radius: 0;
      border: none;
      background-position: center center;
      background-repeat: no-repeat; }

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@-webkit-keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

@keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s; }

.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s; }

.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s; }

.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s; }

.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s; }

.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s; }

@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s; }

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s; }

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in; }

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s; }

@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s; }

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

@keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate; }

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate; }

@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9; }

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9; }

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff; }

.la-ball-fall.la-dark {
  color: #333; }

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor; }

.la-ball-fall {
  width: 54px;
  height: 18px; }

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  -moz-animation: ball-fall 1s ease-in-out infinite;
  -o-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite; }

.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms; }

.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms; }

.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms; }

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px; }

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px; }

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px; }

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px; }

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px; }

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px; }

/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%); } }

@-moz-keyframes ball-fall {
  0% {
    opacity: 0;
    -moz-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -moz-transform: translateY(145%);
    transform: translateY(145%); } }

@-o-keyframes ball-fall {
  0% {
    opacity: 0;
    -o-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -o-transform: translateY(145%);
    transform: translateY(145%); } }

@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    -moz-transform: translateY(-145%);
    -o-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    -moz-transform: translateY(145%);
    -o-transform: translateY(145%);
    transform: translateY(145%); } }
/*
 */
.fancybox-inner {
  padding-right: 15px;
  overflow-y: auto !important; }

.with-horizontal-scroll {
  overflow-x: scroll; }

.cb {
  clear: both; }

.w100 {
  width: 100%; }

#vehicle-repairs ul.breadcrumbs {
  display: none; }

#activity-register ul.breadcrumbs {
  display: none; }
#activity-register .priority-1 td {
  background-color: #ff8282; }
#activity-register .priority-2 td {
  background-color: orange; }

#vehicle_repairs_form {
  width: 100%; }
  #vehicle_repairs_form .error-box {
    float: left;
    width: 100%;
    position: initial; }

#activity_register_form {
  padding: 0; }
  #activity_register_form .section {
    padding: 10px 30px 15px 30px; }
    #activity_register_form .section .row {
      padding-bottom: 20px;
      margin-left: -5%; }
      #activity_register_form .section .row .column {
        position: relative; }
        #activity_register_form .section .row .column div.field {
          margin-left: 5%;
          margin-right: 0;
          width: 15%; }
          #activity_register_form .section .row .column div.field input, #activity_register_form .section .row .column div.field select {
            width: 100%; }
    #activity_register_form .section .field .type-boolean-group-item {
      margin-right: 10px;
      position: relative; }
      #activity_register_form .section .field .type-boolean-group-item .vehicle_return_with_agreement_for_full_settlement_checkbox {
        position: absolute;
        top: 2px;
        left: 0px; }
      #activity_register_form .section .field .type-boolean-group-item .vehicle_return_with_agreement_for_full_settlement_label {
        white-space: nowrap;
        padding-left: 24px; }
    #activity_register_form .section .field.type-datetime {
      clear: none; }
    #activity_register_form .section .field.type-textarea {
      width: 100%; }
      #activity_register_form .section .field.type-textarea textarea {
        width: 100%; }
    #activity_register_form .section .nested-wrap button {
      position: inherit;
      top: initial;
      right: initial; }

.dl-flex dl {
  display: flex;
  flex-flow: row;
  border-width: 1px 1px 0 0;
  margin: 0px; }
.dl-flex dt {
  flex-basis: 55%;
  white-space: nowrap;
  padding: 2px 4px;
  background: #383838;
  text-align: right;
  color: #fff; }
.dl-flex dd {
  flex-basis: 45%;
  flex-grow: 1;
  margin: 0;
  padding: 2px 4px;
  border: 1px solid #383838; }
.dl-flex .dl-green dt {
  background: #8dc63f; }
.dl-flex .dl-green dd {
  border: 1px solid #8dc63f; }
.dl-flex .dl-red dt {
  background: #ee462a; }
.dl-flex .dl-red dd {
  border: 1px solid #ee462a; }

.dl-horizontal {
  font-size: 13px; }
  .dl-horizontal dt {
    clear: left;
    float: left;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 150px;
    font-weight: bold;
    margin-right: 5px; }
    .dl-horizontal dt:w-200 {
      width: 200px; }
  .dl-horizontal dd:before, .dl-horizontal dd:after {
    content: " ";
    display: table; }

.table-simple th.l, .table-simple td.l {
  text-align: left; }
.table-simple th.r, .table-simple td.r {
  text-align: right; }

.table-nested {
  width: 100%;
  border-collapse: collapse; }
  .table-nested tr:nth-child(even) td, .table-nested tr th {
    background-color: #ffffff; }
  .table-nested tr:hover td {
    background-color: #f4f4f4 !important; }
  .table-nested th, .table-nested td {
    border: 0px;
    font-size: 12px;
    line-height: 1.2;
    padding: 0px 3px; }

.phone-link, .email-sender-link, .url-opener-link {
  position: absolute;
  z-index: 1;
  top: 6px;
  right: 5px;
  text-decoration: none; }

.voip-simple-button {
  color: white;
  position: absolute;
  z-index: 1;
  top: 6px;
  right: 25px;
  text-decoration: none;
  padding: 2px 5px;
  border-radius: 2px;
  cursor: pointer; }
  .voip-simple-button.voip-idle {
    background: #78ae2e; }
  .voip-simple-button.voip-calling {
    background: red; }

.voip-td-cell {
  position: relative;
  margin-right: -80px;
  width: 140px;
  display: inline-block; }
  .voip-td-cell span.voip-simple-button {
    display: none;
    top: -2px; }

td .voip-simple-button {
  top: 3px;
  right: 3px; }

.phone-link, .email-sender-link {
  color: white;
  padding: 2px 5px;
  border-radius: 2px; }

#sms-message {
  width: 470px; }

#reminder, #activity-register, #vehicle-repairs {
  width: 920px; }
  #reminder form, #activity-register form, #vehicle-repairs form {
    width: 920px; }
  #reminder textarea, #activity-register textarea, #vehicle-repairs textarea {
    width: 825px;
    height: 120px; }

#email-message {
  width: 920px; }
  #email-message textarea {
    height: 250px; }

body header #voip-info {
  width: 300px;
  color: white;
  text-align: right;
  padding: 10px 10px 0 0; }
body header .voip-tools .toolbox .trigger {
  height: 60px;
  width: 60px;
  color: gray; }
  body header .voip-tools .toolbox .trigger:hover {
    color: gray;
    background: #78ae2e; }
body header .voip-tools.voip-logged-in .toolbox .trigger {
  color: #42690d; }
  body header .voip-tools.voip-logged-in .toolbox .trigger:hover {
    color: #42690d; }

.button.voip-hangup {
  text-align: center;
  line-height: 20px;
  padding: 2px 5px;
  border-radius: 2px;
  background: red;
  color: white; }
  .button.voip-hangup:hover {
    background: gray; }

#voip-login {
  width: 300px; }

.vert-scrollbar-container {
  overflow-x: hidden;
  overflow-y: scroll; }

.missing-fields {
  padding: 10px 15px;
  float: right; }
  .missing-fields ul {
    display: inline; }
  .missing-fields li {
    display: inline;
    color: red; }

.simple-striped-table {
  width: 94%;
  border-collapse: collapse;
  font-size: 13px;
  border: 1px solid #d4d4d4; }
  .simple-striped-table.max-width {
    width: 1060px; }
  .simple-striped-table tr td {
    padding: 5px; }
  .simple-striped-table th, .simple-striped-table td {
    border-left: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4; }
    .simple-striped-table th.w-10, .simple-striped-table td.w-10 {
      width: 10%; }
    .simple-striped-table th.w-20, .simple-striped-table td.w-20 {
      width: 20%; }
  .simple-striped-table tr th {
    text-align: center;
    font-weight: bold; }
  .simple-striped-table tr:nth-child(odd) td {
    background-color: #f3f1f1; }
  .simple-striped-table tr td a:hover {
    color: #42690d; }
  .simple-striped-table tr td.right-side {
    padding: 0;
    text-align: center; }
  .simple-striped-table td a:not(.button) {
    text-decoration: none;
    color: #1d1d1d;
    height: 100%;
    width: 100%; }
  .simple-striped-table th, .simple-striped-table td:not(.toolbox-cell) a:not(.button) {
    padding: 5px 0; }
  .simple-striped-table th span {
    display: inline-block;
    padding: 0 6px; }
  .simple-striped-table td a > span {
    display: inline-block;
    padding: 0 6px; }
  .simple-striped-table td > span {
    display: inline-block;
    padding: 0 6px;
    padding: 5px 6px; }
  .simple-striped-table th span {
    display: block; }
  .simple-striped-table.full-width {
    width: 100%;
    margin-left: -15px; }

.loan-history-dialog {
  width: 800px; }
  .loan-history-dialog th, .loan-history-dialog td {
    padding: 5px; }
  .loan-history-dialog .content {
    max-height: 500px;
    overflow: auto; }
  .loan-history-dialog .no-changelog-data {
    padding: 20px;
    text-align: center;
    font-size: 20px; }

.agreement_cessionable .column {
  float: left;
  width: 50%; }
.agreement_cessionable .row:after {
  content: "";
  display: table;
  clear: both; }
.agreement_cessionable button, .agreement_cessionable textarea, .agreement_cessionable input {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-style: solid; }
.agreement_cessionable button, .agreement_cessionable input {
  width: 80%; }
.agreement_cessionable textarea {
  margin-top: 10px;
  margin-bottom: 10px; }

.dialog.emprekis-vehicles .no-matches {
  padding: 20px;
  text-align: center;
  font-size: 20px; }
.dialog.emprekis-vehicles .mapped-field {
  background-color: #cce5a8; }

.normal-text {
  font-weight: normal; }

.flexbox-opposit {
  display: flex;
  justify-content: space-between;
  width: 100%; }

.flexbox-wrap-centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }
  .flexbox-wrap-centered .checkbox-group {
    flex-basis: 33%; }

.p-t5-b10 {
  padding-top: 5px;
  padding-bottom: 10px; }

.flexbox-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap; }
  .flexbox-wrapper .child {
    margin-bottom: 10px; }
    .flexbox-wrapper .child * {
      display: block; }
    .flexbox-wrapper .child select {
      width: 150px !important; }

.display-column {
  display: flex;
  flex-direction: column; }
  .display-column > * {
    margin-bottom: 5px; }

[data-tooltip-text] {
  position: relative !important;
  cursor: pointer; }
  [data-tooltip-text]:before {
    width: max-content;
    max-width: 150px;
    box-sizing: border-box;
    content: attr(data-tooltip-text);
    position: absolute;
    top: 0;
    transform: translateY(-120%) translateX(-50%);
    left: 50%;
    z-index: 1000;
    padding: 10px;
    border-radius: 10px;
    background: #000000b5;
    color: #fff;
    text-align: center;
    display: none; }
  [data-tooltip-text]:hover:before {
    display: block; }

[data-ffp-tooltip-text] {
  position: relative !important;
  cursor: pointer; }
  [data-ffp-tooltip-text]:before {
    width: max-content;
    max-width: 300px;
    box-sizing: border-box;
    content: attr(data-ffp-tooltip-text);
    position: absolute;
    bottom: 100%;
    transform: translateX(-50%);
    left: 50%;
    z-index: 1000;
    padding: 10px;
    border-radius: 10px;
    background: #000000b5;
    color: #fff;
    text-align: center;
    display: none; }
  [data-ffp-tooltip-text]:hover:before {
    display: block; }

body.view-index div.body.exported-only {
  font-weight: bold;
  padding: 40px;
  text-align: center; }

.view-edit form .section section.nested {
  clear: left;
  margin-right: 29px; }
  .view-edit form .section section.nested header h1 {
    font-size: 20px;
    font-weight: normal;
    color: #1d1d1d;
    background: transparent;
    padding: 12px 0 7px 0;
    margin: 0 0 10px 0; }
  .view-edit form .section section.nested fieldset.type-association {
    border: 1px solid #d4d4d4;
    padding: 0 20px 11px 20px;
    margin-bottom: 20px;
    position: relative; }
    .view-edit form .section section.nested fieldset.type-association .field {
      width: 360px;
      margin-right: 20px; }
      .view-edit form .section section.nested fieldset.type-association .field input[type="email"], .view-edit form .section section.nested fieldset.type-association .field input[type="text"], .view-edit form .section section.nested fieldset.type-association .field input[type="password"], .view-edit form .section section.nested fieldset.type-association .field select {
        width: 360px; }
    .view-edit form .section section.nested fieldset.type-association .remove-item-box {
      position: absolute;
      top: 0;
      right: 0; }
      .view-edit form .section section.nested fieldset.type-association .remove-item-box button {
        padding: 6px 10px 7px 10px; }

.nav {
  margin-bottom: 10px;
  padding-left: 0;
  list-style: none; }
  .nav > li {
    position: relative;
    display: block; }
    .nav > li > a {
      position: relative;
      display: block;
      padding: 10px 15px;
      text-decoration: none;
      color: #8dc63f; }
      .nav > li > a:hover, .nav > li > a:focus {
        text-decoration: none;
        background-color: #eeeeee; }
    .nav > li.disabled > a {
      color: #777777; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: #777777;
        text-decoration: none;
        background-color: transparent;
        cursor: not-allowed; }
  .nav .navbar-nav {
    display: flex; }
  .nav .open > a {
    background-color: #eeeeee;
    border-color: #337ab7; }
    .nav .open > a:hover, .nav .open > a:focus {
      background-color: #eeeeee;
      border-color: #337ab7; }
  .nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .nav > li > a > img {
    max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #dddddd; }
  .nav-tabs > li {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs > li > a {
      margin-right: 2px;
      line-height: 1.42857143;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: #eeeeee #eeeeee #dddddd; }
    .nav-tabs > li.active > a {
      color: #555555;
      background-color: #ffffff;
      border: 1px solid #dddddd;
      border-bottom-color: transparent;
      cursor: default; }
      .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
        color: #555555;
        background-color: #ffffff;
        border: 1px solid #dddddd;
        border-bottom-color: transparent;
        cursor: default; }
  .nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0; }
    .nav-tabs.nav-justified > li {
      float: none; }
      .nav-tabs.nav-justified > li > a {
        text-align: center;
        margin-bottom: 5px; }
    .nav-tabs.nav-justified > .dropdown .dropdown-menu {
      top: auto;
      left: auto; }
    .nav-tabs.nav-justified > li > a {
      margin-right: 0;
      border-radius: 4px; }
    .nav-tabs.nav-justified > .active > a {
      border: 1px solid #dddddd; }
      .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
        border: 1px solid #dddddd; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%; }
    .nav-tabs.nav-justified > li > a {
      margin-bottom: 0; } }
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0; }
  .nav-tabs.nav-justified > .active > a {
    border-bottom-color: #ffffff; }
    .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: #ffffff; } }
.nav-pills > li {
  float: left; }
  .nav-pills > li > a {
    border-radius: 4px; }
  .nav-pills > li + li {
    margin-left: 2px; }
  .nav-pills > li.active > a {
    color: #ffffff;
    background-color: #337ab7; }
    .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
      color: #ffffff;
      background-color: #337ab7; }

.nav-stacked > li {
  float: none; }
  .nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0; }

.nav-justified {
  width: 100%; }
  .nav-justified > li {
    float: none; }
    .nav-justified > li > a {
      text-align: center;
      margin-bottom: 5px; }
  .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto; }

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%; }
    .nav-justified > li > a {
      margin-bottom: 0; } }
.nav-tabs-justified {
  border-bottom: 0; }
  .nav-tabs-justified > li > a {
    margin-right: 0;
    border-radius: 4px; }
  .nav-tabs-justified > .active > a {
    border: 1px solid #dddddd; }
    .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
      border: 1px solid #dddddd; }

@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0; }
  .nav-tabs-justified > .active > a {
    border-bottom-color: #ffffff; }
    .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
      border-bottom-color: #ffffff; } }
.tab-content > .tab-pane {
  display: none;
  visibility: hidden; }
.tab-content > .active {
  display: block;
  visibility: visible; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.nav:before, .nav:after {
  content: " ";
  display: table; }

.clearfix:after, .nav:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important;
  visibility: hidden !important; }

.affix {
  position: fixed; }

.d-flex {
  display: flex; }

.flex-wrap {
  flex-wrap: wrap; }

.flex-row-reverse {
  flex-direction: row-reverse; }

.dropbtn {
  pointer-events: none;
  min-width: 40px !important; }

.dropdown {
  position: relative;
  display: inline-block; }

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 210px;
  z-index: 1;
  right: 0; }

.dropdown-content button {
  text-decoration: none;
  display: block;
  width: 100%; }

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column; }

span.warning {
  border: 1px solid;
  margin-right: 5px;
  background: green;
  border-radius: 5px; }
  span.warning.green {
    border-color: green;
    color: white; }

body.theme-rubie.application-mogo > header {
  background-color: #8dc63f; }
  [data-env="mogo-demo"] body.theme-rubie.application-mogo > header {
    background-color: #006600; }
  body.theme-rubie.application-mogo > header .sign-out button {
    background-color: #78ae2e;
    color: #42690d; }
    body.theme-rubie.application-mogo > header .sign-out button:hover {
      background-color: #42690d;
      color: #8dc63f; }
body.theme-rubie.application-mogo > .side .compacter .toggle-angle-icon {
  color: #8dc63f; }
body.theme-rubie.application-mogo > .side nav > ul > li.active > .trigger {
  background-color: #8dc63f; }
body.theme-rubie.application-mogo .header {
  background-color: #8dc63f; }
body.theme-rubie.application-mogo .table tr:hover td {
  background-color: #cce5a8; }
body.theme-rubie.application-mogo.controller-releaf-permissions-sessions .control-group button {
  background: #005596; }
  body.theme-rubie.application-mogo.controller-releaf-permissions-sessions .control-group button:hover, body.theme-rubie.application-mogo.controller-releaf-permissions-sessions .control-group button:focus {
    background: #004477; }
body.theme-rubie.application-mogo.controller-devise-passwords .container > .box > form .control-group button {
  background: #005596; }
  body.theme-rubie.application-mogo.controller-devise-passwords .container > .box > form .control-group button:hover, body.theme-rubie.application-mogo.controller-devise-passwords .container > .box > form .control-group button:focus {
    background: #004477; }
body.theme-rubie .toolbox .trigger {
  background: inherit; }
  body.theme-rubie .toolbox .trigger:hover, body.theme-rubie .toolbox .trigger:focus, body.theme-rubie .toolbox .trigger:active {
    background: inherit;
    color: #42690d; }
body.theme-rubie tr:hover .toolbox .trigger {
  color: #78ae2e; }
body.theme-rubie .toolbox-items .button:not(.danger) {
  background: #282828;
  color: #8dc63f; }
body.theme-rubie .toolbox-items .button:not(.danger):hover {
  background-color: #8dc63f;
  color: white; }
body.theme-rubie.view-edit .header .toolbox .trigger, body.theme-rubie.view-show .header .toolbox .trigger, body.theme-rubie.view-index .header .toolbox .trigger {
  background: #78AE2E;
  color: #42690D; }
  body.theme-rubie.view-edit .header .toolbox .trigger:hover, body.theme-rubie.view-edit .header .toolbox .trigger:focus, body.theme-rubie.view-edit .header .toolbox .trigger:active, body.theme-rubie.view-show .header .toolbox .trigger:hover, body.theme-rubie.view-show .header .toolbox .trigger:focus, body.theme-rubie.view-show .header .toolbox .trigger:active, body.theme-rubie.view-index .header .toolbox .trigger:hover, body.theme-rubie.view-index .header .toolbox .trigger:focus, body.theme-rubie.view-index .header .toolbox .trigger:active {
    background: #42690D;
    color: #8dc63f; }
body.theme-rubie.side-compact > .side nav > ul > li.active > .trigger, body.theme-rubie.side-compact > .side nav > ul > li.active > .trigger .name {
  background-color: #8dc63f; }
[data-env="mogo-demo"] body.theme-rubie > .side {
  background-color: #006600; }
[data-env="mogo-demo"] body.theme-rubie > .side nav li li {
  background-color: #004600; }
body.theme-rubie .button {
  background-color: #005596; }
  body.theme-rubie .button:hover, body.theme-rubie .button:focus, body.theme-rubie .button:active {
    background-color: #004981; }
  body.theme-rubie .button.disabled {
    background-color: #ccc;
    color: white; }
body.theme-rubie .warnings-wrap tr.verified > td, body.theme-rubie .warnings-wrap tr.positive > td, body.theme-rubie .logs-wrap tr.verified > td, body.theme-rubie .logs-wrap tr.positive > td {
  background-color: #4caf50; }
body.theme-rubie .warnings-wrap a, body.theme-rubie .logs-wrap a {
  color: #005596; }
body.theme-rubie .voip-simple-button {
  background: #005596; }
body.theme-rubie .phone-link, body.theme-rubie .email-sender-link {
  background: #005596; }
  body.theme-rubie .phone-link:hover, body.theme-rubie .email-sender-link:hover {
    background: #004477; }
body.theme-rubie .url-opener-link {
  color: #005596; }
  body.theme-rubie .url-opener-link:hover {
    color: #004477; }
body.theme-rubie .ui-datepicker-calendar td.ui-datepicker-current-day:hover,
body.theme-rubie .ui-datepicker-calendar td:hover,
body.theme-rubie .ui-autocomplete > .ui-menu-item a.ui-state-active,
body.theme-rubie .ui-autocomplete > .ui-menu-item a.ui-state-focus,
body.theme-rubie #send-two-factor-code button {
  background-color: #8dc63f; }
body.theme-rubie .toolbox .trigger,
body.theme-rubie .ui-datepicker-header a.ui-datepicker-next:hover,
body.theme-rubie .ui-datepicker-header a.ui-datepicker-prev:hover,
body.theme-rubie .delete-dialog .dialog .description {
  color: #8dc63f; }
body.theme-rubie .phone-verified.button {
  background: #8dc63f; }
body.theme-rubie .section.blocks fieldset h3 {
  background: #8dc63f; }
body.theme-rubie #sodra-information {
  background-color: #8dc63f; }
body.theme-rubie .nav > li > a {
  color: #8dc63f; }
body.theme-rubie .phone-verification-icon {
  vertical-align: 0; }
body.theme-rubie .color-mogo-green {
  color: #8dc63f; }
body.theme-rubie .color-mogo-red {
  color: #E01F09; }

body.theme-rent.application-mogo > header {
  background-color: #084887; }
  [data-env="mogo-demo"] body.theme-rent.application-mogo > header {
    background-color: #59AFFF; }
  body.theme-rent.application-mogo > header .sign-out button {
    background-color: #59AFFF;
    color: white; }
    body.theme-rent.application-mogo > header .sign-out button:hover {
      background-color: #084887;
      color: white; }
  body.theme-rent.application-mogo > header > .brand {
    background-image: url(/logo-smartolet.png);
    width: 120px;
    height: 40px;
    background-size: cover; }
body.theme-rent.application-mogo > .side .compacter .toggle-angle-icon {
  color: #59AFFF; }
body.theme-rent.application-mogo > .side nav > ul > li.active > .trigger {
  background-color: #59AFFF; }
body.theme-rent.application-mogo .header {
  background-color: #084887; }
  [data-env="mogo-demo"] body.theme-rent.application-mogo .header {
    background-color: #59AFFF; }
body.theme-rent.application-mogo.controller-releaf-permissions-sessions .control-group button {
  background: #59AFFF; }
  body.theme-rent.application-mogo.controller-releaf-permissions-sessions .control-group button:hover, body.theme-rent.application-mogo.controller-releaf-permissions-sessions .control-group button:focus {
    background: #084887; }
body.theme-rent.application-mogo.controller-releaf-permissions-sessions .container > .box .logo {
  background-image: url(/logo-smartolet.png);
  width: 200px;
  background-size: cover; }
body.theme-rent.application-mogo.controller-devise-passwords .container > .box > form .control-group button {
  background: #59AFFF; }
  body.theme-rent.application-mogo.controller-devise-passwords .container > .box > form .control-group button:hover, body.theme-rent.application-mogo.controller-devise-passwords .container > .box > form .control-group button:focus {
    background: #084887; }
body.theme-rent .toolbox .trigger {
  background: inherit; }
  body.theme-rent .toolbox .trigger:hover, body.theme-rent .toolbox .trigger:focus, body.theme-rent .toolbox .trigger:active {
    background: inherit;
    color: #084887; }
body.theme-rent tr:hover .toolbox .trigger {
  color: #084887; }
body.theme-rent .toolbox-items .button:not(.danger) {
  background: #282828;
  color: #59AFFF; }
body.theme-rent .toolbox-items .button:not(.danger):hover {
  background-color: #59AFFF;
  color: white; }
body.theme-rent.view-edit .header .toolbox .trigger, body.theme-rent.view-show .header .toolbox .trigger, body.theme-rent.view-index .header .toolbox .trigger {
  background: #59AFFF;
  color: white; }
  body.theme-rent.view-edit .header .toolbox .trigger:hover, body.theme-rent.view-edit .header .toolbox .trigger:focus, body.theme-rent.view-edit .header .toolbox .trigger:active, body.theme-rent.view-show .header .toolbox .trigger:hover, body.theme-rent.view-show .header .toolbox .trigger:focus, body.theme-rent.view-show .header .toolbox .trigger:active, body.theme-rent.view-index .header .toolbox .trigger:hover, body.theme-rent.view-index .header .toolbox .trigger:focus, body.theme-rent.view-index .header .toolbox .trigger:active {
    background: #084887;
    color: white; }
body.theme-rent.side-compact > .side nav > ul > li.active > .trigger, body.theme-rent.side-compact > .side nav > ul > li.active > .trigger .name {
  background-color: white; }
[data-env="mogo-demo"] body.theme-rent > .side {
  background-color: #084887; }
[data-env="mogo-demo"] body.theme-rent > .side nav li li {
  background-color: #001670; }
body.theme-rent .button {
  background-color: #59AFFF; }
  body.theme-rent .button:hover, body.theme-rent .button:focus, body.theme-rent .button:active {
    background-color: #084887; }
body.theme-rent .warnings-wrap tr.verified > td, body.theme-rent .warnings-wrap tr.positive > td, body.theme-rent .logs-wrap tr.verified > td, body.theme-rent .logs-wrap tr.positive > td {
  background-color: #9CDEE6; }
body.theme-rent .warnings-wrap a, body.theme-rent .logs-wrap a {
  color: #59AFFF; }
body.theme-rent .voip-simple-button {
  background: #59AFFF; }
body.theme-rent .phone-link, body.theme-rent .email-sender-link {
  background: #59AFFF; }
  body.theme-rent .phone-link:hover, body.theme-rent .email-sender-link:hover {
    background: #084887; }
body.theme-rent .url-opener-link {
  color: #59AFFF; }
  body.theme-rent .url-opener-link:hover {
    color: #084887; }
body.theme-rent .ui-datepicker-calendar td.ui-datepicker-current-day:hover,
body.theme-rent .ui-datepicker-calendar td:hover,
body.theme-rent .ui-autocomplete > .ui-menu-item a.ui-state-active,
body.theme-rent .ui-autocomplete > .ui-menu-item a.ui-state-focus,
body.theme-rent #send-two-factor-code button {
  background-color: #000000; }
body.theme-rent .toolbox .trigger,
body.theme-rent .ui-datepicker-header a.ui-datepicker-next:hover,
body.theme-rent .ui-datepicker-header a.ui-datepicker-prev:hover,
body.theme-rent .delete-dialog .dialog .description {
  color: #000000; }
body.theme-rent .phone-verified.button {
  background: #000000; }
body.theme-rent .section.blocks fieldset h3 {
  background: #084887; }
  [data-env="mogo-demo"] body.theme-rent .section.blocks fieldset h3 {
    background-color: #59AFFF; }
body.theme-rent #sodra-information {
  background-color: #59AFFF; }
body.theme-rent .nav > li > a {
  color: #59AFFF; }
body.theme-rent .page-header {
  background-color: #084887; }
body.theme-rent button.scoring-refresh-btn {
  background-color: #59AFFF;
  color: #084887; }
  body.theme-rent button.scoring-refresh-btn:hover {
    background-color: #084887;
    color: #59AFFF; }
  body.theme-rent button.scoring-refresh-btn:focus {
    background-color: #084887;
    color: #59AFFF; }
body.theme-rent .dl-green dt {
  background: #59AFFF; }
body.theme-rent .dl-green dd {
  border: 1px solid #59AFFF; }

body.theme-rubie-jetdengi.application-mogo > header {
  background-color: #D9481E; }
  body.theme-rubie-jetdengi.application-mogo > header .sign-out button {
    background-color: #FDB60D;
    color: white; }
    body.theme-rubie-jetdengi.application-mogo > header .sign-out button:hover {
      background-color: #D9481E;
      color: white; }
  body.theme-rubie-jetdengi.application-mogo > header > .brand {
    background-image: url(/logo-jet.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
body.theme-rubie-jetdengi.application-mogo > .side .compacter .toggle-angle-icon {
  color: #FDB60D; }
body.theme-rubie-jetdengi.application-mogo > .side nav > ul > li.active > .trigger {
  background-color: #FDB60D; }
body.theme-rubie-jetdengi.application-mogo .header {
  background-color: #D9481E; }
body.theme-rubie-jetdengi.application-mogo.controller-releaf-permissions-sessions .control-group button {
  background: #FDB60D; }
  body.theme-rubie-jetdengi.application-mogo.controller-releaf-permissions-sessions .control-group button:hover, body.theme-rubie-jetdengi.application-mogo.controller-releaf-permissions-sessions .control-group button:focus {
    background: #D9481E; }
body.theme-rubie-jetdengi.application-mogo.controller-releaf-permissions-sessions .container > .box {
  background: #D9481E; }
  body.theme-rubie-jetdengi.application-mogo.controller-releaf-permissions-sessions .container > .box .logo {
    background-image: url(/logo-jet.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
body.theme-rubie-jetdengi.application-mogo.controller-devise-passwords .container > .box > form .control-group button {
  background: #FDB60D; }
  body.theme-rubie-jetdengi.application-mogo.controller-devise-passwords .container > .box > form .control-group button:hover, body.theme-rubie-jetdengi.application-mogo.controller-devise-passwords .container > .box > form .control-group button:focus {
    background: #D9481E; }
body.theme-rubie-jetdengi .toolbox .trigger {
  background: inherit; }
  body.theme-rubie-jetdengi .toolbox .trigger:hover, body.theme-rubie-jetdengi .toolbox .trigger:focus, body.theme-rubie-jetdengi .toolbox .trigger:active {
    background: inherit;
    color: #D9481E; }
body.theme-rubie-jetdengi tr:hover .toolbox .trigger {
  color: #D9481E; }
body.theme-rubie-jetdengi .toolbox-items .button:not(.danger) {
  background: #282828;
  color: #FDB60D; }
body.theme-rubie-jetdengi .toolbox-items .button:not(.danger):hover {
  background-color: #FDB60D;
  color: white; }
body.theme-rubie-jetdengi.view-edit .header .toolbox .trigger, body.theme-rubie-jetdengi.view-show .header .toolbox .trigger, body.theme-rubie-jetdengi.view-index .header .toolbox .trigger {
  background: #FDB60D;
  color: white; }
  body.theme-rubie-jetdengi.view-edit .header .toolbox .trigger:hover, body.theme-rubie-jetdengi.view-edit .header .toolbox .trigger:focus, body.theme-rubie-jetdengi.view-edit .header .toolbox .trigger:active, body.theme-rubie-jetdengi.view-show .header .toolbox .trigger:hover, body.theme-rubie-jetdengi.view-show .header .toolbox .trigger:focus, body.theme-rubie-jetdengi.view-show .header .toolbox .trigger:active, body.theme-rubie-jetdengi.view-index .header .toolbox .trigger:hover, body.theme-rubie-jetdengi.view-index .header .toolbox .trigger:focus, body.theme-rubie-jetdengi.view-index .header .toolbox .trigger:active {
    background: #D9481E;
    color: white; }
body.theme-rubie-jetdengi.side-compact > .side nav > ul > li.active > .trigger, body.theme-rubie-jetdengi.side-compact > .side nav > ul > li.active > .trigger .name {
  background-color: white; }
body.theme-rubie-jetdengi .button {
  background-color: #FDB60D; }
  body.theme-rubie-jetdengi .button:hover, body.theme-rubie-jetdengi .button:focus, body.theme-rubie-jetdengi .button:active {
    background-color: #D9481E; }
body.theme-rubie-jetdengi .warnings-wrap tr.verified > td, body.theme-rubie-jetdengi .warnings-wrap tr.positive > td, body.theme-rubie-jetdengi .logs-wrap tr.verified > td, body.theme-rubie-jetdengi .logs-wrap tr.positive > td {
  background-color: #9CDEE6; }
body.theme-rubie-jetdengi .warnings-wrap a, body.theme-rubie-jetdengi .logs-wrap a {
  color: #FDB60D; }
body.theme-rubie-jetdengi .voip-simple-button {
  background: #FDB60D; }
body.theme-rubie-jetdengi .phone-link, body.theme-rubie-jetdengi .email-sender-link {
  background: #FDB60D; }
  body.theme-rubie-jetdengi .phone-link:hover, body.theme-rubie-jetdengi .email-sender-link:hover {
    background: #D9481E; }
body.theme-rubie-jetdengi .url-opener-link {
  color: #FDB60D; }
  body.theme-rubie-jetdengi .url-opener-link:hover {
    color: #D9481E; }
body.theme-rubie-jetdengi .ui-datepicker-calendar td.ui-datepicker-current-day:hover,
body.theme-rubie-jetdengi .ui-datepicker-calendar td:hover,
body.theme-rubie-jetdengi .ui-autocomplete > .ui-menu-item a.ui-state-active,
body.theme-rubie-jetdengi .ui-autocomplete > .ui-menu-item a.ui-state-focus,
body.theme-rubie-jetdengi #send-two-factor-code button {
  background-color: #000000; }
body.theme-rubie-jetdengi .toolbox .trigger,
body.theme-rubie-jetdengi .ui-datepicker-header a.ui-datepicker-next:hover,
body.theme-rubie-jetdengi .ui-datepicker-header a.ui-datepicker-prev:hover,
body.theme-rubie-jetdengi .delete-dialog .dialog .description {
  color: #000000; }
body.theme-rubie-jetdengi .phone-verified.button {
  background: #000000; }
body.theme-rubie-jetdengi .section.blocks fieldset h3 {
  background: #D9481E; }
body.theme-rubie-jetdengi #sodra-information {
  background-color: #FDB60D; }
body.theme-rubie-jetdengi .nav > li > a {
  color: #FDB60D; }
body.theme-rubie-jetdengi .page-header {
  background-color: #D9481E; }
body.theme-rubie-jetdengi button.scoring-refresh-btn {
  background-color: #D9481E;
  color: #D9481E; }
  body.theme-rubie-jetdengi button.scoring-refresh-btn:hover {
    background-color: #D9481E;
    color: #FDB60D; }
  body.theme-rubie-jetdengi button.scoring-refresh-btn:focus {
    background-color: #D9481E;
    color: #FDB60D; }
body.theme-rubie-jetdengi .dl-green dt {
  background: #FDB60D; }
body.theme-rubie-jetdengi .dl-green dd {
  border: 1px solid #FDB60D; }

body form.search .special-field-wrap.base-companies select[multiple=multiple] {
  height: 100%;
  width: 140px; }
body form.search .special-field-wrap label {
  display: block; }
body form.search .special-field-wrap input[type=checkbox] + label {
  margin-right: 22px;
  display: inline-block; }
body form.search .special-field-wrap select[multiple=multiple] {
  height: 102px;
  width: 300px;
  padding: 4px; }
body form.search .special-field-wrap input[type=checkbox] {
  margin-right: 5px; }
body.application-mogo > header > .brand {
  background-image: url(/assets/logo-7476a9c0df427495e6e575edfbd5353aed1b021fb473108592941a6c1e9ea7dc.png);
  width: 98px;
  height: 36px; }
body.application-mogo > header .coffeebreak > form .fa.fa-coffee {
  display: inline-block; }
body.application-mogo > header .coffeebreak > form .fa-spinner.fa-spin {
  display: none; }
body.application-mogo > header .coffeebreak > form.loading .fa.fa-coffee {
  display: none; }
body.application-mogo > header .coffeebreak > form.loading .fa-spinner.fa-spin {
  display: inline-block; }
body.application-mogo > header .coffeebreak label {
  line-height: 60px;
  padding: 22px;
  color: white;
  cursor: pointer; }
  body.application-mogo > header .coffeebreak label:hover {
    background-color: rgba(2, 136, 209, 0.27); }
body.application-mogo > header .coffeebreak input {
  display: none; }
body.application-mogo > header .coffeebreak input:checked + label {
  background-color: #0288d1; }
body.application-mogo > header .coffeebreak input:disabled + label {
  opacity: 0.3; }
body.application-mogo > header .profile > span {
  position: relative;
  width: 180px;
  display: block;
  height: 60px;
  border-left: none;
  color: #ffffff; }
body.application-mogo > header .profile .user-name {
  margin-top: 10px;
  display: block;
  text-align: center; }
body.application-mogo > header .profile .position {
  display: block;
  text-align: center;
  font-size: 10px; }
body.application-mogo .table .tbody .text-link {
  text-align: center; }
body.application-mogo .table .tbody .text-link a {
  color: blue;
  display: inline; }
  body.application-mogo .table .tbody .text-link a:hover {
    color: #42690d; }
  body.application-mogo .table .tbody .text-link a span {
    text-decoration: underline; }
body.view-index form.search .extras .special-field-wrap {
  float: left; }
body .field input:disabled, body .field input[disabled="disabled"],
body .field select[disabled="disabled"],
body .field textarea[disabled="disabled"],
body .field textarea[readonly="readonly"],
body .field input[readonly="readonly"],
body .field select[readonly="readonly"] {
  background: #cccccc;
  color: #616161; }
body .field .value > .description {
  font-style: italic;
  font-size: 80%; }

.toolbox.voip-toolbox {
  position: absolute;
  right: 6px;
  top: 3px; }

.text-center {
  text-align: center; }

.inline-block {
  display: inline-block; }

.mg-t-1 {
  margin-top: 1em; }

.auto-width {
  width: auto; }

hr.fade-sides {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(212, 212, 212, 0), #a2a2a2, rgba(212, 212, 212, 0)); }

body .button.error {
  background-color: #ee462a; }
body .button.danger:hover, body .button.danger:focus, body .button.danger:active {
  background-color: #ee462a; }
body .button.secondary {
  background: #d9d9d9;
  color: #636363; }
  body .button.secondary:hover, body .button.secondary:focus, body .button.secondary:active {
    background: #c5c5c5;
    color: #3c3c3c; }

footer.main .tools .primary .button {
  margin-left: 4px; }

.view-index form.search .extras select {
  margin-left: 3px;
  width: 200px; }
.view-index form.search .extras .date-filter {
  display: inline-block; }
.view-index footer .extras .field {
  float: left; }
  .view-index footer .extras .field select {
    width: 200px; }
  .view-index footer .extras .field .label-wrap {
    padding: 10px 10px 9px 20px; }
  .view-index footer .extras .field .value {
    padding-top: 4px; }
  .view-index footer .extras .field .label-wrap,
  .view-index footer .extras .field .value {
    float: left; }
.view-index footer .extras button {
  border-left: 1px solid #c5c5c5;
  border-right: 1px solid #c5c5c5; }
.view-index footer .tools .pagination > .button:hover {
  color: #004981; }
.view-index footer .tools .pagination > .button[disabled] {
  color: #b7c0bf; }

.ui-datepicker-calendar td.ui-datepicker-current-day:hover,
.ui-datepicker-calendar td:hover {
  text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.55); }

.ui-datepicker-header a.ui-datepicker-next,
.ui-datepicker-header a.ui-datepicker-prev {
  text-decoration: none; }

.ui-datepicker-header a.ui-datepicker-next:hover,
.ui-datepicker-header a.ui-datepicker-prev:hover {
  text-decoration: none; }

.ui-datepicker-calendar .ui-datepicker-today {
  background-color: #c1e197; }

.view-edit .header .toolbox-wrap, .view-show .header .toolbox-wrap, .view-index .header .toolbox-wrap {
  font-size: 13px;
  position: absolute;
  right: 0;
  top: 0; }
  .view-edit .header .toolbox-wrap .trigger, .view-show .header .toolbox-wrap .trigger, .view-index .header .toolbox-wrap .trigger {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    padding: 0; }

.dialog .field .value {
  position: relative; }

.dialog .field.has-error input, .dialog .field.has-error select {
  border: 1px solid #f00a0a; }

.dialog .field.has-error .error-box {
  position: absolute;
  right: 20px;
  bottom: -20px;
  color: #f00a0a;
  font-size: 11px;
  font-style: italic; }

body.view-edit .body .manual {
  position: relative;
  border: 1px solid #d4d4d4;
  border-top: 0px; }
  body.view-edit .body .manual .title {
    position: relative;
    background-color: #8dc63f;
    color: #ffffff;
    padding: 0px;
    margin-bottom: 5px;
    padding: 7px;
    font-size: 15px; }
  body.view-edit .body .manual p.text {
    font-size: 13px;
    padding: 5px;
    margin-bottom: 0px; }

#send-two-factor-code {
  margin: 10px 0; }

.controller-releaf-i18n-database-translations .main footer {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 40px 0px 280px;
  z-index: 10;
  background: #fff; }
  .controller-releaf-i18n-database-translations .main footer .tools {
    height: 40px;
    background: #e6e6e6;
    color: #818181;
    border: 1px solid #c5c5c5;
    border-bottom: 0; }
    .controller-releaf-i18n-database-translations .main footer .tools .primary {
      float: right; }
    .controller-releaf-i18n-database-translations .main footer .tools .secondary {
      display: inline-block; }

.main form footer .validations-control {
  display: inline-block;
  background-color: #ff2a1a;
  color: #fff;
  padding: 10px 7px 9px 7px; }
  .main form footer .validations-control.hidden {
    display: none; }

.section .warning-block li {
  padding-right: 5px;
  color: red; }

body.application-mogo.controller-devise-passwords {
  color: white;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%; }
  body.application-mogo.controller-devise-passwords .container > .box {
    margin: 15% auto 0 auto;
    width: 360px;
    padding-top: 20px;
    background: transparent url(/assets/login-background-ea2dd2da939952b760f378c796215785242ebb221693dd648ceb70c0210f781b.jpg);
    background-repeat: no-repeat;
    background-size: cover; }
    body.application-mogo.controller-devise-passwords .container > .box > h2 {
      text-align: center;
      padding-bottom: 10px; }
    body.application-mogo.controller-devise-passwords .container > .box .logo {
      background-image: url(/assets/login-logo-94d186ca675bee4b3859d8a18a77504dba2df2ce1b5e22e18979892a4de7bfbd.png);
      width: 157px;
      height: 57px;
      background-repeat: no-repeat;
      padding-bottom: 15px;
      margin: 0 auto; }
    body.application-mogo.controller-devise-passwords .container > .box > form {
      padding: 0 40px 40px 40px; }
      body.application-mogo.controller-devise-passwords .container > .box > form .error-messages {
        width: 100%;
        text-align: center;
        color: red; }
      body.application-mogo.controller-devise-passwords .container > .box > form .control-group {
        margin-bottom: 10px; }
        body.application-mogo.controller-devise-passwords .container > .box > form .control-group > label {
          cursor: pointer;
          padding-bottom: 10px;
          display: block;
          color: white; }
        body.application-mogo.controller-devise-passwords .container > .box > form .control-group input {
          width: 100%;
          border: 0;
          background-color: white; }
        body.application-mogo.controller-devise-passwords .container > .box > form .control-group button {
          margin-top: 10px;
          width: 100%;
          padding: 10px; }
      body.application-mogo.controller-devise-passwords .container > .box > form dl.password-format {
        font-size: 12px;
        text-align: center; }
        body.application-mogo.controller-devise-passwords .container > .box > form dl.password-format dd {
          margin: 0; }

button.web-service span.date {
  font-size: 9px;
  line-height: 0;
  display: block; }

#js_copy_helper {
  position: fixed;
  left: -1000px;
  top: -1000px; }

div.js-trigger-copy-event {
  user-select: none !important;
  -moz-user-select: none !important; }

.js-copy-label {
  cursor: pointer; }

.with-copy-feature span.copy-content {
  opacity: 0; }
.with-copy-feature:hover span.copy-content {
  opacity: 1; }

span.copy-content {
  cursor: pointer;
  font-size: 16px;
  padding-left: 5px; }

span.select-all-check-box {
  margin-left: 20px; }

body > .notifications {
  z-index: 20000; }

.body.dialog.activity-register-notification section {
  padding: 1em;
  border-bottom: 2px solid #ccc; }
  .body.dialog.activity-register-notification section .notification-type,
  .body.dialog.activity-register-notification section .notification-subject,
  .body.dialog.activity-register-notification section .notification-content {
    margin-bottom: 0; }
    .body.dialog.activity-register-notification section .notification-type span,
    .body.dialog.activity-register-notification section .notification-subject span,
    .body.dialog.activity-register-notification section .notification-content span {
      font-weight: bold; }
  .body.dialog.activity-register-notification section .notification-content {
    border-bottom: 1px solid #ccc; }
