﻿/* flexbox */
.content-top .list,
.content-bottom .list {
  width: 100%;
  min-width: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
  column-gap: 20px;
}
.content-top .list .list-item,
.content-top .list .article-preview,
.content-bottom .list .list-item,
.content-bottom .list .article-preview {
  width: 49%;
  padding-top: 0;
  padding-bottom: 0;
  left: 0;
  padding-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  flex-grow: 1;
}
@media only screen and (max-width: 800px) {
  .content-top .list,
  .content-bottom .list {
    flex-direction: column;
  }
  .content-top .list .list-item,
  .content-top .list .article-preview,
  .content-bottom .list .list-item,
  .content-bottom .list .article-preview {
    width: 100%;
  }
}
/* flexbox-end */
/* hcm - e-mail */
form[name*="mform"] {
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
  padding-right: 2px;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  float: left;
}
form[name*="mform"] table {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 0;
  margin-right: 0;
}
form[name*="mform"] th {
  margin-top: 0;
  margin-bottom: 5px;
  margin-left: 0;
  margin-right: 0;
  float: left;
  display: block;
}
@media only screen and (max-width: 750px) {
  form[name*="mform"] {
    width: 100%;
    display: inline-block;
  }
  form[name*="mform"] tr {
    padding-bottom: 5px;
  }
}
@media only screen and (max-width: 450px) {
  form[name*="mform"],
  form[name*="mform"] table,
  form[name*="mform"] tbody,
  form[name*="mform"] tr,
  form[name*="mform"] td {
    width: 100%;
    display: inline-block;
  }
  form[name*="mform"] tr {
    margin-top: 5px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
/* hcm - e-mail - end */
