/* GLOBAL CONTENT STYLES FOR CMS PAGES */

/* Flex cards */
.content-card-main {
    display: flex;
  flex-flow: row wrap;
  padding: 0px;
  margin: 0 -5px;
  list-style: none;
}

.content-card {
    flex: 1 auto; 
  width: 250px;
  border: 1px solid #aaa;
  max-width: 100%;
  text-align: left;
  flex-grow: 1;
  justify-content: flex-end;
  margin: 5px;
  padding: 10px;
}

.rtl  .content-card {
  text-align: right;
}


/* two column list */

  #leftColumn .richtextcontent .table-main {
    display: table;
    width: 100%;
}

  #leftColumn .richtextcontent .table-main .table-left {
    display: table-cell;
    width: 49%;
    vertical-align: top;
}

   #leftColumn .richtextcontent .table-main .table-right {
    display: table-cell;
    width: 49%;
    vertical-align: top;
}

  #leftColumn .richtextcontent .table-main div.table-heading,
  #leftColumn .richtextcontent .table-main div.table-heading-blank:not(:empty) {
    font-weight: bold;
}

  #leftColumn .richtextcontent .table-main div.table-heading-blank:empty {
    border: 1px solid white;
    height: 15px;
}


@media screen and (max-width:700px) {

  #leftColumn .richtextcontent .table-main .table-left ul:nth-child(2n) {
    margin: 0 4px 0;
  }
  
  #leftColumn .richtextcontent .table-main .table-right ul {
    margin: 0 4px 0;
  }

  #leftColumn .richtextcontent .table-main .table-left {
    display: table;
    width: 100%;
  }

  #leftColumn .richtextcontent .table-main .table-right {
    display: table;
    width: 100%;
    margin: 0 0 10px;
  }
  
  #leftColumn .richtextcontent .table-main div.table-heading-blank:empty {
  margin: 0;
  padding: 0;
  }
  
  #leftColumn .richtextcontent .table-main div.table-heading-blank:not(:empty) {
  margin: 0;
  padding: 0;
  }
  
  #leftColumn .richtextcontent .table-main div.table-heading,
  #leftColumn .richtextcontent .table-main div.table-heading-blank:not(:empty) {
  margin: 10px 0;
  }

  #leftColumn .richtextcontent .table-main div.table-heading-blank:empty {
  height: 0px;
  border: none;
  display: none;
  }
   
}