.container-fluid {
  margin: 0 !important;
  padding: 0 !important;
}

img.auto-size, img.fit {
  width: 100%;
  height: auto;
}

#root > header {
  margin-bottom: 16px;
}

#root > header h1.header-title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 900;
}

#root > header .header-breadcrumb {
  background-color: #666;
  color: #fff;
  height: 42px;
  line-height: 42px;
}

#root > header .header-breadcrumb ul {
  list-style-type: none;
}

#root > header .header-breadcrumb ul li {
  float: left;
  margin-left: 8px;
}

#root > header .header-breadcrumb ul li.first::before {
  content: "";
  margin-left: 0px;
  margin-right: 0px;
}
#root > header .header-breadcrumb ul li::before {
  content: ">";
  margin-right: 4px;
}

#root > header .header-breadcrumb ul li a {
  color: #fff;
}

aside .sidebar-content section {
  margin-bottom: 36px;
  border: solid 1px #ddd;
  padding: 8px;
}

aside .sidebar-content section header {
  font-weight: normal;
  margin-top: 12px;
  margin-bottom: 12px;
}

aside .sidebar-content section header h3 {
  margin: 0 !important;
  font-size: 18px;
  border-bottom: 1px solid #666;
  padding-bottom: 8px;
}

aside .sidebar-content section header h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 14px;
  margin-right: 4px;
  margin-bottom: 0;
  background: #eb6a7a;
}

aside .sidebar-content ul.entries {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

aside .sidebar-content ul.entries li {
  margin-top: 24px;
  margin-bottom: 24px;
}

aside .sidebar-content ul.entries li img {
  width: 100%;
  height: auto;
  margin: 0;
}

aside .sidebar-content ul.entries li p {
  text-align: center;
}

main .article-summary {
  border: 1px solid #d9dbde;
  margin-bottom: 12px;
  display: block;
  padding: 15px 0;
}

main .article-summary .date {
  text-align: right;
}

main .article-summary .title h2 {
  margin: 0;
  padding: 8px 0;
}

main .article-summary .summary {
  color: gray;
}

main .article-summary .read-more {
  color: #eb6a7a;
  font-weight: 600;
  text-align: right;
  font-size: 18px;
}

main article {
  background-color: #eeeeee;
  padding: 16px;
}

main article strong {
  box-shadow: 0 -1rem 0 0 #ff7f7f inset;
}

main article header .pubdate {
  text-align: right;
}

main article header h1 {
  font-weight: 900;
}

main article main .entry-thumbnail {
  margin-bottom: 24px;
}

main article main .entry-content {
  font-size: 1.2em;
  line-height: 1.8em;
}

main article main .entry-content p {
  margin-bottom: 18px;
}

main article main .entry-content .text-summary {
  background-color: #ffffe0;
  padding: 24px;
  padding-left: 48px;
  list-style-type: none;
}

main article main .entry-content .text-summary li {
  position: relative;
}
main article main .entry-content .text-summary li::after,
main article main .entry-content .text-summary li::before {
  display: block;
  content: '';
  position: absolute;
}
main article main .entry-content .text-summary li::after {
  top: .35em;
  left: -1.2em;
  width: 14px;
  height: 14px;
  background-color: #3498db;
  border-radius: 100%;
}
main article main .entry-content .text-summary li::before {
  z-index: 2;
  top: .625em;
  left: -.975em;
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Parts:paging */
.p-paging {
  margin-bottom: 1.5rem;
  text-align: center;
}

.p-paging a {
  display: inline-block;
  padding: 1rem 1.5rem;
  margin: 0 .5rem;
  background-color: #cfd8dc;
  color: #263238;
}

#root > footer {
  background-color: #f5f5f5;
  color: #212224;
  border-top: 1px solid #d9dbde;
  margin-top: 16px;
}

#root > footer .footer-copyright {
  background-color: #111111;
  color: #fff;
  margin-top: 36px;
  padding-top: 60px;
  padding-bottom: 24px;
  font-size: 18px;
}

#root > footer .footer-title {
  text-align: center;
}

#root > footer h3 {
  font-size: 16px;
  font-weight: normal;
  border-bottom: 1px solid #d9dbde;
  margin-bottom: 40px;
  line-height: 56px;
  height: 56px;
}

/* your styles go here */

/* --------------- Form Style ------------------*/
.form {
  max-width: 670px;
  margin-top: 32px;
}

.form .form-field-item {
  display: flex;
  padding-top: 16px;
  padding-bottom: 16px;
}

.form .form-field-item label {
  width: 200px;
  text-align: right;
  padding-right: 16px;
}

.form .form-field-item > div {
  flex: 1;
}

.form .form-field-item > div input,
.form .form-field-item > div textarea {
  width: calc(100% - 32px);
  border: 1px solid gray;
}
.form .form-field-item > div input {
  height: 32px;
}

.form .form-actions {
  text-align: center;
}

.form .form-actions input[type="button"] {
  width: 250px;
  margin: 40px auto;
}

@media (max-width: 768px) {
  .form .form-field-item {
    display: block;
  }
  .form .form-field-item label {
    text-align: left;
    width: 100%;
    padding-right: 0px;
  }
  .form .form-field-item > div input,
  .form .form-field-item > div textarea {
    width: 100%;
  }
  .form .form-actions input[type="button"] {
    margin: 24px auto;
  }
}
