@font-face {
  font-style: normal;
  font-weight: 400;
  font-family: 'BerninaSans';
  font-display: swap;
  src: url('../fonts/BerninaSans-NarrowRegular.woff2') format('woff2');
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.src-start-block {
  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%;
  padding-left: 16px;
  padding-right: 16px;
  font-family: 'BerninaSans', sans-serif;
  /*  background-image: url('universal_bg.avif');*/
  background-size: cover;
  box-sizing: border-box;
  background: #ffffff;
}

.src-start-block * {
  box-sizing: border-box;
}

.src-start-block p {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

/* .src-start-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 41, 55, 0.44);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
} */

.src-start-box {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 756px;
  padding: 16px;
  animation-name: appear;
  animation-duration: 0.35s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 26px 80px 0 rgba(0, 0, 0, 0.2),
    0 0 1px 0 rgba(0, 0, 0, 0.2);
}

.src-start-box__pic {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 328/ 218;
  background-color: #eee;
}

.src-start-box__pic a {
  display: block;
}

.src-start-box__pic {
  video,
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.src-start-box__text {
  padding: 11px 8px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 40px;
}

.src-start-box__text p {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.src-start-box__text .loader-box {
  display: flex;
  align-items: flex-start;
  padding-top: 14px;
}

.src-start-box__text .loader-box .loader {
  display: flex;
  align-items: center;
}

.src-start-box__text .copyright {
  font-family: 'BerninaSans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  display: flex;
  align-items: center;
  font-style: normal;
  color: #1f2937;
  padding-top: 40px;
}

.src-start-box__text .copyright a {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.src-start-box__text .copyright img {
  width: 16px;
  height: 18px;
}

.src-start-box__text .copyright .text {
  padding-left: 8px;
}

.text-status {
  color: #1f2937;
  font-family: 'BerninaSans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

@media (min-width: 1024px) {
  .src-start-box {
    grid-template-rows: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr) 424px;
  }

  .src-start-box__pic {
    grid-column: 2 / -1;
    grid-row: 1 / -1;
    width: 424px;
    aspect-ratio: 1 / 1;
  }

  .src-start-box__text {
    grid-template-rows: 61px minmax(0, 1fr) auto;
    grid-column: 1 / 2;
    grid-row: 1 / -1;
    padding: 20px 16px 15px;
    gap: 16px;
  }
}

@keyframes appear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.src-loading {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  margin-top: 3px;
  flex-shrink: 0;
}

.src-loading circle {
  transform-origin: 50% 50% 0;
  transform-box: fill-box;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  fill: transparent;
  stroke-linecap: round;
  animation-name: spinnerSmall;
}

.src-loading.hidden {
  display: none;
}

@keyframes spinnerSmall {
  0% {
    transform: rotate(0deg);
    stroke-dashoffset: 26;
  }

  100% {
    transform: rotate(1080deg);
    stroke-dashoffset: 26;
  }
}
