/*!
 * jodit-pro - PRO Version of Jodit Editor
 * Author: Chupurnov Valerii <chupurnov@gmail.com>
 * Version: v4.12.5
 * Url: https://xdsoft.net/jodit/pro/
 * License(s): SEE LICENSE IN LICENSE.md
 */
	
.jodit-templates-popup {
  min-width: 300px;
  max-height: 470px;
  padding: 8px;
  overflow-y: auto;
}
.jodit-templates-popup__card {
  display: flex;
  overflow: hidden;
  width: 100%;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 8px;
  background: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.jodit-templates-popup__card:last-child {
  margin-bottom: 0;
}
.jodit-templates-popup__card:hover {
  border-color: var(--jd-color-border-active, #4a6cf6);
}
.jodit-templates-popup__card-preview {
  position: relative;
  overflow: hidden;
  width: 140px;
  height: 96px;
  flex-shrink: 0;
  background: #f8f8f8;
  pointer-events: none;
}
.jodit-templates-popup__card-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jodit-templates-popup__card-preview-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  transform: scale(0.28);
  transform-origin: top left;
}
.jodit-templates-popup__card-info {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 8px 12px;
}
.jodit-templates-popup__card-title {
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.jodit-templates-popup__card-description {
  overflow: hidden;
  margin-top: 4px;
  color: #888;
  font-size: 11px;
  line-height: 1.4;
}

