@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #0a1c42;
  --secondary-color: #00acd4;
}

body,
html {
  font-family: "Nunito", sans-serif;
  color: var(--primary-color);
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 4px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
  border: 0;
}

[v-cloak] {
  display: none;
}

#summit-banner {
  background-image: url("../img/background-desktop.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: auto;
  height: 100dvh;
  position: relative;
}

#summit-footer {
  background-color: var(--primary-color) !important;
  padding: 50px 0;
}

.summit-background {
  width: 80%;
}

.simply-amount {
  color: #1e293b !important;
}


.list-group-item.active{
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

@media (max-width: 768px) {
  #summit-banner {
    background-image: url("../img/background-mobile.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 80dvh;
  }

  .summit-background {
    width: 100%;
  }

  .simply-countdown {
    margin-bottom: 10% !important;
  }

  .banner-alert {
    margin-bottom: 10% !important;
  }
}
