:root {
  --color-white: #f5f5f5;
  --color-pink: #e8bcb9;
  --color-orange: #f39f5a;
  --color-orange-035: #f39f5a59;
  --color-red: #ae445a;
  --color-dark-red: #662549;
  --color-purple: #451952;
  --color-dark-blue: #1d1a39;
  --cell-size: 10px;
  --header-height: 80px;
  --footer-height: 80px;
  --font-light: 300;
  --font-regular: 400;
  --font-bold: 700;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: 'Work Sans', sans-serif;
  color: var(--color-white);
  background-color: var(--color-dark-blue);
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-blend-mode: color-dodge;
}

body.page-hp .container,
body.page-trziste .container,
header .container,
footer .container {
  width: 100%;
  max-width: 1664px;
}

#content {
  margin-bottom: 10px;
}

.canvas-container {
  overflow-x: auto;
  padding-bottom: 1px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.btn {
  display: flex;
  height: 30px;
  padding: 1px 5px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 0;
  min-width: 120px;
  width: 100%;
  font-size: 20px;
  transition: all 250ms;
  color: var(--color-white);
  cursor: pointer;
}
.btn.btn-sm {
  height: 20px;
  padding: 1px 5px;
  font-size: 15px;
}
.btn.btn-lg {
  height: 40px;
  padding: 2px 5px;
  font-size: 30px;
}
.btn.radius-5 {
  border-radius: 5px;
}
.btn.radius-10 {
  border-radius: 10px;
}
.btn.btn-orange {
  background-color: var(--color-orange);
}
.btn.btn-orange:hover {
  color: var(--color-orange);
  background-color: var(--color-dark-blue);
}
.btn.btn-orange svg {
  transition: all 250ms;
}
.btn.btn-orange:hover svg {
  fill: var(--color-orange);
}
.btn.btn-dark-blue {
  background-color: var(--color-dark-blue);
}
#insert-offer {
  font-size: 20px;
  height: 45px;
  padding: 5px 8px;
  width: auto;
}

@media screen and (min-width: 500px) {
  #insert-offer {
    font-size: 25px;
    height: 50px;
    min-width: 250px;
  }
}
@media screen and (min-width: 992px) {
  .w-lg-70 {
    width: 70% !important;
  }
}

/* Header - start */
header {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
header .tel-number {
  font-size: 20px;
  color: var(--color-white);
  text-decoration: none;
  margin-left: auto;
  transition: color 250ms;
}
body:not(.page-hp) header nav {
  margin-right: auto;
}
header nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  column-gap: 40px;
  row-gap: 10px;
}
header nav a {
  font-size: 20px;
  color: var(--color-white);
  text-decoration: none;
  transition: color 250ms;
  padding: 10px;
}
header nav a:hover {
  color: var(--color-orange);
}

.logo a {
  display: flex;
  align-items: baseline;
  column-gap: 7px;
  width: 227px;
  height: 48px;
  color: var(--color-white);
  font-size: 40px;
  text-decoration: none;
  font-weight: var(--font-light);
  font-family: 'Work Sans';
}
.logo a:hover {
  color: var(--color-orange);
}

#counter {
  position: relative;
  margin-left: auto;
}

.selected-pixels-container {
  position: absolute;
  display: grid;
  grid-template-columns: 15px auto;
  grid-auto-rows: auto;
  margin-top: 16px;
  left: 50%;
  transform: translateX(-50%);
}
.selected-pixels-container p {
  font-size: 11px;
}

body:not(.page-hp) .selected-pixels-container {
  display: none;
}

#available {
  display: flex;
  padding: 6px 12px;
  align-items: flex-start;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--color-orange);
  font-size: 15px;
  line-height: normal;
  margin: 0;
}

#selectedCount {
  grid-column: 1 / -1;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 0;
  margin-bottom: 5px;
}

#selectedCount::before {
  display: block;
  content: '';
  width: 10px;
  min-width: 10px;
  height: 10px;
  min-height: 10px;
  border: 0.5px solid var(--color-purple);
  background-color: var(--color-orange);
}

#pricePerPixel {
  margin-top: 0;
  grid-column: 2/-1;
}

