﻿.loading .title {
  font-size: 2rem; }

.loading-overlay-container {
  display: none;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 10; }
  .loading-overlay-container.show {
    display: block; }

.loading-overlay {
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  font-weight: bold; }
  .loading-overlay > .section-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    background-color: white;
    box-shadow: none;
    border: 1px solid grey; }
    @media screen and (max-width: 600px) {
      .loading-overlay > .section-container {
        width: 100%; } }

/*--extend--*/
.area, .fore, .mid, .bk, .loading-container, .loading-container svg {
  width: 600px;
  height: 288px;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000; }
  @media screen and (max-width: 600px) {
    .area, .fore, .mid, .bk, .loading-container, .loading-container svg {
      width: 100%; } }

.loading-container {
  margin: 30px auto;
  overflow: hidden; }
  .loading-container .vehicle {
    position: absolute;
    left: -140px;
    bottom: 0;
    backface-visibility: hidden;
    perspective: 1000; }
    .loading-container .vehicle.bike {
      animation: loading-bike-animation 4s infinite ease-out;
      transform: translate3D(0, 70px, 0) scale(0.8); }
    .loading-container .vehicle.car {
      animation: loading-car-animation 4s infinite ease-out;
      transform: translate3D(0, 160px, 0); }
    @media screen and (max-width: 600px) {
      .loading-container .vehicle.bike {
        animation: loading-bike-animation-small 4s infinite ease-out;
        transform: translate3D(0, 120px, 0) scale(0.8); }
      .loading-container .vehicle.car {
        animation: loading-car-animation-small 4s infinite ease-out;
        transform: translate3D(0, 110px, 0); } }

.fore {
  background: url("https://msvstatic.blob.core.windows.net/manual/loading/foreground.png");
  transform: translateZ(0);
  animation: bk 7s -5s linear infinite;
  position: relative; }

.mid {
  background: url("https://msvstatic.blob.core.windows.net/manual/loading/background.png");
  animation: bk 15s -5s linear infinite;
  transform: translateZ(0); }

@keyframes bk {
  100% {
    background-position: 200% 0; } }

@keyframes loading-bike-animation {
  0% {
    transform: translate3D(0, 120px, 0) scale(0.8); }
  50% {
    transform: translate3D(60%, 120px, 0) scale(0.8); }
  100% {
    transform: translate3D(0, 120px, 0) scale(0.8); } }

@keyframes loading-car-animation {
  0% {
    transform: translate3D(0, 160px, 0); }
  30% {
    transform: translate3D(40%, 160px, 0); }
  60% {
    transform: translate3D(30%, 160px, 0); }
  100% {
    transform: translate3D(0, 160px, 0); } }

@keyframes loading-bike-animation-small {
  0% {
    transform: translate3D(0, 70px, 0) scale(0.8); }
  50% {
    transform: translate3D(60%, 70px, 0) scale(0.8); }
  100% {
    transform: translate3D(0, 70px, 0) scale(0.8); } }

@keyframes loading-car-animation-small {
  0% {
    transform: translate3D(0, 110px, 0); }
  30% {
    transform: translate3D(40%, 110px, 0); }
  60% {
    transform: translate3D(30%, 110px, 0); }
  100% {
    transform: translate3D(0, 110px, 0); } }

.modal-container {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: none;
  z-index: 5; }
  .modal-container.opened {
    display: block; }
    .modal-container.opened .modal-dialog {
      transform: translate(0, 0); }
      @media screen and (max-height: 899px) and (min-width: 40em) {
        .modal-container.opened .modal-dialog {
          animation: 0.5s modal-in;
          animation-fill-mode: forwards; } }
      @media screen and (min-height: 900px) and (min-width: 40em) {
        .modal-container.opened .modal-dialog {
          animation: 0.5s modal-in-900px;
          animation-fill-mode: forwards; } }

@keyframes modal-in {
  0% {
    transform: translate(-50%, -100px); }
  100% {
    transform: translate(-50%, 0); } }

@keyframes modal-in-900px {
  0% {
    transform: translate(-50%, -100px); }
  100% {
    transform: translate(-50%, 5%); } }

@keyframes modal-in-from-right {
  0% {
    transform: translate(100%, 0px); }
  100% {
    transform: translate(0, 0px); } }

body.showing-modal {
  overflow: hidden; }

.modal-dialog {
  background: #fefefe;
  border: #333333 solid 0px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -100px);
  transition: transform 0.3s ease-out;
  display: flex;
  flex-direction: column; }
  .modal-dialog .modal-body {
    padding: 10px 15px;
    /*overflow-y: auto;*/ }
  .modal-dialog .modal-header,
  .modal-dialog .modal-footer {
    padding: 10px 20px; }
  .modal-dialog .modal-header {
    border-bottom: #eeeeee solid 1px;
    position: relative;
    background: #ff0e0d;
    background-image: linear-gradient(#fe0809, #ab1403);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fe0809), color-stop(100%, #ab1403));
    color: white; }
    .modal-dialog .modal-header > h3 {
      margin-bottom: 0;
      border-bottom: none;
      padding-bottom: 0; }
  .modal-dialog .btn-modal-close {
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 2rem;
    cursor: pointer;
    color: white; }
  @media screen and (max-width: 39.99875em) {
    .modal-dialog {
      left: 0;
      width: 100%;
      max-width: none;
      border: 0;
      border-radius: 0; } }

@media print, screen and (min-width: 40em) {
  .modal-dialog {
    width: 600px;
    max-width: 75rem; }
    .modal-dialog.tiny {
      width: 30%;
      max-width: 75rem; }
    .modal-dialog.small {
      width: 50%;
      max-width: 75rem; }
    .modal-dialog.large {
      width: 90%;
      max-width: 75rem; }
    .modal-dialog.full-screen {
      width: 95%;
      max-width: 75rem; }
    .modal-dialog.anchor-to-right {
      width: 90%;
      max-width: 75rem; }
  .modal-container.opened .modal-dialog.full-screen {
    transform: translate(-50%, 0px);
    animation: none; }
    .modal-container.opened .modal-dialog.full-screen .modal-body {
      height: 85%; }
  .modal-container.opened .modal-dialog.anchor-to-right {
    transform: translate(0px, 0px);
    animation: 0.5s modal-in-from-right;
    left: unset;
    right: 5px;
    top: 0;
    bottom: 0; }
    .modal-container.opened .modal-dialog.anchor-to-right .modal-body {
      overflow-y: auto; } }

@media screen and (min-width: 40em) {
  .modal-dialog.three-d-secure {
    width: 620px; } }

.modal-dialog.three-d-secure .modal-body {
  padding: 0; }

.reveal {
  padding: 0; }
  .reveal .page-break-bar {
    margin: 0;
    padding-left: 10px; }
  .reveal .inner {
    padding: 10px; }

.drag-drop-zone {
  border: 3px dashed #e68710;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
  color: #aeaeae;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  text-align: center; }
  .drag-drop-zone span {
    padding: 2rem; }
  .drag-drop-zone:hover {
    background-color: #f5f5f5; }
  .drag-drop-zone input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer; }
