/*
 * 3D Source Configurator
 * http://3dsource.com/
 *
 * 3D Source is the only company that exists exclusively to help product manufacturers
 * evolve their sales and marketing assets from photography to photorealistic
 * 3D and CGI.
 * 3D Source provides access to a scalable network of content developers and
 * groundbreaking software that supports trillions of possible design options in catalog quality.
 *
 * Last modified 17.06.2021, 18:32
 * Copyright 2021 3D Source
 */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");

.loader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: "Playfair Display", serif;
  background: #ffffff;
}

.loader__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10%;
  animation-name: appear;
  animation-duration: 0.35s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

.loader__logo {
  width: 200px;
  margin: 0 auto 56px;
}

.loader__logo img {
  width: 100%;
}

.loader__heading {
  margin-bottom: 1em;
  font-weight: 400;
  font-size: 36px;
  line-height: 2;
  font-family: "Playfair Display", serif;
  color: #1d284f;
}

@media (min-width: 1900px) {
  .loader__heading {
    font-size: 56px;
  }
}

.progress {
  position: relative;
  width: 100%;
  max-width: 666px;
  text-align: center;
}

@media (min-width: 1900px) {
  .progress {
    max-width: 999px;
  }
}

.progress__label {
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  font-family: "Playfair Display", serif;
  text-align: center;
  color: #1d284f;
}

@media (min-width: 1900px) {
  .progress__label {
    margin-bottom: 29px;
    font-size: 24px;
  }
}

@keyframes appear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}