@media screen and (max-width: 930px) {
  .logo a {
    width: 185px;
    height: 38px;
    font-size: 32px;
  }
  .logo a img {
    width: 38px;
    height: 38px;
  }
}
@media screen and (min-width: 1200px) {
  header .container {
    flex-wrap: nowrap;
  }
  header .tel-number {
    font-size: 30px;
    margin-left: 66px;
    margin-right: 66px;
  }
  header nav a {
    font-size: 30px;
  }
  #counter {
    margin-left: 0;
  }
  .selected-pixels-container p {
    font-size: 14px;
  }
  #available {
    font-size: 20px;
  }
}
/* Header - end */

/* Footer - start */
footer {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: var(--footer-height);
  margin-top: auto;
}
.company-data {
  margin-top: auto;
}
.company-data p {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 15px;
  letter-spacing: 0.75px;
}
.copyright {
  margin-top: auto;
  margin-bottom: 10px;
}
.copyright p {
  text-align: center;
  font-size: 11px !important;
  font-weight: var(--font-light);
  margin-bottom: 0;
}
footer nav ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 15px 50px;
  flex-wrap: wrap;
}
footer nav a {
  display: block;
  color: var(--color-white);
  transition: color 250ms;
  text-decoration: none;
  text-align: center;
  padding: 10px;
}
footer nav a:hover {
  color: var(--color-orange);
}
@media screen and (min-width: 992px) {
  footer nav ul {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}
/* Footer - end */

/* HP - start */

.hp-titles h1 {
  font-size: 40px;
  font-weight: var(--font-regular);
  text-align: center;
  position: relative;
  margin: 0;
}
.hp-titles h1 .icon-arrow {
  position: absolute;
  left: -40px;
  top: 40px;
  width: 130px;
}
.hp-titles h1 .icon-arrow path {
  animation: blink 1.25s linear infinite alternate;
  transition: all;
}

@keyframes blink {
  0% {
    fill: var(--color-white);
  }
  50% {
    fill: #f4caa8;
  }
  100% {
    fill: var(--color-orange);
  }
}
.hp-titles h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 5px 10px 5px;
  margin: 40px 0 0;
  font-size: 50px;
  font-weight: var(--font-regular);
}
.hp-titles h2 span {
  font-size: 45px;
  font-weight: var(--font-light);
  color: var(--color-dark-blue);
  text-shadow: -1px 0 var(--color-white), 0 1px var(--color-white),
    1px 0 var(--color-white), 0 -1px var(--color-white);
}

