/*********************************************************************************
/*
/* info box - used for dive sites list
/*
/********************************************************************************/

.info-box-wrapper {
  display: flex;
  flex-direction: column;
  margin: 0px auto 25px auto;
  max-width: var(--max-content-width);
  box-shadow: 0 0 20px rgb(0 0 0 / 15%);
  padding-bottom: 15px;
  border-radius: 6px;
}

.info-box {
  display: flex;
  flex-direction: column;
}

.info-box .info-column {
  flex: 1 1 50%;
  margin: 10px 5px 0px 5px;
}

.info-box ul {
  list-style-type: none;
}

.dive-sites .info-box ul {
  margin: 0px;
}

.dive-sites .info-box ul li svg {
  color: var(--icon-background-green);
}

.info-box ul span.island-group {
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  display: block;
//  border-bottom: 1px solid #bbb;
  padding-bottom: 2px;
  margin-bottom: 6px;
}

@media screen and (min-width: 768px) {

  .info-box {
    flex-direction: row;
  }
}
