/*
 * CSS ReadLeitorHTML
 */
.headerLeitorHtml {
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  background-color: #fff;
  align-items: center;
  padding-right: 16px;
  padding-left: 16px;
  display: flex;  
  height: 64px;
  z-index: 2;
}
.headerLeitorHtml {
  position: fixed;
  right: 0px;
  left: 0px;
  top: 0px;
}
.headerLeitorHtml
.headerLeitorHtmlLeft {
  display: inherit;
}
.headerLeitorHtml
.headerLeitorHtmlLeft
.headerLeitorHtmlLeftBack {
  justify-content: center;
  align-items: center;
  margin-right: 4px;
  display: flex;
  height: inherit;
  width: 32px;
}
.headerLeitorHtml
.headerLeitorHtmlLeft
.headerLeitorHtmlLeftLogo {
  justify-content: center;
  align-items: center;
  display: flex;  
  height: 64px;
  width: 160px;
}
.headerLeitorHtml
.headerLeitorHtmlLeft
.headerLeitorHtmlLeftLogo a {
  height: 48.22px;
  width: 160px;
}
.headerLeitorHtml
.headerLeitorHtmlLeft
.headerLeitorHtmlLeftLogo img {
  height: 48.22px;
  width: 160px;
}
.headerLeitorHtml
.headerLeitorHtmlCenter {
  margin-left: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  width: 280px;
}
.headerLeitorHtml
.headerLeitorHtmlCenter {
  overflow: hidden;
  color: var(--text-primary, rgba(0, 0, 0, 0.87));
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  text-overflow: ellipsis;
  font-family: 'Roboto';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.15px;
}
.headerLeitorHtml
.headerLeitorHtmlRight {
  margin-left: auto;
  width: 196px;
}
@media (max-width: 640px){
  .headerLeitorHtml
  .headerLeitorHtmlRight {
    display: none !important;
  } 
}
.contentLeitor {
  transition: width 0.5s ease-in-out;
  position: fixed;
  bottom: 0px;
  right: 0px;
  left: 0px;
  top: 64px;
  z-index: 1;
  width: 100%;
}
.contentLeitor iframe  {
  background-color: #fff;
  height: calc(100vh - 64px);
  overflow-x: hidden;
  border: 0px;
  width: 100%;
}
.contentLeitor iframe main {
  overflow-x: hidden;
}

.logo-desktop {
  display: block;
}
.logo-mobile {
  display: none;
}

@media (max-width: 720px){
  .logo-desktop {
    display: none;
  } 
  .logo-mobile {
    display: block;
  }
}
