@charset "UTF-8";
/**
 * * Speaker
 * * Create an audio version of your posts, with a selection of more than 340 voices across more than 52 languages and variants.
 * * Exclusively on https://1.envato.market/speaker
 * *
 * * @encoding        UTF-8
 * * @version         4.1.3
 * * @copyright       (C) 2018 - 2023 Merkulove ( https://merkulov.design/ ). All rights reserved.
 * * @license         Envato License https://1.envato.market/KYbje
 * * @contributors    Dmitry Merkulov (dmitry@merkulov.design)
 * * @support         help@merkulov.design
 * **/
html {
  --speaker-color: #0253EE;
}

.notice-speaker {
  border-left-color: var(--speaker-color);
  padding-bottom: 15px;
}
.notice-speaker p {
  margin: 0.75em 0;
}
.notice-speaker p:not(.speaker-notice--grid-item-title) {
  margin-top: -4px;
}

.speaker-notice--title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin: 1em 0;
  display: flex;
  justify-items: center;
  color: var(--speaker-color);
}
.speaker-notice--title:before {
  content: " ";
  margin-right: 5px;
  background: url(../images/logo-color.svg) no-repeat center center;
  background-size: cover;
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
  display: inline-flex;
}

.speaker-notice--grid {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  border-top: 1px solid #ddd;
}

.speaker-notice--grid-item-title {
  font-weight: 600;
  margin-bottom: 0;
}
.speaker-notice--grid-item-title span {
  background: var(--speaker-color);
  border-radius: 0 10px 10px 10px;
  line-height: 1;
  color: #fff;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  font-size: 11px;
}

.speaker-notice--grid-item {
  flex: 1;
}
.speaker-notice--grid-item .speaker-notice--action-button {
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid var(--speaker-color);
  color: var(--speaker-color);
  background: #f6f7f7;
  vertical-align: top;
  transition: all 0.2s ease-in-out;
}
.speaker-notice--grid-item .speaker-notice--action-button:hover {
  background: var(--speaker-color);
  color: white;
  transition: all 0.2s ease-in-out;
}

.speaker-notice--grid-item--done .speaker-notice--grid-item-title span {
  opacity: 0.35;
  filter: grayscale(1);
}
.speaker-notice--grid-item--done .speaker-notice--action-button {
  filter: grayscale(1);
  opacity: 0.5;
  border-color: #00a32a;
}
.speaker-notice--grid-item--done .speaker-notice--action-button:before {
  content: "✓";
  margin-right: 4px;
}
.speaker-notice--grid-item--done .speaker-notice--action-button:hover, .speaker-notice--grid-item--done .speaker-notice--action-button:focus {
  opacity: 1;
  filter: grayscale(0);
  background: #00a32a;
}

@media screen and (max-width: 640px) {
  .speaker-notice--grid {
    flex-direction: column;
    row-gap: 20px;
  }
}