@import "https://fonts.googleapis.com/css2?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";

/* src/styles.css */
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}
.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}
.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}
.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}
html {
  font-family:
    "Poppins",
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  color: hsla(0, 0%, 38%, 1);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
select {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 1rem;
  color: inherit;
}
.input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-block: 3rem 1.5rem;
  padding-inline-start: 1rem;
  width: calc(100% - 2rem);
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
}
.input-wrapper label {
  position: absolute;
  top: -1.6em;
  left: 0;
}
.input-wrapper input {
  appearance: none;
  border: none;
  padding-block: 1rem;
}
.input-wrapper input:focus-visible {
  outline: none;
}
.input-wrapper:has(input:focus-within) {
  border-color: black;
  outline: none;
}
.input-wrapper img,
.input-wrapper svg {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgb(89, 112, 141);
}
.input-wrapper:has(.country-code) {
  flex-direction: row;
  align-items: center;
}
.country-code {
  width: 3.8em;
  border: none;
  border-radius: inherit;
  padding-inline: 0.5rem;
  font-weight: 700;
}
.avatar-wrapper {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  margin-block: 1rem;
}
.avatar-wrapper button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: hsla(0, 2%, 28%, 1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.avatar-image {
  max-width: 132px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background-color: hsla(0, 0%, 92%, 1);
  border: 6px solid hsla(0, 0%, 100%, 1);
}
.avatar-image img {
  width: 100%;
  object-fit: cover;
}
.user-info p:first-child {
  font-weight: 500;
  font-size: 1.18rem;
  color: hsla(0, 2%, 28%, 1);
  margin-bottom: 0;
  line-height: 1;
}
.user-info p:last-child {
  font-weight: 300;
  color: hsla(0, 0%, 62%, 1);
  margin-top: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
hr {
  color: hsla(0, 0%, 92%, 1);
}
ibero-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
body:has(ibero-header) {
  padding-block-start: 90px;
}
.tags-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  position: relative;
  align-items: center;
  justify-content: center;
}
.tags-wrapper > .tag {
  background:
    linear-gradient(
      180deg,
      #E5BB41 0%,
      #D29F40 100%);
  color: #fff;
}
.tags-scroller {
  display: flex;
  overflow-x: scroll;
}
.tag {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  margin: 1rem;
  background-color: hsla(0, 0%, 92%, 1);
  border-radius: 2em;
  color: #111010;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  text-align: center;
}
ibero-footer {
  z-index: 1000;
}
.style-card {
  box-sizing: border-box;
  border-radius: 16px;
  max-width: 90%;
  height: 90vh;
  margin-block: 1rem;
  margin-inline: auto;
  padding: 1rem;
  text-align: center;
  box-shadow: 0px 8px 10px 5px rgba(0, 0, 0, 0.2);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
