#mttr-settings header {
  background-color: #ffffff;
  border-bottom: 1px solid #f4f4f5;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px;
}
#mttr-settings header .mttr-brand {
  display: flex;
  gap: 0.375rem;
  align-items: center;
}
#mttr-settings header .mttr-brand .mttr-title {
  font-weight: 600;
  color: #18181b;
  font-size: 15px;
}
#mttr-settings header .mttr-brand svg {
  height: 20px;
  width: auto;
}
#mttr-settings header .mttr-version {
  background-color: #f4f4f5;
  border-radius: 4px;
  color: #71717a;
  font-size: 11px;
  font-weight: 500;
  padding: 1px 9px;
}
#mttr-settings header .mttr-navigation {
  display: flex;
  gap: 20px;
  align-items: center;
}
#mttr-settings header .mttr-navigation a {
  color: #212121;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
#mttr-settings header .mttr-navigation a:hover {
  color: #c1410d;
}
#mttr-settings header .mttr-navigation a.upgrade-button {
  background: #f7e3da;
  border: 1px solid #c1410d;
  color: #c1410d;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
#mttr-settings header .mttr-navigation a.upgrade-button:hover {
  background: #c1410d;
  color: #ffffff;
}
.mttr-nav-items {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 200px;
}
.mttr-nav-items .mttr-nav-item {
  font-weight: 500;
  color: #71717a;
  border-radius: 0.5rem;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}