.reference-container {
  text-align: center;
  max-width: 500px;
}
.reference-container .slider {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.reference-container .slide {
  grid-column: 1/-1;
  grid-row: 1/-1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s ease-in-out, visibility 2s ease-in-out;
}
.reference-container .slide.active {
  opacity: 1;
  visibility: visible;
}
.reference h3 {
  font-size: 20px;
  font-weight: var(--font-regular);
  margin: 10px 0;
}
.reference img {
  border-radius: 10px;
}
.reference p {
  font-size: 14px;
  font-weight: var(--font-bold);
}
.reference i {
  font-size: 12px;
  font-weight: var(--font-light);
}

@media screen and (min-width: 768px) {
}
@media screen and (min-width: 1400px) {
  .page-hp footer {
    margin-top: -50px;
  }
}

/* HP - end */

/* Grid for images - start */
#canvas {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), var(--cell-size));
  grid-auto-rows: var(--cell-size); /* Adjust the row height */
  width: calc(var(--grid-cols) * var(--cell-size) + 12px);
  margin: 60px auto 0 auto;
  padding-right: 12px;
  position: relative;
}
@media screen and (min-width: 1670px) {
  #canvas {
    width: calc(var(--grid-cols) * var(--cell-size));
    padding-right: 0;
  }
}
.grid-cell {
  background-color: var(--color-orange-035);
  background-image: url('../img/icons/grid-cell-top-left.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.grid-cell.selected {
  background-color: var(--color-white);
}
.grid-cell.disabled {
  background-color: black;
  border: 0;
}
.grid-cell.last-in-row::before {
  content: '';
  width: 1px;
  height: 10px;
  background-color: var(--color-purple);
  display: block;
  position: absolute;
  right: -1px;
  top: 0;
}
.grid-cell.last-in-col::after {
  content: '';
  width: 10px;
  height: 1px;
  background-color: var(--color-purple);
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.grid-cell[class*='corner-'] {
  background-color: transparent;
  background-image: none;
}
.image,
.image > img {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* Grid for images - end */

dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dialog notification - start */

#notification-dialog,
#make-offer-dialog,
#buy-offer-dialog {
  border: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

#notification-dialog div {
  border-radius: 15px;
  padding: 25px 71px;
  background: linear-gradient(
    233deg,
    rgba(29, 26, 57, 0.95) 11.11%,
    rgba(69, 25, 82, 0.95) 100%
  );
  text-align: center;
  font-size: 20px;
  color: var(--color-white);
  width: 100%;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  #notification-dialog div {
    font-size: 25px;
  }
}
/* Dialog notification - end */

/* Dialog form order - start */
#order-dialog {
  grid-row: 1/2;
  grid-column: 1/2;
}
#order-dialog form {
  background-color: var(--color-dark-red);
  padding: 15px;
  border-radius: 5px;
  background-image: url('../img/dialog-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-blend-mode: color-dodge;
  color: var(--color-white);
  width: 180px;
  position: absolute;
  z-index: 100;
  cursor: move;
}
#file-input-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  overflow: hidden;
}
#file-input-trigger:hover {
  background-color: var(--color-orange);
}
#order-dialog p {
  font-weight: var(--font-bold);
  text-align: center;
  margin-bottom: 10px;
}
p#dialog-pixel-count {
  font-size: 14px;
  margin-bottom: 5px;
}
.dialog-input {
  display: block;
  font-size: 14px;
  font-family: 'Work Sans', sans-serif;
  color: var(--color-dark-blue);
  padding: 0px 5px;
  background-color: var(--color-pink);
  width: 100%;
  height: 25px;
  border-radius: 13px;
  color: var(--color-dark-blue);
  border: 0;
  margin: 7px auto;
  transition: all 250ms;
}
.dialog-input:focus,
.dialog-input:focus-visible {
  outline: none;
  background-color: var(--color-orange);
}

.dialog-input::placeholder {
  color: var(--color-dark-blue);
  opacity: 1;
  font-size: 14px;
}

/* Dialog form order - end */

/* Dialog E-book - start */

#e-book-dialog {
  border: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

#e-book-dialog .dialog-container {
  width: 100%;
  max-width: 640px;
  margin: auto;
}

#e-book-dialog .content {
  border-radius: 10px 10px 0px 0px;
  background-color: var(--color-white);
  padding: 40px 25px;
}
#e-book-dialog .content h2 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 40px;
}
#e-book-dialog .content p {
  font-size: 14px;
}
#e-book-dialog form {
  border-radius: 0px 0px 10px 10px;
  background-color: var(--color-dark-blue);
  padding: 70px 16px;
}
#e-book-dialog form .inputs-container .btn.btn-lg {
  height: 48px;
  font-size: 24px;
  font-family: 'Work Sans', sans-serif;
  padding: 10px 20px;
  border-radius: 10px;
}
#e-book-dialog form .inputs-container input {
  padding: 10px 18px;
  font-size: 24px;
  height: 48px;
}
#e-book-dialog form .inputs-container input::placeholder {
  font-size: 24px;
}
#e-book-dialog .form-check {
  margin-top: 35px;
  color: var(--color-white);
}
@media screen and (min-width: 640px) {
  #e-book-dialog .content .row {
    margin-bottom: 40px;
  }
  #e-book-dialog form .inputs-container {
    gap: 48px;
  }
}
/* Dialog E-book - end */

/* Dialog Insert Offer - start */

