:root {
  --color-red: rgb(148, 23, 40);
  --color-blue: rgb(35, 62, 99);
  --color-orange: rgb(236, 103, 38);
  --color-grey-dark: rgb(51, 51, 51);
  --color-grey-light: rgb(226, 226, 226);
  --color-grey-medium: rgb(171, 171, 171);
  --color-white: rgb(255, 255, 255);
  --color-black: rgb(0, 0, 0);
  --box-shadow: 0px 0.4dvw 0.6dvw -0.2dvw rgba(0, 0, 0, 0.3);
  --box-red: rgba(231, 4, 30, 0.45);
  --box-blue: rgba(23, 105, 219, 0.45);
  --box-orange: rgba(255, 74, 3, 0.45);
  --box-yellow: rgba(250, 230, 56, 0.45);
  --box-grey: rgba(171, 171, 171, 0.45);
  --box-green: rgba(45, 190, 29, 0.45);
  --box-purple: rgba(135, 48, 255, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, sans-serif;
  background: var(--color-white);
  color: var(--color-grey-dark);
  font-size: 62.5%;
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: inherit;
}

.u-p {
  padding: 0 5%;
}

.u-between {
  justify-content: space-between !important;
}

.u-around {
  justify-content: space-around !important;
}

.main {
  background: var(--color-white);
  width: 100%;
  height: 100%;
  margin-top: 10px;
  padding: 2dvw;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.color-bar {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, var(--color-red) 0, var(--color-red) 33%, var(--color-blue) 33%, var(--color-blue) 66%, var(--color-orange) 66%, var(--color-orange) 100%);
}

.logo-box {
  width: 100%;
  height: 5dvw;
  background: url("./assets/logo.svg") no-repeat center/contain;
  margin: 1dvw 0;
}
@media only screen and (min-width: 1200px) {
  .logo-box {
    height: 3dvw;
    margin: 0 0 1dvw 0;
  }
}

.container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(100% - 2dvw);
  padding-top: 1dvw;
}
@media only screen and (min-width: 600px) {
  .container {
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 600px) {
  .container--link {
    margin-top: 10dvw;
    padding: 0.5dvw;
  }
}

.card {
  box-shadow: var(--box-shadow);
  border: 1px solid var(--color-grey-light);
  margin: 0.5dvw;
  border-radius: 2px;
  padding: 1rem;
  flex: 0 1 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(min-content, 1fr));
  grid-template-rows: minmax(min-content, 55%) minmax(min-content, 45%);
  grid-gap: 1dvw 2dvw;
  width: 90dvw;
}
@media only screen and (min-width: 600px) {
  .card {
    width: calc(50% - 1dvw);
    aspect-ratio: 2.5/1;
  }
}
@media only screen and (min-width: 1200px) {
  .card {
    width: calc(33% - 1dvw);
    aspect-ratio: 2.5/1;
  }
}
.card-data {
  grid-column: 1/span 2;
}
.card-button-box {
  grid-column: 1/span 3;
  grid-row: 2/span 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.card--red {
  background: var(--box-red);
}
.card--yellow {
  background: var(--box-yellow);
}
.card--orange {
  background: var(--box-orange);
}
.card--blue {
  background: var(--box-blue);
}
.card--purple {
  background: var(--box-purple);
}
.card--green {
  background: var(--box-green);
}
.card--grey {
  background: var(--box-grey);
}

.card-data > p {
  margin-bottom: 0.4rem;
  padding-right: 0.4rem;
}

.trainer-box {
  display: flex;
  align-items: center;
  margin: auto;
}

.trainer-img {
  aspect-ratio: 1/1;
  height: 2.2rem;
  margin-right: 0.4rem;
  background: url("/assets/profile.png") no-repeat center center/cover;
}
.trainer-img--big {
  height: 4rem;
}
.trainer-img > img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media only screen and (min-width: 1200px) {
  .trainer-img {
    height: 3rem;
  }
}

.link-box {
  width: calc(100% - 2dvw);
  margin: 7dvw 1dvw;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  justify-content: space-around;
  gap: 1.5rem 1rem;
}
@media only screen and (min-width: 1200px) {
  .link-box {
    margin: 3dvw 8dvw;
  }
}

.u-bold {
  font-weight: 800;
}

.h-primary {
  font-family: "RobotoSlab Regular", "Roboto Slab", serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  margin: 0.5rem 0;
}
@media only screen and (min-width: 1200px) {
  .h-primary {
    font-size: 1rem;
  }
}

.h-secondary {
  font-weight: 600;
  font-size: 0.8rem;
  display: block;
}
@media only screen and (min-width: 1200px) {
  .h-secondary {
    font-size: 1rem;
  }
}

.h-tertiary {
  font-family: "RobotoSlab Regular", "Roboto Slab", serif;
  font-size: 0.6rem;
  font-weight: 600;
  display: inline-block;
}
@media only screen and (min-width: 1200px) {
  .h-tertiary {
    font-size: 0.8rem;
  }
}

.p-standard {
  font-size: 0.6rem;
  display: inline-block;
}
@media only screen and (min-width: 1200px) {
  .p-standard {
    font-size: 0.8rem;
  }
}

.btn {
  background: var(--color-red);
  color: var(--color-white);
  border: 1px solid transparent;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.4s;
  text-align: center;
  min-width: 15%;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: Roboto, sans-serif;
}
.btn:hover, .btn:active {
  color: var(--color-red);
  background: transparent;
  border: 1px solid var(--color-red);
}
.btn--card {
  width: 45%;
  padding: 0.5rem;
}
.btn--trainer {
  transition: all 0.3s ease-out;
}
.btn--trainer:active {
  transform: scale(0.9);
  box-shadow: 0 0.4dvw 0.6dvw -0.2dvw rgba(0, 0, 0, 0.5);
  background: var(--color-red);
  color: var(--color-white);
}
.btn--grey {
  background: var(--color-grey-dark);
}
.btn--grey:hover, .btn--grey:active {
  color: var(--color-grey-dark);
  background: transparent;
  border: 1px solid var(--color-grey-dark);
}
.btn--blue {
  background: var(--color-blue);
}
.btn--blue:hover, .btn--blue:active {
  color: var(--color-blue);
  background: transparent;
  border: 1px solid var(--color-blue);
}
.btn--orange {
  background: var(--color-orange);
}
.btn--orange:hover, .btn--orange:active {
  color: var(--color-orange);
  background: transparent;
  border: 1px solid var(--color-orange);
}
.btn:disabled {
  color: var(--color-grey-medium);
  background: var(--color-grey-light);
  border: 1px solid var(--color-grey-light);
  cursor: not-allowed;
}/*# sourceMappingURL=custom.css.map */