.mttr-nav-items .mttr-nav-item:hover {
  color: #18181b;
}
.mttr-nav-items .mttr-nav-item.active {
  background-color: #e4e4e7;
  color: #18181b;
}
.mttr-options {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 24px;
  gap: 1.5rem;
}
.mttr-options .mttr-options-group {
  flex: 1;
}
.mttr-options .mttr-option-group {
  background-color: white;
  border: 1px solid rgba(228, 228, 231, 0.6);
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: none;
}
.mttr-options .mttr-option-group.active {
  display: block;
}
.mttr-options .mttr-option-group-title {
  font-size: 15px;
  font-weight: 600;
  padding: 0 24px;
  display: flex;
  height: 50px;
  align-items: center;
  color: #212121;
}
.mttr-options .mttr-options-holder {
  padding: 0 24px;
  border-top: 1px solid rgba(228, 228, 231, 0.4);
}
.mttr-options .mttr-options-holder > *:not(:last-child) {
  border-bottom: 1px solid rgba(228, 228, 231, 0.4);
}
.mttr-options .mttr-option {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}
.mttr-options .mttr-option.soon {
  opacity: 0.5;
}
.mttr-options .mttr-option .mttr-option-info .mttr-option-title {
  font-weight: 500;
  font-size: 14px;
  color: #212121;
}
.mttr-options .mttr-option .mttr-option-info .mttr-option-title .cs-badge {
  background-color: #f4f4f5;
  color: #71717a;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
  margin-left: 10px;
}
.mttr-options .mttr-option .mttr-option-info .mttr-option-description {
  font-size: 13px;
  color: #9c9c9c;
  margin-top: 4px;
  display: block;
}
.mttr-options .mttr-option .mttr-option-count {
  margin-top: 8px;
  font-size: 12px;
  color: #71717a;
  font-weight: 500;
  background-color: #f4f4f5;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}
.mttr-options .mttr-option.full-width {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mttr-options .mttr-option.full-width .mttr-option-input {
  max-width: 100%;
}
.mttr-options .mttr-option .mttr-option-input {
  max-width: 200px;
  width: 100%;
  position: relative;
  text-align: right;
}
.mttr-options .mttr-option .mttr-option-input .m-templates {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 100%;
}
.mttr-options .mttr-option .mttr-option-input .m-templates label {
  position: relative;
  display: block;
  width: 100%;
}
.mttr-options .mttr-option .mttr-option-input .m-templates img {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  width: 100%;
  height: auto;
  display: block;
}
.mttr-options .mttr-option .mttr-option-input .m-templates [type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.mttr-options .mttr-option .mttr-option-input .m-templates [type=radio] + img {
  cursor: pointer;
}
.mttr-options .mttr-option .mttr-option-input .m-templates [type=radio]:checked + img {
  outline: 2px solid #c2410c;
}
.mttr-options .mttr-option .mttr-option-input input[type=text],
.mttr-options .mttr-option .mttr-option-input input[type=url] {
  width: 100%;
  border: 1px solid #e4e4e7;
  font-size: 13px;
  color: #18181b;
  height: 36px;
  padding: 0 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.mttr-options .mttr-option .mttr-option-input input[type=text]:focus,
.mttr-options .mttr-option .mttr-option-input input[type=url]:focus {
  outline: 2px solid #c2410c;
  border-color: transparent;
}
.mttr-options .mttr-option .mttr-option-input select {
  width: 100%;
  border: 1px solid #e4e4e7;
  font-size: 13px;
  color: #18181b;
  height: 36px;
  padding: 0 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.mttr-options .mttr-option .mttr-option-input select:focus {
  outline: 2px solid #c2410c;
  border-color: transparent;
}
.mttr-options .mttr-option .mttr-option-input select.multiple {
  height: auto;
  padding: 8px 16px;
}
.mttr-options .mttr-option .mttr-option-input textarea {
  width: 100%;
  border: 1px solid #e4e4e7;
  font-size: 13px;
  color: #18181b;
  padding: 8px 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.mttr-options .mttr-option .mttr-option-input textarea:focus {
  outline: 2px solid #c2410c;
  border-color: transparent;
}
.mttr-options .mttr-option .mttr-option-input .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 25px;
}
.mttr-options .mttr-option .mttr-option-input .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.mttr-options .mttr-option .mttr-option-input .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.mttr-options .mttr-option .mttr-option-input .switch .slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  transition: 0.4s;
  border-radius: 50%;
}
.mttr-options .mttr-option .mttr-option-input .switch input:checked + .slider {
  background-color: #c2410c;
}
.mttr-options .mttr-option .mttr-option-input .switch input:checked + .slider:before {
  transform: translateX(18px);
}
.warmer-save {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  align-items: center;
}
.warmer-save button {
  padding: 9px 20px;
  color: #ffffff;
  background-color: #c2410c;
  border-radius: 7px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.warmer-save button:hover {
  background-color: #9a3412;
}
.mttr-section-block {
  border: 1px solid #f4f4f5;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.mttr-section-block .mttr-section-title {
  padding: 20px 25px;
  position: relative;
}
.mttr-section-block .mttr-section-title .mttr-premium-badge {
  position: absolute;
  right: 25px;
  top: 14px;
  border: 1px solid #f4f4f5;
  color: #000000;
  padding: 7px 19px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 6px;
  align-items: center;
  background: white;
}
.mttr-section-block .mttr-section-title .mttr-premium-badge p {
  color: #212121;
}
.mttr-section-block .mttr-section-title .mttr-premium-badge a {
  color: #c2410b;
}
.mttr-section-block .mttr-section-title .mttr-premium-badge .badge-icon {
  margin-top: -2px;
}
.mttr-section-block .mttr-section-title .mttr-premium-badge svg {
  width: 22px;
  height: auto;
}
.mttr-section-block .mttr-section-title h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #212121;
}
.mttr-section-block .mttr-section-title p {
  font-size: 13px;
  color: #9c9c9c;
  margin: 0;
}
.mttr-section-block .mttr-section-options {
  padding: 0 25px;
  background-color: #fafafa;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  border-radius: 6px 6px 0 0;
}
.mttr-section-block .mttr-section-options > *:not(:last-child) {
  border-bottom: 1px solid rgba(228, 228, 231, 0.4);
}
.mttr-section-block.mttr-section-premium .mttr-section-options {
  cursor: not-allowed;
}
.mttr-section-block.mttr-section-premium .mttr-section-options .mttr-option {
  opacity: 0.4;
}
.mttr-section-block.mttr-section-premium .mttr-section-options .mttr-option .mttr-option-input .switch .slider {
  cursor: not-allowed;
}
.mttr-section-block.mttr-section-premium .mttr-section-options .mttr-api-options {
  opacity: 0.4;
}
.mttr-system-info-block {
  text-align: left;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.mttr-system-info-block .si-item {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  justify-content: space-between;
  background: white;
}
.mttr-system-info-block .si-item .si-title {
  font-size: 13px;
  color: #212121;
  font-weight: 500;
  width: 130px;
  padding: 12px 15px;
}
.mttr-system-info-block .si-item .si-value {
  font-size: 13px;
  color: #787878;
  font-weight: 500;
  padding: 12px 15px;
  text-align: right;
}
.warmer-notice-wrapper {
  position: fixed;
  top: 45px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.warmer-notice {
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  min-width: 200px;
}
.warmer-notice.error {
  background: #fef2f2;
  border-color: #fee2e2;
}
.warmer-notice.error .notice-text {
  color: #7c2d12;
}
.warmer-notice.success .notice-text {
  color: #064e3b;
  font-weight: 500;
}
.mttr-aside .mttr-aside-panel {
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-width: 260px;
}
.mttr-aside .mttr-aside-widget {
  background-color: white;
  border: 1px solid rgba(228, 228, 231, 0.4);
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 260px;
}
.mttr-aside .mttr-aside-widget .mttr-widget-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}
.mttr-aside .mttr-aside-widget .mttr-aside-products {
  display: flex;
  flex-direction: column;
}
.mttr-aside .mttr-aside-widget .mttr-aside-products .mttr-aside-product {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(228, 228, 231, 0.4);
  padding-bottom: 15px;
  margin-bottom: 15px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.mttr-aside .mttr-aside-widget .mttr-aside-products .mttr-aside-product:hover {
  opacity: 0.6;
}
.mttr-aside .mttr-aside-widget .mttr-aside-products .mttr-aside-product:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.mttr-aside .mttr-aside-widget .mttr-aside-products .mttr-aside-product .mttr-aside-product-image svg {
  width: 34px;
  height: 34px;
  border-radius: 6px;
}
.mttr-aside .mttr-aside-widget .mttr-aside-products .mttr-aside-product h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px 0;
  color: #27272a;
}
.mttr-aside .mttr-aside-widget .mttr-aside-products .mttr-aside-product p {
  font-size: 12px;
  color: #9c9c9c;
  margin: 0;
}
.mttr-aside .mttr-aside-widget .mttr-aside-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mttr-aside .mttr-aside-widget .mttr-aside-links a {
  font-size: 13px;
  color: #a1a1aa;
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 228, 231, 0.4);
  display: inline-flex;
}
.mttr-aside .mttr-aside-widget .mttr-aside-links .mingcute--arrow-right-line {
  display: inline-block;
  width: 12px;
  height: 12px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none'%3E%3Cpath d='M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%23000' d='m14.707 5.636l5.657 5.657a1 1 0 0 1 0 1.414l-5.657 5.657a1 1 0 0 1-1.414-1.414l3.95-3.95H4a1 1 0 1 1 0-2h13.243l-3.95-3.95a1 1 0 1 1 1.414-1.414'/%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.settings_page_warmer {
  background-color: #f4f4f5;
}
.settings_page_warmer #wpcontent {
  padding-left: 0;
  padding-right: 0;
}
.warmer-entry-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #a1a1aa;
}
.crawler-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin: 15px 0 20px 0;
  align-items: center;
}
.crawler-actions .crawler-limit {
  margin-right: auto;
}
.crawler-actions .crawler-limit a {
  font-weight: 500;
  text-decoration: underline;
  color: #c2410c;
}
.warmer-start-crawler {
  height: 35px;
  background-color: #c2410c;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  width: 120px;
}
.warmer-start-crawler:disabled {
  background-color: #e4e4e7;
  color: #71717a;
  cursor: not-allowed;
}
.warmer-start-crawler:hover {
  color: #ffffff;
  background-color: #9a3412;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.warmer-stop-crawler {
  height: 35px;
  width: 120px;
  background-color: #fafafa;
  border: 1px solid #e4e4e7;
  color: #3f3f46;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.warmer-stop-crawler:hover {
  background-color: #f4f4f5;
  color: #18181b;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.warmer-test-sources {
  padding: 8px 16px;
  background-color: #fff7ed;
  border: 1px solid #ffedd5;
  color: #9a3412;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.warmer-test-sources:hover {
  color: #ffffff;
  background-color: #9a3412;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.add-more-entry-point {
  padding: 6px 16px;
  color: #9a3412;
  background-color: white;
  border: 1px solid #9a3412;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 99;
}
.add-more-entry-point.disabled {
  border-color: #e4e4e7;
  background-color: #e4e4e7;
  color: #a1a1aa;
  cursor: not-allowed;
}
.add-more-entry-point.disabled:hover {
  background-color: #e4e4e7;
}
.add-more-entry-point svg {
  width: 15px;
  height: auto;
}
.add-more-entry-point:hover {
  background-color: #9a3412;
}
.warmer-test-sources-output {
  background-color: #27272a;
  color: #f4f4f5;
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  height: 250px;
  overflow-y: auto;
  text-align: left;
}
.crawler-engine-log {
  font-size: 13px;
  height: 250px;
  overflow-y: auto;
  text-wrap: wrap;
  padding: 20px 10px;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  border-radius: 6px 6px 0 0;
  background-color: #fafafa;
}
.crawler-engine-log .log-entry {
  margin: 2px;
  padding: 2px 9px;
  border-radius: 4px;
}
.crawler-engine-log .log-entry.success {
  background-color: #d6e5e1;
  margin-left: 9px;
}
.crawler-engine-log .log-entry.error {
  background-color: #e7cfcf;
  border: none;
  margin-left: 9px;
}
.warmer-main-log {
  background-color: #27272a;
  color: #f4f4f5;
  padding: 20px;
  border-radius: 6px;
  font-size: 13px;
  height: 550px;
  overflow-y: auto;
  overflow-x: hidden;
  text-wrap: wrap;
}
.system-info table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.system-info td {
  padding: 8px 12px;
  border: 1px solid #ddd;
}
.system-info tr:nth-child(even) {
  background-color: #f9f9f9;
}
.debug-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.debug-actions button {
  padding: 8px 16px;
  background-color: #fafafa;
  border: 1px solid #e4e4e7;
  color: #3f3f46;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.debug-actions button:hover {
  background-color: #f4f4f5;
  color: #18181b;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.debug-output {
  background: #f6f7f7;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 15px;
  display: none;
}
.log-actions {
  margin: 10px 0 20px 0;
  display: flex;
  gap: 10px;
}
.log-actions button {
  padding: 8px 16px;
  background-color: #fafafa;
  border: 1px solid #e4e4e7;
  color: #3f3f46;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.log-actions button:hover {
  background-color: #f4f4f5;
  color: #18181b;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.engine-log-box {
  border: 1px solid #f4f4f5;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  width: 100%;
}
.engine-log-box .log-title {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 15px 20px;
}
.crawler-engine-status {
  background-color: #fff;
  margin-top: 20px;
  border: none !important;
}
.crawler-engine-status .crawler-status {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.crawler-engine-status .cs-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.crawler-engine-status .status-box {
  gap: 12px;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid #f4f4f5;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  flex: 1;
}
.crawler-engine-status .status-box.status-box-engine {
  width: 250px;
  flex: initial;
}
.crawler-engine-status .status-box .status-box-title {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 15px 20px;
  color: #212121;
}
.crawler-engine-status .status-box .status-box-content {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  background-color: #fafafa;
  border-radius: 6px 6px 0 0;
}
.crawler-engine-status .status-box .status-box-content .status-box-item {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(228, 228, 231, 0.4);
  padding-bottom: 10px;
}
.crawler-engine-status .status-box .status-box-content .status-box-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.crawler-engine-status .status-box .status-box-content .status-box-item .status-box-item-value {
  font-size: 13px;
  color: #212121;
  opacity: 0.8;
}
.crawler-engine-status .status-box .status-box-content .status-box-item .status-box-item-title {
  font-size: 13px;
  font-weight: 500;
  color: #212121;
}
.crawler-ready {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding-left: 10px;
}
.crawler-ready .circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0d9488;
  display: inline-block;
  animation: blink 2s infinite ease-in-out;
}
@keyframes blink {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.crawler-ready .msg {
  display: inline-block;
}
.mttr-api-options {
  padding: 25px 0;
}
.mttr-api-options .api-note {
  margin-bottom: 0;
}
.api-documentation {
  border-top: 1px solid rgba(228, 228, 231, 0.4);
  padding-top: 5px;
  margin-top: 20px;
}
.api-documentation .api-note {
  margin-bottom: 0;
}
.endpoint-url,
.webhook-secret {
  margin-bottom: 8px;
}
.endpoint-url code,
.webhook-secret code {
  margin-left: 5px;
  background-color: rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 500;
}
.warmer-regenerate-secret {
  background-color: #f3ebe8;
  color: #af816e;
  border: none;
  font-size: 13px;
  border-radius: 4px;
  padding: 3px 10px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.warmer-regenerate-secret:hover {
  background-color: #f4dfd7;
  color: #c1410d;
}
body.settings_page_warmer .notice {
  display: none !important;
}
.mttr-subscribe-panel-content div.fs-notice.success {
  display: none !important;
}
