/*  
    Contains the following: 
    - resets 
        - forms-resets
    - global variables 
    - common styles such as 
        - links
        - i_links
        - a
*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;1,400;1,600&display=swap");
html, body {
  width: 100%;
  height: 100%;
}

html {
  --color-dark: rgb(40, 56, 145);
  --color-light: rgb(228, 220, 212);
  --color-light-0-7: rgba(255, 255, 255, 0.7);
  --color-accent: rgb(244, 148, 28);
  --padding: 1rem;
  --margin: 1rem;
  --radius: 1rem;
  --radius-buttons: 1rem;
  --border-width: 0.2rem;
  --font-small: 1.2rem;
  --font-medium: 1.5rem;
  --font-large: 1.8rem;
  --font-xlarge: 2.3rem;
  font-size: 10px;
  font-family: "Open Sans", sans-serif;
}

body {
  font-size: 1.5rem;
}

/* 
    Reset 
*/
*, *::after, *::before {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

input {
  font-family: inherit;
  font-size: inherit;
}

a:link, a:visited {
  color: inherit;
  text-decoration: none;
}

a.act {
  display: inline-block;
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: 0.5rem 2rem;
  border-radius: 1000px;
  font-size: 1.3rem;
  transition: background-color 0.5s;
}
a.act:hover {
  background-color: var(--color-accent);
}
a.act.icon {
  padding: 0.5rem 1.5rem;
  width: min-content;
  display: flex;
  justify-self: center;
  align-items: center;
}
a.act.icon > svg {
  width: 2rem;
  height: 2rem;
}
.acts {
  display: flex;
  gap: 0.5rem;
}

/*
    Structural Styling
    - don't do this, because they exists in their own modules. 
*/
i-sections-group {
  display: block;
}
i-section {
  display: block;
}
i-pages-group {
  display: flex;
  flex-direction: column;
  height: 100%;
}
i-pages-group > .body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

i-pages-group[horizontal] > .body {
  flex-direction: row;
  overflow-y: auto;
}
i-pages-group[horizontal] > .body > i-page, i-pages-group[horizontal] > .body > i-pages-group {
  min-width: 100%;
}

i-page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
i-page > .body {
  height: 100%;
}

/*
    onenav base level. 
*/
i-onenav-objects-group {
  position: fixed;
  padding: 1rem;
  justify-content: space-between;
  color: var(--color-light);
  width: 100%;
  height: 100%;
  text-align: center;
  display: grid;
  grid-template-areas: "head" "body" "foot";
}
i-onenav-objects-group > .head {
  grid-area: head;
}
i-onenav-objects-group > .head > .title-bar {
  display: flex;
  align-items: center;
}
i-onenav-objects-group > .head > .title-bar > .nav-icon {
  display: none;
  padding: 0.5rem;
  margin-right: 2rem;
  width: 3rem;
  height: 3rem;
}
i-onenav-objects-group > .head > .title-bar > .nav-icon > img {
  width: 100%;
  height: 100%;
}
i-onenav-objects-group > .head > .title-bar > .name {
  width: fit-content;
  display: flex;
  justify-content: center;
}
i-onenav-objects-group > .head > .title-bar > .name > img {
  height: 100px;
}
i-onenav-objects-group > .body {
  grid-area: body;
  display: flex;
  align-items: center;
  justify-content: center;
}
i-onenav-objects-group > .body > i-links-group {
  font-size: 1.5rem;
}
i-onenav-objects-group > .body > i-links-group > .body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
i-onenav-objects-group > .body > i-links-group > .body > .link {
  padding: 0.5rem 4rem;
  border: 1px solid var(--color-light);
  border-radius: var(--radious);
  transition: border-color 0.5s;
  background-color: var(--color-dark);
  transition: border-color 1s;
}
i-onenav-objects-group > .body > i-links-group > .body > .link:hover {
  border-color: var(--color-accent);
}
i-onenav-objects-group > .body > i-links-group > .body > .link.current {
  border-color: var(--color-accent);
}
i-onenav-objects-group > .foot {
  grid-area: foot;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
i-onenav-objects-group > .foot > i-links-group {
  display: block;
}
i-onenav-objects-group > .foot > i-links-group > .body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
i-onenav-objects-group > .foot > i-links-group > .body > .link {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--color-light);
  border-radius: var(--radious);
  background-color: var(--color-dark);
  border: 0.1rem solid white;
  transition: border-color 1s;
}
i-onenav-objects-group > .foot > i-links-group > .body > .link.whatsapp {
  background-color: #25D366;
  color: white;
  display: flex;
}
i-onenav-objects-group > .foot > i-links-group > .body > .link.whatsapp > img {
  width: 1.5rem;
  margin-right: 0.5rem;
}
i-onenav-objects-group > .foot > i-links-group > .body > .link:hover {
  border-color: var(--color-accent);
}
i-onenav-objects-group.hide {
  height: fit-content;
}
i-onenav-objects-group.hide > .body, i-onenav-objects-group.hide > .foot {
  display: none;
}

i-links-group {
  display: block;
}
i-stack {
  display: block;
}

/*# sourceMappingURL=index.css.map */
