.acf-block-preview .d-flex {
  display: flex;
}
.acf-block-preview .d-grid {
  display: grid;
}
/* Editor canvas aliases */
.editor-styles-wrapper .d-flex { display:flex; }
.editor-styles-wrapper .d-grid { display:grid; }

/* width */
.acf-block-preview .w-full {
  width: 100%;
}
.editor-styles-wrapper .w-full { width:100%; }
.acf-block-preview .gap-default {
  gap: 15px;
}
.editor-styles-wrapper .gap-default { gap:15px; }
.acf-block-preview .align-center {
  align-items: center;
}
.editor-styles-wrapper .align-center { align-items:center; }
.acf-block-preview .justify-center {
  justify-content: center;
}
.editor-styles-wrapper .justify-center { justify-content:center; }
.acf-block-preview .space-between{
  justify-content: space-between;
}
.editor-styles-wrapper .space-between{ justify-content:space-between; }
.acf-block-preview .txt-smaller {
  font-size: 14px;
  line-height: 21px;
}
.editor-styles-wrapper .txt-smaller { font-size:14px; line-height:21px; }

.acf-block-preview .txt-default {
  font-size: 16px;
  line-height: 23px;
}
.editor-styles-wrapper .txt-default { font-size:16px; line-height:23px; }
.acf-block-preview .regular {
  font-weight: normal;
}
.editor-styles-wrapper .regular { font-weight:normal; }
.acf-block-preview .bold{
  font-weight: 700;
}
.editor-styles-wrapper .bold{ font-weight:700; }

.acf-block-preview .flex-wrap-wrap{
  flex-wrap: wrap;
}
.editor-styles-wrapper .flex-wrap-wrap{ flex-wrap:wrap; }

.acf-block-preview .m-t-lx {
  margin-top: 50px;
}

.acf-block-preview .custom__link__item{
  text-align: left;
  border-radius: 10px;
  border:0;
  grid-template-columns: 1fr auto;
  padding: 15px;
  background-color: var(--educa-orange, #e5a224);
  transition: background-color 0.3s ease-in-out,
    color 0.3s ease-in-out;
}
.editor-styles-wrapper .custom__link__item{
  text-align:left; border-radius:10px; border:0; grid-template-columns:1fr auto; padding:15px; background-color: var(--educa-orange, #e5a224); transition: background-color .3s ease-in-out, color .3s ease-in-out;
}
.acf-block-preview .custom__link__item a{
  color: #fff;
  text-decoration: none;
  pointer-events: none;
}
.editor-styles-wrapper .custom__link__item a{ color:#fff; text-decoration:none; pointer-events:none; }
.acf-block-preview .custom__link__item:hover{
  cursor: pointer;
  background-color: var(--educa-orange, #e5a224);
}
.acf-block-preview .custom__link__item:hover a{
  color: #fff;
}
.editor-styles-wrapper .custom__link__item:hover{ cursor:pointer; background-color: var(--educa-orange, #e5a224); }
.editor-styles-wrapper .custom__link__item:hover a{ color:#fff; }