#make-offer-dialog .dialog-container,
#buy-offer-dialog .dialog-container {
  color: var(--color-white);
  width: 100%;
  max-width: 600px;
  padding: 20px 25px 15px 20px;
  margin: auto;
  border-radius: 15px;
  background: linear-gradient(
    224deg,
    rgba(29, 26, 57, 0.95) 8.77%,
    rgba(69, 25, 82, 0.95) 91.99%
  );
}
#buy-offer-dialog .dialog-container {
  max-width: 500px;
}
#make-offer-dialog .offer-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
#make-offer-dialog .offer-info .input-container {
  max-width: 150px;
}
#upload-offer-image {
  min-width: 150px;
}
#make-offer-dialog h2,
#buy-offer-dialog h2 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 10px;
}
#make-offer-dialog .offer-info h2 {
  margin-bottom: 15px;
}
#make-offer-dialog .offer-info p {
  font-size: 12px;
}
#make-offer-dialog .offer-info p a {
  color: var(--color-white);
}
#make-offer-dialog .offer-info p a:hover {
  color: var(--color-orange);
}
#make-offer-dialog form .inputs-container input {
  padding: 10px 18px;
  font-size: 24px;
  height: 48px;
}
#make-offer-dialog form .inputs-container input::placeholder {
  font-size: 24px;
}
#make-offer-dialog .form-check {
  margin-top: 35px;
  color: var(--color-white);
}

.form-container .input-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.form-container .coordinates {
  display: flex;
  align-items: center;
}

.form-container .coordinates .dialog-input {
  max-width: 103px;
}
.form-container .dialog-input {
  max-width: 250px;
  margin: 10px 0 10px 4px;
}
.form-container .dialog-input.disabled {
  background-color: gray;
}
.form-container {
  margin-top: 25px;
}
.form-container label {
  font-size: 14px;
  line-height: normal;
  width: 100%;
}
.form-container .info {
  font-size: 12px;
  line-height: normal;
  margin: 0;
}
.form-container .info > span {
  font-size: 14px;
}

@media screen and (min-width: 500px) {
  #make-offer-dialog .offer-info {
    flex-direction: row;
  }
  .form-container .input-container {
    flex-wrap: nowrap;
  }
  .form-container label {
    max-width: 140px;
  }
  #make-offer-dialog form .inputs-container .btn {
    font-size: 24px;
    padding: 10px 20px;
  }
}
/* Dialog Insert Offer - end */

#buy-offer {
  width: auto;
  margin-top: 10px;
}

/* Page O nás - start */

body.page-o_nas footer {
  margin-top: 90px;
}

body.page-o_nas h2 {
  margin-bottom: 25px;
}
body.page-o_nas #o-spolecnosti h2:not(:first-of-type) {
  margin-top: 60px;
}
body.page-o_nas #o-spolecnosti,
body.page-o_nas #podminky,
body.page-o_nas #platba,
body.page-o_nas #kontakt {
  margin-top: 60px;
}

/* Page O nás - end */
/* Page Konverzní page - start */
body.page-e_book #content {
  margin-top: 40px !important;
}

body.page-e_book p {
  font-size: 16px;
}

body.page-e_book footer .logo-company-data-container,
body.page-e_book footer nav {
  display: none !important;
}

body.page-e_book footer .copyright {
  margin: 0 auto;
}

.konverzni-stranka-form {
  margin-top: 20px;
  border-radius: 10px 10px 0px 0px;
  background-color: var(--color-dark-blue);
  padding: 15px 30px;
}
.konverzni-stranka-form p {
  margin-bottom: 20px;
}
.inputs-container {
  gap: 20px;
}
.inputs-container .btn.btn-lg {
  height: 100px;
  font-size: 36px;
  font-weight: var(--font-bold);
  padding: 10px 18px;
  text-transform: uppercase;
}
.inputs-container .btn.btn-orange:hover {
  background-color: var(--color-white);
  color: var(--color-orange);
}
.inputs-container input {
  display: block;
  padding: 10px 18px;
  font-size: 36px;
  color: var(--color-white);
  font-family: 'Work Sans', sans-serif;
  background-color: var(--color-orange);
  width: 100%;
  height: 100px;
  border: 0;
  transition: all 250ms;
  border-radius: 10px;
}
.inputs-container input:focus,
.inputs-container input:focus-visible {
  outline: none;
  background-color: var(--color-orange);
}
.inputs-container input::placeholder {
  color: var(--color-white);
  opacity: 1;
  font-size: 36px;
}
.konverzni-stranka-form .form-check {
  margin-top: 25px;
}
@media screen and (min-width: 992px) {
  .konverzni-stranka-form {
    padding: 40px 100px 55px 100px;
  }
  .konverzni-stranka-form p {
    margin-bottom: 40px;
  }
  .inputs-container {
    gap: 80px;
  }
  .inputs-container > * {
    flex: 0 1 50%;
  }
}
/* Page Konverzní page - end */

