body {
    height: 100%;
    width: 100%;
    font-family: 'Lato', sans-serif;
}

.dealer-logo {
    height: 44px;
}
.dollars {
    box-shadow: 0 0 25px 0 silver inset;
}
.dollars-print {
    display: none;
}
.header-title {
    font-family: 'Fugaz One', sans-serif;
    text-shadow: 1px 1px 5px #000;
    background-color: rgb(58,56,101);
    background: linear-gradient(8deg, rgba(58,56,101,1) 0%, rgba(23,85,93,1) 100%);
    box-shadow: 1px 1px 5px 0 grey;
}
.header-title-print {
    display: none;
    font-family: 'Fugaz One', sans-serif;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #fff;
    color: silver;
    padding-top: 25vh;
    text-align: center;
    font-size: 2em;
    z-index: 999;
}

@media (min-width: 768px) {
    .dealer-details {
        text-align: right;
    }
    .logo-container-bottom {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .dealer-details {
        text-align: center;
    }
    .logo-container-top {
        display: none;
    }
    .header-title {
        font-size: 2.5rem !important;
    }
}
@media (max-width: 575px) {
    .header-title {
        font-size: 2rem !important;
    }
}
@media print {
    .dollars {
        display: none !important;
    }
    .dollars-print {
        display: block !important;
    }
    .header-title {
        display: none !important;
    }
    .header-title-print {
        display: block !important;
    }
}

/* Animated Loader */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #ddd;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #ddd transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }