@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700&display=swap");
* {
  box-sizing: border-box;
  font-size: 100%;
  font-family: Raleway, sans-serif;
}

html {
  width: 100%;
  margin: 0px;
}

body {
  width: 100%;
  margin: 0px;
  min-height: 100vh;
}
@media (max-width: 1400px) {
  body {
    display: flex;
    flex-direction: column;
  }
}

.layout {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
}
@media (max-width: 1400px) {
  .layout {
    flex: auto;
  }
}

.layout__side-bar {
  position: fixed;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.06);
  border-radius: 7px;
  display: grid;
  grid-template-rows: 15% 20% 65%;
  height: 100%;
  width: 17%;
  min-width: 270px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  margin: Opx;
  transition: left 1s;
  opacity: 1;
  z-index: 100;
}
@media (max-width: 1400px) {
  .layout__side-bar {
    display: none;
  }
}

.layout__content {
  width: 100%;
  height: 100%;
  margin-left: 20%;
  margin-right: 20px;
  padding-bottom: 20px;
}
@media (max-width: 1400px) {
  .layout__content {
    margin-left: 20px;
  }
}

.side-bar__item-navigation {
  align-self: center;
  justify-self: center;
}

.side-bar__item-logo {
  align-self: last baseline;
  justify-self: center;
}

.side-bar__infos-items {
  align-self: end;
}

.back-button {
  cursor: pointer;
  border: 0px solid rgba(0, 0, 0, 0.06);
}

.logo-back {
  width: 50px;
  height: 50px;
}

.infos__items {
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0rem 1rem 1rem;
  padding: 1rem;
  border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.1);
}

.infos__item {
  line-height: 1.25rem;
}
.infos__item a {
  text-decoration: none;
  color: inherit;
}
.infos__item img {
  height: 12px;
  width: 12px;
  padding-right: 0.25rem;
}

.main-logo {
  height: 100px;
  width: 100px;
}

.navigation-link {
  font-size: 1.25rem;
  line-height: 2rem;
}
.navigation-link a {
  text-decoration: none;
  color: inherit;
}
.navigation-link a.bold {
  font-weight: 600;
  pointer-events: none;
}

.layout__content-top {
  background-color: white;
  position: fixed;
  height: 40px;
  top: 0px;
  left: 20%;
  width: 100%;
  z-index: 50;
}
@media (max-width: 1400px) {
  .layout__content-top {
    left: 0%;
    height: 90px;
  }
}
@media (max-width: 1010px) {
  .layout__content-top {
    height: 50px;
  }
}

.footer__items {
  list-style: none;
}

header {
  display: none;
  background-color: rgba(0, 0, 0, 0.06);
  position: fixed;
  grid-template-columns: 10% auto 330px;
  z-index: 100;
}
@media (max-width: 1400px) {
  header {
    width: 100%;
    height: 50px;
    display: grid;
  }
}
header img {
  width: 30px;
  height: 30px;
}
@media (max-width: 400px) {
  header {
    display: block;
  }
}

.header__item {
  align-self: center;
}
.header__item a {
  text-decoration: none;
  color: black;
}
.header__item a.bold {
  font-weight: 600;
  pointer-events: none;
}
.header__item.logo {
  padding-left: 30px;
}
@media (max-width: 400px) {
  .header__item.logo {
    display: none;
  }
}
.header__item.nav {
  display: grid;
  grid-template-columns: 50% 50%;
  padding-right: 0.5rem;
  justify-content: center;
  align-content: center;
  height: 100%;
}

.header__item-nav-link {
  text-align: center;
}

footer {
  display: none;
  background-color: rgba(0, 0, 0, 0.06);
  text-align: center;
  padding-top: 55px;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  width: 100%;
  height: 160px;
  justify-content: center;
  grid-template-rows: auto;
}
footer a {
  text-decoration: none;
  color: inherit;
}
footer img {
  height: 12px;
  width: 12px;
  padding-right: 0.25rem;
}
@media (max-width: 1400px) {
  footer {
    display: grid;
  }
}

.search__bar {
  position: fixed;
  top: 0px;
  left: 20%;
  width: 75%;
  z-index: 100;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 1rem 2rem;
  padding: 0.75rem 0.75rem;
  border-radius: 1.5rem;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.06);
  background-color: white;
  opacity: 0.97;
}
@media (max-width: 1400px) {
  .search__bar {
    width: 95%;
    left: 0%;
    top: 50px;
    margin: 1rem 2.5%;
  }
}

.search__bar-input {
  border: 0px solid white;
  outline: none;
  width: 100%;
}

.search__result {
  position: fixed;
  top: 65px;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  max-height: 300px;
  width: 75%;
  margin: 1rem 2rem;
  grid-auto-rows: 60px;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.06);
  z-index: 100;
  align-items: center;
  background-color: white;
  row-gap: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: thin;
  /* IE and Edge */
  scrollbar-width: thin;
  /* Firefox */
}
.search__result::-webkit-scrollbar {
  display: thin;
}
@media (max-width: 1400px) {
  .search__result {
    top: 115px;
    width: 95%;
    margin: 1rem 2.5%;
    left: 0%;
  }
}

.search__result-item {
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1rem;
  cursor: pointer;
}
.search__result-item:hover {
  background-color: rgba(0, 0, 0, 0.06);
}
.search__result-item.first {
  border-top: none;
}
.search__result-item.last {
  border-bottom: none;
}

.details {
  margin-top: 80px;
}
@media (max-width: 1400px) {
  .details {
    margin-top: 130px;
  }
}

.details__title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  text-decoration: underline;
}

.details__items {
  display: grid;
  margin-top: 2rem;
  grid-auto-rows: 270px;
  grid-template-columns: repeat(3, 32%);
  column-gap: 1rem;
  row-gap: 1rem;
  justify-content: center;
}
@media (max-width: 1400px) {
  .details__items {
    grid-template-columns: repeat(3, 31%);
  }
}
@media (max-width: 1200px) {
  .details__items {
    grid-template-columns: repeat(2, 43%);
  }
}
@media (max-width: 900px) {
  .details__items {
    grid-template-columns: repeat(1, 88%);
  }
}

.details__item {
  display: grid;
  grid-template-rows: 30px auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
}
.details__item.pattern {
  display: none;
}

.details__item-title {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  width: 100%;
  text-align: center;
  padding-top: 5px;
}

.details__item-content {
  display: grid;
  grid-auto-rows: auto;
  padding: 1rem;
}

@media (max-width: 900px) {
  .layout__content-top {
    height: 100px;
  }
}

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