/*
Copyright © 2019 LOEFFA.COM ALL RIGHTS RESERVED
Software desenvolvido por Loeffa Soluções Tecnológicas (loeffa.com)
e licenciado para uso, limitado, não exclusivo e não transferível.
*/
.glossary-title {
  color: #345fab;
  padding-top: 20px;
}
.glossary-menu {
  width: 100%;
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(25, 1fr);
}
@media only screen and (max-width: 550px) {
  .glossary-menu {
    grid-template-columns: repeat(13, 1fr);
  }
}
.glossary-menu span {
  background-color: #f1f1f1;
  flex-grow: 1;
  margin: 1px;
  text-align: center;
  padding: 4px 0;
  color: #4d4d4f;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-weight: 500;
}
.glossary-menu span.deactivated {
  cursor: not-allowed;
  color: #d8d8d8;
}
.glossary-menu span:not(.deactivated):hover, .glossary-menu span.selected:not(.deactivated) {
  background-color: #345fab;
  color: #ffffff;
}
.glossary-list {
  margin-top: 24px;
}
.glossary-list .item-title {
  margin: 4px;
  color: #aaaaaa;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}
.glossary-list .item-title:hover, .glossary-list .item-title.selected {
  color: #345fab;
}
.glossary-video-container {
  width: 100%;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glossary-text {
  color: #888888;
  text-align: justify;
  margin-top: 16px;
}
#glossary-loader {
  position: absolute;
}
.replay-button {
  position: absolute;
  background-color: #444a;
  display: flex;
  z-index: 4;
  cursor: pointer;
}
.replay-button i {
  color: white;
  font-size: 4rem;
}
