.svg-icon {
  width: auto;
}

.h-100 {
  height: 100%;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.center-position {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.horizon-center {
  left: 50%;
  transform: translateX(-50%);
}

.vertical-center {
  top: 50%;
  transform: translateY(-50%);
}

.m-0-auto {
  margin: 0 auto;
}

body {
  font-size: 62.5%;
}

.template {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  --w-input: 980;
  --h-input: 980;
}

.template-content {
  padding-top: calc(var(--h-input)/var(--w-input)*100%);
}

.template-bg {
  inset: 0;
}

.template-bg svg {
  width: 100%;
  height: 100%;
}

/* 
width: calc(xxx/var(--w-input)*100%);
top: calc(xxx/var(--h-input)*100%);
left: calc(xxx/var(--w-input)*100%);
height: calc(xxx/var(--h-input)*100%);
*/

/* begin */
.template-highlight {
  font-family: Google Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 4.2em;
  line-height: calc(60/42);
  text-align: center;
  color: #FFFFFF;
  white-space: pre-line;
  width: calc(572/var(--w-input)*100%);
  top: calc(160/var(--h-input)*100%);
  left: 50%;
  transform: translateX(-50%);
}

.template-label {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 3.2em;
  line-height: calc(42/32);
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  white-space: pre-line;
  bottom: calc(100/var(--h-input)*100%);
  left: 50%;
  transform: translateX(-50%);
}


@media (max-width: 1024px) {}

@media (max-width: 768px) {
  body {
    font-size: 48.5%;
  }
}

@media (max-width: 575px) {
  body {
    font-size: 23.5%;
  }
}