/* Template Widget Styling (Public Facing) */
div.frame-wrapper.templates-frame-wrapper {
  position: relative;
  background: var(--medium-gray);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  padding: 14px 0;
}
div.frame-wrapper.templates-frame-wrapper:before {
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
  background: var(--light-blue);
  clip-path: var(--top-trapazoid);
}
div.frame-wrapper.templates-frame-wrapper:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
  background: var(--light-blue);
  clip-path: var(--bottom-trapazoid-reverse);
}
div.frame-wrapper.templates-frame-wrapper div.templates-widget-wrapper {
  background: #fbfbfb;
  padding: 3rem;
}
div.frame-wrapper.templates-frame-wrapper div.templates-widget-wrapper ul.templates-link-list {
  list-style: none;
  text-align: center;
}
div.frame-wrapper.templates-frame-wrapper div.templates-widget-wrapper ul.templates-link-list li {
  margin-left: 0;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 1441px) {
  div.frame-wrapper.templates-frame-wrapper div.templates-widget-wrapper ul.templates-link-list li {
    width: 100%;
  }
}
div.frame-wrapper.templates-frame-wrapper div.templates-widget-wrapper ul.templates-link-list li span.dashicons {
  margin-right: 0.5em;
  color: var(--light-blue);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
}
