* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.organisationsContainer {
  padding: 40px 24px 83px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.organisations .backButton {
  font-size: 14px;
}

.organisations {
  width: 356px;
}

.organisationsHeading {
  margin-top: 24px;
  margin-bottom: 12px;
}

.organisationsHeader {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}

.organisationsCriteria {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #ADADB8;
  margin-top: 8px;
}

.organisationsNumber {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #00818E;
  margin-top: 2px;
}

.organisationItemContainer {
  /*display: flex;*/
  display: block;
  margin-top: 12px;
  width: 100%;
}

.organisationItem {
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #F7F7F8;
  border-radius: 16px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-flow: column nowrap;
  height: 100%;
}

.organisationItem:hover {
  border: 1px solid #00818e;
}

.organisationItem:focus {
  background-color: #f7f7f8;
}

.organisationItemHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
}

.orgAddressGrid,
.orgTelephoneGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 156px);
  grid-gap: 4px 0px;
}

.greenText {
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #00818E;
}

.orgAddressText {
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: -0.02em;
  text-align: left;
}

.orgTelephoneText {
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: -0.02em;
  text-align: left;
}

@media (max-width: 550px) {
  .organisationsContainer {
    padding: 40px 16px 80px;
  }
  .organisations {
    width: 100%;
  }
  .organisationItem {
    width: 100%;
  }
  .orgAddressGrid,
  .orgTelephoneGrid {
    grid-template-columns: repeat(auto-fill, 142px);
  }
}