/* Page Tržiště page - start */

.offers-container {
  display: grid;
  grid-template-columns: auto;
  grid-template-areas:
    'ads'
    'sidebar';
  column-gap: 70px;
  row-gap: 25px;
  margin-top: 55px;
}
.offers-feed {
  grid-area: ads;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px 70px;
}
.top-offers {
  grid-area: sidebar;
  border-radius: 15px;
  background: linear-gradient(
    180deg,
    rgba(69, 25, 82, 0.6) -2.73%,
    rgba(217, 217, 217, 0) 138.55%
  );
}
.top-offers h3 {
  font-size: 20px;
  line-height: normal;
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: var(--font-bold);
  text-align: center;
}
.offer,
.top-offer {
  display: flex;
  padding: 25px;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px;

  border-radius: 15px;
  background: linear-gradient(
    280deg,
    rgba(29, 26, 57, 0.6) 13.92%,
    rgba(174, 68, 90, 0.8) 27.47%,
    rgba(102, 37, 73, 0.6) 58.83%
  );
}

.top-offer {
  padding: 10px;
  flex-wrap: nowrap;
  margin: 5px;
}

.offer-sold {
  position: relative;
}
.offer-sold::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 15px;
  background: rgba(29, 26, 57, 0.5);
}

.offer img {
  border-radius: 15px;
  max-width: 200px;
  max-height: 200px;
}
.top-offer img {
  border-radius: 15px;
  max-width: 50px;
  max-height: 50px;
}

.offer-content {
  width: 100%;
}

.offer-content-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.offer-content-row + .offer-content-row {
  margin-top: 35px;
}
.offer-content-row:last-child {
  margin-top: 25px;
}
.top-offer .offer-content-row + .offer-content-row {
  margin-top: 20px;
}
.top-offer .offer-content-row:last-child {
  margin-top: 0px;
}

.offer-content-row p {
  font-size: 20px;
  margin-bottom: 0;
  line-height: normal;
}
.top-offer .offer-content-row p {
  font-size: 12px;
}
.offer-content-row .btn {
  width: 200px;
  margin-left: auto;
}
.top-offer .offer-content-row .btn {
  width: 100%;
}

@media screen and (min-width: 550px) {
  .offers-container {
    grid-template-columns: auto 260px;
    grid-template-areas: 'ads sidebar';
  }
}

@media screen and (min-width: 768px) {
  .offers-feed {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .offer {
    flex-wrap: nowrap;
    align-items: stretch;
  }
}
@media screen and (min-width: 1300px) {
  .offer {
    height: 290px;
  }
}
@media screen and (min-width: 1480px) {
  .offer {
    height: 250px;
  }
}

/* Page Tržiště page - end */

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid var(--color-dark-blue);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}
.form-check-input[type='checkbox'] {
  border-radius: 0.25em;
}
.form-check-input[type='radio'] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: var(--color-orange-035);
  outline: 0;
}
.form-check-input:checked {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}
.form-check-input:checked[type='checkbox'] {
  background-image: url("data:image/svg+xml,%3csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath id='icon' fill-rule='evenodd' clip-rule='evenodd' d='M5.68903 10.5313L14.1813 0.94812L15.4736 2.40651L5.68903 13.4481L0.473633 7.56272L1.766 6.10432L5.68903 10.5313Z' fill='black'/%3e%3c/svg%3e");
}
.form-check-input:checked[type='radio'] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

#error-page {
  margin-top: 60px;
}


.loading {
	z-index: 200;
	position: fixed;
	top: 0;
	min-width: 100%;
	min-height: 100vh;
  background-color: rgba(0,0,0,0.4);
  margin: 0;
}
.loading-content {
	position: absolute;
	border: 16px solid #f3f3f3; /* Light grey */
	border-top: 16px solid var(--color-dark-blue); 
	border-radius: 50%;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	animation: spin 2s linear infinite;
}
	
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}