﻿/* common border radius */
/* disable text selection */
section.gt-block.comments {
  padding: 3.6rem 6rem;
  overflow: hidden;
  background: #F8F8F8;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  border-radius: 4rem;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 500px) {
  section.gt-block.comments {
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    border-radius: 2rem;
  }
}
section.gt-block.comments .loading-component {
  background: rgba(248, 248, 248, 0.7);
}
section.gt-block.comments .loading-component .loading-animation span {
  background: #FD7D23;
}
section.gt-block.comments.loading .loading-component {
  height: calc(100% + 1rem);
  opacity: 1;
}
section.gt-block.comments h2 {
  padding: 0 0 3rem 0;
  margin: 0 0 3rem 0;
  border-bottom: 1px solid #D3D3D3;
}