.cont_flexbox {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  flex-wrap: wrap; }
  .cont_flexbox > div {
    background: #daf2e8;
    border-radius: 5px;
    border: 1px solid #c3e4d6;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media screen and (min-width: 641px) {
      .cont_flexbox > div.flex_2col {
        width: 49.5%; }
      .cont_flexbox > div.flex_3col {
        width: 33%; } }
    @media screen and (max-width: 640px) {
      .cont_flexbox > div {
        width: 100%; } }
    .cont_flexbox > div > div {
      text-align: center; }

ul.cont_spotlist {
  padding: 0; }
  ul.cont_spotlist li {
    list-style-type: none;
    display: inline-block; }
    ul.cont_spotlist li:after {
      content: "/";
      margin: 0 0.5em;
      color: lightgray; }
