<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* TUNNEL */

.bottom .tunnel.hidden {
  display: none;
}
.bottom .tunnel {
  margin-top: 80px;
  overflow: hidden;
  border-top: 1px dotted #D0D0D0;
  padding: 20px;
}
.bottom .tunnel .tunnelWrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.bottom .tunnel .previous {
  flex: 2 0 0;
}
.bottom .tunnel .previous .btn-previous {
  float: right;
  margin-right: 20px;
}
.bottom .tunnel .btn-previous,
.bottom .tunnel .btn-cancel {
  background: none;
}
.bottom .tunnel .btn-busy {
  opacity: 0.1;
  cursor: wait;
}
.bottom .tunnel .next .btn:after,
.bottom .tunnel .btn-previous:before,
.bottom .tunnel .btn-next:after,
.bottom .tunnel .btn-cancel:before {
  content: "";
  font-family: FontAwesome, Sans-serif;
  margin: 0 5px 0 0;
}
.bottom .tunnel .next .btn:after,
.bottom .tunnel .btn-next:after {
  content: "";
  margin: 0 0 0 5px;
}
.bottom .tunnel .btn-cancel:before {
  content: "";
  margin: 0 5px 0 0;
}
.bottom .tunnel .btn-previous:hover,
.bottom .tunnel .btn-cancel:hover {
  text-decoration: none;
  background-color: none;
}
.bottom .tunnel .next .btn:focus,
.bottom .tunnel .btn-previous:focus,
.bottom .tunnel .btn-next:focus,
.bottom .tunnel .btn-cancel:focus {
  text-decoration: none;
}
.bottom .tunnel .disabled {
  background-color: #CCCCCC;
}
.bottom .tunnel .disabled:hover {
  background-color: #CCCCCC;
  text-decoration: none;
  cursor: default;
}
.bottom .tunnel .loading-component-btn {
  position: absolute;
  background-color: #fff;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  z-index: 20;
  top: 0px;
  left: 0px;
  display: none;
}
.bottom .tunnel .loading-component-btn .loading-inner-btn {
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-top-color: rgba(0, 0, 0, 0.08);
  border-left-color: rgba(0, 0, 0, 0.08);
  background-color: transparent;
  border-radius: 150px !important;
  display: inline-block;
  vertical-align: middle;
  -webkit-animation: loading 1s infinite linear;
  -moz-animation: loading 1s infinite linear;
  -ms-animation: loading 1s infinite linear;
  -o-animation: loading 1s infinite linear;
  animation: loading 1s infinite linear;
  width: 20px;
  height: 20px;
  position: relative;
  left: 0;
  top: 18%;
}
.bottom .tunnel .loading-component-btn .loading-inner-btn img {
  display: none;
}
.modal-footer #agreeButton .loading-component-btn {
  position: absolute;
  background-color: #fff;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  z-index: 20;
  top: 0px;
  left: 0px;
  display: none;
}
.modal-footer #agreeButton .loading-component-btn .loading-inner-btn {
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-top-color: rgba(0, 0, 0, 0.08);
  border-left-color: rgba(0, 0, 0, 0.08);
  background-color: transparent;
  border-radius: 150px !important;
  display: inline-block;
  vertical-align: middle;
  -webkit-animation: loading 1s infinite linear;
  -moz-animation: loading 1s infinite linear;
  -ms-animation: loading 1s infinite linear;
  -o-animation: loading 1s infinite linear;
  animation: loading 1s infinite linear;
  width: 20px;
  height: 20px;
  position: relative;
  left: 0;
  top: 18%;
}
.modal-footer #agreeButton .loading-component-btn .loading-inner-btn img {
  display: none;
}
/*================================================================================*/

/*================                  PHONES                        ================*/

/*================================================================================*/

@media (max-width: 768px) {
  .bottom .tunnel {
    border-top: 1px dotted #D0D0D0;
    padding: 0;
  }
  .bottom .tunnel .next a.btn,
  .bottom .tunnel a.btn-previous,
  .bottom .tunnel a.btn-next,
  .bottom .tunnel a.btn-cancel {
    display: block;
    width: 100%;
    margin: 0;
  }
  .bottom .tunnel .tunnelWrapper {
    display: flex;
    flex-direction: column;
  }
  .bottom .tunnel .cancel {
    order: 3;
  }
  .bottom .tunnel .previous {
    order: 2;
    margin-bottom: 5px;
  }
  .bottom .tunnel .previous .btn-previous {
    float: none;
    margin-right: 0;
  }
  .bottom .tunnel .next {
    order: 1;
    margin-bottom: 5px;
  }
}
</pre></body></html>